/g,">").replace(/"/g,""").replace(/'/g,"'")}function u(n,t){return n=n.source,t=t||"",function r(e,i){return e?(i=(i=i.source||i).replace(/(^|[^\[])\^/g,"$1"),n=n.replace(e,i),r):RegExp(n,t)}}function a(){}function o(n){for(var t,r,e=1;arguments.length>e;e++)for(r in t=arguments[e])Object.prototype.hasOwnProperty.call(t,r)&&(n[r]=t[r]);return n}function c(t,r,u){if(u||"function"==typeof r){u||(u=r,r=null);var a,f,s=(r=o({},c.defaults,r||{})).highlight,l=0;try{a=n.lex(t,r)}catch(t){return u(t)}f=a.length;var b=function(n){if(n)return r.highlight=s,u(n);var t;try{t=e.parse(a,r)}catch(t){n=t}return r.highlight=s,n?u(n):u(null,t)};if(!s||3>s.length)return b();if(delete r.highlight,!f)return b();for(;a.length>l;l++)!function(n){"code"!==n.type?--f||b():s(n.text,n.lang,function(t,r){return t?b(t):null==r||r===n.text?--f||b():(n.text=r,n.escaped=!0,void(--f||b()))})}(a[l])}else try{return r&&(r=o({},c.defaults,r)),e.parse(n.lex(t,r),r)}catch(t){if(t.message+="\nPlease report this to https://github.com/chjj/marked.",(r||c.defaults).silent)return"
An error occured:
"+i(t.message+"",!0)+"
";throw t}}var f={newline:/^\n+/,code:/^( {4}[^\n]+\n*)+/,fences:a,hr:/^( *[-*_]){3,} *(?:\n+|$)/,heading:/^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,nptable:a,lheading:/^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,blockquote:/^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,list:/^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:/^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,def:/^ *\[([^\]]+)\]: *([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,table:a,paragraph:/^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,text:/^[^\n]+/};f.bullet=/(?:[*+-]|\d+\.)/,f.item=/^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/,f.item=u(f.item,"gm")(/bull/g,f.bullet)(),f.list=u(f.list)(/bull/g,f.bullet)("hr","\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))")("def","\\n+(?="+f.def.source+")")(),f.blockquote=u(f.blockquote)("def",f.def)(),f._tag="(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b",f.html=u(f.html)("comment",//)("closed",/<(tag)[\s\S]+?<\/\1>/)("closing",/])*?>/)(/tag/g,f._tag)(),f.paragraph=u(f.paragraph)("hr",f.hr)("heading",f.heading)("lheading",f.lheading)("blockquote",f.blockquote)("tag","<"+f._tag)("def",f.def)(),f.normal=o({},f),f.gfm=o({},f.normal,{fences:/^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,paragraph:/^/,heading:/^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/}),f.gfm.paragraph=u(f.paragraph)("(?!","(?!"+f.gfm.fences.source.replace("\\1","\\2")+"|"+f.list.source.replace("\\1","\\3")+"|")(),f.tables=o({},f.gfm,{nptable:/^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,table:/^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/}),n.rules=f,n.lex=function(t,r){return new n(r).lex(t)},n.prototype.lex=function(n){return n=n.replace(/\r\n|\r/g,"\n").replace(/\t/g," ").replace(/\u00a0/g," ").replace(/\u2424/g,"\n"),this.token(n,!0)},n.prototype.token=function(n,t,r){var e,i,u,a,o,c,s,l,b;for(n=n.replace(/^ +$/gm,"");n;)if((u=this.rules.newline.exec(n))&&(n=n.substring(u[0].length),u[0].length>1&&this.tokens.push({type:"space"})),u=this.rules.code.exec(n))n=n.substring(u[0].length),u=u[0].replace(/^ {4}/gm,""),this.tokens.push({type:"code",text:this.options.pedantic?u:u.replace(/\n+$/,"")});else if(u=this.rules.fences.exec(n))n=n.substring(u[0].length),this.tokens.push({type:"code",lang:u[2],text:u[3]||""});else if(u=this.rules.heading.exec(n))n=n.substring(u[0].length),this.tokens.push({type:"heading",depth:u[1].length,text:u[2]});else if(t&&(u=this.rules.nptable.exec(n))){for(n=n.substring(u[0].length),c={type:"table",header:u[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:u[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:u[3].replace(/\n$/,"").split("\n")},l=0;c.align.length>l;l++)c.align[l]=/^ *-+: *$/.test(c.align[l])?"right":/^ *:-+: *$/.test(c.align[l])?"center":/^ *:-+ *$/.test(c.align[l])?"left":null;for(l=0;c.cells.length>l;l++)c.cells[l]=c.cells[l].split(/ *\| */);this.tokens.push(c)}else if(u=this.rules.lheading.exec(n))n=n.substring(u[0].length),this.tokens.push({type:"heading",depth:"="===u[2]?1:2,text:u[1]});else if(u=this.rules.hr.exec(n))n=n.substring(u[0].length),this.tokens.push({type:"hr"});else if(u=this.rules.blockquote.exec(n))n=n.substring(u[0].length),this.tokens.push({type:"blockquote_start"}),u=u[0].replace(/^ *> ?/gm,""),this.token(u,t,!0),this.tokens.push({type:"blockquote_end"});else if(u=this.rules.list.exec(n)){for(n=n.substring(u[0].length),this.tokens.push({type:"list_start",ordered:(a=u[2]).length>1}),e=!1,b=(u=u[0].match(this.rules.item)).length,l=0;b>l;l++)s=(c=u[l]).length,~(c=c.replace(/^ *([*+-]|\d+\.) +/,"")).indexOf("\n ")&&(s-=c.length,c=c.replace(this.options.pedantic?/^ {1,4}/gm:RegExp("^ {1,"+s+"}","gm"),"")),this.options.smartLists&&l!==b-1&&(a===(o=f.bullet.exec(u[l+1])[0])||a.length>1&&o.length>1||(n=u.slice(l+1).join("\n")+n,l=b-1)),i=e||/\n\n(?!\s*$)/.test(c),l!==b-1&&(e="\n"===c.charAt(c.length-1),i||(i=e)),this.tokens.push({type:i?"loose_item_start":"list_item_start"}),this.token(c,!1,r),this.tokens.push({type:"list_item_end"});this.tokens.push({type:"list_end"})}else if(u=this.rules.html.exec(n))n=n.substring(u[0].length),this.tokens.push({type:this.options.sanitize?"paragraph":"html",pre:!this.options.sanitizer&&("pre"===u[1]||"script"===u[1]||"style"===u[1]),text:u[0]});else if(!r&&t&&(u=this.rules.def.exec(n)))n=n.substring(u[0].length),this.tokens.links[u[1].toLowerCase()]={href:u[2],title:u[3]};else if(t&&(u=this.rules.table.exec(n))){for(n=n.substring(u[0].length),c={type:"table",header:u[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:u[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:u[3].replace(/(?: *\| *)?\n$/,"").split("\n")},l=0;c.align.length>l;l++)c.align[l]=/^ *-+: *$/.test(c.align[l])?"right":/^ *:-+: *$/.test(c.align[l])?"center":/^ *:-+ *$/.test(c.align[l])?"left":null;for(l=0;c.cells.length>l;l++)c.cells[l]=c.cells[l].replace(/^ *\| *| *\| *$/g,"").split(/ *\| */);this.tokens.push(c)}else if(t&&(u=this.rules.paragraph.exec(n)))n=n.substring(u[0].length),this.tokens.push({type:"paragraph",text:"\n"===u[1].charAt(u[1].length-1)?u[1].slice(0,-1):u[1]});else if(u=this.rules.text.exec(n))n=n.substring(u[0].length),this.tokens.push({type:"text",text:u[0]});else if(n)throw Error("Infinite loop on byte: "+n.charCodeAt(0));return this.tokens};var s={escape:/^\\([\\`*{}\[\]()#+\-.!_>])/,autolink:/^<([^ >]+(@|:\/)[^ >]+)>/,url:a,tag:/^|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,link:/^!?\[(inside)\]\(href\)/,reflink:/^!?\[(inside)\]\s*\[([^\]]*)\]/,nolink:/^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,strong:/^_\_([\s\S]+?)_\_(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,em:/^\b_((?:[^_]|_\_)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,code:/^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,br:/^ {2,}\n(?!\s*$)/,del:a,text:/^[\s\S]+?(?=[\\?(?:\s+['"]([\s\S]*?)['"])?\s*/,s.link=u(s.link)("inside",s._inside)("href",s._href)(),s.reflink=u(s.reflink)("inside",s._inside)(),s.normal=o({},s),s.pedantic=o({},s.normal,{strong:/^_\_(?=\S)([\s\S]*?\S)_\_(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,em:/^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/}),s.gfm=o({},s.normal,{escape:u(s.escape)("])","~|])")(),url:/^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,del:/^~~(?=\S)([\s\S]*?\S)~~/,text:u(s.text)("]|","~]|")("|","|https?://|")()}),s.breaks=o({},s.gfm,{br:u(s.br)("{2,}","*")(),text:u(s.gfm.text)("{2,}","*")()}),t.rules=s,t.output=function(n,r,e){return new t(r,e).output(n)},t.prototype.output=function(n){for(var t,r,e,u,a="";n;)if(u=this.rules.escape.exec(n))n=n.substring(u[0].length),a+=u[1];else if(u=this.rules.autolink.exec(n))n=n.substring(u[0].length),"@"===u[2]?(r=":"===u[1].charAt(6)?this.mangle(u[1].substring(7)):this.mangle(u[1]),e=this.mangle("mailto:")+r):e=r=i(u[1]),a+=this.renderer.link(e,null,r);else if(this.inLink||!(u=this.rules.url.exec(n))){if(u=this.rules.tag.exec(n))!this.inLink&&/^/i.test(u[0])&&(this.inLink=!1),n=n.substring(u[0].length),a+=this.options.sanitize?this.options.sanitizer?this.options.sanitizer(u[0]):i(u[0]):u[0];else if(u=this.rules.link.exec(n))n=n.substring(u[0].length),this.inLink=!0,a+=this.outputLink(u,{href:u[2],title:u[3]}),this.inLink=!1;else if((u=this.rules.reflink.exec(n))||(u=this.rules.nolink.exec(n))){if(n=n.substring(u[0].length),t=(u[2]||u[1]).replace(/\s+/g," "),!(t=this.links[t.toLowerCase()])||!t.href){a+=u[0].charAt(0),n=u[0].substring(1)+n;continue}this.inLink=!0,a+=this.outputLink(u,t),this.inLink=!1}else if(u=this.rules.strong.exec(n))n=n.substring(u[0].length),a+=this.renderer.strong(this.output(u[2]||u[1]));else if(u=this.rules.em.exec(n))n=n.substring(u[0].length),a+=this.renderer.em(this.output(u[2]||u[1]));else if(u=this.rules.code.exec(n))n=n.substring(u[0].length),a+=this.renderer.codespan(i(u[2],!0));else if(u=this.rules.br.exec(n))n=n.substring(u[0].length),a+=this.renderer.br();else if(u=this.rules.del.exec(n))n=n.substring(u[0].length),a+=this.renderer.del(this.output(u[1]));else if(u=this.rules.text.exec(n))n=n.substring(u[0].length),a+=this.renderer.text(i(this.smartypants(u[0])));else if(n)throw Error("Infinite loop on byte: "+n.charCodeAt(0))}else n=n.substring(u[0].length),r=i(u[1]),a+=this.renderer.link(e=r,null,r);return a},t.prototype.outputLink=function(n,t){var r=i(t.href),e=t.title?i(t.title):null;return"!"!==n[0].charAt(0)?this.renderer.link(r,e,this.output(n[1])):this.renderer.image(r,e,i(n[1]))},t.prototype.smartypants=function(n){return this.options.smartypants?n.replace(/---/g,"—").replace(/--/g,"–").replace(/(^|[-\u2014\/(\[{"\s])'/g,"$1‘").replace(/'/g,"’").replace(/(^|[-\u2014\/(\[{\u2018\s])"/g,"$1“").replace(/"/g,"”").replace(/\.{3}/g,"…"):n},t.prototype.mangle=function(n){if(!this.options.mangle)return n;for(var t,r="",e=n.length,i=0;e>i;i++)t=n.charCodeAt(i),Math.random()>.5&&(t="x"+t.toString(16)),r+=""+t+";";return r},r.prototype.code=function(n,t,r){if(this.options.highlight){var e=this.options.highlight(n,t);null!=e&&e!==n&&(r=!0,n=e)}return t?''+(r?n:i(n,!0))+"\n
\n":""+(r?n:i(n,!0))+"\n
"},r.prototype.blockquote=function(n){return"\n"+n+"
\n"},r.prototype.html=function(n){return n},r.prototype.heading=function(n,t,r){return"\n"},r.prototype.hr=function(){return this.options.xhtml?"
\n":"
\n"},
r.prototype.list=function(n,t){var r=t?"ol":"ul";return"<"+r+">\n"+n+""+r+">\n"},r.prototype.listitem=function(n){return""+n+"\n"},r.prototype.paragraph=function(n){return""+n+"
\n"},r.prototype.table=function(n,t){return"\n"},r.prototype.tablerow=function(n){return"\n"+n+"
\n"},r.prototype.tablecell=function(n,t){var r=t.header?"th":"td";return(t.align?"<"+r+' style="text-align:'+t.align+'">':"<"+r+">")+n+""+r+">\n"},r.prototype.strong=function(n){return""+n+""},r.prototype.em=function(n){return""+n+""},r.prototype.codespan=function(n){return""+n+"
"},r.prototype.br=function(){return this.options.xhtml?"
":"
"},r.prototype.del=function(n){return""+n+""},r.prototype.link=function(n,t,r){if(this.options.sanitize){try{var e=decodeURIComponent((i=n,i.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g,function(n,t){return"colon"===(t=t.toLowerCase())?":":"#"===t.charAt(0)?"x"===t.charAt(1)?String.fromCharCode(parseInt(t.substring(2),16)):String.fromCharCode(+t.substring(1)):""}))).replace(/[^\w:]/g,"").toLowerCase()}catch(n){return""}if(0===e.indexOf("javascript:")||0===e.indexOf("vbscript:")||0===e.indexOf("data:"))return""}var i,u='"+r+""},r.prototype.image=function(n,t,r){var e='
":">"},r.prototype.text=function(n){return n},e.parse=function(n,t,r){return new e(t,r).parse(n)},e.prototype.parse=function(n){this.inline=new t(n.links,this.options,this.renderer),this.tokens=n.reverse();for(var r="";this.next();)r+=this.tok();return r},e.prototype.next=function(){return this.token=this.tokens.pop()},e.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},e.prototype.parseText=function(){for(var n=this.token.text;"text"===this.peek().type;)n+="\n"+this.next().text;return this.inline.output(n)},e.prototype.tok=function(){switch(this.token.type){case"space":return"";case"hr":return this.renderer.hr();case"heading":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text);case"code":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case"table":var n,t,r,e,i="",u="";for(r="",n=0;this.token.header.length>n;n++)r+=this.renderer.tablecell(this.inline.output(this.token.header[n]),{header:!0,align:this.token.align[n]});for(i+=this.renderer.tablerow(r),n=0;this.token.cells.length>n;n++){for(t=this.token.cells[n],r="",e=0;t.length>e;e++)r+=this.renderer.tablecell(this.inline.output(t[e]),{header:!1,align:this.token.align[e]});u+=this.renderer.tablerow(r)}return this.renderer.table(i,u);case"blockquote_start":for(u="";"blockquote_end"!==this.next().type;)u+=this.tok();return this.renderer.blockquote(u);case"list_start":u="";for(var a=this.token.ordered;"list_end"!==this.next().type;)u+=this.tok();return this.renderer.list(u,a);case"list_item_start":for(u="";"list_item_end"!==this.next().type;)u+="text"===this.token.type?this.parseText():this.tok();return this.renderer.listitem(u);case"loose_item_start":for(u="";"list_item_end"!==this.next().type;)u+=this.tok();return this.renderer.listitem(u);case"html":var o=this.token.pre||this.options.pedantic?this.token.text:this.inline.output(this.token.text);return this.renderer.html(o);case"paragraph":return this.renderer.paragraph(this.inline.output(this.token.text));case"text":return this.renderer.paragraph(this.parseText())}},a.exec=a,c.options=c.setOptions=function(n){return o(c.defaults,n),c},c.defaults={gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,sanitizer:null,mangle:!0,smartLists:!1,silent:!1,highlight:null,langPrefix:"lang-",smartypants:!1,headerPrefix:"",renderer:new r,xhtml:!1},c.Parser=e,c.parser=e.parse,c.Renderer=r,c.Lexer=n,c.lexer=n.lex,c.InlineLexer=t,c.inlineLexer=t.output,c.parse=c,void 0!==Pt&&"object"==typeof Wt?Pt.exports=c:"function"==typeof define&&define.amd?define(function(){return c}):this.marked=c}.call(function(){return this||("undefined"!=typeof window?window:global)}()),Pt.exports),or=1,cr=2,fr=0,sr=Kn,lr=e(function(n,t,r){for(;;){if(-2===r.$)return t;var e=r.d,i=n,u=f(n,r.b,r.c,f(lr,n,t,r.e));n=i,t=u,r=e}}),br=function(n){return f(lr,e(function(n,t,r){return c(sr,v(n,t),r)}),Fn,n)},hr=function(n){return{$:1,a:n}},dr=r(function(n,t){return{$:3,a:n,b:t}}),pr=r(function(n,t){return{$:0,a:n,b:t}}),gr=r(function(n,t){return{$:1,a:n,b:t}}),vr=function(n){return{$:0,a:n}},mr=function(n){return{$:2,a:n}},$r=function(n){return{$:0,a:n}},yr={$:1},kr=it,xr=Un,wr=mt,_r=A,Lr=r(function(n,t){return c(rt,n,_(t))}),Ar=r(function(n,t){return w(c(tt,n,t))}),jr=function(n){return c(Lr,"\n ",c(Ar,"\n",n))},Sr=e(function(n,t,r){for(;;){if(!r.b)return t;var e=r.b,i=n,u=c(n,r.a,t);n=i,t=u,r=e}}),Cr=function(n){return f(Sr,r(function(n,t){return t+1}),0,n)},Er=Pn,Or=e(function(n,t,r){for(;;){if(g(n,t)>=1)return r;var e=n,i=t-1,u=c(sr,t,r);n=e,t=i,r=u}}),zr=r(function(n,t){return f(Or,n,t,Fn)}),qr=r(function(n,t){return f(Er,n,c(zr,0,Cr(t)-1),t)}),Rr=function(n){var t=n.charCodeAt(0);return 55296>t||t>56319?t:1024*(t-55296)+n.charCodeAt(1)-56320+65536},Tr=function(n){var t=Rr(n);return t>=97&&122>=t},Nr=function(n){var t=Rr(n);return 90>=t&&t>=65},Mr=function(n){return Tr(n)||Nr(n)},Hr=function(n){return Tr(n)||Nr(n)||function(n){var t=Rr(n);return 57>=t&&t>=48}(n)},Ir=function(n){return f(Sr,sr,Fn,n)},Ur=function(n){var t=n.charCodeAt(0);return isNaN(t)?yr:$r(55296>t||t>56319?v($(n[0]),n.slice(1)):v($(n[0]+n[1]),n.slice(2)))},Fr=r(function(n,t){return"\n\n("+_r(n+1)+") "+jr(Kr(t))}),Kr=function(n){return c(Pr,n,Fn)},Pr=r(function(n,t){n:for(;;)switch(n.$){case 0:var r=n.a,e=n.b,i=function(){var n=Ur(r);if(1===n.$)return!1;var t=n.a,e=t.b;return Mr(t.a)&&c(kr,Hr,e)}();n=e,t=c(sr,i?"."+r:"['"+r+"']",t);continue n;case 1:e=n.b;var u="["+_r(n.a)+"]";n=e,t=c(sr,u,t);continue n;case 2:var a=n.a;if(a.b){if(a.b.b){var o=(t.b?"The Json.Decode.oneOf at json"+c(Lr,"",Ir(t)):"Json.Decode.oneOf")+" failed in the following "+_r(Cr(a))+" ways:";return c(Lr,"\n\n",c(sr,o,c(qr,Fr,a)))}n=e=a.a,t=t;continue n}return"Ran into a Json.Decode.oneOf with no possibilities"+(t.b?" at json"+c(Lr,"",Ir(t)):"!");default:var f=n.a,s=n.b;return(o=t.b?"Problem with the value at json"+c(Lr,"",Ir(t))+":\n\n ":"Problem with the given value:\n\n")+jr(c(wr,4,s))+"\n\n"+f}}),Wr=i(function(n,t,r,e){return{$:0,a:n,b:t,c:r,d:e}}),Br=[],Dr=Jn,Xr=r(function(n,t){return Vn(t)/Vn(n)}),Jr=Dr(c(Xr,2,32)),Yr=s(Wr,0,Jr,Br,Br),Zr=Wn,Vr=function(n){return{$:1,a:n}},Qr=Yn,Gr=function(n){return n.length},ne=r(function(n,t){return g(n,t)>0?n:t}),te=Bn,re=r(function(n,t){for(;;){var r=c(te,32,n),e=r.b,i=c(sr,{$:0,a:r.a},t);if(!e.b)return Ir(i);n=e,t=i}}),ee=r(function(n,t){for(;;){var r=Dr(t/32);if(1===r)return c(te,32,n).a;n=c(re,n,Fn),t=r}}),ie=r(function(n,t){if(t.g){var r=32*t.g,e=Qr(c(Xr,32,r-1)),i=n?Ir(t.j):t.j,u=c(ee,i,t.g);return s(Wr,Gr(t.i)+r,c(ne,5,e*Jr),u,t.i)}return s(Wr,Gr(t.i),Jr,Br,t.i)}),ue=u(function(n,t,r,e,i){for(;;){if(0>t)return c(ie,!1,{j:e,g:r/32|0,i:i});var u=Vr(f(Zr,32,t,n));n=n,t-=32,r=r,e=c(sr,u,e),i=i}}),ae=r(function(n,t){if(n>0){var r=n%32;return l(ue,t,n-r-32,n,Fn,f(Zr,r,n-r,t))}return Yr}),oe=function(n){return!n.$},ce=ht,fe=dt,se=function(n){return{$:0,a:n}},le=function(n){switch(n.$){case 0:return 0;case 1:return 1;case 2:return 2;default:return 3}},be=function(n){return{$:1,a:n}},he=function(n){return{$:0,a:n}},de=function(n){return n},pe=a(function(n,t,r,e,i,u){return{bQ:u,bS:t,cR:e,b0:r,b3:n,b4:i}}),ge=ut,ve=function(n){return n.length},me=et,$e=r(function(n,t){return 1>n?t:f(me,n,ve(t),t)}),ye=ot,ke=function(n){return""===n},xe=r(function(n,t){return 1>n?"":f(me,0,n,t)}),we=function(n){for(var t=0,r=n.charCodeAt(0),e=43==r||45==r?1:0,i=e;n.length>i;++i){var u=n.charCodeAt(i);if(48>u||u>57)return yr;t=10*t+u-48}return i==e?yr:$r(45==r?-t:t)},_e=u(function(n,t,r,e,i){if(ke(i)||c(ge,"@",i))return yr;var u=c(ye,":",i);if(u.b){if(u.b.b)return yr;var a=u.a,o=we(c($e,a+1,i));if(1===o.$)return yr;var f=o;return $r(b(pe,n,c(xe,a,i),f,t,r,e))}return $r(b(pe,n,i,yr,t,r,e))}),Le=i(function(n,t,r,e){if(ke(e))return yr;var i=c(ye,"/",e);if(i.b){var u=i.a;return l(_e,n,c($e,u,e),t,r,c(xe,u,e))}return l(_e,n,"/",t,r,e)}),Ae=e(function(n,t,r){if(ke(r))return yr;var e=c(ye,"?",r);if(e.b){var i=e.a;return s(Le,n,$r(c($e,i+1,r)),t,c(xe,i,r))}return s(Le,n,yr,t,r)}),je=r(function(n,t){if(ke(t))return yr;var r=c(ye,"#",t);if(r.b){var e=r.a;return f(Ae,n,$r(c($e,e+1,t)),c(xe,e,t))}return f(Ae,n,yr,t)}),Se=at,Ce=function(n){return c(Se,"http://",n)?c(je,0,c($e,7,n)):c(Se,"https://",n)?c(je,1,c($e,8,n)):yr},Ee=function(n){for(;;)n=n},Oe=H,ze=Oe(0),qe=i(function(n,t,r,e){if(e.b){var i=e.a,u=e.b;if(u.b){var a=u.a,o=u.b;if(o.b){var l=o.a,b=o.b;if(b.b){var h=b.b;return c(n,i,c(n,a,c(n,l,c(n,b.a,r>500?f(Sr,n,t,Ir(h)):s(qe,n,t,r+1,h)))))}return c(n,i,c(n,a,c(n,l,t)))}return c(n,i,c(n,a,t))}return c(n,i,t)}return t}),Re=e(function(n,t,r){return s(qe,n,t,0,r)}),Te=r(function(n,t){return f(Re,r(function(t,r){return c(sr,n(t),r)}),Fn,t)}),Ne=xt,Me=r(function(n,t){return c(Ne,function(t){return Oe(n(t))},t)}),He=e(function(n,t,r){return c(Ne,function(t){return c(Ne,function(r){return Oe(c(n,t,r))},r)},t)}),Ie=function(n){return f(Re,He(sr),Oe(Fn),n)},Ue=St,Fe=r(function(n,t){var r=t;return F(c(Ne,Ue(n),r))});jt.Task=D(ze,e(function(n,t){return c(Me,function(){return 0},Ie(c(Te,Fe(n),t)))}),e(function(){return Oe(0)}),r(function(n,t){return c(Me,n,t)}));var Ke=J("Task"),Pe=r(function(n,t){return Ke(c(Me,n,t))}),We=function(n){return{$:4,a:n}},Be=function(n){return{$:3,a:n}},De=Y,Xe=o(function(n,t,r,e,i,u,a){return{aU:e,az:i,bf:r,aX:a,H:n,a9:t,bb:u}}),Je=lt,Ye=pt,Ze=st,Ve=ct,Qe=de,Ge=c(bt,function(n){return se(Qe(n))},Ve),ni=c(Je,"data",function(n,t,r,e,i,u,a,o,c){return 8===n.a?n.f(t,r,e,i,u,a,o,c):n(t)(r)(e)(i)(u)(a)(o)(c)}(Ye,Xe,c(Je,"headline",Ze),c(Je,"teaser",Ze),c(Je,"date",Ge),c(Je,"body",Ze),se(0),se(0),se("00.00.00"))),ti=gt,ri=r(function(n,t){return{$:3,a:n,b:t}}),ei=function(n){return{$:0,a:n}},ii=r(function(n,t){return{$:4,a:n,b:t}}),ui={$:2},ai=function(n){return{$:1,a:n}},oi=function(n){return{$:0,a:n}},ci={$:1},fi={$:-2},si=fi,li=function(n){return!n.$},bi=Ct,hi=Hn,di=r(function(n,t){n:for(;;){if(-2===t.$)return yr;var r=t.c,e=t.d,i=t.e;switch(c(hi,n,t.b)){case 0:n=n,t=e;continue n;case 1:return $r(r);default:n=n,t=i;continue n}}}),pi=u(function(n,t,r,e,i){return{$:-1,a:n,b:t,c:r,d:e,e:i}}),gi=u(function(n,t,r,e,i){if(-1!==i.$||i.a){if(-1!==e.$||e.a||-1!==e.d.$||e.d.a)return l(pi,n,t,r,e,i);var u=e.d;return s=e.e,l(pi,0,e.b,e.c,l(pi,1,u.b,u.c,u.d,u.e),l(pi,1,t,r,s,i))}var a=i.b,o=i.c,c=i.d,f=i.e;if(-1!==e.$||e.a)return l(pi,n,a,o,l(pi,0,t,r,e,c),f);var s;return l(pi,0,t,r,l(pi,1,e.b,e.c,e.d,s=e.e),l(pi,1,a,o,c,f))}),vi=e(function(n,t,r){if(-2===r.$)return l(pi,0,n,t,fi,fi);var e=r.a,i=r.b,u=r.c,a=r.d,o=r.e;switch(c(hi,n,i)){case 0:return l(gi,e,i,u,f(vi,n,t,a),o);case 1:return l(pi,e,i,t,a,o);default:return l(gi,e,i,u,a,f(vi,n,t,o))}}),mi=e(function(n,t,r){var e=f(vi,n,t,r);return-1!==e.$||e.a?e:l(pi,1,e.b,e.c,e.d,e.e)}),$i=function(n){if(-1===n.$&&-1===n.d.$&&-1===n.e.$){if(-1!==n.e.d.$||n.e.d.a){var t=n.d,r=n.e;return a=r.b,o=r.c,e=r.d,s=r.e,l(pi,1,n.b,n.c,l(pi,0,t.b,t.c,t.d,t.e),l(pi,0,a,o,e,s))}var e,i=n.d,u=n.e,a=u.b,o=u.c,c=(e=u.d,e.d),f=e.e,s=u.e;return l(pi,0,e.b,e.c,l(pi,1,n.b,n.c,l(pi,0,i.b,i.c,i.d,i.e),c),l(pi,1,a,o,f,s))}return n},yi=function(n){if(-1===n.$&&-1===n.d.$&&-1===n.e.$){if(-1!==n.d.d.$||n.d.d.a){var t=n.d,r=t.d,e=n.e;return s=e.b,b=e.c,h=e.d,d=e.e,l(pi,1,i=n.b,u=n.c,l(pi,0,t.b,t.c,r,c=t.e),l(pi,0,s,b,h,d))}var i=n.b,u=n.c,a=n.d,o=a.d,c=a.e,f=n.e,s=f.b,b=f.c,h=f.d,d=f.e;return l(pi,0,a.b,a.c,l(pi,1,o.b,o.c,o.d,o.e),l(pi,1,i,u,c,l(pi,0,s,b,h,d)))}return n},ki=o(function(n,t,r,e,i,u,a){if(-1!==u.$||u.a){n:for(;;){if(-1===a.$&&1===a.a){if(-1===a.d.$){if(1===a.d.a)return yi(t);break n}return yi(t)}break n}return t}return l(pi,r,u.b,u.c,u.d,l(pi,0,e,i,u.e,a))}),xi=function(n){if(-1===n.$&&-1===n.d.$){var t=n.a,r=n.b,e=n.c,i=n.d,u=i.d,a=n.e;if(1===i.a){if(-1!==u.$||u.a){var o=$i(n);if(-1===o.$){var c=o.e;return l(gi,o.a,o.b,o.c,xi(o.d),c)}return fi}return l(pi,t,r,e,xi(i),a)}return l(pi,t,r,e,xi(i),a)}return fi},wi=r(function(n,t){if(-2===t.$)return fi;var r=t.a,e=t.b,i=t.c,u=t.d,a=t.e;if(0>g(n,e)){if(-1===u.$&&1===u.a){var o=u.d;if(-1!==o.$||o.a){var f=$i(t);if(-1===f.$){var s=f.e;return l(gi,f.a,f.b,f.c,c(wi,n,f.d),s)}return fi}return l(pi,r,e,i,c(wi,n,u),a)}return l(pi,r,e,i,c(wi,n,u),a)}return c(_i,n,h(ki,n,t,r,e,i,u,a))}),_i=r(function(n,t){if(-1===t.$){var r=t.a,e=t.b,i=t.c,u=t.d,a=t.e;if(d(n,e)){var o=function(n){for(;;){if(-1!==n.$||-1!==n.d.$)return n;n=n.d}}(a);return-1===o.$?l(gi,r,o.b,o.c,u,xi(a)):fi}return l(gi,r,e,i,u,c(wi,n,a))}return fi}),Li=r(function(n,t){var r=c(wi,n,t);return-1!==r.$||r.a?r:l(pi,1,r.b,r.c,r.d,r.e)}),Ai=e(function(n,t,r){var e=t(c(di,n,r));return e.$?c(Li,n,r):f(mi,n,e.a,r)}),ji=e(function(n,t,r){return t(n(r))}),Si=r(function(n,t){return f(rr,"",de,c(ji,t,n))}),Ci=r(function(n,t){return t.$?hr(n(t.a)):vr(t.a)}),Ei=function(n){return{$:4,a:n}},Oi={$:2},zi={$:1},qi=r(function(n,t){switch(t.$){case 0:return hr({$:0,a:t.a});case 1:return hr(zi);case 2:return hr(Oi);case 3:return hr(function(n){return{$:3,a:n}}(t.a.c1));default:return c(Ci,Ei,n(t.b))}}),Ri=r(function(n,t){return c(Si,n,qi(function(n){return c(Ci,Kr,c(ti,t,n))}))}),Ti={$:0},Ni=function(n){return{$:1,a:n}},Mi=r(function(n,t){return{b7:n,cd:t}}),Hi=Oe(c(Mi,si,Fn)),Ii=function(n){return I(function(t){var r=n.f;2===r.$&&r.c&&r.c(),n.f=null,t(H(In))})},Ui=F,Fi=e(function(n,t,r){n:for(;;){if(t.b){var e=t.a,i=t.b;if(e.$){var u=e.a;return c(Ne,function(t){var e=u.cg;return f(Fi,n,i,1===e.$?r:f(mi,e.a,t,r))},Ui(f(tr,n,Ue(n),u)))}var a=e.a,o=c(di,a,r);if(1===o.$){n=n,t=i,r=r;continue n}return c(Ne,function(){return f(Fi,n,i,c(Li,a,r))},Ii(o.a))}return Oe(r)}}),Ki=i(function(n,t,r,e){return c(Ne,function(n){return Oe(c(Mi,n,r))},f(Fi,n,t,e.b7))}),Pi=e(function(n,t,r){var e=n(t);return e.$?r:c(sr,e.a,r)}),Wi=r(function(n,t){return f(Re,Pi(n),Fn,t)}),Bi=i(function(n,t,r,e){var i=e.b;return d(t,e.a)?$r(c(Ue,n,i(r))):yr}),Di=e(function(n,t,r){return c(Ne,function(){return Oe(r)},Ie(c(Wi,f(Bi,n,t.a,t.b),r.cd)))}),Xi=r(function(n,t){if(t.$){var r=t.a;return Ni({co:r.co,aU:r.aU,cy:c(er,n,r.cy),bR:r.bR,cK:r.cK,c5:r.c5,cg:r.cg,c9:r.c9})}return{$:0,a:t.a}}),Ji=r(function(n,t){return{$:0,a:n,b:t}});jt.Http=D(Hi,Ki,Di,Xi,r(function(n,t){return c(Ji,t.a,c(ji,t.b,n))}));var Yi,Zi=J("Http"),Vi=(J("Http"),function(n){return function(n){return Zi(Ni({co:!1,aU:n.aU,cy:n.cy,bR:n.bR,cK:n.cK,c5:n.c5,cg:n.cg,c9:n.c9}))}({aU:Ti,cy:n.cy,bR:Fn,cK:"GET",c5:yr,cg:yr,c9:n.c9})}),Qi=Rn(function(){return{ca:Tn(),cj:{ck:Vt.pageXOffset,cl:Vt.pageYOffset,da:Zt.documentElement.clientWidth,cE:Zt.documentElement.clientHeight}}}),Gi=function(n){return{$:3,b:n}},nu={bg:$r(""),bd:$r(0)},tu=u(function(n,t,r,e,i){return{R:e,V:r,N:t,by:i,_:n}}),ru=function(n){return n.b&&(""!==n.a||n.b.b)?c(sr,n.a,ru(n.b)):Fn},eu=r(function(n,t){return $r(1===t.$?w([n]):c(sr,n,t.a))}),iu=function(n){try{return $r(decodeURIComponent(n))}catch(n){return yr}},uu=r(function(n,t){var r=c(Ar,"=",n);if(r.b&&r.b.b&&!r.b.b.b){var e=r.b.a,i=iu(r.a);if(1===i.$)return t;var u=i.a,a=iu(e);return 1===a.$?t:f(Ai,u,eu(a.a),t)}return t}),au=r(function(n,t){var r;return function(n){n:for(;;){if(n.b){var t=n.a,r=t.N;if(r.b){if(""!==r.a||r.b.b){n=n.b;continue n}return $r(t.by)}return $r(t.by)}return yr}}(n(l(tu,Fn,function(n){var t=c(Ar,"/",n);return ru(t.b&&""===t.a?t.b:t)}(t.cR),1===(r=t.b4).$?si:f(Re,uu,si,c(Ar,"&",r.a)),t.bQ,de)))}),ou=r(function(n,t){return{bg:t,bd:n}}),cu=r(function(n,t){return t.$?n:t.a}),fu=r(function(n,t){return function(r){return t(c(cu,Fn,c(di,n,r)))}}),su=r(function(n,t){return c(fu,n,function(n){return n.b&&!n.b.b?c(di,n.a,t):yr})}),lu=function(n){return f(Sr,r(function(n,t){return f(mi,n.a,n.b,t)}),si,n)},bu=f(e(function(n,t,r){var e=t,i=r;return function(t){return c(n,e(t),i(t))}}),ou,c(su,"view",lu(w([v("login",0),v("index",1),v("doc",2)]))),c(fu,"document",function(n){return n.b&&!n.b.b?$r(n.a):yr})),hu=(Yi=bu,function(n){var t=n.V;return w([l(tu,n._,n.N,t,n.R,(0,n.by)(Yi(t)))])}),du=function(n){return c(cu,nu,c(au,hu,y(n,{cR:""})))},pu=e(function(n,t,r){return v({l:Fn,bh:"",S:{ax:.45,t:500,aK:1100,aL:50,M:25,B:2,aM:450,u:1100},bm:r,aI:du(t),a7:(e=function(n){return{$:9,a:n}},{aW:0,bi:e,P:si})},De(w([Vi({cy:c(Ri,We,Gi(ni)),c9:"data.js"}),c(Pe,Be,Qi)])));var e}),gu=r(function(n,t){return{$:2,a:n,b:t}}),vu=function(n){return{$:8,a:n}},mu=Y,$u=e(function(n,t,r){return{$:0,a:n,b:t,c:r}}),yu=r(function(n,t){return{b$:t,cd:n}}),ku=Oe(c(yu,Fn,si)),xu=function(n){var t=n.b;return v(k(function(n){return n?"w_":"d_"}(n.a),t),n)},wu=e(function(n,t,r){for(;;){if(-2===r.$)return t;var e=r.e,i=n,u=f(n,r.b,r.c,f(wu,n,t,r.d));n=i,t=u,r=e}}),_u=a(function(n,t,i,u,a,o){var c=f(wu,e(function(r,e,u){n:for(;;){var a=u.a,o=u.b;if(a.b){var c=a.a,l=c.a,b=c.b,h=a.b;if(0>g(l,r)){r=r,e=e,u=v(h,f(n,l,b,o));continue n}return g(l,r)>0?v(a,f(i,r,e,o)):v(h,s(t,l,b,e,o))}return v(a,f(i,r,e,o))}}),v(br(u),o),a),l=c.a,b=c.b;return f(Sr,r(function(t,r){return f(n,t.a,t.b,r)}),b,l)}),Lu=r(function(n,t){return{bO:t,bm:n}}),Au=e(function(n,t,r){return c(Me,function(n){return v(t,n)},f(Qt,r.a?Vt:Zt,r.b,function(r){return c(bi,n,c(Lu,t,r))}))}),ju=r(function(n,t){return f(wu,mi,t,n)});jt["Browser.Events"]=D(ku,e(function(n,t,r){var u=e(function(t,r,e){var i=e.c;return m(e.a,e.b,c(sr,f(Au,n,t,r),i))}),a=e(function(n,t,r){var e=r.b,i=r.c;return m(c(sr,t,r.a),e,i)}),o=i(function(n,t,r,e){var i=e.c;return m(e.a,f(mi,n,t,e.b),i)}),s=c(Te,xu,t),l=b(_u,a,o,u,r.b$,lu(s),m(Fn,si,Fn)),h=l.b,d=l.c;return c(Ne,function(n){return Oe(c(yu,s,c(ju,h,lu(n))))},c(Ne,function(){return Ie(d)},Ie(c(Te,Ii,l.a))))}),e(function(n,t,r){var e=t.bm,i=t.bO,u=c(Wi,function(n){var t=n.b,r=t.c;return d(n.a,e)?c(Gt,r,i):yr},r.cd);return c(Ne,function(){return Oe(r)},Ie(c(Te,Ue(n),u)))}),0,r(function(n,t){return f($u,t.a,t.b,c(ce,n,t.c))}));var Su,Cu,Eu,Ou=J("Browser.Events"),zu=e(function(n,t,r){return Ou(f($u,n,t,r))}),qu=ft,Ru=(Cu=qu,G(Su="receiveJsValue"),jt[Su]={f:qt,u:Cu,a:tn},J(Su)),Tu=r(function(n,t){return{$:7,a:n,b:t}}),Nu=function(n){return{$:5,a:n}},Mu=function(n){return{$:6,a:n}},Hu={$:10},Iu=r(function(n,t){return t.b?f(Re,sr,t,n):n}),Uu=e(function(n,t,r){for(;;){var e=c(te,32,n),i=e.a,u=e.b;if(0>g(Gr(i),32))return c(ie,!0,{j:t,g:r,i:i});n=u,t=c(sr,Vr(i),t),r+=1}}),Fu=function(n){return n.b?f(Uu,n,Fn,0):Yr},Ku=i(function(n,t,r,e){for(;;){if(1>t)return v(n,e);var i=r(e),u=i.b;n=c(sr,i.a,n),t-=1,r=r,e=u}}),Pu=r(function(n,t){var r=t;return function(t){return s(Ku,Fn,n,r,t)}}),Wu=r(function(n,t){var r=t;return function(t){var e=r(t),i=e.b;return v(n(e.a),i)}}),Bu=r(function(n,t){return c(Wu,Fu,c(Pu,n,t))}),Du=function(n,t){return G(n),jt[n]={e:zt,u:t,a:nn},J(n)}("callJsValue",de),Xu=N,Ju=r(function(n,t){return N(f(Sr,function(n){return r(function(t,r){return r.push(M(n(t))),r})}(n),[],t))}),Yu=function(n){return N(f(Sr,r(function(n,t){return f($t,n.a,n.b,t)}),{},n))},Zu=r(function(n,t){return y(t,{aW:n})}),Vu=r(function(n,t){return y(t,{P:n})}),Qu=N,Gu=i(function(n,t,r,e){var i=Yu(w([v("k",Xu(e.a7.aW)),v("f",c(Ju,Qu,t)),v("p",c(Ju,function(n){return n},r))])),u=f(mi,e.a7.aW,n,e.a7.P);return v(y(e,{a7:c(Zu,function(n){return n.aW}(e.a7)+1,c(Vu,u,e.a7))}),Du(i))}),na=Fu(w(["#FCC","#FFC","#CFA","#CFF","#CCF","#FCF"])),ta=vt,ra=r(function(n,t){return{$:0,a:n,b:t}}),ea=function(n){var t=n.b;return c(ra,1664525*n.a+t>>>0,t)},ia=(Eu=Qe,I(function(n){n(H(Eu(Date.now())))})),ua=function(n){return n},aa=c(Ne,function(n){return Oe((t=ua(n),r=ea(c(ra,0,1013904223)),ea(c(ra,r.a+t>>>0,r.b))));var t,r},ia),oa=r(function(n,t){return n(t)}),ca=e(function(n,t,r){if(t.b){var e=t.b,i=c(oa,t.a,r),u=i.b;return c(Ne,function(){return f(ca,n,e,u)},c(Ue,n,i.a))}return Oe(r)});jt.Random=D(aa,ca,e(function(n,t,r){return Oe(r)}),r(function(n,t){return c(Wu,n,t)}));var fa,sa=J("Random"),la=r(function(n,t){return sa(c(Wu,n,t))}),ba=4294967295>>>32-Jr,ha=Dn,da=e(function(n,t,r){for(;;){var e=c(ha,ba&t>>>n,r);if(e.$)return c(ha,ba&t,e.a);n-=Jr,t=t,r=e.a}}),pa=r(function(n,t){var r=t.a,e=t.b,i=t.c,u=t.d;return 0>n||g(n,r)>-1?yr:$r(g(n,function(n){return n>>>5<<5}(r))>-1?c(ha,ba&n,u):f(da,e,n,i))}),ga=r(function(n,t){n:for(;;){if(n>0){if(t.b){n-=1,t=t.b;continue n}return t}return t}}),va=function(n){return n.b?$r(n.a):yr},ma=r(function(n,t){return 0>n?yr:va(c(ga,n,t))}),$a=e(function(n,t,e){return f(Re,r(function(t,r){var e=r.a;return v(e-1,f(n,e,t,r.b))}),v(Cr(e)-1,t),e).b}),ya=function(n){var t=n.a,r=277803737*(t^t>>>4+(t>>>28));return(r>>>22^r)>>>0},ka=r(function(n,t){return function(r){var e=0>g(n,t)?v(n,t):v(t,n),i=e.a,u=e.b-i+1;if(u-1&u){var a=(-u>>>0)%u>>>0;return function(n){for(;;){var t=ya(n),r=ea(n);if(g(t,a)>=0)return v(t%u+i,r);n=r}}(r)}return v(((u-1&ya(r))>>>0)+i,ea(r))}}),xa=function(n){return n.a},wa=function(n){return c(Pe,Ee,I(function(){try{Vt.location=n}catch(n){Rt.location.reload(!1)}}))},_a=De(Fn),La=Jt,Aa=f(fe,r(function(n,t){return{bm:n,by:t}}),c(Je,"k",Ve),c(Je,"r",qu)),ja={bm:-1,by:Qu("")},Sa=r(function(n,t){return t.$?n:t.a}),Ca=r(function(n,t){var r,e=c(Sa,ja,c(ta,Aa,n));return v((r=c(di,e.bm,t.a7.P)).$?t.a7.bi("Internal Error, no function stored for missing key "+_r(e.bm)):(0,r.a)(e.by),y(t,{a7:c(Vu,c(Li,e.bm,t.a7.P),t.a7)}))}),Ea=r(function(n){return n}),Oa=e(function(n,t,r){n:for(;;){if(n>0){if(t.b){var e=t.a;n-=1,t=t.b,r=c(sr,e,r);continue n}return r}return r}}),za=r(function(n,t){return Ir(f(Oa,n,t,Fn))}),qa=e(function(n,t,r){if(t>0){var e=v(t,r);n:for(;;){t:for(;;){if(!e.b.b)return r;if(!e.b.b.b){if(1===e.a)break n;break t}switch(e.a){case 1:break n;case 2:var i=e.b;return w([i.a,i.b.a]);case 3:if(e.b.b.b.b){var u=e.b,a=u.b;return w([u.a,a.a,a.b.a])}break t;default:if(e.b.b.b.b&&e.b.b.b.b.b){var o=e.b,s=o.b,l=s.b,b=l.b,h=b.a,d=b.b;return c(sr,o.a,c(sr,s.a,c(sr,l.a,c(sr,h,n>1e3?c(za,t-4,d):f(qa,n+1,t-4,d)))))}break t}}return r}return w([e.b.a])}return Fn}),Ra=r(function(n,t){return f(qa,0,n,t)}),Ta=e(function(n,t,r){if(0>n)return r;var e=c(ga,n,r);if(e.b){var i=e.b;return k(c(Ra,n,r),c(sr,t(e.a),i))}return r}),Na=r(function(n,t){return c(Ta,n,Ea(t))}),Ma=nr,Ha=r(function(n,t){return 1===n.$?t:t+":"+_r(n.a)}),Ia=e(function(n,t,r){return 1===t.$?r:k(r,k(n,t.a))}),Ua=function(n){return f(Ia,"#",n.bQ,f(Ia,"?",n.b4,k(c(Ha,n.b0,k(n.b3?"https://":"http://",n.bS)),n.cR)))},Fa=Fu(w(["rotate(-4deg)","rotate(-3deg)","rotate(-2deg)","rotate(-1deg)","","rotate(1deg)","rotate(2deg)","rotate(3deg)","rotate(4deg)","skew(-3deg)","skew(-2deg)","skew(-1deg)","","skew(1deg)","skew(2deg)","skew(3deg)"])),Ka=r(function(n,t){n:for(;;)switch(n.$){case 0:return v(y(t,{aI:du(n.a)}),_a);case 1:if((u=n.a).$)return v(t,wa(u.a));var i=u.a;return v(t,De(w([c(Pe,function(){return Hu},c(Ma,0,0)),c(La,t.bm,Ua(i))])));case 4:var u;if((u=n.a).$)return A=u.a,v(y(t,{bh:"some http error"}),_a);var a=u.a;return v(y(t,{l:a,a7:(A=f($a,e(function(n,t,r){var e=s(Gu,function(t){return c(Tu,n,c(Sa,"",c(ta,Ze,t)))},w(["datetimestring"]),w([Qu("de-DE"),Yu(w([v("weekday",Qu("long")),v("year",Qu("numeric")),v("month",Qu("long")),v("day",Qu("2-digit")),v("timeZone",Qu("UTC"))])),Xu(ua(t.bf))]),r.a0),i=e.a;return{aW:c(Iu,r.aW,w([e.b])),a0:i}}),{aW:Fn,a0:t},a)).a0.a7}),De(c(Iu,w([c(la,Nu,c(Bu,Cr(a),c(ka,0,xa(na)-1))),c(la,Mu,c(Bu,Cr(a),c(ka,0,xa(Fa)-1)))]),A.aW)));case 2:return v(t,c(Pe,Be,Qi));case 3:var o=n.a,l=o.cj.cE,b=o.cj.da,h=.98*b,d=Dr(h/600),p=Dr(Cr(t.l)/d),g=h/d,m=.1*g,$=(b-h)/2+m,k=.05*g,x=g-2*m-2*k;return v(y(t,{S:{ax:(x+2*k)/b,t:g,aK:c(ne,g*p,c(ne,l,b)),aL:$,M:k,B:d,aM:x,u:b}}),_a);case 5:var _=n.a;return v(y(t,{l:c(qr,r(function(n,t){return y(t,{az:c(cu,0,c(pa,n,_))})}),t.l)}),_a);case 6:return _=n.a,v(y(t,{l:c(qr,r(function(n,t){return y(t,{bb:c(cu,0,c(pa,n,_))})}),t.l)}),_a);case 7:var L=n.a,A=n.b;return v(y(t,{l:(S=c(ma,L,t.l),S.$?t.l:f(Na,L,y(S.a,{aX:A}),t.l))}),_a);case 8:var j=c(Ca,n.a,t);n=j.a,t=j.b;continue n;case 9:return A=n.a,v(t,_a);default:return v(t,_a)}var S}),Pa=function(n){return f(Re,Iu,Fn,n)},Wa=It,Ba=function(n){return Ht(an(n))},Da=Ba,Xa=Nt("p"),Ja=en,Ya=Ja,Za=Nt("a"),Va=r(function(n,t){return c(Ft,n,Qu(t))}),Qa=Va("className"),Ga=e(function(n,t,r){return{$:0,a:n,b:t,c:r}}),no=r(function(n,t){return c(Kt,function(n){return/^(on|formAction$)/i.test(n)?"data-"+n:n}(n),on(t))}),to=r(function(n,t){for(;;){if(!t.b)return!1;var r=t.b;if(n(t.a))return!0;n=n,t=r}}),ro=e(function(n,t,r){return n(t(r))}),eo=function(n){return!n},io=r(function(n,t){return!c(to,c(ro,eo,n),t)}),uo=function(n){return!n.b},ao=r(function(n,t){var r=t.a,e=t.b;switch(n.$){case 0:return uo(n.a.c)?v(r,e):v(r,c(sr,n,e));case 1:return v(r,c(io,function(n){return uo(n.c)},n.b)?e:c(sr,n,e));case 2:return uo(n.b)?v(r,e):v(r,c(sr,n,e));case 3:return v(r,c(sr,n,e));case 4:return uo(n.b)?v(r,e):v(r,c(sr,n,e));case 5:return uo(n.a)?v(r,e):v(r,c(sr,n,e));case 6:var i=n.a;return ke(i.ct)?v(r,e):v(f(mi,i.cM,i.ct,r),e);case 7:case 8:return uo(n.a)?v(r,e):v(r,c(sr,n,e));default:return v(r,c(io,function(n){return uo(n.b)},n.a)?e:c(sr,n,e))}}),oo=function(n){return{$:6,a:n}},co=r(function(n,t){return c(Iu,c(Te,function(n){return oo({ct:n.b,cM:n.a})},br(n)),t)}),fo=function(n){var t=n.bU,r=n.bZ;return{bK:n.bK,cu:function(n){var t=f(Re,ao,v(si,Fn),n);return c(co,t.a,t.b)}(n.cu),bU:t,bZ:r}},so=r(function(n,t){return t.$?yr:$r(n(t.a))}),lo=i(function(n,t,r,e){n:for(;;){if(r.b){if(r.b.b){var i=n,u=t,a=r.b,o=e+(n(r.a)+(t+""));n=i,t=u,r=a,e=o;continue n}return e+(n(r.a)+"")}return e}}),bo=e(function(n,t,r){return s(lo,n,t,r,"")}),ho=function(n){return"("+n.bP+c(cu,"",c(so,xr(": "),n.by))+")"},po=function(n){var t=e(function(n,t,r){return n+" "+c(Lr," and ",c(sr,function(n){switch(n){case 0:return"print";case 1:return"screen";default:return"speech"}}(t),c(Te,ho,r)))});switch(n.$){case 0:return f(bo,ho," and ",n.a);case 1:return f(t,"only",n.a,n.b);case 2:return f(t,"not",n.a,n.b);default:return n.a}},go=r(function(n,t){return'@import "'+n+po(t)+'"'}),vo=function(n){var t=n.b;return f(bo,go(n.a),"\n",t)},mo=function(n){return"@namespace "+n.a+'"'+n.b+'"'},$o=Gn,yo=function(n){return"::"+n},ko=function(n){switch(n.$){case 0:return"."+n.a;case 1:return"#"+n.a;case 2:return":"+n.a;default:return"["+n.a+"]"}},xo=function(n){switch(n.$){case 0:return k(n.a,f(bo,ko,"",t=n.b));case 1:return uo(t=n.a)?"*":f(bo,ko,"",t);default:var t;return k(n.a,f(bo,ko,"",t=n.b))}},wo=function(n){var t=n.b;return function(n){switch(n){case 0:return"+";case 1:return"~";case 2:return">";default:return""}}(n.a)+" "+xo(t)},_o=function(n){var t=n.b,r=n.c,e=c(sr,xo(n.a),c(Te,wo,t)),i=c(cu,"",c(so,yo,r));return c($o,c(Lr," ",e),i)},Lo=function(n){var t=n.c;return f(bo,_o,",",c(sr,n.a,n.b))+"{"+function(n){return f(bo,function(n){return n+";"},"",n)}(t)+"}"},Ao=function(n){switch(n.$){case 0:return Lo(n.a);case 1:var t=n.b;return"@media "+f(bo,po,", ",n.a)+"{"+f(bo,Lo,"\n",t)+"}";case 2:case 3:case 4:case 5:return"TODO";case 6:return"@keyframes "+n.a.cM+"{"+n.a.ct+"}";case 7:case 8:default:return"TODO"}},jo=function(n){var t=n.bU,r=n.bZ,e=n.cu;return function(n){return c(cu,"",c(so,function(n){return'@charset "'+n+'"'},n))}(n.bK)+(f(bo,vo,"\n",t)+(f(bo,mo,"\n",r)+(f(bo,Ao,"\n",e)+"")))},So=r(function(n,t){return Pa(c(Te,n,t))}),Co=function(n){return{$:8,a:n}},Eo=function(n){return{$:5,a:n}},Oo=r(function(n,t){return{$:4,a:n,b:t}}),zo=e(function(n,t,r){return{$:0,a:n,b:t,c:r}}),qo=e(function(n,t,r){return{$:0,a:n,b:t,c:r}}),Ro=function(n){return{$:0,a:n}},To=r(function(n,t){return{$:2,a:n,b:t}}),No=function(n){return{$:7,a:n}},Mo=r(function(n,t){return{$:1,a:n,b:t}}),Ho=r(function(n,t){return t.b?t.b.b?c(sr,t.a,c(Ho,n,t.b)):w([n(t.a)]):t}),Io=r(function(n,t){return f(qo,t.a,t.b,k(t.c,w([n])))}),Uo=r(function(n,t){if(!t.b)return t;if(t.b.b)return c(sr,t.a,c(Uo,n,t.b));switch(t.a.$){case 0:return w([Ro(c(Io,n,t.a.a))]);case 1:var r=t.a,e=r.b;return w([c(Mo,r.a,c(Ho,Io(n),e))]);default:return t}}),Fo=r(function(n,t){if(t.b.b){var r=t.a,e=t.b,i=(a=t.c,c(Te,n,e)),u=n(r);return w([f(qo,r,e,a),f(qo,u,i,Fn)])}var a,o=t.a;return w([f(qo,o,Fn,a=t.c),f(qo,n(o),Fn,Fn)])}),Ko=r(function(n,t){return f(zo,t.a,t.b,$r(n))}),Po=r(function(n,t){return c(Fo,Ko(n),t)}),Wo=r(function(n,t){return{$:2,a:n,b:t}}),Bo=r(function(n,t){return{$:0,a:n,b:t}}),Do=function(n){return{$:1,a:n}},Xo=r(function(n,t){switch(t.$){case 0:return c(Bo,t.a,k(t.b,w([n])));case 1:return Do(k(t.a,w([n])));default:return c(Wo,t.a,k(t.b,w([n])))}}),Jo=r(function(n,t){if(t.b){if(t.b.b)return c(sr,t.a,c(Jo,n,t.b));var r=t.a;return w([v(r.a,c(Xo,n,r.b))])}return Fn}),Yo=r(function(n,t){if(t.b.b)return r=t.c,f(zo,t.a,c(Jo,n,t.b),r);var r=t.c;return f(zo,c(Xo,n,t.a),Fn,r)}),Zo=r(function(n,t){return c(Fo,Yo(n),t)}),Vo=function(n){n:for(;;){if(n.b){if(n.a.$){n=r=n.b;continue n}var t=n.a.a,r=n.b;return k(c(sr,t.a,t.b),Vo(r))}return Fn}},Qo=u(function(n,t,r,e,i){return{$:3,a:n,b:t,c:r,d:e,e:i}}),Go=r(function(n,t){n:for(;;){if(!t.b)return t;if(t.b.b)break n;switch(t.a.$){case 0:return c(Te,Ro,n(b=t.a.a));case 1:if(t.a.b.b){if(t.a.b.b.b){var r=t.a,e=r.b,i=e.a,u=c(Go,n,w([c(Mo,r.a,e.b)]));if(u.b&&1===u.a.$&&!u.b.b){var a=u.a;return w([c(Mo,a.a,c(sr,i,a.b))])}return u}var o=t.a;return w([c(Mo,o.a,n(b=o.b.a))])}break n;case 2:var f=t.a;return w([c(To,f.a,c(Go,n,f.b))]);case 3:var l=t.a,b=l.e;return c(Te,s(Qo,l.a,l.b,l.c,l.d),n(b));case 4:return t;case 5:case 6:case 7:case 8:default:return t}}return c(sr,i=t.a,c(Go,n,t.b))}),nc=Qn,tc=i(function(n,t,r,e){return{ac:e,ai:r,X:t,an:n}}),rc=r(function(n,t){return(65535&t)*n+(((t>>>16)*n&65535)<<16)}),ec=r(function(n,t){return t<>>32-n}),ic=nt,uc=r(function(n,t){return c(rc,5,c(ec,13,n^c(rc,461845907,c(ec,15,c(rc,3432918353,t)))))+3864292196}),ac=r(function(n,t){var r=t.ai|(255&Rr(n))<>>16))^i>>>13))^u>>>16)>>>0;var r,e,i,u}),cc=function(n){return _(n).join("")},fc=Xn,sc=function(n){n:for(;;)switch(n){case 0:return"0";case 1:return"1";case 2:return"2";case 3:return"3";case 4:return"4";case 5:return"5";case 6:return"6";case 7:return"7";case 8:return"8";case 9:return"9";case 10:return"a";case 11:return"b";case 12:return"c";case 13:return"d";case 14:return"e";case 15:return"f";default:n=n;continue n}},lc=r(function(n,t){for(;;){if(16>t)return c(sr,sc(t),n);n=c(sr,sc(c(fc,16,t)),n),t=t/16|0}}),bc=function(n){return c(nc,"_",cc(0>(t=c(oc,15739,n))?c(sr,"-",c(lc,Fn,-t)):c(lc,Fn,t)));var t},hc=function(n){n:for(;;){if(n.b){if(n.b.b){n=n.b;continue n}return $r(w([n.a]))}return yr}},dc=function(n){var t,r=function(n){return n.b?c(sr,n.a,r(n.b)):Fn};return w([(t=r(n),{$:9,a:t})])},pc=function(n){return w([n])},gc=r(function(n,t){return t.$?t:c(Mo,n,w([t.a]))}),vc=u(function(n,t,r,e,i){return i.$?i:l(Qo,n,t,r,e,i.a)}),mc=r(function(n,t){switch(t.$){case 0:return c(Mo,n,w([t.a]));case 1:var r=t.b;return c(Mo,k(n,t.a),r);case 2:var e=t.b;return c(To,t.a,c(Te,mc(n),e));case 3:return l(Qo,t.a,t.b,t.c,t.d,t.e);case 4:case 5:case 6:case 7:case 8:default:return t}}),$c=function(n){return n},yc=i(function(n,t,r,e){var i=function(n){return c(cu,Fn,function(n){return n.b?$r(n.b):yr}(n))},u=c(kc,t,c(cu,Fn,hc(e)));return k(function(){var n=v(va(u),function(n){n:for(;;){if(n.b){if(n.b.b){n=n.b;continue n}return $r(n.a)}return yr}}(e));if(n.a.$||n.b.$)return e;var t=n.a.a,r=n.b.a;return k(c(Ra,Cr(e)-1,e),w([d(r,t)?r:t]))}(),k(i(c(cu,Fn,c(so,function(t){return Pa(c(Ho,kc(n),c(Te,pc,c(Go,r,t))))},hc(e)))),i(u)))}),kc=r(function(n,t){if(!n.b)return t;switch(n.a.$){case 0:return c(kc,o=n.b,c(Uo,n.a.a,t));case 1:var e=n.a;return s(yc,m=e.b,o=n.b,Zo(e.a),t);case 2:
var i=n.a,u=i.a,a=i.b,o=n.b,l=r(function(n,t){var r=n.c,e=t.b,i=t.c;return f(zo,n.a,k(n.b,c(sr,v(u,t.a),e)),function(n){n:for(;;){if(n.b){var t=n.a;if(1===t.$){n=n.b;continue n}return t}return yr}}(w([i,r])))});return Pa(k(w([c(kc,o,t)]),c(Te,function(n){switch(n.$){case 0:var r=n.a,e=r.a,i=r.b,u=r.c,a=c(So,function(n){return c(Te,l(n),c(sr,e,i))},Vo(t)),o=a.b?w([Ro(f(qo,a.a,a.b,Fn))]):Fn;return c(kc,u,o);case 1:return c(_c,n.a,n.b);case 2:return c(Lc,n.a,n.b);case 3:var b=n.e;return c(Te,s(vc,n.a,n.b,n.c,n.d),xc(b));case 4:return w([c(Oo,n.a,n.b)]);case 5:return w([Eo(n.a)]);case 6:return w([No(n.a)]);case 7:return w([Co(n.a)]);default:return dc(n.a)}},c(So,$c,a))));case 3:var b=n.a;return s(yc,m=b.b,o=n.b,Po(b.a),t);case 5:var h=n.a.a,d=(o=n.b,bc(h));return c(Iu,c(kc,o,c(Uo,"animation-name:"+d,t)),w([oo({ct:h,cM:d})]));case 4:var p=n.a,g=p.a,m=p.b,$=(o=n.b,function(){var n=Vo(t);if(n.b){var r=n.a,e=n.b;return c(Te,gc(g),c(kc,m,pc(Ro(f(qo,r,e,Fn)))))}return Fn}());return k(c(kc,o,t),$);default:return c(kc,k(n.a.a,o=n.b),t)}}),xc=function(n){return c(kc,n.c,w([Ro(f(qo,n.a,n.b,Fn))]))},wc=function(n){if(n.b){var t=n.b;return k(Ac(n.a),wc(t))}return Fn},_c=r(function(n,t){return c(So,function(t){return c(Te,mc(n),xc(t))},t)}),Lc=r(function(n,t){var r=wc(c(So,$c,t));return w([c(To,n,r)])}),Ac=function(n){switch(n.$){case 0:return xc(t=n.a);case 1:return c(_c,n.a,n.b);case 2:return c(Lc,n.a,n.b);case 3:var t=n.e;return c(Te,s(vc,n.a,n.b,n.c,n.d),xc(t));case 4:return w([c(Oo,n.a,n.b)]);case 5:return w([Eo(n.a)]);case 6:return w([No(n.a)]);case 7:return w([Co(n.a)]);default:return dc(n.a)}},jc=function(n){return jo(fo((r=(t=n).bU,e=t.bZ,{bK:t.bK,cu:wc(c(So,$c,t.cc)),bU:r,bZ:e})));var t,r,e},Sc=e(function(n,t,r){return{$:0,a:n,b:t,c:r}}),Cc=r(function(n,t){var r;return w([(r=f(Sc,f(zo,t,Fn,yr),Fn,n),{$:0,a:r})])}),Ec=Do(w([(fa="",{$:0,a:fa})])),Oc=function(n){return n.b?jc((t=w([c(Cc,n,Ec)]),{bK:yr,bU:Fn,bZ:Fn,cc:t})):"";var t},zc=function(n){var t=Oc(n);return f(Ga,c(no,"",""),!0,t)},qc=Nt("div"),Rc=e(function(n,t,r){return{$:0,a:n,b:t,c:r}})("div"),Tc=A,Nc=function(n){return{$:4,a:n}},Mc=Ut,Hc=function(n){return w([c(Mc,"position","absolute"),c(Mc,"border-style","solid"),c(Mc,"margin","auto"),c(Mc,"font-size","12pt"),c(Mc,"font-family","sans-serif"),c(Mc,"backface-visibility","hidden"),c(Mc,"-webkit-backface-visibility","hidden"),c(Mc,"transition","all 1s"),c(Mc,"position","absolute"),c(Mc,"top","0px"),c(Mc,"left","0px"),c(Mc,"float","center"),c(Mc,"padding",Tc(n.M)+"px"),c(Mc,"border-width","0"),c(Mc,"margin","0")])},Ic=Nt("h1"),Uc=function(n){return c(Va,"href",/^javascript:/i.test((t=n).replace(/\s/g,""))?"":t);var t},Fc=r(function(n,t){return{$:0,a:n+":"+t}}),Kc=r(function(n,t){return c(Fc,n,t.by)}),Pc=Kc("min-height"),Wc=c(Fc,"min-width","100%"),Bc=r(function(n,t){return{$:2,a:n,b:t}}),Dc=Bc(2),Xc=Bc(3),Jc=r(function(n,t){return c(Cc,t,c(Wo,n,Fn))}),Yc=function(n){return{$:6,a:n}}(w([c(Fc,"color","#374151"),c(Fc,"max-width","65ch"),c(Fc,"font-size","1rem"),c(Fc,"line-height","1.75"),Dc(w([c(Jc,":last-child",w([c(Fc,"margin-bottom","0")]))])),Dc(w([c(Jc,":first-child",w([c(Fc,"margin-top","0")]))])),Xc(w([c(Jc,"tbody td:last-child",w([c(Fc,"padding-right","0")]))])),Xc(w([c(Jc,"tbody td:first-child",w([c(Fc,"padding-left","0")]))])),Xc(w([c(Jc,"thead th:last-child",w([c(Fc,"padding-right","0")]))])),Xc(w([c(Jc,"thead th:first-child",w([c(Fc,"padding-left","0")]))])),Xc(w([c(Jc,"h4 + *",w([c(Fc,"margin-top","0")]))])),Xc(w([c(Jc,"h3 + *",w([c(Fc,"margin-top","0")]))])),Xc(w([c(Jc,"h2 + *",w([c(Fc,"margin-top","0")]))])),Xc(w([c(Jc,"hr + *",w([c(Fc,"margin-top","0")]))])),Xc(w([c(Jc,"ol ol",w([c(Fc,"margin-top","0.75em"),c(Fc,"margin-bottom","0.75em")]))])),Xc(w([c(Jc,"ol ul",w([c(Fc,"margin-top","0.75em"),c(Fc,"margin-bottom","0.75em")]))])),Xc(w([c(Jc,"ul ol",w([c(Fc,"margin-top","0.75em"),c(Fc,"margin-bottom","0.75em")]))])),Xc(w([c(Jc,"ul ul",w([c(Fc,"margin-top","0.75em"),c(Fc,"margin-bottom","0.75em")]))])),Dc(w([c(Jc,"ol > li > *:last-child",w([c(Fc,"margin-bottom","1.25em")]))])),Dc(w([c(Jc,"ol > li > *:first-child",w([c(Fc,"margin-top","1.25em")]))])),Dc(w([c(Jc,"ul > li > *:last-child",w([c(Fc,"margin-bottom","1.25em")]))])),Dc(w([c(Jc,"ul > li > *:first-child",w([c(Fc,"margin-top","1.25em")]))])),Dc(w([c(Jc,"ul > li p",w([c(Fc,"margin-top","0.75em"),c(Fc,"margin-bottom","0.75em")]))])),Xc(w([c(Jc,"li",w([c(Fc,"margin-top","0.5em"),c(Fc,"margin-bottom","0.5em")]))])),Xc(w([c(Jc,"ul",w([c(Fc,"margin-top","1.25em"),c(Fc,"margin-bottom","1.25em")]))])),Xc(w([c(Jc,"ol",w([c(Fc,"margin-top","1.25em"),c(Fc,"margin-bottom","1.25em")]))])),Xc(w([c(Jc,"h3 code",w([c(Fc,"font-size","0.9em")]))])),Xc(w([c(Jc,"h2 code",w([c(Fc,"font-size","0.875em")]))])),Xc(w([c(Jc,"figure > *",w([c(Fc,"margin-top","0"),c(Fc,"margin-bottom","0")]))])),Xc(w([c(Jc,"figure",w([c(Fc,"margin-top","2em"),c(Fc,"margin-bottom","2em")]))])),Xc(w([c(Jc,"video",w([c(Fc,"margin-top","2em"),c(Fc,"margin-bottom","2em")]))])),Xc(w([c(Jc,"img",w([c(Fc,"margin-top","2em"),c(Fc,"margin-bottom","2em")]))])),Xc(w([c(Jc,"p",w([c(Fc,"margin-top","1.25em"),c(Fc,"margin-bottom","1.25em")]))])),Xc(w([c(Jc,"tbody td",w([c(Fc,"vertical-align","top"),c(Fc,"padding-top","0.5714286em"),c(Fc,"padding-right","0.5714286em"),c(Fc,"padding-bottom","0.5714286em"),c(Fc,"padding-left","0.5714286em")]))])),Xc(w([c(Jc,"tbody tr:last-child",w([c(Fc,"border-bottom-width","0")]))])),Xc(w([c(Jc,"tbody tr",w([c(Fc,"border-bottom-width","1px"),c(Fc,"border-bottom-color","#e5e7eb")]))])),Xc(w([c(Jc,"thead th",w([c(Fc,"vertical-align","bottom"),c(Fc,"padding-right","0.5714286em"),c(Fc,"padding-bottom","0.5714286em"),c(Fc,"padding-left","0.5714286em")]))])),Xc(w([c(Jc,"thead",w([c(Fc,"color","#111827"),c(Fc,"font-weight","600"),c(Fc,"border-bottom-width","1px"),c(Fc,"border-bottom-color","#d1d5db")]))])),Xc(w([c(Jc,"table",w([c(Fc,"width","100%"),c(Fc,"table-layout","auto"),c(Fc,"text-align","left"),c(Fc,"margin-top","2em"),c(Fc,"margin-bottom","2em"),c(Fc,"font-size","0.875em"),c(Fc,"line-height","1.7142857")]))])),Xc(w([c(Jc,"pre code::after",w([c(Fc,"content","none")]))])),Xc(w([c(Jc,"pre code::before",w([c(Fc,"content","none")]))])),Xc(w([c(Jc,"pre code",w([c(Fc,"background-color","transparent"),c(Fc,"border-width","0"),c(Fc,"border-radius","0"),c(Fc,"padding","0"),c(Fc,"font-weight","400"),c(Fc,"color","inherit"),c(Fc,"font-size","inherit"),c(Fc,"font-family","inherit"),c(Fc,"line-height","inherit")]))])),Xc(w([c(Jc,"pre",w([c(Fc,"color","#e5e7eb"),c(Fc,"background-color","#1f2937"),c(Fc,"overflow-x","auto"),c(Fc,"font-size","0.875em"),c(Fc,"line-height","1.7142857"),c(Fc,"margin-top","1.7142857em"),c(Fc,"margin-bottom","1.7142857em"),c(Fc,"border-radius","0.375rem"),c(Fc,"padding-top","0.8571429em"),c(Fc,"padding-right","1.1428571em"),c(Fc,"padding-bottom","0.8571429em"),c(Fc,"padding-left","1.1428571em")]))])),Xc(w([c(Jc,"a code",w([c(Fc,"color","#111827")]))])),Xc(w([c(Jc,"code::after",w([c(Fc,"content",'"`"')]))])),Xc(w([c(Jc,"code::before",w([c(Fc,"content",'"`"')]))])),Xc(w([c(Jc,"code",w([c(Fc,"color","#111827"),c(Fc,"font-weight","600"),c(Fc,"font-size","0.875em")]))])),Xc(w([c(Jc,"figure figcaption",w([c(Fc,"color","#6b7280"),c(Fc,"font-size","0.875em"),c(Fc,"line-height","1.4285714"),c(Fc,"margin-top","0.8571429em")]))])),Xc(w([c(Jc,"h4",w([c(Fc,"color","#111827"),c(Fc,"font-weight","600"),c(Fc,"margin-top","1.5em"),c(Fc,"margin-bottom","0.5em"),c(Fc,"line-height","1.5")]))])),Xc(w([c(Jc,"h3",w([c(Fc,"color","#111827"),c(Fc,"font-weight","600"),c(Fc,"font-size","1.25em"),c(Fc,"margin-top","1.6em"),c(Fc,"margin-bottom","0.6em"),c(Fc,"line-height","1.6")]))])),Xc(w([c(Jc,"h2",w([c(Fc,"color","#111827"),c(Fc,"font-weight","700"),c(Fc,"font-size","1.5em"),c(Fc,"margin-top","2em"),c(Fc,"margin-bottom","1em"),c(Fc,"line-height","1.3333333")]))])),Xc(w([c(Jc,"h1",w([c(Fc,"color","#111827"),c(Fc,"font-weight","800"),c(Fc,"font-size","2.25em"),c(Fc,"margin-top","0"),c(Fc,"margin-bottom","0.8888889em"),c(Fc,"line-height","1.1111111")]))])),Xc(w([c(Jc,"blockquote p:last-of-type::after",w([c(Fc,"content","close-quote")]))])),Xc(w([c(Jc,"blockquote p:first-of-type::before",w([c(Fc,"content","open-quote")]))])),Xc(w([c(Jc,"blockquote",w([c(Fc,"font-weight","500"),c(Fc,"font-style","italic"),c(Fc,"color","#111827"),c(Fc,"border-left-width","0.25rem"),c(Fc,"border-left-color","#e5e7eb"),c(Fc,"quotes",'"\\201C""\\201D""\\2018""\\2019"'),c(Fc,"margin-top","1.6em"),c(Fc,"margin-bottom","1.6em"),c(Fc,"padding-left","1em")]))])),Xc(w([c(Jc,"hr",w([c(Fc,"border-color","#e5e7eb"),c(Fc,"border-top-width","1px"),c(Fc,"margin-top","3em"),c(Fc,"margin-bottom","3em")]))])),Xc(w([c(Jc,"ul > li::before",w([c(Fc,"content",'""'),c(Fc,"position","absolute"),c(Fc,"background-color","#d1d5db"),c(Fc,"border-radius","50%"),c(Fc,"width","0.375em"),c(Fc,"height","0.375em"),c(Fc,"top","calc(0.875em - 0.1875em)"),c(Fc,"left","0.25em")]))])),Xc(w([c(Jc,"ul > li",w([c(Fc,"position","relative"),c(Fc,"padding-left","1.75em")]))])),Xc(w([c(Jc,"ol > li::before",w([c(Fc,"content",'counter(list-item, var(--list-counter-style, decimal)) "."'),c(Fc,"position","absolute"),c(Fc,"font-weight","400"),c(Fc,"color","#6b7280"),c(Fc,"left","0")]))])),Xc(w([c(Jc,"ol > li",w([c(Fc,"position","relative"),c(Fc,"padding-left","1.75em")]))])),Xc(w([c(Jc,"ol[type='1'i]",w([c(Fc,"--list-counter-style","decimal")]))])),Xc(w([c(Jc,"ol[type='i\\ s'i]",w([c(Fc,"--list-counter-style","lower-roman")]))])),Xc(w([c(Jc,"ol[type='I\\ s'i]",w([c(Fc,"--list-counter-style","upper-roman")]))])),Xc(w([c(Jc,"ol[type='i'i]",w([c(Fc,"--list-counter-style","lower-roman")]))])),Xc(w([c(Jc,"ol[type='I'i]",w([c(Fc,"--list-counter-style","upper-roman")]))])),Xc(w([c(Jc,"ol[type='a\\ s'i]",w([c(Fc,"--list-counter-style","lower-alpha")]))])),Xc(w([c(Jc,"ol[type='A\\ s'i]",w([c(Fc,"--list-counter-style","upper-alpha")]))])),Xc(w([c(Jc,"ol[type='a'i]",w([c(Fc,"--list-counter-style","lower-alpha")]))])),Xc(w([c(Jc,"ol[type='A'i]",w([c(Fc,"--list-counter-style","upper-alpha")]))])),Xc(w([c(Jc,"strong",w([c(Fc,"color","#111827"),c(Fc,"font-weight","600")]))])),Xc(w([c(Jc,"a",w([c(Fc,"color","#111827"),c(Fc,"text-decoration","underline"),c(Fc,"font-weight","500")]))])),Xc(w([c(Jc,".lead",w([c(Fc,"color","#4b5563"),c(Fc,"font-size","1.25em"),c(Fc,"line-height","1.6"),c(Fc,"margin-top","1.2em"),c(Fc,"margin-bottom","1.2em")]))]))])),Zc=c(e(function(n,t,r){return{bz:0,bI:0,af:0,m:0,aC:0,aj:0,I:0,ak:0,al:0,T:0,U:0,z:0,K:r,aq:0,as:t,aQ:n,by:k(Tc(r),t)}}),0,"px"),Vc=Zn,Qc=Nt("span"),Gc=ir,nf=r(function(n,t){var r=n.c;return n.b&&c(di,r,t).$?f(mi,r,bc(r),t):t}),tf=r(function(n,t){return c(Ft,function(n){return"innerHTML"==n||"formAction"==n?"data-"+n:n}(n),on(t))}),rf=r(function(n,t){var r=t.a;if(t.b){var e=c(di,t.c,n);return c(tf,"className",Qu(e.$?"_unstyled":e.a))}return r}),ef=r(function(n,t){var r=t.a;if(t.b){var e=c(di,t.c,n);return c(no,"class",e.$?"_unstyled":e.a)}return r}),uf=r(function(n,t){return c(Mt,n,an(t))}),af=function(n){return Nt(an(n))},of=function(n){return Tt(an(n))},cf=r(function(n,t){var r=n.a,e=n.b,i=t.a,u=t.b;switch(e.$){case 4:return v(c(sr,v(r,h=e.a),i),u);case 0:var a=e.a,o=e.c,l=f(Sr,ff,v(Fn,f(Sr,nf,u,m=e.b)),o),b=l.a,h=f(af,a,c(Te,rf($=l.b),m),Ir(b));return v(c(sr,v(r,h),i),$);case 1:var d=e.a,p=(a=e.b,o=e.d,f(Sr,ff,v(Fn,f(Sr,nf,u,m=e.c)),o));return b=p.a,h=s(of,d,a,c(Te,rf($=p.b),m),Ir(b)),v(c(sr,v(r,h),i),$);case 2:a=e.a,o=e.c;var g=f(Sr,cf,v(Fn,f(Sr,nf,u,m=e.b)),o);return b=g.a,h=f(Ba,a,c(Te,rf($=g.b),m),Ir(b)),v(c(sr,v(r,h),i),$);default:d=e.a,a=e.b,o=e.d;var m,$,y=f(Sr,cf,v(Fn,f(Sr,nf,u,m=e.c)),o);return b=y.a,h=s(uf,d,a,c(Te,rf($=y.b),m),Ir(b)),v(c(sr,v(r,h),i),$)}}),ff=r(function(n,t){var r=t.a,e=t.b;switch(n.$){case 4:return v(c(sr,l=n.a,r),e);case 0:var i=n.a,u=n.c,a=f(Sr,ff,v(Fn,f(Sr,nf,e,p=n.b)),u),o=a.a,l=f(af,i,c(Te,rf(g=a.b),p),Ir(o));return v(c(sr,l,r),g);case 1:var b=n.a,h=(i=n.b,u=n.d,f(Sr,ff,v(Fn,f(Sr,nf,e,p=n.c)),u));return o=h.a,l=s(of,b,i,c(Te,ef(g=h.b),p),Ir(o)),v(c(sr,l,r),g);case 2:i=n.a,u=n.c;var d=f(Sr,cf,v(Fn,f(Sr,nf,e,p=n.b)),u);return o=d.a,l=f(Ba,i,c(Te,rf(g=d.b),p),Ir(o)),v(c(sr,l,r),g);default:b=n.a,i=n.b,u=n.d;var p,g,m=f(Sr,cf,v(Fn,f(Sr,nf,e,p=n.c)),u);return o=m.a,l=s(uf,b,i,c(Te,ef(g=m.b),p),Ir(o)),v(c(sr,l,r),g)}}),sf=r(function(n,t){return l(pi,1,n,t,fi,fi)}),lf=r(function(n,t){for(;;){if(!t.b)return n;if(t.a.b)r=t.b,n=$r(t.a.c),t=r;else{var r;n=n,t=r=t.b}}}),bf=function(n){var t=c(lf,yr,n);if(1===t.$)return si;var r=t.a;return c(sf,r,bc(r))},hf=e(function(n,t,r){return c(Lr,t,c(Ar,n,r))}),df=e(function(n,t,r){return r+"\n"+f(hf,"",t,n)}),pf=function(n){return f(af,"span",w([c(no,"style","display: none;"),c(no,"class","elm-css-style-wrapper")]),w([f(af,"style",Fn,pc(Ja((t=n,f(wu,df,"",t)))))]));var t},gf=e(function(n,t,r){var e=bf(t),i=f(Sr,ff,v(Fn,e),r),u=i.a,a=i.b,o=pf(a),s=c(Te,rf(a),t);return f(af,n,s,c(sr,o,Ir(u)))}),vf=r(function(n,t){for(;;){if(!t.b)return!1;var r=t.b;if(d(n,t.a.a))return!0;n=n,t=r}}),mf=r(function(n,t){n:for(;;){if(t.b){var r=t.b,e="_"+t.a.a;if(c(vf,e,r)){n=e,t=r;continue n}return e}return n}}),$f=r(function(n,t){return v(c(mf,"_",t),pf(n))}),yf=e(function(n,t,r){var e=bf(t),i=f(Sr,cf,v(Fn,e),r),u=i.a,a=i.b,o=c($f,a,u),s=c(Te,rf(a),t);return f(Ba,n,s,c(sr,o,Ir(u)))}),kf=i(function(n,t,r,e){var i=bf(r),u=f(Sr,cf,v(Fn,i),e),a=u.a,o=u.b,l=c($f,o,a),b=c(Te,ef(o),r);return s(uf,n,t,b,c(sr,l,Ir(a)))}),xf=i(function(n,t,r,e){var i=bf(r),u=f(Sr,ff,v(Fn,i),e),a=u.a,o=u.b,l=pf(o),b=c(Te,ef(o),r);return s(of,n,t,b,c(sr,l,Ir(a)))}),wf=function(n){switch(n.$){case 4:return n.a;case 0:return f(gf,n.a,n.b,n.c);case 1:return s(xf,n.a,n.b,n.c,n.d);case 2:return f(yf,n.a,n.b,n.c);default:return s(kf,n.a,n.b,n.c,n.d)}},_f=Kc("width"),Lf=i(function(n,t,r,e){var i={cv:yr,cD:$r({cr:!1,c4:!0}),cY:!1,c0:!1};return c(qc,c(Iu,Hc(n),w([c(Mc,"min-width",Tc(n.u-2*n.M)+"px"),c(Mc,"min-height",Tc(n.aK-2*n.M)+"px"),c(Mc,"transform","translateZ("+(t?"0":"-"+_r(Vc(n.u))+"px")+") perspective("+Tc(100*n.u)+"px) translateY("+(t?"0":Tc((r/n.B|0)*n.t-n.t*(n.B-1)/2)+"px")+") translateX("+(t?"0":Tc(c(fc,n.B,r)*n.t-n.t*(n.B-1)/2)+"px")+")"+(t?" rotateY(0deg) scale("+Tc(1)+")":" rotateY(-179deg) scale("+Tc(n.ax)+")")),c(Mc,"background",c(cu,"#000",c(pa,e.az,na))),c(Mc,"z-index",t?"5000":"0")])),w([c(Za,w([Uc("?view=index&document="+e.H)]),w([c(Qc,w([Qa("fa fa-arrow-left")]),w([c(Ic,Fn,w([Ya("⇦")]))])),c(Ic,Fn,w([Ya(_r(r+1)+" "+e.H)]))])),c(qc,Fn,w([Ya(e.aX)])),c(qc,Fn,w([Ya(e.a9)])),wf(c(Rc,w([zc(w([Yc,Wc,_f(Zc(n.u-2*n.M)),Pc(Zc(n.aK-2*n.M))]))]),w([Nc(f(Gc,i,Fn,e.aU))])))]))}),Af=Nt("h3"),jf=i(function(n,t,r,e){return c(qc,c(Iu,Hc(n),w([c(Mc,"width",Tc(n.aM)+"px"),c(Mc,"height",Tc(n.aM)+"px"),c(Mc,"transform","translateZ("+(t?"0":"-"+_r(Vc(n.u))+"px")+") perspective("+Tc(100*n.u)+"px) translateY("+(t?Tc((n.u-n.t)/2)+"px":Tc((r/n.B|0)*n.t+n.aL)+"px")+") translateX("+(t?Tc((n.u-n.t)/2)+"px":Tc(c(fc,n.B,r)*n.t+n.aL)+"px")+")"+(t?" rotate(0deg) skew(0deg) rotateY(+180deg) scale("+Tc(1/n.ax)+")":" "+c(cu,"",c(pa,e.bb,Fa))+" rotateY(+1deg) scale("+Tc(1)+")")),c(Mc,"background",c(cu,"#000",c(pa,e.az,na))),c(Mc,"z-index",t?"5000":"0")])),w([c(Za,w([Uc("?view=doc&document="+e.H)]),w([c(Af,Fn,w([Ya(_r(r+1)+" "+e.H)])),c(qc,Fn,w([Ya(e.a9)])),c(Qc,w([Qa("fa fa-arrow-right")]),Fn)]))]))});!function(t){n.Elm?function n(t,r){for(var e in r)e in t?"init"==e?L(6):n(t[e],r[e]):t[e]=r[e]}(n.Elm,t):n.Elm=t}({Main:{init:function(n){var t=n.cN,e=n.cO,i=function(){i.a(t(qn()))};return Dt({bu:function(n){return i.a=n,Vt.addEventListener("popstate",i),0>Vt.navigator.userAgent.indexOf("Trident")||Vt.addEventListener("hashchange",i),r(function(t,r){if(!(r.ctrlKey||r.metaKey||r.shiftKey||r.button>=1||t.target||t.hasAttribute("download"))){r.preventDefault();var i=t.href,u=qn(),a=Ce(i).a;n(e(a&&u.b3===a.b3&&u.bS===a.bS&&u.b0.a===a.b0.a?he(a):be(i)))}})},cI:function(t){return f(n.cI,t,qn(),i)},bd:n.bd,c7:n.c7,c3:n.c3})}({cI:pu,cN:function(n){return{$:0,a:n}},cO:function(n){return{$:1,a:n}},c3:function(){return mu(w([(n=gu,f(zu,1,"resize",c(Je,"target",f(fe,n,c(Je,"innerWidth",Ve),c(Je,"innerHeight",Ve))))),Ru(vu)]));var n},c7:Ka,bd:function(n){return{aU:c(Iu,w([c(Xa,Fn,w([Ya("")]))]),w([f(Da,"div",Fn,Pa(c(qr,r(function(t,r){return w(d(c(cu,"",n.aI.bg),r.H)&&d(n.aI.bd,$r(2))?[v(_r(t)+"f",l(Wa,jf,n.S,!0,t,r)),v(_r(t)+"b",l(Wa,Lf,n.S,!0,t,r))]:[v(_r(t)+"f",l(Wa,jf,n.S,!1,t,r)),v(_r(t)+"b",l(Wa,Lf,n.S,!1,t,r))])}),n.l)))])),c6:"Hans-Helmut's virtual bulletin board"}}})(se(0))(0)}})}(this);