PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / 6.9.5
Secure Custom Fields v6.9.5
6.9.5 6.9.4 6.9.3 6.9.2 6.9.1 6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / assets / build / js / acf.min.js
secure-custom-fields / assets / build / js Last commit date
commands 1 month ago pro 4 days ago acf-escaped-html-notice.asset.php 1 year ago acf-escaped-html-notice.js 1 year ago acf-escaped-html-notice.js.map 1 year ago acf-escaped-html-notice.min.asset.php 8 months ago acf-escaped-html-notice.min.js 8 months ago acf-field-group.asset.php 4 months ago acf-field-group.js 4 months ago acf-field-group.js.map 4 months ago acf-field-group.min.asset.php 4 months ago acf-field-group.min.js 4 months ago acf-input.asset.php 3 weeks ago acf-input.js 3 weeks ago acf-input.js.map 3 weeks ago acf-input.min.asset.php 3 weeks ago acf-input.min.js 3 weeks ago acf-internal-post-type.asset.php 8 months ago acf-internal-post-type.js 8 months ago acf-internal-post-type.js.map 8 months ago acf-internal-post-type.min.asset.php 8 months ago acf-internal-post-type.min.js 8 months ago acf.asset.php 3 weeks ago acf.js 3 weeks ago acf.js.map 3 weeks ago acf.min.asset.php 3 weeks ago acf.min.js 3 weeks ago index.php 1 year ago scf-bindings.asset.php 1 month ago scf-bindings.js 1 month ago scf-bindings.js.map 1 month ago scf-bindings.min.asset.php 1 month ago scf-bindings.min.js 1 month ago
acf.min.js
4 lines
1 (()=>{var t={38:()=>{var t;t=jQuery,acf.models.Popup=acf.Model.extend({data:{title:"",content:"",width:0,height:0,loading:!1,openedBy:null,confirmRemove:!1},events:{'click [data-event="close"]':"onClickClose","click .acf-close-popup":"onClickClose",keydown:"onPressEscapeClose"},setup:function(e){t.extend(this.data,e),this.$el=t(this.tmpl())},initialize:function(){this.render(),this.open(),this.focus(),this.lockFocusToPopup(!0)},tmpl:function(){return['<div id="acf-popup" role="dialog" tabindex="-1">','<div class="acf-popup-box acf-box">','<div class="title"><h3></h3><a href="#" class="acf-icon -cancel grey" data-event="close" aria-label="'+acf.__("Close modal")+'"></a></div>','<div class="inner"></div>','<div class="loading"><i class="acf-loading"></i></div>',"</div>",'<div class="bg" data-event="close"></div>',"</div>"].join("")},render:function(){var t=this.get("title"),e=this.get("content"),n=this.get("loading"),i=this.get("width"),o=this.get("height");this.title(t),this.content(e),i&&this.$(".acf-popup-box").css("width",i),o&&this.$(".acf-popup-box").css("min-height",o),this.loading(n),acf.doAction("append",this.$el)},focus:function(){this.$el.find(".acf-icon").first().trigger("focus")},lockFocusToPopup:function(e){let n=t("#wpwrap");n.length&&(n[0].inert=e,n.attr("aria-hidden",e))},update:function(t){this.data=acf.parseArgs(t,this.data),this.render()},title:function(t){this.$(".title:first h3").html(t)},content:function(t){this.$(".inner:first").html(t)},loading:function(t){var e=this.$(".loading:first");t?e.show():e.hide()},open:function(){t("body").append(this.$el)},close:function(){this.lockFocusToPopup(!1),this.returnFocusToOrigin(),this.remove()},onClickClose:function(t,e){t.preventDefault(),this.close()},onPressEscapeClose:function(t){"Escape"===t.key&&this.close()},returnFocusToOrigin:function(){this.data.openedBy instanceof t&&this.data.openedBy.closest("body").length>0&&this.data.openedBy.trigger("focus")}}),acf.models.PopupConfirm=acf.models.Popup.extend({data:{text:"",textConfirm:"",textCancel:"",context:!1,confirm:function(){},cancel:function(){}},events:{'click [data-event="close"]':"onCancel","click .acf-close-popup":"onClickClose",keydown:"onPressEscapeClose",'click [data-event="confirm"]':"onConfirm"},tmpl:function(){return`\n <div id="acf-popup" role="dialog" tabindex="-1">\n <div class="acf-popup-box acf-box acf-confirm-popup">\n <div class="title">\n <h3>${this.get("title")}</h3>\n <a href="#" data-event="close" aria-label="${acf.__("Close modal")}">\n <i class="acf-icon -close"></i>\n </a>\n </div>\n <div class="inner">\n <p>${acf.escHtml(this.get("text"))}</p>\n <div class="acf-actions">\n <button tabindex="0" type="button" data-event="close" class="acf-btn acf-btn-secondary acf-close-popup">${acf.strEscape(this.get("textCancel"))}</button>\n <button tabindex="0" type="submit" data-event="confirm" class="acf-btn acf-btn-primary acf-confirm">${acf.strEscape(this.get("textConfirm"))}</button>\n </div>\n </div>\n </div>\n <div class="bg" data-event="close"></div>\n </div>`},render:function(){const t=this.get("loading"),e=this.get("width"),n=this.get("height"),i=this;e&&this.$(".acf-popup-box").css("width",e),n&&this.$(".acf-popup-box").css("min-height",n),this.loading(t),acf.doAction("append",this.$el),setTimeout(function(){i.$el.find(".acf-close-popup").trigger("focus")},1)},onConfirm:function(t,e){t.preventDefault(),t.stopPropagation(),this.close();const n=this.get("confirm"),i=this.get("context")||this;n.apply(i,arguments)},onCancel:function(t,e){t.preventDefault(),t.stopPropagation(),this.close();const n=this.get("cancel"),i=this.get("context")||this;n.apply(i,arguments)}}),acf.newPopup=function(t){return t.confirmRemove?new acf.models.PopupConfirm(t):new acf.models.Popup(t)}},2593:()=>{var t;t=jQuery,acf.models.Modal=acf.Model.extend({data:{title:"",content:"",toolbar:""},events:{"click .acf-modal-close":"onClickClose"},setup:function(e){t.extend(this.data,e),this.$el=t(),this.render()},initialize:function(){this.open()},render:function(){var e=this.get("title"),n=this.get("content"),i=this.get("toolbar"),o=t(["<div>",'<div class="acf-modal">','<div class="acf-modal-title">',"<h2>"+e+"</h2>",'<button class="acf-modal-close" type="button"><span class="dashicons dashicons-no"></span></button>',"</div>",'<div class="acf-modal-content">'+n+"</div>",'<div class="acf-modal-toolbar">'+i+"</div>","</div>",'<div class="acf-modal-backdrop acf-modal-close"></div>',"</div>"].join(""));this.$el&&this.$el.replaceWith(o),this.$el=o,acf.doAction("append",o)},update:function(t){this.data=acf.parseArgs(t,this.data),this.render()},title:function(t){this.$(".acf-modal-title h2").html(t)},content:function(t){this.$(".acf-modal-content").html(t)},toolbar:function(t){this.$(".acf-modal-toolbar").html(t)},open:function(){t("body").append(this.$el)},close:function(){this.remove()},onClickClose:function(t,e){t.preventDefault(),this.close()},focus:function(){this.$el.find(".acf-icon").first().trigger("focus")},lockFocusToModal:function(e){let n=t("#wpwrap");n.length&&(n[0].inert=e,n.attr("aria-hidden",e))},returnFocusToOrigin:function(){this.data.openedBy instanceof t&&this.data.openedBy.closest("body").length>0&&this.data.openedBy.trigger("focus")}}),acf.newModal=function(t){return new acf.models.Modal(t)}},2712:()=>{!function(){"use strict";acf.hooks=new function(){var t={removeFilter:function(e,i){"string"==typeof e&&n("filters",e,i);return t},applyFilters:function(){var e=Array.prototype.slice.call(arguments),n=e.shift();if("string"==typeof n)return o("filters",n,e);return t},addFilter:function(e,n,o,r){"string"==typeof e&&"function"==typeof n&&i("filters",e,n,o=parseInt(o||10,10),r);return t},removeAction:function(e,i){"string"==typeof e&&n("actions",e,i);return t},doAction:function(){var e=Array.prototype.slice.call(arguments),n=e.shift();"string"==typeof n&&o("actions",n,e);return t},addAction:function(e,n,o,r){"string"==typeof e&&"function"==typeof n&&i("actions",e,n,o=parseInt(o||10,10),r);return t},storage:function(){return e}},e={actions:{},filters:{}};function n(t,n,i,o){if(e[t][n])if(i){var r,a=e[t][n];if(o)for(r=a.length;r--;){var c=a[r];c.callback===i&&c.context===o&&a.splice(r,1)}else for(r=a.length;r--;)a[r].callback===i&&a.splice(r,1)}else e[t][n]=[]}function i(t,n,i,o,r){var a={callback:i,priority:o,context:r},c=e[t][n];c?(c.push(a),c=function(t){for(var e,n,i,o=1,r=t.length;o<r;o++){for(e=t[o],n=o;(i=t[n-1])&&i.priority>e.priority;)t[n]=t[n-1],--n;t[n]=e}return t}(c)):c=[a],e[t][n]=c}function o(t,n,i){var o=e[t][n];if(!o)return"filters"===t&&i[0];var r=0,a=o.length;if("filters"===t)for(;r<a;r++)i[0]=o[r].callback.apply(o[r].context,i);else for(;r<a;r++)o[r].callback.apply(o[r].context,i);return"filters"!==t||i[0]}return t}}(window)},3597:()=>{var t,e,n;t=jQuery,e=/^(\S+)\s*(.*)$/,n=acf.Model=function(){this.cid=acf.uniqueId("acf"),this.data=t.extend(!0,{},this.data),this.setup.apply(this,arguments),this.$el&&!this.$el.data("acf")&&this.$el.data("acf",this);var e=function(){this.initialize(),this.addEvents(),this.addActions(),this.addFilters()};this.wait&&!acf.didAction(this.wait)?this.addAction(this.wait,e):e.apply(this)},t.extend(n.prototype,{id:"",cid:"",$el:null,data:{},busy:!1,changed:!1,events:{},actions:{},filters:{},eventScope:"",wait:!1,priority:10,get:function(t){return this.data[t]},has:function(t){return null!=this.get(t)},set:function(t,e,n){var i=this.get(t);return i==e||(this.data[t]=e,n||(this.changed=!0,this.trigger("changed:"+t,[e,i]),this.trigger("changed",[t,e,i]))),this},inherit:function(e){return e instanceof jQuery&&(e=e.data()),t.extend(this.data,e),this},prop:function(){return this.$el.prop.apply(this.$el,arguments)},setup:function(e){t.extend(this,e)},initialize:function(){},addElements:function(t){if(!(t=t||this.elements||null)||!Object.keys(t).length)return!1;for(var e in t)this.addElement(e,t[e])},addElement:function(t,e){this["$"+t]=this.$(e)},addEvents:function(t){if(!(t=t||this.events||null))return!1;for(var n in t){var i=n.match(e);this.on(i[1],i[2],t[n])}},removeEvents:function(t){if(!(t=t||this.events||null))return!1;for(var n in t){var i=n.match(e);this.off(i[1],i[2],t[n])}},getEventTarget:function(e,n){return e||this.$el||t(document)},validateEvent:function(e){return!this.eventScope||t(e.target).closest(this.eventScope).is(this.$el)},proxyEvent:function(e){return this.proxy(function(n){if(this.validateEvent(n)){var i=acf.arrayArgs(arguments).slice(1),o=[n,t(n.currentTarget)].concat(i);e.apply(this,o)}})},on:function(t,e,n,i){var o,r,a,c,s;t instanceof jQuery?i?(o=t,r=e,a=n,c=i):(o=t,r=e,c=n):n?(r=t,a=e,c=n):(r=t,c=e),o=this.getEventTarget(o),"string"==typeof c&&(c=this.proxyEvent(this[c])),r=r+"."+this.cid,s=a?[r,a,c]:[r,c],o.on.apply(o,s)},off:function(t,e,n){var i,o,r,a;t instanceof jQuery?n?(i=t,o=e,r=n):(i=t,o=e):e?(o=t,r=e):o=t,i=this.getEventTarget(i),o=o+"."+this.cid,a=r?[o,r]:[o],i.off.apply(i,a)},trigger:function(t,e,n){var i=this.getEventTarget();return n?i.trigger.apply(i,arguments):i.triggerHandler.apply(i,arguments),this},addActions:function(t){if(!(t=t||this.actions||null))return!1;for(var e in t)this.addAction(e,t[e])},removeActions:function(t){if(!(t=t||this.actions||null))return!1;for(var e in t)this.removeAction(e,t[e])},addAction:function(t,e,n){n=n||this.priority,"string"==typeof e&&(e=this[e]),acf.addAction(t,e,n,this)},removeAction:function(t,e){acf.removeAction(t,this[e])},addFilters:function(t){if(!(t=t||this.filters||null))return!1;for(var e in t)this.addFilter(e,t[e])},addFilter:function(t,e,n){n=n||this.priority,"string"==typeof e&&(e=this[e]),acf.addFilter(t,e,n,this)},removeFilters:function(t){if(!(t=t||this.filters||null))return!1;for(var e in t)this.removeFilter(e,t[e])},removeFilter:function(t,e){acf.removeFilter(t,this[e])},$:function(t){return this.$el.find(t)},remove:function(){this.removeEvents(),this.removeActions(),this.removeFilters(),this.$el.remove()},setTimeout:function(t,e){return setTimeout(this.proxy(t),e)},time:function(){console.time(this.id||this.cid)},timeEnd:function(){console.timeEnd(this.id||this.cid)},show:function(){acf.show(this.$el)},hide:function(){acf.hide(this.$el)},proxy:function(e){return t.proxy(e,this)}}),n.extend=function(e){var n,i=this;return n=e&&e.hasOwnProperty("constructor")?e.constructor:function(){return i.apply(this,arguments)},t.extend(n,i),n.prototype=Object.create(i.prototype),t.extend(n.prototype,e),n.prototype.constructor=n,n},acf.models={},acf.getInstance=function(t){return t.data("acf")},acf.getInstances=function(e){var n=[];return e.each(function(){n.push(acf.getInstance(t(this)))}),n}},3695:()=>{!function(t,e){acf.newTooltip=function(t){return"object"!=typeof t&&(t={text:t}),t.confirmRemove!==e?(t.textConfirm=acf.__("Remove"),t.textCancel=acf.__("Cancel"),new i(t)):t.confirm!==e?new i(t):new n(t)};var n=acf.Model.extend({data:{text:"",timeout:0,target:null},tmpl:function(){return'<div class="acf-tooltip"></div>'},setup:function(e){t.extend(this.data,e),this.$el=t(this.tmpl())},initialize:function(){this.render(),this.show(),this.position();var e=this.get("timeout");e&&setTimeout(t.proxy(this.fade,this),e)},update:function(e){t.extend(this.data,e),this.initialize()},render:function(){this.$el.text(this.get("text"))},show:function(){t("body").append(this.$el)},hide:function(){this.$el.remove()},fade:function(){this.$el.addClass("acf-fade-up"),this.setTimeout(function(){this.remove()},250)},html:function(t){this.$el.html(t)},position:function(){var e=this.$el,n=this.get("target");if(n){e.removeClass("right left bottom top").css({top:0,left:0});var i=n.outerWidth(),o=n.outerHeight(),r=n.offset().top,a=n.offset().left,c=e.outerWidth(),s=e.outerHeight(),l=e.offset().top,u=r-s-l,f=a+i/2-c/2;f<10?(e.addClass("right"),f=a+i,u=r+o/2-s/2-l):f+c+10>t(window).width()?(e.addClass("left"),f=a-c,u=r+o/2-s/2-l):u-t(window).scrollTop()<10?(e.addClass("bottom"),u=r+o-l):e.addClass("top"),e.css({top:u,left:f})}}}),i=n.extend({data:{text:"",textConfirm:"",textCancel:"",target:null,targetConfirm:!0,confirm:function(){},cancel:function(){},context:!1},events:{'click [data-event="cancel"]':"onCancel",'click [data-event="confirm"]':"onConfirm"},addEvents:function(){acf.Model.prototype.addEvents.apply(this);var e=t(document),n=this.get("target");this.setTimeout(function(){this.on(e,"click","onCancel")}),this.get("targetConfirm")&&this.on(n,"click","onConfirm")},removeEvents:function(){acf.Model.prototype.removeEvents.apply(this);var e=t(document),n=this.get("target");this.off(e,"click"),this.off(n,"click")},render:function(){var t=[this.get("text")||acf.__("Are you sure?"),'<a href="#" data-event="confirm">'+(this.get("textConfirm")||acf.__("Yes"))+"</a>",'<a href="#" data-event="cancel">'+(this.get("textCancel")||acf.__("No"))+"</a>"].join(" ");this.html(t),this.$el.addClass("-confirm")},onCancel:function(t,e){t.preventDefault(),t.stopImmediatePropagation();var n=this.get("cancel"),i=this.get("context")||this;n.apply(i,arguments),this.remove()},onConfirm:function(t,e){t.preventDefault(),t.stopImmediatePropagation();var n=this.get("confirm"),i=this.get("context")||this;n.apply(i,arguments),this.remove()}});acf.models.Tooltip=n,acf.models.TooltipConfirm=i;new acf.Model({tooltip:!1,events:{"mouseenter .acf-js-tooltip":"showTitle","mouseup .acf-js-tooltip":"hideTitle","mouseleave .acf-js-tooltip":"hideTitle","focus .acf-js-tooltip":"showTitle","blur .acf-js-tooltip":"hideTitle","keyup .acf-js-tooltip":"onKeyUp"},showTitle:function(t,e){let n=e.attr("title");n&&(e.attr("title",""),e.data("acf-js-tooltip-title",n),n=acf.strEscape(n),this.tooltip?this.tooltip.update({text:n,target:e}):this.tooltip=acf.newTooltip({text:n,target:e}))},hideTitle:function(t,e){this.tooltip.hide(),e.attr("title",e.data("acf-js-tooltip-title")),e.removeData("acf-js-tooltip-title")},onKeyUp:function(t,e){"Escape"===t.key&&this.hideTitle(t,e)}})}(jQuery)},4758:()=>{jQuery,new acf.Model({events:{"click .acf-panel-title":"onClick"},onClick:function(t,e){t.preventDefault(),this.toggle(e.parent())},isOpen:function(t){return t.hasClass("-open")},toggle:function(t){this.isOpen(t)?this.close(t):this.open(t)},open:function(t){t.addClass("-open"),t.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-down")},close:function(t){t.removeClass("-open"),t.find(".acf-panel-title i").attr("class","dashicons dashicons-arrow-right")}})},5454:t=>{"use strict";function e(t,e){(null==e||e>t.length)&&(e=t.length);for(var n=0,i=Array(e);n<e;n++)i[n]=t[n];return i}function n(t,n){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){var n=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=n){var i,o,r,a,c=[],s=!0,l=!1;try{if(r=(n=n.call(t)).next,0===e);else for(;!(s=(i=r.call(n)).done)&&(c.push(i.value),c.length!==e);s=!0);}catch(t){l=!0,o=t}finally{try{if(!s&&null!=n.return&&(a=n.return(),Object(a)!==a))return}finally{if(l)throw o}}return c}}(t,n)||function(t,n){if(t){if("string"==typeof t)return e(t,n);var i={}.toString.call(t).slice(8,-1);return"Object"===i&&t.constructor&&(i=t.constructor.name),"Map"===i||"Set"===i?Array.from(t):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?e(t,n):void 0}}(t,n)||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.")}()}const i=Object.entries,o=Object.setPrototypeOf,r=Object.isFrozen,a=Object.getPrototypeOf,c=Object.getOwnPropertyDescriptor;let s=Object.freeze,l=Object.seal,u=Object.create,f="undefined"!=typeof Reflect&&Reflect,d=f.apply,p=f.construct;s||(s=function(t){return t}),l||(l=function(t){return t}),d||(d=function(t,e){for(var n=arguments.length,i=new Array(n>2?n-2:0),o=2;o<n;o++)i[o-2]=arguments[o];return t.apply(e,i)}),p||(p=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),i=1;i<e;i++)n[i-1]=arguments[i];return new t(...n)});const h=M(Array.prototype.forEach),m=M(Array.prototype.lastIndexOf),g=M(Array.prototype.pop),y=M(Array.prototype.push),v=M(Array.prototype.splice),b=Array.isArray,T=M(String.prototype.toLowerCase),A=M(String.prototype.toString),w=M(String.prototype.match),x=M(String.prototype.replace),E=M(String.prototype.indexOf),C=M(String.prototype.trim),S=M(Number.prototype.toString),_=M(Boolean.prototype.toString),O="undefined"==typeof BigInt?null:M(BigInt.prototype.toString),k="undefined"==typeof Symbol?null:M(Symbol.prototype.toString),N=M(Object.prototype.hasOwnProperty),I=M(Object.prototype.toString),D=M(RegExp.prototype.test),R=(L=TypeError,function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return p(L,e)});var L;function M(t){return function(e){e instanceof RegExp&&(e.lastIndex=0);for(var n=arguments.length,i=new Array(n>1?n-1:0),o=1;o<n;o++)i[o-1]=arguments[o];return d(t,e,i)}}function j(t,e){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:T;if(o&&o(t,null),!b(e))return t;let i=e.length;for(;i--;){let o=e[i];if("string"==typeof o){const t=n(o);t!==o&&(r(e)||(e[i]=t),o=t)}t[o]=!0}return t}function F(t){for(let e=0;e<t.length;e++){N(t,e)||(t[e]=null)}return t}function P(t){const e=u(null);for(const r of i(t)){var o=n(r,2);const i=o[0],a=o[1];N(t,i)&&(b(a)?e[i]=F(a):a&&"object"==typeof a&&a.constructor===Object?e[i]=P(a):e[i]=a)}return e}function z(t,e){for(;null!==t;){const n=c(t,e);if(n){if(n.get)return M(n.get);if("function"==typeof n.value)return M(n.value)}t=a(t)}return function(){return null}}const U=s(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","search","section","select","shadow","slot","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),$=s(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","enterkeyhint","exportparts","filter","font","g","glyph","glyphref","hkern","image","inputmode","line","lineargradient","marker","mask","metadata","mpath","part","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),H=s(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),B=s(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),G=s(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),W=s(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),Y=s(["#text"]),q=s(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","command","commandfor","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","exportparts","face","for","headers","height","hidden","high","href","hreflang","id","inert","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","part","pattern","placeholder","playsinline","popover","popovertarget","popovertargetaction","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","slot","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","wrap","xmlns"]),Q=s(["accent-height","accumulate","additive","alignment-baseline","amplitude","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","exponent","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","intercept","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","mask-type","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","slope","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","tablevalues","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),J=s(["accent","accentunder","align","bevelled","close","columnalign","columnlines","columnspacing","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lquote","lspace","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),V=s(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),X=l(/{{[\w\W]*|^[\w\W]*}}/g),K=l(/<%[\w\W]*|^[\w\W]*%>/g),Z=l(/\${[\w\W]*/g),tt=l(/^data-[\-\w.\u00B7-\uFFFF]+$/),et=l(/^aria-[\-\w]+$/),nt=l(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp|matrix):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),it=l(/^(?:\w+script|data):/i),ot=l(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),rt=l(/^html$/i),at=l(/^[a-z][.\w]*(-[.\w]+)+$/i),ct=l(/<[/\w!]/g),st=l(/<[/\w]/g),lt=l(/<\/no(script|embed|frames)/i),ut=l(/\/>/i),ft=1,dt=3,pt=7,ht=8,mt=9,gt=11,yt=function(){return"undefined"==typeof window?null:window},vt=function(t,e,n,i){return N(t,e)&&b(t[e])?j(i.base?P(i.base):{},t[e],i.transform):n};var bt=function t(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:yt();const n=e=>t(e);if(n.version="3.4.11",n.removed=[],!e||!e.document||e.document.nodeType!==mt||!e.Element)return n.isSupported=!1,n;let o=e.document;const r=o,a=r.currentScript;e.DocumentFragment;const c=e.HTMLTemplateElement,f=e.Node,d=e.Element,p=e.NodeFilter,L=e.NamedNodeMap;void 0===L&&(e.NamedNodeMap||e.MozNamedAttrMap),e.HTMLFormElement;const M=e.DOMParser,F=e.trustedTypes,bt=d.prototype,Tt=z(bt,"cloneNode"),At=z(bt,"remove"),wt=z(bt,"nextSibling"),xt=z(bt,"childNodes"),Et=z(bt,"parentNode"),Ct=z(bt,"shadowRoot"),St=z(bt,"attributes"),_t=f&&f.prototype?z(f.prototype,"nodeType"):null,Ot=f&&f.prototype?z(f.prototype,"nodeName"):null;if("function"==typeof c){const t=o.createElement("template");t.content&&t.content.ownerDocument&&(o=t.content.ownerDocument)}let kt,Nt,It="",Dt=!1,Rt=0;const Lt=function(){if(Rt>0)throw R('A configured TRUSTED_TYPES_POLICY callback (createHTML or createScriptURL) must not call DOMPurify.sanitize, as that causes infinite recursion. Do not pass a policy whose callbacks wrap DOMPurify as TRUSTED_TYPES_POLICY; see the "DOMPurify and Trusted Types" section of the README.')},Mt=function(t){Lt(),Rt++;try{return kt.createHTML(t)}finally{Rt--}},jt=function(){return Dt||(Nt=function(t,e){if("object"!=typeof t||"function"!=typeof t.createPolicy)return null;let n=null;const i="data-tt-policy-suffix";e&&e.hasAttribute(i)&&(n=e.getAttribute(i));const o="dompurify"+(n?"#"+n:"");try{return t.createPolicy(o,{createHTML:t=>t,createScriptURL:t=>t})}catch(t){return console.warn("TrustedTypes policy "+o+" could not be created."),null}}(F,a),Dt=!0),Nt},Ft=o,Pt=Ft.implementation,zt=Ft.createNodeIterator,Ut=Ft.createDocumentFragment,$t=Ft.getElementsByTagName,Ht=r.importNode;let Bt={afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]};n.isSupported="function"==typeof i&&"function"==typeof Et&&Pt&&void 0!==Pt.createHTMLDocument;const Gt=X,Wt=K,Yt=Z,qt=tt,Qt=et,Jt=it,Vt=ot,Xt=at;let Kt=nt,Zt=null;const te=j({},[...U,...$,...H,...G,...Y]);let ee=null;const ne=j({},[...q,...Q,...J,...V]);let ie=Object.seal(u(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),oe=null,re=null;const ae=Object.seal(u(null,{tagCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeCheck:{writable:!0,configurable:!1,enumerable:!0,value:null}}));let ce=!0,se=!0,le=!1,ue=!0,fe=!1,de=!0,pe=!1,he=!1,me=null,ge=null,ye=!1,ve=!1,be=!1,Te=!1,Ae=!0,we=!1;const xe="user-content-";let Ee=!0,Ce=!1,Se={},_e=null;const Oe=j({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","selectedcontent","style","svg","template","thead","title","video","xmp"]);let ke=null;const Ne=j({},["audio","video","img","source","image","track"]);let Ie=null;const De=j({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),Re="http://www.w3.org/1998/Math/MathML",Le="http://www.w3.org/2000/svg",Me="http://www.w3.org/1999/xhtml";let je=Me,Fe=!1,Pe=null;const ze=j({},[Re,Le,Me],A),Ue=s(["mi","mo","mn","ms","mtext"]);let $e=j({},Ue);const He=s(["annotation-xml"]);let Be=j({},He);const Ge=j({},["title","style","font","a","script"]);let We=null;const Ye=["application/xhtml+xml","text/html"];let qe=null,Qe=null;const Je=o.createElement("form"),Ve=function(t){return t instanceof RegExp||t instanceof Function},Xe=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(Qe&&Qe===t)return;t&&"object"==typeof t||(t={}),t=P(t),We=-1===Ye.indexOf(t.PARSER_MEDIA_TYPE)?"text/html":t.PARSER_MEDIA_TYPE,qe="application/xhtml+xml"===We?A:T,Zt=vt(t,"ALLOWED_TAGS",te,{transform:qe}),ee=vt(t,"ALLOWED_ATTR",ne,{transform:qe}),Pe=vt(t,"ALLOWED_NAMESPACES",ze,{transform:A}),Ie=vt(t,"ADD_URI_SAFE_ATTR",De,{transform:qe,base:De}),ke=vt(t,"ADD_DATA_URI_TAGS",Ne,{transform:qe,base:Ne}),_e=vt(t,"FORBID_CONTENTS",Oe,{transform:qe}),oe=vt(t,"FORBID_TAGS",P({}),{transform:qe}),re=vt(t,"FORBID_ATTR",P({}),{transform:qe}),Se=!!N(t,"USE_PROFILES")&&(t.USE_PROFILES&&"object"==typeof t.USE_PROFILES?P(t.USE_PROFILES):t.USE_PROFILES),ce=!1!==t.ALLOW_ARIA_ATTR,se=!1!==t.ALLOW_DATA_ATTR,le=t.ALLOW_UNKNOWN_PROTOCOLS||!1,ue=!1!==t.ALLOW_SELF_CLOSE_IN_ATTR,fe=t.SAFE_FOR_TEMPLATES||!1,de=!1!==t.SAFE_FOR_XML,pe=t.WHOLE_DOCUMENT||!1,ve=t.RETURN_DOM||!1,be=t.RETURN_DOM_FRAGMENT||!1,Te=t.RETURN_TRUSTED_TYPE||!1,ye=t.FORCE_BODY||!1,Ae=!1!==t.SANITIZE_DOM,we=t.SANITIZE_NAMED_PROPS||!1,Ee=!1!==t.KEEP_CONTENT,Ce=t.IN_PLACE||!1,Kt=function(t){try{return D(t,""),!0}catch(t){return!1}}(t.ALLOWED_URI_REGEXP)?t.ALLOWED_URI_REGEXP:nt,je="string"==typeof t.NAMESPACE?t.NAMESPACE:Me,$e=N(t,"MATHML_TEXT_INTEGRATION_POINTS")&&t.MATHML_TEXT_INTEGRATION_POINTS&&"object"==typeof t.MATHML_TEXT_INTEGRATION_POINTS?P(t.MATHML_TEXT_INTEGRATION_POINTS):j({},Ue),Be=N(t,"HTML_INTEGRATION_POINTS")&&t.HTML_INTEGRATION_POINTS&&"object"==typeof t.HTML_INTEGRATION_POINTS?P(t.HTML_INTEGRATION_POINTS):j({},He);const e=N(t,"CUSTOM_ELEMENT_HANDLING")&&t.CUSTOM_ELEMENT_HANDLING&&"object"==typeof t.CUSTOM_ELEMENT_HANDLING?P(t.CUSTOM_ELEMENT_HANDLING):u(null);if(ie=u(null),N(e,"tagNameCheck")&&Ve(e.tagNameCheck)&&(ie.tagNameCheck=e.tagNameCheck),N(e,"attributeNameCheck")&&Ve(e.attributeNameCheck)&&(ie.attributeNameCheck=e.attributeNameCheck),N(e,"allowCustomizedBuiltInElements")&&"boolean"==typeof e.allowCustomizedBuiltInElements&&(ie.allowCustomizedBuiltInElements=e.allowCustomizedBuiltInElements),l(ie),fe&&(se=!1),be&&(ve=!0),Se&&(Zt=j({},Y),ee=u(null),!0===Se.html&&(j(Zt,U),j(ee,q)),!0===Se.svg&&(j(Zt,$),j(ee,Q),j(ee,V)),!0===Se.svgFilters&&(j(Zt,H),j(ee,Q),j(ee,V)),!0===Se.mathMl&&(j(Zt,G),j(ee,J),j(ee,V))),ae.tagCheck=null,ae.attributeCheck=null,N(t,"ADD_TAGS")&&("function"==typeof t.ADD_TAGS?ae.tagCheck=t.ADD_TAGS:b(t.ADD_TAGS)&&(Zt===te&&(Zt=P(Zt)),j(Zt,t.ADD_TAGS,qe))),N(t,"ADD_ATTR")&&("function"==typeof t.ADD_ATTR?ae.attributeCheck=t.ADD_ATTR:b(t.ADD_ATTR)&&(ee===ne&&(ee=P(ee)),j(ee,t.ADD_ATTR,qe))),N(t,"ADD_URI_SAFE_ATTR")&&b(t.ADD_URI_SAFE_ATTR)&&j(Ie,t.ADD_URI_SAFE_ATTR,qe),N(t,"FORBID_CONTENTS")&&b(t.FORBID_CONTENTS)&&(_e===Oe&&(_e=P(_e)),j(_e,t.FORBID_CONTENTS,qe)),N(t,"ADD_FORBID_CONTENTS")&&b(t.ADD_FORBID_CONTENTS)&&(_e===Oe&&(_e=P(_e)),j(_e,t.ADD_FORBID_CONTENTS,qe)),Ee&&(Zt["#text"]=!0),pe&&j(Zt,["html","head","body"]),Zt.table&&(j(Zt,["tbody"]),delete oe.tbody),t.TRUSTED_TYPES_POLICY){if("function"!=typeof t.TRUSTED_TYPES_POLICY.createHTML)throw R('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof t.TRUSTED_TYPES_POLICY.createScriptURL)throw R('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');const e=kt;kt=t.TRUSTED_TYPES_POLICY;try{It=Mt("")}catch(t){throw kt=e,t}}else null===t.TRUSTED_TYPES_POLICY?(kt=void 0,It=""):(void 0===kt&&(kt=jt()),kt&&"string"==typeof It&&(It=Mt("")));s&&s(t),Qe=t},Ke=j({},[...$,...H,...B]),Ze=j({},[...G,...W]),tn=function(t){let e=Et(t);e&&e.tagName||(e={namespaceURI:je,tagName:"template"});const n=T(t.tagName),i=T(e.tagName);return!!Pe[t.namespaceURI]&&(t.namespaceURI===Le?function(t,e,n){return e.namespaceURI===Me?"svg"===t:e.namespaceURI===Re?"svg"===t&&("annotation-xml"===n||$e[n]):Boolean(Ke[t])}(n,e,i):t.namespaceURI===Re?function(t,e,n){return e.namespaceURI===Me?"math"===t:e.namespaceURI===Le?"math"===t&&Be[n]:Boolean(Ze[t])}(n,e,i):t.namespaceURI===Me?function(t,e,n){return!(e.namespaceURI===Le&&!Be[n])&&!(e.namespaceURI===Re&&!$e[n])&&!Ze[t]&&(Ge[t]||!Ke[t])}(n,e,i):!("application/xhtml+xml"!==We||!Pe[t.namespaceURI]))},en=function(t){y(n.removed,{element:t});try{Et(t).removeChild(t)}catch(e){if(At(t),!Et(t))throw R("a node selected for removal could not be detached from its tree and cannot be safely returned; refusing to sanitize in place")}},nn=function(t){const e=xt(t);if(e){const t=[];h(e,e=>{y(t,e)}),h(t,t=>{try{At(t)}catch(t){}})}const n=St(t);if(n)for(let e=n.length-1;e>=0;--e){const i=n[e],o=i&&i.name;if("string"==typeof o)try{t.removeAttribute(o)}catch(t){}}},on=function(t,e){try{y(n.removed,{attribute:e.getAttributeNode(t),from:e})}catch(t){y(n.removed,{attribute:null,from:e})}if(e.removeAttribute(t),"is"===t)if(ve||be)try{en(e)}catch(t){}else try{e.setAttribute(t,"")}catch(t){}},rn=function(t){const e=St(t);if(e)for(let n=e.length-1;n>=0;--n){const i=e[n],o=i&&i.name;if("string"==typeof o&&!ee[qe(o)])try{t.removeAttribute(o)}catch(t){}}},an=function(t){let e=null,n=null;if(ye)t="<remove></remove>"+t;else{const e=w(t,/^[\r\n\t ]+/);n=e&&e[0]}"application/xhtml+xml"===We&&je===Me&&(t='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+t+"</body></html>");const i=kt?Mt(t):t;if(je===Me)try{e=(new M).parseFromString(i,We)}catch(t){}if(!e||!e.documentElement){e=Pt.createDocument(je,"template",null);try{e.documentElement.innerHTML=Fe?It:i}catch(t){}}const r=e.body||e.documentElement;return t&&n&&r.insertBefore(o.createTextNode(n),r.childNodes[0]||null),je===Me?$t.call(e,pe?"html":"body")[0]:pe?e.documentElement:r},cn=function(t){return zt.call(t.ownerDocument||t,t,p.SHOW_ELEMENT|p.SHOW_COMMENT|p.SHOW_TEXT|p.SHOW_PROCESSING_INSTRUCTION|p.SHOW_CDATA_SECTION,null)},sn=function(t){return t=x(t,Gt," "),t=x(t,Wt," "),t=x(t,Yt," ")},ln=function(t){var e;t.normalize();const n=zt.call(t.ownerDocument||t,t,p.SHOW_TEXT|p.SHOW_COMMENT|p.SHOW_CDATA_SECTION|p.SHOW_PROCESSING_INSTRUCTION,null);let i=n.nextNode();for(;i;)i.data=sn(i.data),i=n.nextNode();const o=null===(e=t.querySelectorAll)||void 0===e?void 0:e.call(t,"template");o&&h(o,t=>{fn(t.content)&&ln(t.content)})},un=function(t){const e=Ot?Ot(t):null;return"string"==typeof e&&("form"===qe(e)&&("string"!=typeof t.nodeName||"string"!=typeof t.textContent||"function"!=typeof t.removeChild||t.attributes!==St(t)||"function"!=typeof t.removeAttribute||"function"!=typeof t.setAttribute||"string"!=typeof t.namespaceURI||"function"!=typeof t.insertBefore||"function"!=typeof t.hasChildNodes||t.nodeType!==_t(t)||t.childNodes!==xt(t)))},fn=function(t){if(!_t||"object"!=typeof t||null===t)return!1;try{return _t(t)===gt}catch(t){return!1}},dn=function(t){if(!_t||"object"!=typeof t||null===t)return!1;try{return"number"==typeof _t(t)}catch(t){return!1}};function pn(t,e,i){0!==t.length&&h(t,t=>{t.call(n,e,i,Qe)})}const hn=function(t){if(pn(Bt.beforeSanitizeElements,t,null),un(t))return en(t),!0;const e=qe(Ot?Ot(t):t.nodeName);if(pn(Bt.uponSanitizeElement,t,{tagName:e,allowedTags:Zt}),function(t,e){return!!(de&&t.hasChildNodes()&&!dn(t.firstElementChild)&&D(ct,t.textContent)&&D(ct,t.innerHTML))||!(!de||t.namespaceURI!==Me||"style"!==e||!dn(t.firstElementChild))||t.nodeType===pt||!(!de||t.nodeType!==ht||!D(st,t.data))}(t,e))return en(t),!0;if(oe[e]||!(ae.tagCheck instanceof Function&&ae.tagCheck(e))&&!Zt[e])return function(t,e){if(!oe[e]&&yn(e)){if(ie.tagNameCheck instanceof RegExp&&D(ie.tagNameCheck,e))return!1;if(ie.tagNameCheck instanceof Function&&ie.tagNameCheck(e))return!1}if(Ee&&!_e[e]){const e=Et(t),n=xt(t);if(n&&e)for(let i=n.length-1;i>=0;--i){const o=Ce?n[i]:Tt(n[i],!0);e.insertBefore(o,wt(t))}}return en(t),!0}(t,e);if((_t?_t(t):t.nodeType)===ft&&!tn(t))return en(t),!0;if(("noscript"===e||"noembed"===e||"noframes"===e)&&D(lt,t.innerHTML))return en(t),!0;if(fe&&t.nodeType===dt){const e=sn(t.textContent);t.textContent!==e&&(y(n.removed,{element:t.cloneNode()}),t.textContent=e)}return pn(Bt.afterSanitizeElements,t,null),!1},mn=function(t,e,n){if(re[e])return!1;if(Ae&&("id"===e||"name"===e)&&(n in o||n in Je))return!1;const i=ee[e]||ae.attributeCheck instanceof Function&&ae.attributeCheck(e,t);if(se&&D(qt,e));else if(ce&&D(Qt,e));else if(i)if(Ie[e]);else if(D(Kt,x(n,Vt,"")));else if("src"!==e&&"xlink:href"!==e&&"href"!==e||"script"===t||0!==E(n,"data:")||!ke[t]){if(le&&!D(Jt,x(n,Vt,"")));else if(n)return!1}else;else if(!(yn(t)&&(ie.tagNameCheck instanceof RegExp&&D(ie.tagNameCheck,t)||ie.tagNameCheck instanceof Function&&ie.tagNameCheck(t))&&(ie.attributeNameCheck instanceof RegExp&&D(ie.attributeNameCheck,e)||ie.attributeNameCheck instanceof Function&&ie.attributeNameCheck(e,t))||"is"===e&&ie.allowCustomizedBuiltInElements&&(ie.tagNameCheck instanceof RegExp&&D(ie.tagNameCheck,n)||ie.tagNameCheck instanceof Function&&ie.tagNameCheck(n))))return!1;return!0},gn=j({},["annotation-xml","color-profile","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","missing-glyph"]),yn=function(t){return!gn[T(t)]&&D(Xt,t)},vn=function(t,e,n,i){if(kt&&"object"==typeof F&&"function"==typeof F.getAttributeType&&!n)switch(F.getAttributeType(t,e)){case"TrustedHTML":return Mt(i);case"TrustedScriptURL":return function(t){Lt(),Rt++;try{return kt.createScriptURL(t)}finally{Rt--}}(i)}return i},bn=function(t,e,i,o){try{i?t.setAttributeNS(i,e,o):t.setAttribute(e,o),un(t)?en(t):g(n.removed)}catch(n){on(e,t)}},Tn=function(t){pn(Bt.beforeSanitizeAttributes,t,null);const e=t.attributes;if(!e||un(t))return;const n={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:ee,forceKeepAttr:void 0};let i=e.length;const o=qe(t.nodeName);for(;i--;){const r=e[i],a=r.name,c=r.namespaceURI,s=r.value,l=qe(a),u=s;let f="value"===a?u:C(u);n.attrName=l,n.attrValue=f,n.keepAttr=!0,n.forceKeepAttr=void 0,pn(Bt.uponSanitizeAttribute,t,n),f=n.attrValue,!we||"id"!==l&&"name"!==l||0===E(f,xe)||(on(a,t),f=xe+f),de&&D(/((--!?|])>)|<\/(style|script|title|xmp|textarea|noscript|iframe|noembed|noframes)/i,f)?on(a,t):"attributename"===l&&w(f,"href")?on(a,t):n.forceKeepAttr||(n.keepAttr&&(ue||!D(ut,f))?(fe&&(f=sn(f)),mn(o,l,f)?(f=vn(o,l,c,f),f!==u&&bn(t,a,c,f)):on(a,t)):on(a,t))}pn(Bt.afterSanitizeAttributes,t,null)},An=function(t){let e=null;const n=cn(t);for(pn(Bt.beforeSanitizeShadowDOM,t,null);e=n.nextNode();){pn(Bt.uponSanitizeShadowNode,e,null),hn(e),Tn(e),fn(e.content)&&An(e.content);if((_t?_t(e):e.nodeType)===ft){const t=Ct(e);fn(t)&&(wn(t),An(t))}}pn(Bt.afterSanitizeShadowDOM,t,null)},wn=function(t){const e=[{node:t,shadow:null}];for(;e.length>0;){const t=e.pop();if(t.shadow){An(t.shadow);continue}const n=t.node,i=(_t?_t(n):n.nodeType)===ft,o=xt(n);if(o)for(let t=o.length-1;t>=0;--t)e.push({node:o[t],shadow:null});if(i){const t=Ot?Ot(n):null;if("string"==typeof t&&"template"===qe(t)){const t=n.content;fn(t)&&e.push({node:t,shadow:null})}}if(i){const t=Ct(n);fn(t)&&e.push({node:null,shadow:t},{node:t,shadow:null})}}};return n.sanitize=function(t){let e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=null,o=null,a=null,c=null;if(Fe=!t,Fe&&(t="\x3c!--\x3e"),"string"!=typeof t&&!dn(t)&&"string"!=typeof(t=function(t){switch(typeof t){case"string":return t;case"number":return S(t);case"boolean":return _(t);case"bigint":return O?O(t):"0";case"symbol":return k?k(t):"Symbol()";case"undefined":default:return I(t);case"function":case"object":{if(null===t)return I(t);const e=t,n=z(e,"toString");if("function"==typeof n){const t=n(e);return"string"==typeof t?t:I(t)}return I(t)}}}(t)))throw R("dirty is not a string, aborting");if(!n.isSupported)return t;he?(Zt=me,ee=ge):Xe(e),(Bt.uponSanitizeElement.length>0||Bt.uponSanitizeAttribute.length>0)&&(Zt=P(Zt)),Bt.uponSanitizeAttribute.length>0&&(ee=P(ee)),n.removed=[];const s=Ce&&"string"!=typeof t&&dn(t);if(s){const e=Ot?Ot(t):t.nodeName;if("string"==typeof e){const t=qe(e);if(!Zt[t]||oe[t])throw R("root node is forbidden and cannot be sanitized in-place")}if(un(t))throw R("root node is clobbered and cannot be sanitized in-place");try{wn(t)}catch(e){throw nn(t),e}}else if(dn(t))i=an("\x3c!----\x3e"),o=i.ownerDocument.importNode(t,!0),o.nodeType===ft&&"BODY"===o.nodeName||"HTML"===o.nodeName?i=o:i.appendChild(o),wn(o);else{if(!ve&&!fe&&!pe&&-1===t.indexOf("<"))return kt&&Te?Mt(t):t;if(i=an(t),!i)return ve?null:Te?It:""}i&&ye&&en(i.firstChild);const l=cn(s?t:i);try{for(;a=l.nextNode();)hn(a),Tn(a),fn(a.content)&&An(a.content)}catch(e){throw s&&nn(t),e}if(s)return h(n.removed,t=>{t.element&&function(t){const e=[t];for(;e.length>0;){const t=e.pop();(_t?_t(t):t.nodeType)===ft&&rn(t);const n=xt(t);if(n)for(let t=n.length-1;t>=0;--t)e.push(n[t])}}(t.element)}),fe&&ln(t),t;if(ve){if(fe&&ln(i),be)for(c=Ut.call(i.ownerDocument);i.firstChild;)c.appendChild(i.firstChild);else c=i;return(ee.shadowroot||ee.shadowrootmode)&&(c=Ht.call(r,c,!0)),c}let u=pe?i.outerHTML:i.innerHTML;return pe&&Zt["!doctype"]&&i.ownerDocument&&i.ownerDocument.doctype&&i.ownerDocument.doctype.name&&D(rt,i.ownerDocument.doctype.name)&&(u="<!DOCTYPE "+i.ownerDocument.doctype.name+">\n"+u),fe&&(u=sn(u)),kt&&Te?Mt(u):u},n.setConfig=function(){Xe(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}),he=!0,me=Zt,ge=ee},n.clearConfig=function(){Qe=null,he=!1,me=null,ge=null,kt=Nt,It=""},n.isValidAttribute=function(t,e,n){Qe||Xe({});const i=qe(t),o=qe(e);return mn(i,o,n)},n.addHook=function(t,e){"function"==typeof e&&N(Bt,t)&&y(Bt[t],e)},n.removeHook=function(t,e){if(N(Bt,t)){if(void 0!==e){const n=m(Bt[t],e);return-1===n?void 0:v(Bt[t],n,1)[0]}return g(Bt[t])}},n.removeHooks=function(t){N(Bt,t)&&(Bt[t]=[])},n.removeAllHooks=function(){Bt={afterSanitizeAttributes:[],afterSanitizeElements:[],afterSanitizeShadowDOM:[],beforeSanitizeAttributes:[],beforeSanitizeElements:[],beforeSanitizeShadowDOM:[],uponSanitizeAttribute:[],uponSanitizeElement:[],uponSanitizeShadowNode:[]}},n}();t.exports=bt},5770:()=>{!function(t){var e=acf.Model.extend({data:{text:"",type:"",timeout:0,dismiss:!0,target:!1,location:"before",close:function(){}},events:{"click .acf-notice-dismiss":"onClickClose"},tmpl:function(){return'<div class="acf-notice"></div>'},setup:function(e){t.extend(this.data,e),this.$el=t(this.tmpl())},initialize:function(){this.render(),this.show()},render:function(){this.type(this.get("type")),this.html("<p>"+acf.escHtml(this.get("text"))+"</p>"),this.get("dismiss")&&(this.$el.append('<a href="#" class="acf-notice-dismiss acf-icon -cancel small"></a>'),this.$el.addClass("-dismiss"));var t=this.get("timeout");t&&this.away(t)},update:function(e){t.extend(this.data,e),this.initialize(),this.removeEvents(),this.addEvents()},show:function(){var t=this.get("target"),e=this.get("location");t&&("after"===e?t.append(this.$el):t.prepend(this.$el))},hide:function(){this.$el.remove()},away:function(t){this.setTimeout(function(){acf.remove(this.$el)},t)},type:function(t){var e=this.get("type");e&&this.$el.removeClass("-"+e),this.$el.addClass("-"+t),"error"==t&&this.$el.addClass("acf-error-message")},html:function(t){this.$el.html(acf.escHtml(t))},text:function(t){this.$("p").html(acf.escHtml(t))},onClickClose:function(t,e){t.preventDefault(),this.get("close").apply(this,arguments),this.remove()}});acf.newNotice=function(t){return"object"!=typeof t&&(t={text:t}),new e(t)};new acf.Model({wait:"prepare",priority:1,initialize:function(){const e=t(".acf-admin-notice");e.length&&e.each(function(){if(t(this).data("persisted")){let e=acf.getPreference("dismissed-notices");e&&"object"==typeof e&&e.includes(t(this).data("persist-id"))?t(this).remove():(t(this).show(),t(this).on("click",".notice-dismiss",function(n){e=acf.getPreference("dismissed-notices"),e&&"object"==typeof e||(e=[]),e.push(t(this).closest(".acf-admin-notice").data("persist-id")),acf.setPreference("dismissed-notices",e)}))}})}})}(jQuery)},9453:(t,e,n)=>{!function(t,e){var i={};window.acf=i,i.data={},i.get=function(t){return this.data[t]||null},i.has=function(t){return null!==this.get(t)},i.set=function(t,e){return this.data[t]=e,this};var o=0;i.uniqueId=function(t){var e=++o+"";return t?t+e:e},i.uniqueArray=function(t){return t.filter(function(t,e,n){return n.indexOf(t)===e})};var r="";i.uniqid=function(t,e){var n;void 0===t&&(t="");var i=function(t,e){return e<(t=parseInt(t,10).toString(16)).length?t.slice(t.length-e):e>t.length?Array(e-t.length+1).join("0")+t:t};return r||(r=Math.floor(123456789*Math.random())),r++,n=t,n+=i(parseInt((new Date).getTime()/1e3,10),8),n+=i(r,5),e&&(n+=(10*Math.random()).toFixed(8).toString()),n},i.strReplace=function(t,e,n){return n.split(t).join(e)},i.strCamelCase=function(t){var e=t.match(/([a-zA-Z0-9]+)/g);return e?e.map(function(t,e){var n=t.charAt(0);return(0===e?n.toLowerCase():n.toUpperCase())+t.slice(1)}).join(""):""},i.strPascalCase=function(t){var e=i.strCamelCase(t);return e.charAt(0).toUpperCase()+e.slice(1)},i.strSlugify=function(t){return i.strReplace("_","-",t.toLowerCase())},i.strSanitize=function(t,n=!0){var i={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",�
2 :"A",Æ:"AE",Ç:"C",È:"E",É:"E",Ê:"E",Ë:"E",Ì:"I",Í:"I",Î:"I",Ï:"I",Ð:"D",Ñ:"N",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",Ù:"U",Ú:"U",Û:"U",Ü:"U",Ý:"Y",ß:"s",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",æ:"ae",ç:"c",è:"e",é:"e",ê:"e",ë:"e",ì:"i",í:"i",î:"i",ï:"i",ñ:"n",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",ù:"u",ú:"u",û:"u",ü:"u",ý:"y",ÿ:"y",Ā:"A",ā:"a",Ă:"A",ă:"a",Ą:"A",�
3 :"a",Ć:"C",ć:"c",Ĉ:"C",ĉ:"c",Ċ:"C",ċ:"c",Č:"C",č:"c",Ď:"D",ď:"d",Đ:"D",đ:"d",Ē:"E",ē:"e",Ĕ:"E",ĕ:"e",Ė:"E",ė:"e",Ę:"E",ę:"e",Ě:"E",ě:"e",Ĝ:"G",ĝ:"g",Ğ:"G",ğ:"g",Ġ:"G",ġ:"g",Ģ:"G",ģ:"g",Ĥ:"H",ĥ:"h",Ħ:"H",ħ:"h",Ĩ:"I",ĩ:"i",Ī:"I",ī:"i",Ĭ:"I",ĭ:"i",Į:"I",į:"i",İ:"I",ı:"i",IJ:"IJ",ij:"ij",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",Ĺ:"L",ĺ:"l",Ļ:"L",ļ:"l",Ľ:"L",ľ:"l",Ŀ:"L",ŀ:"l",Ł:"l",ł:"l",Ń:"N",ń:"n",�
4 :"N",ņ:"n",Ň:"N",ň:"n",ʼn:"n",Ō:"O",ō:"o",Ŏ:"O",ŏ:"o",Ő:"O",ő:"o",Œ:"OE",œ:"oe",Ŕ:"R",ŕ:"r",Ŗ:"R",ŗ:"r",Ř:"R",ř:"r",Ś:"S",ś:"s",Ŝ:"S",ŝ:"s",Ş:"S",ş:"s",Š:"S",š:"s",Ţ:"T",ţ:"t",Ť:"T",ť:"t",Ŧ:"T",ŧ:"t",Ũ:"U",ũ:"u",Ū:"U",ū:"u",Ŭ:"U",ŭ:"u",Ů:"U",ů:"u",Ű:"U",ű:"u",Ų:"U",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",ź:"z",Ż:"Z",ż:"z",Ž:"Z",ž:"z",ſ:"s",ƒ:"f",Ơ:"O",ơ:"o",Ư:"U",ư:"u",Ǎ:"A",ǎ:"a",Ǐ:"I",ǐ:"i",Ǒ:"O",ǒ:"o",Ǔ:"U",ǔ:"u",Ǖ:"U",ǖ:"u",Ǘ:"U",ǘ:"u",Ǚ:"U",ǚ:"u",Ǜ:"U",ǜ:"u",Ǻ:"A",ǻ:"a",Ǽ:"AE",ǽ:"ae",Ǿ:"O",ǿ:"o"," ":"_","'":"","?":"","/":"","\\":"",".":"",",":"","`":"",">":"","<":"",'"':"","[":"","]":"","|":"","{":"","}":"","(":"",")":""};return t=t.replace(/\W/g,function(t){return i[t]!==e?i[t]:t}),n&&(t=t.toLowerCase()),t},i.strMatch=function(t,e){for(var n=0,i=Math.min(t.length,e.length),o=0;o<i&&t[o]===e[o];o++)n++;return n},i.strEscape=function(t){var e={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"};return(""+t).replace(/[&<>"']/g,function(t){return e[t]})},i.strUnescape=function(t){var e={"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"};return(""+t).replace(/&amp;|&lt;|&gt;|&quot;|&#39;/g,function(t){return e[t]})},i.escAttr=i.strEscape,i.escHtml=function(t){t=""+t;const o=n(5454);if(o===e||!o.isSupported)return console.warn("ACF: DOMPurify not loaded or not supported. Falling back to basic HTML escaping for security."),i.strEscape(t);const r=i.applyFilters("esc_html_dompurify_config",{USE_PROFILES:{html:!0},ADD_TAGS:["audio","video"],ADD_ATTR:["controls","loop","muted","preload"],FORBID_TAGS:["script","style","iframe","object","embed","base","meta","form"],FORBID_ATTR:["style","srcset","action","background","dynsrc","lowsrc","on*"],ALLOW_DATA_ATTR:!1,ALLOW_ARIA_ATTR:!1});return o.sanitize(t,r)},i.encode=function(e){return t("<textarea/>").text(e).html()},i.decode=function(e){return t("<textarea/>").html(e).text()},i.parseArgs=function(e,n){return"object"!=typeof e&&(e={}),"object"!=typeof n&&(n={}),t.extend({},n,e)},window.acfL10n=window.acfL10n||{},i.__=function(t){return acfL10n[t]||t},i._x=function(t,e){return acfL10n[t+"."+e]||acfL10n[t]||t},i._n=function(t,e,n){return 1==n?i.__(t):i.__(e)},i.isArray=function(t){return Array.isArray(t)},i.isObject=function(t){return"object"==typeof t};var a=function(t,e,n){var o=(e=e.replace("[]","[%%index%%]")).match(/([^\[\]])+/g);if(o)for(var r=o.length,a=t,c=0;c<r;c++){var s=String(o[c]);c==r-1?"%%index%%"===s?a.push(n):a[s]=n:("%%index%%"===o[c+1]?i.isArray(a[s])||(a[s]=[]):i.isObject(a[s])||(a[s]={}),a=a[s])}};i.serialize=function(t,n){var o={},r=i.serializeArray(t);n!==e&&(r=r.filter(function(t){return 0===t.name.indexOf(n)}).map(function(t){return t.name=t.name.slice(n.length),t}));for(var c=0;c<r.length;c++)a(o,r[c].name,r[c].value);return o};const c=function(t){const e=Object.keys(t);if(0===e.length)return!1;for(let t=0;t<e.length;t++)if(!/^\d+$/.test(e[t]))return!1;return!0},s=function(t){const e=[],n=Object.keys(t).map(function(t){return{k:t,n:parseInt(t,10)}}).sort(function(t,e){return t.n-e.n});for(let i=0;i<n.length;i++)e.push(t[n[i].k]);return e};i.isFlexibleContentData=function(t){if(!i.isObject(t))return!1;for(var e=Object.keys(t),n=0;n<e.length;n++){var o=e[n];if("acfcloneindex"!==o){var r=t[o];if(i.isObject(r)&&r.acf_fc_layout)return!0}}return!1};const l=function(t){if(!i.isObject(t))return t;let e={};for(let d in t)if(t.hasOwnProperty(d)){var n=t[d];if(i.isObject(n))if(c(n))e[d]=s(n);else if(i.isFlexibleContentData(n)){for(var o=[],r=Object.keys(n),a=0;a<r.length;a++){var u=r[a];if("acfcloneindex"!==u){var f=n[u];i.isObject(f)&&f.acf_fc_layout&&o.push(l(f))}}e[d]=o}else e[d]=l(n);else e[d]=n}return e};i.normalizeFlexibleContentData=function(t){return l(t)},i.serializeArray=function(t){return t.find("select, textarea, input").serializeArray()},i.serializeForAjax=function(t){var e={};return i.serializeArray(t).map(function(t){"[]"===t.name.slice(-2)?(e[t.name]=e[t.name]||[],e[t.name].push(t.value)):e[t.name]=t.value}),e},i.addAction=function(){return i.hooks.addAction.apply(this,arguments),this},i.removeAction=function(){return i.hooks.removeAction.apply(this,arguments),this};var u={};i.doAction=function(t){return u[t]=1,i.hooks.doAction.apply(this,arguments),u[t]=0,this},i.doingAction=function(t){return 1===u[t]},i.didAction=function(t){return u[t]!==e},i.currentAction=function(){for(var t in u)if(u[t])return t;return!1},i.addFilter=function(){return i.hooks.addFilter.apply(this,arguments),this},i.removeFilter=function(){return i.hooks.removeFilter.apply(this,arguments),this},i.applyFilters=function(){return i.hooks.applyFilters.apply(this,arguments)},i.arrayArgs=function(t){return Array.prototype.slice.call(t)};try{var f=JSON.parse(localStorage.getItem("acf"))||{}}catch(t){f={}}var d=function(t){return"this."===t.substr(0,5)&&(t=t.substr(5)+"-"+i.get("post_id")),t};i.getPreference=function(t){return t=d(t),f[t]||null},i.setPreference=function(t,e){t=d(t),null===e?delete f[t]:f[t]=e,localStorage.setItem("acf",JSON.stringify(f))},i.removePreference=function(t){i.setPreference(t,null)},i.remove=function(t){t instanceof jQuery&&(t={target:t}),t=i.parseArgs(t,{target:!1,endHeight:0,complete:function(){}}),i.doAction("remove",t.target),t.target.is("tr")?h(t):p(t)};var p=function(t){var e=t.target,n=e.height(),i=e.width(),o=e.css("margin"),r=e.outerHeight(!0),a=e.attr("style")+"";e.wrap('<div class="acf-temp-remove" style="height:'+r+'px"></div>');var c=e.parent();e.css({height:n,width:i,margin:o,position:"absolute"}),setTimeout(function(){c.css({opacity:0,height:t.endHeight})},50),setTimeout(function(){e.attr("style",a),c.remove(),t.complete()},301)},h=function(e){var n=e.target,i=n.height(),o=n.children().length,r=t('<td class="acf-temp-remove" style="padding:0; height:'+i+'px" colspan="'+o+'"></td>');n.addClass("acf-remove-element"),setTimeout(function(){n.html(r)},251),setTimeout(function(){n.removeClass("acf-remove-element"),r.css({height:e.endHeight})},300),setTimeout(function(){n.remove(),e.complete()},451)};i.duplicate=function(e){e instanceof jQuery&&(e={target:e}),e=i.parseArgs(e,{target:!1,search:"",replace:"",rename:!0,before:function(t){},after:function(t,e){},append:function(t,e){t.after(e)}}),e.target=e.target||e.$el;var n=e.target;e.search=e.search||n.attr("data-id"),e.replace=e.replace||i.uniqid(),e.before(n),i.doAction("before_duplicate",n);var o=n.clone();return e.rename&&i.rename({target:o,search:e.search,replace:e.replace,replacer:"function"==typeof e.rename?e.rename:null}),o.removeClass("acf-clone"),o.find(".ui-sortable").removeClass("ui-sortable"),o.find("[data-select2-id]").removeAttr("data-select2-id"),o.find(".select2").remove(),o.find('.acf-is-subfields select[data-ui="1"]').each(function(){t(this).prop("id",t(this).prop("id").replace("acf_fields",i.uniqid("duplicated_")+"_acf_fields"))}),o.find(".acf-field-settings > .acf-tab-wrap").remove(),e.after(n,o),i.doAction("after_duplicate",n,o),e.append(n,o),i.doAction("duplicate",n,o),i.doAction("append",o),o},i.rename=function(t){t instanceof jQuery&&(t={target:t});var e=(t=i.parseArgs(t,{target:!1,destructive:!1,search:"",replace:"",replacer:null})).target;t.search||(t.search=e.attr("data-id")),t.replace||(t.replace=i.uniqid("acf")),t.replacer||(t.replacer=function(t,e,n,i){return e.replace(n,i)});var n=function(e){return function(n,i){return t.replacer(e,i,t.search,t.replace)}};if(t.destructive){var o=i.strReplace(t.search,t.replace,e.outerHTML());e.replaceWith(o)}else e.attr("data-id",t.replace),e.find('[id*="'+t.search+'"]').attr("id",n("id")),e.find('[for*="'+t.search+'"]').attr("for",n("for")),e.find('[name*="'+t.search+'"]').attr("name",n("name"));return e},i.prepareForAjax=function(t,e=!1){return(e||void 0===t.nonce)&&(t.nonce=i.get("nonce")),t.post_id=i.get("post_id"),i.has("language")&&(t.lang=i.get("language")),t=i.applyFilters("prepare_for_ajax",t)},i.startButtonLoading=function(t){t.prop("disabled",!0),t.after(' <i class="acf-loading"></i>')},i.stopButtonLoading=function(t){t.prop("disabled",!1),t.next(".acf-loading").remove()},i.showLoading=function(t){t.append('<div class="acf-loading-overlay"><i class="acf-loading"></i></div>')},i.hideLoading=function(t){t.children(".acf-loading-overlay").remove()},i.updateUserSetting=function(e,n){var o={action:"acf/ajax/user_setting",name:e,value:n};t.ajax({url:i.get("ajaxurl"),data:i.prepareForAjax(o),type:"post",dataType:"html"})},i.val=function(t,e,n){var i=t.val();return e!==i&&(t.val(e),t.is("select")&&null===t.val()?(t.val(i),!1):(!0!==n&&t.trigger("change"),!0))},i.show=function(t,e){return e&&i.unlock(t,"hidden",e),!i.isLocked(t,"hidden")&&(!!t.hasClass("acf-hidden")&&(t.removeClass("acf-hidden"),!0))},i.hide=function(t,e){return e&&i.lock(t,"hidden",e),!t.hasClass("acf-hidden")&&(t.addClass("acf-hidden"),!0)},i.isHidden=function(t){return t.hasClass("acf-hidden")},i.isVisible=function(t){return!i.isHidden(t)};var m=function(t,e){return!t.hasClass("acf-disabled")&&(e&&i.unlock(t,"disabled",e),!i.isLocked(t,"disabled")&&(!!t.prop("disabled")&&(t.prop("disabled",!1),!0)))};i.enable=function(e,n){if(e.attr("name"))return m(e,n);var i=!1;return e.find("[name]").each(function(){m(t(this),n)&&(i=!0)}),i};var g=function(t,e){return e&&i.lock(t,"disabled",e),!t.prop("disabled")&&(t.prop("disabled",!0),!0)};i.disable=function(e,n){if(e.attr("name"))return g(e,n);var i=!1;return e.find("[name]").each(function(){g(t(this),n)&&(i=!0)}),i},i.isset=function(t){for(var e=1;e<arguments.length;e++){if(!t||!t.hasOwnProperty(arguments[e]))return!1;t=t[arguments[e]]}return!0},i.isget=function(t){for(var e=1;e<arguments.length;e++){if(!t||!t.hasOwnProperty(arguments[e]))return null;t=t[arguments[e]]}return t},i.getFileInputData=function(t,e){var n=t.val();if(!n)return!1;var o={url:n},r=!!t[0].files.length&&i.isget(t[0].files,0);if(r)if(o.size=r.size,o.type=r.type,r.type.indexOf("image")>-1){var a=window.URL||window.webkitURL,c=new Image;c.onload=function(){o.width=this.width,o.height=this.height,e(o)},c.src=a.createObjectURL(r)}else e(o);else e(o)},i.isAjaxSuccess=function(t){return t&&t.success},i.getAjaxMessage=function(t){return i.isget(t,"data","message")},i.getAjaxError=function(t){return i.isget(t,"data","error")},i.getXhrError=function(t){if(t.responseJSON){if(t.responseJSON.message)return t.responseJSON.message;if(t.responseJSON.data&&t.responseJSON.data.error)return t.responseJSON.data.error}else if(t.statusText)return t.statusText;return""},i.renderSelect=function(t,e){var n=t.val(),o=[],r=function(t){var e="";return t.map(function(t){var n=t.text||t.label||"",a=t.id||t.value||"";o.push(a),t.children?e+='<optgroup label="'+i.escAttr(n)+'">'+r(t.children)+"</optgroup>":e+='<option value="'+i.escAttr(a)+'"'+(t.disabled?' disabled="disabled"':"")+">"+i.strEscape(n)+"</option>"}),e};return t.html(r(e)),o.indexOf(n)>-1&&t.val(n),t.val()};var y,v,b,T,A,w=function(t,e){return t.data("acf-lock-"+e)||[]},x=function(t,e,n){t.data("acf-lock-"+e,n)};i.lock=function(t,e,n){var i=w(t,e);i.indexOf(n)<0&&(i.push(n),x(t,e,i))},i.unlock=function(t,e,n){var i=w(t,e),o=i.indexOf(n);return o>-1&&(i.splice(o,1),x(t,e,i)),0===i.length},i.isLocked=function(t,e){return w(t,e).length>0},i.isGutenberg=function(){return!!(window.wp&&wp.data&&wp.data.select&&wp.data.select("core/editor"))},i.isGutenbergPostEditor=function(){return!!(window.wp&&wp.data&&wp.data.select&&wp.data.select("core/edit-post"))},i.objectToArray=function(t){return Object.keys(t).map(function(e){return t[e]})},i.debounce=function(t,e){var n;return function(){var i=this,o=arguments;clearTimeout(n),n=setTimeout(function(){t.apply(i,o)},e)}},i.throttle=function(t,e){var n=!1;return function(){n||(n=!0,setTimeout(function(){n=!1},e),t.apply(this,arguments))}},i.isInView=function(t){t instanceof jQuery&&(t=t[0]);var e=t.getBoundingClientRect();return e.top!==e.bottom&&e.top>=0&&e.left>=0&&e.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&e.right<=(window.innerWidth||document.documentElement.clientWidth)},i.onceInView=(y=[],v=0,b=function(){y.forEach(function(t){i.isInView(t.el)&&(t.callback.apply(this),A(t.id))})},T=i.debounce(b,300),A=function(e){(y=y.filter(function(t){return t.id!==e})).length||t(window).off("scroll resize",T).off("acfrefresh orientationchange",b)},function(e,n){e instanceof jQuery&&(e=e[0]),i.isInView(e)?n.apply(this):function(e,n){y.length||t(window).on("scroll resize",T).on("acfrefresh orientationchange",b),y.push({id:v++,el:e,callback:n})}(e,n)}),i.once=function(t){var n=0;return function(){return n++>0?t=e:t.apply(this,arguments)}},i.focusAttention=function(e){var n=1e3;e.addClass("acf-attention -focused");i.isInView(e)||(t("body, html").animate({scrollTop:e.offset().top-t(window).height()/2},500),n+=500);setTimeout(function(){e.removeClass("-focused"),setTimeout(function(){e.removeClass("acf-attention")},250)},n)},i.onFocus=function(e,n){var i=!1,o=!1,r=function(){i=!0,setTimeout(function(){i=!1},1),c(!0)},a=function(){i||c(!1)},c=function(i){o!==i&&(i?(t(document).on("click",a),e.on("blur","input, select, textarea",a)):(t(document).off("click",a),e.off("blur","input, select, textarea",a)),o=i,n(i))};e.on("click",r),e.on("focus","input, select, textarea",r)},i.disableForm=function(t){t.submitter&&t.submitter.classList.add("disabled")},t.fn.exists=function(){return t(this).length>0},t.fn.outerHTML=function(){return t(this).get(0).outerHTML},Array.prototype.indexOf||(Array.prototype.indexOf=function(e){return t.inArray(e,this)}),i.isNumeric=function(t){return!isNaN(parseFloat(t))&&isFinite(t)},i.refresh=i.debounce(function(){t(window).trigger("acfrefresh"),i.doAction("refresh")},0),i.debug=function(){i.get("debug")&&console.log.apply(null,arguments)},t(document).ready(function(){i.doAction("ready")}),t(window).on("load",function(){setTimeout(function(){i.doAction("load")})}),t(window).on("beforeunload",function(){i.doAction("unload")}),t(window).on("resize",function(){i.doAction("resize")}),t(document).on("sortstart",function(t,e){i.doAction("sortstart",e.item,e.placeholder)}),t(document).on("sortstop",function(t,e){i.doAction("sortstop",e.item,e.placeholder)})}(jQuery)}},e={};function n(i){var o=e[i];if(void 0!==o)return o.exports;var r=e[i]={exports:{}};return t[i](r,r.exports,n),r.exports}n.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return n.d(e,{a:e}),e},n.d=(t,e)=>{for(var i in e)n.o(e,i)&&!n.o(t,i)&&Object.defineProperty(t,i,{enumerable:!0,get:e[i]})},n.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";n(9453),n(2712),n(3597),n(38),n(2593),n(4758),n(5770),n(3695)})()})();