Changeset 3243280
- Timestamp:
- 02/19/2025 01:50:21 PM (6 weeks ago)
- Location:
- smartsearchwp/trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
smartsearchwp/trunk/includes/addons/class-wdgpt-license-manager.php
r3241701 r3243280 48 48 */ 49 49 public function get_license_key( $license_type = '' ) { 50 if ( WDGPT_DEBUG_MODE ) { 51 WDGPT_Error_Logs::wdgpt_log_error('Get licence - ' . $license_type, 200, 'get_license_key'); 52 } 50 53 switch ( $license_type ) { 51 54 case 'free': … … 317 320 'license_key' => '', 318 321 ); 319 // If transient value exists, check if it is expired. 322 if ( $transient_value ) { 323 // Vérifier si une licence expirée a été mise en cache 324 $cached_verification = get_transient('wdgpt_license_verification'); 325 if ($cached_verification && isset($cached_verification->state) && $cached_verification->state === 'expired') { 326 delete_transient('wdgpt_license_transient'); 327 delete_transient('wdgpt_license_verification'); 328 $transient_value = false; // Forcer une nouvelle vérification 329 } 330 } 331 332 // If transient value exists, check if it is expired. 320 333 if ( $transient_value ) { 321 334 if ( $expiration_time < time() ) { … … 373 386 } 374 387 388 // Vérification de allow_url_fopen et cURL avant d'envoyer la requête 389 if ( WDGPT_DEBUG_MODE ) { 390 WDGPT_Error_Logs::wdgpt_log_error('allow_url_fopen enabled: ' . (ini_get('allow_url_fopen') ? 'YES' : 'NO'), 200, 'renew_license'); 391 WDGPT_Error_Logs::wdgpt_log_error('cURL available: ' . (function_exists('curl_version') ? 'YES' : 'NO'), 200, 'renew_license'); 392 } 393 375 394 $url = 'https://www.smartsearchwp.com/wp-json/smw/license-verification/'; 376 377 378 395 $url_website = site_url(); 379 396 $url_website = str_replace(['http://', 'https://'], '', $url_website); … … 381 398 if ( '' === $license_key ) { 382 399 $license_key = get_option( 'wd_smartsearch_license', '' ); 383 } 384 385 $body = array( 400 }else{ 401 $license_key = sanitize_text_field( wp_unslash( $license_key ) ); 402 update_option( 'wd_smartsearch_license', $license_key ); 403 } 404 405 // Vérification avant envoi de la requête 406 if ( WDGPT_DEBUG_MODE ) { 407 $debug_message = sprintf( 408 "License Verification - Request Sent | License Key: %s | Site URL: %s | Request Method: %s", 409 substr($license_key, 0, 40) . '****', // Masquer la licence 410 $url_website, 411 function_exists('curl_version') ? 'cURL' : 'wp_remote_post' 412 ); 413 WDGPT_Error_Logs::wdgpt_log_error($debug_message, 200, 'wdgpt_license_verification'); 414 } 415 416 417 $body = array( 386 418 'license_key' => $license_key, 387 419 'url_website' => $url_website, … … 401 433 402 434 $response = wp_remote_post( $url, $args ); 403 $body = wp_remote_retrieve_body( $response ); 435 436 // Vérification de la réponse API 437 if (is_wp_error($response)) { 438 $error_message = sprintf( 439 "License Verification - API Request Failed | Error Message: %s", 440 $response->get_error_message() 441 ); 442 WDGPT_Error_Logs::wdgpt_log_error($error_message, 500, 'wdgpt_license_verification'); 443 } 444 445 $body = wp_remote_retrieve_body( $response ); 404 446 $data = json_decode( $body ); 405 447 … … 408 450 } 409 451 452 // Vérification de la réponse de l'API 453 if (WDGPT_DEBUG_MODE && !$data) { 454 $error_message = sprintf( 455 "License Verification - Invalid API Response | Raw Response: %s", 456 $body 457 ); 458 WDGPT_Error_Logs::wdgpt_log_error($error_message, 500, 'wdgpt_license_verification'); 459 } 460 461 // Vérification si la licence est refusée 462 if (WDGPT_DEBUG_MODE && !$data->is_valid) { 463 $error_message = sprintf( 464 "License Verification - License Rejected | Status: %s | Message: %s", 465 $data->state ?? 'unknown', 466 $data->message ?? 'No error message provided' 467 ); 468 WDGPT_Error_Logs::wdgpt_log_error($error_message, 403, 'wdgpt_license_verification'); 469 return $data; 470 } 471 410 472 if (!empty($data)) { 411 // Cache le résultat pendant 6 heures 412 set_transient('wdgpt_license_verification', $data, 3 * HOUR_IN_SECONDS); 473 474 if (WDGPT_DEBUG_MODE) { 475 if (isset($data->state) && $data->state === 'already_registered_with_another_url') { 476 WDGPT_Error_Logs::wdgpt_log_error( 477 "License Verification Failed - The key is already registered with another site.", 478 403, 479 'wdgpt_license_verification' 480 ); 481 } elseif (isset($data->state) && $data->state === 'verified_with_url') { 482 WDGPT_Error_Logs::wdgpt_log_error( 483 "License Verification - License successfully verified.", 484 200, 485 'wdgpt_license_verification' 486 ); 487 } elseif (isset($data->state) && $data->state === 'not_found') { 488 WDGPT_Error_Logs::wdgpt_log_error( 489 "License Verification - License not found.", 490 200, 491 'wdgpt_license_verification' 492 ); 493 } elseif (isset($data->state)) { 494 WDGPT_Error_Logs::wdgpt_log_error( 495 "License Verification - Unknown state received: " . print_r($data->state, true), 496 400, 497 'wdgpt_license_verification' 498 ); 499 } else { 500 WDGPT_Error_Logs::wdgpt_log_error( 501 "License Verification - No state received in API response.", 502 400, 503 'wdgpt_license_verification' 504 ); 505 } 506 } 413 507 414 508 if ( !$data->is_valid ) { 415 509 return $data; 416 510 } 511 512 // Cache le résultat pendant 6 heures 513 set_transient('wdgpt_license_verification', $data, 6 * HOUR_IN_SECONDS); 417 514 418 515 $this->save_option( 'wd_smartsearch_license', $license_key ); -
smartsearchwp/trunk/includes/addons/wdgpt-addons-license-settings.php
r3241701 r3243280 95 95 </th> 96 96 <td> 97 98 <input type="password" name="wd_smartsearch_license" id="license_key" value="<?php echo esc_attr( get_option( 'wd_smartsearch_license' ) ); ?>" /> 99 <p class="description"> 97 98 <div style="position: relative; display: inline-block;"> 99 <input type="password" name="wd_smartsearch_license" id="license_key" style="width: 270px;" value="<?php echo esc_attr( get_option( 'wd_smartsearch_license' ) ); ?>" /> 100 <span id="toggle_license_visibility" style="position: absolute; right: 10px; top: 50%; transform: translateY(-50%); cursor: pointer;"> 101 <i class="dashicons dashicons-visibility"></i> 102 </span> 103 </div> 104 105 <p class="description"> 100 106 <?php 101 107 esc_html_e( … … 246 252 </tr> 247 253 </table> 248 249 254 255 <?php 250 256 } -
smartsearchwp/trunk/includes/logs/class-wdgpt-error-logs-table.php
r3199559 r3243280 132 132 $this->_column_headers = array( $columns, $hidden, $sortable ); 133 133 134 $san_order_by = ' error';135 $san_order = ' asc';134 $san_order_by = 'created_at'; 135 $san_order = 'desc'; 136 136 $paged = 0; 137 137 if ( isset( $_REQUEST['wdgpt_error_logs_nonce'] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['wdgpt_error_logs_nonce'] ) ), 'wdgpt_error_logs' ) ) { 138 $san_order_by = isset( $_REQUEST['orderby'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['orderby'] ) ) : ' error';139 $san_order = isset( $_REQUEST['order'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['order'] ) ) : ' asc';138 $san_order_by = isset( $_REQUEST['orderby'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['orderby'] ) ) : 'created_at'; 139 $san_order = isset( $_REQUEST['order'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['order'] ) ) : 'desc'; 140 140 $paged = isset( $_REQUEST['paged'] ) ? max( 0, intval( $_REQUEST['paged'] - 1 ) * $per_page ) : 0; 141 141 } -
smartsearchwp/trunk/includes/wdgpt-api-requests.php
r3241701 r3243280 736 736 wp_send_json_error( 'No license key provided' ); 737 737 } 738 739 // Suppression des transients AVANT la vérification de la licence 740 delete_option('_transient_wdgpt_license_verification'); 741 delete_option('_transient_wdgpt_license_transient'); 742 delete_option('_transient_timeout_wdgpt_license_verification'); 743 delete_option('_transient_timeout_wdgpt_license_transient'); 744 745 if (WDGPT_DEBUG_MODE) { 746 WDGPT_Error_Logs::wdgpt_log_error("License verification - Transients cleared via AJAX request.", 200, 'wdgpt_verify_license'); 747 } 748 738 749 $license_key = sanitize_text_field( wp_unslash( $_POST['license_key'] ) ); 739 750 $license_data = WDGPT_License_Manager::instance()->renew_license( $license_key ); -
smartsearchwp/trunk/js/dist/wdgpt.license.bundle.js
r3241701 r3243280 1 1 /*! For license information please see wdgpt.license.bundle.js.LICENSE.txt */ 2 (()=>{var t,e={9282:(t,e,r)=>{"use strict";var n=r(4155),o=r(5108);function i(t){return i="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},i(t)}function a(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t){if("object"!==i(t)||null===t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!==i(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===i(o)?o:String(o)),n)}var o}function c(t,e,r){return e&&a(t.prototype,e),r&&a(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}var u,l,s=r(2136).codes,f=s.ERR_AMBIGUOUS_ARGUMENT,p=s.ERR_INVALID_ARG_TYPE,y=s.ERR_INVALID_ARG_VALUE,d=s.ERR_INVALID_RETURN_VALUE,g=s.ERR_MISSING_ARGS,b=r(5961),h=r(9539).inspect,v=r(9539).types,m=v.isPromise,w=v.isRegExp,j=r(8162)(),O=r(5624)(),S=r(1924)("RegExp.prototype.test");function A(){var t=r(9158);u=t.isDeepEqual,l=t.isDeepStrictEqual}new Map;var E=!1,x=t.exports=T,P={};function _(t){if(t.message instanceof Error)throw t.message;throw new b(t)}function k(t,e,r,n){if(!r){var o=!1;if(0===e)o=!0,n="No value argument passed to `assert.ok()`";else if(n instanceof Error)throw n;var i=new b({actual:r,expected:!0,message:n,operator:"==",stackStartFn:t});throw i.generatedMessage=o,i}}function T(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];k.apply(void 0,[T,e.length].concat(e))}x.fail=function t(e,r,i,a,c){var u,l=arguments.length;if(0===l?u="Failed":1===l?(i=e,e=void 0):(!1===E&&(E=!0,(n.emitWarning?n.emitWarning:o.warn.bind(o))("assert.fail() with more than one argument is deprecated. Please use assert.strictEqual() instead or only pass a message.","DeprecationWarning","DEP0094")),2===l&&(a="!=")),i instanceof Error)throw i;var s={actual:e,expected:r,operator:void 0===a?"fail":a,stackStartFn:c||t};void 0!==i&&(s.message=i);var f=new b(s);throw u&&(f.message=u,f.generatedMessage=!0),f},x.AssertionError=b,x.ok=T,x.equal=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");e!=r&&_({actual:e,expected:r,message:n,operator:"==",stackStartFn:t})},x.notEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");e==r&&_({actual:e,expected:r,message:n,operator:"!=",stackStartFn:t})},x.deepEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");void 0===u&&A(),u(e,r)||_({actual:e,expected:r,message:n,operator:"deepEqual",stackStartFn:t})},x.notDeepEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");void 0===u&&A(),u(e,r)&&_({actual:e,expected:r,message:n,operator:"notDeepEqual",stackStartFn:t})},x.deepStrictEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");void 0===u&&A(),l(e,r)||_({actual:e,expected:r,message:n,operator:"deepStrictEqual",stackStartFn:t})},x.notDeepStrictEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");void 0===u&&A(),l(e,r)&&_({actual:e,expected:r,message:n,operator:"notDeepStrictEqual",stackStartFn:t})},x.strictEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");O(e,r)||_({actual:e,expected:r,message:n,operator:"strictEqual",stackStartFn:t})},x.notStrictEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");O(e,r)&&_({actual:e,expected:r,message:n,operator:"notStrictEqual",stackStartFn:t})};var R=c((function t(e,r,n){var o=this;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),r.forEach((function(t){t in e&&(void 0!==n&&"string"==typeof n[t]&&w(e[t])&&S(e[t],n[t])?o[t]=n[t]:o[t]=e[t])}))}));function I(t,e,r,n){if("function"!=typeof e){if(w(e))return S(e,t);if(2===arguments.length)throw new p("expected",["Function","RegExp"],e);if("object"!==i(t)||null===t){var o=new b({actual:t,expected:e,message:r,operator:"deepStrictEqual",stackStartFn:n});throw o.operator=n.name,o}var a=Object.keys(e);if(e instanceof Error)a.push("name","message");else if(0===a.length)throw new y("error",e,"may not be an empty object");return void 0===u&&A(),a.forEach((function(o){"string"==typeof t[o]&&w(e[o])&&S(e[o],t[o])||function(t,e,r,n,o,i){if(!(r in t)||!l(t[r],e[r])){if(!n){var a=new R(t,o),c=new R(e,o,t),u=new b({actual:a,expected:c,operator:"deepStrictEqual",stackStartFn:i});throw u.actual=t,u.expected=e,u.operator=i.name,u}_({actual:t,expected:e,message:n,operator:i.name,stackStartFn:i})}}(t,e,o,r,a,n)})),!0}return void 0!==e.prototype&&t instanceof e||!Error.isPrototypeOf(e)&&!0===e.call({},t)}function F(t){if("function"!=typeof t)throw new p("fn","Function",t);try{t()}catch(t){return t}return P}function N(t){return m(t)||null!==t&&"object"===i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function U(t){return Promise.resolve().then((function(){var e;if("function"==typeof t){if(!N(e=t()))throw new d("instance of Promise","promiseFn",e)}else{if(!N(t))throw new p("promiseFn",["Function","Promise"],t);e=t}return Promise.resolve().then((function(){return e})).then((function(){return P})).catch((function(t){return t}))}))}function D(t,e,r,n){if("string"==typeof r){if(4===arguments.length)throw new p("error",["Object","Error","Function","RegExp"],r);if("object"===i(e)&&null!==e){if(e.message===r)throw new f("error/message",'The error message "'.concat(e.message,'" is identical to the message.'))}else if(e===r)throw new f("error/message",'The error "'.concat(e,'" is identical to the message.'));n=r,r=void 0}else if(null!=r&&"object"!==i(r)&&"function"!=typeof r)throw new p("error",["Object","Error","Function","RegExp"],r);if(e===P){var o="";r&&r.name&&(o+=" (".concat(r.name,")")),o+=n?": ".concat(n):".";var a="rejects"===t.name?"rejection":"exception";_({actual:void 0,expected:r,operator:t.name,message:"Missing expected ".concat(a).concat(o),stackStartFn:t})}if(r&&!I(e,r,n,t))throw e}function B(t,e,r,n){if(e!==P){if("string"==typeof r&&(n=r,r=void 0),!r||I(e,r)){var o=n?": ".concat(n):".",i="doesNotReject"===t.name?"rejection":"exception";_({actual:e,expected:r,operator:t.name,message:"Got unwanted ".concat(i).concat(o,"\n")+'Actual message: "'.concat(e&&e.message,'"'),stackStartFn:t})}throw e}}function M(t,e,r,n,o){if(!w(e))throw new p("regexp","RegExp",e);var a="match"===o;if("string"!=typeof t||S(e,t)!==a){if(r instanceof Error)throw r;var c=!r;r=r||("string"!=typeof t?'The "string" argument must be of type string. Received type '+"".concat(i(t)," (").concat(h(t),")"):(a?"The input did not match the regular expression ":"The input was expected to not match the regular expression ")+"".concat(h(e),". Input:\n\n").concat(h(t),"\n"));var u=new b({actual:t,expected:e,message:r,operator:o,stackStartFn:n});throw u.generatedMessage=c,u}}function q(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];k.apply(void 0,[q,e.length].concat(e))}x.throws=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];D.apply(void 0,[t,F(e)].concat(n))},x.rejects=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return U(e).then((function(e){return D.apply(void 0,[t,e].concat(n))}))},x.doesNotThrow=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];B.apply(void 0,[t,F(e)].concat(n))},x.doesNotReject=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return U(e).then((function(e){return B.apply(void 0,[t,e].concat(n))}))},x.ifError=function t(e){if(null!=e){var r="ifError got unwanted exception: ";"object"===i(e)&&"string"==typeof e.message?0===e.message.length&&e.constructor?r+=e.constructor.name:r+=e.message:r+=h(e);var n=new b({actual:e,expected:null,operator:"ifError",message:r,stackStartFn:t}),o=e.stack;if("string"==typeof o){var a=o.split("\n");a.shift();for(var c=n.stack.split("\n"),u=0;u<a.length;u++){var l=c.indexOf(a[u]);if(-1!==l){c=c.slice(0,l);break}}n.stack="".concat(c.join("\n"),"\n").concat(a.join("\n"))}throw n}},x.match=function t(e,r,n){M(e,r,n,t,"match")},x.doesNotMatch=function t(e,r,n){M(e,r,n,t,"doesNotMatch")},x.strict=j(q,x,{equal:x.strictEqual,deepEqual:x.deepStrictEqual,notEqual:x.notStrictEqual,notDeepEqual:x.notDeepStrictEqual}),x.strict.strict=x.strict},5961:(t,e,r)=>{"use strict";var n=r(4155);function o(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function i(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?o(Object(r),!0).forEach((function(e){var n,o,i;n=t,o=e,i=r[e],(o=c(o))in n?Object.defineProperty(n,o,{value:i,enumerable:!0,configurable:!0,writable:!0}):n[o]=i})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):o(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function a(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,c(n.key),n)}}function c(t){var e=function(t){if("object"!==g(t)||null===t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!==g(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===g(e)?e:String(e)}function u(t,e){if(e&&("object"===g(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return l(t)}function l(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function s(t){var e="function"==typeof Map?new Map:void 0;return s=function(t){if(null===t||(r=t,-1===Function.toString.call(r).indexOf("[native code]")))return t;var r;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return f(t,arguments,d(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),y(n,t)},s(t)}function f(t,e,r){return f=p()?Reflect.construct.bind():function(t,e,r){var n=[null];n.push.apply(n,e);var o=new(Function.bind.apply(t,n));return r&&y(o,r.prototype),o},f.apply(null,arguments)}function p(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}function y(t,e){return y=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},y(t,e)}function d(t){return d=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},d(t)}function g(t){return g="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},g(t)}var b=r(9539).inspect,h=r(2136).codes.ERR_INVALID_ARG_TYPE;function v(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substring(r-e.length,r)===e}var m="",w="",j="",O="",S={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function A(t){var e=Object.keys(t),r=Object.create(Object.getPrototypeOf(t));return e.forEach((function(e){r[e]=t[e]})),Object.defineProperty(r,"message",{value:t.message}),r}function E(t){return b(t,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}var x=function(t,e){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&y(t,e)}(x,t);var r,o,c,s,f=(r=x,o=p(),function(){var t,e=d(r);if(o){var n=d(this).constructor;t=Reflect.construct(e,arguments,n)}else t=e.apply(this,arguments);return u(this,t)});function x(t){var e;if(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,x),"object"!==g(t)||null===t)throw new h("options","Object",t);var r=t.message,o=t.operator,i=t.stackStartFn,a=t.actual,c=t.expected,s=Error.stackTraceLimit;if(Error.stackTraceLimit=0,null!=r)e=f.call(this,String(r));else if(n.stderr&&n.stderr.isTTY&&(n.stderr&&n.stderr.getColorDepth&&1!==n.stderr.getColorDepth()?(m="[34m",w="[32m",O="[39m",j="[31m"):(m="",w="",O="",j="")),"object"===g(a)&&null!==a&&"object"===g(c)&&null!==c&&"stack"in a&&a instanceof Error&&"stack"in c&&c instanceof Error&&(a=A(a),c=A(c)),"deepStrictEqual"===o||"strictEqual"===o)e=f.call(this,function(t,e,r){var o="",i="",a=0,c="",u=!1,l=E(t),s=l.split("\n"),f=E(e).split("\n"),p=0,y="";if("strictEqual"===r&&"object"===g(t)&&"object"===g(e)&&null!==t&&null!==e&&(r="strictEqualObject"),1===s.length&&1===f.length&&s[0]!==f[0]){var d=s[0].length+f[0].length;if(d<=10){if(!("object"===g(t)&&null!==t||"object"===g(e)&&null!==e||0===t&&0===e))return"".concat(S[r],"\n\n")+"".concat(s[0]," !== ").concat(f[0],"\n")}else if("strictEqualObject"!==r&&d<(n.stderr&&n.stderr.isTTY?n.stderr.columns:80)){for(;s[0][p]===f[0][p];)p++;p>2&&(y="\n ".concat(function(t,e){if(e=Math.floor(e),0==t.length||0==e)return"";var r=t.length*e;for(e=Math.floor(Math.log(e)/Math.log(2));e;)t+=t,e--;return t+t.substring(0,r-t.length)}(" ",p),"^"),p=0)}}for(var b=s[s.length-1],h=f[f.length-1];b===h&&(p++<2?c="\n ".concat(b).concat(c):o=b,s.pop(),f.pop(),0!==s.length&&0!==f.length);)b=s[s.length-1],h=f[f.length-1];var A=Math.max(s.length,f.length);if(0===A){var x=l.split("\n");if(x.length>30)for(x[26]="".concat(m,"...").concat(O);x.length>27;)x.pop();return"".concat(S.notIdentical,"\n\n").concat(x.join("\n"),"\n")}p>3&&(c="\n".concat(m,"...").concat(O).concat(c),u=!0),""!==o&&(c="\n ".concat(o).concat(c),o="");var P=0,_=S[r]+"\n".concat(w,"+ actual").concat(O," ").concat(j,"- expected").concat(O),k=" ".concat(m,"...").concat(O," Lines skipped");for(p=0;p<A;p++){var T=p-a;if(s.length<p+1)T>1&&p>2&&(T>4?(i+="\n".concat(m,"...").concat(O),u=!0):T>3&&(i+="\n ".concat(f[p-2]),P++),i+="\n ".concat(f[p-1]),P++),a=p,o+="\n".concat(j,"-").concat(O," ").concat(f[p]),P++;else if(f.length<p+1)T>1&&p>2&&(T>4?(i+="\n".concat(m,"...").concat(O),u=!0):T>3&&(i+="\n ".concat(s[p-2]),P++),i+="\n ".concat(s[p-1]),P++),a=p,i+="\n".concat(w,"+").concat(O," ").concat(s[p]),P++;else{var R=f[p],I=s[p],F=I!==R&&(!v(I,",")||I.slice(0,-1)!==R);F&&v(R,",")&&R.slice(0,-1)===I&&(F=!1,I+=","),F?(T>1&&p>2&&(T>4?(i+="\n".concat(m,"...").concat(O),u=!0):T>3&&(i+="\n ".concat(s[p-2]),P++),i+="\n ".concat(s[p-1]),P++),a=p,i+="\n".concat(w,"+").concat(O," ").concat(I),o+="\n".concat(j,"-").concat(O," ").concat(R),P+=2):(i+=o,o="",1!==T&&0!==p||(i+="\n ".concat(I),P++))}if(P>20&&p<A-2)return"".concat(_).concat(k,"\n").concat(i,"\n").concat(m,"...").concat(O).concat(o,"\n")+"".concat(m,"...").concat(O)}return"".concat(_).concat(u?k:"","\n").concat(i).concat(o).concat(c).concat(y)}(a,c,o));else if("notDeepStrictEqual"===o||"notStrictEqual"===o){var p=S[o],y=E(a).split("\n");if("notStrictEqual"===o&&"object"===g(a)&&null!==a&&(p=S.notStrictEqualObject),y.length>30)for(y[26]="".concat(m,"...").concat(O);y.length>27;)y.pop();e=1===y.length?f.call(this,"".concat(p," ").concat(y[0])):f.call(this,"".concat(p,"\n\n").concat(y.join("\n"),"\n"))}else{var d=E(a),b="",P=S[o];"notDeepEqual"===o||"notEqual"===o?(d="".concat(S[o],"\n\n").concat(d)).length>1024&&(d="".concat(d.slice(0,1021),"...")):(b="".concat(E(c)),d.length>512&&(d="".concat(d.slice(0,509),"...")),b.length>512&&(b="".concat(b.slice(0,509),"...")),"deepEqual"===o||"equal"===o?d="".concat(P,"\n\n").concat(d,"\n\nshould equal\n\n"):b=" ".concat(o," ").concat(b)),e=f.call(this,"".concat(d).concat(b))}return Error.stackTraceLimit=s,e.generatedMessage=!r,Object.defineProperty(l(e),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),e.code="ERR_ASSERTION",e.actual=a,e.expected=c,e.operator=o,Error.captureStackTrace&&Error.captureStackTrace(l(e),i),e.stack,e.name="AssertionError",u(e)}return c=x,(s=[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:e,value:function(t,e){return b(this,i(i({},e),{},{customInspect:!1,depth:0}))}}])&&a(c.prototype,s),Object.defineProperty(c,"prototype",{writable:!1}),x}(s(Error),b.custom);t.exports=x},2136:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}function o(t,e){return o=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},o(t,e)}function i(t){return i=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},i(t)}var a,c,u={};function l(t,e,r){r||(r=Error);var a=function(r){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&o(t,e)}(s,r);var a,c,u,l=(c=s,u=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=i(c);if(u){var r=i(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===n(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(r,n,o){var i;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),i=l.call(this,function(t,r,n){return"string"==typeof e?e:e(t,r,n)}(r,n,o)),i.code=t,i}return a=s,Object.defineProperty(a,"prototype",{writable:!1}),a}(r);u[t]=a}function s(t,e){if(Array.isArray(t)){var r=t.length;return t=t.map((function(t){return String(t)})),r>2?"one of ".concat(e," ").concat(t.slice(0,r-1).join(", "),", or ")+t[r-1]:2===r?"one of ".concat(e," ").concat(t[0]," or ").concat(t[1]):"of ".concat(e," ").concat(t[0])}return"of ".concat(e," ").concat(String(t))}l("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),l("ERR_INVALID_ARG_TYPE",(function(t,e,o){var i,c,u,l,f;if(void 0===a&&(a=r(9282)),a("string"==typeof t,"'name' must be a string"),"string"==typeof e&&(c="not ",e.substr(0,4)===c)?(i="must not be",e=e.replace(/^not /,"")):i="must be",function(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substring(r-9,r)===e}(t," argument"))u="The ".concat(t," ").concat(i," ").concat(s(e,"type"));else{var p=("number"!=typeof f&&(f=0),f+1>(l=t).length||-1===l.indexOf(".",f)?"argument":"property");u='The "'.concat(t,'" ').concat(p," ").concat(i," ").concat(s(e,"type"))}return u+". Received type ".concat(n(o))}),TypeError),l("ERR_INVALID_ARG_VALUE",(function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===c&&(c=r(9539));var o=c.inspect(e);return o.length>128&&(o="".concat(o.slice(0,128),"...")),"The argument '".concat(t,"' ").concat(n,". Received ").concat(o)}),TypeError,RangeError),l("ERR_INVALID_RETURN_VALUE",(function(t,e,r){var o;return o=r&&r.constructor&&r.constructor.name?"instance of ".concat(r.constructor.name):"type ".concat(n(r)),"Expected ".concat(t,' to be returned from the "').concat(e,'"')+" function but got ".concat(o,".")}),TypeError),l("ERR_MISSING_ARGS",(function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];void 0===a&&(a=r(9282)),a(e.length>0,"At least one arg needs to be specified");var o="The ",i=e.length;switch(e=e.map((function(t){return'"'.concat(t,'"')})),i){case 1:o+="".concat(e[0]," argument");break;case 2:o+="".concat(e[0]," and ").concat(e[1]," arguments");break;default:o+=e.slice(0,i-1).join(", "),o+=", and ".concat(e[i-1]," arguments")}return"".concat(o," must be specified")}),TypeError),t.exports.codes=u},9158:(t,e,r)=>{"use strict";function n(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,c=[],u=!0,l=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(c.push(n.value),c.length!==e);u=!0);}catch(t){l=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(l)throw o}}return c}}(t,e)||function(t,e){if(t){if("string"==typeof t)return o(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(t,e):void 0}}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function i(t){return i="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},i(t)}var a=void 0!==/a/g.flags,c=function(t){var e=[];return t.forEach((function(t){return e.push(t)})),e},u=function(t){var e=[];return t.forEach((function(t,r){return e.push([r,t])})),e},l=Object.is?Object.is:r(609),s=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},f=Number.isNaN?Number.isNaN:r(360);function p(t){return t.call.bind(t)}var y=p(Object.prototype.hasOwnProperty),d=p(Object.prototype.propertyIsEnumerable),g=p(Object.prototype.toString),b=r(9539).types,h=b.isAnyArrayBuffer,v=b.isArrayBufferView,m=b.isDate,w=b.isMap,j=b.isRegExp,O=b.isSet,S=b.isNativeError,A=b.isBoxedPrimitive,E=b.isNumberObject,x=b.isStringObject,P=b.isBooleanObject,_=b.isBigIntObject,k=b.isSymbolObject,T=b.isFloat32Array,R=b.isFloat64Array;function I(t){if(0===t.length||t.length>10)return!0;for(var e=0;e<t.length;e++){var r=t.charCodeAt(e);if(r<48||r>57)return!0}return 10===t.length&&t>=Math.pow(2,32)}function F(t){return Object.keys(t).filter(I).concat(s(t).filter(Object.prototype.propertyIsEnumerable.bind(t)))}function N(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,o=0,i=Math.min(r,n);o<i;++o)if(t[o]!==e[o]){r=t[o],n=e[o];break}return r<n?-1:n<r?1:0}function U(t,e,r,n){if(t===e)return 0!==t||!r||l(t,e);if(r){if("object"!==i(t))return"number"==typeof t&&f(t)&&f(e);if("object"!==i(e)||null===t||null===e)return!1;if(Object.getPrototypeOf(t)!==Object.getPrototypeOf(e))return!1}else{if(null===t||"object"!==i(t))return(null===e||"object"!==i(e))&&t==e;if(null===e||"object"!==i(e))return!1}var o,c,u,s,p=g(t);if(p!==g(e))return!1;if(Array.isArray(t)){if(t.length!==e.length)return!1;var y=F(t),d=F(e);return y.length===d.length&&B(t,e,r,n,1,y)}if("[object Object]"===p&&(!w(t)&&w(e)||!O(t)&&O(e)))return!1;if(m(t)){if(!m(e)||Date.prototype.getTime.call(t)!==Date.prototype.getTime.call(e))return!1}else if(j(t)){if(!j(e)||(u=t,s=e,!(a?u.source===s.source&&u.flags===s.flags:RegExp.prototype.toString.call(u)===RegExp.prototype.toString.call(s))))return!1}else if(S(t)||t instanceof Error){if(t.message!==e.message||t.name!==e.name)return!1}else{if(v(t)){if(r||!T(t)&&!R(t)){if(!function(t,e){return t.byteLength===e.byteLength&&0===N(new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Uint8Array(e.buffer,e.byteOffset,e.byteLength))}(t,e))return!1}else if(!function(t,e){if(t.byteLength!==e.byteLength)return!1;for(var r=0;r<t.byteLength;r++)if(t[r]!==e[r])return!1;return!0}(t,e))return!1;var b=F(t),I=F(e);return b.length===I.length&&B(t,e,r,n,0,b)}if(O(t))return!(!O(e)||t.size!==e.size)&&B(t,e,r,n,2);if(w(t))return!(!w(e)||t.size!==e.size)&&B(t,e,r,n,3);if(h(t)){if(c=e,(o=t).byteLength!==c.byteLength||0!==N(new Uint8Array(o),new Uint8Array(c)))return!1}else if(A(t)&&!function(t,e){return E(t)?E(e)&&l(Number.prototype.valueOf.call(t),Number.prototype.valueOf.call(e)):x(t)?x(e)&&String.prototype.valueOf.call(t)===String.prototype.valueOf.call(e):P(t)?P(e)&&Boolean.prototype.valueOf.call(t)===Boolean.prototype.valueOf.call(e):_(t)?_(e)&&BigInt.prototype.valueOf.call(t)===BigInt.prototype.valueOf.call(e):k(e)&&Symbol.prototype.valueOf.call(t)===Symbol.prototype.valueOf.call(e)}(t,e))return!1}return B(t,e,r,n,0)}function D(t,e){return e.filter((function(e){return d(t,e)}))}function B(t,e,r,o,a,l){if(5===arguments.length){l=Object.keys(t);var f=Object.keys(e);if(l.length!==f.length)return!1}for(var p=0;p<l.length;p++)if(!y(e,l[p]))return!1;if(r&&5===arguments.length){var g=s(t);if(0!==g.length){var b=0;for(p=0;p<g.length;p++){var h=g[p];if(d(t,h)){if(!d(e,h))return!1;l.push(h),b++}else if(d(e,h))return!1}var v=s(e);if(g.length!==v.length&&D(e,v).length!==b)return!1}else{var m=s(e);if(0!==m.length&&0!==D(e,m).length)return!1}}if(0===l.length&&(0===a||1===a&&0===t.length||0===t.size))return!0;if(void 0===o)o={val1:new Map,val2:new Map,position:0};else{var w=o.val1.get(t);if(void 0!==w){var j=o.val2.get(e);if(void 0!==j)return w===j}o.position++}o.val1.set(t,o.position),o.val2.set(e,o.position);var O=function(t,e,r,o,a,l){var s=0;if(2===l){if(!function(t,e,r,n){for(var o=null,a=c(t),u=0;u<a.length;u++){var l=a[u];if("object"===i(l)&&null!==l)null===o&&(o=new Set),o.add(l);else if(!e.has(l)){if(r)return!1;if(!L(t,e,l))return!1;null===o&&(o=new Set),o.add(l)}}if(null!==o){for(var s=c(e),f=0;f<s.length;f++){var p=s[f];if("object"===i(p)&&null!==p){if(!M(o,p,r,n))return!1}else if(!r&&!t.has(p)&&!M(o,p,r,n))return!1}return 0===o.size}return!0}(t,e,r,a))return!1}else if(3===l){if(!function(t,e,r,o){for(var a=null,c=u(t),l=0;l<c.length;l++){var s=n(c[l],2),f=s[0],p=s[1];if("object"===i(f)&&null!==f)null===a&&(a=new Set),a.add(f);else{var y=e.get(f);if(void 0===y&&!e.has(f)||!U(p,y,r,o)){if(r)return!1;if(!C(t,e,f,p,o))return!1;null===a&&(a=new Set),a.add(f)}}}if(null!==a){for(var d=u(e),g=0;g<d.length;g++){var b=n(d[g],2),h=b[0],v=b[1];if("object"===i(h)&&null!==h){if(!$(a,t,h,v,r,o))return!1}else if(!(r||t.has(h)&&U(t.get(h),v,!1,o)||$(a,t,h,v,!1,o)))return!1}return 0===a.size}return!0}(t,e,r,a))return!1}else if(1===l)for(;s<t.length;s++){if(!y(t,s)){if(y(e,s))return!1;for(var f=Object.keys(t);s<f.length;s++){var p=f[s];if(!y(e,p)||!U(t[p],e[p],r,a))return!1}return f.length===Object.keys(e).length}if(!y(e,s)||!U(t[s],e[s],r,a))return!1}for(s=0;s<o.length;s++){var d=o[s];if(!U(t[d],e[d],r,a))return!1}return!0}(t,e,r,l,o,a);return o.val1.delete(t),o.val2.delete(e),O}function M(t,e,r,n){for(var o=c(t),i=0;i<o.length;i++){var a=o[i];if(U(e,a,r,n))return t.delete(a),!0}return!1}function q(t){switch(i(t)){case"undefined":return null;case"object":return;case"symbol":return!1;case"string":t=+t;case"number":if(f(t))return!1}return!0}function L(t,e,r){var n=q(r);return null!=n?n:e.has(n)&&!t.has(n)}function C(t,e,r,n,o){var i=q(r);if(null!=i)return i;var a=e.get(i);return!(void 0===a&&!e.has(i)||!U(n,a,!1,o))&&!t.has(i)&&U(n,a,!1,o)}function $(t,e,r,n,o,i){for(var a=c(t),u=0;u<a.length;u++){var l=a[u];if(U(r,l,o,i)&&U(n,e.get(l),o,i))return t.delete(l),!0}return!1}t.exports={isDeepEqual:function(t,e){return U(t,e,!1)},isDeepStrictEqual:function(t,e){return U(t,e,!0)}}},1924:(t,e,r)=>{"use strict";var n=r(210),o=r(5559),i=o(n("String.prototype.indexOf"));t.exports=function(t,e){var r=n(t,!!e);return"function"==typeof r&&i(t,".prototype.")>-1?o(r):r}},5559:(t,e,r)=>{"use strict";var n=r(8612),o=r(210),i=r(7771),a=r(4453),c=o("%Function.prototype.apply%"),u=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||n.call(u,c),s=r(4429),f=o("%Math.max%");t.exports=function(t){if("function"!=typeof t)throw new a("a function is required");var e=l(n,u,arguments);return i(e,1+f(0,t.length-(arguments.length-1)),!0)};var p=function(){return l(n,c,arguments)};s?s(t.exports,"apply",{value:p}):t.exports.apply=p},5108:(t,e,r)=>{var n=r(9539),o=r(9282);function i(){return(new Date).getTime()}var a,c=Array.prototype.slice,u={};a=void 0!==r.g&&r.g.console?r.g.console:"undefined"!=typeof window&&window.console?window.console:{};for(var l=[[function(){},"log"],[function(){a.log.apply(a,arguments)},"info"],[function(){a.log.apply(a,arguments)},"warn"],[function(){a.warn.apply(a,arguments)},"error"],[function(t){u[t]=i()},"time"],[function(t){var e=u[t];if(!e)throw new Error("No such label: "+t);delete u[t];var r=i()-e;a.log(t+": "+r+"ms")},"timeEnd"],[function(){var t=new Error;t.name="Trace",t.message=n.format.apply(null,arguments),a.error(t.stack)},"trace"],[function(t){a.log(n.inspect(t)+"\n")},"dir"],[function(t){if(!t){var e=c.call(arguments,1);o.ok(!1,n.format.apply(null,e))}},"assert"]],s=0;s<l.length;s++){var f=l[s],p=f[0],y=f[1];a[y]||(a[y]=p)}t.exports=a},2296:(t,e,r)=>{"use strict";var n=r(4429),o=r(3464),i=r(4453),a=r(7296);t.exports=function(t,e,r){if(!t||"object"!=typeof t&&"function"!=typeof t)throw new i("`obj` must be an object or a function`");if("string"!=typeof e&&"symbol"!=typeof e)throw new i("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new i("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new i("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new i("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new i("`loose`, if provided, must be a boolean");var c=arguments.length>3?arguments[3]:null,u=arguments.length>4?arguments[4]:null,l=arguments.length>5?arguments[5]:null,s=arguments.length>6&&arguments[6],f=!!a&&a(t,e);if(n)n(t,e,{configurable:null===l&&f?f.configurable:!l,enumerable:null===c&&f?f.enumerable:!c,value:r,writable:null===u&&f?f.writable:!u});else{if(!s&&(c||u||l))throw new o("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");t[e]=r}}},4289:(t,e,r)=>{"use strict";var n=r(2215),o="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),i=Object.prototype.toString,a=Array.prototype.concat,c=r(2296),u=r(1044)(),l=function(t,e,r,n){if(e in t)if(!0===n){if(t[e]===r)return}else if("function"!=typeof(o=n)||"[object Function]"!==i.call(o)||!n())return;var o;u?c(t,e,r,!0):c(t,e,r)},s=function(t,e){var r=arguments.length>2?arguments[2]:{},i=n(e);o&&(i=a.call(i,Object.getOwnPropertySymbols(e)));for(var c=0;c<i.length;c+=1)l(t,i[c],e[i[c]],r[i[c]])};s.supportsDescriptors=!!u,t.exports=s},4429:(t,e,r)=>{"use strict";var n=r(210)("%Object.defineProperty%",!0)||!1;if(n)try{n({},"a",{value:1})}catch(t){n=!1}t.exports=n},3981:t=>{"use strict";t.exports=EvalError},1648:t=>{"use strict";t.exports=Error},4726:t=>{"use strict";t.exports=RangeError},6712:t=>{"use strict";t.exports=ReferenceError},3464:t=>{"use strict";t.exports=SyntaxError},4453:t=>{"use strict";t.exports=TypeError},3915:t=>{"use strict";t.exports=URIError},4029:(t,e,r)=>{"use strict";var n=r(5320),o=Object.prototype.toString,i=Object.prototype.hasOwnProperty;t.exports=function(t,e,r){if(!n(e))throw new TypeError("iterator must be a function");var a;arguments.length>=3&&(a=r),"[object Array]"===o.call(t)?function(t,e,r){for(var n=0,o=t.length;n<o;n++)i.call(t,n)&&(null==r?e(t[n],n,t):e.call(r,t[n],n,t))}(t,e,a):"string"==typeof t?function(t,e,r){for(var n=0,o=t.length;n<o;n++)null==r?e(t.charAt(n),n,t):e.call(r,t.charAt(n),n,t)}(t,e,a):function(t,e,r){for(var n in t)i.call(t,n)&&(null==r?e(t[n],n,t):e.call(r,t[n],n,t))}(t,e,a)}},7648:t=>{"use strict";var e=Object.prototype.toString,r=Math.max,n=function(t,e){for(var r=[],n=0;n<t.length;n+=1)r[n]=t[n];for(var o=0;o<e.length;o+=1)r[o+t.length]=e[o];return r};t.exports=function(t){var o=this;if("function"!=typeof o||"[object Function]"!==e.apply(o))throw new TypeError("Function.prototype.bind called on incompatible "+o);for(var i,a=function(t){for(var e=[],r=1,n=0;r<t.length;r+=1,n+=1)e[n]=t[r];return e}(arguments),c=r(0,o.length-a.length),u=[],l=0;l<c;l++)u[l]="$"+l;if(i=Function("binder","return function ("+function(t){for(var e="",r=0;r<t.length;r+=1)e+=t[r],r+1<t.length&&(e+=",");return e}(u)+"){ return binder.apply(this,arguments); }")((function(){if(this instanceof i){var e=o.apply(this,n(a,arguments));return Object(e)===e?e:this}return o.apply(t,n(a,arguments))})),o.prototype){var s=function(){};s.prototype=o.prototype,i.prototype=new s,s.prototype=null}return i}},8612:(t,e,r)=>{"use strict";var n=r(7648);t.exports=Function.prototype.bind||n},210:(t,e,r)=>{"use strict";var n,o=r(1648),i=r(3981),a=r(4726),c=r(6712),u=r(3464),l=r(4453),s=r(3915),f=Function,p=function(t){try{return f('"use strict"; return ('+t+").constructor;")()}catch(t){}},y=Object.getOwnPropertyDescriptor;if(y)try{y({},"")}catch(t){y=null}var d=function(){throw new l},g=y?function(){try{return d}catch(t){try{return y(arguments,"callee").get}catch(t){return d}}}():d,b=r(1405)(),h=r(8185)(),v=Object.getPrototypeOf||(h?function(t){return t.__proto__}:null),m={},w="undefined"!=typeof Uint8Array&&v?v(Uint8Array):n,j={__proto__:null,"%AggregateError%":"undefined"==typeof AggregateError?n:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?n:ArrayBuffer,"%ArrayIteratorPrototype%":b&&v?v([][Symbol.iterator]()):n,"%AsyncFromSyncIteratorPrototype%":n,"%AsyncFunction%":m,"%AsyncGenerator%":m,"%AsyncGeneratorFunction%":m,"%AsyncIteratorPrototype%":m,"%Atomics%":"undefined"==typeof Atomics?n:Atomics,"%BigInt%":"undefined"==typeof BigInt?n:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?n:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?n:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?n:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":o,"%eval%":eval,"%EvalError%":i,"%Float32Array%":"undefined"==typeof Float32Array?n:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?n:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?n:FinalizationRegistry,"%Function%":f,"%GeneratorFunction%":m,"%Int8Array%":"undefined"==typeof Int8Array?n:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?n:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?n:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":b&&v?v(v([][Symbol.iterator]())):n,"%JSON%":"object"==typeof JSON?JSON:n,"%Map%":"undefined"==typeof Map?n:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&b&&v?v((new Map)[Symbol.iterator]()):n,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?n:Promise,"%Proxy%":"undefined"==typeof Proxy?n:Proxy,"%RangeError%":a,"%ReferenceError%":c,"%Reflect%":"undefined"==typeof Reflect?n:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?n:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&b&&v?v((new Set)[Symbol.iterator]()):n,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?n:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":b&&v?v(""[Symbol.iterator]()):n,"%Symbol%":b?Symbol:n,"%SyntaxError%":u,"%ThrowTypeError%":g,"%TypedArray%":w,"%TypeError%":l,"%Uint8Array%":"undefined"==typeof Uint8Array?n:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?n:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?n:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?n:Uint32Array,"%URIError%":s,"%WeakMap%":"undefined"==typeof WeakMap?n:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?n:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?n:WeakSet};if(v)try{null.error}catch(t){var O=v(v(t));j["%Error.prototype%"]=O}var S=function t(e){var r;if("%AsyncFunction%"===e)r=p("async function () {}");else if("%GeneratorFunction%"===e)r=p("function* () {}");else if("%AsyncGeneratorFunction%"===e)r=p("async function* () {}");else if("%AsyncGenerator%"===e){var n=t("%AsyncGeneratorFunction%");n&&(r=n.prototype)}else if("%AsyncIteratorPrototype%"===e){var o=t("%AsyncGenerator%");o&&v&&(r=v(o.prototype))}return j[e]=r,r},A={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},E=r(8612),x=r(8824),P=E.call(Function.call,Array.prototype.concat),_=E.call(Function.apply,Array.prototype.splice),k=E.call(Function.call,String.prototype.replace),T=E.call(Function.call,String.prototype.slice),R=E.call(Function.call,RegExp.prototype.exec),I=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,F=/\\(\\)?/g,N=function(t,e){var r,n=t;if(x(A,n)&&(n="%"+(r=A[n])[0]+"%"),x(j,n)){var o=j[n];if(o===m&&(o=S(n)),void 0===o&&!e)throw new l("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:r,name:n,value:o}}throw new u("intrinsic "+t+" does not exist!")};t.exports=function(t,e){if("string"!=typeof t||0===t.length)throw new l("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof e)throw new l('"allowMissing" argument must be a boolean');if(null===R(/^%?[^%]*%?$/,t))throw new u("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var r=function(t){var e=T(t,0,1),r=T(t,-1);if("%"===e&&"%"!==r)throw new u("invalid intrinsic syntax, expected closing `%`");if("%"===r&&"%"!==e)throw new u("invalid intrinsic syntax, expected opening `%`");var n=[];return k(t,I,(function(t,e,r,o){n[n.length]=r?k(o,F,"$1"):e||t})),n}(t),n=r.length>0?r[0]:"",o=N("%"+n+"%",e),i=o.name,a=o.value,c=!1,s=o.alias;s&&(n=s[0],_(r,P([0,1],s)));for(var f=1,p=!0;f<r.length;f+=1){var d=r[f],g=T(d,0,1),b=T(d,-1);if(('"'===g||"'"===g||"`"===g||'"'===b||"'"===b||"`"===b)&&g!==b)throw new u("property names with quotes must have matching quotes");if("constructor"!==d&&p||(c=!0),x(j,i="%"+(n+="."+d)+"%"))a=j[i];else if(null!=a){if(!(d in a)){if(!e)throw new l("base intrinsic for "+t+" exists, but the property is not available.");return}if(y&&f+1>=r.length){var h=y(a,d);a=(p=!!h)&&"get"in h&&!("originalValue"in h.get)?h.get:a[d]}else p=x(a,d),a=a[d];p&&!c&&(j[i]=a)}}return a}},7296:(t,e,r)=>{"use strict";var n=r(210)("%Object.getOwnPropertyDescriptor%",!0);if(n)try{n([],"length")}catch(t){n=null}t.exports=n},1044:(t,e,r)=>{"use strict";var n=r(4429),o=function(){return!!n};o.hasArrayLengthDefineBug=function(){if(!n)return null;try{return 1!==n([],"length",{value:1}).length}catch(t){return!0}},t.exports=o},8185:t=>{"use strict";var e={__proto__:null,foo:{}},r={__proto__:e}.foo===e.foo&&!(e instanceof Object);t.exports=function(){return r}},1405:(t,e,r)=>{"use strict";var n="undefined"!=typeof Symbol&&Symbol,o=r(5419);t.exports=function(){return"function"==typeof n&&"function"==typeof Symbol&&"symbol"==typeof n("foo")&&"symbol"==typeof Symbol("bar")&&o()}},5419:t=>{"use strict";t.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},e=Symbol("test"),r=Object(e);if("string"==typeof e)return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;if("[object Symbol]"!==Object.prototype.toString.call(r))return!1;for(e in t[e]=42,t)return!1;if("function"==typeof Object.keys&&0!==Object.keys(t).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(t).length)return!1;var n=Object.getOwnPropertySymbols(t);if(1!==n.length||n[0]!==e)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,e))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var o=Object.getOwnPropertyDescriptor(t,e);if(42!==o.value||!0!==o.enumerable)return!1}return!0}},6410:(t,e,r)=>{"use strict";var n=r(5419);t.exports=function(){return n()&&!!Symbol.toStringTag}},8824:(t,e,r)=>{"use strict";var n=Function.prototype.call,o=Object.prototype.hasOwnProperty,i=r(8612);t.exports=i.call(n,o)},5717:t=>{"function"==typeof Object.create?t.exports=function(t,e){e&&(t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}))}:t.exports=function(t,e){if(e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}}},2584:(t,e,r)=>{"use strict";var n=r(6410)(),o=r(1924)("Object.prototype.toString"),i=function(t){return!(n&&t&&"object"==typeof t&&Symbol.toStringTag in t)&&"[object Arguments]"===o(t)},a=function(t){return!!i(t)||null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Array]"!==o(t)&&"[object Function]"===o(t.callee)},c=function(){return i(arguments)}();i.isLegacyArguments=a,t.exports=c?i:a},5320:t=>{"use strict";var e,r,n=Function.prototype.toString,o="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof o&&"function"==typeof Object.defineProperty)try{e=Object.defineProperty({},"length",{get:function(){throw r}}),r={},o((function(){throw 42}),null,e)}catch(t){t!==r&&(o=null)}else o=null;var i=/^\s*class\b/,a=function(t){try{var e=n.call(t);return i.test(e)}catch(t){return!1}},c=function(t){try{return!a(t)&&(n.call(t),!0)}catch(t){return!1}},u=Object.prototype.toString,l="function"==typeof Symbol&&!!Symbol.toStringTag,s=!(0 in[,]),f=function(){return!1};if("object"==typeof document){var p=document.all;u.call(p)===u.call(document.all)&&(f=function(t){if((s||!t)&&(void 0===t||"object"==typeof t))try{var e=u.call(t);return("[object HTMLAllCollection]"===e||"[object HTML document.all class]"===e||"[object HTMLCollection]"===e||"[object Object]"===e)&&null==t("")}catch(t){}return!1})}t.exports=o?function(t){if(f(t))return!0;if(!t)return!1;if("function"!=typeof t&&"object"!=typeof t)return!1;try{o(t,null,e)}catch(t){if(t!==r)return!1}return!a(t)&&c(t)}:function(t){if(f(t))return!0;if(!t)return!1;if("function"!=typeof t&&"object"!=typeof t)return!1;if(l)return c(t);if(a(t))return!1;var e=u.call(t);return!("[object Function]"!==e&&"[object GeneratorFunction]"!==e&&!/^\[object HTML/.test(e))&&c(t)}},8662:(t,e,r)=>{"use strict";var n,o=Object.prototype.toString,i=Function.prototype.toString,a=/^\s*(?:function)?\*/,c=r(6410)(),u=Object.getPrototypeOf;t.exports=function(t){if("function"!=typeof t)return!1;if(a.test(i.call(t)))return!0;if(!c)return"[object GeneratorFunction]"===o.call(t);if(!u)return!1;if(void 0===n){var e=function(){if(!c)return!1;try{return Function("return function*() {}")()}catch(t){}}();n=!!e&&u(e)}return u(t)===n}},8611:t=>{"use strict";t.exports=function(t){return t!=t}},360:(t,e,r)=>{"use strict";var n=r(5559),o=r(4289),i=r(8611),a=r(9415),c=r(3194),u=n(a(),Number);o(u,{getPolyfill:a,implementation:i,shim:c}),t.exports=u},9415:(t,e,r)=>{"use strict";var n=r(8611);t.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:n}},3194:(t,e,r)=>{"use strict";var n=r(4289),o=r(9415);t.exports=function(){var t=o();return n(Number,{isNaN:t},{isNaN:function(){return Number.isNaN!==t}}),t}},5692:(t,e,r)=>{"use strict";var n=r(6430);t.exports=function(t){return!!n(t)}},4244:t=>{"use strict";var e=function(t){return t!=t};t.exports=function(t,r){return 0===t&&0===r?1/t==1/r:t===r||!(!e(t)||!e(r))}},609:(t,e,r)=>{"use strict";var n=r(4289),o=r(5559),i=r(4244),a=r(5624),c=r(2281),u=o(a(),Object);n(u,{getPolyfill:a,implementation:i,shim:c}),t.exports=u},5624:(t,e,r)=>{"use strict";var n=r(4244);t.exports=function(){return"function"==typeof Object.is?Object.is:n}},2281:(t,e,r)=>{"use strict";var n=r(5624),o=r(4289);t.exports=function(){var t=n();return o(Object,{is:t},{is:function(){return Object.is!==t}}),t}},8987:(t,e,r)=>{"use strict";var n;if(!Object.keys){var o=Object.prototype.hasOwnProperty,i=Object.prototype.toString,a=r(1414),c=Object.prototype.propertyIsEnumerable,u=!c.call({toString:null},"toString"),l=c.call((function(){}),"prototype"),s=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],f=function(t){var e=t.constructor;return e&&e.prototype===t},p={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},y=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!p["$"+t]&&o.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{f(window[t])}catch(t){return!0}}catch(t){return!0}return!1}();n=function(t){var e=null!==t&&"object"==typeof t,r="[object Function]"===i.call(t),n=a(t),c=e&&"[object String]"===i.call(t),p=[];if(!e&&!r&&!n)throw new TypeError("Object.keys called on a non-object");var d=l&&r;if(c&&t.length>0&&!o.call(t,0))for(var g=0;g<t.length;++g)p.push(String(g));if(n&&t.length>0)for(var b=0;b<t.length;++b)p.push(String(b));else for(var h in t)d&&"prototype"===h||!o.call(t,h)||p.push(String(h));if(u)for(var v=function(t){if("undefined"==typeof window||!y)return f(t);try{return f(t)}catch(t){return!1}}(t),m=0;m<s.length;++m)v&&"constructor"===s[m]||!o.call(t,s[m])||p.push(s[m]);return p}}t.exports=n},2215:(t,e,r)=>{"use strict";var n=Array.prototype.slice,o=r(1414),i=Object.keys,a=i?function(t){return i(t)}:r(8987),c=Object.keys;a.shim=function(){if(Object.keys){var t=function(){var t=Object.keys(arguments);return t&&t.length===arguments.length}(1,2);t||(Object.keys=function(t){return o(t)?c(n.call(t)):c(t)})}else Object.keys=a;return Object.keys||a},t.exports=a},1414:t=>{"use strict";var e=Object.prototype.toString;t.exports=function(t){var r=e.call(t),n="[object Arguments]"===r;return n||(n="[object Array]"!==r&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===e.call(t.callee)),n}},2837:(t,e,r)=>{"use strict";var n=r(2215),o=r(5419)(),i=r(1924),a=Object,c=i("Array.prototype.push"),u=i("Object.prototype.propertyIsEnumerable"),l=o?Object.getOwnPropertySymbols:null;t.exports=function(t,e){if(null==t)throw new TypeError("target must be an object");var r=a(t);if(1===arguments.length)return r;for(var i=1;i<arguments.length;++i){var s=a(arguments[i]),f=n(s),p=o&&(Object.getOwnPropertySymbols||l);if(p)for(var y=p(s),d=0;d<y.length;++d){var g=y[d];u(s,g)&&c(f,g)}for(var b=0;b<f.length;++b){var h=f[b];if(u(s,h)){var v=s[h];r[h]=v}}}return r}},8162:(t,e,r)=>{"use strict";var n=r(2837);t.exports=function(){return Object.assign?function(){if(!Object.assign)return!1;for(var t="abcdefghijklmnopqrst",e=t.split(""),r={},n=0;n<e.length;++n)r[e[n]]=e[n];var o=Object.assign({},r),i="";for(var a in o)i+=a;return t!==i}()||function(){if(!Object.assign||!Object.preventExtensions)return!1;var t=Object.preventExtensions({1:2});try{Object.assign(t,"xy")}catch(e){return"y"===t[1]}return!1}()?n:Object.assign:n}},9908:t=>{"use strict";t.exports=["Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},4155:t=>{var e,r,n=t.exports={};function o(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function a(t){if(e===setTimeout)return setTimeout(t,0);if((e===o||!e)&&setTimeout)return e=setTimeout,setTimeout(t,0);try{return e(t,0)}catch(r){try{return e.call(null,t,0)}catch(r){return e.call(this,t,0)}}}!function(){try{e="function"==typeof setTimeout?setTimeout:o}catch(t){e=o}try{r="function"==typeof clearTimeout?clearTimeout:i}catch(t){r=i}}();var c,u=[],l=!1,s=-1;function f(){l&&c&&(l=!1,c.length?u=c.concat(u):s=-1,u.length&&p())}function p(){if(!l){var t=a(f);l=!0;for(var e=u.length;e;){for(c=u,u=[];++s<e;)c&&c[s].run();s=-1,e=u.length}c=null,l=!1,function(t){if(r===clearTimeout)return clearTimeout(t);if((r===i||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(t);try{return r(t)}catch(e){try{return r.call(null,t)}catch(e){return r.call(this,t)}}}(t)}}function y(t,e){this.fun=t,this.array=e}function d(){}n.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];u.push(new y(t,e)),1!==u.length||l||a(p)},y.prototype.run=function(){this.fun.apply(null,this.array)},n.title="browser",n.browser=!0,n.env={},n.argv=[],n.version="",n.versions={},n.on=d,n.addListener=d,n.once=d,n.off=d,n.removeListener=d,n.removeAllListeners=d,n.emit=d,n.prependListener=d,n.prependOnceListener=d,n.listeners=function(t){return[]},n.binding=function(t){throw new Error("process.binding is not supported")},n.cwd=function(){return"/"},n.chdir=function(t){throw new Error("process.chdir is not supported")},n.umask=function(){return 0}},7771:(t,e,r)=>{"use strict";var n=r(210),o=r(2296),i=r(1044)(),a=r(7296),c=r(4453),u=n("%Math.floor%");t.exports=function(t,e){if("function"!=typeof t)throw new c("`fn` is not a function");if("number"!=typeof e||e<0||e>4294967295||u(e)!==e)throw new c("`length` must be a positive 32-bit integer");var r=arguments.length>2&&!!arguments[2],n=!0,l=!0;if("length"in t&&a){var s=a(t,"length");s&&!s.configurable&&(n=!1),s&&!s.writable&&(l=!1)}return(n||l||!r)&&(i?o(t,"length",e,!0,!0):o(t,"length",e)),t}},384:t=>{t.exports=function(t){return t&&"object"==typeof t&&"function"==typeof t.copy&&"function"==typeof t.fill&&"function"==typeof t.readUInt8}},5955:(t,e,r)=>{"use strict";var n=r(2584),o=r(8662),i=r(6430),a=r(5692);function c(t){return t.call.bind(t)}var u="undefined"!=typeof BigInt,l="undefined"!=typeof Symbol,s=c(Object.prototype.toString),f=c(Number.prototype.valueOf),p=c(String.prototype.valueOf),y=c(Boolean.prototype.valueOf);if(u)var d=c(BigInt.prototype.valueOf);if(l)var g=c(Symbol.prototype.valueOf);function b(t,e){if("object"!=typeof t)return!1;try{return e(t),!0}catch(t){return!1}}function h(t){return"[object Map]"===s(t)}function v(t){return"[object Set]"===s(t)}function m(t){return"[object WeakMap]"===s(t)}function w(t){return"[object WeakSet]"===s(t)}function j(t){return"[object ArrayBuffer]"===s(t)}function O(t){return"undefined"!=typeof ArrayBuffer&&(j.working?j(t):t instanceof ArrayBuffer)}function S(t){return"[object DataView]"===s(t)}function A(t){return"undefined"!=typeof DataView&&(S.working?S(t):t instanceof DataView)}e.isArgumentsObject=n,e.isGeneratorFunction=o,e.isTypedArray=a,e.isPromise=function(t){return"undefined"!=typeof Promise&&t instanceof Promise||null!==t&&"object"==typeof t&&"function"==typeof t.then&&"function"==typeof t.catch},e.isArrayBufferView=function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):a(t)||A(t)},e.isUint8Array=function(t){return"Uint8Array"===i(t)},e.isUint8ClampedArray=function(t){return"Uint8ClampedArray"===i(t)},e.isUint16Array=function(t){return"Uint16Array"===i(t)},e.isUint32Array=function(t){return"Uint32Array"===i(t)},e.isInt8Array=function(t){return"Int8Array"===i(t)},e.isInt16Array=function(t){return"Int16Array"===i(t)},e.isInt32Array=function(t){return"Int32Array"===i(t)},e.isFloat32Array=function(t){return"Float32Array"===i(t)},e.isFloat64Array=function(t){return"Float64Array"===i(t)},e.isBigInt64Array=function(t){return"BigInt64Array"===i(t)},e.isBigUint64Array=function(t){return"BigUint64Array"===i(t)},h.working="undefined"!=typeof Map&&h(new Map),e.isMap=function(t){return"undefined"!=typeof Map&&(h.working?h(t):t instanceof Map)},v.working="undefined"!=typeof Set&&v(new Set),e.isSet=function(t){return"undefined"!=typeof Set&&(v.working?v(t):t instanceof Set)},m.working="undefined"!=typeof WeakMap&&m(new WeakMap),e.isWeakMap=function(t){return"undefined"!=typeof WeakMap&&(m.working?m(t):t instanceof WeakMap)},w.working="undefined"!=typeof WeakSet&&w(new WeakSet),e.isWeakSet=function(t){return w(t)},j.working="undefined"!=typeof ArrayBuffer&&j(new ArrayBuffer),e.isArrayBuffer=O,S.working="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView&&S(new DataView(new ArrayBuffer(1),0,1)),e.isDataView=A;var E="undefined"!=typeof SharedArrayBuffer?SharedArrayBuffer:void 0;function x(t){return"[object SharedArrayBuffer]"===s(t)}function P(t){return void 0!==E&&(void 0===x.working&&(x.working=x(new E)),x.working?x(t):t instanceof E)}function _(t){return b(t,f)}function k(t){return b(t,p)}function T(t){return b(t,y)}function R(t){return u&&b(t,d)}function I(t){return l&&b(t,g)}e.isSharedArrayBuffer=P,e.isAsyncFunction=function(t){return"[object AsyncFunction]"===s(t)},e.isMapIterator=function(t){return"[object Map Iterator]"===s(t)},e.isSetIterator=function(t){return"[object Set Iterator]"===s(t)},e.isGeneratorObject=function(t){return"[object Generator]"===s(t)},e.isWebAssemblyCompiledModule=function(t){return"[object WebAssembly.Module]"===s(t)},e.isNumberObject=_,e.isStringObject=k,e.isBooleanObject=T,e.isBigIntObject=R,e.isSymbolObject=I,e.isBoxedPrimitive=function(t){return _(t)||k(t)||T(t)||R(t)||I(t)},e.isAnyArrayBuffer=function(t){return"undefined"!=typeof Uint8Array&&(O(t)||P(t))},["isProxy","isExternal","isModuleNamespaceObject"].forEach((function(t){Object.defineProperty(e,t,{enumerable:!1,value:function(){throw new Error(t+" is not supported in userland")}})}))},9539:(t,e,r)=>{var n=r(4155),o=r(5108),i=Object.getOwnPropertyDescriptors||function(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++)r[e[n]]=Object.getOwnPropertyDescriptor(t,e[n]);return r},a=/%[sdj%]/g;e.format=function(t){if(!w(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(s(arguments[r]));return e.join(" ")}r=1;for(var n=arguments,o=n.length,i=String(t).replace(a,(function(t){if("%%"===t)return"%";if(r>=o)return t;switch(t){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(t){return"[Circular]"}default:return t}})),c=n[r];r<o;c=n[++r])v(c)||!S(c)?i+=" "+c:i+=" "+s(c);return i},e.deprecate=function(t,r){if(void 0!==n&&!0===n.noDeprecation)return t;if(void 0===n)return function(){return e.deprecate(t,r).apply(this,arguments)};var i=!1;return function(){if(!i){if(n.throwDeprecation)throw new Error(r);n.traceDeprecation?o.trace(r):o.error(r),i=!0}return t.apply(this,arguments)}};var c={},u=/^$/;if(n.env.NODE_DEBUG){var l=n.env.NODE_DEBUG;l=l.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),u=new RegExp("^"+l+"$","i")}function s(t,r){var n={seen:[],stylize:p};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),h(r)?n.showHidden=r:r&&e._extend(n,r),j(n.showHidden)&&(n.showHidden=!1),j(n.depth)&&(n.depth=2),j(n.colors)&&(n.colors=!1),j(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=f),y(n,t,n.depth)}function f(t,e){var r=s.styles[e];return r?"["+s.colors[r][0]+"m"+t+"["+s.colors[r][1]+"m":t}function p(t,e){return t}function y(t,r,n){if(t.customInspect&&r&&x(r.inspect)&&r.inspect!==e.inspect&&(!r.constructor||r.constructor.prototype!==r)){var o=r.inspect(n,t);return w(o)||(o=y(t,o,n)),o}var i=function(t,e){if(j(e))return t.stylize("undefined","undefined");if(w(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}return m(e)?t.stylize(""+e,"number"):h(e)?t.stylize(""+e,"boolean"):v(e)?t.stylize("null","null"):void 0}(t,r);if(i)return i;var a=Object.keys(r),c=function(t){var e={};return t.forEach((function(t,r){e[t]=!0})),e}(a);if(t.showHidden&&(a=Object.getOwnPropertyNames(r)),E(r)&&(a.indexOf("message")>=0||a.indexOf("description")>=0))return d(r);if(0===a.length){if(x(r)){var u=r.name?": "+r.name:"";return t.stylize("[Function"+u+"]","special")}if(O(r))return t.stylize(RegExp.prototype.toString.call(r),"regexp");if(A(r))return t.stylize(Date.prototype.toString.call(r),"date");if(E(r))return d(r)}var l,s="",f=!1,p=["{","}"];return b(r)&&(f=!0,p=["[","]"]),x(r)&&(s=" [Function"+(r.name?": "+r.name:"")+"]"),O(r)&&(s=" "+RegExp.prototype.toString.call(r)),A(r)&&(s=" "+Date.prototype.toUTCString.call(r)),E(r)&&(s=" "+d(r)),0!==a.length||f&&0!=r.length?n<0?O(r)?t.stylize(RegExp.prototype.toString.call(r),"regexp"):t.stylize("[Object]","special"):(t.seen.push(r),l=f?function(t,e,r,n,o){for(var i=[],a=0,c=e.length;a<c;++a)T(e,String(a))?i.push(g(t,e,r,n,String(a),!0)):i.push("");return o.forEach((function(o){o.match(/^\d+$/)||i.push(g(t,e,r,n,o,!0))})),i}(t,r,n,c,a):a.map((function(e){return g(t,r,n,c,e,f)})),t.seen.pop(),function(t,e,r){return t.reduce((function(t,e){return e.indexOf("\n"),t+e.replace(/\u001b\[\d\d?m/g,"").length+1}),0)>60?r[0]+(""===e?"":e+"\n ")+" "+t.join(",\n ")+" "+r[1]:r[0]+e+" "+t.join(", ")+" "+r[1]}(l,s,p)):p[0]+s+p[1]}function d(t){return"["+Error.prototype.toString.call(t)+"]"}function g(t,e,r,n,o,i){var a,c,u;if((u=Object.getOwnPropertyDescriptor(e,o)||{value:e[o]}).get?c=u.set?t.stylize("[Getter/Setter]","special"):t.stylize("[Getter]","special"):u.set&&(c=t.stylize("[Setter]","special")),T(n,o)||(a="["+o+"]"),c||(t.seen.indexOf(u.value)<0?(c=v(r)?y(t,u.value,null):y(t,u.value,r-1)).indexOf("\n")>-1&&(c=i?c.split("\n").map((function(t){return" "+t})).join("\n").slice(2):"\n"+c.split("\n").map((function(t){return" "+t})).join("\n")):c=t.stylize("[Circular]","special")),j(a)){if(i&&o.match(/^\d+$/))return c;(a=JSON.stringify(""+o)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.slice(1,-1),a=t.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=t.stylize(a,"string"))}return a+": "+c}function b(t){return Array.isArray(t)}function h(t){return"boolean"==typeof t}function v(t){return null===t}function m(t){return"number"==typeof t}function w(t){return"string"==typeof t}function j(t){return void 0===t}function O(t){return S(t)&&"[object RegExp]"===P(t)}function S(t){return"object"==typeof t&&null!==t}function A(t){return S(t)&&"[object Date]"===P(t)}function E(t){return S(t)&&("[object Error]"===P(t)||t instanceof Error)}function x(t){return"function"==typeof t}function P(t){return Object.prototype.toString.call(t)}function _(t){return t<10?"0"+t.toString(10):t.toString(10)}e.debuglog=function(t){if(t=t.toUpperCase(),!c[t])if(u.test(t)){var r=n.pid;c[t]=function(){var n=e.format.apply(e,arguments);o.error("%s %d: %s",t,r,n)}}else c[t]=function(){};return c[t]},e.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},e.types=r(5955),e.isArray=b,e.isBoolean=h,e.isNull=v,e.isNullOrUndefined=function(t){return null==t},e.isNumber=m,e.isString=w,e.isSymbol=function(t){return"symbol"==typeof t},e.isUndefined=j,e.isRegExp=O,e.types.isRegExp=O,e.isObject=S,e.isDate=A,e.types.isDate=A,e.isError=E,e.types.isNativeError=E,e.isFunction=x,e.isPrimitive=function(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"==typeof t||void 0===t},e.isBuffer=r(384);var k=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function T(t,e){return Object.prototype.hasOwnProperty.call(t,e)}e.log=function(){var t,r;o.log("%s - %s",(r=[_((t=new Date).getHours()),_(t.getMinutes()),_(t.getSeconds())].join(":"),[t.getDate(),k[t.getMonth()],r].join(" ")),e.format.apply(e,arguments))},e.inherits=r(5717),e._extend=function(t,e){if(!e||!S(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t};var R="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function I(t,e){if(!t){var r=new Error("Promise was rejected with a falsy value");r.reason=t,t=r}return e(t)}e.promisify=function(t){if("function"!=typeof t)throw new TypeError('The "original" argument must be of type Function');if(R&&t[R]){var e;if("function"!=typeof(e=t[R]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(e,R,{value:e,enumerable:!1,writable:!1,configurable:!0}),e}function e(){for(var e,r,n=new Promise((function(t,n){e=t,r=n})),o=[],i=0;i<arguments.length;i++)o.push(arguments[i]);o.push((function(t,n){t?r(t):e(n)}));try{t.apply(this,o)}catch(t){r(t)}return n}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),R&&Object.defineProperty(e,R,{value:e,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(e,i(t))},e.promisify.custom=R,e.callbackify=function(t){if("function"!=typeof t)throw new TypeError('The "original" argument must be of type Function');function e(){for(var e=[],r=0;r<arguments.length;r++)e.push(arguments[r]);var o=e.pop();if("function"!=typeof o)throw new TypeError("The last argument must be of type Function");var i=this,a=function(){return o.apply(i,arguments)};t.apply(this,e).then((function(t){n.nextTick(a.bind(null,null,t))}),(function(t){n.nextTick(I.bind(null,t,a))}))}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),Object.defineProperties(e,i(t)),e}},6430:(t,e,r)=>{"use strict";var n=r(4029),o=r(3083),i=r(5559),a=r(1924),c=r(7296),u=a("Object.prototype.toString"),l=r(6410)(),s="undefined"==typeof globalThis?r.g:globalThis,f=o(),p=a("String.prototype.slice"),y=Object.getPrototypeOf,d=a("Array.prototype.indexOf",!0)||function(t,e){for(var r=0;r<t.length;r+=1)if(t[r]===e)return r;return-1},g={__proto__:null};n(f,l&&c&&y?function(t){var e=new s[t];if(Symbol.toStringTag in e){var r=y(e),n=c(r,Symbol.toStringTag);if(!n){var o=y(r);n=c(o,Symbol.toStringTag)}g["$"+t]=i(n.get)}}:function(t){var e=new s[t],r=e.slice||e.set;r&&(g["$"+t]=i(r))}),t.exports=function(t){if(!t||"object"!=typeof t)return!1;if(!l){var e=p(u(t),8,-1);return d(f,e)>-1?e:"Object"===e&&function(t){var e=!1;return n(g,(function(r,n){if(!e)try{r(t),e=p(n,1)}catch(t){}})),e}(t)}return c?function(t){var e=!1;return n(g,(function(r,n){if(!e)try{"$"+r(t)===n&&(e=p(n,1))}catch(t){}})),e}(t):null}},3083:(t,e,r)=>{"use strict";var n=r(9908),o="undefined"==typeof globalThis?r.g:globalThis;t.exports=function(){for(var t=[],e=0;e<n.length;e++)"function"==typeof o[n[e]]&&(t[t.length]=n[e]);return t}}},r={};function n(t){var o=r[t];if(void 0!==o)return o.exports;var i=r[t]={exports:{}};return e[t](i,i.exports,n),i.exports}n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),t=n(5108),jQuery(document).ready((function(e){var r=e("#wd_smartsearch_license_email"),n=e("#wd_smartsearch_license_email_error"),o=e("#wd-free-license-status"),i=e("#wd_license_updates");function a(e){o.removeClass("loading"),e.success?(o.addClass("has-license").removeClass("no-license"),o.html('<i class="fas fa-check"></i> '+wdAdminTranslations.freeLicenseValid)):(o.addClass("no-license").removeClass("has-license"),o.html('<i class="fas fa-times"></i> '+wdAdminTranslations.freeLicenseInvalid),t.error("Erreur lors de la récupération de la licence gratuite : "+e.data.message))}function c(e,r,n){t.error("Erreur lors de la requête AJAX : "+n)}e("#wd-free-license-submit").on("click",(function(t){t.preventDefault();var u=r.val().trim();if(/\S+@\S+\.\S+/.test(u)&&0!==u.length){n.prop("hidden",!0),o.addClass("loading").removeClass("no-license has-license"),o.html('<i class="fas fa-spinner fa-spin"></i>');var l={action:"wdgpt_get_free_license",email:u,receive_updates:i.is(":checked"),security:wdgpt_ajax_object.ajax_free_license_nonce};e.ajax({type:"POST",url:wdgpt_ajax_object.ajax_url,data:l,success:a,error:c})}else n.prop("hidden",!1)}));var u=e("#license_key"),l=e("#wd-premium-license-status"),s=e("#wd-premium-license-submit");function f(e){if(l.removeClass("loading"),e.success){var r="";switch(e.data.state){case"not_found":r=wdAdminTranslations.premiumLicenseNotFound;break;case"verified_with_url":r=wdAdminTranslations.premiumLicenseVerifiedWithUrl;break;case"already_registered_with_another_url":r=wdAdminTranslations.premiumLicenseAlreadyRegisteredWithAnotherUrl;break;case"failed_to_register_url":r=wdAdminTranslations.premiumLicenseFailedToRegisterUrl;break;case"verified":r=wdAdminTranslations.premiumLicenseValid;break;case"failed_to_retrieve_expiry_date":r=wdAdminTranslations.premiumLicenseFailedToRetrieveExpiryDate;break;case"expired":r=wdAdminTranslations.premiumLicenseExpired;break;default:r=wdAdminTranslations.premiumLicenseInvalid}e.data.is_valid?(l.html('<i class="fas fa-check"></i> '+r),l.addClass("has-license").removeClass("no-license")):(l.html('<i class="fas fa-times"></i> '+r),l.addClass("no-license").removeClass("has-license"))}else l.addClass("no-license").removeClass("has-license"),l.html('<i class="fas fa-times"></i> '+wdAdminTranslations.premiumLicenseInvalid),t.error("Erreur lors de la vérification de la licence : "+e.data.message)}function p(e,r,n){t.error("Erreur lors de la requête AJAX : "+n)}s.on("click",(function(t){if(1===s.data("expired"))window.open("https://www.smartsearchwp.com/product/license-premium/","_blank");else{t.preventDefault();var r=u.val().trim();l.addClass("loading").removeClass("no-license has-license"),l.html('<i class="fas fa-spinner fa-spin"></i>');var n={action:"wdgpt_verify_license",license_key:r,security:wdgpt_ajax_object.ajax_verify_license_nonce};e.ajax({type:"POST",url:wdgpt_ajax_object.ajax_url,data:n,success:f,error:p})}}));var y=document.getElementById("license_key"),d=document.getElementById("verify_license");y&&d&&y.addEventListener("input",(function(){y.value.trim().length>0?d.disabled=!1:d.disabled=!0})),document.querySelectorAll(".wdgpt-addons-cell.button-cell a").forEach((function(r){r.addEventListener("click",(function(n){var o=r.getAttribute("data-action");if("free_license"!==o&&"url"!==o){var i=r.getAttribute("data-id");r.innerHTML='<i class="fas fa-spinner fa-spin"></i>',r.setAttribute("disabled","disabled");var a={action:"wdgpt_"+o+"_addon",id:i,security:wdgpt_ajax_object["ajax_"+o+"_addon_nonce"]};e.ajax({type:"POST",url:wdgpt_ajax_object.ajax_url,data:a,success:function(t){var e=t.success?1:0;window.location.href=window.location.href+"&"+o+"="+e,window.location.reload()},error:function(e,r,n){t.log(n)}})}}))}))})) })();2 (()=>{var t,e={9282:(t,e,r)=>{"use strict";var n=r(4155),o=r(5108);function i(t){return i="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},i(t)}function a(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,(void 0,o=function(t){if("object"!==i(t)||null===t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!==i(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(n.key),"symbol"===i(o)?o:String(o)),n)}var o}function c(t,e,r){return e&&a(t.prototype,e),r&&a(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}var u,l,s=r(2136).codes,f=s.ERR_AMBIGUOUS_ARGUMENT,p=s.ERR_INVALID_ARG_TYPE,y=s.ERR_INVALID_ARG_VALUE,d=s.ERR_INVALID_RETURN_VALUE,g=s.ERR_MISSING_ARGS,b=r(5961),h=r(9539).inspect,v=r(9539).types,m=v.isPromise,w=v.isRegExp,j=r(8162)(),O=r(5624)(),S=r(1924)("RegExp.prototype.test");function A(){var t=r(9158);u=t.isDeepEqual,l=t.isDeepStrictEqual}new Map;var E=!1,x=t.exports=T,P={};function _(t){if(t.message instanceof Error)throw t.message;throw new b(t)}function k(t,e,r,n){if(!r){var o=!1;if(0===e)o=!0,n="No value argument passed to `assert.ok()`";else if(n instanceof Error)throw n;var i=new b({actual:r,expected:!0,message:n,operator:"==",stackStartFn:t});throw i.generatedMessage=o,i}}function T(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];k.apply(void 0,[T,e.length].concat(e))}x.fail=function t(e,r,i,a,c){var u,l=arguments.length;if(0===l?u="Failed":1===l?(i=e,e=void 0):(!1===E&&(E=!0,(n.emitWarning?n.emitWarning:o.warn.bind(o))("assert.fail() with more than one argument is deprecated. Please use assert.strictEqual() instead or only pass a message.","DeprecationWarning","DEP0094")),2===l&&(a="!=")),i instanceof Error)throw i;var s={actual:e,expected:r,operator:void 0===a?"fail":a,stackStartFn:c||t};void 0!==i&&(s.message=i);var f=new b(s);throw u&&(f.message=u,f.generatedMessage=!0),f},x.AssertionError=b,x.ok=T,x.equal=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");e!=r&&_({actual:e,expected:r,message:n,operator:"==",stackStartFn:t})},x.notEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");e==r&&_({actual:e,expected:r,message:n,operator:"!=",stackStartFn:t})},x.deepEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");void 0===u&&A(),u(e,r)||_({actual:e,expected:r,message:n,operator:"deepEqual",stackStartFn:t})},x.notDeepEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");void 0===u&&A(),u(e,r)&&_({actual:e,expected:r,message:n,operator:"notDeepEqual",stackStartFn:t})},x.deepStrictEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");void 0===u&&A(),l(e,r)||_({actual:e,expected:r,message:n,operator:"deepStrictEqual",stackStartFn:t})},x.notDeepStrictEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");void 0===u&&A(),l(e,r)&&_({actual:e,expected:r,message:n,operator:"notDeepStrictEqual",stackStartFn:t})},x.strictEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");O(e,r)||_({actual:e,expected:r,message:n,operator:"strictEqual",stackStartFn:t})},x.notStrictEqual=function t(e,r,n){if(arguments.length<2)throw new g("actual","expected");O(e,r)&&_({actual:e,expected:r,message:n,operator:"notStrictEqual",stackStartFn:t})};var R=c((function t(e,r,n){var o=this;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),r.forEach((function(t){t in e&&(void 0!==n&&"string"==typeof n[t]&&w(e[t])&&S(e[t],n[t])?o[t]=n[t]:o[t]=e[t])}))}));function I(t,e,r,n){if("function"!=typeof e){if(w(e))return S(e,t);if(2===arguments.length)throw new p("expected",["Function","RegExp"],e);if("object"!==i(t)||null===t){var o=new b({actual:t,expected:e,message:r,operator:"deepStrictEqual",stackStartFn:n});throw o.operator=n.name,o}var a=Object.keys(e);if(e instanceof Error)a.push("name","message");else if(0===a.length)throw new y("error",e,"may not be an empty object");return void 0===u&&A(),a.forEach((function(o){"string"==typeof t[o]&&w(e[o])&&S(e[o],t[o])||function(t,e,r,n,o,i){if(!(r in t)||!l(t[r],e[r])){if(!n){var a=new R(t,o),c=new R(e,o,t),u=new b({actual:a,expected:c,operator:"deepStrictEqual",stackStartFn:i});throw u.actual=t,u.expected=e,u.operator=i.name,u}_({actual:t,expected:e,message:n,operator:i.name,stackStartFn:i})}}(t,e,o,r,a,n)})),!0}return void 0!==e.prototype&&t instanceof e||!Error.isPrototypeOf(e)&&!0===e.call({},t)}function F(t){if("function"!=typeof t)throw new p("fn","Function",t);try{t()}catch(t){return t}return P}function N(t){return m(t)||null!==t&&"object"===i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function U(t){return Promise.resolve().then((function(){var e;if("function"==typeof t){if(!N(e=t()))throw new d("instance of Promise","promiseFn",e)}else{if(!N(t))throw new p("promiseFn",["Function","Promise"],t);e=t}return Promise.resolve().then((function(){return e})).then((function(){return P})).catch((function(t){return t}))}))}function D(t,e,r,n){if("string"==typeof r){if(4===arguments.length)throw new p("error",["Object","Error","Function","RegExp"],r);if("object"===i(e)&&null!==e){if(e.message===r)throw new f("error/message",'The error message "'.concat(e.message,'" is identical to the message.'))}else if(e===r)throw new f("error/message",'The error "'.concat(e,'" is identical to the message.'));n=r,r=void 0}else if(null!=r&&"object"!==i(r)&&"function"!=typeof r)throw new p("error",["Object","Error","Function","RegExp"],r);if(e===P){var o="";r&&r.name&&(o+=" (".concat(r.name,")")),o+=n?": ".concat(n):".";var a="rejects"===t.name?"rejection":"exception";_({actual:void 0,expected:r,operator:t.name,message:"Missing expected ".concat(a).concat(o),stackStartFn:t})}if(r&&!I(e,r,n,t))throw e}function B(t,e,r,n){if(e!==P){if("string"==typeof r&&(n=r,r=void 0),!r||I(e,r)){var o=n?": ".concat(n):".",i="doesNotReject"===t.name?"rejection":"exception";_({actual:e,expected:r,operator:t.name,message:"Got unwanted ".concat(i).concat(o,"\n")+'Actual message: "'.concat(e&&e.message,'"'),stackStartFn:t})}throw e}}function M(t,e,r,n,o){if(!w(e))throw new p("regexp","RegExp",e);var a="match"===o;if("string"!=typeof t||S(e,t)!==a){if(r instanceof Error)throw r;var c=!r;r=r||("string"!=typeof t?'The "string" argument must be of type string. Received type '+"".concat(i(t)," (").concat(h(t),")"):(a?"The input did not match the regular expression ":"The input was expected to not match the regular expression ")+"".concat(h(e),". Input:\n\n").concat(h(t),"\n"));var u=new b({actual:t,expected:e,message:r,operator:o,stackStartFn:n});throw u.generatedMessage=c,u}}function q(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];k.apply(void 0,[q,e.length].concat(e))}x.throws=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];D.apply(void 0,[t,F(e)].concat(n))},x.rejects=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return U(e).then((function(e){return D.apply(void 0,[t,e].concat(n))}))},x.doesNotThrow=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];B.apply(void 0,[t,F(e)].concat(n))},x.doesNotReject=function t(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];return U(e).then((function(e){return B.apply(void 0,[t,e].concat(n))}))},x.ifError=function t(e){if(null!=e){var r="ifError got unwanted exception: ";"object"===i(e)&&"string"==typeof e.message?0===e.message.length&&e.constructor?r+=e.constructor.name:r+=e.message:r+=h(e);var n=new b({actual:e,expected:null,operator:"ifError",message:r,stackStartFn:t}),o=e.stack;if("string"==typeof o){var a=o.split("\n");a.shift();for(var c=n.stack.split("\n"),u=0;u<a.length;u++){var l=c.indexOf(a[u]);if(-1!==l){c=c.slice(0,l);break}}n.stack="".concat(c.join("\n"),"\n").concat(a.join("\n"))}throw n}},x.match=function t(e,r,n){M(e,r,n,t,"match")},x.doesNotMatch=function t(e,r,n){M(e,r,n,t,"doesNotMatch")},x.strict=j(q,x,{equal:x.strictEqual,deepEqual:x.deepStrictEqual,notEqual:x.notStrictEqual,notDeepEqual:x.notDeepStrictEqual}),x.strict.strict=x.strict},5961:(t,e,r)=>{"use strict";var n=r(4155);function o(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function i(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?o(Object(r),!0).forEach((function(e){var n,o,i;n=t,o=e,i=r[e],(o=c(o))in n?Object.defineProperty(n,o,{value:i,enumerable:!0,configurable:!0,writable:!0}):n[o]=i})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):o(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function a(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,c(n.key),n)}}function c(t){var e=function(t){if("object"!==g(t)||null===t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,"string");if("object"!==g(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t);return"symbol"===g(e)?e:String(e)}function u(t,e){if(e&&("object"===g(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return l(t)}function l(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function s(t){var e="function"==typeof Map?new Map:void 0;return s=function(t){if(null===t||(r=t,-1===Function.toString.call(r).indexOf("[native code]")))return t;var r;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return f(t,arguments,d(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),y(n,t)},s(t)}function f(t,e,r){return f=p()?Reflect.construct.bind():function(t,e,r){var n=[null];n.push.apply(n,e);var o=new(Function.bind.apply(t,n));return r&&y(o,r.prototype),o},f.apply(null,arguments)}function p(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}function y(t,e){return y=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},y(t,e)}function d(t){return d=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},d(t)}function g(t){return g="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},g(t)}var b=r(9539).inspect,h=r(2136).codes.ERR_INVALID_ARG_TYPE;function v(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substring(r-e.length,r)===e}var m="",w="",j="",O="",S={deepStrictEqual:"Expected values to be strictly deep-equal:",strictEqual:"Expected values to be strictly equal:",strictEqualObject:'Expected "actual" to be reference-equal to "expected":',deepEqual:"Expected values to be loosely deep-equal:",equal:"Expected values to be loosely equal:",notDeepStrictEqual:'Expected "actual" not to be strictly deep-equal to:',notStrictEqual:'Expected "actual" to be strictly unequal to:',notStrictEqualObject:'Expected "actual" not to be reference-equal to "expected":',notDeepEqual:'Expected "actual" not to be loosely deep-equal to:',notEqual:'Expected "actual" to be loosely unequal to:',notIdentical:"Values identical but not reference-equal:"};function A(t){var e=Object.keys(t),r=Object.create(Object.getPrototypeOf(t));return e.forEach((function(e){r[e]=t[e]})),Object.defineProperty(r,"message",{value:t.message}),r}function E(t){return b(t,{compact:!1,customInspect:!1,depth:1e3,maxArrayLength:1/0,showHidden:!1,breakLength:1/0,showProxy:!1,sorted:!0,getters:!0})}var x=function(t,e){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&y(t,e)}(x,t);var r,o,c,s,f=(r=x,o=p(),function(){var t,e=d(r);if(o){var n=d(this).constructor;t=Reflect.construct(e,arguments,n)}else t=e.apply(this,arguments);return u(this,t)});function x(t){var e;if(function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,x),"object"!==g(t)||null===t)throw new h("options","Object",t);var r=t.message,o=t.operator,i=t.stackStartFn,a=t.actual,c=t.expected,s=Error.stackTraceLimit;if(Error.stackTraceLimit=0,null!=r)e=f.call(this,String(r));else if(n.stderr&&n.stderr.isTTY&&(n.stderr&&n.stderr.getColorDepth&&1!==n.stderr.getColorDepth()?(m="[34m",w="[32m",O="[39m",j="[31m"):(m="",w="",O="",j="")),"object"===g(a)&&null!==a&&"object"===g(c)&&null!==c&&"stack"in a&&a instanceof Error&&"stack"in c&&c instanceof Error&&(a=A(a),c=A(c)),"deepStrictEqual"===o||"strictEqual"===o)e=f.call(this,function(t,e,r){var o="",i="",a=0,c="",u=!1,l=E(t),s=l.split("\n"),f=E(e).split("\n"),p=0,y="";if("strictEqual"===r&&"object"===g(t)&&"object"===g(e)&&null!==t&&null!==e&&(r="strictEqualObject"),1===s.length&&1===f.length&&s[0]!==f[0]){var d=s[0].length+f[0].length;if(d<=10){if(!("object"===g(t)&&null!==t||"object"===g(e)&&null!==e||0===t&&0===e))return"".concat(S[r],"\n\n")+"".concat(s[0]," !== ").concat(f[0],"\n")}else if("strictEqualObject"!==r&&d<(n.stderr&&n.stderr.isTTY?n.stderr.columns:80)){for(;s[0][p]===f[0][p];)p++;p>2&&(y="\n ".concat(function(t,e){if(e=Math.floor(e),0==t.length||0==e)return"";var r=t.length*e;for(e=Math.floor(Math.log(e)/Math.log(2));e;)t+=t,e--;return t+t.substring(0,r-t.length)}(" ",p),"^"),p=0)}}for(var b=s[s.length-1],h=f[f.length-1];b===h&&(p++<2?c="\n ".concat(b).concat(c):o=b,s.pop(),f.pop(),0!==s.length&&0!==f.length);)b=s[s.length-1],h=f[f.length-1];var A=Math.max(s.length,f.length);if(0===A){var x=l.split("\n");if(x.length>30)for(x[26]="".concat(m,"...").concat(O);x.length>27;)x.pop();return"".concat(S.notIdentical,"\n\n").concat(x.join("\n"),"\n")}p>3&&(c="\n".concat(m,"...").concat(O).concat(c),u=!0),""!==o&&(c="\n ".concat(o).concat(c),o="");var P=0,_=S[r]+"\n".concat(w,"+ actual").concat(O," ").concat(j,"- expected").concat(O),k=" ".concat(m,"...").concat(O," Lines skipped");for(p=0;p<A;p++){var T=p-a;if(s.length<p+1)T>1&&p>2&&(T>4?(i+="\n".concat(m,"...").concat(O),u=!0):T>3&&(i+="\n ".concat(f[p-2]),P++),i+="\n ".concat(f[p-1]),P++),a=p,o+="\n".concat(j,"-").concat(O," ").concat(f[p]),P++;else if(f.length<p+1)T>1&&p>2&&(T>4?(i+="\n".concat(m,"...").concat(O),u=!0):T>3&&(i+="\n ".concat(s[p-2]),P++),i+="\n ".concat(s[p-1]),P++),a=p,i+="\n".concat(w,"+").concat(O," ").concat(s[p]),P++;else{var R=f[p],I=s[p],F=I!==R&&(!v(I,",")||I.slice(0,-1)!==R);F&&v(R,",")&&R.slice(0,-1)===I&&(F=!1,I+=","),F?(T>1&&p>2&&(T>4?(i+="\n".concat(m,"...").concat(O),u=!0):T>3&&(i+="\n ".concat(s[p-2]),P++),i+="\n ".concat(s[p-1]),P++),a=p,i+="\n".concat(w,"+").concat(O," ").concat(I),o+="\n".concat(j,"-").concat(O," ").concat(R),P+=2):(i+=o,o="",1!==T&&0!==p||(i+="\n ".concat(I),P++))}if(P>20&&p<A-2)return"".concat(_).concat(k,"\n").concat(i,"\n").concat(m,"...").concat(O).concat(o,"\n")+"".concat(m,"...").concat(O)}return"".concat(_).concat(u?k:"","\n").concat(i).concat(o).concat(c).concat(y)}(a,c,o));else if("notDeepStrictEqual"===o||"notStrictEqual"===o){var p=S[o],y=E(a).split("\n");if("notStrictEqual"===o&&"object"===g(a)&&null!==a&&(p=S.notStrictEqualObject),y.length>30)for(y[26]="".concat(m,"...").concat(O);y.length>27;)y.pop();e=1===y.length?f.call(this,"".concat(p," ").concat(y[0])):f.call(this,"".concat(p,"\n\n").concat(y.join("\n"),"\n"))}else{var d=E(a),b="",P=S[o];"notDeepEqual"===o||"notEqual"===o?(d="".concat(S[o],"\n\n").concat(d)).length>1024&&(d="".concat(d.slice(0,1021),"...")):(b="".concat(E(c)),d.length>512&&(d="".concat(d.slice(0,509),"...")),b.length>512&&(b="".concat(b.slice(0,509),"...")),"deepEqual"===o||"equal"===o?d="".concat(P,"\n\n").concat(d,"\n\nshould equal\n\n"):b=" ".concat(o," ").concat(b)),e=f.call(this,"".concat(d).concat(b))}return Error.stackTraceLimit=s,e.generatedMessage=!r,Object.defineProperty(l(e),"name",{value:"AssertionError [ERR_ASSERTION]",enumerable:!1,writable:!0,configurable:!0}),e.code="ERR_ASSERTION",e.actual=a,e.expected=c,e.operator=o,Error.captureStackTrace&&Error.captureStackTrace(l(e),i),e.stack,e.name="AssertionError",u(e)}return c=x,(s=[{key:"toString",value:function(){return"".concat(this.name," [").concat(this.code,"]: ").concat(this.message)}},{key:e,value:function(t,e){return b(this,i(i({},e),{},{customInspect:!1,depth:0}))}}])&&a(c.prototype,s),Object.defineProperty(c,"prototype",{writable:!1}),x}(s(Error),b.custom);t.exports=x},2136:(t,e,r)=>{"use strict";function n(t){return n="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},n(t)}function o(t,e){return o=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},o(t,e)}function i(t){return i=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},i(t)}var a,c,u={};function l(t,e,r){r||(r=Error);var a=function(r){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&o(t,e)}(s,r);var a,c,u,l=(c=s,u=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}(),function(){var t,e=i(c);if(u){var r=i(this).constructor;t=Reflect.construct(e,arguments,r)}else t=e.apply(this,arguments);return function(t,e){if(e&&("object"===n(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(this,t)});function s(r,n,o){var i;return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,s),i=l.call(this,function(t,r,n){return"string"==typeof e?e:e(t,r,n)}(r,n,o)),i.code=t,i}return a=s,Object.defineProperty(a,"prototype",{writable:!1}),a}(r);u[t]=a}function s(t,e){if(Array.isArray(t)){var r=t.length;return t=t.map((function(t){return String(t)})),r>2?"one of ".concat(e," ").concat(t.slice(0,r-1).join(", "),", or ")+t[r-1]:2===r?"one of ".concat(e," ").concat(t[0]," or ").concat(t[1]):"of ".concat(e," ").concat(t[0])}return"of ".concat(e," ").concat(String(t))}l("ERR_AMBIGUOUS_ARGUMENT",'The "%s" argument is ambiguous. %s',TypeError),l("ERR_INVALID_ARG_TYPE",(function(t,e,o){var i,c,u,l,f;if(void 0===a&&(a=r(9282)),a("string"==typeof t,"'name' must be a string"),"string"==typeof e&&(c="not ",e.substr(0,4)===c)?(i="must not be",e=e.replace(/^not /,"")):i="must be",function(t,e,r){return(void 0===r||r>t.length)&&(r=t.length),t.substring(r-9,r)===e}(t," argument"))u="The ".concat(t," ").concat(i," ").concat(s(e,"type"));else{var p=("number"!=typeof f&&(f=0),f+1>(l=t).length||-1===l.indexOf(".",f)?"argument":"property");u='The "'.concat(t,'" ').concat(p," ").concat(i," ").concat(s(e,"type"))}return u+". Received type ".concat(n(o))}),TypeError),l("ERR_INVALID_ARG_VALUE",(function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"is invalid";void 0===c&&(c=r(9539));var o=c.inspect(e);return o.length>128&&(o="".concat(o.slice(0,128),"...")),"The argument '".concat(t,"' ").concat(n,". Received ").concat(o)}),TypeError,RangeError),l("ERR_INVALID_RETURN_VALUE",(function(t,e,r){var o;return o=r&&r.constructor&&r.constructor.name?"instance of ".concat(r.constructor.name):"type ".concat(n(r)),"Expected ".concat(t,' to be returned from the "').concat(e,'"')+" function but got ".concat(o,".")}),TypeError),l("ERR_MISSING_ARGS",(function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];void 0===a&&(a=r(9282)),a(e.length>0,"At least one arg needs to be specified");var o="The ",i=e.length;switch(e=e.map((function(t){return'"'.concat(t,'"')})),i){case 1:o+="".concat(e[0]," argument");break;case 2:o+="".concat(e[0]," and ").concat(e[1]," arguments");break;default:o+=e.slice(0,i-1).join(", "),o+=", and ".concat(e[i-1]," arguments")}return"".concat(o," must be specified")}),TypeError),t.exports.codes=u},9158:(t,e,r)=>{"use strict";function n(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,c=[],u=!0,l=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(c.push(n.value),c.length!==e);u=!0);}catch(t){l=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(l)throw o}}return c}}(t,e)||function(t,e){if(t){if("string"==typeof t)return o(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(t,e):void 0}}(t,e)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function i(t){return i="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},i(t)}var a=void 0!==/a/g.flags,c=function(t){var e=[];return t.forEach((function(t){return e.push(t)})),e},u=function(t){var e=[];return t.forEach((function(t,r){return e.push([r,t])})),e},l=Object.is?Object.is:r(609),s=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols:function(){return[]},f=Number.isNaN?Number.isNaN:r(360);function p(t){return t.call.bind(t)}var y=p(Object.prototype.hasOwnProperty),d=p(Object.prototype.propertyIsEnumerable),g=p(Object.prototype.toString),b=r(9539).types,h=b.isAnyArrayBuffer,v=b.isArrayBufferView,m=b.isDate,w=b.isMap,j=b.isRegExp,O=b.isSet,S=b.isNativeError,A=b.isBoxedPrimitive,E=b.isNumberObject,x=b.isStringObject,P=b.isBooleanObject,_=b.isBigIntObject,k=b.isSymbolObject,T=b.isFloat32Array,R=b.isFloat64Array;function I(t){if(0===t.length||t.length>10)return!0;for(var e=0;e<t.length;e++){var r=t.charCodeAt(e);if(r<48||r>57)return!0}return 10===t.length&&t>=Math.pow(2,32)}function F(t){return Object.keys(t).filter(I).concat(s(t).filter(Object.prototype.propertyIsEnumerable.bind(t)))}function N(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,o=0,i=Math.min(r,n);o<i;++o)if(t[o]!==e[o]){r=t[o],n=e[o];break}return r<n?-1:n<r?1:0}function U(t,e,r,n){if(t===e)return 0!==t||!r||l(t,e);if(r){if("object"!==i(t))return"number"==typeof t&&f(t)&&f(e);if("object"!==i(e)||null===t||null===e)return!1;if(Object.getPrototypeOf(t)!==Object.getPrototypeOf(e))return!1}else{if(null===t||"object"!==i(t))return(null===e||"object"!==i(e))&&t==e;if(null===e||"object"!==i(e))return!1}var o,c,u,s,p=g(t);if(p!==g(e))return!1;if(Array.isArray(t)){if(t.length!==e.length)return!1;var y=F(t),d=F(e);return y.length===d.length&&B(t,e,r,n,1,y)}if("[object Object]"===p&&(!w(t)&&w(e)||!O(t)&&O(e)))return!1;if(m(t)){if(!m(e)||Date.prototype.getTime.call(t)!==Date.prototype.getTime.call(e))return!1}else if(j(t)){if(!j(e)||(u=t,s=e,!(a?u.source===s.source&&u.flags===s.flags:RegExp.prototype.toString.call(u)===RegExp.prototype.toString.call(s))))return!1}else if(S(t)||t instanceof Error){if(t.message!==e.message||t.name!==e.name)return!1}else{if(v(t)){if(r||!T(t)&&!R(t)){if(!function(t,e){return t.byteLength===e.byteLength&&0===N(new Uint8Array(t.buffer,t.byteOffset,t.byteLength),new Uint8Array(e.buffer,e.byteOffset,e.byteLength))}(t,e))return!1}else if(!function(t,e){if(t.byteLength!==e.byteLength)return!1;for(var r=0;r<t.byteLength;r++)if(t[r]!==e[r])return!1;return!0}(t,e))return!1;var b=F(t),I=F(e);return b.length===I.length&&B(t,e,r,n,0,b)}if(O(t))return!(!O(e)||t.size!==e.size)&&B(t,e,r,n,2);if(w(t))return!(!w(e)||t.size!==e.size)&&B(t,e,r,n,3);if(h(t)){if(c=e,(o=t).byteLength!==c.byteLength||0!==N(new Uint8Array(o),new Uint8Array(c)))return!1}else if(A(t)&&!function(t,e){return E(t)?E(e)&&l(Number.prototype.valueOf.call(t),Number.prototype.valueOf.call(e)):x(t)?x(e)&&String.prototype.valueOf.call(t)===String.prototype.valueOf.call(e):P(t)?P(e)&&Boolean.prototype.valueOf.call(t)===Boolean.prototype.valueOf.call(e):_(t)?_(e)&&BigInt.prototype.valueOf.call(t)===BigInt.prototype.valueOf.call(e):k(e)&&Symbol.prototype.valueOf.call(t)===Symbol.prototype.valueOf.call(e)}(t,e))return!1}return B(t,e,r,n,0)}function D(t,e){return e.filter((function(e){return d(t,e)}))}function B(t,e,r,o,a,l){if(5===arguments.length){l=Object.keys(t);var f=Object.keys(e);if(l.length!==f.length)return!1}for(var p=0;p<l.length;p++)if(!y(e,l[p]))return!1;if(r&&5===arguments.length){var g=s(t);if(0!==g.length){var b=0;for(p=0;p<g.length;p++){var h=g[p];if(d(t,h)){if(!d(e,h))return!1;l.push(h),b++}else if(d(e,h))return!1}var v=s(e);if(g.length!==v.length&&D(e,v).length!==b)return!1}else{var m=s(e);if(0!==m.length&&0!==D(e,m).length)return!1}}if(0===l.length&&(0===a||1===a&&0===t.length||0===t.size))return!0;if(void 0===o)o={val1:new Map,val2:new Map,position:0};else{var w=o.val1.get(t);if(void 0!==w){var j=o.val2.get(e);if(void 0!==j)return w===j}o.position++}o.val1.set(t,o.position),o.val2.set(e,o.position);var O=function(t,e,r,o,a,l){var s=0;if(2===l){if(!function(t,e,r,n){for(var o=null,a=c(t),u=0;u<a.length;u++){var l=a[u];if("object"===i(l)&&null!==l)null===o&&(o=new Set),o.add(l);else if(!e.has(l)){if(r)return!1;if(!L(t,e,l))return!1;null===o&&(o=new Set),o.add(l)}}if(null!==o){for(var s=c(e),f=0;f<s.length;f++){var p=s[f];if("object"===i(p)&&null!==p){if(!M(o,p,r,n))return!1}else if(!r&&!t.has(p)&&!M(o,p,r,n))return!1}return 0===o.size}return!0}(t,e,r,a))return!1}else if(3===l){if(!function(t,e,r,o){for(var a=null,c=u(t),l=0;l<c.length;l++){var s=n(c[l],2),f=s[0],p=s[1];if("object"===i(f)&&null!==f)null===a&&(a=new Set),a.add(f);else{var y=e.get(f);if(void 0===y&&!e.has(f)||!U(p,y,r,o)){if(r)return!1;if(!C(t,e,f,p,o))return!1;null===a&&(a=new Set),a.add(f)}}}if(null!==a){for(var d=u(e),g=0;g<d.length;g++){var b=n(d[g],2),h=b[0],v=b[1];if("object"===i(h)&&null!==h){if(!$(a,t,h,v,r,o))return!1}else if(!(r||t.has(h)&&U(t.get(h),v,!1,o)||$(a,t,h,v,!1,o)))return!1}return 0===a.size}return!0}(t,e,r,a))return!1}else if(1===l)for(;s<t.length;s++){if(!y(t,s)){if(y(e,s))return!1;for(var f=Object.keys(t);s<f.length;s++){var p=f[s];if(!y(e,p)||!U(t[p],e[p],r,a))return!1}return f.length===Object.keys(e).length}if(!y(e,s)||!U(t[s],e[s],r,a))return!1}for(s=0;s<o.length;s++){var d=o[s];if(!U(t[d],e[d],r,a))return!1}return!0}(t,e,r,l,o,a);return o.val1.delete(t),o.val2.delete(e),O}function M(t,e,r,n){for(var o=c(t),i=0;i<o.length;i++){var a=o[i];if(U(e,a,r,n))return t.delete(a),!0}return!1}function q(t){switch(i(t)){case"undefined":return null;case"object":return;case"symbol":return!1;case"string":t=+t;case"number":if(f(t))return!1}return!0}function L(t,e,r){var n=q(r);return null!=n?n:e.has(n)&&!t.has(n)}function C(t,e,r,n,o){var i=q(r);if(null!=i)return i;var a=e.get(i);return!(void 0===a&&!e.has(i)||!U(n,a,!1,o))&&!t.has(i)&&U(n,a,!1,o)}function $(t,e,r,n,o,i){for(var a=c(t),u=0;u<a.length;u++){var l=a[u];if(U(r,l,o,i)&&U(n,e.get(l),o,i))return t.delete(l),!0}return!1}t.exports={isDeepEqual:function(t,e){return U(t,e,!1)},isDeepStrictEqual:function(t,e){return U(t,e,!0)}}},1924:(t,e,r)=>{"use strict";var n=r(210),o=r(5559),i=o(n("String.prototype.indexOf"));t.exports=function(t,e){var r=n(t,!!e);return"function"==typeof r&&i(t,".prototype.")>-1?o(r):r}},5559:(t,e,r)=>{"use strict";var n=r(8612),o=r(210),i=r(7771),a=r(4453),c=o("%Function.prototype.apply%"),u=o("%Function.prototype.call%"),l=o("%Reflect.apply%",!0)||n.call(u,c),s=r(4429),f=o("%Math.max%");t.exports=function(t){if("function"!=typeof t)throw new a("a function is required");var e=l(n,u,arguments);return i(e,1+f(0,t.length-(arguments.length-1)),!0)};var p=function(){return l(n,c,arguments)};s?s(t.exports,"apply",{value:p}):t.exports.apply=p},5108:(t,e,r)=>{var n=r(9539),o=r(9282);function i(){return(new Date).getTime()}var a,c=Array.prototype.slice,u={};a=void 0!==r.g&&r.g.console?r.g.console:"undefined"!=typeof window&&window.console?window.console:{};for(var l=[[function(){},"log"],[function(){a.log.apply(a,arguments)},"info"],[function(){a.log.apply(a,arguments)},"warn"],[function(){a.warn.apply(a,arguments)},"error"],[function(t){u[t]=i()},"time"],[function(t){var e=u[t];if(!e)throw new Error("No such label: "+t);delete u[t];var r=i()-e;a.log(t+": "+r+"ms")},"timeEnd"],[function(){var t=new Error;t.name="Trace",t.message=n.format.apply(null,arguments),a.error(t.stack)},"trace"],[function(t){a.log(n.inspect(t)+"\n")},"dir"],[function(t){if(!t){var e=c.call(arguments,1);o.ok(!1,n.format.apply(null,e))}},"assert"]],s=0;s<l.length;s++){var f=l[s],p=f[0],y=f[1];a[y]||(a[y]=p)}t.exports=a},2296:(t,e,r)=>{"use strict";var n=r(4429),o=r(3464),i=r(4453),a=r(7296);t.exports=function(t,e,r){if(!t||"object"!=typeof t&&"function"!=typeof t)throw new i("`obj` must be an object or a function`");if("string"!=typeof e&&"symbol"!=typeof e)throw new i("`property` must be a string or a symbol`");if(arguments.length>3&&"boolean"!=typeof arguments[3]&&null!==arguments[3])throw new i("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&"boolean"!=typeof arguments[4]&&null!==arguments[4])throw new i("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&"boolean"!=typeof arguments[5]&&null!==arguments[5])throw new i("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&"boolean"!=typeof arguments[6])throw new i("`loose`, if provided, must be a boolean");var c=arguments.length>3?arguments[3]:null,u=arguments.length>4?arguments[4]:null,l=arguments.length>5?arguments[5]:null,s=arguments.length>6&&arguments[6],f=!!a&&a(t,e);if(n)n(t,e,{configurable:null===l&&f?f.configurable:!l,enumerable:null===c&&f?f.enumerable:!c,value:r,writable:null===u&&f?f.writable:!u});else{if(!s&&(c||u||l))throw new o("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.");t[e]=r}}},4289:(t,e,r)=>{"use strict";var n=r(2215),o="function"==typeof Symbol&&"symbol"==typeof Symbol("foo"),i=Object.prototype.toString,a=Array.prototype.concat,c=r(2296),u=r(1044)(),l=function(t,e,r,n){if(e in t)if(!0===n){if(t[e]===r)return}else if("function"!=typeof(o=n)||"[object Function]"!==i.call(o)||!n())return;var o;u?c(t,e,r,!0):c(t,e,r)},s=function(t,e){var r=arguments.length>2?arguments[2]:{},i=n(e);o&&(i=a.call(i,Object.getOwnPropertySymbols(e)));for(var c=0;c<i.length;c+=1)l(t,i[c],e[i[c]],r[i[c]])};s.supportsDescriptors=!!u,t.exports=s},4429:(t,e,r)=>{"use strict";var n=r(210)("%Object.defineProperty%",!0)||!1;if(n)try{n({},"a",{value:1})}catch(t){n=!1}t.exports=n},3981:t=>{"use strict";t.exports=EvalError},1648:t=>{"use strict";t.exports=Error},4726:t=>{"use strict";t.exports=RangeError},6712:t=>{"use strict";t.exports=ReferenceError},3464:t=>{"use strict";t.exports=SyntaxError},4453:t=>{"use strict";t.exports=TypeError},3915:t=>{"use strict";t.exports=URIError},4029:(t,e,r)=>{"use strict";var n=r(5320),o=Object.prototype.toString,i=Object.prototype.hasOwnProperty;t.exports=function(t,e,r){if(!n(e))throw new TypeError("iterator must be a function");var a;arguments.length>=3&&(a=r),"[object Array]"===o.call(t)?function(t,e,r){for(var n=0,o=t.length;n<o;n++)i.call(t,n)&&(null==r?e(t[n],n,t):e.call(r,t[n],n,t))}(t,e,a):"string"==typeof t?function(t,e,r){for(var n=0,o=t.length;n<o;n++)null==r?e(t.charAt(n),n,t):e.call(r,t.charAt(n),n,t)}(t,e,a):function(t,e,r){for(var n in t)i.call(t,n)&&(null==r?e(t[n],n,t):e.call(r,t[n],n,t))}(t,e,a)}},7648:t=>{"use strict";var e=Object.prototype.toString,r=Math.max,n=function(t,e){for(var r=[],n=0;n<t.length;n+=1)r[n]=t[n];for(var o=0;o<e.length;o+=1)r[o+t.length]=e[o];return r};t.exports=function(t){var o=this;if("function"!=typeof o||"[object Function]"!==e.apply(o))throw new TypeError("Function.prototype.bind called on incompatible "+o);for(var i,a=function(t){for(var e=[],r=1,n=0;r<t.length;r+=1,n+=1)e[n]=t[r];return e}(arguments),c=r(0,o.length-a.length),u=[],l=0;l<c;l++)u[l]="$"+l;if(i=Function("binder","return function ("+function(t){for(var e="",r=0;r<t.length;r+=1)e+=t[r],r+1<t.length&&(e+=",");return e}(u)+"){ return binder.apply(this,arguments); }")((function(){if(this instanceof i){var e=o.apply(this,n(a,arguments));return Object(e)===e?e:this}return o.apply(t,n(a,arguments))})),o.prototype){var s=function(){};s.prototype=o.prototype,i.prototype=new s,s.prototype=null}return i}},8612:(t,e,r)=>{"use strict";var n=r(7648);t.exports=Function.prototype.bind||n},210:(t,e,r)=>{"use strict";var n,o=r(1648),i=r(3981),a=r(4726),c=r(6712),u=r(3464),l=r(4453),s=r(3915),f=Function,p=function(t){try{return f('"use strict"; return ('+t+").constructor;")()}catch(t){}},y=Object.getOwnPropertyDescriptor;if(y)try{y({},"")}catch(t){y=null}var d=function(){throw new l},g=y?function(){try{return d}catch(t){try{return y(arguments,"callee").get}catch(t){return d}}}():d,b=r(1405)(),h=r(8185)(),v=Object.getPrototypeOf||(h?function(t){return t.__proto__}:null),m={},w="undefined"!=typeof Uint8Array&&v?v(Uint8Array):n,j={__proto__:null,"%AggregateError%":"undefined"==typeof AggregateError?n:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?n:ArrayBuffer,"%ArrayIteratorPrototype%":b&&v?v([][Symbol.iterator]()):n,"%AsyncFromSyncIteratorPrototype%":n,"%AsyncFunction%":m,"%AsyncGenerator%":m,"%AsyncGeneratorFunction%":m,"%AsyncIteratorPrototype%":m,"%Atomics%":"undefined"==typeof Atomics?n:Atomics,"%BigInt%":"undefined"==typeof BigInt?n:BigInt,"%BigInt64Array%":"undefined"==typeof BigInt64Array?n:BigInt64Array,"%BigUint64Array%":"undefined"==typeof BigUint64Array?n:BigUint64Array,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?n:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":o,"%eval%":eval,"%EvalError%":i,"%Float32Array%":"undefined"==typeof Float32Array?n:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?n:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?n:FinalizationRegistry,"%Function%":f,"%GeneratorFunction%":m,"%Int8Array%":"undefined"==typeof Int8Array?n:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?n:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?n:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":b&&v?v(v([][Symbol.iterator]())):n,"%JSON%":"object"==typeof JSON?JSON:n,"%Map%":"undefined"==typeof Map?n:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&b&&v?v((new Map)[Symbol.iterator]()):n,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?n:Promise,"%Proxy%":"undefined"==typeof Proxy?n:Proxy,"%RangeError%":a,"%ReferenceError%":c,"%Reflect%":"undefined"==typeof Reflect?n:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?n:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&b&&v?v((new Set)[Symbol.iterator]()):n,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?n:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":b&&v?v(""[Symbol.iterator]()):n,"%Symbol%":b?Symbol:n,"%SyntaxError%":u,"%ThrowTypeError%":g,"%TypedArray%":w,"%TypeError%":l,"%Uint8Array%":"undefined"==typeof Uint8Array?n:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?n:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?n:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?n:Uint32Array,"%URIError%":s,"%WeakMap%":"undefined"==typeof WeakMap?n:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?n:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?n:WeakSet};if(v)try{null.error}catch(t){var O=v(v(t));j["%Error.prototype%"]=O}var S=function t(e){var r;if("%AsyncFunction%"===e)r=p("async function () {}");else if("%GeneratorFunction%"===e)r=p("function* () {}");else if("%AsyncGeneratorFunction%"===e)r=p("async function* () {}");else if("%AsyncGenerator%"===e){var n=t("%AsyncGeneratorFunction%");n&&(r=n.prototype)}else if("%AsyncIteratorPrototype%"===e){var o=t("%AsyncGenerator%");o&&v&&(r=v(o.prototype))}return j[e]=r,r},A={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},E=r(8612),x=r(8824),P=E.call(Function.call,Array.prototype.concat),_=E.call(Function.apply,Array.prototype.splice),k=E.call(Function.call,String.prototype.replace),T=E.call(Function.call,String.prototype.slice),R=E.call(Function.call,RegExp.prototype.exec),I=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,F=/\\(\\)?/g,N=function(t,e){var r,n=t;if(x(A,n)&&(n="%"+(r=A[n])[0]+"%"),x(j,n)){var o=j[n];if(o===m&&(o=S(n)),void 0===o&&!e)throw new l("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:r,name:n,value:o}}throw new u("intrinsic "+t+" does not exist!")};t.exports=function(t,e){if("string"!=typeof t||0===t.length)throw new l("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof e)throw new l('"allowMissing" argument must be a boolean');if(null===R(/^%?[^%]*%?$/,t))throw new u("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var r=function(t){var e=T(t,0,1),r=T(t,-1);if("%"===e&&"%"!==r)throw new u("invalid intrinsic syntax, expected closing `%`");if("%"===r&&"%"!==e)throw new u("invalid intrinsic syntax, expected opening `%`");var n=[];return k(t,I,(function(t,e,r,o){n[n.length]=r?k(o,F,"$1"):e||t})),n}(t),n=r.length>0?r[0]:"",o=N("%"+n+"%",e),i=o.name,a=o.value,c=!1,s=o.alias;s&&(n=s[0],_(r,P([0,1],s)));for(var f=1,p=!0;f<r.length;f+=1){var d=r[f],g=T(d,0,1),b=T(d,-1);if(('"'===g||"'"===g||"`"===g||'"'===b||"'"===b||"`"===b)&&g!==b)throw new u("property names with quotes must have matching quotes");if("constructor"!==d&&p||(c=!0),x(j,i="%"+(n+="."+d)+"%"))a=j[i];else if(null!=a){if(!(d in a)){if(!e)throw new l("base intrinsic for "+t+" exists, but the property is not available.");return}if(y&&f+1>=r.length){var h=y(a,d);a=(p=!!h)&&"get"in h&&!("originalValue"in h.get)?h.get:a[d]}else p=x(a,d),a=a[d];p&&!c&&(j[i]=a)}}return a}},7296:(t,e,r)=>{"use strict";var n=r(210)("%Object.getOwnPropertyDescriptor%",!0);if(n)try{n([],"length")}catch(t){n=null}t.exports=n},1044:(t,e,r)=>{"use strict";var n=r(4429),o=function(){return!!n};o.hasArrayLengthDefineBug=function(){if(!n)return null;try{return 1!==n([],"length",{value:1}).length}catch(t){return!0}},t.exports=o},8185:t=>{"use strict";var e={__proto__:null,foo:{}},r={__proto__:e}.foo===e.foo&&!(e instanceof Object);t.exports=function(){return r}},1405:(t,e,r)=>{"use strict";var n="undefined"!=typeof Symbol&&Symbol,o=r(5419);t.exports=function(){return"function"==typeof n&&"function"==typeof Symbol&&"symbol"==typeof n("foo")&&"symbol"==typeof Symbol("bar")&&o()}},5419:t=>{"use strict";t.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},e=Symbol("test"),r=Object(e);if("string"==typeof e)return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;if("[object Symbol]"!==Object.prototype.toString.call(r))return!1;for(e in t[e]=42,t)return!1;if("function"==typeof Object.keys&&0!==Object.keys(t).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(t).length)return!1;var n=Object.getOwnPropertySymbols(t);if(1!==n.length||n[0]!==e)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,e))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var o=Object.getOwnPropertyDescriptor(t,e);if(42!==o.value||!0!==o.enumerable)return!1}return!0}},6410:(t,e,r)=>{"use strict";var n=r(5419);t.exports=function(){return n()&&!!Symbol.toStringTag}},8824:(t,e,r)=>{"use strict";var n=Function.prototype.call,o=Object.prototype.hasOwnProperty,i=r(8612);t.exports=i.call(n,o)},5717:t=>{"function"==typeof Object.create?t.exports=function(t,e){e&&(t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}))}:t.exports=function(t,e){if(e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}}},2584:(t,e,r)=>{"use strict";var n=r(6410)(),o=r(1924)("Object.prototype.toString"),i=function(t){return!(n&&t&&"object"==typeof t&&Symbol.toStringTag in t)&&"[object Arguments]"===o(t)},a=function(t){return!!i(t)||null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Array]"!==o(t)&&"[object Function]"===o(t.callee)},c=function(){return i(arguments)}();i.isLegacyArguments=a,t.exports=c?i:a},5320:t=>{"use strict";var e,r,n=Function.prototype.toString,o="object"==typeof Reflect&&null!==Reflect&&Reflect.apply;if("function"==typeof o&&"function"==typeof Object.defineProperty)try{e=Object.defineProperty({},"length",{get:function(){throw r}}),r={},o((function(){throw 42}),null,e)}catch(t){t!==r&&(o=null)}else o=null;var i=/^\s*class\b/,a=function(t){try{var e=n.call(t);return i.test(e)}catch(t){return!1}},c=function(t){try{return!a(t)&&(n.call(t),!0)}catch(t){return!1}},u=Object.prototype.toString,l="function"==typeof Symbol&&!!Symbol.toStringTag,s=!(0 in[,]),f=function(){return!1};if("object"==typeof document){var p=document.all;u.call(p)===u.call(document.all)&&(f=function(t){if((s||!t)&&(void 0===t||"object"==typeof t))try{var e=u.call(t);return("[object HTMLAllCollection]"===e||"[object HTML document.all class]"===e||"[object HTMLCollection]"===e||"[object Object]"===e)&&null==t("")}catch(t){}return!1})}t.exports=o?function(t){if(f(t))return!0;if(!t)return!1;if("function"!=typeof t&&"object"!=typeof t)return!1;try{o(t,null,e)}catch(t){if(t!==r)return!1}return!a(t)&&c(t)}:function(t){if(f(t))return!0;if(!t)return!1;if("function"!=typeof t&&"object"!=typeof t)return!1;if(l)return c(t);if(a(t))return!1;var e=u.call(t);return!("[object Function]"!==e&&"[object GeneratorFunction]"!==e&&!/^\[object HTML/.test(e))&&c(t)}},8662:(t,e,r)=>{"use strict";var n,o=Object.prototype.toString,i=Function.prototype.toString,a=/^\s*(?:function)?\*/,c=r(6410)(),u=Object.getPrototypeOf;t.exports=function(t){if("function"!=typeof t)return!1;if(a.test(i.call(t)))return!0;if(!c)return"[object GeneratorFunction]"===o.call(t);if(!u)return!1;if(void 0===n){var e=function(){if(!c)return!1;try{return Function("return function*() {}")()}catch(t){}}();n=!!e&&u(e)}return u(t)===n}},8611:t=>{"use strict";t.exports=function(t){return t!=t}},360:(t,e,r)=>{"use strict";var n=r(5559),o=r(4289),i=r(8611),a=r(9415),c=r(3194),u=n(a(),Number);o(u,{getPolyfill:a,implementation:i,shim:c}),t.exports=u},9415:(t,e,r)=>{"use strict";var n=r(8611);t.exports=function(){return Number.isNaN&&Number.isNaN(NaN)&&!Number.isNaN("a")?Number.isNaN:n}},3194:(t,e,r)=>{"use strict";var n=r(4289),o=r(9415);t.exports=function(){var t=o();return n(Number,{isNaN:t},{isNaN:function(){return Number.isNaN!==t}}),t}},5692:(t,e,r)=>{"use strict";var n=r(6430);t.exports=function(t){return!!n(t)}},4244:t=>{"use strict";var e=function(t){return t!=t};t.exports=function(t,r){return 0===t&&0===r?1/t==1/r:t===r||!(!e(t)||!e(r))}},609:(t,e,r)=>{"use strict";var n=r(4289),o=r(5559),i=r(4244),a=r(5624),c=r(2281),u=o(a(),Object);n(u,{getPolyfill:a,implementation:i,shim:c}),t.exports=u},5624:(t,e,r)=>{"use strict";var n=r(4244);t.exports=function(){return"function"==typeof Object.is?Object.is:n}},2281:(t,e,r)=>{"use strict";var n=r(5624),o=r(4289);t.exports=function(){var t=n();return o(Object,{is:t},{is:function(){return Object.is!==t}}),t}},8987:(t,e,r)=>{"use strict";var n;if(!Object.keys){var o=Object.prototype.hasOwnProperty,i=Object.prototype.toString,a=r(1414),c=Object.prototype.propertyIsEnumerable,u=!c.call({toString:null},"toString"),l=c.call((function(){}),"prototype"),s=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],f=function(t){var e=t.constructor;return e&&e.prototype===t},p={$applicationCache:!0,$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$onmozfullscreenchange:!0,$onmozfullscreenerror:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},y=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!p["$"+t]&&o.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{f(window[t])}catch(t){return!0}}catch(t){return!0}return!1}();n=function(t){var e=null!==t&&"object"==typeof t,r="[object Function]"===i.call(t),n=a(t),c=e&&"[object String]"===i.call(t),p=[];if(!e&&!r&&!n)throw new TypeError("Object.keys called on a non-object");var d=l&&r;if(c&&t.length>0&&!o.call(t,0))for(var g=0;g<t.length;++g)p.push(String(g));if(n&&t.length>0)for(var b=0;b<t.length;++b)p.push(String(b));else for(var h in t)d&&"prototype"===h||!o.call(t,h)||p.push(String(h));if(u)for(var v=function(t){if("undefined"==typeof window||!y)return f(t);try{return f(t)}catch(t){return!1}}(t),m=0;m<s.length;++m)v&&"constructor"===s[m]||!o.call(t,s[m])||p.push(s[m]);return p}}t.exports=n},2215:(t,e,r)=>{"use strict";var n=Array.prototype.slice,o=r(1414),i=Object.keys,a=i?function(t){return i(t)}:r(8987),c=Object.keys;a.shim=function(){if(Object.keys){var t=function(){var t=Object.keys(arguments);return t&&t.length===arguments.length}(1,2);t||(Object.keys=function(t){return o(t)?c(n.call(t)):c(t)})}else Object.keys=a;return Object.keys||a},t.exports=a},1414:t=>{"use strict";var e=Object.prototype.toString;t.exports=function(t){var r=e.call(t),n="[object Arguments]"===r;return n||(n="[object Array]"!==r&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===e.call(t.callee)),n}},2837:(t,e,r)=>{"use strict";var n=r(2215),o=r(5419)(),i=r(1924),a=Object,c=i("Array.prototype.push"),u=i("Object.prototype.propertyIsEnumerable"),l=o?Object.getOwnPropertySymbols:null;t.exports=function(t,e){if(null==t)throw new TypeError("target must be an object");var r=a(t);if(1===arguments.length)return r;for(var i=1;i<arguments.length;++i){var s=a(arguments[i]),f=n(s),p=o&&(Object.getOwnPropertySymbols||l);if(p)for(var y=p(s),d=0;d<y.length;++d){var g=y[d];u(s,g)&&c(f,g)}for(var b=0;b<f.length;++b){var h=f[b];if(u(s,h)){var v=s[h];r[h]=v}}}return r}},8162:(t,e,r)=>{"use strict";var n=r(2837);t.exports=function(){return Object.assign?function(){if(!Object.assign)return!1;for(var t="abcdefghijklmnopqrst",e=t.split(""),r={},n=0;n<e.length;++n)r[e[n]]=e[n];var o=Object.assign({},r),i="";for(var a in o)i+=a;return t!==i}()||function(){if(!Object.assign||!Object.preventExtensions)return!1;var t=Object.preventExtensions({1:2});try{Object.assign(t,"xy")}catch(e){return"y"===t[1]}return!1}()?n:Object.assign:n}},9908:t=>{"use strict";t.exports=["Float32Array","Float64Array","Int8Array","Int16Array","Int32Array","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array"]},4155:t=>{var e,r,n=t.exports={};function o(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function a(t){if(e===setTimeout)return setTimeout(t,0);if((e===o||!e)&&setTimeout)return e=setTimeout,setTimeout(t,0);try{return e(t,0)}catch(r){try{return e.call(null,t,0)}catch(r){return e.call(this,t,0)}}}!function(){try{e="function"==typeof setTimeout?setTimeout:o}catch(t){e=o}try{r="function"==typeof clearTimeout?clearTimeout:i}catch(t){r=i}}();var c,u=[],l=!1,s=-1;function f(){l&&c&&(l=!1,c.length?u=c.concat(u):s=-1,u.length&&p())}function p(){if(!l){var t=a(f);l=!0;for(var e=u.length;e;){for(c=u,u=[];++s<e;)c&&c[s].run();s=-1,e=u.length}c=null,l=!1,function(t){if(r===clearTimeout)return clearTimeout(t);if((r===i||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(t);try{return r(t)}catch(e){try{return r.call(null,t)}catch(e){return r.call(this,t)}}}(t)}}function y(t,e){this.fun=t,this.array=e}function d(){}n.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];u.push(new y(t,e)),1!==u.length||l||a(p)},y.prototype.run=function(){this.fun.apply(null,this.array)},n.title="browser",n.browser=!0,n.env={},n.argv=[],n.version="",n.versions={},n.on=d,n.addListener=d,n.once=d,n.off=d,n.removeListener=d,n.removeAllListeners=d,n.emit=d,n.prependListener=d,n.prependOnceListener=d,n.listeners=function(t){return[]},n.binding=function(t){throw new Error("process.binding is not supported")},n.cwd=function(){return"/"},n.chdir=function(t){throw new Error("process.chdir is not supported")},n.umask=function(){return 0}},7771:(t,e,r)=>{"use strict";var n=r(210),o=r(2296),i=r(1044)(),a=r(7296),c=r(4453),u=n("%Math.floor%");t.exports=function(t,e){if("function"!=typeof t)throw new c("`fn` is not a function");if("number"!=typeof e||e<0||e>4294967295||u(e)!==e)throw new c("`length` must be a positive 32-bit integer");var r=arguments.length>2&&!!arguments[2],n=!0,l=!0;if("length"in t&&a){var s=a(t,"length");s&&!s.configurable&&(n=!1),s&&!s.writable&&(l=!1)}return(n||l||!r)&&(i?o(t,"length",e,!0,!0):o(t,"length",e)),t}},384:t=>{t.exports=function(t){return t&&"object"==typeof t&&"function"==typeof t.copy&&"function"==typeof t.fill&&"function"==typeof t.readUInt8}},5955:(t,e,r)=>{"use strict";var n=r(2584),o=r(8662),i=r(6430),a=r(5692);function c(t){return t.call.bind(t)}var u="undefined"!=typeof BigInt,l="undefined"!=typeof Symbol,s=c(Object.prototype.toString),f=c(Number.prototype.valueOf),p=c(String.prototype.valueOf),y=c(Boolean.prototype.valueOf);if(u)var d=c(BigInt.prototype.valueOf);if(l)var g=c(Symbol.prototype.valueOf);function b(t,e){if("object"!=typeof t)return!1;try{return e(t),!0}catch(t){return!1}}function h(t){return"[object Map]"===s(t)}function v(t){return"[object Set]"===s(t)}function m(t){return"[object WeakMap]"===s(t)}function w(t){return"[object WeakSet]"===s(t)}function j(t){return"[object ArrayBuffer]"===s(t)}function O(t){return"undefined"!=typeof ArrayBuffer&&(j.working?j(t):t instanceof ArrayBuffer)}function S(t){return"[object DataView]"===s(t)}function A(t){return"undefined"!=typeof DataView&&(S.working?S(t):t instanceof DataView)}e.isArgumentsObject=n,e.isGeneratorFunction=o,e.isTypedArray=a,e.isPromise=function(t){return"undefined"!=typeof Promise&&t instanceof Promise||null!==t&&"object"==typeof t&&"function"==typeof t.then&&"function"==typeof t.catch},e.isArrayBufferView=function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):a(t)||A(t)},e.isUint8Array=function(t){return"Uint8Array"===i(t)},e.isUint8ClampedArray=function(t){return"Uint8ClampedArray"===i(t)},e.isUint16Array=function(t){return"Uint16Array"===i(t)},e.isUint32Array=function(t){return"Uint32Array"===i(t)},e.isInt8Array=function(t){return"Int8Array"===i(t)},e.isInt16Array=function(t){return"Int16Array"===i(t)},e.isInt32Array=function(t){return"Int32Array"===i(t)},e.isFloat32Array=function(t){return"Float32Array"===i(t)},e.isFloat64Array=function(t){return"Float64Array"===i(t)},e.isBigInt64Array=function(t){return"BigInt64Array"===i(t)},e.isBigUint64Array=function(t){return"BigUint64Array"===i(t)},h.working="undefined"!=typeof Map&&h(new Map),e.isMap=function(t){return"undefined"!=typeof Map&&(h.working?h(t):t instanceof Map)},v.working="undefined"!=typeof Set&&v(new Set),e.isSet=function(t){return"undefined"!=typeof Set&&(v.working?v(t):t instanceof Set)},m.working="undefined"!=typeof WeakMap&&m(new WeakMap),e.isWeakMap=function(t){return"undefined"!=typeof WeakMap&&(m.working?m(t):t instanceof WeakMap)},w.working="undefined"!=typeof WeakSet&&w(new WeakSet),e.isWeakSet=function(t){return w(t)},j.working="undefined"!=typeof ArrayBuffer&&j(new ArrayBuffer),e.isArrayBuffer=O,S.working="undefined"!=typeof ArrayBuffer&&"undefined"!=typeof DataView&&S(new DataView(new ArrayBuffer(1),0,1)),e.isDataView=A;var E="undefined"!=typeof SharedArrayBuffer?SharedArrayBuffer:void 0;function x(t){return"[object SharedArrayBuffer]"===s(t)}function P(t){return void 0!==E&&(void 0===x.working&&(x.working=x(new E)),x.working?x(t):t instanceof E)}function _(t){return b(t,f)}function k(t){return b(t,p)}function T(t){return b(t,y)}function R(t){return u&&b(t,d)}function I(t){return l&&b(t,g)}e.isSharedArrayBuffer=P,e.isAsyncFunction=function(t){return"[object AsyncFunction]"===s(t)},e.isMapIterator=function(t){return"[object Map Iterator]"===s(t)},e.isSetIterator=function(t){return"[object Set Iterator]"===s(t)},e.isGeneratorObject=function(t){return"[object Generator]"===s(t)},e.isWebAssemblyCompiledModule=function(t){return"[object WebAssembly.Module]"===s(t)},e.isNumberObject=_,e.isStringObject=k,e.isBooleanObject=T,e.isBigIntObject=R,e.isSymbolObject=I,e.isBoxedPrimitive=function(t){return _(t)||k(t)||T(t)||R(t)||I(t)},e.isAnyArrayBuffer=function(t){return"undefined"!=typeof Uint8Array&&(O(t)||P(t))},["isProxy","isExternal","isModuleNamespaceObject"].forEach((function(t){Object.defineProperty(e,t,{enumerable:!1,value:function(){throw new Error(t+" is not supported in userland")}})}))},9539:(t,e,r)=>{var n=r(4155),o=r(5108),i=Object.getOwnPropertyDescriptors||function(t){for(var e=Object.keys(t),r={},n=0;n<e.length;n++)r[e[n]]=Object.getOwnPropertyDescriptor(t,e[n]);return r},a=/%[sdj%]/g;e.format=function(t){if(!w(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(s(arguments[r]));return e.join(" ")}r=1;for(var n=arguments,o=n.length,i=String(t).replace(a,(function(t){if("%%"===t)return"%";if(r>=o)return t;switch(t){case"%s":return String(n[r++]);case"%d":return Number(n[r++]);case"%j":try{return JSON.stringify(n[r++])}catch(t){return"[Circular]"}default:return t}})),c=n[r];r<o;c=n[++r])v(c)||!S(c)?i+=" "+c:i+=" "+s(c);return i},e.deprecate=function(t,r){if(void 0!==n&&!0===n.noDeprecation)return t;if(void 0===n)return function(){return e.deprecate(t,r).apply(this,arguments)};var i=!1;return function(){if(!i){if(n.throwDeprecation)throw new Error(r);n.traceDeprecation?o.trace(r):o.error(r),i=!0}return t.apply(this,arguments)}};var c={},u=/^$/;if(n.env.NODE_DEBUG){var l=n.env.NODE_DEBUG;l=l.replace(/[|\\{}()[\]^$+?.]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"$|^").toUpperCase(),u=new RegExp("^"+l+"$","i")}function s(t,r){var n={seen:[],stylize:p};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),h(r)?n.showHidden=r:r&&e._extend(n,r),j(n.showHidden)&&(n.showHidden=!1),j(n.depth)&&(n.depth=2),j(n.colors)&&(n.colors=!1),j(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=f),y(n,t,n.depth)}function f(t,e){var r=s.styles[e];return r?"["+s.colors[r][0]+"m"+t+"["+s.colors[r][1]+"m":t}function p(t,e){return t}function y(t,r,n){if(t.customInspect&&r&&x(r.inspect)&&r.inspect!==e.inspect&&(!r.constructor||r.constructor.prototype!==r)){var o=r.inspect(n,t);return w(o)||(o=y(t,o,n)),o}var i=function(t,e){if(j(e))return t.stylize("undefined","undefined");if(w(e)){var r="'"+JSON.stringify(e).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return t.stylize(r,"string")}return m(e)?t.stylize(""+e,"number"):h(e)?t.stylize(""+e,"boolean"):v(e)?t.stylize("null","null"):void 0}(t,r);if(i)return i;var a=Object.keys(r),c=function(t){var e={};return t.forEach((function(t,r){e[t]=!0})),e}(a);if(t.showHidden&&(a=Object.getOwnPropertyNames(r)),E(r)&&(a.indexOf("message")>=0||a.indexOf("description")>=0))return d(r);if(0===a.length){if(x(r)){var u=r.name?": "+r.name:"";return t.stylize("[Function"+u+"]","special")}if(O(r))return t.stylize(RegExp.prototype.toString.call(r),"regexp");if(A(r))return t.stylize(Date.prototype.toString.call(r),"date");if(E(r))return d(r)}var l,s="",f=!1,p=["{","}"];return b(r)&&(f=!0,p=["[","]"]),x(r)&&(s=" [Function"+(r.name?": "+r.name:"")+"]"),O(r)&&(s=" "+RegExp.prototype.toString.call(r)),A(r)&&(s=" "+Date.prototype.toUTCString.call(r)),E(r)&&(s=" "+d(r)),0!==a.length||f&&0!=r.length?n<0?O(r)?t.stylize(RegExp.prototype.toString.call(r),"regexp"):t.stylize("[Object]","special"):(t.seen.push(r),l=f?function(t,e,r,n,o){for(var i=[],a=0,c=e.length;a<c;++a)T(e,String(a))?i.push(g(t,e,r,n,String(a),!0)):i.push("");return o.forEach((function(o){o.match(/^\d+$/)||i.push(g(t,e,r,n,o,!0))})),i}(t,r,n,c,a):a.map((function(e){return g(t,r,n,c,e,f)})),t.seen.pop(),function(t,e,r){return t.reduce((function(t,e){return e.indexOf("\n"),t+e.replace(/\u001b\[\d\d?m/g,"").length+1}),0)>60?r[0]+(""===e?"":e+"\n ")+" "+t.join(",\n ")+" "+r[1]:r[0]+e+" "+t.join(", ")+" "+r[1]}(l,s,p)):p[0]+s+p[1]}function d(t){return"["+Error.prototype.toString.call(t)+"]"}function g(t,e,r,n,o,i){var a,c,u;if((u=Object.getOwnPropertyDescriptor(e,o)||{value:e[o]}).get?c=u.set?t.stylize("[Getter/Setter]","special"):t.stylize("[Getter]","special"):u.set&&(c=t.stylize("[Setter]","special")),T(n,o)||(a="["+o+"]"),c||(t.seen.indexOf(u.value)<0?(c=v(r)?y(t,u.value,null):y(t,u.value,r-1)).indexOf("\n")>-1&&(c=i?c.split("\n").map((function(t){return" "+t})).join("\n").slice(2):"\n"+c.split("\n").map((function(t){return" "+t})).join("\n")):c=t.stylize("[Circular]","special")),j(a)){if(i&&o.match(/^\d+$/))return c;(a=JSON.stringify(""+o)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.slice(1,-1),a=t.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=t.stylize(a,"string"))}return a+": "+c}function b(t){return Array.isArray(t)}function h(t){return"boolean"==typeof t}function v(t){return null===t}function m(t){return"number"==typeof t}function w(t){return"string"==typeof t}function j(t){return void 0===t}function O(t){return S(t)&&"[object RegExp]"===P(t)}function S(t){return"object"==typeof t&&null!==t}function A(t){return S(t)&&"[object Date]"===P(t)}function E(t){return S(t)&&("[object Error]"===P(t)||t instanceof Error)}function x(t){return"function"==typeof t}function P(t){return Object.prototype.toString.call(t)}function _(t){return t<10?"0"+t.toString(10):t.toString(10)}e.debuglog=function(t){if(t=t.toUpperCase(),!c[t])if(u.test(t)){var r=n.pid;c[t]=function(){var n=e.format.apply(e,arguments);o.error("%s %d: %s",t,r,n)}}else c[t]=function(){};return c[t]},e.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},e.types=r(5955),e.isArray=b,e.isBoolean=h,e.isNull=v,e.isNullOrUndefined=function(t){return null==t},e.isNumber=m,e.isString=w,e.isSymbol=function(t){return"symbol"==typeof t},e.isUndefined=j,e.isRegExp=O,e.types.isRegExp=O,e.isObject=S,e.isDate=A,e.types.isDate=A,e.isError=E,e.types.isNativeError=E,e.isFunction=x,e.isPrimitive=function(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"==typeof t||void 0===t},e.isBuffer=r(384);var k=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function T(t,e){return Object.prototype.hasOwnProperty.call(t,e)}e.log=function(){var t,r;o.log("%s - %s",(r=[_((t=new Date).getHours()),_(t.getMinutes()),_(t.getSeconds())].join(":"),[t.getDate(),k[t.getMonth()],r].join(" ")),e.format.apply(e,arguments))},e.inherits=r(5717),e._extend=function(t,e){if(!e||!S(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t};var R="undefined"!=typeof Symbol?Symbol("util.promisify.custom"):void 0;function I(t,e){if(!t){var r=new Error("Promise was rejected with a falsy value");r.reason=t,t=r}return e(t)}e.promisify=function(t){if("function"!=typeof t)throw new TypeError('The "original" argument must be of type Function');if(R&&t[R]){var e;if("function"!=typeof(e=t[R]))throw new TypeError('The "util.promisify.custom" argument must be of type Function');return Object.defineProperty(e,R,{value:e,enumerable:!1,writable:!1,configurable:!0}),e}function e(){for(var e,r,n=new Promise((function(t,n){e=t,r=n})),o=[],i=0;i<arguments.length;i++)o.push(arguments[i]);o.push((function(t,n){t?r(t):e(n)}));try{t.apply(this,o)}catch(t){r(t)}return n}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),R&&Object.defineProperty(e,R,{value:e,enumerable:!1,writable:!1,configurable:!0}),Object.defineProperties(e,i(t))},e.promisify.custom=R,e.callbackify=function(t){if("function"!=typeof t)throw new TypeError('The "original" argument must be of type Function');function e(){for(var e=[],r=0;r<arguments.length;r++)e.push(arguments[r]);var o=e.pop();if("function"!=typeof o)throw new TypeError("The last argument must be of type Function");var i=this,a=function(){return o.apply(i,arguments)};t.apply(this,e).then((function(t){n.nextTick(a.bind(null,null,t))}),(function(t){n.nextTick(I.bind(null,t,a))}))}return Object.setPrototypeOf(e,Object.getPrototypeOf(t)),Object.defineProperties(e,i(t)),e}},6430:(t,e,r)=>{"use strict";var n=r(4029),o=r(3083),i=r(5559),a=r(1924),c=r(7296),u=a("Object.prototype.toString"),l=r(6410)(),s="undefined"==typeof globalThis?r.g:globalThis,f=o(),p=a("String.prototype.slice"),y=Object.getPrototypeOf,d=a("Array.prototype.indexOf",!0)||function(t,e){for(var r=0;r<t.length;r+=1)if(t[r]===e)return r;return-1},g={__proto__:null};n(f,l&&c&&y?function(t){var e=new s[t];if(Symbol.toStringTag in e){var r=y(e),n=c(r,Symbol.toStringTag);if(!n){var o=y(r);n=c(o,Symbol.toStringTag)}g["$"+t]=i(n.get)}}:function(t){var e=new s[t],r=e.slice||e.set;r&&(g["$"+t]=i(r))}),t.exports=function(t){if(!t||"object"!=typeof t)return!1;if(!l){var e=p(u(t),8,-1);return d(f,e)>-1?e:"Object"===e&&function(t){var e=!1;return n(g,(function(r,n){if(!e)try{r(t),e=p(n,1)}catch(t){}})),e}(t)}return c?function(t){var e=!1;return n(g,(function(r,n){if(!e)try{"$"+r(t)===n&&(e=p(n,1))}catch(t){}})),e}(t):null}},3083:(t,e,r)=>{"use strict";var n=r(9908),o="undefined"==typeof globalThis?r.g:globalThis;t.exports=function(){for(var t=[],e=0;e<n.length;e++)"function"==typeof o[n[e]]&&(t[t.length]=n[e]);return t}}},r={};function n(t){var o=r[t];if(void 0!==o)return o.exports;var i=r[t]={exports:{}};return e[t](i,i.exports,n),i.exports}n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),t=n(5108),jQuery(document).ready((function(e){var r=e("#wd_smartsearch_license_email"),n=e("#wd_smartsearch_license_email_error"),o=e("#wd-free-license-status"),i=e("#wd_license_updates");function a(e){o.removeClass("loading"),e.success?(o.addClass("has-license").removeClass("no-license"),o.html('<i class="fas fa-check"></i> '+wdAdminTranslations.freeLicenseValid)):(o.addClass("no-license").removeClass("has-license"),o.html('<i class="fas fa-times"></i> '+wdAdminTranslations.freeLicenseInvalid),t.error("Erreur lors de la récupération de la licence gratuite : "+e.data.message))}function c(e,r,n){t.error("Erreur lors de la requête AJAX : "+n)}e("#wd-free-license-submit").on("click",(function(t){t.preventDefault();var u=r.val().trim();if(/\S+@\S+\.\S+/.test(u)&&0!==u.length){n.prop("hidden",!0),o.addClass("loading").removeClass("no-license has-license"),o.html('<i class="fas fa-spinner fa-spin"></i>');var l={action:"wdgpt_get_free_license",email:u,receive_updates:i.is(":checked"),security:wdgpt_ajax_object.ajax_free_license_nonce};e.ajax({type:"POST",url:wdgpt_ajax_object.ajax_url,data:l,success:a,error:c})}else n.prop("hidden",!1)}));var u=e("#license_key"),l=e("#wd-premium-license-status"),s=e("#wd-premium-license-submit");function f(e){if(l.removeClass("loading"),e.success){var r="";switch(e.data.state){case"not_found":r=wdAdminTranslations.premiumLicenseNotFound;break;case"verified_with_url":r=wdAdminTranslations.premiumLicenseVerifiedWithUrl;break;case"already_registered_with_another_url":r=wdAdminTranslations.premiumLicenseAlreadyRegisteredWithAnotherUrl;break;case"failed_to_register_url":r=wdAdminTranslations.premiumLicenseFailedToRegisterUrl;break;case"verified":r=wdAdminTranslations.premiumLicenseValid;break;case"failed_to_retrieve_expiry_date":r=wdAdminTranslations.premiumLicenseFailedToRetrieveExpiryDate;break;case"expired":r=wdAdminTranslations.premiumLicenseExpired;break;default:r=wdAdminTranslations.premiumLicenseInvalid}e.data.is_valid?(l.html('<i class="fas fa-check"></i> '+r),l.addClass("has-license").removeClass("no-license")):(l.html('<i class="fas fa-times"></i> '+r),l.addClass("no-license").removeClass("has-license"))}else l.addClass("no-license").removeClass("has-license"),l.html('<i class="fas fa-times"></i> '+wdAdminTranslations.premiumLicenseInvalid),t.error("Erreur lors de la vérification de la licence : "+e.data.message)}function p(e,r,n){t.error("Erreur lors de la requête AJAX : "+n)}s.on("click",(function(t){if(1===s.data("expired"))window.open("https://www.smartsearchwp.com/product/license-premium/","_blank");else{t.preventDefault();var r=u.val().trim();l.addClass("loading").removeClass("no-license has-license"),l.html('<i class="fas fa-spinner fa-spin"></i>');var n={action:"wdgpt_verify_license",license_key:r,security:wdgpt_ajax_object.ajax_verify_license_nonce};e.ajax({type:"POST",url:wdgpt_ajax_object.ajax_url,data:n,success:f,error:p})}}));var y=document.getElementById("license_key"),d=document.getElementById("verify_license");y&&d&&y.addEventListener("input",(function(){y.value.trim().length>0?d.disabled=!1:d.disabled=!0})),document.querySelectorAll(".wdgpt-addons-cell.button-cell a").forEach((function(r){r.addEventListener("click",(function(n){var o=r.getAttribute("data-action");if("free_license"!==o&&"url"!==o){var i=r.getAttribute("data-id");r.innerHTML='<i class="fas fa-spinner fa-spin"></i>',r.setAttribute("disabled","disabled");var a={action:"wdgpt_"+o+"_addon",id:i,security:wdgpt_ajax_object["ajax_"+o+"_addon_nonce"]};e.ajax({type:"POST",url:wdgpt_ajax_object.ajax_url,data:a,success:function(t){var e=t.success?1:0;window.location.href=window.location.href+"&"+o+"="+e,window.location.reload()},error:function(e,r,n){t.log(n)}})}}))}))})),document.addEventListener("DOMContentLoaded",(function(){var t=document.getElementById("toggle_license_visibility"),e=document.getElementById("license_key");t&&e&&t.addEventListener("click",(function(){"password"===e.type?(e.type="text",t.innerHTML='<i class="dashicons dashicons-hidden"></i>'):(e.type="password",t.innerHTML='<i class="dashicons dashicons-visibility"></i>')}))}))})(); -
smartsearchwp/trunk/js/license_check.js
r3241701 r3243280 181 181 }); 182 182 }); 183 document.addEventListener("DOMContentLoaded", function() { 184 const toggleBtn = document.getElementById("toggle_license_visibility"); 185 const licenseInput = document.getElementById("license_key"); 186 187 if (toggleBtn && licenseInput) { 188 toggleBtn.addEventListener("click", function() { 189 if (licenseInput.type === "password") { 190 licenseInput.type = "text"; 191 toggleBtn.innerHTML = '<i class="dashicons dashicons-hidden"></i>'; 192 } else { 193 licenseInput.type = "password"; 194 toggleBtn.innerHTML = '<i class="dashicons dashicons-visibility"></i>'; 195 } 196 }); 197 } 198 }); -
smartsearchwp/trunk/readme.txt
r3241701 r3243280 5 5 Requires at least: 4.7 6 6 Tested up to: 6.7.1 7 Stable tag: 2.5. 07 Stable tag: 2.5.1 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 89 89 90 90 == Changelog == 91 92 = 2.5.1 = 93 * Added the option of displaying the licence key in plain text in the back office 94 * Added new logs for licence management 95 * Better licence cache management 91 96 92 97 = 2.5.0 = -
smartsearchwp/trunk/wdgpt.php
r3241701 r3243280 4 4 * Description: A chatbot that helps users navigate your website and find what they're looking for. 5 5 * Plugin URI: https://www.smartsearchwp.com/ 6 * Version: 2.5. 06 * Version: 2.5.1 7 7 * Author: Webdigit 8 8 * Author URI: https://www.smartsearchwp.com/ … … 19 19 } 20 20 21 define( 'WDGPT_CHATBOT_VERSION', '2.5. 0' );21 define( 'WDGPT_CHATBOT_VERSION', '2.5.1' ); 22 22 23 23 // Définition de la constante globale pour le mode debug
Note: See TracChangeset
for help on using the changeset viewer.