diff --git a/app/Http/Controllers/Api/WorkflowController.php b/app/Http/Controllers/Api/WorkflowController.php index e6565174e..3ef828512 100755 --- a/app/Http/Controllers/Api/WorkflowController.php +++ b/app/Http/Controllers/Api/WorkflowController.php @@ -276,6 +276,8 @@ class WorkflowController extends AbstractController * @apiGroup workflow * @apiName process__findTask * + * @apiQuery {String} proc_def_name 流程名称 + * @apiQuery {String} sort 排序 * @apiQuery {Number} page 页码 * @apiQuery {Number} page_size 每页条数 * @@ -287,6 +289,8 @@ class WorkflowController extends AbstractController { $user = User::auth(); $data['userid'] = (string)$user->userid; + $data['procName'] = Request::input('proc_def_name'); + $data['sort'] = Request::input('sort'); $data['pageIndex'] = intval(Request::input('page')); $data['pageSize'] = intval(Request::input('page_size')); $ret = Ihttp::ihttp_post($this->flow_url.'/api/v1/workflow/process/findTask', json_encode(Base::arrayKeyToCamel($data))); @@ -307,7 +311,49 @@ class WorkflowController extends AbstractController } /** - * @api {post} api/workflow/process/startByMyself 08. 查询我启动的流程(审批中) + * @api {post} api/workflow/process/startByMyselfAll 08. 查询我启动的流程(全部) + * + * @apiDescription 需要token身份 + * @apiVersion 1.0.0 + * @apiGroup workflow + * @apiName process__startByMyselfAll + * + * @apiQuery {String} proc_def_name 流程分类 + * @apiQuery {String} state 流程状态 + * @apiQuery {Number} page 页码 + * @apiQuery {Number} page_size 每页条数 + * + * @apiSuccess {Number} ret 返回状态码(1正确、0错误) + * @apiSuccess {String} msg 返回信息(错误描述) + * @apiSuccess {Object} data 返回数据 + */ + public function process__startByMyselfAll() + { + $user = User::auth(); + $data['userid'] = (string)$user->userid; + $data['procName'] = Request::input('proc_def_name'); //分类 + $data['state'] = intval(Request::input('state')); //状态 + $data['pageIndex'] = intval(Request::input('page')); + $data['pageSize'] = intval(Request::input('page_size')); + $ret = Ihttp::ihttp_post($this->flow_url.'/api/v1/workflow/process/startByMyselfAll', json_encode($data)); + $process = json_decode($ret['ret'] == 1 ? $ret['data'] : '{}', true); + if (!$process || $process['status'] != 200) { + return Base::retError($process['message'] ?? '查询失败'); + } + // + $res = Base::arrayKeyToUnderline($process['data']); + foreach ($res['rows'] as &$val) { + $info = User::whereUserid($val['start_user_id'])->first(); + if (!$info) { + continue; + } + $val['userimg'] = User::getAvatar($info->userid, $info->userimg, $info->email, $info->nickname); + } + return Base::retSuccess('success', $res); + } + + /** + * @api {post} api/workflow/process/startByMyself 09. 查询我启动的流程(审批中) * * @apiDescription 需要token身份 * @apiVersion 1.0.0 @@ -345,7 +391,7 @@ class WorkflowController extends AbstractController } /** - * @api {post} api/workflow/process/findProcNotify 09. 查询抄送我的流程(审批中) + * @api {post} api/workflow/process/findProcNotify 10. 查询抄送我的流程(审批中) * * @apiDescription 需要token身份 * @apiVersion 1.0.0 @@ -353,6 +399,8 @@ class WorkflowController extends AbstractController * @apiName process__findProcNotify * * @apiQuery {Number} userid 用户ID + * @apiQuery {String} proc_def_name 流程分类 + * @apiQuery {String} sort 排序 * @apiQuery {Number} page 页码 * @apiQuery {Number} page_size 每页条数 * @@ -364,6 +412,8 @@ class WorkflowController extends AbstractController { $user = User::auth(); $data['userid'] = (string)$user->userid; + $data['procName'] = Request::input('proc_def_name'); + $data['sort'] = Request::input('sort'); $data['pageIndex'] = intval(Request::input('page')); $data['pageSize'] = intval(Request::input('page_size')); @@ -385,7 +435,7 @@ class WorkflowController extends AbstractController } /** - * @api {get} api/workflow/identitylink/findParticipant 10. 查询流程实例的参与者(审批中) + * @api {get} api/workflow/identitylink/findParticipant 11. 查询流程实例的参与者(审批中) * * @apiDescription 需要token身份 * @apiVersion 1.0.0 @@ -420,13 +470,15 @@ class WorkflowController extends AbstractController } /** - * @api {post} api/workflow/procHistory/findTask 11. 查询需要我审批的流程(已结束) + * @api {post} api/workflow/procHistory/findTask 12. 查询需要我审批的流程(已结束) * * @apiDescription 需要token身份 * @apiVersion 1.0.0 * @apiGroup workflow * @apiName procHistory__findTask * + * @apiQuery {String} proc_def_name 流程分类 + * @apiQuery {String} sort 排序 * @apiQuery {Number} page 页码 * @apiQuery {Number} page_size 每页条数 * @@ -438,6 +490,8 @@ class WorkflowController extends AbstractController { $user = User::auth(); $data['userid'] = (string)$user->userid; + $data['procName'] = Request::input('proc_def_name'); + $data['sort'] = Request::input('sort'); $data['pageIndex'] = intval(Request::input('page')); $data['pageSize'] = intval(Request::input('page_size')); $ret = Ihttp::ihttp_post($this->flow_url.'/api/v1/workflow/procHistory/findTask', json_encode(Base::arrayKeyToCamel($data))); @@ -458,7 +512,7 @@ class WorkflowController extends AbstractController } /** - * @api {post} api/workflow/procHistory/startByMyself 12. 查询我启动的流程(已结束) + * @api {post} api/workflow/procHistory/startByMyself 13. 查询我启动的流程(已结束) * * @apiDescription 需要token身份 * @apiVersion 1.0.0 @@ -496,13 +550,15 @@ class WorkflowController extends AbstractController } /** - * @api {post} api/workflow/procHistory/findProcNotify 13. 查询抄送我的流程(已结束) + * @api {post} api/workflow/procHistory/findProcNotify 14. 查询抄送我的流程(已结束) * * @apiDescription 需要token身份 * @apiVersion 1.0.0 * @apiGroup workflow * @apiName procHistory__findProcNotify * + * @apiQuery {String} proc_def_name 流程分类 + * @apiQuery {String} sort 排序 * @apiQuery {Number} page 页码 * @apiQuery {Number} page_size 每页条数 * @@ -514,6 +570,8 @@ class WorkflowController extends AbstractController { $user = User::auth(); $data['userid'] = (string)$user->userid; + $data['procName'] = Request::input('proc_def_name'); + $data['sort'] = Request::input('sort'); $data['pageIndex'] = intval(Request::input('page')); $data['pageSize'] = intval(Request::input('page_size')); @@ -535,7 +593,7 @@ class WorkflowController extends AbstractController } /** - * @api {get} api/workflow/identitylinkHistory/findParticipant 14. 查询流程实例的参与者(已结束) + * @api {get} api/workflow/identitylinkHistory/findParticipant 15. 查询流程实例的参与者(已结束) * * @apiDescription 需要token身份 * @apiVersion 1.0.0 @@ -570,7 +628,7 @@ class WorkflowController extends AbstractController } /** - * @api {get} api/workflow/process/detail 15. 根据流程ID查询流程详情 + * @api {get} api/workflow/process/detail 16. 根据流程ID查询流程详情 * * @apiDescription 需要token身份 * @apiVersion 1.0.0 diff --git a/public/docs/assets/main.bundle.js b/public/docs/assets/main.bundle.js index 65bf35b96..be58a6855 100644 --- a/public/docs/assets/main.bundle.js +++ b/public/docs/assets/main.bundle.js @@ -1,8 +1,8 @@ -(()=>{var il={2988:()=>{+function(w){"use strict";var y=".dropdown-backdrop",o='[data-toggle="dropdown"]',h=function(p){w(p).on("click.bs.dropdown",this.toggle)};h.VERSION="3.4.1";function n(p){var s=p.attr("data-target");s||(s=p.attr("href"),s=s&&/#[A-Za-z]/.test(s)&&s.replace(/.*(?=#[^\s]*$)/,""));var u=s!=="#"?w(document).find(s):null;return u&&u.length?u:p.parent()}function r(p){p&&p.which===3||(w(y).remove(),w(o).each(function(){var s=w(this),u=n(s),g={relatedTarget:this};!u.hasClass("open")||p&&p.type=="click"&&/input|textarea/i.test(p.target.tagName)&&w.contains(u[0],p.target)||(u.trigger(p=w.Event("hide.bs.dropdown",g)),!p.isDefaultPrevented()&&(s.attr("aria-expanded","false"),u.removeClass("open").trigger(w.Event("hidden.bs.dropdown",g))))}))}h.prototype.toggle=function(p){var s=w(this);if(!s.is(".disabled, :disabled")){var u=n(s),g=u.hasClass("open");if(r(),!g){"ontouchstart"in document.documentElement&&!u.closest(".navbar-nav").length&&w(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(w(this)).on("click",r);var i={relatedTarget:this};if(u.trigger(p=w.Event("show.bs.dropdown",i)),p.isDefaultPrevented())return;s.trigger("focus").attr("aria-expanded","true"),u.toggleClass("open").trigger(w.Event("shown.bs.dropdown",i))}return!1}},h.prototype.keydown=function(p){if(!(!/(38|40|27|32)/.test(p.which)||/input|textarea/i.test(p.target.tagName))){var s=w(this);if(p.preventDefault(),p.stopPropagation(),!s.is(".disabled, :disabled")){var u=n(s),g=u.hasClass("open");if(!g&&p.which!=27||g&&p.which==27)return p.which==27&&u.find(o).trigger("focus"),s.trigger("click");var i=" li:not(.disabled):visible a",m=u.find(".dropdown-menu"+i);if(!!m.length){var f=m.index(p.target);p.which==38&&f>0&&f--,p.which==40&&f{+function(w){"use strict";var y=function(n,r){this.init("popover",n,r)};if(!w.fn.tooltip)throw new Error("Popover requires tooltip.js");y.VERSION="3.4.1",y.DEFAULTS=w.extend({},w.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),y.prototype=w.extend({},w.fn.tooltip.Constructor.prototype),y.prototype.constructor=y,y.prototype.getDefaults=function(){return y.DEFAULTS},y.prototype.setContent=function(){var n=this.tip(),r=this.getTitle(),l=this.getContent();if(this.options.html){var c=typeof l;this.options.sanitize&&(r=this.sanitizeHtml(r),c==="string"&&(l=this.sanitizeHtml(l))),n.find(".popover-title").html(r),n.find(".popover-content").children().detach().end()[c==="string"?"html":"append"](l)}else n.find(".popover-title").text(r),n.find(".popover-content").children().detach().end().text(l);n.removeClass("fade top bottom left right in"),n.find(".popover-title").html()||n.find(".popover-title").hide()},y.prototype.hasContent=function(){return this.getTitle()||this.getContent()},y.prototype.getContent=function(){var n=this.$element,r=this.options;return n.attr("data-content")||(typeof r.content=="function"?r.content.call(n[0]):r.content)},y.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};function o(n){return this.each(function(){var r=w(this),l=r.data("bs.popover"),c=typeof n=="object"&&n;!l&&/destroy|hide/.test(n)||(l||r.data("bs.popover",l=new y(this,c)),typeof n=="string"&&l[n]())})}var h=w.fn.popover;w.fn.popover=o,w.fn.popover.Constructor=y,w.fn.popover.noConflict=function(){return w.fn.popover=h,this}}(jQuery)},954:()=>{+function(w){"use strict";function y(n,r){this.$body=w(document.body),this.$scrollElement=w(n).is(document.body)?w(window):w(n),this.options=w.extend({},y.DEFAULTS,r),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",w.proxy(this.process,this)),this.refresh(),this.process()}y.VERSION="3.4.1",y.DEFAULTS={offset:10},y.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},y.prototype.refresh=function(){var n=this,r="offset",l=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),w.isWindow(this.$scrollElement[0])||(r="position",l=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var c=w(this),p=c.data("target")||c.attr("href"),s=/^#./.test(p)&&w(p);return s&&s.length&&s.is(":visible")&&[[s[r]().top+l,p]]||null}).sort(function(c,p){return c[0]-p[0]}).each(function(){n.offsets.push(this[0]),n.targets.push(this[1])})},y.prototype.process=function(){var n=this.$scrollElement.scrollTop()+this.options.offset,r=this.getScrollHeight(),l=this.options.offset+r-this.$scrollElement.height(),c=this.offsets,p=this.targets,s=this.activeTarget,u;if(this.scrollHeight!=r&&this.refresh(),n>=l)return s!=(u=p[p.length-1])&&this.activate(u);if(s&&n=c[u]&&(c[u+1]===void 0||n{+function(w){"use strict";var y=function(r){this.element=w(r)};y.VERSION="3.4.1",y.TRANSITION_DURATION=150,y.prototype.show=function(){var r=this.element,l=r.closest("ul:not(.dropdown-menu)"),c=r.data("target");if(c||(c=r.attr("href"),c=c&&c.replace(/.*(?=#[^\s]*$)/,"")),!r.parent("li").hasClass("active")){var p=l.find(".active:last a"),s=w.Event("hide.bs.tab",{relatedTarget:r[0]}),u=w.Event("show.bs.tab",{relatedTarget:p[0]});if(p.trigger(s),r.trigger(u),!(u.isDefaultPrevented()||s.isDefaultPrevented())){var g=w(document).find(c);this.activate(r.closest("li"),l),this.activate(g,g.parent(),function(){p.trigger({type:"hidden.bs.tab",relatedTarget:r[0]}),r.trigger({type:"shown.bs.tab",relatedTarget:p[0]})})}}},y.prototype.activate=function(r,l,c){var p=l.find("> .active"),s=c&&w.support.transition&&(p.length&&p.hasClass("fade")||!!l.find("> .fade").length);function u(){p.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),r.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),s?(r[0].offsetWidth,r.addClass("in")):r.removeClass("fade"),r.parent(".dropdown-menu").length&&r.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),c&&c()}p.length&&s?p.one("bsTransitionEnd",u).emulateTransitionEnd(y.TRANSITION_DURATION):u(),p.removeClass("in")};function o(r){return this.each(function(){var l=w(this),c=l.data("bs.tab");c||l.data("bs.tab",c=new y(this)),typeof r=="string"&&c[r]()})}var h=w.fn.tab;w.fn.tab=o,w.fn.tab.Constructor=y,w.fn.tab.noConflict=function(){return w.fn.tab=h,this};var n=function(r){r.preventDefault(),o.call(w(this),"show")};w(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',n).on("click.bs.tab.data-api",'[data-toggle="pill"]',n)}(jQuery)},8480:()=>{+function(w){"use strict";var y=["sanitize","whiteList","sanitizeFn"],o=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],h=/^aria-[\w-]*$/i,n={"*":["class","dir","id","lang","role",h],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},r=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,l=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function c(i,m){var f=i.nodeName.toLowerCase();if(w.inArray(f,m)!==-1)return w.inArray(f,o)!==-1?Boolean(i.nodeValue.match(r)||i.nodeValue.match(l)):!0;for(var d=w(m).filter(function(E,T){return T instanceof RegExp}),S=0,v=d.length;S
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0},sanitize:!0,sanitizeFn:null,whiteList:n},s.prototype.init=function(i,m,f){if(this.enabled=!0,this.type=i,this.$element=w(m),this.options=this.getOptions(f),this.$viewport=this.options.viewport&&w(document).find(w.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var d=this.options.trigger.split(" "),S=d.length;S--;){var v=d[S];if(v=="click")this.$element.on("click."+this.type,this.options.selector,w.proxy(this.toggle,this));else if(v!="manual"){var E=v=="hover"?"mouseenter":"focusin",T=v=="hover"?"mouseleave":"focusout";this.$element.on(E+"."+this.type,this.options.selector,w.proxy(this.enter,this)),this.$element.on(T+"."+this.type,this.options.selector,w.proxy(this.leave,this))}}this.options.selector?this._options=w.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},s.prototype.getDefaults=function(){return s.DEFAULTS},s.prototype.getOptions=function(i){var m=this.$element.data();for(var f in m)m.hasOwnProperty(f)&&w.inArray(f,y)!==-1&&delete m[f];return i=w.extend({},this.getDefaults(),m,i),i.delay&&typeof i.delay=="number"&&(i.delay={show:i.delay,hide:i.delay}),i.sanitize&&(i.template=p(i.template,i.whiteList,i.sanitizeFn)),i},s.prototype.getDelegateOptions=function(){var i={},m=this.getDefaults();return this._options&&w.each(this._options,function(f,d){m[f]!=d&&(i[f]=d)}),i},s.prototype.enter=function(i){var m=i instanceof this.constructor?i:w(i.currentTarget).data("bs."+this.type);if(m||(m=new this.constructor(i.currentTarget,this.getDelegateOptions()),w(i.currentTarget).data("bs."+this.type,m)),i instanceof w.Event&&(m.inState[i.type=="focusin"?"focus":"hover"]=!0),m.tip().hasClass("in")||m.hoverState=="in"){m.hoverState="in";return}if(clearTimeout(m.timeout),m.hoverState="in",!m.options.delay||!m.options.delay.show)return m.show();m.timeout=setTimeout(function(){m.hoverState=="in"&&m.show()},m.options.delay.show)},s.prototype.isInStateTrue=function(){for(var i in this.inState)if(this.inState[i])return!0;return!1},s.prototype.leave=function(i){var m=i instanceof this.constructor?i:w(i.currentTarget).data("bs."+this.type);if(m||(m=new this.constructor(i.currentTarget,this.getDelegateOptions()),w(i.currentTarget).data("bs."+this.type,m)),i instanceof w.Event&&(m.inState[i.type=="focusout"?"focus":"hover"]=!1),!m.isInStateTrue()){if(clearTimeout(m.timeout),m.hoverState="out",!m.options.delay||!m.options.delay.hide)return m.hide();m.timeout=setTimeout(function(){m.hoverState=="out"&&m.hide()},m.options.delay.hide)}},s.prototype.show=function(){var i=w.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(i);var m=w.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(i.isDefaultPrevented()||!m)return;var f=this,d=this.tip(),S=this.getUID(this.type);this.setContent(),d.attr("id",S),this.$element.attr("aria-describedby",S),this.options.animation&&d.addClass("fade");var v=typeof this.options.placement=="function"?this.options.placement.call(this,d[0],this.$element[0]):this.options.placement,E=/\s?auto?\s?/i,T=E.test(v);T&&(v=v.replace(E,"")||"top"),d.detach().css({top:0,left:0,display:"block"}).addClass(v).data("bs."+this.type,this),this.options.container?d.appendTo(w(document).find(this.options.container)):d.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var P=this.getPosition(),D=d[0].offsetWidth,_=d[0].offsetHeight;if(T){var b=v,C=this.getPosition(this.$viewport);v=v=="bottom"&&P.bottom+_>C.bottom?"top":v=="top"&&P.top-_C.width?"left":v=="left"&&P.left-DE.top+E.height&&(S.top=E.top+E.height-P)}else{var D=m.left-v,_=m.left+v+f;DE.right&&(S.left=E.left+E.width-_)}return S},s.prototype.getTitle=function(){var i,m=this.$element,f=this.options;return i=m.attr("data-original-title")||(typeof f.title=="function"?f.title.call(m[0]):f.title),i},s.prototype.getUID=function(i){do i+=~~(Math.random()*1e6);while(document.getElementById(i));return i},s.prototype.tip=function(){if(!this.$tip&&(this.$tip=w(this.options.template),this.$tip.length!=1))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},s.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},s.prototype.enable=function(){this.enabled=!0},s.prototype.disable=function(){this.enabled=!1},s.prototype.toggleEnabled=function(){this.enabled=!this.enabled},s.prototype.toggle=function(i){var m=this;i&&(m=w(i.currentTarget).data("bs."+this.type),m||(m=new this.constructor(i.currentTarget,this.getDelegateOptions()),w(i.currentTarget).data("bs."+this.type,m))),i?(m.inState.click=!m.inState.click,m.isInStateTrue()?m.enter(m):m.leave(m)):m.tip().hasClass("in")?m.leave(m):m.enter(m)},s.prototype.destroy=function(){var i=this;clearTimeout(this.timeout),this.hide(function(){i.$element.off("."+i.type).removeData("bs."+i.type),i.$tip&&i.$tip.detach(),i.$tip=null,i.$arrow=null,i.$viewport=null,i.$element=null})},s.prototype.sanitizeHtml=function(i){return p(i,this.options.whiteList,this.options.sanitizeFn)};function u(i){return this.each(function(){var m=w(this),f=m.data("bs.tooltip"),d=typeof i=="object"&&i;!f&&/destroy|hide/.test(i)||(f||m.data("bs.tooltip",f=new s(this,d)),typeof i=="string"&&f[i]())})}var g=w.fn.tooltip;w.fn.tooltip=u,w.fn.tooltip.Constructor=s,w.fn.tooltip.noConflict=function(){return w.fn.tooltip=g,this}}(jQuery)},7030:w=>{var y=function(){this.Diff_Timeout=1,this.Diff_EditCost=4,this.Match_Threshold=.5,this.Match_Distance=1e3,this.Patch_DeleteThreshold=.5,this.Patch_Margin=4,this.Match_MaxBits=32},o=-1,h=1,n=0;y.Diff=function(r,l){return[r,l]},y.prototype.diff_main=function(r,l,c,p){typeof p=="undefined"&&(this.Diff_Timeout<=0?p=Number.MAX_VALUE:p=new Date().getTime()+this.Diff_Timeout*1e3);var s=p;if(r==null||l==null)throw new Error("Null input. (diff_main)");if(r==l)return r?[new y.Diff(n,r)]:[];typeof c=="undefined"&&(c=!0);var u=c,g=this.diff_commonPrefix(r,l),i=r.substring(0,g);r=r.substring(g),l=l.substring(g),g=this.diff_commonSuffix(r,l);var m=r.substring(r.length-g);r=r.substring(0,r.length-g),l=l.substring(0,l.length-g);var f=this.diff_compute_(r,l,u,s);return i&&f.unshift(new y.Diff(n,i)),m&&f.push(new y.Diff(n,m)),this.diff_cleanupMerge(f),f},y.prototype.diff_compute_=function(r,l,c,p){var s;if(!r)return[new y.Diff(h,l)];if(!l)return[new y.Diff(o,r)];var u=r.length>l.length?r:l,g=r.length>l.length?l:r,i=u.indexOf(g);if(i!=-1)return s=[new y.Diff(h,u.substring(0,i)),new y.Diff(n,g),new y.Diff(h,u.substring(i+g.length))],r.length>l.length&&(s[0][0]=s[2][0]=o),s;if(g.length==1)return[new y.Diff(o,r),new y.Diff(h,l)];var m=this.diff_halfMatch_(r,l);if(m){var f=m[0],d=m[1],S=m[2],v=m[3],E=m[4],T=this.diff_main(f,S,c,p),P=this.diff_main(d,v,c,p);return T.concat([new y.Diff(n,E)],P)}return c&&r.length>100&&l.length>100?this.diff_lineMode_(r,l,p):this.diff_bisect_(r,l,p)},y.prototype.diff_lineMode_=function(r,l,c){var p=this.diff_linesToChars_(r,l);r=p.chars1,l=p.chars2;var s=p.lineArray,u=this.diff_main(r,l,!1,c);this.diff_charsToLines_(u,s),this.diff_cleanupSemantic(u),u.push(new y.Diff(n,""));for(var g=0,i=0,m=0,f="",d="";g=1&&m>=1){u.splice(g-i-m,i+m),g=g-i-m;for(var S=this.diff_main(f,d,!1,c),v=S.length-1;v>=0;v--)u.splice(g,0,S[v]);g=g+S.length}m=0,i=0,f="",d="";break}g++}return u.pop(),u},y.prototype.diff_bisect_=function(r,l,c){for(var p=r.length,s=l.length,u=Math.ceil((p+s)/2),g=u,i=2*u,m=new Array(i),f=new Array(i),d=0;dc);_++){for(var b=-_+E;b<=_-T;b+=2){var C=g+b,I;b==-_||b!=_&&m[C-1]p)T+=2;else if(R>s)E+=2;else if(v){var N=g+S-b;if(N>=0&&N=O)return this.diff_bisectSplit_(r,l,I,R,c)}}}for(var $=-_+P;$<=_-D;$+=2){var N=g+$,O;$==-_||$!=_&&f[N-1]p)D+=2;else if(F>s)P+=2;else if(!v){var C=g+S-$;if(C>=0&&C=O)return this.diff_bisectSplit_(r,l,I,R,c)}}}}return[new y.Diff(o,r),new y.Diff(h,l)]},y.prototype.diff_bisectSplit_=function(r,l,c,p,s){var u=r.substring(0,c),g=l.substring(0,p),i=r.substring(c),m=l.substring(p),f=this.diff_main(u,g,!1,s),d=this.diff_main(i,m,!1,s);return f.concat(d)},y.prototype.diff_linesToChars_=function(r,l){var c=[],p={};c[0]="";function s(m){for(var f="",d=0,S=-1,v=c.length;Sp?r=r.substring(c-p):cl.length?r:l,p=r.length>l.length?l:r;if(c.length<4||p.length*2=T.length?[I,R,N,O,C]:null}var g=u(c,p,Math.ceil(c.length/4)),i=u(c,p,Math.ceil(c.length/2)),m;if(!g&&!i)return null;i?g?m=g[4].length>i[4].length?g:i:m=i:m=g;var f,d,S,v;r.length>l.length?(f=m[0],d=m[1],S=m[2],v=m[3]):(S=m[0],v=m[1],f=m[2],d=m[3]);var E=m[4];return[f,d,S,v,E]},y.prototype.diff_cleanupSemantic=function(r){for(var l=!1,c=[],p=0,s=null,u=0,g=0,i=0,m=0,f=0;u0?c[p-1]:-1,g=0,i=0,m=0,f=0,s=null,l=!0)),u++;for(l&&this.diff_cleanupMerge(r),this.diff_cleanupSemanticLossless(r),u=1;u=E?(v>=d.length/2||v>=S.length/2)&&(r.splice(u,0,new y.Diff(n,S.substring(0,v))),r[u-1][1]=d.substring(0,d.length-v),r[u+1][1]=S.substring(v),u++):(E>=d.length/2||E>=S.length/2)&&(r.splice(u,0,new y.Diff(n,d.substring(0,E))),r[u-1][0]=h,r[u-1][1]=S.substring(0,S.length-E),r[u+1][0]=o,r[u+1][1]=d.substring(E),u++),u++}u++}},y.prototype.diff_cleanupSemanticLossless=function(r){function l(E,T){if(!E||!T)return 6;var P=E.charAt(E.length-1),D=T.charAt(0),_=P.match(y.nonAlphaNumericRegex_),b=D.match(y.nonAlphaNumericRegex_),C=_&&P.match(y.whitespaceRegex_),I=b&&D.match(y.whitespaceRegex_),R=C&&P.match(y.linebreakRegex_),N=I&&D.match(y.linebreakRegex_),O=R&&E.match(y.blanklineEndRegex_),$=N&&T.match(y.blanklineStartRegex_);return O||$?5:R||N?4:_&&!C&&I?3:C||I?2:_||b?1:0}for(var c=1;c=S&&(S=v,m=p,f=s,d=u)}r[c-1][1]!=m&&(m?r[c-1][1]=m:(r.splice(c-1,1),c--),r[c][1]=f,d?r[c+1][1]=d:(r.splice(c+1,1),c--))}c++}},y.nonAlphaNumericRegex_=/[^a-zA-Z0-9]/,y.whitespaceRegex_=/\s/,y.linebreakRegex_=/[\r\n]/,y.blanklineEndRegex_=/\n\r?\n$/,y.blanklineStartRegex_=/^\r?\n\r?\n/,y.prototype.diff_cleanupEfficiency=function(r){for(var l=!1,c=[],p=0,s=null,u=0,g=!1,i=!1,m=!1,f=!1;u0?c[p-1]:-1,m=f=!1),l=!0)),u++;l&&this.diff_cleanupMerge(r)},y.prototype.diff_cleanupMerge=function(r){r.push(new y.Diff(n,""));for(var l=0,c=0,p=0,s="",u="",g;l1?(c!==0&&p!==0&&(g=this.diff_commonPrefix(u,s),g!==0&&(l-c-p>0&&r[l-c-p-1][0]==n?r[l-c-p-1][1]+=u.substring(0,g):(r.splice(0,0,new y.Diff(n,u.substring(0,g))),l++),u=u.substring(g),s=s.substring(g)),g=this.diff_commonSuffix(u,s),g!==0&&(r[l][1]=u.substring(u.length-g)+r[l][1],u=u.substring(0,u.length-g),s=s.substring(0,s.length-g))),l-=c+p,r.splice(l,c+p),s.length&&(r.splice(l,0,new y.Diff(o,s)),l++),u.length&&(r.splice(l,0,new y.Diff(h,u)),l++),l++):l!==0&&r[l-1][0]==n?(r[l-1][1]+=r[l][1],r.splice(l,1)):l++,p=0,c=0,s="",u="";break}r[r.length-1][1]===""&&r.pop();var i=!1;for(l=1;ll));g++)s=c,u=p;return r.length!=g&&r[g][0]===o?u:u+(l-s)},y.prototype.diff_prettyHtml=function(r){for(var l=[],c=/&/g,p=//g,u=/\n/g,g=0;g");switch(i){case h:l[g]=''+f+"";break;case o:l[g]=''+f+"";break;case n:l[g]=""+f+"";break}}return l.join("")},y.prototype.diff_text1=function(r){for(var l=[],c=0;cthis.Match_MaxBits)throw new Error("Pattern too long for this browser.");var p=this.match_alphabet_(l),s=this;function u(I,R){var N=I/l.length,O=Math.abs(c-R);return s.Match_Distance?N+O/s.Match_Distance:O?1:N}var g=this.Match_Threshold,i=r.indexOf(l,c);i!=-1&&(g=Math.min(u(0,i),g),i=r.lastIndexOf(l,c+l.length),i!=-1&&(g=Math.min(u(0,i),g)));var m=1<=T;_--){var b=p[r.charAt(_-1)];if(E===0?D[_]=(D[_+1]<<1|1)&b:D[_]=(D[_+1]<<1|1)&b|((v[_+1]|v[_])<<1|1)|v[_+1],D[_]&m){var C=u(E,_-1);if(C<=g)if(g=C,i=_-1,i>c)T=Math.max(1,2*c-i);else break}}if(u(E+1,c)>g)break;v=D}return i},y.prototype.match_alphabet_=function(r){for(var l={},c=0;c2&&(this.diff_cleanupSemantic(s),this.diff_cleanupEfficiency(s));else if(r&&typeof r=="object"&&typeof l=="undefined"&&typeof c=="undefined")s=r,p=this.diff_text1(s);else if(typeof r=="string"&&l&&typeof l=="object"&&typeof c=="undefined")p=r,s=l;else if(typeof r=="string"&&typeof l=="string"&&c&&typeof c=="object")p=r,s=c;else throw new Error("Unknown call format to patch_make.");if(s.length===0)return[];for(var u=[],g=new y.patch_obj,i=0,m=0,f=0,d=p,S=p,v=0;v=2*this.Patch_Margin&&i&&(this.patch_addContext_(g,d),u.push(g),g=new y.patch_obj,i=0,d=S,m=f);break}E!==h&&(m+=T.length),E!==o&&(f+=T.length)}return i&&(this.patch_addContext_(g,d),u.push(g)),u},y.prototype.patch_deepCopy=function(r){for(var l=[],c=0;cthis.Match_MaxBits?(m=this.match_main(l,i.substring(0,this.Match_MaxBits),g),m!=-1&&(f=this.match_main(l,i.substring(i.length-this.Match_MaxBits),g+i.length-this.Match_MaxBits),(f==-1||m>=f)&&(m=-1))):m=this.match_main(l,i,g),m==-1)s[u]=!1,p-=r[u].length2-r[u].length1;else{s[u]=!0,p=m-g;var d;if(f==-1?d=l.substring(m,m+i.length):d=l.substring(m,f+this.Match_MaxBits),i==d)l=l.substring(0,m)+this.diff_text2(r[u].diffs)+l.substring(m+i.length);else{var S=this.diff_main(i,d,!1);if(i.length>this.Match_MaxBits&&this.diff_levenshtein(S)/i.length>this.Patch_DeleteThreshold)s[u]=!1;else{this.diff_cleanupSemanticLossless(S);for(var v=0,E,T=0;Tu[0][1].length){var g=l-u[0][1].length;u[0][1]=c.substring(u[0][1].length)+u[0][1],s.start1-=g,s.start2-=g,s.length1+=g,s.length2+=g}if(s=r[r.length-1],u=s.diffs,u.length==0||u[u.length-1][0]!=n)u.push(new y.Diff(n,c)),s.length1+=l,s.length2+=l;else if(l>u[u.length-1][1].length){var g=l-u[u.length-1][1].length;u[u.length-1][1]+=c.substring(0,g),s.length1+=g,s.length2+=g}return c},y.prototype.patch_splitMax=function(r){for(var l=this.Match_MaxBits,c=0;c2*l?(i.length1+=d.length,s+=d.length,m=!1,i.diffs.push(new y.Diff(f,d)),p.diffs.shift()):(d=d.substring(0,l-i.length1-this.Patch_Margin),i.length1+=d.length,s+=d.length,f===n?(i.length2+=d.length,u+=d.length):m=!1,i.diffs.push(new y.Diff(f,d)),d==p.diffs[0][1]?p.diffs.shift():p.diffs[0][1]=p.diffs[0][1].substring(d.length))}g=this.diff_text2(i.diffs),g=g.substring(g.length-this.Patch_Margin);var S=this.diff_text1(p.diffs).substring(0,this.Patch_Margin);S!==""&&(i.length1+=S.length,i.length2+=S.length,i.diffs.length!==0&&i.diffs[i.diffs.length-1][0]===n?i.diffs[i.diffs.length-1][1]+=S:i.diffs.push(new y.Diff(n,S))),m||r.splice(++c,0,i)}}},y.prototype.patch_toText=function(r){for(var l=[],c=0;c{var Za={2988:()=>{+function(P){"use strict";var y=".dropdown-backdrop",o='[data-toggle="dropdown"]',h=function(p){P(p).on("click.bs.dropdown",this.toggle)};h.VERSION="3.4.1";function i(p){var s=p.attr("data-target");s||(s=p.attr("href"),s=s&&/#[A-Za-z]/.test(s)&&s.replace(/.*(?=#[^\s]*$)/,""));var u=s!=="#"?P(document).find(s):null;return u&&u.length?u:p.parent()}function r(p){p&&p.which===3||(P(y).remove(),P(o).each(function(){var s=P(this),u=i(s),g={relatedTarget:this};!u.hasClass("open")||p&&p.type=="click"&&/input|textarea/i.test(p.target.tagName)&&P.contains(u[0],p.target)||(u.trigger(p=P.Event("hide.bs.dropdown",g)),!p.isDefaultPrevented()&&(s.attr("aria-expanded","false"),u.removeClass("open").trigger(P.Event("hidden.bs.dropdown",g))))}))}h.prototype.toggle=function(p){var s=P(this);if(!s.is(".disabled, :disabled")){var u=i(s),g=u.hasClass("open");if(r(),!g){"ontouchstart"in document.documentElement&&!u.closest(".navbar-nav").length&&P(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(P(this)).on("click",r);var n={relatedTarget:this};if(u.trigger(p=P.Event("show.bs.dropdown",n)),p.isDefaultPrevented())return;s.trigger("focus").attr("aria-expanded","true"),u.toggleClass("open").trigger(P.Event("shown.bs.dropdown",n))}return!1}},h.prototype.keydown=function(p){if(!(!/(38|40|27|32)/.test(p.which)||/input|textarea/i.test(p.target.tagName))){var s=P(this);if(p.preventDefault(),p.stopPropagation(),!s.is(".disabled, :disabled")){var u=i(s),g=u.hasClass("open");if(!g&&p.which!=27||g&&p.which==27)return p.which==27&&u.find(o).trigger("focus"),s.trigger("click");var n=" li:not(.disabled):visible a",m=u.find(".dropdown-menu"+n);if(!!m.length){var f=m.index(p.target);p.which==38&&f>0&&f--,p.which==40&&f{+function(P){"use strict";var y=function(i,r){this.init("popover",i,r)};if(!P.fn.tooltip)throw new Error("Popover requires tooltip.js");y.VERSION="3.4.1",y.DEFAULTS=P.extend({},P.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),y.prototype=P.extend({},P.fn.tooltip.Constructor.prototype),y.prototype.constructor=y,y.prototype.getDefaults=function(){return y.DEFAULTS},y.prototype.setContent=function(){var i=this.tip(),r=this.getTitle(),l=this.getContent();if(this.options.html){var c=typeof l;this.options.sanitize&&(r=this.sanitizeHtml(r),c==="string"&&(l=this.sanitizeHtml(l))),i.find(".popover-title").html(r),i.find(".popover-content").children().detach().end()[c==="string"?"html":"append"](l)}else i.find(".popover-title").text(r),i.find(".popover-content").children().detach().end().text(l);i.removeClass("fade top bottom left right in"),i.find(".popover-title").html()||i.find(".popover-title").hide()},y.prototype.hasContent=function(){return this.getTitle()||this.getContent()},y.prototype.getContent=function(){var i=this.$element,r=this.options;return i.attr("data-content")||(typeof r.content=="function"?r.content.call(i[0]):r.content)},y.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};function o(i){return this.each(function(){var r=P(this),l=r.data("bs.popover"),c=typeof i=="object"&&i;!l&&/destroy|hide/.test(i)||(l||r.data("bs.popover",l=new y(this,c)),typeof i=="string"&&l[i]())})}var h=P.fn.popover;P.fn.popover=o,P.fn.popover.Constructor=y,P.fn.popover.noConflict=function(){return P.fn.popover=h,this}}(jQuery)},954:()=>{+function(P){"use strict";function y(i,r){this.$body=P(document.body),this.$scrollElement=P(i).is(document.body)?P(window):P(i),this.options=P.extend({},y.DEFAULTS,r),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",P.proxy(this.process,this)),this.refresh(),this.process()}y.VERSION="3.4.1",y.DEFAULTS={offset:10},y.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},y.prototype.refresh=function(){var i=this,r="offset",l=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),P.isWindow(this.$scrollElement[0])||(r="position",l=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var c=P(this),p=c.data("target")||c.attr("href"),s=/^#./.test(p)&&P(p);return s&&s.length&&s.is(":visible")&&[[s[r]().top+l,p]]||null}).sort(function(c,p){return c[0]-p[0]}).each(function(){i.offsets.push(this[0]),i.targets.push(this[1])})},y.prototype.process=function(){var i=this.$scrollElement.scrollTop()+this.options.offset,r=this.getScrollHeight(),l=this.options.offset+r-this.$scrollElement.height(),c=this.offsets,p=this.targets,s=this.activeTarget,u;if(this.scrollHeight!=r&&this.refresh(),i>=l)return s!=(u=p[p.length-1])&&this.activate(u);if(s&&i=c[u]&&(c[u+1]===void 0||i{+function(P){"use strict";var y=function(r){this.element=P(r)};y.VERSION="3.4.1",y.TRANSITION_DURATION=150,y.prototype.show=function(){var r=this.element,l=r.closest("ul:not(.dropdown-menu)"),c=r.data("target");if(c||(c=r.attr("href"),c=c&&c.replace(/.*(?=#[^\s]*$)/,"")),!r.parent("li").hasClass("active")){var p=l.find(".active:last a"),s=P.Event("hide.bs.tab",{relatedTarget:r[0]}),u=P.Event("show.bs.tab",{relatedTarget:p[0]});if(p.trigger(s),r.trigger(u),!(u.isDefaultPrevented()||s.isDefaultPrevented())){var g=P(document).find(c);this.activate(r.closest("li"),l),this.activate(g,g.parent(),function(){p.trigger({type:"hidden.bs.tab",relatedTarget:r[0]}),r.trigger({type:"shown.bs.tab",relatedTarget:p[0]})})}}},y.prototype.activate=function(r,l,c){var p=l.find("> .active"),s=c&&P.support.transition&&(p.length&&p.hasClass("fade")||!!l.find("> .fade").length);function u(){p.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),r.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),s?(r[0].offsetWidth,r.addClass("in")):r.removeClass("fade"),r.parent(".dropdown-menu").length&&r.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),c&&c()}p.length&&s?p.one("bsTransitionEnd",u).emulateTransitionEnd(y.TRANSITION_DURATION):u(),p.removeClass("in")};function o(r){return this.each(function(){var l=P(this),c=l.data("bs.tab");c||l.data("bs.tab",c=new y(this)),typeof r=="string"&&c[r]()})}var h=P.fn.tab;P.fn.tab=o,P.fn.tab.Constructor=y,P.fn.tab.noConflict=function(){return P.fn.tab=h,this};var i=function(r){r.preventDefault(),o.call(P(this),"show")};P(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',i).on("click.bs.tab.data-api",'[data-toggle="pill"]',i)}(jQuery)},8480:()=>{+function(P){"use strict";var y=["sanitize","whiteList","sanitizeFn"],o=["background","cite","href","itemtype","longdesc","poster","src","xlink:href"],h=/^aria-[\w-]*$/i,i={"*":["class","dir","id","lang","role",h],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},r=/^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi,l=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i;function c(n,m){var f=n.nodeName.toLowerCase();if(P.inArray(f,m)!==-1)return P.inArray(f,o)!==-1?Boolean(n.nodeValue.match(r)||n.nodeValue.match(l)):!0;for(var d=P(m).filter(function(E,w){return w instanceof RegExp}),S=0,v=d.length;S
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0},sanitize:!0,sanitizeFn:null,whiteList:i},s.prototype.init=function(n,m,f){if(this.enabled=!0,this.type=n,this.$element=P(m),this.options=this.getOptions(f),this.$viewport=this.options.viewport&&P(document).find(P.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var d=this.options.trigger.split(" "),S=d.length;S--;){var v=d[S];if(v=="click")this.$element.on("click."+this.type,this.options.selector,P.proxy(this.toggle,this));else if(v!="manual"){var E=v=="hover"?"mouseenter":"focusin",w=v=="hover"?"mouseleave":"focusout";this.$element.on(E+"."+this.type,this.options.selector,P.proxy(this.enter,this)),this.$element.on(w+"."+this.type,this.options.selector,P.proxy(this.leave,this))}}this.options.selector?this._options=P.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},s.prototype.getDefaults=function(){return s.DEFAULTS},s.prototype.getOptions=function(n){var m=this.$element.data();for(var f in m)m.hasOwnProperty(f)&&P.inArray(f,y)!==-1&&delete m[f];return n=P.extend({},this.getDefaults(),m,n),n.delay&&typeof n.delay=="number"&&(n.delay={show:n.delay,hide:n.delay}),n.sanitize&&(n.template=p(n.template,n.whiteList,n.sanitizeFn)),n},s.prototype.getDelegateOptions=function(){var n={},m=this.getDefaults();return this._options&&P.each(this._options,function(f,d){m[f]!=d&&(n[f]=d)}),n},s.prototype.enter=function(n){var m=n instanceof this.constructor?n:P(n.currentTarget).data("bs."+this.type);if(m||(m=new this.constructor(n.currentTarget,this.getDelegateOptions()),P(n.currentTarget).data("bs."+this.type,m)),n instanceof P.Event&&(m.inState[n.type=="focusin"?"focus":"hover"]=!0),m.tip().hasClass("in")||m.hoverState=="in"){m.hoverState="in";return}if(clearTimeout(m.timeout),m.hoverState="in",!m.options.delay||!m.options.delay.show)return m.show();m.timeout=setTimeout(function(){m.hoverState=="in"&&m.show()},m.options.delay.show)},s.prototype.isInStateTrue=function(){for(var n in this.inState)if(this.inState[n])return!0;return!1},s.prototype.leave=function(n){var m=n instanceof this.constructor?n:P(n.currentTarget).data("bs."+this.type);if(m||(m=new this.constructor(n.currentTarget,this.getDelegateOptions()),P(n.currentTarget).data("bs."+this.type,m)),n instanceof P.Event&&(m.inState[n.type=="focusout"?"focus":"hover"]=!1),!m.isInStateTrue()){if(clearTimeout(m.timeout),m.hoverState="out",!m.options.delay||!m.options.delay.hide)return m.hide();m.timeout=setTimeout(function(){m.hoverState=="out"&&m.hide()},m.options.delay.hide)}},s.prototype.show=function(){var n=P.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(n);var m=P.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(n.isDefaultPrevented()||!m)return;var f=this,d=this.tip(),S=this.getUID(this.type);this.setContent(),d.attr("id",S),this.$element.attr("aria-describedby",S),this.options.animation&&d.addClass("fade");var v=typeof this.options.placement=="function"?this.options.placement.call(this,d[0],this.$element[0]):this.options.placement,E=/\s?auto?\s?/i,w=E.test(v);w&&(v=v.replace(E,"")||"top"),d.detach().css({top:0,left:0,display:"block"}).addClass(v).data("bs."+this.type,this),this.options.container?d.appendTo(P(document).find(this.options.container)):d.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var A=this.getPosition(),D=d[0].offsetWidth,b=d[0].offsetHeight;if(w){var N=v,T=this.getPosition(this.$viewport);v=v=="bottom"&&A.bottom+b>T.bottom?"top":v=="top"&&A.top-bT.width?"left":v=="left"&&A.left-DE.top+E.height&&(S.top=E.top+E.height-A)}else{var D=m.left-v,b=m.left+v+f;DE.right&&(S.left=E.left+E.width-b)}return S},s.prototype.getTitle=function(){var n,m=this.$element,f=this.options;return n=m.attr("data-original-title")||(typeof f.title=="function"?f.title.call(m[0]):f.title),n},s.prototype.getUID=function(n){do n+=~~(Math.random()*1e6);while(document.getElementById(n));return n},s.prototype.tip=function(){if(!this.$tip&&(this.$tip=P(this.options.template),this.$tip.length!=1))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},s.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},s.prototype.enable=function(){this.enabled=!0},s.prototype.disable=function(){this.enabled=!1},s.prototype.toggleEnabled=function(){this.enabled=!this.enabled},s.prototype.toggle=function(n){var m=this;n&&(m=P(n.currentTarget).data("bs."+this.type),m||(m=new this.constructor(n.currentTarget,this.getDelegateOptions()),P(n.currentTarget).data("bs."+this.type,m))),n?(m.inState.click=!m.inState.click,m.isInStateTrue()?m.enter(m):m.leave(m)):m.tip().hasClass("in")?m.leave(m):m.enter(m)},s.prototype.destroy=function(){var n=this;clearTimeout(this.timeout),this.hide(function(){n.$element.off("."+n.type).removeData("bs."+n.type),n.$tip&&n.$tip.detach(),n.$tip=null,n.$arrow=null,n.$viewport=null,n.$element=null})},s.prototype.sanitizeHtml=function(n){return p(n,this.options.whiteList,this.options.sanitizeFn)};function u(n){return this.each(function(){var m=P(this),f=m.data("bs.tooltip"),d=typeof n=="object"&&n;!f&&/destroy|hide/.test(n)||(f||m.data("bs.tooltip",f=new s(this,d)),typeof n=="string"&&f[n]())})}var g=P.fn.tooltip;P.fn.tooltip=u,P.fn.tooltip.Constructor=s,P.fn.tooltip.noConflict=function(){return P.fn.tooltip=g,this}}(jQuery)},7030:P=>{var y=function(){this.Diff_Timeout=1,this.Diff_EditCost=4,this.Match_Threshold=.5,this.Match_Distance=1e3,this.Patch_DeleteThreshold=.5,this.Patch_Margin=4,this.Match_MaxBits=32},o=-1,h=1,i=0;y.Diff=function(r,l){return[r,l]},y.prototype.diff_main=function(r,l,c,p){typeof p=="undefined"&&(this.Diff_Timeout<=0?p=Number.MAX_VALUE:p=new Date().getTime()+this.Diff_Timeout*1e3);var s=p;if(r==null||l==null)throw new Error("Null input. (diff_main)");if(r==l)return r?[new y.Diff(i,r)]:[];typeof c=="undefined"&&(c=!0);var u=c,g=this.diff_commonPrefix(r,l),n=r.substring(0,g);r=r.substring(g),l=l.substring(g),g=this.diff_commonSuffix(r,l);var m=r.substring(r.length-g);r=r.substring(0,r.length-g),l=l.substring(0,l.length-g);var f=this.diff_compute_(r,l,u,s);return n&&f.unshift(new y.Diff(i,n)),m&&f.push(new y.Diff(i,m)),this.diff_cleanupMerge(f),f},y.prototype.diff_compute_=function(r,l,c,p){var s;if(!r)return[new y.Diff(h,l)];if(!l)return[new y.Diff(o,r)];var u=r.length>l.length?r:l,g=r.length>l.length?l:r,n=u.indexOf(g);if(n!=-1)return s=[new y.Diff(h,u.substring(0,n)),new y.Diff(i,g),new y.Diff(h,u.substring(n+g.length))],r.length>l.length&&(s[0][0]=s[2][0]=o),s;if(g.length==1)return[new y.Diff(o,r),new y.Diff(h,l)];var m=this.diff_halfMatch_(r,l);if(m){var f=m[0],d=m[1],S=m[2],v=m[3],E=m[4],w=this.diff_main(f,S,c,p),A=this.diff_main(d,v,c,p);return w.concat([new y.Diff(i,E)],A)}return c&&r.length>100&&l.length>100?this.diff_lineMode_(r,l,p):this.diff_bisect_(r,l,p)},y.prototype.diff_lineMode_=function(r,l,c){var p=this.diff_linesToChars_(r,l);r=p.chars1,l=p.chars2;var s=p.lineArray,u=this.diff_main(r,l,!1,c);this.diff_charsToLines_(u,s),this.diff_cleanupSemantic(u),u.push(new y.Diff(i,""));for(var g=0,n=0,m=0,f="",d="";g=1&&m>=1){u.splice(g-n-m,n+m),g=g-n-m;for(var S=this.diff_main(f,d,!1,c),v=S.length-1;v>=0;v--)u.splice(g,0,S[v]);g=g+S.length}m=0,n=0,f="",d="";break}g++}return u.pop(),u},y.prototype.diff_bisect_=function(r,l,c){for(var p=r.length,s=l.length,u=Math.ceil((p+s)/2),g=u,n=2*u,m=new Array(n),f=new Array(n),d=0;dc);b++){for(var N=-b+E;N<=b-w;N+=2){var T=g+N,I;N==-b||N!=b&&m[T-1]p)w+=2;else if(R>s)E+=2;else if(v){var x=g+S-N;if(x>=0&&x=O)return this.diff_bisectSplit_(r,l,I,R,c)}}}for(var $=-b+A;$<=b-D;$+=2){var x=g+$,O;$==-b||$!=b&&f[x-1]p)D+=2;else if(F>s)A+=2;else if(!v){var T=g+S-$;if(T>=0&&T=O)return this.diff_bisectSplit_(r,l,I,R,c)}}}}return[new y.Diff(o,r),new y.Diff(h,l)]},y.prototype.diff_bisectSplit_=function(r,l,c,p,s){var u=r.substring(0,c),g=l.substring(0,p),n=r.substring(c),m=l.substring(p),f=this.diff_main(u,g,!1,s),d=this.diff_main(n,m,!1,s);return f.concat(d)},y.prototype.diff_linesToChars_=function(r,l){var c=[],p={};c[0]="";function s(m){for(var f="",d=0,S=-1,v=c.length;Sp?r=r.substring(c-p):cl.length?r:l,p=r.length>l.length?l:r;if(c.length<4||p.length*2=w.length?[I,R,x,O,T]:null}var g=u(c,p,Math.ceil(c.length/4)),n=u(c,p,Math.ceil(c.length/2)),m;if(!g&&!n)return null;n?g?m=g[4].length>n[4].length?g:n:m=n:m=g;var f,d,S,v;r.length>l.length?(f=m[0],d=m[1],S=m[2],v=m[3]):(S=m[0],v=m[1],f=m[2],d=m[3]);var E=m[4];return[f,d,S,v,E]},y.prototype.diff_cleanupSemantic=function(r){for(var l=!1,c=[],p=0,s=null,u=0,g=0,n=0,m=0,f=0;u0?c[p-1]:-1,g=0,n=0,m=0,f=0,s=null,l=!0)),u++;for(l&&this.diff_cleanupMerge(r),this.diff_cleanupSemanticLossless(r),u=1;u=E?(v>=d.length/2||v>=S.length/2)&&(r.splice(u,0,new y.Diff(i,S.substring(0,v))),r[u-1][1]=d.substring(0,d.length-v),r[u+1][1]=S.substring(v),u++):(E>=d.length/2||E>=S.length/2)&&(r.splice(u,0,new y.Diff(i,d.substring(0,E))),r[u-1][0]=h,r[u-1][1]=S.substring(0,S.length-E),r[u+1][0]=o,r[u+1][1]=d.substring(E),u++),u++}u++}},y.prototype.diff_cleanupSemanticLossless=function(r){function l(E,w){if(!E||!w)return 6;var A=E.charAt(E.length-1),D=w.charAt(0),b=A.match(y.nonAlphaNumericRegex_),N=D.match(y.nonAlphaNumericRegex_),T=b&&A.match(y.whitespaceRegex_),I=N&&D.match(y.whitespaceRegex_),R=T&&A.match(y.linebreakRegex_),x=I&&D.match(y.linebreakRegex_),O=R&&E.match(y.blanklineEndRegex_),$=x&&w.match(y.blanklineStartRegex_);return O||$?5:R||x?4:b&&!T&&I?3:T||I?2:b||N?1:0}for(var c=1;c=S&&(S=v,m=p,f=s,d=u)}r[c-1][1]!=m&&(m?r[c-1][1]=m:(r.splice(c-1,1),c--),r[c][1]=f,d?r[c+1][1]=d:(r.splice(c+1,1),c--))}c++}},y.nonAlphaNumericRegex_=/[^a-zA-Z0-9]/,y.whitespaceRegex_=/\s/,y.linebreakRegex_=/[\r\n]/,y.blanklineEndRegex_=/\n\r?\n$/,y.blanklineStartRegex_=/^\r?\n\r?\n/,y.prototype.diff_cleanupEfficiency=function(r){for(var l=!1,c=[],p=0,s=null,u=0,g=!1,n=!1,m=!1,f=!1;u0?c[p-1]:-1,m=f=!1),l=!0)),u++;l&&this.diff_cleanupMerge(r)},y.prototype.diff_cleanupMerge=function(r){r.push(new y.Diff(i,""));for(var l=0,c=0,p=0,s="",u="",g;l1?(c!==0&&p!==0&&(g=this.diff_commonPrefix(u,s),g!==0&&(l-c-p>0&&r[l-c-p-1][0]==i?r[l-c-p-1][1]+=u.substring(0,g):(r.splice(0,0,new y.Diff(i,u.substring(0,g))),l++),u=u.substring(g),s=s.substring(g)),g=this.diff_commonSuffix(u,s),g!==0&&(r[l][1]=u.substring(u.length-g)+r[l][1],u=u.substring(0,u.length-g),s=s.substring(0,s.length-g))),l-=c+p,r.splice(l,c+p),s.length&&(r.splice(l,0,new y.Diff(o,s)),l++),u.length&&(r.splice(l,0,new y.Diff(h,u)),l++),l++):l!==0&&r[l-1][0]==i?(r[l-1][1]+=r[l][1],r.splice(l,1)):l++,p=0,c=0,s="",u="";break}r[r.length-1][1]===""&&r.pop();var n=!1;for(l=1;ll));g++)s=c,u=p;return r.length!=g&&r[g][0]===o?u:u+(l-s)},y.prototype.diff_prettyHtml=function(r){for(var l=[],c=/&/g,p=//g,u=/\n/g,g=0;g");switch(n){case h:l[g]=''+f+"";break;case o:l[g]=''+f+"";break;case i:l[g]=""+f+"";break}}return l.join("")},y.prototype.diff_text1=function(r){for(var l=[],c=0;cthis.Match_MaxBits)throw new Error("Pattern too long for this browser.");var p=this.match_alphabet_(l),s=this;function u(I,R){var x=I/l.length,O=Math.abs(c-R);return s.Match_Distance?x+O/s.Match_Distance:O?1:x}var g=this.Match_Threshold,n=r.indexOf(l,c);n!=-1&&(g=Math.min(u(0,n),g),n=r.lastIndexOf(l,c+l.length),n!=-1&&(g=Math.min(u(0,n),g)));var m=1<=w;b--){var N=p[r.charAt(b-1)];if(E===0?D[b]=(D[b+1]<<1|1)&N:D[b]=(D[b+1]<<1|1)&N|((v[b+1]|v[b])<<1|1)|v[b+1],D[b]&m){var T=u(E,b-1);if(T<=g)if(g=T,n=b-1,n>c)w=Math.max(1,2*c-n);else break}}if(u(E+1,c)>g)break;v=D}return n},y.prototype.match_alphabet_=function(r){for(var l={},c=0;c2&&(this.diff_cleanupSemantic(s),this.diff_cleanupEfficiency(s));else if(r&&typeof r=="object"&&typeof l=="undefined"&&typeof c=="undefined")s=r,p=this.diff_text1(s);else if(typeof r=="string"&&l&&typeof l=="object"&&typeof c=="undefined")p=r,s=l;else if(typeof r=="string"&&typeof l=="string"&&c&&typeof c=="object")p=r,s=c;else throw new Error("Unknown call format to patch_make.");if(s.length===0)return[];for(var u=[],g=new y.patch_obj,n=0,m=0,f=0,d=p,S=p,v=0;v=2*this.Patch_Margin&&n&&(this.patch_addContext_(g,d),u.push(g),g=new y.patch_obj,n=0,d=S,m=f);break}E!==h&&(m+=w.length),E!==o&&(f+=w.length)}return n&&(this.patch_addContext_(g,d),u.push(g)),u},y.prototype.patch_deepCopy=function(r){for(var l=[],c=0;cthis.Match_MaxBits?(m=this.match_main(l,n.substring(0,this.Match_MaxBits),g),m!=-1&&(f=this.match_main(l,n.substring(n.length-this.Match_MaxBits),g+n.length-this.Match_MaxBits),(f==-1||m>=f)&&(m=-1))):m=this.match_main(l,n,g),m==-1)s[u]=!1,p-=r[u].length2-r[u].length1;else{s[u]=!0,p=m-g;var d;if(f==-1?d=l.substring(m,m+n.length):d=l.substring(m,f+this.Match_MaxBits),n==d)l=l.substring(0,m)+this.diff_text2(r[u].diffs)+l.substring(m+n.length);else{var S=this.diff_main(n,d,!1);if(n.length>this.Match_MaxBits&&this.diff_levenshtein(S)/n.length>this.Patch_DeleteThreshold)s[u]=!1;else{this.diff_cleanupSemanticLossless(S);for(var v=0,E,w=0;wu[0][1].length){var g=l-u[0][1].length;u[0][1]=c.substring(u[0][1].length)+u[0][1],s.start1-=g,s.start2-=g,s.length1+=g,s.length2+=g}if(s=r[r.length-1],u=s.diffs,u.length==0||u[u.length-1][0]!=i)u.push(new y.Diff(i,c)),s.length1+=l,s.length2+=l;else if(l>u[u.length-1][1].length){var g=l-u[u.length-1][1].length;u[u.length-1][1]+=c.substring(0,g),s.length1+=g,s.length2+=g}return c},y.prototype.patch_splitMax=function(r){for(var l=this.Match_MaxBits,c=0;c2*l?(n.length1+=d.length,s+=d.length,m=!1,n.diffs.push(new y.Diff(f,d)),p.diffs.shift()):(d=d.substring(0,l-n.length1-this.Patch_Margin),n.length1+=d.length,s+=d.length,f===i?(n.length2+=d.length,u+=d.length):m=!1,n.diffs.push(new y.Diff(f,d)),d==p.diffs[0][1]?p.diffs.shift():p.diffs[0][1]=p.diffs[0][1].substring(d.length))}g=this.diff_text2(n.diffs),g=g.substring(g.length-this.Patch_Margin);var S=this.diff_text1(p.diffs).substring(0,this.Patch_Margin);S!==""&&(n.length1+=S.length,n.length2+=S.length,n.diffs.length!==0&&n.diffs[n.diffs.length-1][0]===i?n.diffs[n.diffs.length-1][1]+=S:n.diffs.push(new y.Diff(i,S))),m||r.splice(++c,0,n)}}},y.prototype.patch_toText=function(r){for(var l=[],c=0;c= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};o.REVISION_CHANGES=v;var E="[object Object]";n.prototype={constructor:n,logger:i.default,log:i.default.log,registerHelper:function(P,D){if(l.toString.call(P)===E){if(D)throw new p.default("Arg not supported with multiple helpers");l.extend(this.helpers,P)}else this.helpers[P]=D},unregisterHelper:function(P){delete this.helpers[P]},registerPartial:function(P,D){if(l.toString.call(P)===E)l.extend(this.partials,P);else{if(typeof D=="undefined")throw new p.default('Attempting to register a partial called "'+P+'" as undefined');this.partials[P]=D}},unregisterPartial:function(P){delete this.partials[P]},registerDecorator:function(P,D){if(l.toString.call(P)===E){if(D)throw new p.default("Arg not supported with multiple decorators");l.extend(this.decorators,P)}else this.decorators[P]=D},unregisterDecorator:function(P){delete this.decorators[P]},resetLoggedPropertyAccesses:function(){m.resetLoggedProperties()}};var T=i.default.log;o.log=T,o.createFrame=l.createFrame,o.logger=i.default},function(y,o){"use strict";function h(v){return g[v]}function n(v){for(var E=1;E":">",'"':""","'":"'","`":"`","=":"="},i=/[&<>"'`=]/g,m=/[&<>"'`=]/,f=Object.prototype.toString;o.toString=f;var d=function(v){return typeof v=="function"};d(/x/)&&(o.isFunction=d=function(v){return typeof v=="function"&&f.call(v)==="[object Function]"}),o.isFunction=d;var S=Array.isArray||function(v){return!(!v||typeof v!="object")&&f.call(v)==="[object Array]"};o.isArray=S},function(y,o,h){"use strict";function n(c,p){var s=p&&p.loc,u=void 0,g=void 0,i=void 0,m=void 0;s&&(u=s.start.line,g=s.end.line,i=s.start.column,m=s.end.column,c+=" - "+u+":"+i);for(var f=Error.prototype.constructor.call(this,c),d=0;d0?(c.ids&&(c.ids=[c.name]),r.helpers.each(l,c)):p(this);if(c.data&&c.ids){var u=n.createFrame(c.data);u.contextPath=n.appendContextPath(c.data.contextPath,c.name),c={data:u}}return s(l,c)})},y.exports=o.default},function(y,o,h){(function(n){"use strict";var r=h(13).default,l=h(1).default;o.__esModule=!0;var c=h(5),p=h(6),s=l(p);o.default=function(u){u.registerHelper("each",function(g,i){function m(C,I,R){E&&(E.key=C,E.index=I,E.first=I===0,E.last=!!R,T&&(E.contextPath=T+C)),v+=f(g[C],{data:E,blockParams:c.blockParams([g[C],C],[T+C,null])})}if(!i)throw new s.default("Must pass iterator to #each");var f=i.fn,d=i.inverse,S=0,v="",E=void 0,T=void 0;if(i.data&&i.ids&&(T=c.appendContextPath(i.data.contextPath,i.ids[0])+"."),c.isFunction(g)&&(g=g.call(this)),i.data&&(E=c.createFrame(i.data)),g&&typeof g=="object")if(c.isArray(g))for(var P=g.length;S=0?c:parseInt(l,10)}return l},log:function(l){if(l=r.lookupLevel(l),typeof console!="undefined"&&r.lookupLevel(r.level)<=l){var c=r.methodMap[l];console[c]||(c="log");for(var p=arguments.length,s=Array(p>1?p-1:0),u=1;u= 2.0.0-beta.1",7:">= 4.0.0 <4.3.0",8:">= 4.3.0"};o.REVISION_CHANGES=v;var E="[object Object]";i.prototype={constructor:i,logger:n.default,log:n.default.log,registerHelper:function(A,D){if(l.toString.call(A)===E){if(D)throw new p.default("Arg not supported with multiple helpers");l.extend(this.helpers,A)}else this.helpers[A]=D},unregisterHelper:function(A){delete this.helpers[A]},registerPartial:function(A,D){if(l.toString.call(A)===E)l.extend(this.partials,A);else{if(typeof D=="undefined")throw new p.default('Attempting to register a partial called "'+A+'" as undefined');this.partials[A]=D}},unregisterPartial:function(A){delete this.partials[A]},registerDecorator:function(A,D){if(l.toString.call(A)===E){if(D)throw new p.default("Arg not supported with multiple decorators");l.extend(this.decorators,A)}else this.decorators[A]=D},unregisterDecorator:function(A){delete this.decorators[A]},resetLoggedPropertyAccesses:function(){m.resetLoggedProperties()}};var w=n.default.log;o.log=w,o.createFrame=l.createFrame,o.logger=n.default},function(y,o){"use strict";function h(v){return g[v]}function i(v){for(var E=1;E":">",'"':""","'":"'","`":"`","=":"="},n=/[&<>"'`=]/g,m=/[&<>"'`=]/,f=Object.prototype.toString;o.toString=f;var d=function(v){return typeof v=="function"};d(/x/)&&(o.isFunction=d=function(v){return typeof v=="function"&&f.call(v)==="[object Function]"}),o.isFunction=d;var S=Array.isArray||function(v){return!(!v||typeof v!="object")&&f.call(v)==="[object Array]"};o.isArray=S},function(y,o,h){"use strict";function i(c,p){var s=p&&p.loc,u=void 0,g=void 0,n=void 0,m=void 0;s&&(u=s.start.line,g=s.end.line,n=s.start.column,m=s.end.column,c+=" - "+u+":"+n);for(var f=Error.prototype.constructor.call(this,c),d=0;d0?(c.ids&&(c.ids=[c.name]),r.helpers.each(l,c)):p(this);if(c.data&&c.ids){var u=i.createFrame(c.data);u.contextPath=i.appendContextPath(c.data.contextPath,c.name),c={data:u}}return s(l,c)})},y.exports=o.default},function(y,o,h){(function(i){"use strict";var r=h(13).default,l=h(1).default;o.__esModule=!0;var c=h(5),p=h(6),s=l(p);o.default=function(u){u.registerHelper("each",function(g,n){function m(T,I,R){E&&(E.key=T,E.index=I,E.first=I===0,E.last=!!R,w&&(E.contextPath=w+T)),v+=f(g[T],{data:E,blockParams:c.blockParams([g[T],T],[w+T,null])})}if(!n)throw new s.default("Must pass iterator to #each");var f=n.fn,d=n.inverse,S=0,v="",E=void 0,w=void 0;if(n.data&&n.ids&&(w=c.appendContextPath(n.data.contextPath,n.ids[0])+"."),c.isFunction(g)&&(g=g.call(this)),n.data&&(E=c.createFrame(n.data)),g&&typeof g=="object")if(c.isArray(g))for(var A=g.length;S=0?c:parseInt(l,10)}return l},log:function(l){if(l=r.lookupLevel(l),typeof console!="undefined"&&r.lookupLevel(r.level)<=l){var c=r.methodMap[l];console[c]||(c="log");for(var p=arguments.length,s=Array(p>1?p-1:0),u=1;u=_.LAST_COMPATIBLE_COMPILER_REVISION&&N<=_.COMPILER_REVISION)){if(N<_.LAST_COMPATIBLE_COMPILER_REVISION){var $=_.REVISION_CHANGES[O],F=_.REVISION_CHANGES[N];throw new D.default("Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version ("+$+") or downgrade your runtime to an older version ("+F+").")}throw new D.default("Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version ("+R[1]+").")}}function r(R,N){function O(W,G,U){U.hash&&(G=T.extend({},G,U.hash),U.ids&&(U.ids[0]=!0)),W=N.VM.resolvePartial.call(this,W,G,U);var Y=T.extend({},U,{hooks:this.hooks,protoAccessControl:this.protoAccessControl}),z=N.VM.invokePartial.call(this,W,G,Y);if(z==null&&N.compile&&(U.partials[U.name]=N.compile(W,R.compilerOptions,N),z=U.partials[U.name](G,Y)),z!=null){if(U.indent){for(var te=z.split(` -`),ae=0,he=te.length;ae2&&O.push("'"+this.terminals_[I]+"'");F=this.lexer.showPosition?"Parse error on line "+(d+1)+`: +See https://handlebarsjs.com/api-reference/runtime-options.html#options-to-control-prototype-access for details`))}function p(){u(d).forEach(function(S){delete d[S]})}var s=h(34).default,u=h(13).default,g=h(3).default;o.__esModule=!0,o.createProtoAccessControl=i,o.resultIsAllowed=r,o.resetLoggedProperties=p;var n=h(36),m=h(32),f=g(m),d=s(null)},function(y,o,h){y.exports={default:h(35),__esModule:!0}},function(y,o,h){var i=h(9);y.exports=function(r,l){return i.create(r,l)}},function(y,o,h){"use strict";function i(){for(var c=arguments.length,p=Array(c),s=0;s=b.LAST_COMPATIBLE_COMPILER_REVISION&&x<=b.COMPILER_REVISION)){if(x2&&O.push("'"+this.terminals_[I]+"'");F=this.lexer.showPosition?"Parse error on line "+(d+1)+`: `+this.lexer.showPosition()+` -Expecting `+O.join(", ")+", got '"+(this.terminals_[P]||P)+"'":"Parse error on line "+(d+1)+": Unexpected "+(P==1?"end of input":"'"+(this.terminals_[P]||P)+"'"),this.parseError(F,{text:this.lexer.match,token:this.terminals_[P]||P,line:this.lexer.yylineno,loc:E,expected:O})}}if(b[0]instanceof Array&&b.length>1)throw new Error("Parse Error: multiple actions possible at state: "+_+", token: "+P);switch(b[0]){case 1:u.push(P),g.push(this.lexer.yytext),i.push(this.lexer.yylloc),u.push(b[1]),P=null,D?(P=D,D=null):(S=this.lexer.yyleng,f=this.lexer.yytext,d=this.lexer.yylineno,E=this.lexer.yylloc,v>0&&v--);break;case 2:if(R=this.productions_[b[1]][1],$.$=g[g.length-R],$._$={first_line:i[i.length-(R||1)].first_line,last_line:i[i.length-1].last_line,first_column:i[i.length-(R||1)].first_column,last_column:i[i.length-1].last_column},T&&($._$.range=[i[i.length-(R||1)].range[0],i[i.length-1].range[1]]),C=this.performAction.call($,f,S,d,this.yy,b[1],g,i),typeof C!="undefined")return C;R&&(u=u.slice(0,-1*R*2),g=g.slice(0,-1*R),i=i.slice(0,-1*R)),u.push(this.productions_[b[1]][0]),g.push($.$),i.push($._$),N=m[u[u.length-2]][u[u.length-1]],u.push(N);break;case 3:return!0}}return!0}},l=function(){var c={EOF:1,parseError:function(p,s){if(!this.yy.parser)throw new Error(p);this.yy.parser.parseError(p,s)},setInput:function(p){return this._input=p,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var p=this._input[0];this.yytext+=p,this.yyleng++,this.offset++,this.match+=p,this.matched+=p;var s=p.match(/(?:\r\n?|\n).*/g);return s?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),p},unput:function(p){var s=p.length,u=p.split(/(?:\r\n?|\n)/g);this._input=p+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-s-1),this.offset-=s;var g=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),u.length-1&&(this.yylineno-=u.length-1);var i=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:u?(u.length===g.length?this.yylloc.first_column:0)+g[g.length-u.length].length-u[0].length:this.yylloc.first_column-s},this.options.ranges&&(this.yylloc.range=[i[0],i[0]+this.yyleng-s]),this},more:function(){return this._more=!0,this},less:function(p){this.unput(this.match.slice(p))},pastInput:function(){var p=this.matched.substr(0,this.matched.length-this.match.length);return(p.length>20?"...":"")+p.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var p=this.match;return p.length<20&&(p+=this._input.substr(0,20-p.length)),(p.substr(0,20)+(p.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var p=this.pastInput(),s=new Array(p.length+1).join("-");return p+this.upcomingInput()+` -`+s+"^"},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var p,s,u,g,i;this._more||(this.yytext="",this.match="");for(var m=this._currentRules(),f=0;fs[0].length)||(s=u,g=f,this.options.flex));f++);return s?(i=s[0].match(/(?:\r\n?|\n).*/g),i&&(this.yylineno+=i.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:i?i[i.length-1].length-i[i.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+s[0].length},this.yytext+=s[0],this.match+=s[0],this.matches=s,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._input=this._input.slice(s[0].length),this.matched+=s[0],p=this.performAction.call(this,this.yy,this,m[g],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),p||void 0):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. -`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var p=this.next();return typeof p!="undefined"?p:this.lex()},begin:function(p){this.conditionStack.push(p)},popState:function(){return this.conditionStack.pop()},_currentRules:function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},topState:function(){return this.conditionStack[this.conditionStack.length-2]},pushState:function(p){this.begin(p)}};return c.options={},c.performAction=function(p,s,u,g){function i(m,f){return s.yytext=s.yytext.substring(m,s.yyleng-f+m)}switch(u){case 0:if(s.yytext.slice(-2)==="\\\\"?(i(0,1),this.begin("mu")):s.yytext.slice(-1)==="\\"?(i(0,1),this.begin("emu")):this.begin("mu"),s.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;case 3:return this.begin("raw"),15;case 4:return this.popState(),this.conditionStack[this.conditionStack.length-1]==="raw"?15:(i(5,9),"END_RAW_BLOCK");case 5:return 15;case 6:return this.popState(),14;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin("raw"),23;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:return this.popState(),44;case 16:return this.popState(),44;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(s.yytext),this.popState(),this.begin("com");break;case 22:return this.popState(),14;case 23:return 48;case 24:return 73;case 25:return 72;case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;case 30:return this.popState(),33;case 31:return s.yytext=i(1,2).replace(/\\"/g,'"'),80;case 32:return s.yytext=i(1,2).replace(/\\'/g,"'"),80;case 33:return 85;case 34:return 82;case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return s.yytext=s.yytext.replace(/\\([\\\]])/g,"$1"),72;case 43:return"INVALID";case 44:return 5}},c.rules=[/^(?:[^\x00]*?(?=(\{\{)))/,/^(?:[^\x00]+)/,/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,/^(?:\{\{\{\{(?=[^\/]))/,/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,/^(?:[^\x00]+?(?=(\{\{\{\{)))/,/^(?:[\s\S]*?--(~)?\}\})/,/^(?:\()/,/^(?:\))/,/^(?:\{\{\{\{)/,/^(?:\}\}\}\})/,/^(?:\{\{(~)?>)/,/^(?:\{\{(~)?#>)/,/^(?:\{\{(~)?#\*?)/,/^(?:\{\{(~)?\/)/,/^(?:\{\{(~)?\^\s*(~)?\}\})/,/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,/^(?:\{\{(~)?\^)/,/^(?:\{\{(~)?\s*else\b)/,/^(?:\{\{(~)?\{)/,/^(?:\{\{(~)?&)/,/^(?:\{\{(~)?!--)/,/^(?:\{\{(~)?![\s\S]*?\}\})/,/^(?:\{\{(~)?\*?)/,/^(?:=)/,/^(?:\.\.)/,/^(?:\.(?=([=~}\s\/.)|])))/,/^(?:[\/.])/,/^(?:\s+)/,/^(?:\}(~)?\}\})/,/^(?:(~)?\}\})/,/^(?:"(\\["]|[^"])*")/,/^(?:'(\\[']|[^'])*')/,/^(?:@)/,/^(?:true(?=([~}\s)])))/,/^(?:false(?=([~}\s)])))/,/^(?:undefined(?=([~}\s)])))/,/^(?:null(?=([~}\s)])))/,/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,/^(?:as\s+\|)/,/^(?:\|)/,/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],c.conditions={mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!1},emu:{rules:[2],inclusive:!1},com:{rules:[6],inclusive:!1},raw:{rules:[3,4,5],inclusive:!1},INITIAL:{rules:[0,1,44],inclusive:!0}},c}();return r.lexer=l,n.prototype=r,r.Parser=n,new n}();o.default=h,y.exports=o.default},function(y,o,h){"use strict";function n(){var i=arguments.length<=0||arguments[0]===void 0?{}:arguments[0];this.options=i}function r(i,m,f){m===void 0&&(m=i.length);var d=i[m-1],S=i[m-2];return d?d.type==="ContentStatement"?(S||!f?/\r?\n\s*?$/:/(^|\r?\n)\s*?$/).test(d.original):void 0:f}function l(i,m,f){m===void 0&&(m=-1);var d=i[m+1],S=i[m+2];return d?d.type==="ContentStatement"?(S||!f?/^\s*?\r?\n/:/^\s*?(\r?\n|$)/).test(d.original):void 0:f}function c(i,m,f){var d=i[m==null?0:m+1];if(d&&d.type==="ContentStatement"&&(f||!d.rightStripped)){var S=d.value;d.value=d.value.replace(f?/^\s+/:/^[ \t]*\r?\n?/,""),d.rightStripped=d.value!==S}}function p(i,m,f){var d=i[m==null?i.length-1:m-1];if(d&&d.type==="ContentStatement"&&(f||!d.leftStripped)){var S=d.value;return d.value=d.value.replace(f?/\s+$/:/[ \t]+$/,""),d.leftStripped=d.value!==S,d.leftStripped}}var s=h(1).default;o.__esModule=!0;var u=h(49),g=s(u);n.prototype=new g.default,n.prototype.Program=function(i){var m=!this.options.ignoreStandalone,f=!this.isRootSeen;this.isRootSeen=!0;for(var d=i.body,S=0,v=d.length;S0)throw new v.default("Invalid path: "+D,{loc:P});R===".."&&b++}}return{type:"PathExpression",data:E,depth:b,parts:_,original:D,loc:P}}function u(E,T,P,D,_,b){var C=D.charAt(3)||D.charAt(2),I=C!=="{"&&C!=="&",R=/\*/.test(D);return{type:R?"Decorator":"MustacheStatement",path:E,params:T,hash:P,escaped:I,strip:_,loc:this.locInfo(b)}}function g(E,T,P,D){n(E,P),D=this.locInfo(D);var _={type:"Program",body:T,strip:{},loc:D};return{type:"BlockStatement",path:E.path,params:E.params,hash:E.hash,program:_,openStrip:{},inverseStrip:{},closeStrip:{},loc:D}}function i(E,T,P,D,_,b){D&&D.path&&n(E,D);var C=/\*/.test(E.open);T.blockParams=E.blockParams;var I=void 0,R=void 0;if(P){if(C)throw new v.default("Unexpected inverse block on decorator",P);P.chain&&(P.program.body[0].closeStrip=D.strip),R=P.strip,I=P.program}return _&&(_=I,I=T,T=_),{type:C?"DecoratorBlock":"BlockStatement",path:E.path,params:E.params,hash:E.hash,program:T,inverse:I,openStrip:E.strip,inverseStrip:R,closeStrip:D&&D.strip,loc:this.locInfo(b)}}function m(E,T){if(!T&&E.length){var P=E[0].loc,D=E[E.length-1].loc;P&&D&&(T={source:P.source,start:{line:P.start.line,column:P.start.column},end:{line:D.end.line,column:D.end.column}})}return{type:"Program",body:E,strip:{},loc:T}}function f(E,T,P,D){return n(E,P),{type:"PartialBlockStatement",name:E.path,params:E.params,hash:E.hash,program:T,openStrip:E.strip,closeStrip:P&&P.strip,loc:this.locInfo(D)}}var d=h(1).default;o.__esModule=!0,o.SourceLocation=r,o.id=l,o.stripFlags=c,o.stripComment=p,o.preparePath=s,o.prepareMustache=u,o.prepareRawBlock=g,o.prepareBlock=i,o.prepareProgram=m,o.preparePartialBlock=f;var S=h(6),v=d(S)},function(y,o,h){"use strict";function n(){}function r(v,E,T){if(v==null||typeof v!="string"&&v.type!=="Program")throw new i.default("You must pass a string or Handlebars AST to Handlebars.precompile. You passed "+v);E=E||{},"data"in E||(E.data=!0),E.compat&&(E.useDepths=!0);var P=T.parse(v,E),D=new T.Compiler().compile(P,E);return new T.JavaScriptCompiler().compile(D,E)}function l(v,E,T){function P(){var b=T.parse(v,E),C=new T.Compiler().compile(b,E),I=new T.JavaScriptCompiler().compile(C,E,void 0,!0);return T.template(I)}function D(b,C){return _||(_=P()),_.call(this,b,C)}if(E===void 0&&(E={}),v==null||typeof v!="string"&&v.type!=="Program")throw new i.default("You must pass a string or Handlebars AST to Handlebars.compile. You passed "+v);E=m.extend({},E),"data"in E||(E.data=!0),E.compat&&(E.useDepths=!0);var _=void 0;return D._setup=function(b){return _||(_=P()),_._setup(b)},D._child=function(b,C,I,R){return _||(_=P()),_._child(b,C,I,R)},D}function c(v,E){if(v===E)return!0;if(m.isArray(v)&&m.isArray(E)&&v.length===E.length){for(var T=0;T1)throw new i.default("Unsupported number of partial arguments: "+T.length,v);T.length||(this.options.explicitPartialContext?this.opcode("pushLiteral","undefined"):T.push({type:"PathExpression",parts:[],depth:0}));var P=v.name.original,D=v.name.type==="SubExpression";D&&this.accept(v.name),this.setupFullMustacheParams(v,E,void 0,!0);var _=v.indent||"";this.options.preventIndent&&_&&(this.opcode("appendContent",_),_=""),this.opcode("invokePartial",D,P,_),this.opcode("append")},PartialBlockStatement:function(v){this.PartialStatement(v)},MustacheStatement:function(v){this.SubExpression(v),v.escaped&&!this.options.noEscape?this.opcode("appendEscaped"):this.opcode("append")},Decorator:function(v){this.DecoratorBlock(v)},ContentStatement:function(v){v.value&&this.opcode("appendContent",v.value)},CommentStatement:function(){},SubExpression:function(v){p(v);var E=this.classifySexpr(v);E==="simple"?this.simpleSexpr(v):E==="helper"?this.helperSexpr(v):this.ambiguousSexpr(v)},ambiguousSexpr:function(v,E,T){var P=v.path,D=P.parts[0],_=E!=null||T!=null;this.opcode("getContext",P.depth),this.opcode("pushProgram",E),this.opcode("pushProgram",T),P.strict=!0,this.accept(P),this.opcode("invokeAmbiguous",D,_)},simpleSexpr:function(v){var E=v.path;E.strict=!0,this.accept(E),this.opcode("resolvePossibleLambda")},helperSexpr:function(v,E,T){var P=this.setupFullMustacheParams(v,E,T),D=v.path,_=D.parts[0];if(this.options.knownHelpers[_])this.opcode("invokeKnownHelper",P.length,_);else{if(this.options.knownHelpersOnly)throw new i.default("You specified knownHelpersOnly, but used the unknown helper "+_,v);D.strict=!0,D.falsy=!0,this.accept(D),this.opcode("invokeHelper",P.length,D.original,d.default.helpers.simpleId(D))}},PathExpression:function(v){this.addDepth(v.depth),this.opcode("getContext",v.depth);var E=v.parts[0],T=d.default.helpers.scopedId(v),P=!v.depth&&!T&&this.blockParamIndex(E);P?this.opcode("lookupBlockParam",P,v.parts):E?v.data?(this.options.data=!0,this.opcode("lookupData",v.depth,v.parts,v.strict)):this.opcode("lookupOnContext",v.parts,v.falsy,v.strict,T):this.opcode("pushContext")},StringLiteral:function(v){this.opcode("pushString",v.value)},NumberLiteral:function(v){this.opcode("pushLiteral",v.value)},BooleanLiteral:function(v){this.opcode("pushLiteral",v.value)},UndefinedLiteral:function(){this.opcode("pushLiteral","undefined")},NullLiteral:function(){this.opcode("pushLiteral","null")},Hash:function(v){var E=v.pairs,T=0,P=E.length;for(this.opcode("pushHash");T=0)return[E,D]}}}},function(y,o,h){"use strict";function n(d){this.value=d}function r(){}function l(d,S,v,E){var T=S.popStack(),P=0,D=v.length;for(d&&D--;P1)throw new Error("Parse Error: multiple actions possible at state: "+b+", token: "+A);switch(N[0]){case 1:u.push(A),g.push(this.lexer.yytext),n.push(this.lexer.yylloc),u.push(N[1]),A=null,D?(A=D,D=null):(S=this.lexer.yyleng,f=this.lexer.yytext,d=this.lexer.yylineno,E=this.lexer.yylloc,v>0&&v--);break;case 2:if(R=this.productions_[N[1]][1],$.$=g[g.length-R],$._$={first_line:n[n.length-(R||1)].first_line,last_line:n[n.length-1].last_line,first_column:n[n.length-(R||1)].first_column,last_column:n[n.length-1].last_column},w&&($._$.range=[n[n.length-(R||1)].range[0],n[n.length-1].range[1]]),T=this.performAction.call($,f,S,d,this.yy,N[1],g,n),typeof T!="undefined")return T;R&&(u=u.slice(0,-1*R*2),g=g.slice(0,-1*R),n=n.slice(0,-1*R)),u.push(this.productions_[N[1]][0]),g.push($.$),n.push($._$),x=m[u[u.length-2]][u[u.length-1]],u.push(x);break;case 3:return!0}}return!0}},l=function(){var c={EOF:1,parseError:function(p,s){if(!this.yy.parser)throw new Error(p);this.yy.parser.parseError(p,s)},setInput:function(p){return this._input=p,this._more=this._less=this.done=!1,this.yylineno=this.yyleng=0,this.yytext=this.matched=this.match="",this.conditionStack=["INITIAL"],this.yylloc={first_line:1,first_column:0,last_line:1,last_column:0},this.options.ranges&&(this.yylloc.range=[0,0]),this.offset=0,this},input:function(){var p=this._input[0];this.yytext+=p,this.yyleng++,this.offset++,this.match+=p,this.matched+=p;var s=p.match(/(?:\r\n?|\n).*/g);return s?(this.yylineno++,this.yylloc.last_line++):this.yylloc.last_column++,this.options.ranges&&this.yylloc.range[1]++,this._input=this._input.slice(1),p},unput:function(p){var s=p.length,u=p.split(/(?:\r\n?|\n)/g);this._input=p+this._input,this.yytext=this.yytext.substr(0,this.yytext.length-s-1),this.offset-=s;var g=this.match.split(/(?:\r\n?|\n)/g);this.match=this.match.substr(0,this.match.length-1),this.matched=this.matched.substr(0,this.matched.length-1),u.length-1&&(this.yylineno-=u.length-1);var n=this.yylloc.range;return this.yylloc={first_line:this.yylloc.first_line,last_line:this.yylineno+1,first_column:this.yylloc.first_column,last_column:u?(u.length===g.length?this.yylloc.first_column:0)+g[g.length-u.length].length-u[0].length:this.yylloc.first_column-s},this.options.ranges&&(this.yylloc.range=[n[0],n[0]+this.yyleng-s]),this},more:function(){return this._more=!0,this},less:function(p){this.unput(this.match.slice(p))},pastInput:function(){var p=this.matched.substr(0,this.matched.length-this.match.length);return(p.length>20?"...":"")+p.substr(-20).replace(/\n/g,"")},upcomingInput:function(){var p=this.match;return p.length<20&&(p+=this._input.substr(0,20-p.length)),(p.substr(0,20)+(p.length>20?"...":"")).replace(/\n/g,"")},showPosition:function(){var p=this.pastInput(),s=new Array(p.length+1).join("-");return p+this.upcomingInput()+` +`+s+"^"},next:function(){if(this.done)return this.EOF;this._input||(this.done=!0);var p,s,u,g,n;this._more||(this.yytext="",this.match="");for(var m=this._currentRules(),f=0;fs[0].length)||(s=u,g=f,this.options.flex));f++);return s?(n=s[0].match(/(?:\r\n?|\n).*/g),n&&(this.yylineno+=n.length),this.yylloc={first_line:this.yylloc.last_line,last_line:this.yylineno+1,first_column:this.yylloc.last_column,last_column:n?n[n.length-1].length-n[n.length-1].match(/\r?\n?/)[0].length:this.yylloc.last_column+s[0].length},this.yytext+=s[0],this.match+=s[0],this.matches=s,this.yyleng=this.yytext.length,this.options.ranges&&(this.yylloc.range=[this.offset,this.offset+=this.yyleng]),this._more=!1,this._input=this._input.slice(s[0].length),this.matched+=s[0],p=this.performAction.call(this,this.yy,this,m[g],this.conditionStack[this.conditionStack.length-1]),this.done&&this._input&&(this.done=!1),p||void 0):this._input===""?this.EOF:this.parseError("Lexical error on line "+(this.yylineno+1)+`. Unrecognized text. +`+this.showPosition(),{text:"",token:null,line:this.yylineno})},lex:function(){var p=this.next();return typeof p!="undefined"?p:this.lex()},begin:function(p){this.conditionStack.push(p)},popState:function(){return this.conditionStack.pop()},_currentRules:function(){return this.conditions[this.conditionStack[this.conditionStack.length-1]].rules},topState:function(){return this.conditionStack[this.conditionStack.length-2]},pushState:function(p){this.begin(p)}};return c.options={},c.performAction=function(p,s,u,g){function n(m,f){return s.yytext=s.yytext.substring(m,s.yyleng-f+m)}switch(u){case 0:if(s.yytext.slice(-2)==="\\\\"?(n(0,1),this.begin("mu")):s.yytext.slice(-1)==="\\"?(n(0,1),this.begin("emu")):this.begin("mu"),s.yytext)return 15;break;case 1:return 15;case 2:return this.popState(),15;case 3:return this.begin("raw"),15;case 4:return this.popState(),this.conditionStack[this.conditionStack.length-1]==="raw"?15:(n(5,9),"END_RAW_BLOCK");case 5:return 15;case 6:return this.popState(),14;case 7:return 65;case 8:return 68;case 9:return 19;case 10:return this.popState(),this.begin("raw"),23;case 11:return 55;case 12:return 60;case 13:return 29;case 14:return 47;case 15:return this.popState(),44;case 16:return this.popState(),44;case 17:return 34;case 18:return 39;case 19:return 51;case 20:return 48;case 21:this.unput(s.yytext),this.popState(),this.begin("com");break;case 22:return this.popState(),14;case 23:return 48;case 24:return 73;case 25:return 72;case 26:return 72;case 27:return 87;case 28:break;case 29:return this.popState(),54;case 30:return this.popState(),33;case 31:return s.yytext=n(1,2).replace(/\\"/g,'"'),80;case 32:return s.yytext=n(1,2).replace(/\\'/g,"'"),80;case 33:return 85;case 34:return 82;case 35:return 82;case 36:return 83;case 37:return 84;case 38:return 81;case 39:return 75;case 40:return 77;case 41:return 72;case 42:return s.yytext=s.yytext.replace(/\\([\\\]])/g,"$1"),72;case 43:return"INVALID";case 44:return 5}},c.rules=[/^(?:[^\x00]*?(?=(\{\{)))/,/^(?:[^\x00]+)/,/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,/^(?:\{\{\{\{(?=[^\/]))/,/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,/^(?:[^\x00]+?(?=(\{\{\{\{)))/,/^(?:[\s\S]*?--(~)?\}\})/,/^(?:\()/,/^(?:\))/,/^(?:\{\{\{\{)/,/^(?:\}\}\}\})/,/^(?:\{\{(~)?>)/,/^(?:\{\{(~)?#>)/,/^(?:\{\{(~)?#\*?)/,/^(?:\{\{(~)?\/)/,/^(?:\{\{(~)?\^\s*(~)?\}\})/,/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,/^(?:\{\{(~)?\^)/,/^(?:\{\{(~)?\s*else\b)/,/^(?:\{\{(~)?\{)/,/^(?:\{\{(~)?&)/,/^(?:\{\{(~)?!--)/,/^(?:\{\{(~)?![\s\S]*?\}\})/,/^(?:\{\{(~)?\*?)/,/^(?:=)/,/^(?:\.\.)/,/^(?:\.(?=([=~}\s\/.)|])))/,/^(?:[\/.])/,/^(?:\s+)/,/^(?:\}(~)?\}\})/,/^(?:(~)?\}\})/,/^(?:"(\\["]|[^"])*")/,/^(?:'(\\[']|[^'])*')/,/^(?:@)/,/^(?:true(?=([~}\s)])))/,/^(?:false(?=([~}\s)])))/,/^(?:undefined(?=([~}\s)])))/,/^(?:null(?=([~}\s)])))/,/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,/^(?:as\s+\|)/,/^(?:\|)/,/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,/^(?:\[(\\\]|[^\]])*\])/,/^(?:.)/,/^(?:$)/],c.conditions={mu:{rules:[7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44],inclusive:!1},emu:{rules:[2],inclusive:!1},com:{rules:[6],inclusive:!1},raw:{rules:[3,4,5],inclusive:!1},INITIAL:{rules:[0,1,44],inclusive:!0}},c}();return r.lexer=l,i.prototype=r,r.Parser=i,new i}();o.default=h,y.exports=o.default},function(y,o,h){"use strict";function i(){var n=arguments.length<=0||arguments[0]===void 0?{}:arguments[0];this.options=n}function r(n,m,f){m===void 0&&(m=n.length);var d=n[m-1],S=n[m-2];return d?d.type==="ContentStatement"?(S||!f?/\r?\n\s*?$/:/(^|\r?\n)\s*?$/).test(d.original):void 0:f}function l(n,m,f){m===void 0&&(m=-1);var d=n[m+1],S=n[m+2];return d?d.type==="ContentStatement"?(S||!f?/^\s*?\r?\n/:/^\s*?(\r?\n|$)/).test(d.original):void 0:f}function c(n,m,f){var d=n[m==null?0:m+1];if(d&&d.type==="ContentStatement"&&(f||!d.rightStripped)){var S=d.value;d.value=d.value.replace(f?/^\s+/:/^[ \t]*\r?\n?/,""),d.rightStripped=d.value!==S}}function p(n,m,f){var d=n[m==null?n.length-1:m-1];if(d&&d.type==="ContentStatement"&&(f||!d.leftStripped)){var S=d.value;return d.value=d.value.replace(f?/\s+$/:/[ \t]+$/,""),d.leftStripped=d.value!==S,d.leftStripped}}var s=h(1).default;o.__esModule=!0;var u=h(49),g=s(u);i.prototype=new g.default,i.prototype.Program=function(n){var m=!this.options.ignoreStandalone,f=!this.isRootSeen;this.isRootSeen=!0;for(var d=n.body,S=0,v=d.length;S0)throw new v.default("Invalid path: "+D,{loc:A});R===".."&&N++}}return{type:"PathExpression",data:E,depth:N,parts:b,original:D,loc:A}}function u(E,w,A,D,b,N){var T=D.charAt(3)||D.charAt(2),I=T!=="{"&&T!=="&",R=/\*/.test(D);return{type:R?"Decorator":"MustacheStatement",path:E,params:w,hash:A,escaped:I,strip:b,loc:this.locInfo(N)}}function g(E,w,A,D){i(E,A),D=this.locInfo(D);var b={type:"Program",body:w,strip:{},loc:D};return{type:"BlockStatement",path:E.path,params:E.params,hash:E.hash,program:b,openStrip:{},inverseStrip:{},closeStrip:{},loc:D}}function n(E,w,A,D,b,N){D&&D.path&&i(E,D);var T=/\*/.test(E.open);w.blockParams=E.blockParams;var I=void 0,R=void 0;if(A){if(T)throw new v.default("Unexpected inverse block on decorator",A);A.chain&&(A.program.body[0].closeStrip=D.strip),R=A.strip,I=A.program}return b&&(b=I,I=w,w=b),{type:T?"DecoratorBlock":"BlockStatement",path:E.path,params:E.params,hash:E.hash,program:w,inverse:I,openStrip:E.strip,inverseStrip:R,closeStrip:D&&D.strip,loc:this.locInfo(N)}}function m(E,w){if(!w&&E.length){var A=E[0].loc,D=E[E.length-1].loc;A&&D&&(w={source:A.source,start:{line:A.start.line,column:A.start.column},end:{line:D.end.line,column:D.end.column}})}return{type:"Program",body:E,strip:{},loc:w}}function f(E,w,A,D){return i(E,A),{type:"PartialBlockStatement",name:E.path,params:E.params,hash:E.hash,program:w,openStrip:E.strip,closeStrip:A&&A.strip,loc:this.locInfo(D)}}var d=h(1).default;o.__esModule=!0,o.SourceLocation=r,o.id=l,o.stripFlags=c,o.stripComment=p,o.preparePath=s,o.prepareMustache=u,o.prepareRawBlock=g,o.prepareBlock=n,o.prepareProgram=m,o.preparePartialBlock=f;var S=h(6),v=d(S)},function(y,o,h){"use strict";function i(){}function r(v,E,w){if(v==null||typeof v!="string"&&v.type!=="Program")throw new n.default("You must pass a string or Handlebars AST to Handlebars.precompile. You passed "+v);E=E||{},"data"in E||(E.data=!0),E.compat&&(E.useDepths=!0);var A=w.parse(v,E),D=new w.Compiler().compile(A,E);return new w.JavaScriptCompiler().compile(D,E)}function l(v,E,w){function A(){var N=w.parse(v,E),T=new w.Compiler().compile(N,E),I=new w.JavaScriptCompiler().compile(T,E,void 0,!0);return w.template(I)}function D(N,T){return b||(b=A()),b.call(this,N,T)}if(E===void 0&&(E={}),v==null||typeof v!="string"&&v.type!=="Program")throw new n.default("You must pass a string or Handlebars AST to Handlebars.compile. You passed "+v);E=m.extend({},E),"data"in E||(E.data=!0),E.compat&&(E.useDepths=!0);var b=void 0;return D._setup=function(N){return b||(b=A()),b._setup(N)},D._child=function(N,T,I,R){return b||(b=A()),b._child(N,T,I,R)},D}function c(v,E){if(v===E)return!0;if(m.isArray(v)&&m.isArray(E)&&v.length===E.length){for(var w=0;w1)throw new n.default("Unsupported number of partial arguments: "+w.length,v);w.length||(this.options.explicitPartialContext?this.opcode("pushLiteral","undefined"):w.push({type:"PathExpression",parts:[],depth:0}));var A=v.name.original,D=v.name.type==="SubExpression";D&&this.accept(v.name),this.setupFullMustacheParams(v,E,void 0,!0);var b=v.indent||"";this.options.preventIndent&&b&&(this.opcode("appendContent",b),b=""),this.opcode("invokePartial",D,A,b),this.opcode("append")},PartialBlockStatement:function(v){this.PartialStatement(v)},MustacheStatement:function(v){this.SubExpression(v),v.escaped&&!this.options.noEscape?this.opcode("appendEscaped"):this.opcode("append")},Decorator:function(v){this.DecoratorBlock(v)},ContentStatement:function(v){v.value&&this.opcode("appendContent",v.value)},CommentStatement:function(){},SubExpression:function(v){p(v);var E=this.classifySexpr(v);E==="simple"?this.simpleSexpr(v):E==="helper"?this.helperSexpr(v):this.ambiguousSexpr(v)},ambiguousSexpr:function(v,E,w){var A=v.path,D=A.parts[0],b=E!=null||w!=null;this.opcode("getContext",A.depth),this.opcode("pushProgram",E),this.opcode("pushProgram",w),A.strict=!0,this.accept(A),this.opcode("invokeAmbiguous",D,b)},simpleSexpr:function(v){var E=v.path;E.strict=!0,this.accept(E),this.opcode("resolvePossibleLambda")},helperSexpr:function(v,E,w){var A=this.setupFullMustacheParams(v,E,w),D=v.path,b=D.parts[0];if(this.options.knownHelpers[b])this.opcode("invokeKnownHelper",A.length,b);else{if(this.options.knownHelpersOnly)throw new n.default("You specified knownHelpersOnly, but used the unknown helper "+b,v);D.strict=!0,D.falsy=!0,this.accept(D),this.opcode("invokeHelper",A.length,D.original,d.default.helpers.simpleId(D))}},PathExpression:function(v){this.addDepth(v.depth),this.opcode("getContext",v.depth);var E=v.parts[0],w=d.default.helpers.scopedId(v),A=!v.depth&&!w&&this.blockParamIndex(E);A?this.opcode("lookupBlockParam",A,v.parts):E?v.data?(this.options.data=!0,this.opcode("lookupData",v.depth,v.parts,v.strict)):this.opcode("lookupOnContext",v.parts,v.falsy,v.strict,w):this.opcode("pushContext")},StringLiteral:function(v){this.opcode("pushString",v.value)},NumberLiteral:function(v){this.opcode("pushLiteral",v.value)},BooleanLiteral:function(v){this.opcode("pushLiteral",v.value)},UndefinedLiteral:function(){this.opcode("pushLiteral","undefined")},NullLiteral:function(){this.opcode("pushLiteral","null")},Hash:function(v){var E=v.pairs,w=0,A=E.length;for(this.opcode("pushHash");w=0)return[E,D]}}}},function(y,o,h){"use strict";function i(d){this.value=d}function r(){}function l(d,S,v,E){var w=S.popStack(),A=0,D=v.length;for(d&&D--;A0&&(v+=", "+E.join(", "));var T=0;c(this.aliases).forEach(function(_){var b=S.aliases[_];b.children&&b.referenceCount>1&&(v+=", alias"+ ++T+"="+_,b.children[0]="alias"+T)}),this.lookupPropertyFunctionIsUsed&&(v+=", "+this.lookupPropertyFunctionVarDeclaration());var P=["container","depth0","helpers","partials","data"];(this.useBlockParams||this.useDepths)&&P.push("blockParams"),this.useDepths&&P.push("depths");var D=this.mergeSource(v);return d?(P.push(D),Function.apply(this,P)):this.source.wrap(["function(",P.join(","),`) { - `,D,"}"])},mergeSource:function(d){var S=this.environment.isSimple,v=!this.forceBuffer,E=void 0,T=void 0,P=void 0,D=void 0;return this.source.each(function(_){_.appendToBuffer?(P?_.prepend(" + "):P=_,D=_):(P&&(T?P.prepend("buffer += "):E=!0,D.add(";"),P=D=void 0),T=!0,S||(v=!1))}),v?P?(P.prepend("return "),D.add(";")):T||this.source.push('return "";'):(d+=", buffer = "+(E?"":this.initializeBuffer()),P?(P.prepend("return buffer + "),D.add(";")):this.source.push("return buffer;")),d&&this.source.prepend("var "+d.substring(2)+(E?"":`; +`),this.decorators=this.decorators.merge()));var T=this.createFunctionContext(E);if(this.isChild)return T;var I={compiler:this.compilerInfo(),main:T};this.decorators&&(I.main_d=this.decorators,I.useDecorators=!0);var R=this.context,x=R.programs,O=R.decorators;for(b=0,N=x.length;b0&&(v+=", "+E.join(", "));var w=0;c(this.aliases).forEach(function(b){var N=S.aliases[b];N.children&&N.referenceCount>1&&(v+=", alias"+ ++w+"="+b,N.children[0]="alias"+w)}),this.lookupPropertyFunctionIsUsed&&(v+=", "+this.lookupPropertyFunctionVarDeclaration());var A=["container","depth0","helpers","partials","data"];(this.useBlockParams||this.useDepths)&&A.push("blockParams"),this.useDepths&&A.push("depths");var D=this.mergeSource(v);return d?(A.push(D),Function.apply(this,A)):this.source.wrap(["function(",A.join(","),`) { + `,D,"}"])},mergeSource:function(d){var S=this.environment.isSimple,v=!this.forceBuffer,E=void 0,w=void 0,A=void 0,D=void 0;return this.source.each(function(b){b.appendToBuffer?(A?b.prepend(" + "):A=b,D=b):(A&&(w?A.prepend("buffer += "):E=!0,D.add(";"),A=D=void 0),w=!0,S||(v=!1))}),v?A?(A.prepend("return "),D.add(";")):w||this.source.push('return "";'):(d+=", buffer = "+(E?"":this.initializeBuffer()),A?(A.prepend("return buffer + "),D.add(";")):this.source.push("return buffer;")),d&&this.source.prepend("var "+d.substring(2)+(E?"":`; `)),this.source.merge()},lookupPropertyFunctionVarDeclaration:function(){return` lookupProperty = container.lookupProperty || function(parent, propertyName) { if (Object.prototype.hasOwnProperty.call(parent, propertyName)) { @@ -47,8 +47,8 @@ Expecting `+O.join(", ")+", got '"+(this.terminals_[P]||P)+"'":"Parse error on l } return undefined } - `.trim()},blockValue:function(d){var S=this.aliasable("container.hooks.blockHelperMissing"),v=[this.contextName(0)];this.setupHelperArgs(d,0,v);var E=this.popStack();v.splice(1,0,E),this.push(this.source.functionCall(S,"call",v))},ambiguousBlockValue:function(){var d=this.aliasable("container.hooks.blockHelperMissing"),S=[this.contextName(0)];this.setupHelperArgs("",0,S,!0),this.flushInline();var v=this.topStack();S.splice(1,0,v),this.pushSource(["if (!",this.lastHelper,") { ",v," = ",this.source.functionCall(d,"call",S),"}"])},appendContent:function(d){this.pendingContent?d=this.pendingContent+d:this.pendingLocation=this.source.currentLocation,this.pendingContent=d},append:function(){if(this.isInline())this.replaceStack(function(S){return[" != null ? ",S,' : ""']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var d=this.popStack();this.pushSource(["if (",d," != null) { ",this.appendToBuffer(d,void 0,!0)," }"]),this.environment.isSimple&&this.pushSource(["else { ",this.appendToBuffer("''",void 0,!0)," }"])}},appendEscaped:function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]))},getContext:function(d){this.lastContext=d},pushContext:function(){this.pushStackLiteral(this.contextName(this.lastContext))},lookupOnContext:function(d,S,v,E){var T=0;E||!this.options.compat||this.lastContext?this.pushContext():this.push(this.depthedLookup(d[T++])),this.resolvePath("context",d,T,S,v)},lookupBlockParam:function(d,S){this.useBlockParams=!0,this.push(["blockParams[",d[0],"][",d[1],"]"]),this.resolvePath("context",S,1)},lookupData:function(d,S,v){d?this.pushStackLiteral("container.data(data, "+d+")"):this.pushStackLiteral("data"),this.resolvePath("data",S,0,!0,v)},resolvePath:function(d,S,v,E,T){var P=this;if(this.options.strict||this.options.assumeObjects)return void this.push(l(this.options.strict&&T,this,S,d));for(var D=S.length;vthis.stackVars.length&&this.stackVars.push("stack"+this.stackSlot),this.topStackName()},topStackName:function(){return"stack"+this.stackSlot},flushInline:function(){var d=this.inlineStack;this.inlineStack=[];for(var S=0,v=d.length;S{var h;/*! + `.trim()},blockValue:function(d){var S=this.aliasable("container.hooks.blockHelperMissing"),v=[this.contextName(0)];this.setupHelperArgs(d,0,v);var E=this.popStack();v.splice(1,0,E),this.push(this.source.functionCall(S,"call",v))},ambiguousBlockValue:function(){var d=this.aliasable("container.hooks.blockHelperMissing"),S=[this.contextName(0)];this.setupHelperArgs("",0,S,!0),this.flushInline();var v=this.topStack();S.splice(1,0,v),this.pushSource(["if (!",this.lastHelper,") { ",v," = ",this.source.functionCall(d,"call",S),"}"])},appendContent:function(d){this.pendingContent?d=this.pendingContent+d:this.pendingLocation=this.source.currentLocation,this.pendingContent=d},append:function(){if(this.isInline())this.replaceStack(function(S){return[" != null ? ",S,' : ""']}),this.pushSource(this.appendToBuffer(this.popStack()));else{var d=this.popStack();this.pushSource(["if (",d," != null) { ",this.appendToBuffer(d,void 0,!0)," }"]),this.environment.isSimple&&this.pushSource(["else { ",this.appendToBuffer("''",void 0,!0)," }"])}},appendEscaped:function(){this.pushSource(this.appendToBuffer([this.aliasable("container.escapeExpression"),"(",this.popStack(),")"]))},getContext:function(d){this.lastContext=d},pushContext:function(){this.pushStackLiteral(this.contextName(this.lastContext))},lookupOnContext:function(d,S,v,E){var w=0;E||!this.options.compat||this.lastContext?this.pushContext():this.push(this.depthedLookup(d[w++])),this.resolvePath("context",d,w,S,v)},lookupBlockParam:function(d,S){this.useBlockParams=!0,this.push(["blockParams[",d[0],"][",d[1],"]"]),this.resolvePath("context",S,1)},lookupData:function(d,S,v){d?this.pushStackLiteral("container.data(data, "+d+")"):this.pushStackLiteral("data"),this.resolvePath("data",S,0,!0,v)},resolvePath:function(d,S,v,E,w){var A=this;if(this.options.strict||this.options.assumeObjects)return void this.push(l(this.options.strict&&w,this,S,d));for(var D=S.length;vthis.stackVars.length&&this.stackVars.push("stack"+this.stackSlot),this.topStackName()},topStackName:function(){return"stack"+this.stackSlot},flushInline:function(){var d=this.inlineStack;this.inlineStack=[];for(var S=0,v=d.length;S{var h;/*! * Sizzle CSS Selector Engine v2.3.6 * https://sizzlejs.com/ * @@ -57,45 +57,45 @@ Expecting `+O.join(", ")+", got '"+(this.terminals_[P]||P)+"'":"Parse error on l * https://js.foundation/ * * Date: 2021-02-16 -*/(function(n){var r,l,c,p,s,u,g,i,m,f,d,S,v,E,T,P,D,_,b,C="sizzle"+1*new Date,I=n.document,R=0,N=0,O=tr(),$=tr(),F=tr(),M=tr(),W=function(k,H){return k===H&&(d=!0),0},G={}.hasOwnProperty,U=[],Y=U.pop,z=U.push,te=U.push,ae=U.slice,he=function(k,H){for(var V=0,ne=k.length;V+~]|"+ye+")"+ye+"*"),Ke=new RegExp(ye+"|>"),Bt=new RegExp(mt),Ze=new RegExp("^"+Pe+"$"),et={ID:new RegExp("^#("+Pe+")"),CLASS:new RegExp("^\\.("+Pe+")"),TAG:new RegExp("^("+Pe+"|[*])"),ATTR:new RegExp("^"+ze),PSEUDO:new RegExp("^"+mt),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ye+"*(even|odd|(([+-]|)(\\d*)n|)"+ye+"*(?:([+-]|)"+ye+"*(\\d+)|))"+ye+"*\\)|)","i"),bool:new RegExp("^(?:"+Q+")$","i"),needsContext:new RegExp("^"+ye+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ye+"*((?:-\\d)?\\d*)"+ye+"*\\)|)(?=[^-]|$)","i")},zt=/HTML$/i,Mr=/^(?:input|select|textarea|button)$/i,Pt=/^h\d$/i,Yt=/^[^{]+\{\s*\[native \w/,mr=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,kt=/[+~]/,pt=new RegExp("\\\\[\\da-fA-F]{1,6}"+ye+"?|\\\\([^\\r\\n\\f])","g"),dt=function(k,H){var V="0x"+k.slice(1)-65536;return H||(V<0?String.fromCharCode(V+65536):String.fromCharCode(V>>10|55296,V&1023|56320))},Tr=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,tn=function(k,H){return H?k==="\0"?"\uFFFD":k.slice(0,-1)+"\\"+k.charCodeAt(k.length-1).toString(16)+" ":"\\"+k},er=function(){S()},vn=Ne(function(k){return k.disabled===!0&&k.nodeName.toLowerCase()==="fieldset"},{dir:"parentNode",next:"legend"});try{te.apply(U=ae.call(I.childNodes),I.childNodes),U[I.childNodes.length].nodeType}catch(k){te={apply:U.length?function(H,V){z.apply(H,ae.call(V))}:function(H,V){for(var ne=H.length,j=0;H[ne++]=V[j++];);H.length=ne-1}}}function tt(k,H,V,ne){var j,ie,oe,Se,_e,Oe,Le,Fe=H&&H.ownerDocument,je=H?H.nodeType:9;if(V=V||[],typeof k!="string"||!k||je!==1&&je!==9&&je!==11)return V;if(!ne&&(S(H),H=H||v,T)){if(je!==11&&(_e=mr.exec(k)))if(j=_e[1]){if(je===9)if(oe=H.getElementById(j)){if(oe.id===j)return V.push(oe),V}else return V;else if(Fe&&(oe=Fe.getElementById(j))&&b(H,oe)&&oe.id===j)return V.push(oe),V}else{if(_e[2])return te.apply(V,H.getElementsByTagName(k)),V;if((j=_e[3])&&l.getElementsByClassName&&H.getElementsByClassName)return te.apply(V,H.getElementsByClassName(j)),V}if(l.qsa&&!M[k+" "]&&(!P||!P.test(k))&&(je!==1||H.nodeName.toLowerCase()!=="object")){if(Le=k,Fe=H,je===1&&(Ke.test(k)||Gt.test(k))){for(Fe=kt.test(k)&&Ee(H.parentNode)||H,(Fe!==H||!l.scope)&&((Se=H.getAttribute("id"))?Se=Se.replace(Tr,tn):H.setAttribute("id",Se=C)),Oe=u(k),ie=Oe.length;ie--;)Oe[ie]=(Se?"#"+Se:":scope")+" "+Me(Oe[ie]);Le=Oe.join(",")}try{return te.apply(V,Fe.querySelectorAll(Le)),V}catch(at){M(k,!0)}finally{Se===C&&H.removeAttribute("id")}}}return i(k.replace(xt,"$1"),H,V,ne)}function tr(){var k=[];function H(V,ne){return k.push(V+" ")>c.cacheLength&&delete H[k.shift()],H[V+" "]=ne}return H}function Ft(k){return k[C]=!0,k}function de(k){var H=v.createElement("fieldset");try{return!!k(H)}catch(V){return!1}finally{H.parentNode&&H.parentNode.removeChild(H),H=null}}function q(k,H){for(var V=k.split("|"),ne=V.length;ne--;)c.attrHandle[V[ne]]=H}function fe(k,H){var V=H&&k,ne=V&&k.nodeType===1&&H.nodeType===1&&k.sourceIndex-H.sourceIndex;if(ne)return ne;if(V){for(;V=V.nextSibling;)if(V===H)return-1}return k?1:-1}function Te(k){return function(H){var V=H.nodeName.toLowerCase();return V==="input"&&H.type===k}}function re(k){return function(H){var V=H.nodeName.toLowerCase();return(V==="input"||V==="button")&&H.type===k}}function me(k){return function(H){return"form"in H?H.parentNode&&H.disabled===!1?"label"in H?"label"in H.parentNode?H.parentNode.disabled===k:H.disabled===k:H.isDisabled===k||H.isDisabled!==!k&&vn(H)===k:H.disabled===k:"label"in H?H.disabled===k:!1}}function ce(k){return Ft(function(H){return H=+H,Ft(function(V,ne){for(var j,ie=k([],V.length,H),oe=ie.length;oe--;)V[j=ie[oe]]&&(V[j]=!(ne[j]=V[j]))})})}function Ee(k){return k&&typeof k.getElementsByTagName!="undefined"&&k}l=tt.support={},s=tt.isXML=function(k){var H=k&&k.namespaceURI,V=k&&(k.ownerDocument||k).documentElement;return!zt.test(H||V&&V.nodeName||"HTML")},S=tt.setDocument=function(k){var H,V,ne=k?k.ownerDocument||k:I;return ne==v||ne.nodeType!==9||!ne.documentElement||(v=ne,E=v.documentElement,T=!s(v),I!=v&&(V=v.defaultView)&&V.top!==V&&(V.addEventListener?V.addEventListener("unload",er,!1):V.attachEvent&&V.attachEvent("onunload",er)),l.scope=de(function(j){return E.appendChild(j).appendChild(v.createElement("div")),typeof j.querySelectorAll!="undefined"&&!j.querySelectorAll(":scope fieldset div").length}),l.attributes=de(function(j){return j.className="i",!j.getAttribute("className")}),l.getElementsByTagName=de(function(j){return j.appendChild(v.createComment("")),!j.getElementsByTagName("*").length}),l.getElementsByClassName=Yt.test(v.getElementsByClassName),l.getById=de(function(j){return E.appendChild(j).id=C,!v.getElementsByName||!v.getElementsByName(C).length}),l.getById?(c.filter.ID=function(j){var ie=j.replace(pt,dt);return function(oe){return oe.getAttribute("id")===ie}},c.find.ID=function(j,ie){if(typeof ie.getElementById!="undefined"&&T){var oe=ie.getElementById(j);return oe?[oe]:[]}}):(c.filter.ID=function(j){var ie=j.replace(pt,dt);return function(oe){var Se=typeof oe.getAttributeNode!="undefined"&&oe.getAttributeNode("id");return Se&&Se.value===ie}},c.find.ID=function(j,ie){if(typeof ie.getElementById!="undefined"&&T){var oe,Se,_e,Oe=ie.getElementById(j);if(Oe){if(oe=Oe.getAttributeNode("id"),oe&&oe.value===j)return[Oe];for(_e=ie.getElementsByName(j),Se=0;Oe=_e[Se++];)if(oe=Oe.getAttributeNode("id"),oe&&oe.value===j)return[Oe]}return[]}}),c.find.TAG=l.getElementsByTagName?function(j,ie){if(typeof ie.getElementsByTagName!="undefined")return ie.getElementsByTagName(j);if(l.qsa)return ie.querySelectorAll(j)}:function(j,ie){var oe,Se=[],_e=0,Oe=ie.getElementsByTagName(j);if(j==="*"){for(;oe=Oe[_e++];)oe.nodeType===1&&Se.push(oe);return Se}return Oe},c.find.CLASS=l.getElementsByClassName&&function(j,ie){if(typeof ie.getElementsByClassName!="undefined"&&T)return ie.getElementsByClassName(j)},D=[],P=[],(l.qsa=Yt.test(v.querySelectorAll))&&(de(function(j){var ie;E.appendChild(j).innerHTML="",j.querySelectorAll("[msallowcapture^='']").length&&P.push("[*^$]="+ye+`*(?:''|"")`),j.querySelectorAll("[selected]").length||P.push("\\["+ye+"*(?:value|"+Q+")"),j.querySelectorAll("[id~="+C+"-]").length||P.push("~="),ie=v.createElement("input"),ie.setAttribute("name",""),j.appendChild(ie),j.querySelectorAll("[name='']").length||P.push("\\["+ye+"*name"+ye+"*="+ye+`*(?:''|"")`),j.querySelectorAll(":checked").length||P.push(":checked"),j.querySelectorAll("a#"+C+"+*").length||P.push(".#.+[+~]"),j.querySelectorAll("\\\f"),P.push("[\\r\\n\\f]")}),de(function(j){j.innerHTML="";var ie=v.createElement("input");ie.setAttribute("type","hidden"),j.appendChild(ie).setAttribute("name","D"),j.querySelectorAll("[name=d]").length&&P.push("name"+ye+"*[*^$|!~]?="),j.querySelectorAll(":enabled").length!==2&&P.push(":enabled",":disabled"),E.appendChild(j).disabled=!0,j.querySelectorAll(":disabled").length!==2&&P.push(":enabled",":disabled"),j.querySelectorAll("*,:x"),P.push(",.*:")})),(l.matchesSelector=Yt.test(_=E.matches||E.webkitMatchesSelector||E.mozMatchesSelector||E.oMatchesSelector||E.msMatchesSelector))&&de(function(j){l.disconnectedMatch=_.call(j,"*"),_.call(j,"[s!='']:x"),D.push("!=",mt)}),P=P.length&&new RegExp(P.join("|")),D=D.length&&new RegExp(D.join("|")),H=Yt.test(E.compareDocumentPosition),b=H||Yt.test(E.contains)?function(j,ie){var oe=j.nodeType===9?j.documentElement:j,Se=ie&&ie.parentNode;return j===Se||!!(Se&&Se.nodeType===1&&(oe.contains?oe.contains(Se):j.compareDocumentPosition&&j.compareDocumentPosition(Se)&16))}:function(j,ie){if(ie){for(;ie=ie.parentNode;)if(ie===j)return!0}return!1},W=H?function(j,ie){if(j===ie)return d=!0,0;var oe=!j.compareDocumentPosition-!ie.compareDocumentPosition;return oe||(oe=(j.ownerDocument||j)==(ie.ownerDocument||ie)?j.compareDocumentPosition(ie):1,oe&1||!l.sortDetached&&ie.compareDocumentPosition(j)===oe?j==v||j.ownerDocument==I&&b(I,j)?-1:ie==v||ie.ownerDocument==I&&b(I,ie)?1:f?he(f,j)-he(f,ie):0:oe&4?-1:1)}:function(j,ie){if(j===ie)return d=!0,0;var oe,Se=0,_e=j.parentNode,Oe=ie.parentNode,Le=[j],Fe=[ie];if(!_e||!Oe)return j==v?-1:ie==v?1:_e?-1:Oe?1:f?he(f,j)-he(f,ie):0;if(_e===Oe)return fe(j,ie);for(oe=j;oe=oe.parentNode;)Le.unshift(oe);for(oe=ie;oe=oe.parentNode;)Fe.unshift(oe);for(;Le[Se]===Fe[Se];)Se++;return Se?fe(Le[Se],Fe[Se]):Le[Se]==I?-1:Fe[Se]==I?1:0}),v},tt.matches=function(k,H){return tt(k,null,null,H)},tt.matchesSelector=function(k,H){if(S(k),l.matchesSelector&&T&&!M[H+" "]&&(!D||!D.test(H))&&(!P||!P.test(H)))try{var V=_.call(k,H);if(V||l.disconnectedMatch||k.document&&k.document.nodeType!==11)return V}catch(ne){M(H,!0)}return tt(H,v,null,[k]).length>0},tt.contains=function(k,H){return(k.ownerDocument||k)!=v&&S(k),b(k,H)},tt.attr=function(k,H){(k.ownerDocument||k)!=v&&S(k);var V=c.attrHandle[H.toLowerCase()],ne=V&&G.call(c.attrHandle,H.toLowerCase())?V(k,H,!T):void 0;return ne!==void 0?ne:l.attributes||!T?k.getAttribute(H):(ne=k.getAttributeNode(H))&&ne.specified?ne.value:null},tt.escape=function(k){return(k+"").replace(Tr,tn)},tt.error=function(k){throw new Error("Syntax error, unrecognized expression: "+k)},tt.uniqueSort=function(k){var H,V=[],ne=0,j=0;if(d=!l.detectDuplicates,f=!l.sortStable&&k.slice(0),k.sort(W),d){for(;H=k[j++];)H===k[j]&&(ne=V.push(j));for(;ne--;)k.splice(V[ne],1)}return f=null,k},p=tt.getText=function(k){var H,V="",ne=0,j=k.nodeType;if(j){if(j===1||j===9||j===11){if(typeof k.textContent=="string")return k.textContent;for(k=k.firstChild;k;k=k.nextSibling)V+=p(k)}else if(j===3||j===4)return k.nodeValue}else for(;H=k[ne++];)V+=p(H);return V},c=tt.selectors={cacheLength:50,createPseudo:Ft,match:et,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(k){return k[1]=k[1].replace(pt,dt),k[3]=(k[3]||k[4]||k[5]||"").replace(pt,dt),k[2]==="~="&&(k[3]=" "+k[3]+" "),k.slice(0,4)},CHILD:function(k){return k[1]=k[1].toLowerCase(),k[1].slice(0,3)==="nth"?(k[3]||tt.error(k[0]),k[4]=+(k[4]?k[5]+(k[6]||1):2*(k[3]==="even"||k[3]==="odd")),k[5]=+(k[7]+k[8]||k[3]==="odd")):k[3]&&tt.error(k[0]),k},PSEUDO:function(k){var H,V=!k[6]&&k[2];return et.CHILD.test(k[0])?null:(k[3]?k[2]=k[4]||k[5]||"":V&&Bt.test(V)&&(H=u(V,!0))&&(H=V.indexOf(")",V.length-H)-V.length)&&(k[0]=k[0].slice(0,H),k[2]=V.slice(0,H)),k.slice(0,3))}},filter:{TAG:function(k){var H=k.replace(pt,dt).toLowerCase();return k==="*"?function(){return!0}:function(V){return V.nodeName&&V.nodeName.toLowerCase()===H}},CLASS:function(k){var H=O[k+" "];return H||(H=new RegExp("(^|"+ye+")"+k+"("+ye+"|$)"))&&O(k,function(V){return H.test(typeof V.className=="string"&&V.className||typeof V.getAttribute!="undefined"&&V.getAttribute("class")||"")})},ATTR:function(k,H,V){return function(ne){var j=tt.attr(ne,k);return j==null?H==="!=":H?(j+="",H==="="?j===V:H==="!="?j!==V:H==="^="?V&&j.indexOf(V)===0:H==="*="?V&&j.indexOf(V)>-1:H==="$="?V&&j.slice(-V.length)===V:H==="~="?(" "+j.replace(It," ")+" ").indexOf(V)>-1:H==="|="?j===V||j.slice(0,V.length+1)===V+"-":!1):!0}},CHILD:function(k,H,V,ne,j){var ie=k.slice(0,3)!=="nth",oe=k.slice(-4)!=="last",Se=H==="of-type";return ne===1&&j===0?function(_e){return!!_e.parentNode}:function(_e,Oe,Le){var Fe,je,at,ke,_t,Dt,ve=ie!==oe?"nextSibling":"previousSibling",le=_e.parentNode,Ae=Se&&_e.nodeName.toLowerCase(),be=!Le&&!Se,Ie=!1;if(le){if(ie){for(;ve;){for(ke=_e;ke=ke[ve];)if(Se?ke.nodeName.toLowerCase()===Ae:ke.nodeType===1)return!1;Dt=ve=k==="only"&&!Dt&&"nextSibling"}return!0}if(Dt=[oe?le.firstChild:le.lastChild],oe&&be){for(ke=le,at=ke[C]||(ke[C]={}),je=at[ke.uniqueID]||(at[ke.uniqueID]={}),Fe=je[k]||[],_t=Fe[0]===R&&Fe[1],Ie=_t&&Fe[2],ke=_t&&le.childNodes[_t];ke=++_t&&ke&&ke[ve]||(Ie=_t=0)||Dt.pop();)if(ke.nodeType===1&&++Ie&&ke===_e){je[k]=[R,_t,Ie];break}}else if(be&&(ke=_e,at=ke[C]||(ke[C]={}),je=at[ke.uniqueID]||(at[ke.uniqueID]={}),Fe=je[k]||[],_t=Fe[0]===R&&Fe[1],Ie=_t),Ie===!1)for(;(ke=++_t&&ke&&ke[ve]||(Ie=_t=0)||Dt.pop())&&!((Se?ke.nodeName.toLowerCase()===Ae:ke.nodeType===1)&&++Ie&&(be&&(at=ke[C]||(ke[C]={}),je=at[ke.uniqueID]||(at[ke.uniqueID]={}),je[k]=[R,Ie]),ke===_e)););return Ie-=j,Ie===ne||Ie%ne===0&&Ie/ne>=0}}},PSEUDO:function(k,H){var V,ne=c.pseudos[k]||c.setFilters[k.toLowerCase()]||tt.error("unsupported pseudo: "+k);return ne[C]?ne(H):ne.length>1?(V=[k,k,"",H],c.setFilters.hasOwnProperty(k.toLowerCase())?Ft(function(j,ie){for(var oe,Se=ne(j,H),_e=Se.length;_e--;)oe=he(j,Se[_e]),j[oe]=!(ie[oe]=Se[_e])}):function(j){return ne(j,0,V)}):ne}},pseudos:{not:Ft(function(k){var H=[],V=[],ne=g(k.replace(xt,"$1"));return ne[C]?Ft(function(j,ie,oe,Se){for(var _e,Oe=ne(j,null,Se,[]),Le=j.length;Le--;)(_e=Oe[Le])&&(j[Le]=!(ie[Le]=_e))}):function(j,ie,oe){return H[0]=j,ne(H,null,oe,V),H[0]=null,!V.pop()}}),has:Ft(function(k){return function(H){return tt(k,H).length>0}}),contains:Ft(function(k){return k=k.replace(pt,dt),function(H){return(H.textContent||p(H)).indexOf(k)>-1}}),lang:Ft(function(k){return Ze.test(k||"")||tt.error("unsupported lang: "+k),k=k.replace(pt,dt).toLowerCase(),function(H){var V;do if(V=T?H.lang:H.getAttribute("xml:lang")||H.getAttribute("lang"))return V=V.toLowerCase(),V===k||V.indexOf(k+"-")===0;while((H=H.parentNode)&&H.nodeType===1);return!1}}),target:function(k){var H=n.location&&n.location.hash;return H&&H.slice(1)===k.id},root:function(k){return k===E},focus:function(k){return k===v.activeElement&&(!v.hasFocus||v.hasFocus())&&!!(k.type||k.href||~k.tabIndex)},enabled:me(!1),disabled:me(!0),checked:function(k){var H=k.nodeName.toLowerCase();return H==="input"&&!!k.checked||H==="option"&&!!k.selected},selected:function(k){return k.parentNode&&k.parentNode.selectedIndex,k.selected===!0},empty:function(k){for(k=k.firstChild;k;k=k.nextSibling)if(k.nodeType<6)return!1;return!0},parent:function(k){return!c.pseudos.empty(k)},header:function(k){return Pt.test(k.nodeName)},input:function(k){return Mr.test(k.nodeName)},button:function(k){var H=k.nodeName.toLowerCase();return H==="input"&&k.type==="button"||H==="button"},text:function(k){var H;return k.nodeName.toLowerCase()==="input"&&k.type==="text"&&((H=k.getAttribute("type"))==null||H.toLowerCase()==="text")},first:ce(function(){return[0]}),last:ce(function(k,H){return[H-1]}),eq:ce(function(k,H,V){return[V<0?V+H:V]}),even:ce(function(k,H){for(var V=0;VH?H:V;--ne>=0;)k.push(ne);return k}),gt:ce(function(k,H,V){for(var ne=V<0?V+H:V;++ne1?function(H,V,ne){for(var j=k.length;j--;)if(!k[j](H,V,ne))return!1;return!0}:k[0]}function Be(k,H,V){for(var ne=0,j=H.length;ne-1&&(oe[Le]=!(Se[Le]=je))}}else le=Ge(le===Se?le.splice(_t,le.length):le),j?j(null,Se,le,Oe):te.apply(Se,le)})}function Tt(k){for(var H,V,ne,j=k.length,ie=c.relative[k[0].type],oe=ie||c.relative[" "],Se=ie?1:0,_e=Ne(function(Fe){return Fe===H},oe,!0),Oe=Ne(function(Fe){return he(H,Fe)>-1},oe,!0),Le=[function(Fe,je,at){var ke=!ie&&(at||je!==m)||((H=je).nodeType?_e(Fe,je,at):Oe(Fe,je,at));return H=null,ke}];Se1&&Ce(Le),Se>1&&Me(k.slice(0,Se-1).concat({value:k[Se-2].type===" "?"*":""})).replace(xt,"$1"),V,Se0,ne=k.length>0,j=function(ie,oe,Se,_e,Oe){var Le,Fe,je,at=0,ke="0",_t=ie&&[],Dt=[],ve=m,le=ie||ne&&c.find.TAG("*",Oe),Ae=R+=ve==null?1:Math.random()||.1,be=le.length;for(Oe&&(m=oe==v||oe||Oe);ke!==be&&(Le=le[ke])!=null;ke++){if(ne&&Le){for(Fe=0,!oe&&Le.ownerDocument!=v&&(S(Le),Se=!T);je=k[Fe++];)if(je(Le,oe||v,Se)){_e.push(Le);break}Oe&&(R=Ae)}V&&((Le=!je&&Le)&&at--,ie&&_t.push(Le))}if(at+=ke,V&&ke!==at){for(Fe=0;je=H[Fe++];)je(_t,Dt,oe,Se);if(ie){if(at>0)for(;ke--;)_t[ke]||Dt[ke]||(Dt[ke]=Y.call(_e));Dt=Ge(Dt)}te.apply(_e,Dt),Oe&&!ie&&Dt.length>0&&at+H.length>1&&tt.uniqueSort(_e)}return Oe&&(R=Ae,m=ve),_t};return V?Ft(j):j}g=tt.compile=function(k,H){var V,ne=[],j=[],ie=F[k+" "];if(!ie){for(H||(H=u(k)),V=H.length;V--;)ie=Tt(H[V]),ie[C]?ne.push(ie):j.push(ie);ie=F(k,Ve(j,ne)),ie.selector=k}return ie},i=tt.select=function(k,H,V,ne){var j,ie,oe,Se,_e,Oe=typeof k=="function"&&k,Le=!ne&&u(k=Oe.selector||k);if(V=V||[],Le.length===1){if(ie=Le[0]=Le[0].slice(0),ie.length>2&&(oe=ie[0]).type==="ID"&&H.nodeType===9&&T&&c.relative[ie[1].type]){if(H=(c.find.ID(oe.matches[0].replace(pt,dt),H)||[])[0],H)Oe&&(H=H.parentNode);else return V;k=k.slice(ie.shift().value.length)}for(j=et.needsContext.test(k)?0:ie.length;j--&&(oe=ie[j],!c.relative[Se=oe.type]);)if((_e=c.find[Se])&&(ne=_e(oe.matches[0].replace(pt,dt),kt.test(ie[0].type)&&Ee(H.parentNode)||H))){if(ie.splice(j,1),k=ne.length&&Me(ie),!k)return te.apply(V,ne),V;break}}return(Oe||g(k,Le))(ne,H,!T,V,!H||kt.test(k)&&Ee(H.parentNode)||H),V},l.sortStable=C.split("").sort(W).join("")===C,l.detectDuplicates=!!d,S(),l.sortDetached=de(function(k){return k.compareDocumentPosition(v.createElement("fieldset"))&1}),de(function(k){return k.innerHTML="",k.firstChild.getAttribute("href")==="#"})||q("type|href|height|width",function(k,H,V){if(!V)return k.getAttribute(H,H.toLowerCase()==="type"?1:2)}),(!l.attributes||!de(function(k){return k.innerHTML="",k.firstChild.setAttribute("value",""),k.firstChild.getAttribute("value")===""}))&&q("value",function(k,H,V){if(!V&&k.nodeName.toLowerCase()==="input")return k.defaultValue}),de(function(k){return k.getAttribute("disabled")==null})||q(Q,function(k,H,V){var ne;if(!V)return k[H]===!0?H.toLowerCase():(ne=k.getAttributeNode(H))&&ne.specified?ne.value:null});var yt=n.Sizzle;tt.noConflict=function(){return n.Sizzle===tt&&(n.Sizzle=yt),tt},h=function(){return tt}.call(y,o,y,w),h!==void 0&&(w.exports=h)})(window)},5547:(w,y,o)=>{var h,n;h=[o(264),o(5422),o(4995),o(3153),o(2954),o(6880),o(4330),o(7116),o(5535),o(1188),o(1210),o(8433)],n=function(r,l,c,p,s,u,g){"use strict";var i=/%20/g,m=/#.*$/,f=/([?&])_=[^&]*/,d=/^(.*?):[ \t]*([^\r\n]*)$/mg,S=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,v=/^(?:GET|HEAD)$/,E=/^\/\//,T={},P={},D="*/".concat("*"),_=l.createElement("a");_.href=s.href;function b(O){return function($,F){typeof $!="string"&&(F=$,$="*");var M,W=0,G=$.toLowerCase().match(p)||[];if(c(F))for(;M=G[W++];)M[0]==="+"?(M=M.slice(1)||"*",(O[M]=O[M]||[]).unshift(F)):(O[M]=O[M]||[]).push(F)}}function C(O,$,F,M){var W={},G=O===P;function U(Y){var z;return W[Y]=!0,r.each(O[Y]||[],function(te,ae){var he=ae($,F,M);if(typeof he=="string"&&!G&&!W[he])return $.dataTypes.unshift(he),U(he),!1;if(G)return!(z=he)}),z}return U($.dataTypes[0])||!W["*"]&&U("*")}function I(O,$){var F,M,W=r.ajaxSettings.flatOptions||{};for(F in $)$[F]!==void 0&&((W[F]?O:M||(M={}))[F]=$[F]);return M&&r.extend(!0,O,M),O}function R(O,$,F){for(var M,W,G,U,Y=O.contents,z=O.dataTypes;z[0]==="*";)z.shift(),M===void 0&&(M=O.mimeType||$.getResponseHeader("Content-Type"));if(M){for(W in Y)if(Y[W]&&Y[W].test(M)){z.unshift(W);break}}if(z[0]in F)G=z[0];else{for(W in F){if(!z[0]||O.converters[W+" "+z[0]]){G=W;break}U||(U=W)}G=G||U}if(G)return G!==z[0]&&z.unshift(G),F[G]}function N(O,$,F,M){var W,G,U,Y,z,te={},ae=O.dataTypes.slice();if(ae[1])for(U in O.converters)te[U.toLowerCase()]=O.converters[U];for(G=ae.shift();G;)if(O.responseFields[G]&&(F[O.responseFields[G]]=$),!z&&M&&O.dataFilter&&($=O.dataFilter($,O.dataType)),z=G,G=ae.shift(),G){if(G==="*")G=z;else if(z!=="*"&&z!==G){if(U=te[z+" "+G]||te["* "+G],!U){for(W in te)if(Y=W.split(" "),Y[1]===G&&(U=te[z+" "+Y[0]]||te["* "+Y[0]],U)){U===!0?U=te[W]:te[W]!==!0&&(G=Y[0],ae.unshift(Y[1]));break}}if(U!==!0)if(U&&O.throws)$=U($);else try{$=U($)}catch(he){return{state:"parsererror",error:U?he:"No conversion from "+z+" to "+G}}}}return{state:"success",data:$}}return r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:s.href,type:"GET",isLocal:S.test(s.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":D,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(O,$){return $?I(I(O,r.ajaxSettings),$):I(r.ajaxSettings,O)},ajaxPrefilter:b(T),ajaxTransport:b(P),ajax:function(O,$){typeof O=="object"&&($=O,O=void 0),$=$||{};var F,M,W,G,U,Y,z,te,ae,he,Q=r.ajaxSetup({},$),ye=Q.context||Q,Pe=Q.context&&(ye.nodeType||ye.jquery)?r(ye):r.event,ze=r.Deferred(),mt=r.Callbacks("once memory"),It=Q.statusCode||{},xt={},Rt={},Gt="canceled",Ke={readyState:0,getResponseHeader:function(Ze){var et;if(z){if(!G)for(G={};et=d.exec(W);)G[et[1].toLowerCase()+" "]=(G[et[1].toLowerCase()+" "]||[]).concat(et[2]);et=G[Ze.toLowerCase()+" "]}return et==null?null:et.join(", ")},getAllResponseHeaders:function(){return z?W:null},setRequestHeader:function(Ze,et){return z==null&&(Ze=Rt[Ze.toLowerCase()]=Rt[Ze.toLowerCase()]||Ze,xt[Ze]=et),this},overrideMimeType:function(Ze){return z==null&&(Q.mimeType=Ze),this},statusCode:function(Ze){var et;if(Ze)if(z)Ke.always(Ze[Ke.status]);else for(et in Ze)It[et]=[It[et],Ze[et]];return this},abort:function(Ze){var et=Ze||Gt;return F&&F.abort(et),Bt(0,et),this}};if(ze.promise(Ke),Q.url=((O||Q.url||s.href)+"").replace(E,s.protocol+"//"),Q.type=$.method||$.type||Q.method||Q.type,Q.dataTypes=(Q.dataType||"*").toLowerCase().match(p)||[""],Q.crossDomain==null){Y=l.createElement("a");try{Y.href=Q.url,Y.href=Y.href,Q.crossDomain=_.protocol+"//"+_.host!=Y.protocol+"//"+Y.host}catch(Ze){Q.crossDomain=!0}}if(Q.data&&Q.processData&&typeof Q.data!="string"&&(Q.data=r.param(Q.data,Q.traditional)),C(T,Q,$,Ke),z)return Ke;te=r.event&&Q.global,te&&r.active++===0&&r.event.trigger("ajaxStart"),Q.type=Q.type.toUpperCase(),Q.hasContent=!v.test(Q.type),M=Q.url.replace(m,""),Q.hasContent?Q.data&&Q.processData&&(Q.contentType||"").indexOf("application/x-www-form-urlencoded")===0&&(Q.data=Q.data.replace(i,"+")):(he=Q.url.slice(M.length),Q.data&&(Q.processData||typeof Q.data=="string")&&(M+=(g.test(M)?"&":"?")+Q.data,delete Q.data),Q.cache===!1&&(M=M.replace(f,"$1"),he=(g.test(M)?"&":"?")+"_="+u.guid+++he),Q.url=M+he),Q.ifModified&&(r.lastModified[M]&&Ke.setRequestHeader("If-Modified-Since",r.lastModified[M]),r.etag[M]&&Ke.setRequestHeader("If-None-Match",r.etag[M])),(Q.data&&Q.hasContent&&Q.contentType!==!1||$.contentType)&&Ke.setRequestHeader("Content-Type",Q.contentType),Ke.setRequestHeader("Accept",Q.dataTypes[0]&&Q.accepts[Q.dataTypes[0]]?Q.accepts[Q.dataTypes[0]]+(Q.dataTypes[0]!=="*"?", "+D+"; q=0.01":""):Q.accepts["*"]);for(ae in Q.headers)Ke.setRequestHeader(ae,Q.headers[ae]);if(Q.beforeSend&&(Q.beforeSend.call(ye,Ke,Q)===!1||z))return Ke.abort();if(Gt="abort",mt.add(Q.complete),Ke.done(Q.success),Ke.fail(Q.error),F=C(P,Q,$,Ke),!F)Bt(-1,"No Transport");else{if(Ke.readyState=1,te&&Pe.trigger("ajaxSend",[Ke,Q]),z)return Ke;Q.async&&Q.timeout>0&&(U=window.setTimeout(function(){Ke.abort("timeout")},Q.timeout));try{z=!1,F.send(xt,Bt)}catch(Ze){if(z)throw Ze;Bt(-1,Ze)}}function Bt(Ze,et,zt,Mr){var Pt,Yt,mr,kt,pt,dt=et;z||(z=!0,U&&window.clearTimeout(U),F=void 0,W=Mr||"",Ke.readyState=Ze>0?4:0,Pt=Ze>=200&&Ze<300||Ze===304,zt&&(kt=R(Q,Ke,zt)),!Pt&&r.inArray("script",Q.dataTypes)>-1&&r.inArray("json",Q.dataTypes)<0&&(Q.converters["text script"]=function(){}),kt=N(Q,kt,Ke,Pt),Pt?(Q.ifModified&&(pt=Ke.getResponseHeader("Last-Modified"),pt&&(r.lastModified[M]=pt),pt=Ke.getResponseHeader("etag"),pt&&(r.etag[M]=pt)),Ze===204||Q.type==="HEAD"?dt="nocontent":Ze===304?dt="notmodified":(dt=kt.state,Yt=kt.data,mr=kt.error,Pt=!mr)):(mr=dt,(Ze||!dt)&&(dt="error",Ze<0&&(Ze=0))),Ke.status=Ze,Ke.statusText=(et||dt)+"",Pt?ze.resolveWith(ye,[Yt,dt,Ke]):ze.rejectWith(ye,[Ke,dt,mr]),Ke.statusCode(It),It=void 0,te&&Pe.trigger(Pt?"ajaxSuccess":"ajaxError",[Ke,Q,Pt?Yt:mr]),mt.fireWith(ye,[Ke,dt]),te&&(Pe.trigger("ajaxComplete",[Ke,Q]),--r.active||r.event.trigger("ajaxStop")))}return Ke},getJSON:function(O,$,F){return r.get(O,$,F,"json")},getScript:function(O,$){return r.get(O,void 0,$,"script")}}),r.each(["get","post"],function(O,$){r[$]=function(F,M,W,G){return c(M)&&(G=G||W,W=M,M=void 0),r.ajax(r.extend({url:F,type:$,dataType:G,data:M,success:W},r.isPlainObject(F)&&F))}}),r.ajaxPrefilter(function(O){var $;for($ in O.headers)$.toLowerCase()==="content-type"&&(O.contentType=O.headers[$]||"")}),r}.apply(y,h),n!==void 0&&(w.exports=n)},3004:(w,y,o)=>{var h,n;h=[o(264),o(4995),o(6880),o(4330),o(5547)],n=function(r,l,c,p){"use strict";var s=[],u=/(=)\?(?=&|$)|\?\?/;r.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var g=s.pop()||r.expando+"_"+c.guid++;return this[g]=!0,g}}),r.ajaxPrefilter("json jsonp",function(g,i,m){var f,d,S,v=g.jsonp!==!1&&(u.test(g.url)?"url":typeof g.data=="string"&&(g.contentType||"").indexOf("application/x-www-form-urlencoded")===0&&u.test(g.data)&&"data");if(v||g.dataTypes[0]==="jsonp")return f=g.jsonpCallback=l(g.jsonpCallback)?g.jsonpCallback():g.jsonpCallback,v?g[v]=g[v].replace(u,"$1"+f):g.jsonp!==!1&&(g.url+=(p.test(g.url)?"&":"?")+g.jsonp+"="+f),g.converters["script json"]=function(){return S||r.error(f+" was not called"),S[0]},g.dataTypes[0]="json",d=window[f],window[f]=function(){S=arguments},m.always(function(){d===void 0?r(window).removeProp(f):window[f]=d,g[f]&&(g.jsonpCallback=i.jsonpCallback,s.push(f)),S&&l(d)&&d(S[0]),S=d=void 0}),"script"})}.apply(y,h),n!==void 0&&(w.exports=n)},2926:(w,y,o)=>{var h,n;h=[o(264),o(5242),o(4995),o(2023),o(5547),o(3599),o(9921),o(5704)],n=function(r,l,c){"use strict";r.fn.load=function(p,s,u){var g,i,m,f=this,d=p.indexOf(" ");return d>-1&&(g=l(p.slice(d)),p=p.slice(0,d)),c(s)?(u=s,s=void 0):s&&typeof s=="object"&&(i="POST"),f.length>0&&r.ajax({url:p,type:i||"GET",dataType:"html",data:s}).done(function(S){m=arguments,f.html(g?r("
").append(r.parseHTML(S)).find(g):S)}).always(u&&function(S,v){f.each(function(){u.apply(this,m||[S.responseText,v,S])})}),this}}.apply(y,h),n!==void 0&&(w.exports=n)},2377:(w,y,o)=>{var h,n;h=[o(264),o(5422),o(5547)],n=function(r,l){"use strict";r.ajaxPrefilter(function(c){c.crossDomain&&(c.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(c){return r.globalEval(c),c}}}),r.ajaxPrefilter("script",function(c){c.cache===void 0&&(c.cache=!1),c.crossDomain&&(c.type="GET")}),r.ajaxTransport("script",function(c){if(c.crossDomain||c.scriptAttrs){var p,s;return{send:function(u,g){p=r("