diff --git a/-/ui.fifthtry.com/components/editor/command-k/command-editor.mjs b/-/ui.fifthtry.com/components/editor/command-k/command-editor.mjs index a5e1c80d..b3bd132d 100644 --- a/-/ui.fifthtry.com/components/editor/command-k/command-editor.mjs +++ b/-/ui.fifthtry.com/components/editor/command-k/command-editor.mjs @@ -115,8 +115,15 @@ document.addEventListener("keydown", (e) => { if (e.key === "Escape") { ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k", false); ide_clear_context_menu(); + } else if (e.key === "Enter" && (e.metaKey || e.ctrlKey)) { + ide_open_command_k("update-preview"); + // if shift is pressed, execute the command + if (e.shiftKey) run_parser(); + e.preventDefault(); } else if (e.key === "s" && (e.metaKey || e.ctrlKey)) { ide_open_command_k("push-file " + ftd.get_value("ui.fifthtry.com/components/editor/vars#current-file")); + // if shift is pressed, execute the command + if (e.shiftKey) run_parser(); e.preventDefault(); } else if (e.key === "k" && (e.metaKey || e.ctrlKey)) { e.preventDefault(); diff --git a/-/ui.fifthtry.com/components/editor/editor-bundle.js b/-/ui.fifthtry.com/components/editor/editor-bundle.js index 9f1783f9..c1378ad7 100644 --- a/-/ui.fifthtry.com/components/editor/editor-bundle.js +++ b/-/ui.fifthtry.com/components/editor/editor-bundle.js @@ -1,2 +1,2 @@ -!function(){"use strict";class t{lineAt(t){if(t<0||t>this.length)throw new RangeError(`Invalid position ${t} in document of length ${this.length}`);return this.lineInner(t,!1,1,0)}line(t){if(t<1||t>this.lines)throw new RangeError(`Invalid line number ${t} in ${this.lines}-line document`);return this.lineInner(t,!0,1,0)}replace(t,e,n){[t,e]=h(this,t,e);let r=[];return this.decompose(0,t,r,2),n.length&&n.decompose(0,n.length,r,3),this.decompose(e,this.length,r,1),i.from(r,this.length-(e-t)+n.length)}append(t){return this.replace(this.length,this.length,t)}slice(t,e=this.length){[t,e]=h(this,t,e);let n=[];return this.decompose(t,e,n,0),i.from(n,e-t)}eq(t){if(t==this)return!0;if(t.length!=this.length||t.lines!=this.lines)return!1;let e=this.scanIdentical(t,1),i=this.length-this.scanIdentical(t,-1),n=new s(this),r=new s(t);for(let t=e,s=e;;){if(n.next(t),r.next(t),t=0,n.lineBreak!=r.lineBreak||n.done!=r.done||n.value!=r.value)return!1;if(s+=n.value.length,n.done||s>=i)return!0}}iter(t=1){return new s(this,t)}iterRange(t,e=this.length){return new o(this,t,e)}iterLines(t,e){let i;if(null==t)i=this.iter();else{null==e&&(e=this.lines+1);let n=this.line(t).from;i=this.iterRange(n,Math.max(n,e==this.lines+1?this.length:e<=1?0:this.line(e-1).to))}return new a(i)}toString(){return this.sliceString(0)}toJSON(){let t=[];return this.flatten(t),t}constructor(){}static of(n){if(0==n.length)throw new RangeError("A document must have at least one line");return 1!=n.length||n[0]?n.length<=32?new e(n):i.from(e.split(n,[])):t.empty}}class e extends t{constructor(t,e=function(t){let e=-1;for(let i of t)e+=i.length+1;return e}(t)){super(),this.text=t,this.length=e}get lines(){return this.text.length}get children(){return null}lineInner(t,e,i,n){for(let r=0;;r++){let s=this.text[r],o=n+s.length;if((e?i:o)>=t)return new l(n,o,i,s);n=o+1,i++}}decompose(t,i,s,o){let a=t<=0&&i>=this.length?this:new e(r(this.text,t,i),Math.min(i,this.length)-Math.max(0,t));if(1&o){let t=s.pop(),i=n(a.text,t.text.slice(),0,a.length);if(i.length<=32)s.push(new e(i,t.length+a.length));else{let t=i.length>>1;s.push(new e(i.slice(0,t)),new e(i.slice(t)))}}else s.push(a)}replace(t,s,o){if(!(o instanceof e))return super.replace(t,s,o);[t,s]=h(this,t,s);let a=n(this.text,n(o.text,r(this.text,0,t)),s),l=this.length+o.length-(s-t);return a.length<=32?new e(a,l):i.from(e.split(a,[]),l)}sliceString(t,e=this.length,i="\n"){[t,e]=h(this,t,e);let n="";for(let r=0,s=0;r<=e&&st&&s&&(n+=i),tr&&(n+=o.slice(Math.max(0,t-r),e-r)),r=a+1}return n}flatten(t){for(let e of this.text)t.push(e)}scanIdentical(){return 0}static split(t,i){let n=[],r=-1;for(let s of t)n.push(s),r+=s.length+1,32==n.length&&(i.push(new e(n,r)),n=[],r=-1);return r>-1&&i.push(new e(n,r)),i}}class i extends t{constructor(t,e){super(),this.children=t,this.length=e,this.lines=0;for(let e of t)this.lines+=e.lines}lineInner(t,e,i,n){for(let r=0;;r++){let s=this.children[r],o=n+s.length,a=i+s.lines-1;if((e?a:o)>=t)return s.lineInner(t,e,i,n);n=o+1,i=a+1}}decompose(t,e,i,n){for(let r=0,s=0;s<=e&&r=s){let r=n&((s<=t?1:0)|(a>=e?2:0));s>=t&&a<=e&&!r?i.push(o):o.decompose(t-s,e-s,i,r)}s=a+1}}replace(t,e,n){if([t,e]=h(this,t,e),n.lines=s&&e<=a){let l=o.replace(t-s,e-s,n),h=this.lines-o.lines+l.lines;if(l.lines>4&&l.lines>h>>6){let s=this.children.slice();return s[r]=l,new i(s,this.length-(e-t)+n.length)}return super.replace(s,a,l)}s=a+1}return super.replace(t,e,n)}sliceString(t,e=this.length,i="\n"){[t,e]=h(this,t,e);let n="";for(let r=0,s=0;rt&&r&&(n+=i),ts&&(n+=o.sliceString(t-s,e-s,i)),s=a+1}return n}flatten(t){for(let e of this.children)e.flatten(t)}scanIdentical(t,e){if(!(t instanceof i))return 0;let n=0,[r,s,o,a]=e>0?[0,0,this.children.length,t.children.length]:[this.children.length-1,t.children.length-1,-1,-1];for(;;r+=e,s+=e){if(r==o||s==a)return n;let i=this.children[r],l=t.children[s];if(i!=l)return n+i.scanIdentical(l,e);n+=i.length+1}}static from(t,n=t.reduce(((t,e)=>t+e.length+1),-1)){let r=0;for(let e of t)r+=e.lines;if(r<32){let i=[];for(let e of t)e.flatten(i);return new e(i,n)}let s=Math.max(32,r>>5),o=s<<1,a=s>>1,l=[],h=0,c=-1,O=[];function d(t){let n;if(t.lines>o&&t instanceof i)for(let e of t.children)d(e);else t.lines>a&&(h>a||!h)?(u(),l.push(t)):t instanceof e&&h&&(n=O[O.length-1])instanceof e&&t.lines+n.lines<=32?(h+=t.lines,c+=t.length+1,O[O.length-1]=new e(n.text.concat(t.text),n.length+1+t.length)):(h+t.lines>s&&u(),h+=t.lines,c+=t.length+1,O.push(t))}function u(){0!=h&&(l.push(1==O.length?O[0]:i.from(O,c)),c=-1,h=O.length=0)}for(let e of t)d(e);return u(),1==l.length?l[0]:new i(l,n)}}function n(t,e,i=0,n=1e9){for(let r=0,s=0,o=!0;s=i&&(l>n&&(a=a.slice(0,n-r)),r0?1:(t instanceof e?t.text.length:t.children.length)<<1]}nextInner(t,i){for(this.done=this.lineBreak=!1;;){let n=this.nodes.length-1,r=this.nodes[n],s=this.offsets[n],o=s>>1,a=r instanceof e?r.text.length:r.children.length;if(o==(i>0?a:0)){if(0==n)return this.done=!0,this.value="",this;i>0&&this.offsets[n-1]++,this.nodes.pop(),this.offsets.pop()}else if((1&s)==(i>0?0:1)){if(this.offsets[n]+=i,0==t)return this.lineBreak=!0,this.value="\n",this;t--}else if(r instanceof e){let e=r.text[o+(i<0?-1:0)];if(this.offsets[n]+=i,e.length>Math.max(0,t))return this.value=0==t?e:i>0?e.slice(t):e.slice(0,e.length-t),this;t-=e.length}else{let s=r.children[o+(i<0?-1:0)];t>s.length?(t-=s.length,this.offsets[n]+=i):(i<0&&this.offsets[n]--,this.nodes.push(s),this.offsets.push(i>0?1:(s instanceof e?s.text.length:s.children.length)<<1))}}}next(t=0){return t<0&&(this.nextInner(-t,-this.dir),t=this.value.length),this.nextInner(t,this.dir)}}class o{constructor(t,e,i){this.value="",this.done=!1,this.cursor=new s(t,e>i?-1:1),this.pos=e>i?t.length:0,this.from=Math.min(e,i),this.to=Math.max(e,i)}nextInner(t,e){if(e<0?this.pos<=this.from:this.pos>=this.to)return this.value="",this.done=!0,this;t+=Math.max(0,e<0?this.pos-this.to:this.from-this.pos);let i=e<0?this.pos-this.from:this.to-this.pos;t>i&&(t=i),i-=t;let{value:n}=this.cursor.next(t);return this.pos+=(n.length+t)*e,this.value=n.length<=i?n:e<0?n.slice(n.length-i):n.slice(0,i),this.done=!this.value,this}next(t=0){return t<0?t=Math.max(t,this.from-this.pos):t>0&&(t=Math.min(t,this.to-this.pos)),this.nextInner(t,this.cursor.dir)}get lineBreak(){return this.cursor.lineBreak&&""!=this.value}}class a{constructor(t){this.inner=t,this.afterBreak=!0,this.value="",this.done=!1}next(t=0){let{done:e,lineBreak:i,value:n}=this.inner.next(t);return e&&this.afterBreak?(this.value="",this.afterBreak=!1):e?(this.done=!0,this.value=""):i?this.afterBreak?this.value="":(this.afterBreak=!0,this.next()):(this.value=n,this.afterBreak=!1),this}get lineBreak(){return!1}}"undefined"!=typeof Symbol&&(t.prototype[Symbol.iterator]=function(){return this.iter()},s.prototype[Symbol.iterator]=o.prototype[Symbol.iterator]=a.prototype[Symbol.iterator]=function(){return this});let l=class{constructor(t,e,i,n){this.from=t,this.to=e,this.number=i,this.text=n}get length(){return this.to-this.from}};function h(t,e,i){return[e=Math.max(0,Math.min(t.length,e)),Math.max(e,Math.min(t.length,i))]}let c="lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o".split(",").map((t=>t?parseInt(t,36):1));for(let t=1;tt)return c[e-1]<=t;return!1}function d(t){return t>=127462&&t<=127487}const u=8205;function f(t,e,i=!0,n=!0){return(i?p:m)(t,e,n)}function p(t,e,i){if(e==t.length)return e;e&&g(t.charCodeAt(e))&&Q(t.charCodeAt(e-1))&&e--;let n=b(t,e);for(e+=v(n);e=0&&d(b(t,n));)i++,n-=2;if(i%2==0)break;e+=2}}}return e}function m(t,e,i){for(;e>0;){let n=p(t,e-2,i);if(n=56320&&t<57344}function Q(t){return t>=55296&&t<56320}function b(t,e){let i=t.charCodeAt(e);if(!Q(i)||e+1==t.length)return i;let n=t.charCodeAt(e+1);return g(n)?n-56320+(i-55296<<10)+65536:i}function S(t){return t<=65535?String.fromCharCode(t):(t-=65536,String.fromCharCode(55296+(t>>10),56320+(1023&t)))}function v(t){return t<65536?1:2}const w=/\r\n?|\n/;var y=function(t){return t[t.Simple=0]="Simple",t[t.TrackDel=1]="TrackDel",t[t.TrackBefore=2]="TrackBefore",t[t.TrackAfter=3]="TrackAfter",t}(y||(y={}));class x{constructor(t){this.sections=t}get length(){let t=0;for(let e=0;et)return r+(t-n);r+=o}else{if(i!=y.Simple&&l>=t&&(i==y.TrackDel&&nt||i==y.TrackBefore&&nt))return null;if(l>t||l==t&&e<0&&!o)return t==n||e<0?r:r+a;r+=a}n=l}if(t>n)throw new RangeError(`Position ${t} is out of range for changeset of length ${n}`);return r}touchesRange(t,e=t){for(let i=0,n=0;i=0&&n<=e&&r>=t)return!(ne)||"cover";n=r}return!1}toString(){let t="";for(let e=0;e=0?":"+n:"")}return t}toJSON(){return this.sections}static fromJSON(t){if(!Array.isArray(t)||t.length%2||t.some((t=>"number"!=typeof t)))throw new RangeError("Invalid JSON representation of ChangeDesc");return new x(t)}static create(t){return new x(t)}}class k extends x{constructor(t,e){super(t),this.inserted=e}apply(t){if(this.length!=t.length)throw new RangeError("Applying change set to a document with the wrong length");return T(this,((e,i,n,r,s)=>t=t.replace(n,n+(i-e),s)),!1),t}mapDesc(t,e=!1){return _(this,t,e,!0)}invert(e){let i=this.sections.slice(),n=[];for(let r=0,s=0;r=0){i[r]=a,i[r+1]=o;let l=r>>1;for(;n.length0&&$(i,e,r.text),r.forward(t),o+=t}let l=t[s++];for(;o>1].toJSON()))}return t}static of(e,i,n){let r=[],s=[],o=0,a=null;function l(t=!1){if(!t&&!r.length)return;oa||e<0||a>i)throw new RangeError(`Invalid change range ${e} to ${a} (in doc of length ${i})`);let O=c?"string"==typeof c?t.of(c.split(n||w)):c:t.empty,d=O.length;if(e==a&&0==d)return;eo&&P(r,e-o,-1),P(r,a-e,d),$(s,r,O),o=a}}(e),l(!a),a}static empty(t){return new k(t?[t,-1]:[],[])}static fromJSON(e){if(!Array.isArray(e))throw new RangeError("Invalid JSON representation of ChangeSet");let i=[],n=[];for(let r=0;re&&"string"!=typeof t)))throw new RangeError("Invalid JSON representation of ChangeSet");if(1==s.length)i.push(s[0],0);else{for(;n.length=0&&i<=0&&i==t[r+1]?t[r]+=e:0==e&&0==t[r]?t[r+1]+=i:n?(t[r]+=e,t[r+1]+=i):t.push(e,i)}function $(e,i,n){if(0==n.length)return;let r=i.length-2>>1;if(r>1])),!(n||a==e.sections.length||e.sections[a+1]<0);)l=e.sections[a++],h=e.sections[a++];i(s,c,o,O,d),s=c,o=O}}}function _(t,e,i,n=!1){let r=[],s=n?[]:null,o=new Z(t),a=new Z(e);for(let t=-1;;)if(-1==o.ins&&-1==a.ins){let t=Math.min(o.len,a.len);P(r,t,-1),o.forward(t),a.forward(t)}else if(a.ins>=0&&(o.ins<0||t==o.i||0==o.off&&(a.len=0&&t=0)){if(o.done&&a.done)return s?k.createSet(r,s):x.create(r);throw new Error("Mismatched change set lengths")}{let e=0,i=o.len;for(;i;)if(-1==a.ins){let t=Math.min(i,a.len);e+=t,i-=t,a.forward(t)}else{if(!(0==a.ins&&a.lene||o.ins>=0&&o.len>e)&&(t||n.length>i),s.forward2(e),o.forward(e)}}else P(n,0,o.ins,t),r&&$(r,n,o.text),o.next()}}class Z{constructor(t){this.set=t,this.i=0,this.next()}next(){let{sections:t}=this.set;this.i>1;return i>=e.length?t.empty:e[i]}textBit(e){let{inserted:i}=this.set,n=this.i-2>>1;return n>=i.length&&!e?t.empty:i[n].slice(this.off,null==e?void 0:this.off+e)}forward(t){t==this.len?this.next():(this.len-=t,this.off+=t)}forward2(t){-1==this.ins?this.forward(t):t==this.ins?this.next():(this.ins-=t,this.off+=t)}}class X{constructor(t,e,i){this.from=t,this.to=e,this.flags=i}get anchor(){return 32&this.flags?this.to:this.from}get head(){return 32&this.flags?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return 8&this.flags?-1:16&this.flags?1:0}get bidiLevel(){let t=7&this.flags;return 7==t?null:t}get goalColumn(){let t=this.flags>>6;return 16777215==t?void 0:t}map(t,e=-1){let i,n;return this.empty?i=n=t.mapPos(this.from,e):(i=t.mapPos(this.from,1),n=t.mapPos(this.to,-1)),i==this.from&&n==this.to?this:new X(i,n,this.flags)}extend(t,e=t){if(t<=this.anchor&&e>=this.anchor)return C.range(t,e);let i=Math.abs(t-this.anchor)>Math.abs(e-this.anchor)?t:e;return C.range(this.anchor,i)}eq(t,e=!1){return!(this.anchor!=t.anchor||this.head!=t.head||e&&this.empty&&this.assoc!=t.assoc)}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(t){if(!t||"number"!=typeof t.anchor||"number"!=typeof t.head)throw new RangeError("Invalid JSON representation for SelectionRange");return C.range(t.anchor,t.head)}static create(t,e,i){return new X(t,e,i)}}class C{constructor(t,e){this.ranges=t,this.mainIndex=e}map(t,e=-1){return t.empty?this:C.create(this.ranges.map((i=>i.map(t,e))),this.mainIndex)}eq(t,e=!1){if(this.ranges.length!=t.ranges.length||this.mainIndex!=t.mainIndex)return!1;for(let i=0;it.toJSON())),main:this.mainIndex}}static fromJSON(t){if(!t||!Array.isArray(t.ranges)||"number"!=typeof t.main||t.main>=t.ranges.length)throw new RangeError("Invalid JSON representation for EditorSelection");return new C(t.ranges.map((t=>X.fromJSON(t))),t.main)}static single(t,e=t){return new C([C.range(t,e)],0)}static create(t,e=0){if(0==t.length)throw new RangeError("A selection needs at least one range");for(let i=0,n=0;nt?8:0)|r)}static normalized(t,e=0){let i=t[e];t.sort(((t,e)=>t.from-e.from)),e=t.indexOf(i);for(let i=1;in.head?C.range(o,s):C.range(s,o))}}return new C(t,e)}}function q(t,e){for(let i of t.ranges)if(i.to>e)throw new RangeError("Selection points outside of document")}let W=0;class A{constructor(t,e,i,n,r){this.combine=t,this.compareInput=e,this.compare=i,this.isStatic=n,this.id=W++,this.default=t([]),this.extensions="function"==typeof r?r(this):r}get reader(){return this}static define(t={}){return new A(t.combine||(t=>t),t.compareInput||((t,e)=>t===e),t.compare||(t.combine?(t,e)=>t===e:z),!!t.static,t.enables)}of(t){return new V([],this,0,t)}compute(t,e){if(this.isStatic)throw new Error("Can't compute a static facet");return new V(t,this,1,e)}computeN(t,e){if(this.isStatic)throw new Error("Can't compute a static facet");return new V(t,this,2,e)}from(t,e){return e||(e=t=>t),this.compute([t],(i=>e(i.field(t))))}}function z(t,e){return t==e||t.length==e.length&&t.every(((t,i)=>t===e[i]))}class V{constructor(t,e,i,n){this.dependencies=t,this.facet=e,this.type=i,this.value=n,this.id=W++}dynamicSlot(t){var e;let i=this.value,n=this.facet.compareInput,r=this.id,s=t[r]>>1,o=2==this.type,a=!1,l=!1,h=[];for(let i of this.dependencies)"doc"==i?a=!0:"selection"==i?l=!0:1&(null!==(e=t[i.id])&&void 0!==e?e:1)||h.push(t[i.id]);return{create:t=>(t.values[s]=i(t),1),update(t,e){if(a&&e.docChanged||l&&(e.docChanged||e.selection)||E(t,h)){let e=i(t);if(o?!M(e,t.values[s],n):!n(e,t.values[s]))return t.values[s]=e,1}return 0},reconfigure:(t,e)=>{let a,l=e.config.address[r];if(null!=l){let r=et(e,l);if(this.dependencies.every((i=>i instanceof A?e.facet(i)===t.facet(i):!(i instanceof j)||e.field(i,!1)==t.field(i,!1)))||(o?M(a=i(t),r,n):n(a=i(t),r)))return t.values[s]=r,0}else a=i(t);return t.values[s]=a,1}}}}function M(t,e,i){if(t.length!=e.length)return!1;for(let n=0;nt[e.id])),r=i.map((t=>t.type)),s=n.filter((t=>!(1&t))),o=t[e.id]>>1;function a(t){let i=[];for(let e=0;et===e),t);return t.provide&&(e.provides=t.provide(e)),e}create(t){let e=t.facet(U).find((t=>t.field==this));return((null==e?void 0:e.create)||this.createF)(t)}slot(t){let e=t[this.id]>>1;return{create:t=>(t.values[e]=this.create(t),1),update:(t,i)=>{let n=t.values[e],r=this.updateF(n,i);return this.compareF(n,r)?0:(t.values[e]=r,1)},reconfigure:(t,i)=>null!=i.config.address[this.id]?(t.values[e]=i.field(this),0):(t.values[e]=this.create(t),1)}}init(t){return[this,U.of({field:this,create:t})]}get extension(){return this}}const D=4,G=3,L=2,N=1;function I(t){return e=>new F(e,t)}const B={highest:I(0),high:I(N),default:I(L),low:I(G),lowest:I(D)};class F{constructor(t,e){this.inner=t,this.prec=e}}class H{of(t){return new J(this,t)}reconfigure(t){return H.reconfigure.of({compartment:this,extension:t})}get(t){return t.config.compartments.get(this)}}class J{constructor(t,e){this.compartment=t,this.inner=e}}class K{constructor(t,e,i,n,r,s){for(this.base=t,this.compartments=e,this.dynamicSlots=i,this.address=n,this.staticValues=r,this.facets=s,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(t,e,i){let n=[],r=Object.create(null),s=new Map;for(let i of function(t,e,i){let n=[[],[],[],[],[]],r=new Map;function s(t,o){let a=r.get(t);if(null!=a){if(a<=o)return;let e=n[a].indexOf(t);e>-1&&n[a].splice(e,1),t instanceof J&&i.delete(t.compartment)}if(r.set(t,o),Array.isArray(t))for(let e of t)s(e,o);else if(t instanceof J){if(i.has(t.compartment))throw new RangeError("Duplicate use of compartment in extensions");let n=e.get(t.compartment)||t.inner;i.set(t.compartment,n),s(n,o)}else if(t instanceof F)s(t.inner,t.prec);else if(t instanceof j)n[o].push(t),t.provides&&s(t.provides,o);else if(t instanceof V)n[o].push(t),t.facet.extensions&&s(t.facet.extensions,L);else{let e=t.extension;if(!e)throw new Error(`Unrecognized extension value in extension set (${t}). This sometimes happens because multiple instances of @codemirror/state are loaded, breaking instanceof checks.`);s(e,o)}}return s(t,L),n.reduce(((t,e)=>t.concat(e)))}(t,e,s))i instanceof j?n.push(i):(r[i.facet.id]||(r[i.facet.id]=[])).push(i);let o=Object.create(null),a=[],l=[];for(let t of n)o[t.id]=l.length<<1,l.push((e=>t.slot(e)));let h=null==i?void 0:i.config.facets;for(let t in r){let e=r[t],n=e[0].facet,s=h&&h[t]||[];if(e.every((t=>0==t.type)))if(o[n.id]=a.length<<1|1,z(s,e))a.push(i.facet(n));else{let t=n.combine(e.map((t=>t.value)));a.push(i&&n.compare(t,i.facet(n))?i.facet(n):t)}else{for(let t of e)0==t.type?(o[t.id]=a.length<<1|1,a.push(t.value)):(o[t.id]=l.length<<1,l.push((e=>t.dynamicSlot(e))));o[n.id]=l.length<<1,l.push((t=>Y(t,n,e)))}}let c=l.map((t=>t(o)));return new K(t,s,c,o,a,r)}}function tt(t,e){if(1&e)return 2;let i=e>>1,n=t.status[i];if(4==n)throw new Error("Cyclic dependency between fields and/or facets");if(2&n)return n;t.status[i]=4;let r=t.computeSlot(t,t.config.dynamicSlots[i]);return t.status[i]=2|r}function et(t,e){return 1&e?t.config.staticValues[e>>1]:t.values[e>>1]}const it=A.define(),nt=A.define({combine:t=>t.some((t=>t)),static:!0}),rt=A.define({combine:t=>t.length?t[0]:void 0,static:!0}),st=A.define(),ot=A.define(),at=A.define(),lt=A.define({combine:t=>!!t.length&&t[0]});class ht{constructor(t,e){this.type=t,this.value=e}static define(){return new ct}}class ct{of(t){return new ht(this,t)}}class Ot{constructor(t){this.map=t}of(t){return new dt(this,t)}}class dt{constructor(t,e){this.type=t,this.value=e}map(t){let e=this.type.map(this.value,t);return void 0===e?void 0:e==this.value?this:new dt(this.type,e)}is(t){return this.type==t}static define(t={}){return new Ot(t.map||(t=>t))}static mapEffects(t,e){if(!t.length)return t;let i=[];for(let n of t){let t=n.map(e);t&&i.push(t)}return i}}dt.reconfigure=dt.define(),dt.appendConfig=dt.define();class ut{constructor(t,e,i,n,r,s){this.startState=t,this.changes=e,this.selection=i,this.effects=n,this.annotations=r,this.scrollIntoView=s,this._doc=null,this._state=null,i&&q(i,e.newLength),r.some((t=>t.type==ut.time))||(this.annotations=r.concat(ut.time.of(Date.now())))}static create(t,e,i,n,r,s){return new ut(t,e,i,n,r,s)}get newDoc(){return this._doc||(this._doc=this.changes.apply(this.startState.doc))}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(t){for(let e of this.annotations)if(e.type==t)return e.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}isUserEvent(t){let e=this.annotation(ut.userEvent);return!(!e||!(e==t||e.length>t.length&&e.slice(0,t.length)==t&&"."==e[t.length]))}}function ft(t,e){let i=[];for(let n=0,r=0;;){let s,o;if(n=t[n]))s=t[n++],o=t[n++];else{if(!(r=0;r--){let s=i[r](t);s&&Object.keys(s).length&&(n=pt(n,mt(e,s,t.changes.newLength),!0))}return n==t?t:ut.create(e,t.changes,t.selection,n.effects,n.annotations,n.scrollIntoView)}(i?function(t){let e=t.startState,i=!0;for(let n of e.facet(st)){let e=n(t);if(!1===e){i=!1;break}Array.isArray(e)&&(i=!0===i?e:ft(i,e))}if(!0!==i){let n,r;if(!1===i)r=t.changes.invertedDesc,n=k.empty(e.doc.length);else{let e=t.changes.filter(i);n=e.changes,r=e.filtered.mapDesc(e.changes).invertedDesc}t=ut.create(e,n,t.selection&&t.selection.map(r),dt.mapEffects(t.effects,r),t.annotations,t.scrollIntoView)}let n=e.facet(ot);for(let i=n.length-1;i>=0;i--){let r=n[i](t);t=r instanceof ut?r:Array.isArray(r)&&1==r.length&&r[0]instanceof ut?r[0]:gt(e,bt(r),!1)}return t}(r):r)}ut.time=ht.define(),ut.userEvent=ht.define(),ut.addToHistory=ht.define(),ut.remote=ht.define();const Qt=[];function bt(t){return null==t?Qt:Array.isArray(t)?t:[t]}var St=function(t){return t[t.Word=0]="Word",t[t.Space=1]="Space",t[t.Other=2]="Other",t}(St||(St={}));const vt=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;let wt;try{wt=new RegExp("[\\p{Alphabetic}\\p{Number}_]","u")}catch(Hb){}function yt(t){return e=>{if(!/\S/.test(e))return St.Space;if(function(t){if(wt)return wt.test(t);for(let e=0;e"€"&&(i.toUpperCase()!=i.toLowerCase()||vt.test(i)))return!0}return!1}(e))return St.Word;for(let i=0;i-1)return St.Word;return St.Other}}class xt{constructor(t,e,i,n,r,s){this.config=t,this.doc=e,this.selection=i,this.values=n,this.status=t.statusTemplate.slice(),this.computeSlot=r,s&&(s._state=this);for(let t=0;tr.set(e,t))),i=null),r.set(e.value.compartment,e.value.extension)):e.is(dt.reconfigure)?(i=null,n=e.value):e.is(dt.appendConfig)&&(i=null,n=bt(n).concat(e.value));if(i)e=t.startState.values.slice();else{i=K.resolve(n,r,this),e=new xt(i,this.doc,this.selection,i.dynamicSlots.map((()=>null)),((t,e)=>e.reconfigure(t,this)),null).values}let s=t.startState.facet(nt)?t.newSelection:t.newSelection.asSingle();new xt(i,t.newDoc,s,e,((e,i)=>i.update(e,t)),t)}replaceSelection(t){return"string"==typeof t&&(t=this.toText(t)),this.changeByRange((e=>({changes:{from:e.from,to:e.to,insert:t},range:C.cursor(e.from+t.length)})))}changeByRange(t){let e=this.selection,i=t(e.ranges[0]),n=this.changes(i.changes),r=[i.range],s=bt(i.effects);for(let i=1;ir.spec.fromJSON(s,t))))}return xt.create({doc:t.doc,selection:C.fromJSON(t.selection),extensions:e.extensions?n.concat([e.extensions]):n})}static create(e={}){let i=K.resolve(e.extensions||[],new Map),n=e.doc instanceof t?e.doc:t.of((e.doc||"").split(i.staticFacet(xt.lineSeparator)||w)),r=e.selection?e.selection instanceof C?e.selection:C.single(e.selection.anchor,e.selection.head):C.single(0);return q(r,n.length),i.staticFacet(nt)||(r=r.asSingle()),new xt(i,n,r,i.dynamicSlots.map((()=>null)),((t,e)=>e.create(t)),null)}get tabSize(){return this.facet(xt.tabSize)}get lineBreak(){return this.facet(xt.lineSeparator)||"\n"}get readOnly(){return this.facet(lt)}phrase(t,...e){for(let e of this.facet(xt.phrases))if(Object.prototype.hasOwnProperty.call(e,t)){t=e[t];break}return e.length&&(t=t.replace(/\$(\$|\d*)/g,((t,i)=>{if("$"==i)return"$";let n=+(i||1);return!n||n>e.length?t:e[n-1]}))),t}languageDataAt(t,e,i=-1){let n=[];for(let r of this.facet(it))for(let s of r(this,e,i))Object.prototype.hasOwnProperty.call(s,t)&&n.push(s[t]);return n}charCategorizer(t){return yt(this.languageDataAt("wordChars",t).join(""))}wordAt(t){let{text:e,from:i,length:n}=this.doc.lineAt(t),r=this.charCategorizer(t),s=t-i,o=t-i;for(;s>0;){let t=f(e,s,!1);if(r(e.slice(t,s))!=St.Word)break;s=t}for(;ot.length?t[0]:4}),xt.lineSeparator=rt,xt.readOnly=lt,xt.phrases=A.define({compare(t,e){let i=Object.keys(t),n=Object.keys(e);return i.length==n.length&&i.every((i=>t[i]==e[i]))}}),xt.languageData=it,xt.changeFilter=st,xt.transactionFilter=ot,xt.transactionExtender=at,H.reconfigure=dt.define();class Pt{eq(t){return this==t}range(t,e=t){return $t.create(t,e,this)}}Pt.prototype.startSide=Pt.prototype.endSide=0,Pt.prototype.point=!1,Pt.prototype.mapMode=y.TrackDel;let $t=class t{constructor(t,e,i){this.from=t,this.to=e,this.value=i}static create(e,i,n){return new t(e,i,n)}};function Tt(t,e){return t.from-e.from||t.value.startSide-e.value.startSide}class _t{constructor(t,e,i,n){this.from=t,this.to=e,this.value=i,this.maxPoint=n}get length(){return this.to[this.to.length-1]}findIndex(t,e,i,n=0){let r=i?this.to:this.from;for(let s=n,o=r.length;;){if(s==o)return s;let n=s+o>>1,a=r[n]-t||(i?this.value[n].endSide:this.value[n].startSide)-e;if(n==s)return a>=0?s:o;a>=0?o=n:s=n+1}}between(t,e,i,n){for(let r=this.findIndex(e,-1e9,!0),s=this.findIndex(i,1e9,!1,r);rh||l==h&&c.startSide>0&&c.endSide<=0)continue;(h-l||c.endSide-c.startSide)<0||(s<0&&(s=l),c.point&&(o=Math.max(o,h-l)),i.push(c),n.push(l-s),r.push(h-s))}return{mapped:i.length?new _t(n,r,i,o):null,pos:s}}}class Rt{constructor(t,e,i,n){this.chunkPos=t,this.chunk=e,this.nextLayer=i,this.maxPoint=n}static create(t,e,i,n){return new Rt(t,e,i,n)}get length(){let t=this.chunk.length-1;return t<0?0:Math.max(this.chunkEnd(t),this.nextLayer.length)}get size(){if(this.isEmpty)return 0;let t=this.nextLayer.size;for(let e of this.chunk)t+=e.value.length;return t}chunkEnd(t){return this.chunkPos[t]+this.chunk[t].length}update(t){let{add:e=[],sort:i=!1,filterFrom:n=0,filterTo:r=this.length}=t,s=t.filter;if(0==e.length&&!s)return this;if(i&&(e=e.slice().sort(Tt)),this.isEmpty)return e.length?Rt.of(e):this;let o=new Ct(this,null,-1).goto(0),a=0,l=[],h=new Zt;for(;o.value||a=0){let t=e[a++];h.addInner(t.from,t.to,t.value)||l.push(t)}else 1==o.rangeIndex&&o.chunkIndexthis.chunkEnd(o.chunkIndex)||ro.to||r=r&&t<=r+s.length&&!1===s.between(r,t-r,e-r,i))return}this.nextLayer.between(t,e,i)}}iter(t=0){return qt.from([this]).goto(t)}get isEmpty(){return this.nextLayer==this}static iter(t,e=0){return qt.from(t).goto(e)}static compare(t,e,i,n,r=-1){let s=t.filter((t=>t.maxPoint>0||!t.isEmpty&&t.maxPoint>=r)),o=e.filter((t=>t.maxPoint>0||!t.isEmpty&&t.maxPoint>=r)),a=Xt(s,o,i),l=new At(s,a,r),h=new At(o,a,r);i.iterGaps(((t,e,i)=>zt(l,t,h,e,i,n))),i.empty&&0==i.length&&zt(l,0,h,0,0,n)}static eq(t,e,i=0,n){null==n&&(n=999999999);let r=t.filter((t=>!t.isEmpty&&e.indexOf(t)<0)),s=e.filter((e=>!e.isEmpty&&t.indexOf(e)<0));if(r.length!=s.length)return!1;if(!r.length)return!0;let o=Xt(r,s),a=new At(r,o,0).goto(i),l=new At(s,o,0).goto(i);for(;;){if(a.to!=l.to||!Vt(a.active,l.active)||a.point&&(!l.point||!a.point.eq(l.point)))return!1;if(a.to>n)return!0;a.next(),l.next()}}static spans(t,e,i,n,r=-1){let s=new At(t,null,r).goto(e),o=e,a=s.openStart;for(;;){let t=Math.min(s.to,i);if(s.point){let i=s.activeForPoint(s.to),r=s.pointFromo&&(n.span(o,t,s.active,a),a=s.openEnd(t));if(s.to>i)return a+(s.point&&s.to>i?1:0);o=s.to,s.next()}}static of(t,e=!1){let i=new Zt;for(let n of t instanceof $t?[t]:e?function(t){if(t.length>1)for(let e=t[0],i=1;i0)return t.slice().sort(Tt);e=n}return t}(t):t)i.add(n.from,n.to,n.value);return i.finish()}static join(t){if(!t.length)return Rt.empty;let e=t[t.length-1];for(let i=t.length-2;i>=0;i--)for(let n=t[i];n!=Rt.empty;n=n.nextLayer)e=new Rt(n.chunkPos,n.chunk,e,Math.max(n.maxPoint,e.maxPoint));return e}}Rt.empty=new Rt([],[],null,-1),Rt.empty.nextLayer=Rt.empty;class Zt{finishChunk(t){this.chunks.push(new _t(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,t&&(this.from=[],this.to=[],this.value=[])}constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}add(t,e,i){this.addInner(t,e,i)||(this.nextLayer||(this.nextLayer=new Zt)).add(t,e,i)}addInner(t,e,i){let n=t-this.lastTo||i.startSide-this.last.endSide;if(n<=0&&(t-this.lastFrom||i.startSide-this.last.startSide)<0)throw new Error("Ranges must be added sorted by `from` position and `startSide`");return!(n<0)&&(250==this.from.length&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=t),this.from.push(t-this.chunkStart),this.to.push(e-this.chunkStart),this.last=i,this.lastFrom=t,this.lastTo=e,this.value.push(i),i.point&&(this.maxPoint=Math.max(this.maxPoint,e-t)),!0)}addChunk(t,e){if((t-this.lastTo||e.value[0].startSide-this.last.endSide)<0)return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,e.maxPoint),this.chunks.push(e),this.chunkPos.push(t);let i=e.value.length-1;return this.last=e.value[i],this.lastFrom=e.from[i]+t,this.lastTo=e.to[i]+t,!0}finish(){return this.finishInner(Rt.empty)}finishInner(t){if(this.from.length&&this.finishChunk(!1),0==this.chunks.length)return t;let e=Rt.create(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(t):t,this.setMaxPoint);return this.from=null,e}}function Xt(t,e,i){let n=new Map;for(let e of t)for(let t=0;t=this.minPoint)break}}}setRangeIndex(t){if(t==this.layer.chunk[this.chunkIndex].value.length){if(this.chunkIndex++,this.skip)for(;this.chunkIndex=i&&n.push(new Ct(s,e,i,r));return 1==n.length?n[0]:new qt(n)}get startSide(){return this.value?this.value.startSide:0}goto(t,e=-1e9){for(let i of this.heap)i.goto(t,e);for(let t=this.heap.length>>1;t>=0;t--)Wt(this.heap,t);return this.next(),this}forward(t,e){for(let i of this.heap)i.forward(t,e);for(let t=this.heap.length>>1;t>=0;t--)Wt(this.heap,t);(this.to-t||this.value.endSide-e)<0&&this.next()}next(){if(0==this.heap.length)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let t=this.heap[0];this.from=t.from,this.to=t.to,this.value=t.value,this.rank=t.rank,t.value&&t.next(),Wt(this.heap,0)}}}function Wt(t,e){for(let i=t[e];;){let n=1+(e<<1);if(n>=t.length)break;let r=t[n];if(n+1=0&&(r=t[n+1],n++),i.compare(r)<0)break;t[n]=i,t[e]=r,e=n}}class At{constructor(t,e,i){this.minPoint=i,this.active=[],this.activeTo=[],this.activeRank=[],this.minActive=-1,this.point=null,this.pointFrom=0,this.pointRank=0,this.to=-1e9,this.endSide=0,this.openStart=-1,this.cursor=qt.from(t,e,i)}goto(t,e=-1e9){return this.cursor.goto(t,e),this.active.length=this.activeTo.length=this.activeRank.length=0,this.minActive=-1,this.to=t,this.endSide=e,this.openStart=-1,this.next(),this}forward(t,e){for(;this.minActive>-1&&(this.activeTo[this.minActive]-t||this.active[this.minActive].endSide-e)<0;)this.removeActive(this.minActive);this.cursor.forward(t,e)}removeActive(t){Mt(this.active,t),Mt(this.activeTo,t),Mt(this.activeRank,t),this.minActive=Yt(this.active,this.activeTo)}addActive(t){let e=0,{value:i,to:n,rank:r}=this.cursor;for(;e0;)e++;Et(this.active,e,i),Et(this.activeTo,e,n),Et(this.activeRank,e,r),t&&Et(t,e,this.cursor.from),this.minActive=Yt(this.active,this.activeTo)}next(){let t=this.to,e=this.point;this.point=null;let i=this.openStart<0?[]:null;for(;;){let n=this.minActive;if(n>-1&&(this.activeTo[n]-this.cursor.from||this.active[n].endSide-this.cursor.startSide)<0){if(this.activeTo[n]>t){this.to=this.activeTo[n],this.endSide=this.active[n].endSide;break}this.removeActive(n),i&&Mt(i,n)}else{if(!this.cursor.value){this.to=this.endSide=1e9;break}if(this.cursor.from>t){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}{let t=this.cursor.value;if(t.point){if(!(e&&this.cursor.to==this.to&&this.cursor.from=0&&i[e]=0&&!(this.activeRank[i]t||this.activeTo[i]==t&&this.active[i].endSide>=this.point.endSide)&&e.push(this.active[i]);return e.reverse()}openEnd(t){let e=0;for(let i=this.activeTo.length-1;i>=0&&this.activeTo[i]>t;i--)e++;return e}}function zt(t,e,i,n,r,s){t.goto(e),i.goto(n);let o=n+r,a=n,l=n-e;for(;;){let e=t.to+l-i.to||t.endSide-i.endSide,n=e<0?t.to+l:i.to,r=Math.min(n,o);if(t.point||i.point?t.point&&i.point&&(t.point==i.point||t.point.eq(i.point))&&Vt(t.activeForPoint(t.to),i.activeForPoint(i.to))||s.comparePoint(a,r,t.point,i.point):r>a&&!Vt(t.active,i.active)&&s.compareRange(a,r,t.active,i.active),n>o)break;a=n,e<=0&&t.next(),e>=0&&i.next()}}function Vt(t,e){if(t.length!=e.length)return!1;for(let i=0;i=e;i--)t[i+1]=t[i];t[e]=i}function Yt(t,e){let i=-1,n=1e9;for(let r=0;r=e)return n;if(n==t.length)break;r+=9==t.charCodeAt(n)?i-r%i:1,n=f(t,n)}return!0===n?-1:t.length}const Dt="undefined"==typeof Symbol?"__ͼ":Symbol.for("ͼ"),Gt="undefined"==typeof Symbol?"__styleSet"+Math.floor(1e8*Math.random()):Symbol("styleSet"),Lt="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:{};class Nt{constructor(t,e){this.rules=[];let{finish:i}=e||{};function n(t){return/^@/.test(t)?[t]:t.split(/,\s*/)}function r(t,e,s,o){let a=[],l=/^@(\w+)\b/.exec(t[0]),h=l&&"keyframes"==l[1];if(l&&null==e)return s.push(t[0]+";");for(let i in e){let o=e[i];if(/&/.test(i))r(i.split(/,\s*/).map((e=>t.map((t=>e.replace(/&/,t))))).reduce(((t,e)=>t.concat(e))),o,s);else if(o&&"object"==typeof o){if(!l)throw new RangeError("The value of a property ("+i+") should be a primitive value.");r(n(i),o,a,h)}else null!=o&&a.push(i.replace(/_.*/,"").replace(/[A-Z]/g,(t=>"-"+t.toLowerCase()))+": "+o+";")}(a.length||h)&&s.push((!i||l||o?t:t.map(i)).join(", ")+" {"+a.join(" ")+"}")}for(let e in t)r(n(e),t[e],this.rules)}getRules(){return this.rules.join("\n")}static newName(){let t=Lt[Dt]||1;return Lt[Dt]=t+1,"ͼ"+t.toString(36)}static mount(t,e,i){let n=t[Gt],r=i&&i.nonce;n?r&&n.setNonce(r):n=new Bt(t,r),n.mount(Array.isArray(e)?e:[e],t)}}let It=new Map;class Bt{constructor(t,e){let i=t.ownerDocument||t,n=i.defaultView;if(!t.head&&t.adoptedStyleSheets&&n.CSSStyleSheet){let e=It.get(i);if(e)return t[Gt]=e;this.sheet=new n.CSSStyleSheet,It.set(i,this)}else this.styleTag=i.createElement("style"),e&&this.styleTag.setAttribute("nonce",e);this.modules=[],t[Gt]=this}mount(t,e){let i=this.sheet,n=0,r=0;for(let e=0;e-1&&(this.modules.splice(o,1),r--,o=-1),-1==o){if(this.modules.splice(r++,0,s),i)for(let t=0;t",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},Jt="undefined"!=typeof navigator&&/Mac/.test(navigator.platform),Kt="undefined"!=typeof navigator&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),te=0;te<10;te++)Ft[48+te]=Ft[96+te]=String(te);for(te=1;te<=24;te++)Ft[te+111]="F"+te;for(te=65;te<=90;te++)Ft[te]=String.fromCharCode(te+32),Ht[te]=String.fromCharCode(te);for(var ee in Ft)Ht.hasOwnProperty(ee)||(Ht[ee]=Ft[ee]);function ie(t){let e;return e=11==t.nodeType?t.getSelection?t:t.ownerDocument:t,e.getSelection()}function ne(t,e){return!!e&&(t==e||t.contains(1!=e.nodeType?e.parentNode:e))}function re(t,e){if(!e.anchorNode)return!1;try{return ne(t,e.anchorNode)}catch(t){return!1}}function se(t){return 3==t.nodeType?Qe(t,0,t.nodeValue.length).getClientRects():1==t.nodeType?t.getClientRects():[]}function oe(t,e,i,n){return!!i&&(he(t,e,i,n,-1)||he(t,e,i,n,1))}function ae(t){for(var e=0;;e++)if(!(t=t.previousSibling))return e}function le(t){return 1==t.nodeType&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(t.nodeName)}function he(t,e,i,n,r){for(;;){if(t==i&&e==n)return!0;if(e==(r<0?0:ce(t))){if("DIV"==t.nodeName)return!1;let i=t.parentNode;if(!i||1!=i.nodeType)return!1;e=ae(t)+(r<0?0:1),t=i}else{if(1!=t.nodeType)return!1;if(1==(t=t.childNodes[e+(r<0?-1:0)]).nodeType&&"false"==t.contentEditable)return!1;e=r<0?ce(t):0}}}function ce(t){return 3==t.nodeType?t.nodeValue.length:t.childNodes.length}function Oe(t,e){let i=e?t.left:t.right;return{left:i,right:i,top:t.top,bottom:t.bottom}}function de(t){let e=t.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:t.innerWidth,top:0,bottom:t.innerHeight}}function ue(t,e){let i=e.width/t.offsetWidth,n=e.height/t.offsetHeight;return(i>.995&&i<1.005||!isFinite(i)||Math.abs(e.width-t.offsetWidth)<1)&&(i=1),(n>.995&&n<1.005||!isFinite(n)||Math.abs(e.height-t.offsetHeight)<1)&&(n=1),{scaleX:i,scaleY:n}}class fe{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}eq(t){return this.anchorNode==t.anchorNode&&this.anchorOffset==t.anchorOffset&&this.focusNode==t.focusNode&&this.focusOffset==t.focusOffset}setRange(t){let{anchorNode:e,focusNode:i}=t;this.set(e,Math.min(t.anchorOffset,e?ce(e):0),i,Math.min(t.focusOffset,i?ce(i):0))}set(t,e,i,n){this.anchorNode=t,this.anchorOffset=e,this.focusNode=i,this.focusOffset=n}}let pe,me=null;function ge(t){if(t.setActive)return t.setActive();if(me)return t.focus(me);let e=[];for(let i=t;i&&(e.push(i,i.scrollTop,i.scrollLeft),i!=i.ownerDocument);i=i.parentNode);if(t.focus(null==me?{get preventScroll(){return me={preventScroll:!0},!0}}:void 0),!me){me=!1;for(let t=0;tMath.max(1,t.scrollHeight-t.clientHeight-4)}function we(t,e){for(let i=t,n=e;;){if(3==i.nodeType&&n>0)return{node:i,offset:n};if(1==i.nodeType&&n>0){if("false"==i.contentEditable)return null;i=i.childNodes[n-1],n=ce(i)}else{if(!i.parentNode||le(i))return null;n=ae(i),i=i.parentNode}}}function ye(t,e){for(let i=t,n=e;;){if(3==i.nodeType&&ne)return i.domBoundsAround(t,e,l);if(c>=t&&-1==n&&(n=a,r=l),l>e&&i.dom.parentNode==this.dom){s=a,o=h;break}h=c,l=c+i.breakAfter}return{from:r,to:o<0?i+this.length:o,startDOM:(n?this.children[n-1].dom.nextSibling:null)||this.dom.firstChild,endDOM:s=0?this.children[s].dom:null}}markDirty(t=!1){this.flags|=2,this.markParentsDirty(t)}markParentsDirty(t){for(let e=this.parent;e;e=e.parent){if(t&&(e.flags|=2),1&e.flags)return;e.flags|=1,t=!1}}setParent(t){this.parent!=t&&(this.parent=t,7&this.flags&&this.markParentsDirty(!0))}setDOM(t){this.dom!=t&&(this.dom&&(this.dom.cmView=null),this.dom=t,t.cmView=this)}get rootView(){for(let t=this;;){let e=t.parent;if(!e)return t;t=e}}replaceChildren(t,e,i=ke){this.markDirty();for(let n=t;nthis.pos||t==this.pos&&(e>0||0==this.i||this.children[this.i-1].breakAfter))return this.off=t-this.pos,this;let i=this.children[--this.i];this.pos-=i.length+i.breakAfter}}}function _e(t,e,i,n,r,s,o,a,l){let{children:h}=t,c=h.length?h[e]:null,O=s.length?s[s.length-1]:null,d=O?O.breakAfter:o;if(!(e==n&&c&&!o&&!d&&s.length<2&&c.merge(i,r,s.length?O:null,0==i,a,l))){if(n0&&(!o&&s.length&&c.merge(i,c.length,s[0],!1,a,0)?c.breakAfter=s.shift().breakAfter:(i2);var Ue={mac:Ye||/Mac/.test(Ze.platform),windows:/Win/.test(Ze.platform),linux:/Linux|X11/.test(Ze.platform),ie:Ae,ie_version:qe?Xe.documentMode||6:We?+We[1]:Ce?+Ce[1]:0,gecko:ze,gecko_version:ze?+(/Firefox\/(\d+)/.exec(Ze.userAgent)||[0,0])[1]:0,chrome:!!Ve,chrome_version:Ve?+Ve[1]:0,ios:Ye,android:/Android\b/.test(Ze.userAgent),webkit:Me,safari:Ee,webkit_version:Me?+(/\bAppleWebKit\/(\d+)/.exec(Ze.userAgent)||[0,0])[1]:0,tabSize:null!=Xe.documentElement.style.tabSize?"tab-size":"-moz-tab-size"};class je extends Pe{constructor(t){super(),this.text=t}get length(){return this.text.length}createDOM(t){this.setDOM(t||document.createTextNode(this.text))}sync(t,e){this.dom||this.createDOM(),this.dom.nodeValue!=this.text&&(e&&e.node==this.dom&&(e.written=!0),this.dom.nodeValue=this.text)}reuseDOM(t){3==t.nodeType&&this.createDOM(t)}merge(t,e,i){return!(8&this.flags||i&&(!(i instanceof je)||this.length-(e-t)+i.length>256||8&i.flags))&&(this.text=this.text.slice(0,t)+(i?i.text:"")+this.text.slice(e),this.markDirty(),!0)}split(t){let e=new je(this.text.slice(t));return this.text=this.text.slice(0,t),this.markDirty(),e.flags|=8&this.flags,e}localPosFromDOM(t,e){return t==this.dom?e:e?this.text.length:0}domAtPos(t){return new xe(this.dom,t)}domBoundsAround(t,e,i){return{from:i,to:i+this.length,startDOM:this.dom,endDOM:this.dom.nextSibling}}coordsAt(t,e){return function(t,e,i){let n=t.nodeValue.length;e>n&&(e=n);let r=e,s=e,o=0;0==e&&i<0||e==n&&i>=0?Ue.chrome||Ue.gecko||(e?(r--,o=1):s=0)?0:a.length-1];Ue.safari&&!o&&0==l.width&&(l=Array.prototype.find.call(a,(t=>t.width))||l);return o?Oe(l,o<0):l||null}(this.dom,t,e)}}class De extends Pe{constructor(t,e=[],i=0){super(),this.mark=t,this.children=e,this.length=i;for(let t of e)t.setParent(this)}setAttrs(t){if(Se(t),this.mark.class&&(t.className=this.mark.class),this.mark.attrs)for(let e in this.mark.attrs)t.setAttribute(e,this.mark.attrs[e]);return t}canReuseDOM(t){return super.canReuseDOM(t)&&!(8&(this.flags|t.flags))}reuseDOM(t){t.nodeName==this.mark.tagName.toUpperCase()&&(this.setDOM(t),this.flags|=6)}sync(t,e){this.dom?4&this.flags&&this.setAttrs(this.dom):this.setDOM(this.setAttrs(document.createElement(this.mark.tagName))),super.sync(t,e)}merge(t,e,i,n,r,s){return(!i||!(!(i instanceof De&&i.mark.eq(this.mark))||t&&r<=0||et&&e.push(i=t&&(n=r),i=o,r++}let s=this.length-t;return this.length=t,n>-1&&(this.children.length=n,this.markDirty()),new De(this.mark,e,s)}domAtPos(t){return Ne(this,t)}coordsAt(t,e){return Be(this,t,e)}}class Ge extends Pe{static create(t,e,i){return new Ge(t,e,i)}constructor(t,e,i){super(),this.widget=t,this.length=e,this.side=i,this.prevWidget=null}split(t){let e=Ge.create(this.widget,this.length-t,this.side);return this.length-=t,e}sync(t){this.dom&&this.widget.updateDOM(this.dom,t)||(this.dom&&this.prevWidget&&this.prevWidget.destroy(this.dom),this.prevWidget=null,this.setDOM(this.widget.toDOM(t)),this.widget.editable||(this.dom.contentEditable="false"))}getSide(){return this.side}merge(t,e,i,n,r,s){return!(i&&(!(i instanceof Ge&&this.widget.compare(i.widget))||t>0&&r<=0||e0)?xe.before(this.dom):xe.after(this.dom,t==this.length)}domBoundsAround(){return null}coordsAt(t,e){let i=this.widget.coordsAt(this.dom,t,e);if(i)return i;let n=this.dom.getClientRects(),r=null;if(!n.length)return null;let s=this.side?this.side<0:t>0;for(let e=s?n.length-1:0;r=n[e],!(t>0?0==e:e==n.length-1||r.top0?xe.before(this.dom):xe.after(this.dom)}localPosFromDOM(){return 0}domBoundsAround(){return null}coordsAt(t){return this.dom.getBoundingClientRect()}get overrideDOMText(){return t.empty}get isHidden(){return!0}}function Ne(t,e){let i=t.dom,{children:n}=t,r=0;for(let t=0;rt&&e0;t--){let e=n[t-1];if(e.dom.parentNode==i)return e.domAtPos(e.length)}for(let t=r;t0&&e instanceof De&&r.length&&(n=r[r.length-1])instanceof De&&n.mark.eq(e.mark)?Ie(n,e.children[0],i-1):(r.push(e),e.setParent(t)),t.length+=e.length}function Be(t,e,i){let n=null,r=-1,s=null,o=-1;!function t(e,a){for(let l=0,h=0;l=a&&(c.children.length?t(c,a-h):(!s||s.isHidden&&i>0)&&(O>a||h==O&&c.getSide()>0)?(s=c,o=a-h):(h-1?1:0)!=r.length-(i&&r.indexOf(i)>-1?1:0))return!1;for(let s of n)if(s!=i&&(-1==r.indexOf(s)||t[s]!==e[s]))return!1;return!0}function Ke(t,e,i){let n=!1;if(e)for(let r in e)i&&r in i||(n=!0,"style"==r?t.style.cssText="":t.removeAttribute(r));if(i)for(let r in i)e&&e[r]==i[r]||(n=!0,"style"==r?t.style.cssText=i[r]:t.setAttribute(r,i[r]));return n}function ti(t){let e=Object.create(null);for(let i=0;i0&&0==this.children[i-1].length;)this.children[--i].destroy();return this.children.length=i,this.markDirty(),this.length=t,e}transferDOM(t){this.dom&&(this.markDirty(),t.setDOM(this.dom),t.prevAttrs=void 0===this.prevAttrs?this.attrs:this.prevAttrs,this.prevAttrs=void 0,this.dom=null)}setDeco(t){Je(this.attrs,t)||(this.dom&&(this.prevAttrs=this.attrs,this.markDirty()),this.attrs=t)}append(t,e){Ie(this,t,e)}addLineDeco(t){let e=t.spec.attributes,i=t.spec.class;e&&(this.attrs=Fe(e,this.attrs||{})),i&&(this.attrs=Fe({class:i},this.attrs||{}))}domAtPos(t){return Ne(this,t)}reuseDOM(t){"DIV"==t.nodeName&&(this.setDOM(t),this.flags|=6)}sync(t,e){var i;this.dom?4&this.flags&&(Se(this.dom),this.dom.className="cm-line",this.prevAttrs=this.attrs?null:void 0):(this.setDOM(document.createElement("div")),this.dom.className="cm-line",this.prevAttrs=this.attrs?null:void 0),void 0!==this.prevAttrs&&(Ke(this.dom,this.prevAttrs,this.attrs),this.dom.classList.add("cm-line"),this.prevAttrs=void 0),super.sync(t,e);let n=this.dom.lastChild;for(;n&&Pe.get(n)instanceof De;)n=n.lastChild;if(!(n&&this.length&&("BR"==n.nodeName||0!=(null===(i=Pe.get(n))||void 0===i?void 0:i.isEditable)||Ue.ios&&this.children.some((t=>t instanceof je))))){let t=document.createElement("BR");t.cmIgnore=!0,this.dom.appendChild(t)}}measureTextSize(){if(0==this.children.length||this.length>20)return null;let t,e=0;for(let i of this.children){if(!(i instanceof je)||/[^ -~]/.test(i.text))return null;let n=se(i.dom);if(1!=n.length)return null;e+=n[0].width,t=n[0].height}return e?{lineHeight:this.dom.getBoundingClientRect().height,charWidth:e/this.length,textHeight:t}:null}coordsAt(t,e){let i=Be(this,t,e);if(!this.children.length&&i&&this.parent){let{heightOracle:t}=this.parent.view.viewState,e=i.bottom-i.top;if(Math.abs(e-t.lineHeight)<2&&t.textHeight=e){if(r instanceof ei)return r;if(s>e)break}n=s+r.breakAfter}return null}}class ii extends Pe{constructor(t,e,i){super(),this.widget=t,this.length=e,this.deco=i,this.breakAfter=0,this.prevWidget=null}merge(t,e,i,n,r,s){return!(i&&(!(i instanceof ii&&this.widget.compare(i.widget))||t>0&&r<=0||e0)}}class ni{eq(t){return!1}updateDOM(t,e){return!1}compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}get estimatedHeight(){return-1}get lineBreaks(){return 0}ignoreEvent(t){return!0}coordsAt(t,e,i){return null}get isHidden(){return!1}get editable(){return!1}destroy(t){}}var ri=function(t){return t[t.Text=0]="Text",t[t.WidgetBefore=1]="WidgetBefore",t[t.WidgetAfter=2]="WidgetAfter",t[t.WidgetRange=3]="WidgetRange",t}(ri||(ri={}));class si extends Pt{constructor(t,e,i,n){super(),this.startSide=t,this.endSide=e,this.widget=i,this.spec=n}get heightRelevant(){return!1}static mark(t){return new oi(t)}static widget(t){let e=Math.max(-1e4,Math.min(1e4,t.side||0)),i=!!t.block;return e+=i&&!t.inlineOrder?e>0?3e8:-4e8:e>0?1e8:-1e8,new li(t,e,e,i,t.widget||null,!1)}static replace(t){let e,i,n=!!t.block;if(t.isBlockGap)e=-5e8,i=4e8;else{let{start:r,end:s}=hi(t,n);e=(r?n?-3e8:-1:5e8)-1,i=1+(s?n?2e8:1:-6e8)}return new li(t,e,i,n,t.widget||null,!0)}static line(t){return new ai(t)}static set(t,e=!1){return Rt.of(t,e)}hasHeight(){return!!this.widget&&this.widget.estimatedHeight>-1}}si.none=Rt.empty;class oi extends si{constructor(t){let{start:e,end:i}=hi(t);super(e?-1:5e8,i?1:-6e8,null,t),this.tagName=t.tagName||"span",this.class=t.class||"",this.attrs=t.attributes||null}eq(t){var e,i;return this==t||t instanceof oi&&this.tagName==t.tagName&&(this.class||(null===(e=this.attrs)||void 0===e?void 0:e.class))==(t.class||(null===(i=t.attrs)||void 0===i?void 0:i.class))&&Je(this.attrs,t.attrs,"class")}range(t,e=t){if(t>=e)throw new RangeError("Mark decorations may not be empty");return super.range(t,e)}}oi.prototype.point=!1;class ai extends si{constructor(t){super(-2e8,-2e8,null,t)}eq(t){return t instanceof ai&&this.spec.class==t.spec.class&&Je(this.spec.attributes,t.spec.attributes)}range(t,e=t){if(e!=t)throw new RangeError("Line decoration ranges must be zero-length");return super.range(t,e)}}ai.prototype.mapMode=y.TrackBefore,ai.prototype.point=!0;class li extends si{constructor(t,e,i,n,r,s){super(e,i,r,t),this.block=n,this.isReplace=s,this.mapMode=n?e<=0?y.TrackBefore:y.TrackAfter:y.TrackDel}get type(){return this.startSide!=this.endSide?ri.WidgetRange:this.startSide<=0?ri.WidgetBefore:ri.WidgetAfter}get heightRelevant(){return this.block||!!this.widget&&(this.widget.estimatedHeight>=5||this.widget.lineBreaks>0)}eq(t){return t instanceof li&&function(t,e){return t==e||!!(t&&e&&t.compare(e))}(this.widget,t.widget)&&this.block==t.block&&this.startSide==t.startSide&&this.endSide==t.endSide}range(t,e=t){if(this.isReplace&&(t>e||t==e&&this.startSide>0&&this.endSide<=0))throw new RangeError("Invalid range for replacement decoration");if(!this.isReplace&&e!=t)throw new RangeError("Widget decorations can only have zero-length ranges");return super.range(t,e)}}function hi(t,e=!1){let{inclusiveStart:i,inclusiveEnd:n}=t;return null==i&&(i=t.inclusive),null==n&&(n=t.inclusive),{start:null!=i?i:e,end:null!=n?n:e}}function ci(t,e,i,n=0){let r=i.length-1;r>=0&&i[r]+n>=t?i[r]=Math.max(i[r],e):i.push(t,e)}li.prototype.point=!0;class Oi{constructor(t,e,i,n){this.doc=t,this.pos=e,this.end=i,this.disallowBlockEffectsFor=n,this.content=[],this.curLine=null,this.breakAtStart=0,this.pendingBuffer=0,this.bufferMarks=[],this.atCursorPos=!0,this.openStart=-1,this.openEnd=-1,this.text="",this.textOff=0,this.cursor=t.iter(),this.skip=e}posCovered(){if(0==this.content.length)return!this.breakAtStart&&this.doc.lineAt(this.pos).from!=this.pos;let t=this.content[this.content.length-1];return!(t.breakAfter||t instanceof ii&&t.deco.endSide<0)}getLine(){return this.curLine||(this.content.push(this.curLine=new ei),this.atCursorPos=!0),this.curLine}flushBuffer(t=this.bufferMarks){this.pendingBuffer&&(this.curLine.append(di(new Le(-1),t),t.length),this.pendingBuffer=0)}addBlockWidget(t){this.flushBuffer(),this.curLine=null,this.content.push(t)}finish(t){this.pendingBuffer&&t<=this.bufferMarks.length?this.flushBuffer():this.pendingBuffer=0,this.posCovered()||t&&this.content.length&&this.content[this.content.length-1]instanceof ii||this.getLine()}buildText(t,e,i){for(;t>0;){if(this.textOff==this.text.length){let{value:e,lineBreak:i,done:n}=this.cursor.next(this.skip);if(this.skip=0,n)throw new Error("Ran out of text content when drawing inline views");if(i){this.posCovered()||this.getLine(),this.content.length?this.content[this.content.length-1].breakAfter=1:this.breakAtStart=1,this.flushBuffer(),this.curLine=null,this.atCursorPos=!0,t--;continue}this.text=e,this.textOff=0}let n=Math.min(this.text.length-this.textOff,t,512);this.flushBuffer(e.slice(e.length-i)),this.getLine().append(di(new je(this.text.slice(this.textOff,this.textOff+n)),e),i),this.atCursorPos=!0,this.textOff+=n,t-=n,i=0}}span(t,e,i,n){this.buildText(e-t,i,n),this.pos=e,this.openStart<0&&(this.openStart=n)}point(t,e,i,n,r,s){if(this.disallowBlockEffectsFor[s]&&i instanceof li){if(i.block)throw new RangeError("Block decorations may not be specified via plugins");if(e>this.doc.lineAt(this.pos).to)throw new RangeError("Decorations that replace line breaks may not be specified via plugins")}let o=e-t;if(i instanceof li)if(i.block)i.startSide>0&&!this.posCovered()&&this.getLine(),this.addBlockWidget(new ii(i.widget||ui.block,o,i));else{let s=Ge.create(i.widget||ui.inline,o,o?0:i.startSide),a=this.atCursorPos&&!s.isEditable&&r<=n.length&&(t0),l=!s.isEditable&&(tn.length||i.startSide<=0),h=this.getLine();2!=this.pendingBuffer||a||s.isEditable||(this.pendingBuffer=0),this.flushBuffer(n),a&&(h.append(di(new Le(1),n),r),r=n.length+Math.max(0,r-n.length)),h.append(di(s,n),r),this.atCursorPos=l,this.pendingBuffer=l?tn.length?1:2:0,this.pendingBuffer&&(this.bufferMarks=n.slice())}else this.doc.lineAt(this.pos).from==this.pos&&this.getLine().addLineDeco(i);o&&(this.textOff+o<=this.text.length?this.textOff+=o:(this.skip+=o-(this.text.length-this.textOff),this.text="",this.textOff=0),this.pos=e),this.openStart<0&&(this.openStart=r)}static build(t,e,i,n,r){let s=new Oi(t,e,i,r);return s.openEnd=Rt.spans(n,e,i,s),s.openStart<0&&(s.openStart=s.openEnd),s.finish(s.openEnd),s}}function di(t,e){for(let i of e)t=new De(i,[t],t.length);return t}class ui extends ni{constructor(t){super(),this.tag=t}eq(t){return t.tag==this.tag}toDOM(){return document.createElement(this.tag)}updateDOM(t){return t.nodeName.toLowerCase()==this.tag}get isHidden(){return!0}}ui.inline=new ui("span"),ui.block=new ui("div");var fi=function(t){return t[t.LTR=0]="LTR",t[t.RTL=1]="RTL",t}(fi||(fi={}));const pi=fi.LTR,mi=fi.RTL;function gi(t){let e=[];for(let i=0;i=e){if(o.level==i)return s;(r<0||(0!=n?n<0?o.frome:t[r].level>o.level))&&(r=s)}}if(r<0)throw new RangeError("Index out of range");return r}}function ki(t,e){if(t.length!=e.length)return!1;for(let i=0;il&&o.push(new xi(l,f.from,d)),Ti(t,f.direction==pi!=!(d%2)?n+1:n,r,f.inner,f.from,f.to,o),l=f.to}u=f.to}else{if(u==i||(e?Pi[u]!=a:Pi[u]==a))break;u++}O?$i(t,l,u,n+1,r,O,o):le;){let i=!0,c=!1;if(!h||l>s[h-1].to){let t=Pi[l-1];t!=a&&(i=!1,c=16==t)}let O=i||1!=a?null:[],d=i?n:n+1,u=l;t:for(;;)if(h&&u==s[h-1].to){if(c)break t;let f=s[--h];if(!i)for(let t=f.from,i=h;;){if(t==e)break t;if(!i||s[i-1].to!=t){if(Pi[t-1]==a)break t;break}t=s[--i].from}if(O)O.push(f);else{f.to=0;t-=3)if(vi[t+1]==-i){let e=vi[t+2],i=2&e?r:4&e?1&e?s:r:0;i&&(Pi[o]=Pi[vi[t]]=i),a=t;break}}else{if(189==vi.length)break;vi[a++]=o,vi[a++]=e,vi[a++]=l}else if(2==(n=Pi[o])||1==n){let t=n==r;l=t?0:1;for(let e=a-3;e>=0;e-=3){let i=vi[e+2];if(2&i)break;if(t)vi[e+2]|=2;else{if(4&i)break;vi[e+2]|=4}}}}}(t,r,s,n,a),function(t,e,i,n){for(let r=0,s=n;r<=i.length;r++){let o=r?i[r-1].to:t,a=rl;)e==s&&(e=i[--n].from,s=n?i[n-1].to:t),Pi[--e]=c;l=o}else s=o,l++}}}(r,s,n,a),$i(t,r,s,e,i,n,o)}function _i(t){return[new xi(0,t,0)]}let Ri="";function Zi(t,e,i,n,r){var s;let o=n.head-t.from,a=xi.find(e,o,null!==(s=n.bidiLevel)&&void 0!==s?s:-1,n.assoc),l=e[a],h=l.side(r,i);if(o==h){let t=a+=r?1:-1;if(t<0||t>=e.length)return null;l=e[a=t],o=l.side(!r,i),h=l.side(r,i)}let c=f(t.text,o,l.forward(r,i));(cl.to)&&(c=h),Ri=t.text.slice(Math.min(o,c),Math.max(o,c));let O=a==(r?e.length-1:0)?null:e[a+(r?1:-1)];return O&&c==h&&O.level+(r?0:1)t.some((t=>t))}),Yi=A.define({combine:t=>t.some((t=>t))}),Ui=A.define();class ji{constructor(t,e="nearest",i="nearest",n=5,r=5,s=!1){this.range=t,this.y=e,this.x=i,this.yMargin=n,this.xMargin=r,this.isSnapshot=s}map(t){return t.empty?this:new ji(this.range.map(t),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}clip(t){return this.range.to<=t.doc.length?this:new ji(C.cursor(t.doc.length),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}}const Di=dt.define({map:(t,e)=>t.map(e)}),Gi=dt.define();function Li(t,e,i){let n=t.facet(Ai);n.length?n[0](e):window.onerror?window.onerror(String(e),i,void 0,void 0,e):i?console.error(i+":",e):console.error(e)}const Ni=A.define({combine:t=>!t.length||t[0]});let Ii=0;const Bi=A.define();class Fi{constructor(t,e,i,n,r){this.id=t,this.create=e,this.domEventHandlers=i,this.domEventObservers=n,this.extension=r(this)}static define(t,e){const{eventHandlers:i,eventObservers:n,provide:r,decorations:s}=e||{};return new Fi(Ii++,t,i,n,(t=>{let e=[Bi.of(t)];return s&&e.push(tn.of((e=>{let i=e.plugin(t);return i?s(i):si.none}))),r&&e.push(r(t)),e}))}static fromClass(t,e){return Fi.define((e=>new t(e)),e)}}class Hi{constructor(t){this.spec=t,this.mustUpdate=null,this.value=null}update(t){if(this.value){if(this.mustUpdate){let t=this.mustUpdate;if(this.mustUpdate=null,this.value.update)try{this.value.update(t)}catch(e){if(Li(t.state,e,"CodeMirror plugin crashed"),this.value.destroy)try{this.value.destroy()}catch(t){}this.deactivate()}}}else if(this.spec)try{this.value=this.spec.create(t)}catch(e){Li(t.state,e,"CodeMirror plugin crashed"),this.deactivate()}return this}destroy(t){var e;if(null===(e=this.value)||void 0===e?void 0:e.destroy)try{this.value.destroy()}catch(e){Li(t.state,e,"CodeMirror plugin crashed")}}deactivate(){this.spec=this.value=null}}const Ji=A.define(),Ki=A.define(),tn=A.define(),en=A.define(),nn=A.define(),rn=A.define();function sn(t,e){let i=t.state.facet(rn);if(!i.length)return i;let n=i.map((e=>e instanceof Function?e(t):e)),r=[];return Rt.spans(n,e.from,e.to,{point(){},span(t,i,n,s){let o=t-e.from,a=i-e.from,l=r;for(let t=n.length-1;t>=0;t--,s--){let i,r=n[t].spec.bidiIsolate;if(null==r&&(r=Xi(e.text,o,a)),s>0&&l.length&&(i=l[l.length-1]).to==o&&i.direction==r)i.to=a,l=i.inner;else{let t={from:o,to:a,direction:r,inner:[]};l.push(t),l=t.inner}}}}),r}const on=A.define();function an(t){let e=0,i=0,n=0,r=0;for(let s of t.state.facet(on)){let o=s(t);o&&(null!=o.left&&(e=Math.max(e,o.left)),null!=o.right&&(i=Math.max(i,o.right)),null!=o.top&&(n=Math.max(n,o.top)),null!=o.bottom&&(r=Math.max(r,o.bottom)))}return{left:e,right:i,top:n,bottom:r}}const ln=A.define();class hn{constructor(t,e,i,n){this.fromA=t,this.toA=e,this.fromB=i,this.toB=n}join(t){return new hn(Math.min(this.fromA,t.fromA),Math.max(this.toA,t.toA),Math.min(this.fromB,t.fromB),Math.max(this.toB,t.toB))}addToSet(t){let e=t.length,i=this;for(;e>0;e--){let n=t[e-1];if(!(n.fromA>i.toA)){if(n.toAh)break;r+=2}if(!a)return i;new hn(a.fromA,a.toA,a.fromB,a.toB).addToSet(i),s=a.toA,o=a.toB}}}class cn{constructor(t,e,i){this.view=t,this.state=e,this.transactions=i,this.flags=0,this.startState=t.state,this.changes=k.empty(this.startState.doc.length);for(let t of i)this.changes=this.changes.compose(t.changes);let n=[];this.changes.iterChangedRanges(((t,e,i,r)=>n.push(new hn(t,e,i,r)))),this.changedRanges=n}static create(t,e,i){return new cn(t,e,i)}get viewportChanged(){return(4&this.flags)>0}get heightChanged(){return(2&this.flags)>0}get geometryChanged(){return this.docChanged||(10&this.flags)>0}get focusChanged(){return(1&this.flags)>0}get docChanged(){return!this.changes.empty}get selectionSet(){return this.transactions.some((t=>t.selection))}get empty(){return 0==this.flags&&0==this.transactions.length}}class On extends Pe{get length(){return this.view.state.doc.length}constructor(t){super(),this.view=t,this.decorations=[],this.dynamicDecorationMap=[!1],this.domChanged=null,this.hasComposition=null,this.markedForComposition=new Set,this.editContextFormatting=si.none,this.lastCompositionAfterCursor=!1,this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.forceSelection=!1,this.lastUpdate=Date.now(),this.setDOM(t.contentDOM),this.children=[new ei],this.children[0].setParent(this),this.updateDeco(),this.updateInner([new hn(0,0,0,t.state.doc.length)],0,null)}update(t){var e;let i=t.changedRanges;this.minWidth>0&&i.length&&(i.every((({fromA:t,toA:e})=>ethis.minWidthTo))?(this.minWidthFrom=t.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=t.changes.mapPos(this.minWidthTo,1)):this.minWidth=this.minWidthFrom=this.minWidthTo=0),this.updateEditContextFormatting(t);let n=-1;this.view.inputState.composing>=0&&!this.view.observer.editContext&&((null===(e=this.domChanged)||void 0===e?void 0:e.newSel)?n=this.domChanged.newSel.head:function(t,e){let i=!1;e&&t.iterChangedRanges(((t,n)=>{te.from&&(i=!0)}));return i}(t.changes,this.hasComposition)||t.selectionSet||(n=t.state.selection.main.head));let r=n>-1?function(t,e,i){let n=un(t,i);if(!n)return null;let{node:r,from:s,to:o}=n,a=r.nodeValue;if(/[\n\r]/.test(a))return null;if(t.state.doc.sliceString(n.from,n.to)!=a)return null;let l=e.invertedDesc,h=new hn(l.mapPos(s),l.mapPos(o),s,o),c=[];for(let e=r.parentNode;;e=e.parentNode){let i=Pe.get(e);if(i instanceof De)c.push({node:e,deco:i.mark});else{if(i instanceof ei||"DIV"==e.nodeName&&e.parentNode==t.contentDOM)return{range:h,text:r,marks:c,line:e};if(e==t.contentDOM)return null;c.push({node:e,deco:new oi({inclusive:!0,attributes:ti(e),tagName:e.tagName.toLowerCase()})})}}}(this.view,t.changes,n):null;if(this.domChanged=null,this.hasComposition){this.markedForComposition.clear();let{from:e,to:n}=this.hasComposition;i=new hn(e,n,t.changes.mapPos(e,-1),t.changes.mapPos(n,1)).addToSet(i.slice())}this.hasComposition=r?{from:r.range.fromB,to:r.range.toB}:null,(Ue.ie||Ue.chrome)&&!r&&t&&t.state.doc.lines!=t.startState.doc.lines&&(this.forceSelection=!0);let s=function(t,e,i){let n=new fn;return Rt.compare(t,e,i,n),n.changes}(this.decorations,this.updateDeco(),t.changes);return i=hn.extendWithRanges(i,s),!!(7&this.flags||0!=i.length)&&(this.updateInner(i,t.startState.doc.length,r),t.transactions.length&&(this.lastUpdate=Date.now()),!0)}updateInner(t,e,i){this.view.viewState.mustMeasureContent=!0,this.updateChildren(t,e,i);let{observer:n}=this.view;n.ignore((()=>{this.dom.style.height=this.view.viewState.contentHeight/this.view.scaleY+"px",this.dom.style.flexBasis=this.minWidth?this.minWidth+"px":"";let t=Ue.chrome||Ue.ios?{node:n.selectionRange.focusNode,written:!1}:void 0;this.sync(this.view,t),this.flags&=-8,t&&(t.written||n.selectionRange.focusNode!=t.node)&&(this.forceSelection=!0),this.dom.style.height=""})),this.markedForComposition.forEach((t=>t.flags&=-9));let r=[];if(this.view.viewport.from||this.view.viewport.to=0?n[t]:null;if(!e)break;let s,o,a,l,{fromA:h,toA:c,fromB:O,toB:d}=e;if(i&&i.range.fromBO){let t=Oi.build(this.view.state.doc,O,i.range.fromB,this.decorations,this.dynamicDecorationMap),e=Oi.build(this.view.state.doc,i.range.toB,d,this.decorations,this.dynamicDecorationMap);o=t.breakAtStart,a=t.openStart,l=e.openEnd;let n=this.compositionView(i);e.breakAtStart?n.breakAfter=1:e.content.length&&n.merge(n.length,n.length,e.content[0],!1,e.openStart,0)&&(n.breakAfter=e.content[0].breakAfter,e.content.shift()),t.content.length&&n.merge(0,0,t.content[t.content.length-1],!0,0,t.openEnd)&&t.content.pop(),s=t.content.concat(n).concat(e.content)}else({content:s,breakAtStart:o,openStart:a,openEnd:l}=Oi.build(this.view.state.doc,O,d,this.decorations,this.dynamicDecorationMap));let{i:u,off:f}=r.findPos(c,1),{i:p,off:m}=r.findPos(h,-1);_e(this,p,m,u,f,s,o,a,l)}i&&this.fixCompositionDOM(i)}updateEditContextFormatting(t){this.editContextFormatting=this.editContextFormatting.map(t.changes);for(let e of t.transactions)for(let t of e.effects)t.is(Gi)&&(this.editContextFormatting=t.value)}compositionView(t){let e=new je(t.text.nodeValue);e.flags|=8;for(let{deco:i}of t.marks)e=new De(i,[e],e.length);let i=new ei;return i.append(e,0),i}fixCompositionDOM(t){let e=(t,e)=>{e.flags|=8|(e.children.some((t=>7&t.flags))?1:0),this.markedForComposition.add(e);let i=Pe.get(t);i&&i!=e&&(i.dom=null),e.setDOM(t)},i=this.childPos(t.range.fromB,1),n=this.children[i.i];e(t.line,n);for(let r=t.marks.length-1;r>=-1;r--)i=n.childPos(i.off,1),n=n.children[i.i],e(r>=0?t.marks[r].node:t.text,n)}updateSelection(t=!1,e=!1){!t&&this.view.observer.selectionRange.focusNode||this.view.observer.readSelectionRange();let i=this.view.root.activeElement,n=i==this.dom,r=!n&&re(this.dom,this.view.observer.selectionRange)&&!(i&&this.dom.contains(i));if(!(n||e||r))return;let s=this.forceSelection;this.forceSelection=!1;let o=this.view.state.selection.main,a=this.moveToLine(this.domAtPos(o.anchor)),l=o.empty?a:this.moveToLine(this.domAtPos(o.head));if(Ue.gecko&&o.empty&&!this.hasComposition&&(1==(h=a).node.nodeType&&h.node.firstChild&&(0==h.offset||"false"==h.node.childNodes[h.offset-1].contentEditable)&&(h.offset==h.node.childNodes.length||"false"==h.node.childNodes[h.offset].contentEditable))){let t=document.createTextNode("");this.view.observer.ignore((()=>a.node.insertBefore(t,a.node.childNodes[a.offset]||null))),a=l=new xe(t,0),s=!0}var h;let c=this.view.observer.selectionRange;!s&&c.focusNode&&(oe(a.node,a.offset,c.anchorNode,c.anchorOffset)&&oe(l.node,l.offset,c.focusNode,c.focusOffset)||this.suppressWidgetCursorChange(c,o))||(this.view.observer.ignore((()=>{Ue.android&&Ue.chrome&&this.dom.contains(c.focusNode)&&function(t,e){for(let i=t;i&&i!=e;i=i.assignedSlot||i.parentNode)if(1==i.nodeType&&"false"==i.contentEditable)return!0;return!1}(c.focusNode,this.dom)&&(this.dom.blur(),this.dom.focus({preventScroll:!0}));let t=ie(this.view.root);if(t)if(o.empty){if(Ue.gecko){let t=function(t,e){return 1!=t.nodeType?0:(e&&"false"==t.childNodes[e-1].contentEditable?1:0)|(eo.head&&([a,l]=[l,a]),e.setEnd(l.node,l.offset),e.setStart(a.node,a.offset),t.removeAllRanges(),t.addRange(e)}else;r&&this.view.root.activeElement==this.dom&&(this.dom.blur(),i&&i.focus())})),this.view.observer.setSelectionRange(a,l)),this.impreciseAnchor=a.precise?null:new xe(c.anchorNode,c.anchorOffset),this.impreciseHead=l.precise?null:new xe(c.focusNode,c.focusOffset)}suppressWidgetCursorChange(t,e){return this.hasComposition&&e.empty&&oe(t.focusNode,t.focusOffset,t.anchorNode,t.anchorOffset)&&this.posFromDOM(t.focusNode,t.focusOffset)==e.head}enforceCursorAssoc(){if(this.hasComposition)return;let{view:t}=this,e=t.state.selection.main,i=ie(t.root),{anchorNode:n,anchorOffset:r}=t.observer.selectionRange;if(!(i&&e.empty&&e.assoc&&i.modify))return;let s=ei.find(this,e.head);if(!s)return;let o=s.posAtStart;if(e.head==o||e.head==o+s.length)return;let a=this.coordsAt(e.head,-1),l=this.coordsAt(e.head,1);if(!a||!l||a.bottom>l.top)return;let h=this.domAtPos(e.head+e.assoc);i.collapse(h.node,h.offset),i.modify("move",e.assoc<0?"forward":"backward","lineboundary"),t.observer.readSelectionRange();let c=t.observer.selectionRange;t.docView.posFromDOM(c.anchorNode,c.anchorOffset)!=e.from&&i.collapse(n,r)}moveToLine(t){let e,i=this.dom;if(t.node!=i)return t;for(let n=t.offset;!e&&n=0;n--){let t=Pe.get(i.childNodes[n]);t instanceof ei&&(e=t.domAtPos(t.length))}return e?new xe(e.node,e.offset,!0):t}nearest(t){for(let e=t;e;){let t=Pe.get(e);if(t&&t.rootView==this)return t;e=e.parentNode}return null}posFromDOM(t,e){let i=this.nearest(t);if(!i)throw new RangeError("Trying to find position for a DOM position outside of the document");return i.localPosFromDOM(t,e)+i.posAtStart}domAtPos(t){let{i:e,off:i}=this.childCursor().findPos(t,-1);for(;e=0;s--){let o=this.children[s],a=r-o.breakAfter,l=a-o.length;if(at||o.covers(1))&&(!i||o instanceof ei&&!(i instanceof ei&&e>=0)))i=o,n=l;else if(i&&l==t&&a==t&&o instanceof ii&&Math.abs(e)<2){if(o.deco.startSide<0)break;s&&(i=null)}r=l}return i?i.coordsAt(t-n,e):null}coordsForChar(t){let{i:e,off:i}=this.childPos(t,1),n=this.children[e];if(!(n instanceof ei))return null;for(;n.children.length;){let{i:t,off:e}=n.childPos(i,1);for(;;t++){if(t==n.children.length)return null;if((n=n.children[t]).length)break}i=e}if(!(n instanceof je))return null;let r=f(n.text,i);if(r==i)return null;let s=Qe(n.dom,i,r).getClientRects();for(let t=0;tMath.max(this.view.scrollDOM.clientWidth,this.minWidth)+1,o=-1,a=this.view.textDirection==fi.LTR;for(let t=0,l=0;ln)break;if(t>=i){let i=h.dom.getBoundingClientRect();if(e.push(i.height),s){let e=h.dom.lastChild,n=e?se(e):[];if(n.length){let e=n[n.length-1],s=a?e.right-i.left:i.right-e.left;s>o&&(o=s,this.minWidth=r,this.minWidthFrom=t,this.minWidthTo=c)}}}t=c+h.breakAfter}return e}textDirectionAt(t){let{i:e}=this.childPos(t,1);return"rtl"==getComputedStyle(this.children[e].dom).direction?fi.RTL:fi.LTR}measureTextSize(){for(let t of this.children)if(t instanceof ei){let e=t.measureTextSize();if(e)return e}let t,e,i,n=document.createElement("div");return n.className="cm-line",n.style.width="99999px",n.style.position="absolute",n.textContent="abc def ghi jkl mno pqr stu",this.view.observer.ignore((()=>{this.dom.appendChild(n);let r=se(n.firstChild)[0];t=n.getBoundingClientRect().height,e=r?r.width/27:7,i=r?r.height:t,n.remove()})),{lineHeight:t,charWidth:e,textHeight:i}}childCursor(t=this.length){let e=this.children.length;return e&&(t-=this.children[--e].length),new Te(this.children,t,e)}computeBlockGapDeco(){let t=[],e=this.view.viewState;for(let i=0,n=0;;n++){let r=n==e.viewports.length?null:e.viewports[n],s=r?r.from-1:this.length;if(s>i){let n=(e.lineBlockAt(s).bottom-e.lineBlockAt(i).top)/this.view.scaleY;t.push(si.replace({widget:new dn(n),block:!0,inclusive:!0,isBlockGap:!0}).range(i,s))}if(!r)break;i=r.to+1}return si.set(t)}updateDeco(){let t=1,e=this.view.state.facet(tn).map((e=>(this.dynamicDecorationMap[t++]="function"==typeof e)?e(this.view):e)),i=!1,n=this.view.state.facet(en).map(((t,e)=>{let n="function"==typeof t;return n&&(i=!0),n?t(this.view):t}));for(n.length&&(this.dynamicDecorationMap[t++]=i,e.push(Rt.join(n))),this.decorations=[this.editContextFormatting,...e,this.computeBlockGapDeco(),this.view.viewState.lineGapDeco];ti.anchor?-1:1);if(!n)return;!i.empty&&(e=this.coordsAt(i.anchor,i.anchor>i.head?-1:1))&&(n={left:Math.min(n.left,e.left),top:Math.min(n.top,e.top),right:Math.max(n.right,e.right),bottom:Math.max(n.bottom,e.bottom)});let r=an(this.view),s={left:n.left-r.left,top:n.top-r.top,right:n.right+r.right,bottom:n.bottom+r.bottom},{offsetWidth:o,offsetHeight:a}=this.view.scrollDOM;!function(t,e,i,n,r,s,o,a){let l=t.ownerDocument,h=l.defaultView||window;for(let c=t,O=!1;c&&!O;)if(1==c.nodeType){let t,d=c==l.body,u=1,f=1;if(d)t=de(h);else{if(/^(fixed|sticky)$/.test(getComputedStyle(c).position)&&(O=!0),c.scrollHeight<=c.clientHeight&&c.scrollWidth<=c.clientWidth){c=c.assignedSlot||c.parentNode;continue}let e=c.getBoundingClientRect();({scaleX:u,scaleY:f}=ue(c,e)),t={left:e.left,right:e.left+c.clientWidth*u,top:e.top,bottom:e.top+c.clientHeight*f}}let p=0,m=0;if("nearest"==r)e.top0&&e.bottom>t.bottom+m&&(m=e.bottom-t.bottom+m+o)):e.bottom>t.bottom&&(m=e.bottom-t.bottom+o,i<0&&e.top-m0&&e.right>t.right+p&&(p=e.right-t.right+p+s)):e.right>t.right&&(p=e.right-t.right+s,i<0&&e.leftt?e.left-t:Math.max(0,t-e.right)}function mn(t,e){return e.top>t?e.top-t:Math.max(0,t-e.bottom)}function gn(t,e){return t.tope.top+1}function Qn(t,e){return et.bottom?{top:t.top,left:t.left,right:t.right,bottom:e}:t}function Sn(t,e,i){let n,r,s,o,a,l,h,c,O=!1;for(let d=t.firstChild;d;d=d.nextSibling){let t=se(d);for(let u=0;um||o==m&&s>p){n=d,r=f,s=p,o=m;let a=m?i0?u0)}0==p?i>f.bottom&&(!h||h.bottomf.top)&&(l=d,c=f):h&&gn(h,f)?h=bn(h,f.bottom):c&&gn(c,f)&&(c=Qn(c,f.top))}}if(h&&h.bottom>=i?(n=a,r=h):c&&c.top<=i&&(n=l,r=c),!n)return{node:t,offset:0};let d=Math.max(r.left,Math.min(r.right,e));return 3==n.nodeType?vn(n,d,i):O&&"false"!=n.contentEditable?Sn(n,d,i):{node:t,offset:Array.prototype.indexOf.call(t.childNodes,n)+(e>=(r.left+r.right)/2?1:0)}}function vn(t,e,i){let n=t.nodeValue.length,r=-1,s=1e9,o=0;for(let a=0;ai?h.top-i:i-h.bottom)-1;if(h.left-1<=e&&h.right+1>=e&&c=(h.left+h.right)/2,n=i;if(Ue.chrome||Ue.gecko){Qe(t,a).getBoundingClientRect().left==h.right&&(n=!i)}if(c<=0)return{node:t,offset:a+(n?1:0)};r=a+(n?1:0),s=c}}}return{node:t,offset:r>-1?r:o>0?t.nodeValue.length:0}}function wn(t,e,i,n=-1){var r,s;let o,a=t.contentDOM.getBoundingClientRect(),l=a.top+t.viewState.paddingTop,{docHeight:h}=t.viewState,{x:c,y:O}=e,d=O-l;if(d<0)return 0;if(d>h)return t.state.doc.length;for(let e=t.viewState.heightOracle.textHeight/2,r=!1;o=t.elementAtHeight(d),o.type!=ri.Text;)for(;d=n>0?o.bottom+e:o.top-e,!(d>=0&&d<=h);){if(r)return i?null:0;r=!0,n=-n}O=l+d;let u=o.from;if(ut.viewport.to)return t.viewport.to==t.state.doc.length?t.state.doc.length:i?null:yn(t,a,o,c,O);let f=t.dom.ownerDocument,p=t.root.elementFromPoint?t.root:f,m=p.elementFromPoint(c,O);m&&!t.contentDOM.contains(m)&&(m=null),m||(c=Math.max(a.left+1,Math.min(a.right-1,c)),m=p.elementFromPoint(c,O),m&&!t.contentDOM.contains(m)&&(m=null));let g,Q=-1;if(m&&0!=(null===(r=t.docView.nearest(m))||void 0===r?void 0:r.isEditable))if(f.caretPositionFromPoint){let t=f.caretPositionFromPoint(c,O);t&&({offsetNode:g,offset:Q}=t)}else if(f.caretRangeFromPoint){let e=f.caretRangeFromPoint(c,O);e&&(({startContainer:g,startOffset:Q}=e),(!t.contentDOM.contains(g)||Ue.safari&&function(t,e,i){let n;if(3!=t.nodeType||e!=(n=t.nodeValue.length))return!1;for(let e=t.nextSibling;e;e=e.nextSibling)if(1!=e.nodeType||"BR"!=e.nodeName)return!1;return Qe(t,n-1,n).getBoundingClientRect().left>i}(g,Q,c)||Ue.chrome&&function(t,e,i){if(0!=e)return!1;for(let e=t;;){let t=e.parentNode;if(!t||1!=t.nodeType||t.firstChild!=e)return!1;if(t.classList.contains("cm-line"))break;e=t}let n=1==t.nodeType?t.getBoundingClientRect():Qe(t,0,Math.max(t.nodeValue.length,1)).getBoundingClientRect();return i-n.left>5}(g,Q,c))&&(g=void 0))}if(!g||!t.docView.dom.contains(g)){let e=ei.find(t.docView,u);if(!e)return d>o.top+o.height/2?o.to:o.from;({node:g,offset:Q}=Sn(e.dom,c,O))}let b=t.docView.nearest(g);if(!b)return null;if(b.isWidget&&1==(null===(s=b.dom)||void 0===s?void 0:s.nodeType)){let t=b.dom.getBoundingClientRect();return e.y1.5*t.defaultLineHeight){let e=t.viewState.heightOracle.textHeight;s+=Math.floor((r-i.top-.5*(t.defaultLineHeight-e))/e)*t.viewState.heightOracle.lineLength}let o=t.state.sliceDoc(i.from,i.to);return i.from+jt(o,s,t.state.tabSize)}function xn(t,e){let i=t.lineBlockAt(e);if(Array.isArray(i.type))for(let t of i.type)if(t.to>e||t.to==e&&(t.to==i.to||t.type==ri.Text))return t;return i}function kn(t,e,i,n){let r=t.state.doc.lineAt(e.head),s=t.bidiSpans(r),o=t.textDirectionAt(r.from);for(let a=e,l=null;;){let e=Zi(r,s,o,a,i),h=Ri;if(!e){if(r.number==(i?t.state.doc.lines:1))return a;h="\n",r=t.state.doc.line(r.number+(i?1:-1)),s=t.bidiSpans(r),e=t.visualLineSide(r,!i)}if(l){if(!l(h))return a}else{if(!n)return e;l=n(h)}a=e}}function Pn(t,e,i){for(;;){let n=0;for(let r of t)r.between(e-1,e+1,((t,r,s)=>{if(e>t&&ee(t))),i.from,e.head>i.from?-1:1);return n==i.from?i:C.cursor(n,nnull)),Ue.gecko&&function(t){er.has(t)||(er.add(t),t.addEventListener("copy",(()=>{})),t.addEventListener("cut",(()=>{})))}(t.contentDOM.ownerDocument)}handleEvent(t){(function(t,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let i,n=e.target;n!=t.contentDOM;n=n.parentNode)if(!n||11==n.nodeType||(i=Pe.get(n))&&i.ignoreEvent(e))return!1;return!0})(this.view,t)&&!this.ignoreDuringComposition(t)&&("keydown"==t.type&&this.keydown(t)||this.runHandlers(t.type,t))}runHandlers(t,e){let i=this.handlers[t];if(i){for(let t of i.observers)t(this.view,e);for(let t of i.handlers){if(e.defaultPrevented)break;if(t(this.view,e)){e.preventDefault();break}}}}ensureHandlers(t){let e=Rn(t),i=this.handlers,n=this.view.contentDOM;for(let t in e)if("scroll"!=t){let r=!e[t].handlers.length,s=i[t];s&&r!=!s.handlers.length&&(n.removeEventListener(t,this.handleEvent),s=null),s||n.addEventListener(t,this.handleEvent,{passive:r})}for(let t in i)"scroll"==t||e[t]||n.removeEventListener(t,this.handleEvent);this.handlers=e}keydown(t){if(this.lastKeyCode=t.keyCode,this.lastKeyTime=Date.now(),9==t.keyCode&&this.tabFocusMode>-1&&(!this.tabFocusMode||Date.now()<=this.tabFocusMode))return!0;if(this.tabFocusMode>0&&27!=t.keyCode&&Cn.indexOf(t.keyCode)<0&&(this.tabFocusMode=-1),Ue.android&&Ue.chrome&&!t.synthetic&&(13==t.keyCode||8==t.keyCode))return this.view.observer.delayAndroidKey(t.key,t.keyCode),!0;let e;return!Ue.ios||t.synthetic||t.altKey||t.metaKey||!((e=Zn.find((e=>e.keyCode==t.keyCode)))&&!t.ctrlKey||Xn.indexOf(t.key)>-1&&t.ctrlKey&&!t.shiftKey)?(229!=t.keyCode&&this.view.observer.forceFlush(),!1):(this.pendingIOSKey=e||t,setTimeout((()=>this.flushIOSKey()),250),!0)}flushIOSKey(t){let e=this.pendingIOSKey;return!!e&&(!("Enter"==e.key&&t&&t.from0||!!(Ue.safari&&!Ue.ios&&this.compositionPendingKey&&Date.now()-this.compositionEndedAt<100)&&(this.compositionPendingKey=!1,!0))}startMouseSelection(t){this.mouseSelection&&this.mouseSelection.destroy(),this.mouseSelection=t}update(t){this.view.observer.update(t),this.mouseSelection&&this.mouseSelection.update(t),this.draggedContent&&t.docChanged&&(this.draggedContent=this.draggedContent.map(t.changes)),t.transactions.length&&(this.lastKeyCode=this.lastSelectionTime=0)}destroy(){this.mouseSelection&&this.mouseSelection.destroy()}}function _n(t,e){return(i,n)=>{try{return e.call(t,n,i)}catch(t){Li(i.state,t)}}}function Rn(t){let e=Object.create(null);function i(t){return e[t]||(e[t]={observers:[],handlers:[]})}for(let e of t){let t=e.spec;if(t&&t.domEventHandlers)for(let n in t.domEventHandlers){let r=t.domEventHandlers[n];r&&i(n).handlers.push(_n(e.value,r))}if(t&&t.domEventObservers)for(let n in t.domEventObservers){let r=t.domEventObservers[n];r&&i(n).observers.push(_n(e.value,r))}}for(let t in An)i(t).handlers.push(An[t]);for(let t in zn)i(t).observers.push(zn[t]);return e}const Zn=[{key:"Backspace",keyCode:8,inputType:"deleteContentBackward"},{key:"Enter",keyCode:13,inputType:"insertParagraph"},{key:"Enter",keyCode:13,inputType:"insertLineBreak"},{key:"Delete",keyCode:46,inputType:"deleteContentForward"}],Xn="dthko",Cn=[16,17,18,20,91,92,224,225];function qn(t){return.7*Math.max(0,t)+8}class Wn{constructor(t,e,i,n){this.view=t,this.startEvent=e,this.style=i,this.mustSelect=n,this.scrollSpeed={x:0,y:0},this.scrolling=-1,this.lastEvent=e,this.scrollParents=function(t){let e,i,n=t.ownerDocument;for(let r=t.parentNode;r&&!(r==n.body||e&&i);)if(1==r.nodeType)!i&&r.scrollHeight>r.clientHeight&&(i=r),!e&&r.scrollWidth>r.clientWidth&&(e=r),r=r.assignedSlot||r.parentNode;else{if(11!=r.nodeType)break;r=r.host}return{x:e,y:i}}(t.contentDOM),this.atoms=t.state.facet(nn).map((e=>e(t)));let r=t.contentDOM.ownerDocument;r.addEventListener("mousemove",this.move=this.move.bind(this)),r.addEventListener("mouseup",this.up=this.up.bind(this)),this.extend=e.shiftKey,this.multiple=t.state.facet(xt.allowMultipleSelections)&&function(t,e){let i=t.state.facet(Ci);return i.length?i[0](e):Ue.mac?e.metaKey:e.ctrlKey}(t,e),this.dragging=!(!function(t,e){let{main:i}=t.state.selection;if(i.empty)return!1;let n=ie(t.root);if(!n||0==n.rangeCount)return!0;let r=n.getRangeAt(0).getClientRects();for(let t=0;t=e.clientX&&i.top<=e.clientY&&i.bottom>=e.clientY)return!0}return!1}(t,e)||1!=Bn(e))&&null}start(t){!1===this.dragging&&this.select(t)}move(t){if(0==t.buttons)return this.destroy();if(this.dragging||null==this.dragging&&function(t,e){return Math.max(Math.abs(t.clientX-e.clientX),Math.abs(t.clientY-e.clientY))}(this.startEvent,t)<10)return;this.select(this.lastEvent=t);let e=0,i=0,n=0,r=0,s=this.view.win.innerWidth,o=this.view.win.innerHeight;this.scrollParents.x&&({left:n,right:s}=this.scrollParents.x.getBoundingClientRect()),this.scrollParents.y&&({top:r,bottom:o}=this.scrollParents.y.getBoundingClientRect());let a=an(this.view);t.clientX-a.left<=n+6?e=-qn(n-t.clientX):t.clientX+a.right>=s-6&&(e=qn(t.clientX-s)),t.clientY-a.top<=r+6?i=-qn(r-t.clientY):t.clientY+a.bottom>=o-6&&(i=qn(t.clientY-o)),this.setScrollSpeed(e,i)}up(t){null==this.dragging&&this.select(this.lastEvent),this.dragging||t.preventDefault(),this.destroy()}destroy(){this.setScrollSpeed(0,0);let t=this.view.contentDOM.ownerDocument;t.removeEventListener("mousemove",this.move),t.removeEventListener("mouseup",this.up),this.view.inputState.mouseSelection=this.view.inputState.draggedContent=null}setScrollSpeed(t,e){this.scrollSpeed={x:t,y:e},t||e?this.scrolling<0&&(this.scrolling=setInterval((()=>this.scroll()),50)):this.scrolling>-1&&(clearInterval(this.scrolling),this.scrolling=-1)}scroll(){let{x:t,y:e}=this.scrollSpeed;t&&this.scrollParents.x&&(this.scrollParents.x.scrollLeft+=t,t=0),e&&this.scrollParents.y&&(this.scrollParents.y.scrollTop+=e,e=0),(t||e)&&this.view.win.scrollBy(t,e),!1===this.dragging&&this.select(this.lastEvent)}skipAtoms(t){let e=null;for(let i=0;it.isUserEvent("input.type")))?this.destroy():this.style.update(t)&&setTimeout((()=>this.select(this.lastEvent)),20)}}const An=Object.create(null),zn=Object.create(null),Vn=Ue.ie&&Ue.ie_version<15||Ue.ios&&Ue.webkit_version<604;function Mn(t,e){let i,{state:n}=t,r=1,s=n.toText(e),o=s.lines==n.selection.ranges.length,a=null!=Hn&&n.selection.ranges.every((t=>t.empty))&&Hn==s.toString();if(a){let t=-1;i=n.changeByRange((i=>{let a=n.doc.lineAt(i.from);if(a.from==t)return{range:i};t=a.from;let l=n.toText((o?s.line(r++).text:e)+n.lineBreak);return{changes:{from:a.from,insert:l},range:C.cursor(i.from+l.length)}}))}else i=o?n.changeByRange((t=>{let e=s.line(r++);return{changes:{from:t.from,to:t.to,insert:e.text},range:C.cursor(t.from+e.length)}})):n.replaceSelection(s);t.dispatch(i,{userEvent:"input.paste",scrollIntoView:!0})}function En(t,e,i,n){if(1==n)return C.cursor(e,i);if(2==n)return function(t,e,i=1){let n=t.charCategorizer(e),r=t.doc.lineAt(e),s=e-r.from;if(0==r.length)return C.cursor(e);0==s?i=1:s==r.length&&(i=-1);let o=s,a=s;i<0?o=f(r.text,s,!1):a=f(r.text,s);let l=n(r.text.slice(o,a));for(;o>0;){let t=f(r.text,o,!1);if(n(r.text.slice(t,o))!=l)break;o=t}for(;a{t.inputState.lastScrollTop=t.scrollDOM.scrollTop,t.inputState.lastScrollLeft=t.scrollDOM.scrollLeft},An.keydown=(t,e)=>(t.inputState.setSelectionOrigin("select"),27==e.keyCode&&0!=t.inputState.tabFocusMode&&(t.inputState.tabFocusMode=Date.now()+2e3),!1),zn.touchstart=(t,e)=>{t.inputState.lastTouchTime=Date.now(),t.inputState.setSelectionOrigin("select.pointer")},zn.touchmove=t=>{t.inputState.setSelectionOrigin("select.pointer")},An.mousedown=(t,e)=>{if(t.observer.flush(),t.inputState.lastTouchTime>Date.now()-2e3)return!1;let i=null;for(let n of t.state.facet(Wi))if(i=n(t,e),i)break;if(i||0!=e.button||(i=function(t,e){let i=Dn(t,e),n=Bn(e),r=t.state.selection;return{update(t){t.docChanged&&(i.pos=t.changes.mapPos(i.pos),r=r.map(t.changes))},get(e,s,o){let a,l=Dn(t,e),h=En(t,l.pos,l.bias,n);if(i.pos!=l.pos&&!s){let e=En(t,i.pos,i.bias,n),r=Math.min(e.from,h.from),s=Math.max(e.to,h.to);h=r1&&(a=function(t,e){for(let i=0;i=e)return C.create(t.ranges.slice(0,i).concat(t.ranges.slice(i+1)),t.mainIndex==i?0:t.mainIndex-(t.mainIndex>i?1:0))}return null}(r,l.pos))?a:o?r.addRange(h):C.create([h])}}}(t,e)),i){let n=!t.hasFocus;t.inputState.startMouseSelection(new Wn(t,e,i,n)),n&&t.observer.ignore((()=>{ge(t.contentDOM);let e=t.root.activeElement;e&&!e.contains(t.contentDOM)&&e.blur()}));let r=t.inputState.mouseSelection;if(r)return r.start(e),!1===r.dragging}return!1};let Yn=(t,e)=>t>=e.top&&t<=e.bottom,Un=(t,e,i)=>Yn(e,i)&&t>=i.left&&t<=i.right;function jn(t,e,i,n){let r=ei.find(t.docView,e);if(!r)return 1;let s=e-r.posAtStart;if(0==s)return 1;if(s==r.length)return-1;let o=r.coordsAt(s,-1);if(o&&Un(i,n,o))return-1;let a=r.coordsAt(s,1);return a&&Un(i,n,a)?1:o&&Yn(n,o)?-1:1}function Dn(t,e){let i=t.posAtCoords({x:e.clientX,y:e.clientY},!1);return{pos:i,bias:jn(t,i,e.clientX,e.clientY)}}const Gn=Ue.ie&&Ue.ie_version<=11;let Ln=null,Nn=0,In=0;function Bn(t){if(!Gn)return t.detail;let e=Ln,i=In;return Ln=t,In=Date.now(),Nn=!e||i>Date.now()-400&&Math.abs(e.clientX-t.clientX)<2&&Math.abs(e.clientY-t.clientY)<2?(Nn+1)%3:1}function Fn(t,e,i,n){if(!i)return;let r=t.posAtCoords({x:e.clientX,y:e.clientY},!1),{draggedContent:s}=t.inputState,o=n&&s&&function(t,e){let i=t.state.facet(qi);return i.length?i[0](e):Ue.mac?!e.altKey:!e.ctrlKey}(t,e)?{from:s.from,to:s.to}:null,a={from:r,insert:i},l=t.state.changes(o?[o,a]:a);t.focus(),t.dispatch({changes:l,selection:{anchor:l.mapPos(r,-1),head:l.mapPos(r,1)},userEvent:o?"move.drop":"input.drop"}),t.inputState.draggedContent=null}An.dragstart=(t,e)=>{let{selection:{main:i}}=t.state;if(e.target.draggable){let n=t.docView.nearest(e.target);if(n&&n.isWidget){let t=n.posAtStart,e=t+n.length;(t>=i.to||e<=i.from)&&(i=C.range(t,e))}}let{inputState:n}=t;return n.mouseSelection&&(n.mouseSelection.dragging=!0),n.draggedContent=i,e.dataTransfer&&(e.dataTransfer.setData("Text",t.state.sliceDoc(i.from,i.to)),e.dataTransfer.effectAllowed="copyMove"),!1},An.dragend=t=>(t.inputState.draggedContent=null,!1),An.drop=(t,e)=>{if(!e.dataTransfer)return!1;if(t.state.readOnly)return!0;let i=e.dataTransfer.files;if(i&&i.length){let n=Array(i.length),r=0,s=()=>{++r==i.length&&Fn(t,e,n.filter((t=>null!=t)).join(t.state.lineBreak),!1)};for(let t=0;t{/[\x00-\x08\x0e-\x1f]{2}/.test(e.result)||(n[t]=e.result),s()},e.readAsText(i[t])}return!0}{let i=e.dataTransfer.getData("Text");if(i)return Fn(t,e,i,!0),!0}return!1},An.paste=(t,e)=>{if(t.state.readOnly)return!0;t.observer.flush();let i=Vn?null:e.clipboardData;return i?(Mn(t,i.getData("text/plain")||i.getData("text/uri-list")),!0):(function(t){let e=t.dom.parentNode;if(!e)return;let i=e.appendChild(document.createElement("textarea"));i.style.cssText="position: fixed; left: -10000px; top: 10px",i.focus(),setTimeout((()=>{t.focus(),i.remove(),Mn(t,i.value)}),50)}(t),!1)};let Hn=null;An.copy=An.cut=(t,e)=>{let{text:i,ranges:n,linewise:r}=function(t){let e=[],i=[],n=!1;for(let n of t.selection.ranges)n.empty||(e.push(t.sliceDoc(n.from,n.to)),i.push(n));if(!e.length){let r=-1;for(let{from:n}of t.selection.ranges){let s=t.doc.lineAt(n);s.number>r&&(e.push(s.text),i.push({from:s.from,to:Math.min(t.doc.length,s.to+1)})),r=s.number}n=!0}return{text:e.join(t.lineBreak),ranges:i,linewise:n}}(t.state);if(!i&&!r)return!1;Hn=r?i:null,"cut"!=e.type||t.state.readOnly||t.dispatch({changes:n,scrollIntoView:!0,userEvent:"delete.cut"});let s=Vn?null:e.clipboardData;return s?(s.clearData(),s.setData("text/plain",i),!0):(function(t,e){let i=t.dom.parentNode;if(!i)return;let n=i.appendChild(document.createElement("textarea"));n.style.cssText="position: fixed; left: -10000px; top: 10px",n.value=e,n.focus(),n.selectionEnd=e.length,n.selectionStart=0,setTimeout((()=>{n.remove(),t.focus()}),50)}(t,i),!1)};const Jn=ht.define();function Kn(t,e){let i=[];for(let n of t.facet(Mi)){let r=n(t,e);r&&i.push(r)}return i?t.update({effects:i,annotations:Jn.of(!0)}):null}function tr(t){setTimeout((()=>{let e=t.hasFocus;if(e!=t.inputState.notifiedFocused){let i=Kn(t.state,e);i?t.dispatch(i):t.update([])}}),10)}zn.focus=t=>{t.inputState.lastFocusTime=Date.now(),t.scrollDOM.scrollTop||!t.inputState.lastScrollTop&&!t.inputState.lastScrollLeft||(t.scrollDOM.scrollTop=t.inputState.lastScrollTop,t.scrollDOM.scrollLeft=t.inputState.lastScrollLeft),tr(t)},zn.blur=t=>{t.observer.clearSelectionRange(),tr(t)},zn.compositionstart=zn.compositionupdate=t=>{t.observer.editContext||(null==t.inputState.compositionFirstChange&&(t.inputState.compositionFirstChange=!0),t.inputState.composing<0&&(t.inputState.composing=0))},zn.compositionend=t=>{t.observer.editContext||(t.inputState.composing=-1,t.inputState.compositionEndedAt=Date.now(),t.inputState.compositionPendingKey=!0,t.inputState.compositionPendingChange=t.observer.pendingRecords().length>0,t.inputState.compositionFirstChange=null,Ue.chrome&&Ue.android?t.observer.flushSoon():t.inputState.compositionPendingChange?Promise.resolve().then((()=>t.observer.flush())):setTimeout((()=>{t.inputState.composing<0&&t.docView.hasComposition&&t.update([])}),50))},zn.contextmenu=t=>{t.inputState.lastContextMenu=Date.now()},An.beforeinput=(t,e)=>{var i;let n;if(Ue.chrome&&Ue.android&&(n=Zn.find((t=>t.inputType==e.inputType)))&&(t.observer.delayAndroidKey(n.key,n.keyCode),"Backspace"==n.key||"Delete"==n.key)){let e=(null===(i=window.visualViewport)||void 0===i?void 0:i.height)||0;setTimeout((()=>{var i;((null===(i=window.visualViewport)||void 0===i?void 0:i.height)||0)>e+10&&t.hasFocus&&(t.contentDOM.blur(),t.focus())}),100)}return Ue.ios&&"deleteContentForward"==e.inputType&&t.observer.flushSoon(),Ue.safari&&"insertText"==e.inputType&&t.inputState.composing>=0&&setTimeout((()=>zn.compositionend(t,e)),20),!1};const er=new Set;const ir=["pre-wrap","normal","pre-line","break-spaces"];class nr{constructor(e){this.lineWrapping=e,this.doc=t.empty,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.textHeight=14,this.lineLength=30,this.heightChanged=!1}heightForGap(t,e){let i=this.doc.lineAt(e).number-this.doc.lineAt(t).number+1;return this.lineWrapping&&(i+=Math.max(0,Math.ceil((e-t-i*this.lineLength*.5)/this.lineLength))),this.lineHeight*i}heightForLine(t){if(!this.lineWrapping)return this.lineHeight;return(1+Math.max(0,Math.ceil((t-this.lineLength)/(this.lineLength-5))))*this.lineHeight}setDoc(t){return this.doc=t,this}mustRefreshForWrapping(t){return ir.indexOf(t)>-1!=this.lineWrapping}mustRefreshForHeights(t){let e=!1;for(let i=0;i-1,a=Math.round(e)!=Math.round(this.lineHeight)||this.lineWrapping!=o;if(this.lineWrapping=o,this.lineHeight=e,this.charWidth=i,this.textHeight=n,this.lineLength=r,a){this.heightSamples={};for(let t=0;t0}set outdated(t){this.flags=(t?2:0)|-3&this.flags}setHeight(t,e){this.height!=e&&(Math.abs(this.height-e)>ar&&(t.heightChanged=!0),this.height=e)}replace(t,e,i){return lr.of(i)}decomposeLeft(t,e){e.push(this)}decomposeRight(t,e){e.push(this)}applyChanges(t,e,i,n){let r=this,s=i.doc;for(let o=n.length-1;o>=0;o--){let{fromA:a,toA:l,fromB:h,toB:c}=n[o],O=r.lineAt(a,or.ByPosNoHeight,i.setDoc(e),0,0),d=O.to>=l?O:r.lineAt(l,or.ByPosNoHeight,i,0,0);for(c+=d.to-l,l=d.to;o>0&&O.from<=n[o-1].toA;)a=n[o-1].fromA,h=n[o-1].fromB,o--,a2*r){let r=t[e-1];r.break?t.splice(--e,1,r.left,null,r.right):t.splice(--e,1,r.left,r.right),i+=1+r.break,n-=r.size}else{if(!(r>2*n))break;{let e=t[i];e.break?t.splice(i,1,e.left,null,e.right):t.splice(i,1,e.left,e.right),i+=2+e.break,r-=e.size}}else if(n=r&&s(this.blockAt(0,i,n,r))}updateHeight(t,e=0,i=!1,n){return n&&n.from<=e&&n.more&&this.setHeight(t,n.heights[n.index++]),this.outdated=!1,this}toString(){return`block(${this.length})`}}class cr extends hr{constructor(t,e){super(t,e,null),this.collapsed=0,this.widgetHeight=0,this.breaks=0}blockAt(t,e,i,n){return new sr(n,this.length,i,this.height,this.breaks)}replace(t,e,i){let n=i[0];return 1==i.length&&(n instanceof cr||n instanceof Or&&4&n.flags)&&Math.abs(this.length-n.length)<10?(n instanceof Or?n=new cr(n.length,this.height):n.height=this.height,this.outdated||(n.outdated=!1),n):lr.of(i)}updateHeight(t,e=0,i=!1,n){return n&&n.from<=e&&n.more?this.setHeight(t,n.heights[n.index++]):(i||this.outdated)&&this.setHeight(t,Math.max(this.widgetHeight,t.heightForLine(this.length-this.collapsed))+this.breaks*t.lineHeight),this.outdated=!1,this}toString(){return`line(${this.length}${this.collapsed?-this.collapsed:""}${this.widgetHeight?":"+this.widgetHeight:""})`}}class Or extends lr{constructor(t){super(t,0)}heightMetrics(t,e){let i,n=t.doc.lineAt(e).number,r=t.doc.lineAt(e+this.length).number,s=r-n+1,o=0;if(t.lineWrapping){let e=Math.min(this.height,t.lineHeight*s);i=e/s,this.length>s+1&&(o=(this.height-e)/(this.length-s-1))}else i=this.height/s;return{firstLine:n,lastLine:r,perLine:i,perChar:o}}blockAt(t,e,i,n){let{firstLine:r,lastLine:s,perLine:o,perChar:a}=this.heightMetrics(e,n);if(e.lineWrapping){let r=n+(t0){let t=i[i.length-1];t instanceof Or?i[i.length-1]=new Or(t.length+n):i.push(null,new Or(n-1))}if(t>0){let e=i[0];e instanceof Or?i[0]=new Or(t+e.length):i.unshift(new Or(t-1),null)}return lr.of(i)}decomposeLeft(t,e){e.push(new Or(t-1),null)}decomposeRight(t,e){e.push(null,new Or(this.length-t-1))}updateHeight(t,e=0,i=!1,n){let r=e+this.length;if(n&&n.from<=e+this.length&&n.more){let i=[],s=Math.max(e,n.from),o=-1;for(n.from>e&&i.push(new Or(n.from-e-1).updateHeight(t,e));s<=r&&n.more;){let e=t.doc.lineAt(s).length;i.length&&i.push(null);let r=n.heights[n.index++];-1==o?o=r:Math.abs(r-o)>=ar&&(o=-2);let a=new cr(e,r);a.outdated=!1,i.push(a),s+=e+1}s<=r&&i.push(null,new Or(r-s).updateHeight(t,s));let a=lr.of(i);return(o<0||Math.abs(a.height-this.height)>=ar||Math.abs(o-this.heightMetrics(t,e).perLine)>=ar)&&(t.heightChanged=!0),a}return(i||this.outdated)&&(this.setHeight(t,t.heightForGap(e,e+this.length)),this.outdated=!1),this}toString(){return`gap(${this.length})`}}class dr extends lr{constructor(t,e,i){super(t.length+e+i.length,t.height+i.height,e|(t.outdated||i.outdated?2:0)),this.left=t,this.right=i,this.size=t.size+i.size}get break(){return 1&this.flags}blockAt(t,e,i,n){let r=i+this.left.height;return to))return l;let h=e==or.ByPosNoHeight?or.ByPosNoHeight:or.ByPos;return a?l.join(this.right.lineAt(o,h,i,s,o)):this.left.lineAt(o,h,i,n,r).join(l)}forEachLine(t,e,i,n,r,s){let o=n+this.left.height,a=r+this.left.length+this.break;if(this.break)t=a&&this.right.forEachLine(t,e,i,o,a,s);else{let l=this.lineAt(a,or.ByPos,i,n,r);t=t&&l.from<=e&&s(l),e>l.to&&this.right.forEachLine(l.to+1,e,i,o,a,s)}}replace(t,e,i){let n=this.left.length+this.break;if(ethis.left.length)return this.balanced(this.left,this.right.replace(t-n,e-n,i));let r=[];t>0&&this.decomposeLeft(t,r);let s=r.length;for(let t of i)r.push(t);if(t>0&&ur(r,s-1),e=i&&e.push(null)),t>i&&this.right.decomposeLeft(t-i,e)}decomposeRight(t,e){let i=this.left.length,n=i+this.break;if(t>=n)return this.right.decomposeRight(t-n,e);t2*e.size||e.size>2*t.size?lr.of(this.break?[t,null,e]:[t,e]):(this.left=t,this.right=e,this.height=t.height+e.height,this.outdated=t.outdated||e.outdated,this.size=t.size+e.size,this.length=t.length+this.break+e.length,this)}updateHeight(t,e=0,i=!1,n){let{left:r,right:s}=this,o=e+r.length+this.break,a=null;return n&&n.from<=e+r.length&&n.more?a=r=r.updateHeight(t,e,i,n):r.updateHeight(t,e,i),n&&n.from<=o+s.length&&n.more?a=s=s.updateHeight(t,o,i,n):s.updateHeight(t,o,i),a?this.balanced(r,s):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?" ":"-")+this.right}}function ur(t,e){let i,n;null==t[e]&&(i=t[e-1])instanceof Or&&(n=t[e+1])instanceof Or&&t.splice(e-1,3,new Or(i.length+1+n.length))}class fr{constructor(t,e){this.pos=t,this.oracle=e,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=t}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(t,e){if(this.lineStart>-1){let t=Math.min(e,this.lineEnd),i=this.nodes[this.nodes.length-1];i instanceof cr?i.length+=t-this.pos:(t>this.pos||!this.isCovered)&&this.nodes.push(new cr(t-this.pos,-1)),this.writtenTo=t,e>t&&(this.nodes.push(null),this.writtenTo++,this.lineStart=-1)}this.pos=e}point(t,e,i){if(t=5)&&this.addLineDeco(n,r,s)}else e>t&&this.span(t,e);this.lineEnd>-1&&this.lineEnd-1)return;let{from:t,to:e}=this.oracle.doc.lineAt(this.pos);this.lineStart=t,this.lineEnd=e,this.writtenTot&&this.nodes.push(new cr(this.pos-t,-1)),this.writtenTo=this.pos}blankContent(t,e){let i=new Or(e-t);return this.oracle.doc.lineAt(t).to==e&&(i.flags|=4),i}ensureLine(){this.enterLine();let t=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(t instanceof cr)return t;let e=new cr(0,-1);return this.nodes.push(e),e}addBlock(t){this.enterLine();let e=t.deco;e&&e.startSide>0&&!this.isCovered&&this.ensureLine(),this.nodes.push(t),this.writtenTo=this.pos=this.pos+t.length,e&&e.endSide>0&&(this.covering=t)}addLineDeco(t,e,i){let n=this.ensureLine();n.length+=i,n.collapsed+=i,n.widgetHeight=Math.max(n.widgetHeight,t),n.breaks+=e,this.writtenTo=this.pos=this.pos+i}finish(t){let e=0==this.nodes.length?null:this.nodes[this.nodes.length-1];!(this.lineStart>-1)||e instanceof cr||this.isCovered?(this.writtenToi.clientHeight||i.scrollWidth>i.clientWidth)&&"visible"!=n.overflow){let n=i.getBoundingClientRect();s=Math.max(s,n.left),o=Math.min(o,n.right),a=Math.max(a,n.top),l=e==t.parentNode?n.bottom:Math.min(l,n.bottom)}e="absolute"==n.position||"fixed"==n.position?i.offsetParent:i.parentNode}else{if(11!=e.nodeType)break;e=e.host}return{left:s-i.left,right:Math.max(s,o)-i.left,top:a-(i.top+e),bottom:Math.max(a,l)-(i.top+e)}}function gr(t,e){let i=t.getBoundingClientRect();return{left:0,right:i.right-i.left,top:e,bottom:i.bottom-(i.top+e)}}class Qr{constructor(t,e,i){this.from=t,this.to=e,this.size=i}static same(t,e){if(t.length!=e.length)return!1;for(let i=0;i"function"!=typeof t&&"cm-lineWrapping"==t.class));this.heightOracle=new nr(i),this.stateDeco=e.facet(tn).filter((t=>"function"!=typeof t)),this.heightMap=lr.empty().applyChanges(this.stateDeco,t.empty,this.heightOracle.setDoc(e.doc),[new hn(0,0,0,e.doc.length)]);for(let t=0;t<2&&(this.viewport=this.getViewport(0,null),this.updateForViewport());t++);this.updateViewportLines(),this.lineGaps=this.ensureLineGaps([]),this.lineGapDeco=si.set(this.lineGaps.map((t=>t.draw(this,!1)))),this.computeVisibleRanges()}updateForViewport(){let t=[this.viewport],{main:e}=this.state.selection;for(let i=0;i<=1;i++){let n=i?e.head:e.anchor;if(!t.some((({from:t,to:e})=>n>=t&&n<=e))){let{from:e,to:i}=this.lineBlockAt(n);t.push(new vr(e,i))}}return this.viewports=t.sort(((t,e)=>t.from-e.from)),this.updateScaler()}updateScaler(){let t=this.scaler;return this.scaler=this.heightMap.height<=7e6?xr:new kr(this.heightOracle,this.heightMap,this.viewports),t.eq(this.scaler)?0:2}updateViewportLines(){this.viewportLines=[],this.heightMap.forEachLine(this.viewport.from,this.viewport.to,this.heightOracle.setDoc(this.state.doc),0,0,(t=>{this.viewportLines.push(Pr(t,this.scaler))}))}update(t,e=null){this.state=t.state;let i=this.stateDeco;this.stateDeco=this.state.facet(tn).filter((t=>"function"!=typeof t));let n=t.changedRanges,r=hn.extendWithRanges(n,function(t,e,i){let n=new pr;return Rt.compare(t,e,i,n,0),n.changes}(i,this.stateDeco,t?t.changes:k.empty(this.state.doc.length))),s=this.heightMap.height,o=this.scrolledToBottom?null:this.scrollAnchorAt(this.scrollTop);this.heightMap=this.heightMap.applyChanges(this.stateDeco,t.startState.doc,this.heightOracle.setDoc(this.state.doc),r),this.heightMap.height!=s&&(t.flags|=2),o?(this.scrollAnchorPos=t.changes.mapPos(o.from,-1),this.scrollAnchorHeight=o.top):(this.scrollAnchorPos=-1,this.scrollAnchorHeight=this.heightMap.height);let a=r.length?this.mapViewport(this.viewport,t.changes):this.viewport;(e&&(e.range.heada.to)||!this.viewportIsAppropriate(a))&&(a=this.getViewport(0,e));let l=a.from!=this.viewport.from||a.to!=this.viewport.to;this.viewport=a,t.flags|=this.updateForViewport(),(l||!t.changes.empty||2&t.flags)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(this.mapLineGaps(this.lineGaps,t.changes))),t.flags|=this.computeVisibleRanges(),e&&(this.scrollTarget=e),!this.mustEnforceCursorAssoc&&t.selectionSet&&t.view.lineWrapping&&t.state.selection.main.empty&&t.state.selection.main.assoc&&!t.state.facet(Yi)&&(this.mustEnforceCursorAssoc=!0)}measure(e){let i=e.contentDOM,n=window.getComputedStyle(i),r=this.heightOracle,s=n.whiteSpace;this.defaultTextDirection="rtl"==n.direction?fi.RTL:fi.LTR;let o=this.heightOracle.mustRefreshForWrapping(s),a=i.getBoundingClientRect(),l=o||this.mustMeasureContent||this.contentDOMHeight!=a.height;this.contentDOMHeight=a.height,this.mustMeasureContent=!1;let h=0,c=0;if(a.width&&a.height){let{scaleX:t,scaleY:e}=ue(i,a);(t>.005&&Math.abs(this.scaleX-t)>.005||e>.005&&Math.abs(this.scaleY-e)>.005)&&(this.scaleX=t,this.scaleY=e,h|=8,o=l=!0)}let O=(parseInt(n.paddingTop)||0)*this.scaleY,d=(parseInt(n.paddingBottom)||0)*this.scaleY;this.paddingTop==O&&this.paddingBottom==d||(this.paddingTop=O,this.paddingBottom=d,h|=10),this.editorWidth!=e.scrollDOM.clientWidth&&(r.lineWrapping&&(l=!0),this.editorWidth=e.scrollDOM.clientWidth,h|=8);let u=e.scrollDOM.scrollTop*this.scaleY;this.scrollTop!=u&&(this.scrollAnchorHeight=-1,this.scrollTop=u),this.scrolledToBottom=ve(e.scrollDOM);let f=(this.printing?gr:mr)(i,this.paddingTop),p=f.top-this.pixelViewport.top,m=f.bottom-this.pixelViewport.bottom;this.pixelViewport=f;let g=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left;if(g!=this.inView&&(this.inView=g,g&&(l=!0)),!this.inView&&!this.scrollTarget)return 0;let Q=a.width;if(this.contentDOMWidth==Q&&this.editorHeight==e.scrollDOM.clientHeight||(this.contentDOMWidth=a.width,this.editorHeight=e.scrollDOM.clientHeight,h|=8),l){let i=e.docView.measureVisibleLineHeights(this.viewport);if(r.mustRefreshForHeights(i)&&(o=!0),o||r.lineWrapping&&Math.abs(Q-this.contentDOMWidth)>r.charWidth){let{lineHeight:t,charWidth:n,textHeight:a}=e.docView.measureTextSize();o=t>0&&r.refresh(s,t,n,a,Q/n,i),o&&(e.docView.minWidth=0,h|=8)}p>0&&m>0?c=Math.max(p,m):p<0&&m<0&&(c=Math.min(p,m)),r.heightChanged=!1;for(let n of this.viewports){let s=n.from==this.viewport.from?i:e.docView.measureVisibleLineHeights(n);this.heightMap=(o?lr.empty().applyChanges(this.stateDeco,t.empty,this.heightOracle,[new hn(0,0,0,e.state.doc.length)]):this.heightMap).updateHeight(r,0,o,new rr(n.from,s))}r.heightChanged&&(h|=2)}let b=!this.viewportIsAppropriate(this.viewport,c)||this.scrollTarget&&(this.scrollTarget.range.headthis.viewport.to);return b&&(2&h&&(h|=this.updateScaler()),this.viewport=this.getViewport(c,this.scrollTarget),h|=this.updateForViewport()),(2&h||b)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(o?[]:this.lineGaps,e)),h|=this.computeVisibleRanges(),this.mustEnforceCursorAssoc&&(this.mustEnforceCursorAssoc=!1,e.docView.enforceCursorAssoc()),h}get visibleTop(){return this.scaler.fromDOM(this.pixelViewport.top)}get visibleBottom(){return this.scaler.fromDOM(this.pixelViewport.bottom)}getViewport(t,e){let i=.5-Math.max(-.5,Math.min(.5,t/1e3/2)),n=this.heightMap,r=this.heightOracle,{visibleTop:s,visibleBottom:o}=this,a=new vr(n.lineAt(s-1e3*i,or.ByHeight,r,0,0).from,n.lineAt(o+1e3*(1-i),or.ByHeight,r,0,0).to);if(e){let{head:t}=e.range;if(ta.to){let i,s=Math.min(this.editorHeight,this.pixelViewport.bottom-this.pixelViewport.top),o=n.lineAt(t,or.ByPos,r,0,0);i="center"==e.y?(o.top+o.bottom)/2-s/2:"start"==e.y||"nearest"==e.y&&t=o+Math.max(10,Math.min(i,250)))&&n>s-2e3&&r>1,s=n<<1;if(this.defaultTextDirection!=fi.LTR&&!i)return[];let o=[],a=(n,s,l,h)=>{if(s-nn&&tt.from>=l.from&&t.to<=l.to&&Math.abs(t.from-n)t.frome))));if(!d){if(st.from<=s&&t.to>=s))){let t=e.moveToLineBoundary(C.cursor(s),!1,!0).head;t>n&&(s=t)}d=new Qr(n,s,this.gapSize(l,n,s,h))}o.push(d)},l=t=>{if(t.lengthr&&(n.push({from:r,to:t}),s+=t-r),r=e}},20),rt.from&&a(t.from,r,t,e),ot.draw(this,this.heightOracle.lineWrapping)))))}computeVisibleRanges(){let t=this.stateDeco;this.lineGaps.length&&(t=t.concat(this.lineGapDeco));let e=[];Rt.spans(t,this.viewport.from,this.viewport.to,{span(t,i){e.push({from:t,to:i})},point(){}},20);let i=e.length!=this.visibleRanges.length||this.visibleRanges.some(((t,i)=>t.from!=e[i].from||t.to!=e[i].to));return this.visibleRanges=e,i?4:0}lineBlockAt(t){return t>=this.viewport.from&&t<=this.viewport.to&&this.viewportLines.find((e=>e.from<=t&&e.to>=t))||Pr(this.heightMap.lineAt(t,or.ByPos,this.heightOracle,0,0),this.scaler)}lineBlockAtHeight(t){return t>=this.viewportLines[0].top&&t<=this.viewportLines[this.viewportLines.length-1].bottom&&this.viewportLines.find((e=>e.top<=t&&e.bottom>=t))||Pr(this.heightMap.lineAt(this.scaler.fromDOM(t),or.ByHeight,this.heightOracle,0,0),this.scaler)}scrollAnchorAt(t){let e=this.lineBlockAtHeight(t+8);return e.from>=this.viewport.from||this.viewportLines[0].top-t>200?e:this.viewportLines[0]}elementAtHeight(t){return Pr(this.heightMap.blockAt(this.scaler.fromDOM(t),this.heightOracle,0,0),this.scaler)}get docHeight(){return this.scaler.toDOM(this.heightMap.height)}get contentHeight(){return this.docHeight+this.paddingTop+this.paddingBottom}}class vr{constructor(t,e){this.from=t,this.to=e}}function wr({total:t,ranges:e},i){if(i<=0)return e[0].from;if(i>=1)return e[e.length-1].to;let n=Math.floor(t*i);for(let t=0;;t++){let{from:i,to:r}=e[t],s=r-i;if(n<=s)return i+n;n-=s}}function yr(t,e){let i=0;for(let{from:n,to:r}of t.ranges){if(e<=r){i+=e-n;break}i+=r-n}return i/t.total}const xr={toDOM:t=>t,fromDOM:t=>t,scale:1,eq(t){return t==this}};class kr{constructor(t,e,i){let n=0,r=0,s=0;this.viewports=i.map((({from:i,to:r})=>{let s=e.lineAt(i,or.ByPos,t,0,0).top,o=e.lineAt(r,or.ByPos,t,0,0).bottom;return n+=o-s,{from:i,to:r,top:s,bottom:o,domTop:0,domBottom:0}})),this.scale=(7e6-n)/(e.height-n);for(let t of this.viewports)t.domTop=s+(t.top-r)*this.scale,s=t.domBottom=t.domTop+(t.bottom-t.top),r=t.bottom}toDOM(t){for(let e=0,i=0,n=0;;e++){let r=ee.from==t.viewports[i].from&&e.to==t.viewports[i].to)))}}function Pr(t,e){if(1==e.scale)return t;let i=e.toDOM(t.top),n=e.toDOM(t.bottom);return new sr(t.from,t.length,i,n-i,Array.isArray(t._content)?t._content.map((t=>Pr(t,e))):t._content)}const $r=A.define({combine:t=>t.join(" ")}),Tr=A.define({combine:t=>t.indexOf(!0)>-1}),_r=Nt.newName(),Rr=Nt.newName(),Zr=Nt.newName(),Xr={"&light":"."+Rr,"&dark":"."+Zr};function Cr(t,e,i){return new Nt(e,{finish:e=>/&/.test(e)?e.replace(/&\w*/,(e=>{if("&"==e)return t;if(!i||!i[e])throw new RangeError(`Unsupported selector: ${e}`);return i[e]})):t+" "+e})}const qr=Cr("."+_r,{"&":{position:"relative !important",boxSizing:"border-box","&.cm-focused":{outline:"1px dotted #212121"},display:"flex !important",flexDirection:"column"},".cm-scroller":{display:"flex !important",alignItems:"flex-start !important",fontFamily:"monospace",lineHeight:1.4,height:"100%",overflowX:"auto",position:"relative",zIndex:0},".cm-content":{margin:0,flexGrow:2,flexShrink:0,display:"block",whiteSpace:"pre",wordWrap:"normal",boxSizing:"border-box",minHeight:"100%",padding:"4px 0",outline:"none","&[contenteditable=true]":{WebkitUserModify:"read-write-plaintext-only"}},".cm-lineWrapping":{whiteSpace_fallback:"pre-wrap",whiteSpace:"break-spaces",wordBreak:"break-word",overflowWrap:"anywhere",flexShrink:1},"&light .cm-content":{caretColor:"black"},"&dark .cm-content":{caretColor:"white"},".cm-line":{display:"block",padding:"0 2px 0 6px"},".cm-layer":{position:"absolute",left:0,top:0,contain:"size style","& > *":{position:"absolute"}},"&light .cm-selectionBackground":{background:"#d9d9d9"},"&dark .cm-selectionBackground":{background:"#222"},"&light.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#d7d4f0"},"&dark.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#233"},".cm-cursorLayer":{pointerEvents:"none"},"&.cm-focused > .cm-scroller > .cm-cursorLayer":{animation:"steps(1) cm-blink 1.2s infinite"},"@keyframes cm-blink":{"0%":{},"50%":{opacity:0},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{opacity:0},"100%":{}},".cm-cursor, .cm-dropCursor":{borderLeft:"1.2px solid black",marginLeft:"-0.6px",pointerEvents:"none"},".cm-cursor":{display:"none"},"&dark .cm-cursor":{borderLeftColor:"#444"},".cm-dropCursor":{position:"absolute"},"&.cm-focused > .cm-scroller > .cm-cursorLayer .cm-cursor":{display:"block"},".cm-iso":{unicodeBidi:"isolate"},".cm-announced":{position:"fixed",top:"-10000px"},"@media print":{".cm-announced":{display:"none"}},"&light .cm-activeLine":{backgroundColor:"#cceeff44"},"&dark .cm-activeLine":{backgroundColor:"#99eeff33"},"&light .cm-specialChar":{color:"red"},"&dark .cm-specialChar":{color:"#f78"},".cm-gutters":{flexShrink:0,display:"flex",height:"100%",boxSizing:"border-box",insetInlineStart:0,zIndex:200},"&light .cm-gutters":{backgroundColor:"#f5f5f5",color:"#6c6c6c",borderRight:"1px solid #ddd"},"&dark .cm-gutters":{backgroundColor:"#333338",color:"#ccc"},".cm-gutter":{display:"flex !important",flexDirection:"column",flexShrink:0,boxSizing:"border-box",minHeight:"100%",overflow:"hidden"},".cm-gutterElement":{boxSizing:"border-box"},".cm-lineNumbers .cm-gutterElement":{padding:"0 3px 0 5px",minWidth:"20px",textAlign:"right",whiteSpace:"nowrap"},"&light .cm-activeLineGutter":{backgroundColor:"#e2f2ff"},"&dark .cm-activeLineGutter":{backgroundColor:"#222227"},".cm-panels":{boxSizing:"border-box",position:"sticky",left:0,right:0},"&light .cm-panels":{backgroundColor:"#f5f5f5",color:"black"},"&light .cm-panels-top":{borderBottom:"1px solid #ddd"},"&light .cm-panels-bottom":{borderTop:"1px solid #ddd"},"&dark .cm-panels":{backgroundColor:"#333338",color:"white"},".cm-tab":{display:"inline-block",overflow:"hidden",verticalAlign:"bottom"},".cm-widgetBuffer":{verticalAlign:"text-top",height:"1em",width:0,display:"inline"},".cm-placeholder":{color:"#888",display:"inline-block",verticalAlign:"top"},".cm-highlightSpace:before":{content:"attr(data-display)",position:"absolute",pointerEvents:"none",color:"#888"},".cm-highlightTab":{backgroundImage:'url(\'data:image/svg+xml,\')',backgroundSize:"auto 100%",backgroundPosition:"right 90%",backgroundRepeat:"no-repeat"},".cm-trailingSpace":{backgroundColor:"#ff332255"},".cm-button":{verticalAlign:"middle",color:"inherit",fontSize:"70%",padding:".2em 1em",borderRadius:"1px"},"&light .cm-button":{backgroundImage:"linear-gradient(#eff1f5, #d9d9df)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#b4b4b4, #d0d3d6)"}},"&dark .cm-button":{backgroundImage:"linear-gradient(#393939, #111)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#111, #333)"}},".cm-textfield":{verticalAlign:"middle",color:"inherit",fontSize:"70%",border:"1px solid silver",padding:".2em .5em"},"&light .cm-textfield":{backgroundColor:"white"},"&dark .cm-textfield":{border:"1px solid #555",backgroundColor:"inherit"}},Xr),Wr="￿";class Ar{constructor(t,e){this.points=t,this.text="",this.lineSeparator=e.facet(xt.lineSeparator)}append(t){this.text+=t}lineBreak(){this.text+=Wr}readRange(t,e){if(!t)return this;let i=t.parentNode;for(let n=t;;){this.findPointBefore(i,n);let t=this.text.length;this.readNode(n);let r=n.nextSibling;if(r==e)break;let s=Pe.get(n),o=Pe.get(r);(s&&o?s.breakAfter:(s?s.breakAfter:le(n))||le(r)&&("BR"!=n.nodeName||n.cmIgnore)&&this.text.length>t)&&this.lineBreak(),n=r}return this.findPointBefore(i,e),this}readTextNode(t){let e=t.nodeValue;for(let i of this.points)i.node==t&&(i.pos=this.text.length+Math.min(i.offset,e.length));for(let i=0,n=this.lineSeparator?null:/\r\n?|\n/g;;){let r,s=-1,o=1;if(this.lineSeparator?(s=e.indexOf(this.lineSeparator,i),o=this.lineSeparator.length):(r=n.exec(e))&&(s=r.index,o=r[0].length),this.append(e.slice(i,s<0?e.length:s)),s<0)break;if(this.lineBreak(),o>1)for(let e of this.points)e.node==t&&e.pos>this.text.length&&(e.pos-=o-1);i=s+o}}readNode(t){if(t.cmIgnore)return;let e=Pe.get(t),i=e&&e.overrideDOMText;if(null!=i){this.findPointInside(t,i.length);for(let t=i.iter();!t.next().done;)t.lineBreak?this.lineBreak():this.append(t.value)}else 3==t.nodeType?this.readTextNode(t):"BR"==t.nodeName?t.nextSibling&&this.lineBreak():1==t.nodeType&&this.readRange(t.firstChild,null)}findPointBefore(t,e){for(let i of this.points)i.node==t&&t.childNodes[i.offset]==e&&(i.pos=this.text.length)}findPointInside(t,e){for(let i of this.points)(3==t.nodeType?i.node==t:t.contains(i.node))&&(i.pos=this.text.length+(zr(t,i.node,i.offset)?e:0))}}function zr(t,e,i){for(;;){if(!e||i-1;let{impreciseHead:r,impreciseAnchor:s}=t.docView;if(t.state.readOnly&&e>-1)this.newSel=null;else if(e>-1&&(this.bounds=t.docView.domBoundsAround(e,i,0))){let e=r||s?[]:function(t){let e=[];if(t.root.activeElement!=t.contentDOM)return e;let{anchorNode:i,anchorOffset:n,focusNode:r,focusOffset:s}=t.observer.selectionRange;i&&(e.push(new Vr(i,n)),r==i&&s==n||e.push(new Vr(r,s)));return e}(t),i=new Ar(e,t.state);i.readRange(this.bounds.startDOM,this.bounds.endDOM),this.text=i.text,this.newSel=function(t,e){if(0==t.length)return null;let i=t[0].pos,n=2==t.length?t[1].pos:i;return i>-1&&n>-1?C.single(i+e,n+e):null}(e,this.bounds.from)}else{let e=t.observer.selectionRange,i=r&&r.node==e.focusNode&&r.offset==e.focusOffset||!ne(t.contentDOM,e.focusNode)?t.state.selection.main.head:t.docView.posFromDOM(e.focusNode,e.focusOffset),n=s&&s.node==e.anchorNode&&s.offset==e.anchorOffset||!ne(t.contentDOM,e.anchorNode)?t.state.selection.main.anchor:t.docView.posFromDOM(e.anchorNode,e.anchorOffset),o=t.viewport;if((Ue.ios||Ue.chrome)&&t.state.selection.main.empty&&i!=n&&(o.from>0||o.toDate.now()-100?e.inputState.lastKeyCode:-1;if(i.bounds){let{from:r,to:a}=i.bounds,l=s.from,h=null;(8===o||Ue.android&&i.text.length0&&a>0&&t.charCodeAt(o-1)==e.charCodeAt(a-1);)o--,a--;if("end"==n){i-=o+Math.max(0,s-Math.min(o,a))-s}if(o=o?s-i:0,a=s+(a-o),o=s}else if(a=a?s-i:0,o=s+(o-a),a=s}return{from:s,toA:o,toB:a}}(e.state.doc.sliceString(r,a,Wr),i.text,l-r,h);c&&(Ue.chrome&&13==o&&c.toB==c.from+2&&i.text.slice(c.from,c.toB)==Wr+Wr&&c.toB--,n={from:r+c.from,to:r+c.toA,insert:t.of(i.text.slice(c.from,c.toB).split(Wr))})}else r&&(!e.hasFocus&&e.state.facet(Ni)||r.main.eq(s))&&(r=null);if(!n&&!r)return!1;if(!n&&i.typeOver&&!s.empty&&r&&r.main.empty?n={from:s.from,to:s.to,insert:e.state.doc.slice(s.from,s.to)}:n&&n.from>=s.from&&n.to<=s.to&&(n.from!=s.from||n.to!=s.to)&&s.to-s.from-(n.to-n.from)<=4?n={from:s.from,to:s.to,insert:e.state.doc.slice(s.from,n.from).append(n.insert).append(e.state.doc.slice(n.to,s.to))}:(Ue.mac||Ue.android)&&n&&n.from==n.to&&n.from==s.head-1&&/^\. ?$/.test(n.insert.toString())&&"off"==e.contentDOM.getAttribute("autocorrect")?(r&&2==n.insert.length&&(r=C.single(r.main.anchor-1,r.main.head-1)),n={from:s.from,to:s.to,insert:t.of([" "])}):Ue.chrome&&n&&n.from==n.to&&n.from==s.head&&"\n "==n.insert.toString()&&e.lineWrapping&&(r&&(r=C.single(r.main.anchor-1,r.main.head-1)),n={from:s.from,to:s.to,insert:t.of([" "])}),n)return Yr(e,n,r,o);if(r&&!r.main.eq(s)){let t=!1,i="select";return e.inputState.lastSelectionTime>Date.now()-50&&("select"==e.inputState.lastSelectionOrigin&&(t=!0),i=e.inputState.lastSelectionOrigin),e.dispatch({selection:r,scrollIntoView:t,userEvent:i}),!0}return!1}function Yr(t,e,i,n=-1){if(Ue.ios&&t.inputState.flushIOSKey(e))return!0;let r=t.state.selection.main;if(Ue.android&&(e.to==r.to&&(e.from==r.from||e.from==r.from-1&&" "==t.state.sliceDoc(e.from,r.from))&&1==e.insert.length&&2==e.insert.lines&&be(t.contentDOM,"Enter",13)||(e.from==r.from-1&&e.to==r.to&&0==e.insert.length||8==n&&e.insert.lengthr.head)&&be(t.contentDOM,"Backspace",8)||e.from==r.from&&e.to==r.to+1&&0==e.insert.length&&be(t.contentDOM,"Delete",46)))return!0;let s,o=e.insert.toString();t.inputState.composing>=0&&t.inputState.composing++;let a=()=>s||(s=function(t,e,i){let n,r=t.state,s=r.selection.main;if(e.from>=s.from&&e.to<=s.to&&e.to-e.from>=(s.to-s.from)/3&&(!i||i.main.empty&&i.main.from==e.from+e.insert.length)&&t.inputState.composing<0){let i=s.frome.to?r.sliceDoc(e.to,s.to):"";n=r.replaceSelection(t.state.toText(i+e.insert.sliceString(0,void 0,t.state.lineBreak)+o))}else{let o=r.changes(e),a=i&&i.main.to<=o.newLength?i.main:void 0;if(r.selection.ranges.length>1&&t.inputState.composing>=0&&e.to<=s.to&&e.to>=s.to-10){let l,h=t.state.sliceDoc(e.from,e.to),c=i&&un(t,i.main.head);if(c){let t=e.insert.length-(e.to-e.from);l={from:c.from,to:c.to-t}}else l=t.state.doc.lineAt(s.head);let O=s.to-e.to,d=s.to-s.from;n=r.changeByRange((i=>{if(i.from==s.from&&i.to==s.to)return{changes:o,range:a||i.map(o)};let n=i.to-O,c=n-h.length;if(i.to-i.from!=d||t.state.sliceDoc(c,n)!=h||i.to>=l.from&&i.from<=l.to)return{range:i};let u=r.changes({from:c,to:n,insert:e.insert}),f=i.to-s.to;return{changes:u,range:a?C.range(Math.max(0,a.anchor+f),Math.max(0,a.head+f)):i.map(u)}}))}else n={changes:o,selection:a&&r.selection.replaceRange(a)}}let o="input.type";(t.composing||t.inputState.compositionPendingChange&&t.inputState.compositionEndedAt>Date.now()-50)&&(t.inputState.compositionPendingChange=!1,o+=".compose",t.inputState.compositionFirstChange&&(o+=".start",t.inputState.compositionFirstChange=!1));return r.update(n,{userEvent:o,scrollIntoView:!0})}(t,e,i));return t.state.facet(Vi).some((i=>i(t,e.from,e.to,o,a)))||t.dispatch(a()),!0}const Ur={childList:!0,characterData:!0,subtree:!0,attributes:!0,characterDataOldValue:!0},jr=Ue.ie&&Ue.ie_version<=11;class Dr{constructor(t){this.view=t,this.active=!1,this.editContext=null,this.selectionRange=new fe,this.selectionChanged=!1,this.delayedFlush=-1,this.resizeTimeout=-1,this.queue=[],this.delayedAndroidKey=null,this.flushingAndroidKey=-1,this.lastChange=0,this.scrollTargets=[],this.intersection=null,this.resizeScroll=null,this.intersecting=!1,this.gapIntersection=null,this.gaps=[],this.printQuery=null,this.parentCheck=-1,this.dom=t.contentDOM,this.observer=new MutationObserver((e=>{for(let t of e)this.queue.push(t);(Ue.ie&&Ue.ie_version<=11||Ue.ios&&t.composing)&&e.some((t=>"childList"==t.type&&t.removedNodes.length||"characterData"==t.type&&t.oldValue.length>t.target.nodeValue.length))?this.flushSoon():this.flush()})),!window.EditContext||!1===t.constructor.EDIT_CONTEXT||Ue.chrome&&Ue.chrome_version<126||(this.editContext=new Nr(t),t.state.facet(Ni)&&(t.contentDOM.editContext=this.editContext.editContext)),jr&&(this.onCharData=t=>{this.queue.push({target:t.target,type:"characterData",oldValue:t.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.onResize=this.onResize.bind(this),this.onPrint=this.onPrint.bind(this),this.onScroll=this.onScroll.bind(this),window.matchMedia&&(this.printQuery=window.matchMedia("print")),"function"==typeof ResizeObserver&&(this.resizeScroll=new ResizeObserver((()=>{var t;(null===(t=this.view.docView)||void 0===t?void 0:t.lastUpdate){this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),t.length>0&&t[t.length-1].intersectionRatio>0!=this.intersecting&&(this.intersecting=!this.intersecting,this.intersecting!=this.view.inView&&this.onScrollChanged(document.createEvent("Event")))}),{threshold:[0,.001]}),this.intersection.observe(this.dom),this.gapIntersection=new IntersectionObserver((t=>{t.length>0&&t[t.length-1].intersectionRatio>0&&this.onScrollChanged(document.createEvent("Event"))}),{})),this.listenForScroll(),this.readSelectionRange()}onScrollChanged(t){this.view.inputState.runHandlers("scroll",t),this.intersecting&&this.view.measure()}onScroll(t){this.intersecting&&this.flush(!1),this.editContext&&this.view.requestMeasure(this.editContext.measureReq),this.onScrollChanged(t)}onResize(){this.resizeTimeout<0&&(this.resizeTimeout=setTimeout((()=>{this.resizeTimeout=-1,this.view.requestMeasure()}),50))}onPrint(t){("change"!=t.type||t.matches)&&(this.view.viewState.printing=!0,this.view.measure(),setTimeout((()=>{this.view.viewState.printing=!1,this.view.requestMeasure()}),500))}updateGaps(t){if(this.gapIntersection&&(t.length!=this.gaps.length||this.gaps.some(((e,i)=>e!=t[i])))){this.gapIntersection.disconnect();for(let e of t)this.gapIntersection.observe(e);this.gaps=t}}onSelectionChange(t){let e=this.selectionChanged;if(!this.readSelectionRange()||this.delayedAndroidKey)return;let{view:i}=this,n=this.selectionRange;if(i.state.facet(Ni)?i.root.activeElement!=this.dom:!re(i.dom,n))return;let r=n.anchorNode&&i.docView.nearest(n.anchorNode);r&&r.ignoreEvent(t)?e||(this.selectionChanged=!1):(Ue.ie&&Ue.ie_version<=11||Ue.android&&Ue.chrome)&&!i.state.selection.main.empty&&n.focusNode&&oe(n.focusNode,n.focusOffset,n.anchorNode,n.anchorOffset)?this.flushSoon():this.flush(!1)}readSelectionRange(){let{view:t}=this,e=ie(t.root);if(!e)return!1;let i=Ue.safari&&11==t.root.nodeType&&function(t){let e=t.activeElement;for(;e&&e.shadowRoot;)e=e.shadowRoot.activeElement;return e}(this.dom.ownerDocument)==this.dom&&function(t,e){if(e.getComposedRanges){let i=e.getComposedRanges(t.root)[0];if(i)return Lr(t,i)}let i=null;function n(t){t.preventDefault(),t.stopImmediatePropagation(),i=t.getTargetRanges()[0]}return t.contentDOM.addEventListener("beforeinput",n,!0),t.dom.ownerDocument.execCommand("indent"),t.contentDOM.removeEventListener("beforeinput",n,!0),i?Lr(t,i):null}(this.view,e)||e;if(!i||this.selectionRange.eq(i))return!1;let n=re(this.dom,i);return n&&!this.selectionChanged&&t.inputState.lastFocusTime>Date.now()-200&&t.inputState.lastTouchTime{let t=this.delayedAndroidKey;if(t){this.clearDelayedAndroidKey(),this.view.inputState.lastKeyCode=t.keyCode,this.view.inputState.lastKeyTime=Date.now(),!this.flush()&&t.force&&be(this.dom,t.key,t.keyCode)}};this.flushingAndroidKey=this.view.win.requestAnimationFrame(t)}this.delayedAndroidKey&&"Enter"!=t||(this.delayedAndroidKey={key:t,keyCode:e,force:this.lastChange{this.delayedFlush=-1,this.flush()})))}forceFlush(){this.delayedFlush>=0&&(this.view.win.cancelAnimationFrame(this.delayedFlush),this.delayedFlush=-1),this.flush()}pendingRecords(){for(let t of this.observer.takeRecords())this.queue.push(t);return this.queue}processRecords(){let t=this.pendingRecords();t.length&&(this.queue=[]);let e=-1,i=-1,n=!1;for(let r of t){let t=this.readMutation(r);t&&(t.typeOver&&(n=!0),-1==e?({from:e,to:i}=t):(e=Math.min(t.from,e),i=Math.max(t.to,i)))}return{from:e,to:i,typeOver:n}}readChange(){let{from:t,to:e,typeOver:i}=this.processRecords(),n=this.selectionChanged&&re(this.dom,this.selectionRange);if(t<0&&!n)return null;t>-1&&(this.lastChange=Date.now()),this.view.inputState.lastFocusTime=0,this.selectionChanged=!1;let r=new Mr(this.view,t,e,i);return this.view.docView.domChanged={newSel:r.newSel?r.newSel.main:null},r}flush(t=!0){if(this.delayedFlush>=0||this.delayedAndroidKey)return!1;t&&this.readSelectionRange();let e=this.readChange();if(!e)return this.view.requestMeasure(),!1;let i=this.view.state,n=Er(this.view,e);return this.view.state==i&&(e.domChanged||e.newSel&&!e.newSel.main.eq(this.view.state.selection.main))&&this.view.update([]),n}readMutation(t){let e=this.view.docView.nearest(t.target);if(!e||e.ignoreMutation(t))return null;if(e.markDirty("attributes"==t.type),"attributes"==t.type&&(e.flags|=4),"childList"==t.type){let i=Gr(e,t.previousSibling||t.target.previousSibling,-1),n=Gr(e,t.nextSibling||t.target.nextSibling,1);return{from:i?e.posAfter(i):e.posAtStart,to:n?e.posBefore(n):e.posAtEnd,typeOver:!1}}return"characterData"==t.type?{from:e.posAtStart,to:e.posAtEnd,typeOver:t.target.nodeValue==t.oldValue}:null}setWindow(t){t!=this.win&&(this.removeWindowListeners(this.win),this.win=t,this.addWindowListeners(this.win))}addWindowListeners(t){t.addEventListener("resize",this.onResize),this.printQuery?this.printQuery.addEventListener("change",this.onPrint):t.addEventListener("beforeprint",this.onPrint),t.addEventListener("scroll",this.onScroll),t.document.addEventListener("selectionchange",this.onSelectionChange)}removeWindowListeners(t){t.removeEventListener("scroll",this.onScroll),t.removeEventListener("resize",this.onResize),this.printQuery?this.printQuery.removeEventListener("change",this.onPrint):t.removeEventListener("beforeprint",this.onPrint),t.document.removeEventListener("selectionchange",this.onSelectionChange)}update(t){this.editContext&&(this.editContext.update(t),t.startState.facet(Ni)!=t.state.facet(Ni)&&(t.view.contentDOM.editContext=t.state.facet(Ni)?this.editContext.editContext:null))}destroy(){var t,e,i;this.stop(),null===(t=this.intersection)||void 0===t||t.disconnect(),null===(e=this.gapIntersection)||void 0===e||e.disconnect(),null===(i=this.resizeScroll)||void 0===i||i.disconnect();for(let t of this.scrollTargets)t.removeEventListener("scroll",this.onScroll);this.removeWindowListeners(this.win),clearTimeout(this.parentCheck),clearTimeout(this.resizeTimeout),this.win.cancelAnimationFrame(this.delayedFlush),this.win.cancelAnimationFrame(this.flushingAndroidKey),this.editContext&&(this.view.contentDOM.editContext=null,this.editContext.destroy())}}function Gr(t,e,i){for(;e;){let n=Pe.get(e);if(n&&n.parent==t)return n;let r=e.parentNode;e=r!=t.dom?r:i>0?e.nextSibling:e.previousSibling}return null}function Lr(t,e){let i=e.startContainer,n=e.startOffset,r=e.endContainer,s=e.endOffset,o=t.docView.domAtPos(t.state.selection.main.anchor);return oe(o.node,o.offset,r,s)&&([i,n,r,s]=[r,s,i,n]),{anchorNode:i,anchorOffset:n,focusNode:r,focusOffset:s}}class Nr{constructor(e){this.from=0,this.to=0,this.pendingContextChange=null,this.handlers=Object.create(null),this.resetRange(e.state);let i=this.editContext=new window.EditContext({text:e.state.doc.sliceString(this.from,this.to),selectionStart:this.toContextPos(Math.max(this.from,Math.min(this.to,e.state.selection.main.anchor))),selectionEnd:this.toContextPos(e.state.selection.main.head)});this.handlers.textupdate=i=>{let{anchor:n}=e.state.selection.main,r={from:this.toEditorPos(i.updateRangeStart),to:this.toEditorPos(i.updateRangeEnd),insert:t.of(i.text.split("\n"))};r.from==this.from&&nthis.to&&(r.to=n),(r.from!=r.to||r.insert.length)&&(this.pendingContextChange=r,Yr(e,r,C.single(this.toEditorPos(i.selectionStart),this.toEditorPos(i.selectionEnd))),this.pendingContextChange&&(this.revertPending(e.state),this.setSelection(e.state)))},this.handlers.characterboundsupdate=t=>{let n=[],r=null;for(let i=this.toEditorPos(t.rangeStart),s=this.toEditorPos(t.rangeEnd);i{let i=[];for(let e of t.getTextFormats()){let t=e.underlineStyle,n=e.underlineThickness;if("None"!=t&&"None"!=n){let r=`text-decoration: underline ${"Dashed"==t?"dashed ":"Squiggle"==t?"wavy ":""}${"Thin"==n?1:2}px`;i.push(si.mark({attributes:{style:r}}).range(this.toEditorPos(e.rangeStart),this.toEditorPos(e.rangeEnd)))}}e.dispatch({effects:Gi.of(si.set(i))})},this.handlers.compositionstart=()=>{e.inputState.composing<0&&(e.inputState.composing=0,e.inputState.compositionFirstChange=!0)},this.handlers.compositionend=()=>{e.inputState.composing=-1,e.inputState.compositionFirstChange=null};for(let t in this.handlers)i.addEventListener(t,this.handlers[t]);this.measureReq={read:t=>{this.editContext.updateControlBounds(t.contentDOM.getBoundingClientRect());let e=ie(t.root);e&&e.rangeCount&&this.editContext.updateSelectionBounds(e.getRangeAt(0).getBoundingClientRect())}}}applyEdits(t){let e=0,i=!1,n=this.pendingContextChange;return t.changes.iterChanges(((r,s,o,a,l)=>{if(i)return;let h=l.length-(s-r);if(n&&s>=n.to){if(n.from==r&&n.to==s&&n.insert.eq(l))return n=this.pendingContextChange=null,e+=h,void(this.to+=h);n=null,this.revertPending(t.state)}if(r+=e,(s+=e)<=this.from)this.from+=h,this.to+=h;else if(rthis.to||this.to-this.from+l.length>3e4)return void(i=!0);this.editContext.updateText(this.toContextPos(r),this.toContextPos(s),l.toString()),this.to+=h}e+=h})),n&&!i&&this.revertPending(t.state),!i}update(t){let e=this.pendingContextChange;this.applyEdits(t)&&this.rangeIsValid(t.state)?(t.docChanged||t.selectionSet||e)&&this.setSelection(t.state):(this.pendingContextChange=null,this.resetRange(t.state),this.editContext.updateText(0,this.editContext.text.length,t.state.doc.sliceString(this.from,this.to)),this.setSelection(t.state)),(t.geometryChanged||t.docChanged||t.selectionSet)&&t.view.requestMeasure(this.measureReq)}resetRange(t){let{head:e}=t.selection.main;this.from=Math.max(0,e-1e4),this.to=Math.min(t.doc.length,e+1e4)}revertPending(t){let e=this.pendingContextChange;this.pendingContextChange=null,this.editContext.updateText(this.toContextPos(e.from),this.toContextPos(e.from+e.insert.length),t.doc.sliceString(e.from,e.to))}setSelection(t){let{main:e}=t.selection,i=this.toContextPos(Math.max(this.from,Math.min(this.to,e.anchor))),n=this.toContextPos(e.head);this.editContext.selectionStart==i&&this.editContext.selectionEnd==n||this.editContext.updateSelection(i,n)}rangeIsValid(t){let{head:e}=t.selection.main;return!(this.from>0&&e-this.from<500||this.to3e4)}toEditorPos(t){return t+this.from}toContextPos(t){return t-this.from}destroy(){for(let t in this.handlers)this.editContext.removeEventListener(t,this.handlers[t])}}class Ir{get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return this.inputState.composing>0}get compositionStarted(){return this.inputState.composing>=0}get root(){return this._root}get win(){return this.dom.ownerDocument.defaultView||window}constructor(t={}){this.plugins=[],this.pluginMap=new Map,this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.destroyed=!1,this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement("div"),this.scrollDOM=document.createElement("div"),this.scrollDOM.tabIndex=-1,this.scrollDOM.className="cm-scroller",this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement("div"),this.announceDOM.className="cm-announced",this.announceDOM.setAttribute("aria-live","polite"),this.dom=document.createElement("div"),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),t.parent&&t.parent.appendChild(this.dom);let{dispatch:e}=t;this.dispatchTransactions=t.dispatchTransactions||e&&(t=>t.forEach((t=>e(t,this))))||(t=>this.update(t)),this.dispatch=this.dispatch.bind(this),this._root=t.root||function(t){for(;t;){if(t&&(9==t.nodeType||11==t.nodeType&&t.host))return t;t=t.assignedSlot||t.parentNode}return null}(t.parent)||document,this.viewState=new Sr(t.state||xt.create(t)),t.scrollTo&&t.scrollTo.is(Di)&&(this.viewState.scrollTarget=t.scrollTo.value.clip(this.viewState.state)),this.plugins=this.state.facet(Bi).map((t=>new Hi(t)));for(let t of this.plugins)t.update(this);this.observer=new Dr(this),this.inputState=new Tn(this),this.inputState.ensureHandlers(this.plugins),this.docView=new On(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,this.requestMeasure()}dispatch(...t){let e=1==t.length&&t[0]instanceof ut?t:1==t.length&&Array.isArray(t[0])?t[0]:[this.state.update(...t)];this.dispatchTransactions(e,this)}update(t){if(0!=this.updateState)throw new Error("Calls to EditorView.update are not allowed while an update is in progress");let e,i=!1,n=!1,r=this.state;for(let e of t){if(e.startState!=r)throw new RangeError("Trying to update state with a transaction that doesn't start from the previous state.");r=e.state}if(this.destroyed)return void(this.viewState.state=r);let s=this.hasFocus,o=0,a=null;t.some((t=>t.annotation(Jn)))?(this.inputState.notifiedFocused=s,o=1):s!=this.inputState.notifiedFocused&&(this.inputState.notifiedFocused=s,a=Kn(r,s),a||(o=1));let l=this.observer.delayedAndroidKey,h=null;if(l?(this.observer.clearDelayedAndroidKey(),h=this.observer.readChange(),(h&&!this.state.doc.eq(r.doc)||!this.state.selection.eq(r.selection))&&(h=null)):this.observer.clear(),r.facet(xt.phrases)!=this.state.facet(xt.phrases))return this.setState(r);e=cn.create(this,r,t),e.flags|=o;let c=this.viewState.scrollTarget;try{this.updateState=2;for(let e of t){if(c&&(c=c.map(e.changes)),e.scrollIntoView){let{main:t}=e.state.selection;c=new ji(t.empty?t:C.cursor(t.head,t.head>t.anchor?-1:1))}for(let t of e.effects)t.is(Di)&&(c=t.value.clip(this.state))}this.viewState.update(e,c),this.bidiCache=Hr.update(this.bidiCache,e.changes),e.empty||(this.updatePlugins(e),this.inputState.update(e)),i=this.docView.update(e),this.state.facet(ln)!=this.styleModules&&this.mountStyles(),n=this.updateAttrs(),this.showAnnouncements(t),this.docView.updateSelection(i,t.some((t=>t.isUserEvent("select.pointer"))))}finally{this.updateState=0}if(e.startState.facet($r)!=e.state.facet($r)&&(this.viewState.mustMeasureContent=!0),(i||n||c||this.viewState.mustEnforceCursorAssoc||this.viewState.mustMeasureContent)&&this.requestMeasure(),i&&this.docViewUpdate(),!e.empty)for(let t of this.state.facet(zi))try{t(e)}catch(t){Li(this.state,t,"update listener")}(a||h)&&Promise.resolve().then((()=>{a&&this.state==a.startState&&this.dispatch(a),h&&!Er(this,h)&&l.force&&be(this.contentDOM,l.key,l.keyCode)}))}setState(t){if(0!=this.updateState)throw new Error("Calls to EditorView.setState are not allowed while an update is in progress");if(this.destroyed)return void(this.viewState.state=t);this.updateState=2;let e=this.hasFocus;try{for(let t of this.plugins)t.destroy(this);this.viewState=new Sr(t),this.plugins=t.facet(Bi).map((t=>new Hi(t))),this.pluginMap.clear();for(let t of this.plugins)t.update(this);this.docView.destroy(),this.docView=new On(this),this.inputState.ensureHandlers(this.plugins),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}e&&this.focus(),this.requestMeasure()}updatePlugins(t){let e=t.startState.facet(Bi),i=t.state.facet(Bi);if(e!=i){let n=[];for(let r of i){let i=e.indexOf(r);if(i<0)n.push(new Hi(r));else{let e=this.plugins[i];e.mustUpdate=t,n.push(e)}}for(let e of this.plugins)e.mustUpdate!=t&&e.destroy(this);this.plugins=n,this.pluginMap.clear()}else for(let e of this.plugins)e.mustUpdate=t;for(let t=0;t-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.observer.delayedAndroidKey)return this.measureScheduled=-1,void this.requestMeasure();this.measureScheduled=0,t&&this.observer.forceFlush();let e=null,i=this.scrollDOM,n=i.scrollTop*this.scaleY,{scrollAnchorPos:r,scrollAnchorHeight:s}=this.viewState;Math.abs(n-this.viewState.scrollTop)>1&&(s=-1),this.viewState.scrollAnchorHeight=-1;try{for(let t=0;;t++){if(s<0)if(ve(i))r=-1,s=this.viewState.heightMap.height;else{let t=this.viewState.scrollAnchorAt(n);r=t.from,s=t.top}this.updateState=1;let o=this.viewState.measure(this);if(!o&&!this.measureRequests.length&&null==this.viewState.scrollTarget)break;if(t>5){console.warn(this.measureRequests.length?"Measure loop restarted more than 5 times":"Viewport failed to stabilize");break}let a=[];4&o||([this.measureRequests,a]=[a,this.measureRequests]);let l=a.map((t=>{try{return t.read(this)}catch(t){return Li(this.state,t),Fr}})),h=cn.create(this,this.state,[]),c=!1;h.flags|=o,e?e.flags|=o:e=h,this.updateState=2,h.empty||(this.updatePlugins(h),this.inputState.update(h),this.updateAttrs(),c=this.docView.update(h),c&&this.docViewUpdate());for(let t=0;t1||t<-1){n+=t,i.scrollTop=n/this.scaleY,s=-1;continue}}}break}}}finally{this.updateState=0,this.measureScheduled=-1}if(e&&!e.empty)for(let t of this.state.facet(zi))t(e)}get themeClasses(){return _r+" "+(this.state.facet(Tr)?Zr:Rr)+" "+this.state.facet($r)}updateAttrs(){let t=Jr(this,Ji,{class:"cm-editor"+(this.hasFocus?" cm-focused ":" ")+this.themeClasses}),e={spellcheck:"false",autocorrect:"off",autocapitalize:"off",translate:"no",contenteditable:this.state.facet(Ni)?"true":"false",class:"cm-content",style:`${Ue.tabSize}: ${this.state.tabSize}`,role:"textbox","aria-multiline":"true"};this.state.readOnly&&(e["aria-readonly"]="true"),Jr(this,Ki,e);let i=this.observer.ignore((()=>{let i=Ke(this.contentDOM,this.contentAttrs,e),n=Ke(this.dom,this.editorAttrs,t);return i||n}));return this.editorAttrs=t,this.contentAttrs=e,i}showAnnouncements(t){let e=!0;for(let i of t)for(let t of i.effects)if(t.is(Ir.announce)){e&&(this.announceDOM.textContent=""),e=!1,this.announceDOM.appendChild(document.createElement("div")).textContent=t.value}}mountStyles(){this.styleModules=this.state.facet(ln);let t=this.state.facet(Ir.cspNonce);Nt.mount(this.root,this.styleModules.concat(qr).reverse(),t?{nonce:t}:void 0)}readMeasured(){if(2==this.updateState)throw new Error("Reading the editor layout isn't allowed during an update");0==this.updateState&&this.measureScheduled>-1&&this.measure(!1)}requestMeasure(t){if(this.measureScheduled<0&&(this.measureScheduled=this.win.requestAnimationFrame((()=>this.measure()))),t){if(this.measureRequests.indexOf(t)>-1)return;if(null!=t.key)for(let e=0;ee.spec==t))||null),e&&e.update(this).value}get documentTop(){return this.contentDOM.getBoundingClientRect().top+this.viewState.paddingTop}get documentPadding(){return{top:this.viewState.paddingTop,bottom:this.viewState.paddingBottom}}get scaleX(){return this.viewState.scaleX}get scaleY(){return this.viewState.scaleY}elementAtHeight(t){return this.readMeasured(),this.viewState.elementAtHeight(t)}lineBlockAtHeight(t){return this.readMeasured(),this.viewState.lineBlockAtHeight(t)}get viewportLineBlocks(){return this.viewState.viewportLines}lineBlockAt(t){return this.viewState.lineBlockAt(t)}get contentHeight(){return this.viewState.contentHeight}moveByChar(t,e,i){return $n(this,t,kn(this,t,e,i))}moveByGroup(t,e){return $n(this,t,kn(this,t,e,(e=>function(t,e,i){let n=t.state.charCategorizer(e),r=n(i);return t=>{let e=n(t);return r==St.Space&&(r=e),r==e}}(this,t.head,e))))}visualLineSide(t,e){let i=this.bidiSpans(t),n=this.textDirectionAt(t.from),r=i[e?i.length-1:0];return C.cursor(r.side(e,n)+t.from,r.forward(!e,n)?1:-1)}moveToLineBoundary(t,e,i=!0){return function(t,e,i,n){let r=xn(t,e.head),s=n&&r.type==ri.Text&&(t.lineWrapping||r.widgetLineBreaks)?t.coordsAtPos(e.assoc<0&&e.head>r.from?e.head-1:e.head):null;if(s){let e=t.dom.getBoundingClientRect(),n=t.textDirectionAt(r.from),o=t.posAtCoords({x:i==(n==fi.LTR)?e.right-1:e.left+1,y:(s.top+s.bottom)/2});if(null!=o)return C.cursor(o,i?-1:1)}return C.cursor(i?r.to:r.from,i?-1:1)}(this,t,e,i)}moveVertically(t,e,i){return $n(this,t,function(t,e,i,n){let r=e.head,s=i?1:-1;if(r==(i?t.state.doc.length:0))return C.cursor(r,e.assoc);let o,a=e.goalColumn,l=t.contentDOM.getBoundingClientRect(),h=t.coordsAtPos(r,e.assoc||-1),c=t.documentTop;if(h)null==a&&(a=h.left-l.left),o=s<0?h.top:h.bottom;else{let e=t.viewState.lineBlockAt(r);null==a&&(a=Math.min(l.right-l.left,t.defaultCharacterWidth*(r-e.from))),o=(s<0?e.top:e.bottom)+c}let O=l.left+a,d=null!=n?n:t.viewState.heightOracle.textHeight>>1;for(let e=0;;e+=10){let i=o+(d+e)*s,n=wn(t,{x:O,y:i},!1,s);if(il.bottom||(s<0?nr)){let e=t.docView.coordsForChar(n),r=!e||i0)}coordsForChar(t){return this.readMeasured(),this.docView.coordsForChar(t)}get defaultCharacterWidth(){return this.viewState.heightOracle.charWidth}get defaultLineHeight(){return this.viewState.heightOracle.lineHeight}get textDirection(){return this.viewState.defaultTextDirection}textDirectionAt(t){return!this.state.facet(Ei)||tthis.viewport.to?this.textDirection:(this.readMeasured(),this.docView.textDirectionAt(t))}get lineWrapping(){return this.viewState.heightOracle.lineWrapping}bidiSpans(t){if(t.length>Br)return _i(t.length);let e,i=this.textDirectionAt(t.from);for(let n of this.bidiCache)if(n.from==t.from&&n.dir==i&&(n.fresh||ki(n.isolates,e=sn(this,t))))return n.order;e||(e=sn(this,t));let n=function(t,e,i){if(!t)return[new xi(0,0,e==mi?1:0)];if(e==pi&&!i.length&&!yi.test(t))return _i(t.length);if(i.length)for(;t.length>Pi.length;)Pi[Pi.length]=256;let n=[],r=e==pi?0:1;return Ti(t,r,r,i,0,t.length,n),n}(t.text,i,e);return this.bidiCache.push(new Hr(t.from,t.to,i,e,!0,n)),n}get hasFocus(){var t;return(this.dom.ownerDocument.hasFocus()||Ue.safari&&(null===(t=this.inputState)||void 0===t?void 0:t.lastContextMenu)>Date.now()-3e4)&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore((()=>{ge(this.contentDOM),this.docView.updateSelection()}))}setRoot(t){this._root!=t&&(this._root=t,this.observer.setWindow((9==t.nodeType?t:t.ownerDocument).defaultView||window),this.mountStyles())}destroy(){this.root.activeElement==this.contentDOM&&this.contentDOM.blur();for(let t of this.plugins)t.destroy(this);this.plugins=[],this.inputState.destroy(),this.docView.destroy(),this.dom.remove(),this.observer.destroy(),this.measureScheduled>-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.destroyed=!0}static scrollIntoView(t,e={}){return Di.of(new ji("number"==typeof t?C.cursor(t):t,e.y,e.x,e.yMargin,e.xMargin))}scrollSnapshot(){let{scrollTop:t,scrollLeft:e}=this.scrollDOM,i=this.viewState.scrollAnchorAt(t);return Di.of(new ji(C.cursor(i.from),"start","start",i.top-t,e,!0))}setTabFocusMode(t){null==t?this.inputState.tabFocusMode=this.inputState.tabFocusMode<0?0:-1:"boolean"==typeof t?this.inputState.tabFocusMode=t?0:-1:0!=this.inputState.tabFocusMode&&(this.inputState.tabFocusMode=Date.now()+t)}static domEventHandlers(t){return Fi.define((()=>({})),{eventHandlers:t})}static domEventObservers(t){return Fi.define((()=>({})),{eventObservers:t})}static theme(t,e){let i=Nt.newName(),n=[$r.of(i),ln.of(Cr(`.${i}`,t))];return e&&e.dark&&n.push(Tr.of(!0)),n}static baseTheme(t){return B.lowest(ln.of(Cr("."+_r,t,Xr)))}static findFromDOM(t){var e;let i=t.querySelector(".cm-content"),n=i&&Pe.get(i)||Pe.get(t);return(null===(e=null==n?void 0:n.rootView)||void 0===e?void 0:e.view)||null}}Ir.styleModule=ln,Ir.inputHandler=Vi,Ir.scrollHandler=Ui,Ir.focusChangeEffect=Mi,Ir.perLineTextDirection=Ei,Ir.exceptionSink=Ai,Ir.updateListener=zi,Ir.editable=Ni,Ir.mouseSelectionStyle=Wi,Ir.dragMovesSelection=qi,Ir.clickAddsSelectionRange=Ci,Ir.decorations=tn,Ir.outerDecorations=en,Ir.atomicRanges=nn,Ir.bidiIsolatedRanges=rn,Ir.scrollMargins=on,Ir.darkTheme=Tr,Ir.cspNonce=A.define({combine:t=>t.length?t[0]:""}),Ir.contentAttributes=Ki,Ir.editorAttributes=Ji,Ir.lineWrapping=Ir.contentAttributes.of({class:"cm-lineWrapping"}),Ir.announce=dt.define();const Br=4096,Fr={};class Hr{constructor(t,e,i,n,r,s){this.from=t,this.to=e,this.dir=i,this.isolates=n,this.fresh=r,this.order=s}static update(t,e){if(e.empty&&!t.some((t=>t.fresh)))return t;let i=[],n=t.length?t[t.length-1].dir:fi.LTR;for(let r=Math.max(0,t.length-10);r=0;r--){let e=n[r],s="function"==typeof e?e(t):e;s&&Fe(s,i)}return i}const Kr=Ue.mac?"mac":Ue.windows?"win":Ue.linux?"linux":"key";function ts(t,e,i){return e.altKey&&(t="Alt-"+t),e.ctrlKey&&(t="Ctrl-"+t),e.metaKey&&(t="Meta-"+t),!1!==i&&e.shiftKey&&(t="Shift-"+t),t}const es=B.default(Ir.domEventHandlers({keydown:(t,e)=>ls(rs(e.state),t,e,"editor")})),is=A.define({enables:es}),ns=new WeakMap;function rs(t){let e=t.facet(is),i=ns.get(e);return i||ns.set(e,i=function(t,e=Kr){let i=Object.create(null),n=Object.create(null),r=(t,e)=>{let i=n[t];if(null==i)n[t]=e;else if(i!=e)throw new Error("Key binding "+t+" is used both as a regular binding and as a multi-stroke prefix")},s=(t,n,s,o,a)=>{var l,h;let c=i[t]||(i[t]=Object.create(null)),O=n.split(/ (?!$)/).map((t=>function(t,e){const i=t.split(/-(?!$)/);let n,r,s,o,a=i[i.length-1];"Space"==a&&(a=" ");for(let t=0;t{let n=ss={view:e,prefix:i,scope:t};return setTimeout((()=>{ss==n&&(ss=null)}),os),!0}]})}let d=O.join(" ");r(d,!1);let u=c[d]||(c[d]={preventDefault:!1,stopPropagation:!1,run:(null===(h=null===(l=c._any)||void 0===l?void 0:l.run)||void 0===h?void 0:h.slice())||[]});s&&u.run.push(s),o&&(u.preventDefault=!0),a&&(u.stopPropagation=!0)};for(let n of t){let t=n.scope?n.scope.split(" "):["editor"];if(n.any)for(let e of t){let t=i[e]||(i[e]=Object.create(null));t._any||(t._any={preventDefault:!1,stopPropagation:!1,run:[]});let{any:r}=n;for(let e in t)t[e].run.push((t=>r(t,as)))}let r=n[e]||n.key;if(r)for(let e of t)s(e,r,n.run,n.preventDefault,n.stopPropagation),n.shift&&s(e,"Shift-"+r,n.shift,n.preventDefault,n.stopPropagation)}return i}(e.reduce(((t,e)=>t.concat(e)),[]))),i}let ss=null;const os=4e3;let as=null;function ls(t,e,i,n){as=e;let r=function(t){var e=!(Jt&&t.metaKey&&t.shiftKey&&!t.ctrlKey&&!t.altKey||Kt&&t.shiftKey&&t.key&&1==t.key.length||"Unidentified"==t.key)&&t.key||(t.shiftKey?Ht:Ft)[t.keyCode]||t.key||"Unidentified";return"Esc"==e&&(e="Escape"),"Del"==e&&(e="Delete"),"Left"==e&&(e="ArrowLeft"),"Up"==e&&(e="ArrowUp"),"Right"==e&&(e="ArrowRight"),"Down"==e&&(e="ArrowDown"),e}(e),s=v(b(r,0))==r.length&&" "!=r,o="",a=!1,l=!1,h=!1;ss&&ss.view==i&&ss.scope==n&&(o=ss.prefix+" ",Cn.indexOf(e.keyCode)<0&&(l=!0,ss=null));let c,O,d=new Set,u=t=>{if(t){for(let e of t.run)if(!d.has(e)&&(d.add(e),e(i)))return t.stopPropagation&&(h=!0),!0;t.preventDefault&&(t.stopPropagation&&(h=!0),l=!0)}return!1},f=t[n];return f&&(u(f[o+ts(r,e,!s)])?a=!0:s&&(e.altKey||e.metaKey||e.ctrlKey)&&!(Ue.windows&&e.ctrlKey&&e.altKey)&&(c=Ft[e.keyCode])&&c!=r?(u(f[o+ts(c,e,!0)])||e.shiftKey&&(O=Ht[e.keyCode])!=r&&O!=c&&u(f[o+ts(O,e,!1)]))&&(a=!0):s&&e.shiftKey&&u(f[o+ts(r,e,!0)])&&(a=!0),!a&&u(f._any)&&(a=!0)),l&&(a=!0),a&&h&&e.stopPropagation(),as=null,a}class hs{constructor(t,e,i,n,r){this.className=t,this.left=e,this.top=i,this.width=n,this.height=r}draw(){let t=document.createElement("div");return t.className=this.className,this.adjust(t),t}update(t,e){return e.className==this.className&&(this.adjust(t),!0)}adjust(t){t.style.left=this.left+"px",t.style.top=this.top+"px",null!=this.width&&(t.style.width=this.width+"px"),t.style.height=this.height+"px"}eq(t){return this.left==t.left&&this.top==t.top&&this.width==t.width&&this.height==t.height&&this.className==t.className}static forRange(t,e,i){if(i.empty){let n=t.coordsAtPos(i.head,i.assoc||1);if(!n)return[];let r=cs(t);return[new hs(e,n.left-r.left,n.top-r.top,null,n.bottom-n.top)]}return function(t,e,i){if(i.to<=t.viewport.from||i.from>=t.viewport.to)return[];let n=Math.max(i.from,t.viewport.from),r=Math.min(i.to,t.viewport.to),s=t.textDirection==fi.LTR,o=t.contentDOM,a=o.getBoundingClientRect(),l=cs(t),h=o.querySelector(".cm-line"),c=h&&window.getComputedStyle(h),O=a.left+(c?parseInt(c.paddingLeft)+Math.min(0,parseInt(c.textIndent)):0),d=a.right-(c?parseInt(c.paddingRight):0),u=xn(t,n),f=xn(t,r),p=u.type==ri.Text?u:null,m=f.type==ri.Text?f:null;p&&(t.lineWrapping||u.widgetLineBreaks)&&(p=Os(t,n,1,p));m&&(t.lineWrapping||f.widgetLineBreaks)&&(m=Os(t,r,-1,m));if(p&&m&&p.from==m.from&&p.to==m.to)return Q(b(i.from,i.to,p));{let e=p?b(i.from,null,p):S(u,!1),n=m?b(null,i.to,m):S(f,!0),r=[];return(p||u).to<(m||f).from-(p&&m?1:0)||u.widgetLineBreaks>1&&e.bottom+t.defaultLineHeight/2h&&n.from=s)break;a>r&&l(Math.max(t,r),null==e&&t<=h,Math.min(a,s),null==i&&a>=c,o.dir)}if(r=n.to+1,r>=s)break}return 0==a.length&&l(h,null==e,c,null==i,t.textDirection),{top:r,bottom:o,horizontal:a}}function S(t,e){let i=a.top+(e?t.top:t.bottom);return{top:i,bottom:i,horizontal:[]}}}(t,e,i)}}function cs(t){let e=t.scrollDOM.getBoundingClientRect();return{left:(t.textDirection==fi.LTR?e.left:e.right-t.scrollDOM.clientWidth*t.scaleX)-t.scrollDOM.scrollLeft*t.scaleX,top:e.top-t.scrollDOM.scrollTop*t.scaleY}}function Os(t,e,i,n){let r=t.coordsAtPos(e,2*i);if(!r)return n;let s=t.dom.getBoundingClientRect(),o=(r.top+r.bottom)/2,a=t.posAtCoords({x:s.left+1,y:o}),l=t.posAtCoords({x:s.right-1,y:o});return null==a||null==l?n:{from:Math.max(n.from,Math.min(a,l)),to:Math.min(n.to,Math.max(a,l))}}class ds{constructor(t,e){this.view=t,this.layer=e,this.drawn=[],this.scaleX=1,this.scaleY=1,this.measureReq={read:this.measure.bind(this),write:this.draw.bind(this)},this.dom=t.scrollDOM.appendChild(document.createElement("div")),this.dom.classList.add("cm-layer"),e.above&&this.dom.classList.add("cm-layer-above"),e.class&&this.dom.classList.add(e.class),this.scale(),this.dom.setAttribute("aria-hidden","true"),this.setOrder(t.state),t.requestMeasure(this.measureReq),e.mount&&e.mount(this.dom,t)}update(t){t.startState.facet(us)!=t.state.facet(us)&&this.setOrder(t.state),(this.layer.update(t,this.dom)||t.geometryChanged)&&(this.scale(),t.view.requestMeasure(this.measureReq))}docViewUpdate(t){!1!==this.layer.updateOnDocViewUpdate&&t.requestMeasure(this.measureReq)}setOrder(t){let e=0,i=t.facet(us);for(;e!function(t,e){return t.constructor==e.constructor&&t.eq(e)}(t,this.drawn[e])))){let e=this.dom.firstChild,i=0;for(let n of t)n.update&&e&&n.constructor&&this.drawn[i].constructor&&n.update(e,this.drawn[i])?(e=e.nextSibling,i++):this.dom.insertBefore(n.draw(),e);for(;e;){let t=e.nextSibling;e.remove(),e=t}this.drawn=t}}destroy(){this.layer.destroy&&this.layer.destroy(this.dom,this.view),this.dom.remove()}}const us=A.define();function fs(t){return[Fi.define((e=>new ds(e,t))),us.of(t)]}const ps=!Ue.ios,ms=A.define({combine:t=>kt(t,{cursorBlinkRate:1200,drawRangeCursor:!0},{cursorBlinkRate:(t,e)=>Math.min(t,e),drawRangeCursor:(t,e)=>t||e})});function gs(t={}){return[ms.of(t),bs,vs,ys,Yi.of(!0)]}function Qs(t){return t.startState.facet(ms)!=t.state.facet(ms)}const bs=fs({above:!0,markers(t){let{state:e}=t,i=e.facet(ms),n=[];for(let r of e.selection.ranges){let s=r==e.selection.main;if(r.empty?!s||ps:i.drawRangeCursor){let e=s?"cm-cursor cm-cursor-primary":"cm-cursor cm-cursor-secondary",i=r.empty?r:C.cursor(r.head,r.head>r.anchor?-1:1);for(let r of hs.forRange(t,e,i))n.push(r)}}return n},update(t,e){t.transactions.some((t=>t.selection))&&(e.style.animationName="cm-blink"==e.style.animationName?"cm-blink2":"cm-blink");let i=Qs(t);return i&&Ss(t.state,e),t.docChanged||t.selectionSet||i},mount(t,e){Ss(e.state,t)},class:"cm-cursorLayer"});function Ss(t,e){e.style.animationDuration=t.facet(ms).cursorBlinkRate+"ms"}const vs=fs({above:!1,markers:t=>t.state.selection.ranges.map((e=>e.empty?[]:hs.forRange(t,"cm-selectionBackground",e))).reduce(((t,e)=>t.concat(e))),update:(t,e)=>t.docChanged||t.selectionSet||t.viewportChanged||Qs(t),class:"cm-selectionLayer"}),ws={".cm-line":{"& ::selection, &::selection":{backgroundColor:"transparent !important"}},".cm-content":{"& :focus":{caretColor:"initial !important","&::selection, & ::selection":{backgroundColor:"Highlight !important"}}}};ps&&(ws[".cm-line"].caretColor=ws[".cm-content"].caretColor="transparent !important");const ys=B.highest(Ir.theme(ws)),xs=dt.define({map:(t,e)=>null==t?null:e.mapPos(t)}),ks=j.define({create:()=>null,update:(t,e)=>(null!=t&&(t=e.changes.mapPos(t)),e.effects.reduce(((t,e)=>e.is(xs)?e.value:t),t))}),Ps=Fi.fromClass(class{constructor(t){this.view=t,this.cursor=null,this.measureReq={read:this.readPos.bind(this),write:this.drawCursor.bind(this)}}update(t){var e;let i=t.state.field(ks);null==i?null!=this.cursor&&(null===(e=this.cursor)||void 0===e||e.remove(),this.cursor=null):(this.cursor||(this.cursor=this.view.scrollDOM.appendChild(document.createElement("div")),this.cursor.className="cm-dropCursor"),(t.startState.field(ks)!=i||t.docChanged||t.geometryChanged)&&this.view.requestMeasure(this.measureReq))}readPos(){let{view:t}=this,e=t.state.field(ks),i=null!=e&&t.coordsAtPos(e);if(!i)return null;let n=t.scrollDOM.getBoundingClientRect();return{left:i.left-n.left+t.scrollDOM.scrollLeft*t.scaleX,top:i.top-n.top+t.scrollDOM.scrollTop*t.scaleY,height:i.bottom-i.top}}drawCursor(t){if(this.cursor){let{scaleX:e,scaleY:i}=this.view;t?(this.cursor.style.left=t.left/e+"px",this.cursor.style.top=t.top/i+"px",this.cursor.style.height=t.height/i+"px"):this.cursor.style.left="-100000px"}}destroy(){this.cursor&&this.cursor.remove()}setDropPos(t){this.view.state.field(ks)!=t&&this.view.dispatch({effects:xs.of(t)})}},{eventObservers:{dragover(t){this.setDropPos(this.view.posAtCoords({x:t.clientX,y:t.clientY}))},dragleave(t){t.target!=this.view.contentDOM&&this.view.contentDOM.contains(t.relatedTarget)||this.setDropPos(null)},dragend(){this.setDropPos(null)},drop(){this.setDropPos(null)}}});function $s(t,e,i,n,r){e.lastIndex=0;for(let s,o=t.iterRange(i,n),a=i;!o.next().done;a+=o.value.length)if(!o.lineBreak)for(;s=e.exec(o.value);)r(a+s.index,s)}class Ts{constructor(t){const{regexp:e,decoration:i,decorate:n,boundary:r,maxLength:s=1e3}=t;if(!e.global)throw new RangeError("The regular expression given to MatchDecorator should have its 'g' flag set");if(this.regexp=e,n)this.addMatch=(t,e,i,r)=>n(r,i,i+t[0].length,t,e);else if("function"==typeof i)this.addMatch=(t,e,n,r)=>{let s=i(t,e,n);s&&r(n,n+t[0].length,s)};else{if(!i)throw new RangeError("Either 'decorate' or 'decoration' should be provided to MatchDecorator");this.addMatch=(t,e,n,r)=>r(n,n+t[0].length,i)}this.boundary=r,this.maxLength=s}createDeco(t){let e=new Zt,i=e.add.bind(e);for(let{from:e,to:n}of function(t,e){let i=t.visibleRanges;if(1==i.length&&i[0].from==t.viewport.from&&i[0].to==t.viewport.to)return i;let n=[];for(let{from:r,to:s}of i)r=Math.max(t.state.doc.lineAt(r).from,r-e),s=Math.min(t.state.doc.lineAt(s).to,s+e),n.length&&n[n.length-1].to>=r?n[n.length-1].to=s:n.push({from:r,to:s});return n}(t,this.maxLength))$s(t.state.doc,this.regexp,e,n,((e,n)=>this.addMatch(n,t,e,i)));return e.finish()}updateDeco(t,e){let i=1e9,n=-1;return t.docChanged&&t.changes.iterChanges(((e,r,s,o)=>{o>t.view.viewport.from&&s1e3?this.createDeco(t.view):n>-1?this.updateRange(t.view,e.map(t.changes),i,n):e}updateRange(t,e,i,n){for(let r of t.visibleRanges){let s=Math.max(r.from,i),o=Math.min(r.to,n);if(o>s){let i=t.state.doc.lineAt(s),n=i.toi.from;s--)if(this.boundary.test(i.text[s-1-i.from])){a=s;break}for(;oc.push(i.range(t,e));if(i==n)for(this.regexp.lastIndex=a-i.from;(h=this.regexp.exec(i.text))&&h.indexthis.addMatch(i,t,e,O)));e=e.update({filterFrom:a,filterTo:l,filter:(t,e)=>tl,add:c})}}return e}}const _s=null!=/x/.unicode?"gu":"g",Rs=new RegExp("[\0-\b\n--Ÿ­؜​‎‏\u2028\u2029‭‮⁦⁧⁩\ufeff-]",_s),Zs={0:"null",7:"bell",8:"backspace",10:"newline",11:"vertical tab",13:"carriage return",27:"escape",8203:"zero width space",8204:"zero width non-joiner",8205:"zero width joiner",8206:"left-to-right mark",8207:"right-to-left mark",8232:"line separator",8237:"left-to-right override",8238:"right-to-left override",8294:"left-to-right isolate",8295:"right-to-left isolate",8297:"pop directional isolate",8233:"paragraph separator",65279:"zero width no-break space",65532:"object replacement"};let Xs=null;const Cs=A.define({combine(t){let e=kt(t,{render:null,specialChars:Rs,addSpecialChars:null});return(e.replaceTabs=!function(){var t;if(null==Xs&&"undefined"!=typeof document&&document.body){let e=document.body.style;Xs=null!=(null!==(t=e.tabSize)&&void 0!==t?t:e.MozTabSize)}return Xs||!1}())&&(e.specialChars=new RegExp("\t|"+e.specialChars.source,_s)),e.addSpecialChars&&(e.specialChars=new RegExp(e.specialChars.source+"|"+e.addSpecialChars.source,_s)),e}});function qs(t={}){return[Cs.of(t),Ws||(Ws=Fi.fromClass(class{constructor(t){this.view=t,this.decorations=si.none,this.decorationCache=Object.create(null),this.decorator=this.makeDecorator(t.state.facet(Cs)),this.decorations=this.decorator.createDeco(t)}makeDecorator(t){return new Ts({regexp:t.specialChars,decoration:(e,i,n)=>{let{doc:r}=i.state,s=b(e[0],0);if(9==s){let t=r.lineAt(n),e=i.state.tabSize,s=Ut(t.text,e,n-t.from);return si.replace({widget:new zs((e-s%e)*this.view.defaultCharacterWidth/this.view.scaleX)})}return this.decorationCache[s]||(this.decorationCache[s]=si.replace({widget:new As(t,s)}))},boundary:t.replaceTabs?void 0:/[^]/})}update(t){let e=t.state.facet(Cs);t.startState.facet(Cs)!=e?(this.decorator=this.makeDecorator(e),this.decorations=this.decorator.createDeco(t.view)):this.decorations=this.decorator.updateDeco(t,this.decorations)}},{decorations:t=>t.decorations}))]}let Ws=null;class As extends ni{constructor(t,e){super(),this.options=t,this.code=e}eq(t){return t.code==this.code}toDOM(t){let e=function(t){return t>=32?"•":10==t?"␤":String.fromCharCode(9216+t)}(this.code),i=t.state.phrase("Control character")+" "+(Zs[this.code]||"0x"+this.code.toString(16)),n=this.options.render&&this.options.render(this.code,i,e);if(n)return n;let r=document.createElement("span");return r.textContent=e,r.title=i,r.setAttribute("aria-label",i),r.className="cm-specialChar",r}ignoreEvent(){return!1}}class zs extends ni{constructor(t){super(),this.width=t}eq(t){return t.width==this.width}toDOM(){let t=document.createElement("span");return t.textContent="\t",t.className="cm-tab",t.style.width=this.width+"px",t}ignoreEvent(){return!1}}const Vs=si.line({class:"cm-activeLine"}),Ms=Fi.fromClass(class{constructor(t){this.decorations=this.getDeco(t)}update(t){(t.docChanged||t.selectionSet)&&(this.decorations=this.getDeco(t.view))}getDeco(t){let e=-1,i=[];for(let n of t.state.selection.ranges){let r=t.lineBlockAt(n.head);r.from>e&&(i.push(Vs.range(r.from)),e=r.from)}return si.set(i)}},{decorations:t=>t.decorations}),Es=2e3;function Ys(t,e){let i=t.posAtCoords({x:e.clientX,y:e.clientY},!1),n=t.state.doc.lineAt(i),r=i-n.from,s=r>Es?-1:r==n.length?function(t,e){let i=t.coordsAtPos(t.viewport.from);return i?Math.round(Math.abs((i.left-e)/t.defaultCharacterWidth)):-1}(t,e.clientX):Ut(n.text,t.state.tabSize,i-n.from);return{line:n.number,col:s,off:r}}function Us(t,e){let i=Ys(t,e),n=t.state.selection;return i?{update(t){if(t.docChanged){let e=t.changes.mapPos(t.startState.doc.line(i.line).from),r=t.state.doc.lineAt(e);i={line:r.number,col:i.col,off:Math.min(i.off,r.length)},n=n.map(t.changes)}},get(e,r,s){let o=Ys(t,e);if(!o)return n;let a=function(t,e,i){let n=Math.min(e.line,i.line),r=Math.max(e.line,i.line),s=[];if(e.off>Es||i.off>Es||e.col<0||i.col<0){let o=Math.min(e.off,i.off),a=Math.max(e.off,i.off);for(let e=n;e<=r;e++){let i=t.doc.line(e);i.length<=a&&s.push(C.range(i.from+o,i.to+a))}}else{let o=Math.min(e.col,i.col),a=Math.max(e.col,i.col);for(let e=n;e<=r;e++){let i=t.doc.line(e),n=jt(i.text,o,t.tabSize,!0);if(n<0)s.push(C.cursor(i.to));else{let e=jt(i.text,a,t.tabSize);s.push(C.range(i.from+n,i.from+e))}}}return s}(t.state,i,o);return a.length?s?C.create(a.concat(n.ranges)):C.create(a):n}}:null}const js={Alt:[18,t=>!!t.altKey],Control:[17,t=>!!t.ctrlKey],Shift:[16,t=>!!t.shiftKey],Meta:[91,t=>!!t.metaKey]},Ds={style:"cursor: crosshair"};function Gs(t={}){let[e,i]=js[t.key||"Alt"],n=Fi.fromClass(class{constructor(t){this.view=t,this.isDown=!1}set(t){this.isDown!=t&&(this.isDown=t,this.view.update([]))}},{eventObservers:{keydown(t){this.set(t.keyCode==e||i(t))},keyup(t){t.keyCode!=e&&i(t)||this.set(!1)},mousemove(t){this.set(i(t))}}});return[n,Ir.contentAttributes.of((t=>{var e;return(null===(e=t.plugin(n))||void 0===e?void 0:e.isDown)?Ds:null}))]}const Ls="-10000px";class Ns{constructor(t,e,i,n){this.facet=e,this.createTooltipView=i,this.removeTooltipView=n,this.input=t.state.facet(e),this.tooltips=this.input.filter((t=>t));let r=null;this.tooltipViews=this.tooltips.map((t=>r=i(t,r)))}update(t,e){var i;let n=t.state.facet(this.facet),r=n.filter((t=>t));if(n===this.input){for(let e of this.tooltipViews)e.update&&e.update(t);return!1}let s=[],o=e?[]:null;for(let i=0;ie[i]=t)),e.length=o.length),this.input=n,this.tooltips=r,this.tooltipViews=s,!0}}function Is(t){let{win:e}=t;return{top:0,left:0,bottom:e.innerHeight,right:e.innerWidth}}const Bs=A.define({combine:t=>{var e,i,n;return{position:Ue.ios?"absolute":(null===(e=t.find((t=>t.position)))||void 0===e?void 0:e.position)||"fixed",parent:(null===(i=t.find((t=>t.parent)))||void 0===i?void 0:i.parent)||null,tooltipSpace:(null===(n=t.find((t=>t.tooltipSpace)))||void 0===n?void 0:n.tooltipSpace)||Is}}}),Fs=new WeakMap,Hs=Fi.fromClass(class{constructor(t){this.view=t,this.above=[],this.inView=!0,this.madeAbsolute=!1,this.lastTransaction=0,this.measureTimeout=-1;let e=t.state.facet(Bs);this.position=e.position,this.parent=e.parent,this.classes=t.themeClasses,this.createContainer(),this.measureReq={read:this.readMeasure.bind(this),write:this.writeMeasure.bind(this),key:this},this.resizeObserver="function"==typeof ResizeObserver?new ResizeObserver((()=>this.measureSoon())):null,this.manager=new Ns(t,to,((t,e)=>this.createTooltip(t,e)),(t=>{this.resizeObserver&&this.resizeObserver.unobserve(t.dom),t.dom.remove()})),this.above=this.manager.tooltips.map((t=>!!t.above)),this.intersectionObserver="function"==typeof IntersectionObserver?new IntersectionObserver((t=>{Date.now()>this.lastTransaction-50&&t.length>0&&t[t.length-1].intersectionRatio<1&&this.measureSoon()}),{threshold:[1]}):null,this.observeIntersection(),t.win.addEventListener("resize",this.measureSoon=this.measureSoon.bind(this)),this.maybeMeasure()}createContainer(){this.parent?(this.container=document.createElement("div"),this.container.style.position="relative",this.container.className=this.view.themeClasses,this.parent.appendChild(this.container)):this.container=this.view.dom}observeIntersection(){if(this.intersectionObserver){this.intersectionObserver.disconnect();for(let t of this.manager.tooltipViews)this.intersectionObserver.observe(t.dom)}}measureSoon(){this.measureTimeout<0&&(this.measureTimeout=setTimeout((()=>{this.measureTimeout=-1,this.maybeMeasure()}),50))}update(t){t.transactions.length&&(this.lastTransaction=Date.now());let e=this.manager.update(t,this.above);e&&this.observeIntersection();let i=e||t.geometryChanged,n=t.state.facet(Bs);if(n.position!=this.position&&!this.madeAbsolute){this.position=n.position;for(let t of this.manager.tooltipViews)t.dom.style.position=this.position;i=!0}if(n.parent!=this.parent){this.parent&&this.container.remove(),this.parent=n.parent,this.createContainer();for(let t of this.manager.tooltipViews)this.container.appendChild(t.dom);i=!0}else this.parent&&this.view.themeClasses!=this.classes&&(this.classes=this.container.className=this.view.themeClasses);i&&this.maybeMeasure()}createTooltip(t,e){let i=t.create(this.view),n=e?e.dom:null;if(i.dom.classList.add("cm-tooltip"),t.arrow&&!i.dom.querySelector(".cm-tooltip > .cm-tooltip-arrow")){let t=document.createElement("div");t.className="cm-tooltip-arrow",i.dom.appendChild(t)}return i.dom.style.position=this.position,i.dom.style.top=Ls,i.dom.style.left="0px",this.container.insertBefore(i.dom,n),i.mount&&i.mount(this.view),this.resizeObserver&&this.resizeObserver.observe(i.dom),i}destroy(){var t,e,i;this.view.win.removeEventListener("resize",this.measureSoon);for(let e of this.manager.tooltipViews)e.dom.remove(),null===(t=e.destroy)||void 0===t||t.call(e);this.parent&&this.container.remove(),null===(e=this.resizeObserver)||void 0===e||e.disconnect(),null===(i=this.intersectionObserver)||void 0===i||i.disconnect(),clearTimeout(this.measureTimeout)}readMeasure(){let t=this.view.dom.getBoundingClientRect(),e=1,i=1,n=!1;if("fixed"==this.position&&this.manager.tooltipViews.length){let{dom:t}=this.manager.tooltipViews[0];if(Ue.gecko)n=t.offsetParent!=this.container.ownerDocument.body;else if(t.style.top==Ls&&"0px"==t.style.left){let e=t.getBoundingClientRect();n=Math.abs(e.top+1e4)>1||Math.abs(e.left)>1}}if(n||"absolute"==this.position)if(this.parent){let t=this.parent.getBoundingClientRect();t.width&&t.height&&(e=t.width/this.parent.offsetWidth,i=t.height/this.parent.offsetHeight)}else({scaleX:e,scaleY:i}=this.view.viewState);return{editor:t,parent:this.parent?this.container.getBoundingClientRect():t,pos:this.manager.tooltips.map(((t,e)=>{let i=this.manager.tooltipViews[e];return i.getCoords?i.getCoords(t.pos):this.view.coordsAtPos(t.pos)})),size:this.manager.tooltipViews.map((({dom:t})=>t.getBoundingClientRect())),space:this.view.state.facet(Bs).tooltipSpace(this.view),scaleX:e,scaleY:i,makeAbsolute:n}}writeMeasure(t){var e;if(t.makeAbsolute){this.madeAbsolute=!0,this.position="absolute";for(let t of this.manager.tooltipViews)t.dom.style.position="absolute"}let{editor:i,space:n,scaleX:r,scaleY:s}=t,o=[];for(let a=0;a=Math.min(i.bottom,n.bottom)||O.rightMath.min(i.right,n.right)+.1){c.style.top=Ls;continue}let u=l.arrow?h.dom.querySelector(".cm-tooltip-arrow"):null,f=u?7:0,p=d.right-d.left,m=null!==(e=Fs.get(h))&&void 0!==e?e:d.bottom-d.top,g=h.offset||Ks,Q=this.view.textDirection==fi.LTR,b=d.width>n.right-n.left?Q?n.left:n.right-d.width:Q?Math.min(O.left-(u?14:0)+g.x,n.right-p):Math.max(n.left,O.left-p+(u?14:0)-g.x),S=this.above[a];!l.strictSide&&(S?O.top-(d.bottom-d.top)-g.yn.bottom)&&S==n.bottom-O.bottom>O.top-n.top&&(S=this.above[a]=!S);let v=(S?O.top-n.top:n.bottom-O.bottom)-f;if(vb&&t.topw&&(w=S?t.top-m-2-f:t.bottom+f+2);if("absolute"==this.position?(c.style.top=(w-t.parent.top)/s+"px",c.style.left=(b-t.parent.left)/r+"px"):(c.style.top=w/s+"px",c.style.left=b/r+"px"),u){let t=O.left+(Q?g.x:-g.x)-(b+14-7);u.style.left=t/r+"px"}!0!==h.overlap&&o.push({left:b,top:w,right:y,bottom:w+m}),c.classList.toggle("cm-tooltip-above",S),c.classList.toggle("cm-tooltip-below",!S),h.positioned&&h.positioned(t.space)}}maybeMeasure(){if(this.manager.tooltips.length&&(this.view.inView&&this.view.requestMeasure(this.measureReq),this.inView!=this.view.inView&&(this.inView=this.view.inView,!this.inView)))for(let t of this.manager.tooltipViews)t.dom.style.top=Ls}},{eventObservers:{scroll(){this.maybeMeasure()}}}),Js=Ir.baseTheme({".cm-tooltip":{zIndex:100,boxSizing:"border-box"},"&light .cm-tooltip":{border:"1px solid #bbb",backgroundColor:"#f5f5f5"},"&light .cm-tooltip-section:not(:first-child)":{borderTop:"1px solid #bbb"},"&dark .cm-tooltip":{backgroundColor:"#333338",color:"white"},".cm-tooltip-arrow":{height:"7px",width:"14px",position:"absolute",zIndex:-1,overflow:"hidden","&:before, &:after":{content:"''",position:"absolute",width:0,height:0,borderLeft:"7px solid transparent",borderRight:"7px solid transparent"},".cm-tooltip-above &":{bottom:"-7px","&:before":{borderTop:"7px solid #bbb"},"&:after":{borderTop:"7px solid #f5f5f5",bottom:"1px"}},".cm-tooltip-below &":{top:"-7px","&:before":{borderBottom:"7px solid #bbb"},"&:after":{borderBottom:"7px solid #f5f5f5",top:"1px"}}},"&dark .cm-tooltip .cm-tooltip-arrow":{"&:before":{borderTopColor:"#333338",borderBottomColor:"#333338"},"&:after":{borderTopColor:"transparent",borderBottomColor:"transparent"}}}),Ks={x:0,y:0},to=A.define({enables:[Hs,Js]}),eo=A.define({combine:t=>t.reduce(((t,e)=>t.concat(e)),[])});class io{static create(t){return new io(t)}constructor(t){this.view=t,this.mounted=!1,this.dom=document.createElement("div"),this.dom.classList.add("cm-tooltip-hover"),this.manager=new Ns(t,eo,((t,e)=>this.createHostedView(t,e)),(t=>t.dom.remove()))}createHostedView(t,e){let i=t.create(this.view);return i.dom.classList.add("cm-tooltip-section"),this.dom.insertBefore(i.dom,e?e.dom.nextSibling:this.dom.firstChild),this.mounted&&i.mount&&i.mount(this.view),i}mount(t){for(let e of this.manager.tooltipViews)e.mount&&e.mount(t);this.mounted=!0}positioned(t){for(let e of this.manager.tooltipViews)e.positioned&&e.positioned(t)}update(t){this.manager.update(t)}destroy(){var t;for(let e of this.manager.tooltipViews)null===(t=e.destroy)||void 0===t||t.call(e)}passProp(t){let e;for(let i of this.manager.tooltipViews){let n=i[t];if(void 0!==n)if(void 0===e)e=n;else if(e!==n)return}return e}get offset(){return this.passProp("offset")}get getCoords(){return this.passProp("getCoords")}get overlap(){return this.passProp("overlap")}get resize(){return this.passProp("resize")}}const no=to.compute([eo],(t=>{let e=t.facet(eo);return 0===e.length?null:{pos:Math.min(...e.map((t=>t.pos))),end:Math.max(...e.map((t=>{var e;return null!==(e=t.end)&&void 0!==e?e:t.pos}))),create:io.create,above:e[0].above,arrow:e.some((t=>t.arrow))}}));class ro{constructor(t,e,i,n,r){this.view=t,this.source=e,this.field=i,this.setHover=n,this.hoverTime=r,this.hoverTimeout=-1,this.restartTimeout=-1,this.pending=null,this.lastMove={x:0,y:0,target:t.dom,time:0},this.checkHover=this.checkHover.bind(this),t.dom.addEventListener("mouseleave",this.mouseleave=this.mouseleave.bind(this)),t.dom.addEventListener("mousemove",this.mousemove=this.mousemove.bind(this))}update(){this.pending&&(this.pending=null,clearTimeout(this.restartTimeout),this.restartTimeout=setTimeout((()=>this.startHover()),20))}get active(){return this.view.state.field(this.field)}checkHover(){if(this.hoverTimeout=-1,this.active.length)return;let t=Date.now()-this.lastMove.time;ti.bottom||e.xi.right+t.defaultCharacterWidth)return;let s=t.bidiSpans(t.state.doc.lineAt(n)).find((t=>t.from<=n&&t.to>=n)),o=s&&s.dir==fi.RTL?-1:1;r=e.x{this.pending==e&&(this.pending=null,!i||Array.isArray(i)&&!i.length||t.dispatch({effects:this.setHover.of(Array.isArray(i)?i:[i])}))}),(e=>Li(t.state,e,"hover tooltip")))}else!s||Array.isArray(s)&&!s.length||t.dispatch({effects:this.setHover.of(Array.isArray(s)?s:[s])})}get tooltip(){let t=this.view.plugin(Hs),e=t?t.manager.tooltips.findIndex((t=>t.create==io.create)):-1;return e>-1?t.manager.tooltipViews[e]:null}mousemove(t){var e,i;this.lastMove={x:t.clientX,y:t.clientY,target:t.target,time:Date.now()},this.hoverTimeout<0&&(this.hoverTimeout=setTimeout(this.checkHover,this.hoverTime));let{active:n,tooltip:r}=this;if(n.length&&r&&!function(t,e){let i=t.getBoundingClientRect();return e.clientX>=i.left-so&&e.clientX<=i.right+so&&e.clientY>=i.top-so&&e.clientY<=i.bottom+so}(r.dom,t)||this.pending){let{pos:r}=n[0]||this.pending,s=null!==(i=null===(e=n[0])||void 0===e?void 0:e.end)&&void 0!==i?i:r;(r==s?this.view.posAtCoords(this.lastMove)==r:function(t,e,i,n,r,s){let o=t.scrollDOM.getBoundingClientRect(),a=t.documentTop+t.documentPadding.top+t.contentHeight;if(o.left>n||o.rightr||Math.min(o.bottom,a)=e&&l<=i}(this.view,r,s,t.clientX,t.clientY))||(this.view.dispatch({effects:this.setHover.of([])}),this.pending=null)}}mouseleave(t){clearTimeout(this.hoverTimeout),this.hoverTimeout=-1;let{active:e}=this;if(e.length){let{tooltip:e}=this;e&&e.dom.contains(t.relatedTarget)?this.watchTooltipLeave(e.dom):this.view.dispatch({effects:this.setHover.of([])})}}watchTooltipLeave(t){let e=i=>{t.removeEventListener("mouseleave",e),this.active.length&&!this.view.dom.contains(i.relatedTarget)&&this.view.dispatch({effects:this.setHover.of([])})};t.addEventListener("mouseleave",e)}destroy(){clearTimeout(this.hoverTimeout),this.view.dom.removeEventListener("mouseleave",this.mouseleave),this.view.dom.removeEventListener("mousemove",this.mousemove)}}const so=4;function oo(t,e={}){let i=dt.define(),n=j.define({create:()=>[],update(t,n){if(t.length&&(e.hideOnChange&&(n.docChanged||n.selection)?t=[]:e.hideOn&&(t=t.filter((t=>!e.hideOn(n,t)))),n.docChanged)){let e=[];for(let i of t){let t=n.changes.mapPos(i.pos,-1,y.TrackDel);if(null!=t){let r=Object.assign(Object.create(null),i);r.pos=t,null!=r.end&&(r.end=n.changes.mapPos(r.end)),e.push(r)}}t=e}for(let e of n.effects)e.is(i)&&(t=e.value),e.is(lo)&&(t=[]);return t},provide:t=>eo.from(t)});return[n,Fi.define((r=>new ro(r,t,n,i,e.hoverTime||300))),no]}function ao(t,e){let i=t.plugin(Hs);if(!i)return null;let n=i.manager.tooltips.indexOf(e);return n<0?null:i.manager.tooltipViews[n]}const lo=dt.define(),ho=A.define({combine(t){let e,i;for(let n of t)e=e||n.topContainer,i=i||n.bottomContainer;return{topContainer:e,bottomContainer:i}}});function co(t,e){let i=t.plugin(Oo),n=i?i.specs.indexOf(e):-1;return n>-1?i.panels[n]:null}const Oo=Fi.fromClass(class{constructor(t){this.input=t.state.facet(po),this.specs=this.input.filter((t=>t)),this.panels=this.specs.map((e=>e(t)));let e=t.state.facet(ho);this.top=new uo(t,!0,e.topContainer),this.bottom=new uo(t,!1,e.bottomContainer),this.top.sync(this.panels.filter((t=>t.top))),this.bottom.sync(this.panels.filter((t=>!t.top)));for(let t of this.panels)t.dom.classList.add("cm-panel"),t.mount&&t.mount()}update(t){let e=t.state.facet(ho);this.top.container!=e.topContainer&&(this.top.sync([]),this.top=new uo(t.view,!0,e.topContainer)),this.bottom.container!=e.bottomContainer&&(this.bottom.sync([]),this.bottom=new uo(t.view,!1,e.bottomContainer)),this.top.syncClasses(),this.bottom.syncClasses();let i=t.state.facet(po);if(i!=this.input){let e=i.filter((t=>t)),n=[],r=[],s=[],o=[];for(let i of e){let e,a=this.specs.indexOf(i);a<0?(e=i(t.view),o.push(e)):(e=this.panels[a],e.update&&e.update(t)),n.push(e),(e.top?r:s).push(e)}this.specs=e,this.panels=n,this.top.sync(r),this.bottom.sync(s);for(let t of o)t.dom.classList.add("cm-panel"),t.mount&&t.mount()}else for(let e of this.panels)e.update&&e.update(t)}destroy(){this.top.sync([]),this.bottom.sync([])}},{provide:t=>Ir.scrollMargins.of((e=>{let i=e.plugin(t);return i&&{top:i.top.scrollMargin(),bottom:i.bottom.scrollMargin()}}))});class uo{constructor(t,e,i){this.view=t,this.top=e,this.container=i,this.dom=void 0,this.classes="",this.panels=[],this.syncClasses()}sync(t){for(let e of this.panels)e.destroy&&t.indexOf(e)<0&&e.destroy();this.panels=t,this.syncDOM()}syncDOM(){if(0==this.panels.length)return void(this.dom&&(this.dom.remove(),this.dom=void 0));if(!this.dom){this.dom=document.createElement("div"),this.dom.className=this.top?"cm-panels cm-panels-top":"cm-panels cm-panels-bottom",this.dom.style[this.top?"top":"bottom"]="0";let t=this.container||this.view.dom;t.insertBefore(this.dom,this.top?t.firstChild:null)}let t=this.dom.firstChild;for(let e of this.panels)if(e.dom.parentNode==this.dom){for(;t!=e.dom;)t=fo(t);t=t.nextSibling}else this.dom.insertBefore(e.dom,t);for(;t;)t=fo(t)}scrollMargin(){return!this.dom||this.container?0:Math.max(0,this.top?this.dom.getBoundingClientRect().bottom-Math.max(0,this.view.scrollDOM.getBoundingClientRect().top):Math.min(innerHeight,this.view.scrollDOM.getBoundingClientRect().bottom)-this.dom.getBoundingClientRect().top)}syncClasses(){if(this.container&&this.classes!=this.view.themeClasses){for(let t of this.classes.split(" "))t&&this.container.classList.remove(t);for(let t of(this.classes=this.view.themeClasses).split(" "))t&&this.container.classList.add(t)}}}function fo(t){let e=t.nextSibling;return t.remove(),e}const po=A.define({enables:Oo});class mo extends Pt{compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}eq(t){return!1}destroy(t){}}mo.prototype.elementClass="",mo.prototype.toDOM=void 0,mo.prototype.mapMode=y.TrackBefore,mo.prototype.startSide=mo.prototype.endSide=-1,mo.prototype.point=!0;const go=A.define(),Qo={class:"",renderEmptyElements:!1,elementStyle:"",markers:()=>Rt.empty,lineMarker:()=>null,widgetMarker:()=>null,lineMarkerChange:null,initialSpacer:null,updateSpacer:null,domEventHandlers:{}},bo=A.define();function So(t){return[wo(),bo.of(Object.assign(Object.assign({},Qo),t))]}const vo=A.define({combine:t=>t.some((t=>t))});function wo(t){return[yo]}const yo=Fi.fromClass(class{constructor(t){this.view=t,this.prevViewport=t.viewport,this.dom=document.createElement("div"),this.dom.className="cm-gutters",this.dom.setAttribute("aria-hidden","true"),this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.gutters=t.state.facet(bo).map((e=>new $o(t,e)));for(let t of this.gutters)this.dom.appendChild(t.dom);this.fixed=!t.state.facet(vo),this.fixed&&(this.dom.style.position="sticky"),this.syncGutters(!1),t.scrollDOM.insertBefore(this.dom,t.contentDOM)}update(t){if(this.updateGutters(t)){let e=this.prevViewport,i=t.view.viewport,n=Math.min(e.to,i.to)-Math.max(e.from,i.from);this.syncGutters(n<.8*(i.to-i.from))}t.geometryChanged&&(this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+"px"),this.view.state.facet(vo)!=!this.fixed&&(this.fixed=!this.fixed,this.dom.style.position=this.fixed?"sticky":""),this.prevViewport=t.view.viewport}syncGutters(t){let e=this.dom.nextSibling;t&&this.dom.remove();let i=Rt.iter(this.view.state.facet(go),this.view.viewport.from),n=[],r=this.gutters.map((t=>new Po(t,this.view.viewport,-this.view.documentPadding.top)));for(let t of this.view.viewportLineBlocks)if(n.length&&(n=[]),Array.isArray(t.type)){let e=!0;for(let s of t.type)if(s.type==ri.Text&&e){ko(i,n,s.from);for(let t of r)t.line(this.view,s,n);e=!1}else if(s.widget)for(let t of r)t.widget(this.view,s)}else if(t.type==ri.Text){ko(i,n,t.from);for(let e of r)e.line(this.view,t,n)}else if(t.widget)for(let e of r)e.widget(this.view,t);for(let t of r)t.finish();t&&this.view.scrollDOM.insertBefore(this.dom,e)}updateGutters(t){let e=t.startState.facet(bo),i=t.state.facet(bo),n=t.docChanged||t.heightChanged||t.viewportChanged||!Rt.eq(t.startState.facet(go),t.state.facet(go),t.view.viewport.from,t.view.viewport.to);if(e==i)for(let e of this.gutters)e.update(t)&&(n=!0);else{n=!0;let r=[];for(let n of i){let i=e.indexOf(n);i<0?r.push(new $o(this.view,n)):(this.gutters[i].update(t),r.push(this.gutters[i]))}for(let t of this.gutters)t.dom.remove(),r.indexOf(t)<0&&t.destroy();for(let t of r)this.dom.appendChild(t.dom);this.gutters=r}return n}destroy(){for(let t of this.gutters)t.destroy();this.dom.remove()}},{provide:t=>Ir.scrollMargins.of((e=>{let i=e.plugin(t);return i&&0!=i.gutters.length&&i.fixed?e.textDirection==fi.LTR?{left:i.dom.offsetWidth*e.scaleX}:{right:i.dom.offsetWidth*e.scaleX}:null}))});function xo(t){return Array.isArray(t)?t:[t]}function ko(t,e,i){for(;t.value&&t.from<=i;)t.from==i&&e.push(t.value),t.next()}class Po{constructor(t,e,i){this.gutter=t,this.height=i,this.i=0,this.cursor=Rt.iter(t.markers,e.from)}addElement(t,e,i){let{gutter:n}=this,r=(e.top-this.height)/t.scaleY,s=e.height/t.scaleY;if(this.i==n.elements.length){let e=new To(t,s,r,i);n.elements.push(e),n.dom.appendChild(e.dom)}else n.elements[this.i].update(t,s,r,i);this.height=e.bottom,this.i++}line(t,e,i){let n=[];ko(this.cursor,n,e.from),i.length&&(n=n.concat(i));let r=this.gutter.config.lineMarker(t,e,n);r&&n.unshift(r);let s=this.gutter;(0!=n.length||s.config.renderEmptyElements)&&this.addElement(t,e,n)}widget(t,e){let i=this.gutter.config.widgetMarker(t,e.widget,e);i&&this.addElement(t,e,[i])}finish(){let t=this.gutter;for(;t.elements.length>this.i;){let e=t.elements.pop();t.dom.removeChild(e.dom),e.destroy()}}}class $o{constructor(t,e){this.view=t,this.config=e,this.elements=[],this.spacer=null,this.dom=document.createElement("div"),this.dom.className="cm-gutter"+(this.config.class?" "+this.config.class:"");for(let i in e.domEventHandlers)this.dom.addEventListener(i,(n=>{let r,s=n.target;if(s!=this.dom&&this.dom.contains(s)){for(;s.parentNode!=this.dom;)s=s.parentNode;let t=s.getBoundingClientRect();r=(t.top+t.bottom)/2}else r=n.clientY;let o=t.lineBlockAtHeight(r-t.documentTop);e.domEventHandlers[i](t,o,n)&&n.preventDefault()}));this.markers=xo(e.markers(t)),e.initialSpacer&&(this.spacer=new To(t,0,0,[e.initialSpacer(t)]),this.dom.appendChild(this.spacer.dom),this.spacer.dom.style.cssText+="visibility: hidden; pointer-events: none")}update(t){let e=this.markers;if(this.markers=xo(this.config.markers(t.view)),this.spacer&&this.config.updateSpacer){let e=this.config.updateSpacer(this.spacer.markers[0],t);e!=this.spacer.markers[0]&&this.spacer.update(t.view,0,0,[e])}let i=t.view.viewport;return!Rt.eq(this.markers,e,i.from,i.to)||!!this.config.lineMarkerChange&&this.config.lineMarkerChange(t)}destroy(){for(let t of this.elements)t.destroy()}}class To{constructor(t,e,i,n){this.height=-1,this.above=0,this.markers=[],this.dom=document.createElement("div"),this.dom.className="cm-gutterElement",this.update(t,e,i,n)}update(t,e,i,n){this.height!=e&&(this.height=e,this.dom.style.height=e+"px"),this.above!=i&&(this.dom.style.marginTop=(this.above=i)?i+"px":""),function(t,e){if(t.length!=e.length)return!1;for(let i=0;ikt(t,{formatNumber:String,domEventHandlers:{}},{domEventHandlers(t,e){let i=Object.assign({},t);for(let t in e){let n=i[t],r=e[t];i[t]=n?(t,e,i)=>n(t,e,i)||r(t,e,i):r}return i}})});class Zo extends mo{constructor(t){super(),this.number=t}eq(t){return this.number==t.number}toDOM(){return document.createTextNode(this.number)}}function Xo(t,e){return t.state.facet(Ro).formatNumber(e,t.state)}const Co=bo.compute([Ro],(t=>({class:"cm-lineNumbers",renderEmptyElements:!1,markers:t=>t.state.facet(_o),lineMarker:(t,e,i)=>i.some((t=>t.toDOM))?null:new Zo(Xo(t,t.state.doc.lineAt(e.from).number)),widgetMarker:()=>null,lineMarkerChange:t=>t.startState.facet(Ro)!=t.state.facet(Ro),initialSpacer:t=>new Zo(Xo(t,Wo(t.state.doc.lines))),updateSpacer(t,e){let i=Xo(e.view,Wo(e.view.state.doc.lines));return i==t.number?t:new Zo(i)},domEventHandlers:t.facet(Ro).domEventHandlers})));function qo(t={}){return[Ro.of(t),wo(),Co]}function Wo(t){let e=9;for(;e{let e=[],i=-1;for(let n of t.selection.ranges){let r=t.doc.lineAt(n.head).from;r>i&&(i=r,e.push(Ao.range(r)))}return Rt.of(e)}));const Vo=1024;let Mo=0;class Eo{constructor(t,e){this.from=t,this.to=e}}class Yo{constructor(t={}){this.id=Mo++,this.perNode=!!t.perNode,this.deserialize=t.deserialize||(()=>{throw new Error("This node type doesn't define a deserialize function")})}add(t){if(this.perNode)throw new RangeError("Can't add per-node props to node types");return"function"!=typeof t&&(t=Do.match(t)),e=>{let i=t(e);return void 0===i?null:[this,i]}}}Yo.closedBy=new Yo({deserialize:t=>t.split(" ")}),Yo.openedBy=new Yo({deserialize:t=>t.split(" ")}),Yo.group=new Yo({deserialize:t=>t.split(" ")}),Yo.isolate=new Yo({deserialize:t=>{if(t&&"rtl"!=t&&"ltr"!=t&&"auto"!=t)throw new RangeError("Invalid value for isolate: "+t);return t||"auto"}}),Yo.contextHash=new Yo({perNode:!0}),Yo.lookAhead=new Yo({perNode:!0}),Yo.mounted=new Yo({perNode:!0});class Uo{constructor(t,e,i){this.tree=t,this.overlay=e,this.parser=i}static get(t){return t&&t.props&&t.props[Yo.mounted.id]}}const jo=Object.create(null);class Do{constructor(t,e,i,n=0){this.name=t,this.props=e,this.id=i,this.flags=n}static define(t){let e=t.props&&t.props.length?Object.create(null):jo,i=(t.top?1:0)|(t.skipped?2:0)|(t.error?4:0)|(null==t.name?8:0),n=new Do(t.name||"",e,t.id,i);if(t.props)for(let i of t.props)if(Array.isArray(i)||(i=i(n)),i){if(i[0].perNode)throw new RangeError("Can't store a per-node prop on a node type");e[i[0].id]=i[1]}return n}prop(t){return this.props[t.id]}get isTop(){return(1&this.flags)>0}get isSkipped(){return(2&this.flags)>0}get isError(){return(4&this.flags)>0}get isAnonymous(){return(8&this.flags)>0}is(t){if("string"==typeof t){if(this.name==t)return!0;let e=this.prop(Yo.group);return!!e&&e.indexOf(t)>-1}return this.id==t}static match(t){let e=Object.create(null);for(let i in t)for(let n of i.split(" "))e[n]=t[i];return t=>{for(let i=t.prop(Yo.group),n=-1;n<(i?i.length:0);n++){let r=e[n<0?t.name:i[n]];if(r)return r}}}}Do.none=new Do("",Object.create(null),0,8);class Go{constructor(t){this.types=t;for(let e=0;e=e){let o=new ea(s.tree,s.overlay[0].from+t.from,-1,t);(r||(r=[n])).push(Ko(o,e,i,!1))}}return r?oa(r):n}(this,t,e)}iterate(t){let{enter:e,leave:i,from:n=0,to:r=this.length}=t,s=t.mode||0,o=(s&Io.IncludeAnonymous)>0;for(let t=this.cursor(s|Io.IncludeAnonymous);;){let s=!1;if(t.from<=r&&t.to>=n&&(!o&&t.type.isAnonymous||!1!==e(t))){if(t.firstChild())continue;s=!0}for(;s&&i&&(o||!t.type.isAnonymous)&&i(t),!t.nextSibling();){if(!t.parent())return;s=!0}}}prop(t){return t.perNode?this.props?this.props[t.id]:void 0:this.type.prop(t)}get propValues(){let t=[];if(this.props)for(let e in this.props)t.push([+e,this.props[e]]);return t}balance(t={}){return this.children.length<=8?this:da(Do.none,this.children,this.positions,0,this.children.length,0,this.length,((t,e,i)=>new Bo(this.type,t,e,i,this.propValues)),t.makeTree||((t,e,i)=>new Bo(Do.none,t,e,i)))}static build(t){return function(t){var e;let{buffer:i,nodeSet:n,maxBufferLength:r=Vo,reused:s=[],minRepeatType:o=n.types.length}=t,a=Array.isArray(i)?new Fo(i,i.length):i,l=n.types,h=0,c=0;function O(t,e,i,Q,b,S){let{id:v,start:w,end:y,size:x}=a,k=c;for(;x<0;){if(a.next(),-1==x){let e=s[v];return i.push(e),void Q.push(w-t)}if(-3==x)return void(h=v);if(-4==x)return void(c=v);throw new RangeError(`Unrecognized record size: ${x}`)}let P,$,T=l[v],_=w-t;if(y-w<=r&&($=m(a.pos-e,b))){let e=new Uint16Array($.size-$.skip),i=a.pos-$.size,r=e.length;for(;a.pos>i;)r=g($.start,e,r);P=new Ho(e,y-$.start,n),_=$.start-t}else{let t=a.pos-x;a.next();let e=[],i=[],n=v>=o?v:-1,s=0,l=y;for(;a.pos>t;)n>=0&&a.id==n&&a.size>=0?(a.end<=l-r&&(f(e,i,w,s,a.end,l,n,k),s=e.length,l=a.end),a.next()):S>2500?d(w,t,e,i):O(w,t,e,i,n,S+1);if(n>=0&&s>0&&s-1&&s>0){let t=u(T);P=da(T,e,i,0,e.length,0,y-w,t,t)}else P=p(T,e,i,y-w,k-y)}i.push(P),Q.push(_)}function d(t,e,i,s){let o=[],l=0,h=-1;for(;a.pos>e;){let{id:t,start:e,end:i,size:n}=a;if(n>4)a.next();else{if(h>-1&&e=0;t-=3)e[i++]=o[t],e[i++]=o[t+1]-r,e[i++]=o[t+2]-r,e[i++]=i;i.push(new Ho(e,o[2]-r,n)),s.push(r-t)}}function u(t){return(e,i,n)=>{let r,s,o=0,a=e.length-1;if(a>=0&&(r=e[a])instanceof Bo){if(!a&&r.type==t&&r.length==n)return r;(s=r.prop(Yo.lookAhead))&&(o=i[a]+r.length+s)}return p(t,e,i,n,o)}}function f(t,e,i,r,s,o,a,l){let h=[],c=[];for(;t.length>r;)h.push(t.pop()),c.push(e.pop()+i-s);t.push(p(n.types[a],h,c,o-s,l-o)),e.push(s-i)}function p(t,e,i,n,r=0,s){if(h){let t=[Yo.contextHash,h];s=s?[t].concat(s):[t]}if(r>25){let t=[Yo.lookAhead,r];s=s?[t].concat(s):[t]}return new Bo(t,e,i,n,s)}function m(t,e){let i=a.fork(),n=0,s=0,l=0,h=i.end-r,c={size:0,start:0,skip:0};t:for(let r=i.pos-t;i.pos>r;){let t=i.size;if(i.id==e&&t>=0){c.size=n,c.start=s,c.skip=l,l+=4,n+=4,i.next();continue}let a=i.pos-t;if(t<0||a=o?4:0,d=i.start;for(i.next();i.pos>a;){if(i.size<0){if(-3!=i.size)break t;O+=4}else i.id>=o&&(O+=4);i.next()}s=d,n+=t,l+=O}return(e<0||n==t)&&(c.size=n,c.start=s,c.skip=l),c.size>4?c:void 0}function g(t,e,i){let{id:n,start:r,end:s,size:l}=a;if(a.next(),l>=0&&n4){let n=a.pos-(l-4);for(;a.pos>n;)i=g(t,e,i)}e[--i]=o,e[--i]=s-t,e[--i]=r-t,e[--i]=n}else-3==l?h=n:-4==l&&(c=n);return i}let Q=[],b=[];for(;a.pos>0;)O(t.start||0,t.bufferStart||0,Q,b,-1,0);let S=null!==(e=t.length)&&void 0!==e?e:Q.length?b[0]+Q[0].length:0;return new Bo(l[t.topID],Q.reverse(),b.reverse(),S)}(t)}}Bo.empty=new Bo(Do.none,[],[],0);class Fo{constructor(t,e){this.buffer=t,this.index=e}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}get pos(){return this.index}next(){this.index-=4}fork(){return new Fo(this.buffer,this.index)}}class Ho{constructor(t,e,i){this.buffer=t,this.length=e,this.set=i}get type(){return Do.none}toString(){let t=[];for(let e=0;e0));a=s[a+3]);return o}slice(t,e,i){let n=this.buffer,r=new Uint16Array(e-t),s=0;for(let o=t,a=0;o=e&&ie;case 1:return i<=e&&n>e;case 2:return n>e;case 4:return!0}}function Ko(t,e,i,n){for(var r;t.from==t.to||(i<1?t.from>=e:t.from>e)||(i>-1?t.to<=e:t.to0?o.length:-1;t!=l;t+=e){let l=o[t],h=a[t]+s.from;if(Jo(n,i,h,h+l.length))if(l instanceof Ho){if(r&Io.ExcludeBuffers)continue;let o=l.findChild(0,l.buffer.length,e,i-h,n);if(o>-1)return new sa(new ra(s,l,t,h),null,o)}else if(r&Io.IncludeAnonymous||!l.type.isAnonymous||ha(l)){let o;if(!(r&Io.IgnoreMounts)&&(o=Uo.get(l))&&!o.overlay)return new ea(o.tree,h,t,s);let a=new ea(l,h,t,s);return r&Io.IncludeAnonymous||!a.type.isAnonymous?a:a.nextChild(e<0?l.children.length-1:0,e,i,n)}}if(r&Io.IncludeAnonymous||!s.type.isAnonymous)return null;if(t=s.index>=0?s.index+e:e<0?-1:s._parent._tree.children.length,s=s._parent,!s)return null}}get firstChild(){return this.nextChild(0,1,0,4)}get lastChild(){return this.nextChild(this._tree.children.length-1,-1,0,4)}childAfter(t){return this.nextChild(0,1,t,2)}childBefore(t){return this.nextChild(this._tree.children.length-1,-1,t,-2)}enter(t,e,i=0){let n;if(!(i&Io.IgnoreOverlays)&&(n=Uo.get(this._tree))&&n.overlay){let i=t-this.from;for(let{from:t,to:r}of n.overlay)if((e>0?t<=i:t=i:r>i))return new ea(n.tree,n.overlay[0].from+this.from,-1,this)}return this.nextChild(0,1,t,e,i)}nextSignificantParent(){let t=this;for(;t.type.isAnonymous&&t._parent;)t=t._parent;return t}get parent(){return this._parent?this._parent.nextSignificantParent():null}get nextSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index+1,1,0,4):null}get prevSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index-1,-1,0,4):null}get tree(){return this._tree}toTree(){return this._tree}toString(){return this._tree.toString()}}function ia(t,e,i,n){let r=t.cursor(),s=[];if(!r.firstChild())return s;if(null!=i)for(let t=!1;!t;)if(t=r.type.is(i),!r.nextSibling())return s;for(;;){if(null!=n&&r.type.is(n))return s;if(r.type.is(e)&&s.push(r.node),!r.nextSibling())return null==n?s:[]}}function na(t,e,i=e.length-1){for(let n=t.parent;i>=0;n=n.parent){if(!n)return!1;if(!n.type.isAnonymous){if(e[i]&&e[i]!=n.name)return!1;i--}}return!0}class ra{constructor(t,e,i,n){this.parent=t,this.buffer=e,this.index=i,this.start=n}}class sa extends ta{get name(){return this.type.name}get from(){return this.context.start+this.context.buffer.buffer[this.index+1]}get to(){return this.context.start+this.context.buffer.buffer[this.index+2]}constructor(t,e,i){super(),this.context=t,this._parent=e,this.index=i,this.type=t.buffer.set.types[t.buffer.buffer[i]]}child(t,e,i){let{buffer:n}=this.context,r=n.findChild(this.index+4,n.buffer[this.index+3],t,e-this.context.start,i);return r<0?null:new sa(this.context,this,r)}get firstChild(){return this.child(1,0,4)}get lastChild(){return this.child(-1,0,4)}childAfter(t){return this.child(1,t,2)}childBefore(t){return this.child(-1,t,-2)}enter(t,e,i=0){if(i&Io.ExcludeBuffers)return null;let{buffer:n}=this.context,r=n.findChild(this.index+4,n.buffer[this.index+3],e>0?1:-1,t-this.context.start,e);return r<0?null:new sa(this.context,this,r)}get parent(){return this._parent||this.context.parent.nextSignificantParent()}externalSibling(t){return this._parent?null:this.context.parent.nextChild(this.context.index+t,t,0,4)}get nextSibling(){let{buffer:t}=this.context,e=t.buffer[this.index+3];return e<(this._parent?t.buffer[this._parent.index+3]:t.buffer.length)?new sa(this.context,this._parent,e):this.externalSibling(1)}get prevSibling(){let{buffer:t}=this.context,e=this._parent?this._parent.index+4:0;return this.index==e?this.externalSibling(-1):new sa(this.context,this._parent,t.findChild(e,this.index,-1,0,4))}get tree(){return null}toTree(){let t=[],e=[],{buffer:i}=this.context,n=this.index+4,r=i.buffer[this.index+3];if(r>n){let s=i.buffer[this.index+1];t.push(i.slice(n,r,s)),e.push(0)}return new Bo(this.type,t,e,this.to-this.from)}toString(){return this.context.buffer.childString(this.index)}}function oa(t){if(!t.length)return null;let e=0,i=t[0];for(let n=1;ni.from||r.to0){if(this.index-1)for(let n=e+t,r=t<0?-1:i._tree.children.length;n!=r;n+=t){let t=i._tree.children[n];if(this.mode&Io.IncludeAnonymous||t instanceof Ho||!t.type.isAnonymous||ha(t))return!1}return!0}move(t,e){if(e&&this.enterChild(t,0,4))return!0;for(;;){if(this.sibling(t))return!0;if(this.atLastNode(t)||!this.parent())return!1}}next(t=!0){return this.move(1,t)}prev(t=!0){return this.move(-1,t)}moveTo(t,e=0){for(;(this.from==this.to||(e<1?this.from>=t:this.from>t)||(e>-1?this.to<=t:this.to=0;){for(let s=t;s;s=s._parent)if(s.index==n){if(n==this.index)return s;e=s,i=r+1;break t}n=this.stack[--r]}for(let t=i;t=0;r--){if(r<0)return na(this.node,t,n);let s=i[e.buffer[this.stack[r]]];if(!s.isAnonymous){if(t[n]&&t[n]!=s.name)return!1;n--}}return!0}}function ha(t){return t.children.some((t=>t instanceof Ho||!t.type.isAnonymous||ha(t)))}const ca=new WeakMap;function Oa(t,e){if(!t.isAnonymous||e instanceof Ho||e.type!=t)return 1;let i=ca.get(e);if(null==i){i=1;for(let n of e.children){if(n.type!=t||!(n instanceof Bo)){i=1;break}i+=Oa(t,n)}ca.set(e,i)}return i}function da(t,e,i,n,r,s,o,a,l){let h=0;for(let i=n;i=c)break;f+=e}if(h==r+1){if(f>c){let t=i[r];e(t.children,t.positions,0,t.children.length,n[r]+a);continue}O.push(i[r])}else{let e=n[h-1]+i[h-1].length-u;O.push(da(t,i,n,r,h,u,e,null,l))}d.push(u+a-s)}}(e,i,n,r,0),(a||l)(O,d,o)}class ua{constructor(){this.map=new WeakMap}setBuffer(t,e,i){let n=this.map.get(t);n||this.map.set(t,n=new Map),n.set(e,i)}getBuffer(t,e){let i=this.map.get(t);return i&&i.get(e)}set(t,e){t instanceof sa?this.setBuffer(t.context.buffer,t.index,e):t instanceof ea&&this.map.set(t.tree,e)}get(t){return t instanceof sa?this.getBuffer(t.context.buffer,t.index):t instanceof ea?this.map.get(t.tree):void 0}cursorSet(t,e){t.buffer?this.setBuffer(t.buffer.buffer,t.index,e):this.map.set(t.tree,e)}cursorGet(t){return t.buffer?this.getBuffer(t.buffer.buffer,t.index):this.map.get(t.tree)}}class fa{constructor(t,e,i,n,r=!1,s=!1){this.from=t,this.to=e,this.tree=i,this.offset=n,this.open=(r?1:0)|(s?2:0)}get openStart(){return(1&this.open)>0}get openEnd(){return(2&this.open)>0}static addTree(t,e=[],i=!1){let n=[new fa(0,t.length,t,0,!1,i)];for(let i of e)i.to>t.length&&n.push(i);return n}static applyChanges(t,e,i=128){if(!e.length)return t;let n=[],r=1,s=t.length?t[0]:null;for(let o=0,a=0,l=0;;o++){let h=o=i)for(;s&&s.from=e.from||c<=e.to||l){let t=Math.max(e.from,a)-l,i=Math.min(e.to,c)-l;e=t>=i?null:new fa(t,i,e.tree,e.offset+l,o>0,!!h)}if(e&&n.push(e),s.to>c)break;s=rnew Eo(t.from,t.to))):[new Eo(0,0)]:[new Eo(0,t.length)],this.createParse(t,e||[],i)}parse(t,e,i){let n=this.startParse(t,e,i);for(;;){let t=n.advance();if(t)return t}}}class ma{constructor(t){this.string=t}get length(){return this.string.length}chunk(t){return this.string.slice(t)}get lineChunks(){return!1}read(t,e){return this.string.slice(t,e)}}function ga(t){return(e,i,n,r)=>new wa(e,t,i,n,r)}class Qa{constructor(t,e,i,n,r){this.parser=t,this.parse=e,this.overlay=i,this.target=n,this.from=r}}function ba(t){if(!t.length||t.some((t=>t.from>=t.to)))throw new RangeError("Invalid inner parse ranges given: "+JSON.stringify(t))}class Sa{constructor(t,e,i,n,r,s,o){this.parser=t,this.predicate=e,this.mounts=i,this.index=n,this.start=r,this.target=s,this.prev=o,this.depth=0,this.ranges=[]}}const va=new Yo({perNode:!0});class wa{constructor(t,e,i,n,r){this.nest=e,this.input=i,this.fragments=n,this.ranges=r,this.inner=[],this.innerDone=0,this.baseTree=null,this.stoppedAt=null,this.baseParse=t}advance(){if(this.baseParse){let t=this.baseParse.advance();if(!t)return null;if(this.baseParse=null,this.baseTree=t,this.startInner(),null!=this.stoppedAt)for(let t of this.inner)t.parse.stopAt(this.stoppedAt)}if(this.innerDone==this.inner.length){let t=this.baseTree;return null!=this.stoppedAt&&(t=new Bo(t.type,t.children,t.positions,t.length,t.propValues.concat([[va,this.stoppedAt]]))),t}let t=this.inner[this.innerDone],e=t.parse.advance();if(e){this.innerDone++;let i=Object.assign(Object.create(null),t.target.props);i[Yo.mounted.id]=new Uo(e,t.overlay,t.parser),t.target.props=i}return null}get parsedPos(){if(this.baseParse)return 0;let t=this.input.length;for(let e=this.innerDone;e=this.stoppedAt)a=!1;else if(t.hasNode(n)){if(e){let t=e.mounts.find((t=>t.frag.from<=n.from&&t.frag.to>=n.to&&t.mount.overlay));if(t)for(let i of t.mount.overlay){let r=i.from+t.pos,s=i.to+t.pos;r>=n.from&&s<=n.to&&!e.ranges.some((t=>t.fromr))&&e.ranges.push({from:r,to:s})}}a=!1}else if(i&&(s=ya(i.ranges,n.from,n.to)))a=2!=s;else if(!n.type.isAnonymous&&(r=this.nest(n,this.input))&&(n.fromnew Eo(t.from-n.from,t.to-n.from))):null,n.tree,t.length?t[0].from:n.from)),r.overlay?t.length&&(i={ranges:t,depth:0,prev:i}):a=!1}}else e&&(o=e.predicate(n))&&(!0===o&&(o=new Eo(n.from,n.to)),o.fromnew Eo(t.from-e.start,t.to-e.start))),e.target,t[0].from))),e=e.prev}i&&! --i.depth&&(i=i.prev)}}}}function ya(t,e,i){for(let n of t){if(n.from>=i)break;if(n.to>e)return n.from<=e&&n.to>=i?2:1}return 0}function xa(t,e,i,n,r,s){if(e=t&&e.enter(i,1,Io.IgnoreOverlays|Io.ExcludeBuffers)||e.next(!1)||(this.done=!0)}hasNode(t){if(this.moveTo(t.from),!this.done&&this.cursor.from+this.offset==t.from&&this.cursor.tree)for(let e=this.cursor.tree;;){if(e==t.tree)return!0;if(!(e.children.length&&0==e.positions[0]&&e.children[0]instanceof Bo))break;e=e.children[0]}return!1}}let $a=class{constructor(t){var e;if(this.fragments=t,this.curTo=0,this.fragI=0,t.length){let i=this.curFrag=t[0];this.curTo=null!==(e=i.tree.prop(va))&&void 0!==e?e:i.to,this.inner=new Pa(i.tree,-i.offset)}else this.curFrag=this.inner=null}hasNode(t){for(;this.curFrag&&t.from>=this.curTo;)this.nextFrag();return this.curFrag&&this.curFrag.from<=t.from&&this.curTo>=t.to&&this.inner.hasNode(t)}nextFrag(){var t;if(this.fragI++,this.fragI==this.fragments.length)this.curFrag=this.inner=null;else{let e=this.curFrag=this.fragments[this.fragI];this.curTo=null!==(t=e.tree.prop(va))&&void 0!==t?t:e.to,this.inner=new Pa(e.tree,-e.offset)}}findMounts(t,e){var i;let n=[];if(this.inner){this.inner.cursor.moveTo(t,1);for(let t=this.inner.cursor.node;t;t=t.parent){let r=null===(i=t.tree)||void 0===i?void 0:i.prop(Yo.mounted);if(r&&r.parser==e)for(let e=this.fragI;e=t.to)break;i.tree==this.curFrag.tree&&n.push({frag:i,pos:t.from-i.offset,mount:r})}}}return n}};function Ta(t,e){let i=null,n=e;for(let r=1,s=0;r=a)break;t.to<=o||(i||(n=i=e.slice()),t.froma&&i.splice(s+1,0,new Eo(a,t.to))):t.to>a?i[s--]=new Eo(a,t.to):i.splice(s--,1))}}return n}function _a(t,e,i,n){let r=0,s=0,o=!1,a=!1,l=-1e9,h=[];for(;;){let c=r==t.length?1e9:o?t[r].to:t[r].from,O=s==e.length?1e9:a?e[s].to:e[s].from;if(o!=a){let t=Math.max(l,i),e=Math.min(c,O,n);tnew Eo(t.from+n,t.to+n))),h=_a(e,o,a,l);for(let e=0,n=a;;e++){let o=e==h.length,a=o?l:h[e].from;if(a>n&&i.push(new fa(n,a,r.tree,-t,s.from>=n||s.openStart,s.to<=a||s.openEnd)),o)break;n=h[e].to}}else i.push(new fa(a,l,r.tree,-t,s.from>=t||s.openStart,s.to<=o||s.openEnd))}return i}let Za=0;class Xa{constructor(t,e,i){this.set=t,this.base=e,this.modified=i,this.id=Za++}static define(t){if(null==t?void 0:t.base)throw new Error("Can not derive from a modified tag");let e=new Xa([],null,[]);if(e.set.push(e),t)for(let i of t.set)e.set.push(i);return e}static defineModifier(){let t=new qa;return e=>e.modified.indexOf(t)>-1?e:qa.get(e.base||e,e.modified.concat(t).sort(((t,e)=>t.id-e.id)))}}let Ca=0;class qa{constructor(){this.instances=[],this.id=Ca++}static get(t,e){if(!e.length)return t;let i=e[0].instances.find((i=>i.base==t&&function(t,e){return t.length==e.length&&t.every(((t,i)=>t==e[i]))}(e,i.modified)));if(i)return i;let n=[],r=new Xa(n,t,e);for(let t of e)t.instances.push(r);let s=function(t){let e=[[]];for(let i=0;ie.length-t.length))}(e);for(let e of t.set)if(!e.modified.length)for(let t of s)n.push(qa.get(e,t));return r}}function Wa(t){let e=Object.create(null);for(let i in t){let n=t[i];Array.isArray(n)||(n=[n]);for(let t of i.split(" "))if(t){let i=[],r=2,s=t;for(let e=0;;){if("..."==s&&e>0&&e+3==t.length){r=1;break}let n=/^"(?:[^"\\]|\\.)*?"|[^\/!]+/.exec(s);if(!n)throw new RangeError("Invalid path: "+t);if(i.push("*"==n[0]?"":'"'==n[0][0]?JSON.parse(n[0]):n[0]),e+=n[0].length,e==t.length)break;let o=t[e++];if(e==t.length&&"!"==o){r=0;break}if("/"!=o)throw new RangeError("Invalid path: "+t);s=t.slice(e)}let o=i.length-1,a=i[o];if(!a)throw new RangeError("Invalid path: "+t);let l=new za(n,r,o>0?i.slice(0,o):null);e[a]=l.sort(e[a])}}return Aa.add(e)}const Aa=new Yo;class za{constructor(t,e,i,n){this.tags=t,this.mode=e,this.context=i,this.next=n}get opaque(){return 0==this.mode}get inherit(){return 1==this.mode}sort(t){return!t||t.depth{let e=r;for(let n of t)for(let t of n.set){let n=i[t.id];if(n){e=e?e+" "+n:n;break}}return e},scope:n}}function Ma(t,e,i,n=0,r=t.length){let s=new Ea(n,Array.isArray(e)?e:[e],i);s.highlightRange(t.cursor(),n,r,"",s.highlighters),s.flush(r)}za.empty=new za([],2,null);class Ea{constructor(t,e,i){this.at=t,this.highlighters=e,this.span=i,this.class=""}startSpan(t,e){e!=this.class&&(this.flush(t),t>this.at&&(this.at=t),this.class=e)}flush(t){t>this.at&&this.class&&this.span(this.at,t,this.class)}highlightRange(t,e,i,n,r){let{type:s,from:o,to:a}=t;if(o>=i||a<=e)return;s.isTop&&(r=this.highlighters.filter((t=>!t.scope||t.scope(s))));let l=n,h=function(t){let e=t.type.prop(Aa);for(;e&&e.context&&!t.matchContext(e.context);)e=e.next;return e||null}(t)||za.empty,c=function(t,e){let i=null;for(let n of t){let t=n.style(e);t&&(i=i?i+" "+t:t)}return i}(r,h.tags);if(c&&(l&&(l+=" "),l+=c,1==h.mode&&(n+=(n?" ":"")+c)),this.startSpan(Math.max(e,o),l),h.opaque)return;let O=t.tree&&t.tree.prop(Yo.mounted);if(O&&O.overlay){let s=t.node.enter(O.overlay[0].from+o,1),h=this.highlighters.filter((t=>!t.scope||t.scope(O.tree.type))),c=t.firstChild();for(let d=0,u=o;;d++){let f=d=p)&&t.nextSibling()););if(!f||p>i)break;u=f.to+o,u>e&&(this.highlightRange(s.cursor(),Math.max(e,f.from+o),Math.min(i,u),"",h),this.startSpan(Math.min(i,u),l))}c&&t.parent()}else if(t.firstChild()){O&&(n="");do{if(!(t.to<=e)){if(t.from>=i)break;this.highlightRange(t,e,i,n,r),this.startSpan(Math.min(i,t.to),l)}}while(t.nextSibling());t.parent()}}}const Ya=Xa.define,Ua=Ya(),ja=Ya(),Da=Ya(ja),Ga=Ya(ja),La=Ya(),Na=Ya(La),Ia=Ya(La),Ba=Ya(),Fa=Ya(Ba),Ha=Ya(),Ja=Ya(),Ka=Ya(),tl=Ya(Ka),el=Ya(),il={comment:Ua,lineComment:Ya(Ua),blockComment:Ya(Ua),docComment:Ya(Ua),name:ja,variableName:Ya(ja),typeName:Da,tagName:Ya(Da),propertyName:Ga,attributeName:Ya(Ga),className:Ya(ja),labelName:Ya(ja),namespace:Ya(ja),macroName:Ya(ja),literal:La,string:Na,docString:Ya(Na),character:Ya(Na),attributeValue:Ya(Na),number:Ia,integer:Ya(Ia),float:Ya(Ia),bool:Ya(La),regexp:Ya(La),escape:Ya(La),color:Ya(La),url:Ya(La),keyword:Ha,self:Ya(Ha),null:Ya(Ha),atom:Ya(Ha),unit:Ya(Ha),modifier:Ya(Ha),operatorKeyword:Ya(Ha),controlKeyword:Ya(Ha),definitionKeyword:Ya(Ha),moduleKeyword:Ya(Ha),operator:Ja,derefOperator:Ya(Ja),arithmeticOperator:Ya(Ja),logicOperator:Ya(Ja),bitwiseOperator:Ya(Ja),compareOperator:Ya(Ja),updateOperator:Ya(Ja),definitionOperator:Ya(Ja),typeOperator:Ya(Ja),controlOperator:Ya(Ja),punctuation:Ka,separator:Ya(Ka),bracket:tl,angleBracket:Ya(tl),squareBracket:Ya(tl),paren:Ya(tl),brace:Ya(tl),content:Ba,heading:Fa,heading1:Ya(Fa),heading2:Ya(Fa),heading3:Ya(Fa),heading4:Ya(Fa),heading5:Ya(Fa),heading6:Ya(Fa),contentSeparator:Ya(Ba),list:Ya(Ba),quote:Ya(Ba),emphasis:Ya(Ba),strong:Ya(Ba),link:Ya(Ba),monospace:Ya(Ba),strikethrough:Ya(Ba),inserted:Ya(),deleted:Ya(),changed:Ya(),invalid:Ya(),meta:el,documentMeta:Ya(el),annotation:Ya(el),processingInstruction:Ya(el),definition:Xa.defineModifier(),constant:Xa.defineModifier(),function:Xa.defineModifier(),standard:Xa.defineModifier(),local:Xa.defineModifier(),special:Xa.defineModifier()};var nl;Va([{tag:il.link,class:"tok-link"},{tag:il.heading,class:"tok-heading"},{tag:il.emphasis,class:"tok-emphasis"},{tag:il.strong,class:"tok-strong"},{tag:il.keyword,class:"tok-keyword"},{tag:il.atom,class:"tok-atom"},{tag:il.bool,class:"tok-bool"},{tag:il.url,class:"tok-url"},{tag:il.labelName,class:"tok-labelName"},{tag:il.inserted,class:"tok-inserted"},{tag:il.deleted,class:"tok-deleted"},{tag:il.literal,class:"tok-literal"},{tag:il.string,class:"tok-string"},{tag:il.number,class:"tok-number"},{tag:[il.regexp,il.escape,il.special(il.string)],class:"tok-string2"},{tag:il.variableName,class:"tok-variableName"},{tag:il.local(il.variableName),class:"tok-variableName tok-local"},{tag:il.definition(il.variableName),class:"tok-variableName tok-definition"},{tag:il.special(il.variableName),class:"tok-variableName2"},{tag:il.definition(il.propertyName),class:"tok-propertyName tok-definition"},{tag:il.typeName,class:"tok-typeName"},{tag:il.namespace,class:"tok-namespace"},{tag:il.className,class:"tok-className"},{tag:il.macroName,class:"tok-macroName"},{tag:il.propertyName,class:"tok-propertyName"},{tag:il.operator,class:"tok-operator"},{tag:il.comment,class:"tok-comment"},{tag:il.meta,class:"tok-meta"},{tag:il.invalid,class:"tok-invalid"},{tag:il.punctuation,class:"tok-punctuation"}]);const rl=new Yo;function sl(t){return A.define({combine:t?e=>e.concat(t):void 0})}const ol=new Yo;class al{constructor(t,e,i=[],n=""){this.data=t,this.name=n,xt.prototype.hasOwnProperty("tree")||Object.defineProperty(xt.prototype,"tree",{get(){return cl(this)}}),this.parser=e,this.extension=[bl.of(this),xt.languageData.of(((t,e,i)=>{let n=ll(t,e,i),r=n.type.prop(rl);if(!r)return[];let s=t.facet(r),o=n.type.prop(ol);if(o){let r=n.resolve(e-n.from,i);for(let e of o)if(e.test(r,t)){let i=t.facet(e.facet);return"replace"==e.type?i:i.concat(s)}}return s}))].concat(i)}isActiveAt(t,e,i=-1){return ll(t,e,i).type.prop(rl)==this.data}findRegions(t){let e=t.facet(bl);if((null==e?void 0:e.data)==this.data)return[{from:0,to:t.doc.length}];if(!e||!e.allowsNesting)return[];let i=[],n=(t,e)=>{if(t.prop(rl)==this.data)return void i.push({from:e,to:e+t.length});let r=t.prop(Yo.mounted);if(r){if(r.tree.prop(rl)==this.data){if(r.overlay)for(let t of r.overlay)i.push({from:t.from+e,to:t.to+e});else i.push({from:e,to:e+t.length});return}if(r.overlay){let t=i.length;if(n(r.tree,r.overlay[0].from+e),i.length>t)return}}for(let i=0;it.isTop?e:void 0))]}),t.name)}configure(t,e){return new hl(this.data,this.parser.configure(t),e||this.name)}get allowsNesting(){return this.parser.hasWrappers()}}function cl(t){let e=t.field(al.state,!1);return e?e.tree:Bo.empty}class Ol{constructor(t){this.doc=t,this.cursorPos=0,this.string="",this.cursor=t.iter()}get length(){return this.doc.length}syncTo(t){return this.string=this.cursor.next(t-this.cursorPos).value,this.cursorPos=t+this.string.length,this.cursorPos-this.string.length}chunk(t){return this.syncTo(t),this.string}get lineChunks(){return!0}read(t,e){let i=this.cursorPos-this.string.length;return t=this.cursorPos?this.doc.sliceString(t,e):this.string.slice(t-i,e-i)}}let dl=null;class ul{constructor(t,e,i=[],n,r,s,o,a){this.parser=t,this.state=e,this.fragments=i,this.tree=n,this.treeLen=r,this.viewport=s,this.skipped=o,this.scheduleOn=a,this.parse=null,this.tempSkipped=[]}static create(t,e,i){return new ul(t,e,[],Bo.empty,0,i,[],null)}startParse(){return this.parser.startParse(new Ol(this.state.doc),this.fragments)}work(t,e){return null!=e&&e>=this.state.doc.length&&(e=void 0),this.tree!=Bo.empty&&this.isDone(null!=e?e:this.state.doc.length)?(this.takeTree(),!0):this.withContext((()=>{var i;if("number"==typeof t){let e=Date.now()+t;t=()=>Date.now()>e}for(this.parse||(this.parse=this.startParse()),null!=e&&(null==this.parse.stoppedAt||this.parse.stoppedAt>e)&&e=this.treeLen&&((null==this.parse.stoppedAt||this.parse.stoppedAt>t)&&this.parse.stopAt(t),this.withContext((()=>{for(;!(e=this.parse.advance()););})),this.treeLen=t,this.tree=e,this.fragments=this.withoutTempSkipped(fa.addTree(this.tree,this.fragments,!0)),this.parse=null)}withContext(t){let e=dl;dl=this;try{return t()}finally{dl=e}}withoutTempSkipped(t){for(let e;e=this.tempSkipped.pop();)t=fl(t,e.from,e.to);return t}changes(t,e){let{fragments:i,tree:n,treeLen:r,viewport:s,skipped:o}=this;if(this.takeTree(),!t.empty){let e=[];if(t.iterChangedRanges(((t,i,n,r)=>e.push({fromA:t,toA:i,fromB:n,toB:r}))),i=fa.applyChanges(i,e),n=Bo.empty,r=0,s={from:t.mapPos(s.from,-1),to:t.mapPos(s.to,1)},this.skipped.length){o=[];for(let e of this.skipped){let i=t.mapPos(e.from,1),n=t.mapPos(e.to,-1);it.from&&(this.fragments=fl(this.fragments,i,n),this.skipped.splice(e--,1))}return!(this.skipped.length>=e)&&(this.reset(),!0)}reset(){this.parse&&(this.takeTree(),this.parse=null)}skipUntilInView(t,e){this.skipped.push({from:t,to:e})}static getSkippingParser(t){return new class extends pa{createParse(e,i,n){let r=n[0].from,s=n[n.length-1].to,o={parsedPos:r,advance(){let e=dl;if(e){for(let t of n)e.tempSkipped.push(t);t&&(e.scheduleOn=e.scheduleOn?Promise.all([e.scheduleOn,t]):t)}return this.parsedPos=s,new Bo(Do.none,[],[],s-r)},stoppedAt:null,stopAt(){}};return o}}}isDone(t){t=Math.min(t,this.state.doc.length);let e=this.fragments;return this.treeLen>=t&&e.length&&0==e[0].from&&e[0].to>=t}static get(){return dl}}function fl(t,e,i){return fa.applyChanges(t,[{fromA:e,toA:i,fromB:e,toB:i}])}class pl{constructor(t){this.context=t,this.tree=t.tree}apply(t){if(!t.docChanged&&this.tree==this.context.tree)return this;let e=this.context.changes(t.changes,t.state),i=this.context.treeLen==t.startState.doc.length?void 0:Math.max(t.changes.mapPos(this.context.treeLen),e.viewport.to);return e.work(20,i)||e.takeTree(),new pl(e)}static init(t){let e=Math.min(3e3,t.doc.length),i=ul.create(t.facet(bl).parser,t,{from:0,to:e});return i.work(20,e)||i.takeTree(),new pl(i)}}al.state=j.define({create:pl.init,update(t,e){for(let t of e.effects)if(t.is(al.setState))return t.value;return e.startState.facet(bl)!=e.state.facet(bl)?pl.init(e.state):t.apply(e)}});let ml=t=>{let e=setTimeout((()=>t()),500);return()=>clearTimeout(e)};"undefined"!=typeof requestIdleCallback&&(ml=t=>{let e=-1,i=setTimeout((()=>{e=requestIdleCallback(t,{timeout:400})}),100);return()=>e<0?clearTimeout(i):cancelIdleCallback(e)});const gl="undefined"!=typeof navigator&&(null===(nl=navigator.scheduling)||void 0===nl?void 0:nl.isInputPending)?()=>navigator.scheduling.isInputPending():null,Ql=Fi.fromClass(class{constructor(t){this.view=t,this.working=null,this.workScheduled=0,this.chunkEnd=-1,this.chunkBudget=-1,this.work=this.work.bind(this),this.scheduleWork()}update(t){let e=this.view.state.field(al.state).context;(e.updateViewport(t.view.viewport)||this.view.viewport.to>e.treeLen)&&this.scheduleWork(),(t.docChanged||t.selectionSet)&&(this.view.hasFocus&&(this.chunkBudget+=50),this.scheduleWork()),this.checkAsyncSchedule(e)}scheduleWork(){if(this.working)return;let{state:t}=this.view,e=t.field(al.state);e.tree==e.context.tree&&e.context.isDone(t.doc.length)||(this.working=ml(this.work))}work(t){this.working=null;let e=Date.now();if(this.chunkEndn+1e3,a=r.context.work((()=>gl&&gl()||Date.now()>s),n+(o?0:1e5));this.chunkBudget-=Date.now()-e,(a||this.chunkBudget<=0)&&(r.context.takeTree(),this.view.dispatch({effects:al.setState.of(new pl(r.context))})),this.chunkBudget>0&&(!a||o)&&this.scheduleWork(),this.checkAsyncSchedule(r.context)}checkAsyncSchedule(t){t.scheduleOn&&(this.workScheduled++,t.scheduleOn.then((()=>this.scheduleWork())).catch((t=>Li(this.view.state,t))).then((()=>this.workScheduled--)),t.scheduleOn=null)}destroy(){this.working&&this.working()}isWorking(){return!!(this.working||this.workScheduled>0)}},{eventHandlers:{focus(){this.scheduleWork()}}}),bl=A.define({combine:t=>t.length?t[0]:null,enables:t=>[al.state,Ql,Ir.contentAttributes.compute([t],(e=>{let i=e.facet(t);return i&&i.name?{"data-language":i.name}:{}}))]});class Sl{constructor(t,e=[]){this.language=t,this.support=e,this.extension=[t,e]}}class vl{constructor(t,e,i,n,r,s=void 0){this.name=t,this.alias=e,this.extensions=i,this.filename=n,this.loadFunc=r,this.support=s,this.loading=null}load(){return this.loading||(this.loading=this.loadFunc().then((t=>this.support=t),(t=>{throw this.loading=null,t})))}static of(t){let{load:e,support:i}=t;if(!e){if(!i)throw new RangeError("Must pass either 'load' or 'support' to LanguageDescription.of");e=()=>Promise.resolve(i)}return new vl(t.name,(t.alias||[]).concat(t.name).map((t=>t.toLowerCase())),t.extensions||[],t.filename,e,i)}static matchFilename(t,e){for(let i of t)if(i.filename&&i.filename.test(e))return i;let i=/\.([^.]+)$/.exec(e);if(i)for(let e of t)if(e.extensions.indexOf(i[1])>-1)return e;return null}static matchLanguageName(t,e,i=!0){e=e.toLowerCase();for(let i of t)if(i.alias.some((t=>t==e)))return i;if(i)for(let i of t)for(let t of i.alias){let n=e.indexOf(t);if(n>-1&&(t.length>2||!/\w/.test(e[n-1])&&!/\w/.test(e[n+t.length])))return i}return null}}const wl=A.define(),yl=A.define({combine:t=>{if(!t.length)return" ";let e=t[0];if(!e||/\S/.test(e)||Array.from(e).some((t=>t!=e[0])))throw new Error("Invalid indent unit: "+JSON.stringify(t[0]));return e}});function xl(t){let e=t.facet(yl);return 9==e.charCodeAt(0)?t.tabSize*e.length:e.length}function kl(t,e){let i="",n=t.tabSize,r=t.facet(yl)[0];if("\t"==r){for(;e>=n;)i+="\t",e-=n;r=" "}for(let t=0;t=e?function(t,e,i){let n=e.resolveStack(i),r=n.node.enterUnfinishedNodesBefore(i);if(r!=n.node){let t=[];for(let e=r;e!=n.node;e=e.parent)t.push(e);for(let e=t.length-1;e>=0;e--)n={node:t[e],next:n}}return _l(n,t,i)}(t,i,e):null}class $l{constructor(t,e={}){this.state=t,this.options=e,this.unit=xl(t)}lineAt(t,e=1){let i=this.state.doc.lineAt(t),{simulateBreak:n,simulateDoubleBreak:r}=this.options;return null!=n&&n>=i.from&&n<=i.to?r&&n==t?{text:"",from:t}:(e<0?n-1&&(r+=s-this.countColumn(i,i.search(/\S|$/))),r}countColumn(t,e=t.length){return Ut(t,this.state.tabSize,e)}lineIndent(t,e=1){let{text:i,from:n}=this.lineAt(t,e),r=this.options.overrideIndentation;if(r){let t=r(n);if(t>-1)return t}return this.countColumn(i,i.search(/\S|$/))}get simulatedBreak(){return this.options.simulateBreak||null}}const Tl=new Yo;function _l(t,e,i){for(let n=t;n;n=n.next){let t=Rl(n.node);if(t)return t(Xl.create(e,i,n))}return 0}function Rl(t){let e=t.type.prop(Tl);if(e)return e;let i,n=t.firstChild;if(n&&(i=n.type.prop(Yo.closedBy))){let e=t.lastChild,n=e&&i.indexOf(e.name)>-1;return t=>Wl(t,!0,1,void 0,n&&!function(t){return t.pos==t.options.simulateBreak&&t.options.simulateDoubleBreak}(t)?e.from:void 0)}return null==t.parent?Zl:null}function Zl(){return 0}class Xl extends $l{constructor(t,e,i){super(t.state,t.options),this.base=t,this.pos=e,this.context=i}get node(){return this.context.node}static create(t,e,i){return new Xl(t,e,i)}get textAfter(){return this.textAfterPos(this.pos)}get baseIndent(){return this.baseIndentFor(this.node)}baseIndentFor(t){let e=this.state.doc.lineAt(t.from);for(;;){let i=t.resolve(e.from);for(;i.parent&&i.parent.from==i.from;)i=i.parent;if(Cl(i,t))break;e=this.state.doc.lineAt(i.from)}return this.lineIndent(e.from)}continue(){return _l(this.context.next,this.base,this.pos)}}function Cl(t,e){for(let i=e;i;i=i.parent)if(t==i)return!0;return!1}function ql({closing:t,align:e=!0,units:i=1}){return n=>Wl(n,e,i,t)}function Wl(t,e,i,n,r){let s=t.textAfter,o=s.match(/^\s*/)[0].length,a=n&&s.slice(o,o+n.length)==n||r==t.pos+o,l=e?function(t){let e=t.node,i=e.childAfter(e.from),n=e.lastChild;if(!i)return null;let r=t.options.simulateBreak,s=t.state.doc.lineAt(i.from),o=null==r||r<=s.from?s.to:Math.min(s.to,r);for(let t=i.to;;){let r=e.childAfter(t);if(!r||r==n)return null;if(!r.type.isSkipped)return r.from{let n=t&&t.test(i.textAfter);return i.baseIndent+(n?0:e*i.unit)}}const zl=A.define(),Vl=new Yo;function Ml(t){let e=t.firstChild,i=t.lastChild;return e&&e.toi)continue;if(r&&o.from=e&&n.to>i&&(r=n)}}return r}(t,e,i)}function Ul(t,e){let i=e.mapPos(t.from,1),n=e.mapPos(t.to,-1);return i>=n?void 0:{from:i,to:n}}const jl=dt.define({map:Ul}),Dl=dt.define({map:Ul});function Gl(t){let e=[];for(let{head:i}of t.state.selection.ranges)e.some((t=>t.from<=i&&t.to>=i))||e.push(t.lineBlockAt(i));return e}const Ll=j.define({create:()=>si.none,update(t,e){t=t.map(e.changes);for(let i of e.effects)if(i.is(jl)&&!Il(t,i.value.from,i.value.to)){let{preparePlaceholder:n}=e.state.facet(Kl),r=n?si.replace({widget:new nh(n(e.state,i.value))}):ih;t=t.update({add:[r.range(i.value.from,i.value.to)]})}else i.is(Dl)&&(t=t.update({filter:(t,e)=>i.value.from!=t||i.value.to!=e,filterFrom:i.value.from,filterTo:i.value.to}));if(e.selection){let i=!1,{head:n}=e.selection.main;t.between(n,n,((t,e)=>{tn&&(i=!0)})),i&&(t=t.update({filterFrom:n,filterTo:n,filter:(t,e)=>e<=n||t>=n}))}return t},provide:t=>Ir.decorations.from(t),toJSON(t,e){let i=[];return t.between(0,e.doc.length,((t,e)=>{i.push(t,e)})),i},fromJSON(t){if(!Array.isArray(t)||t.length%2)throw new RangeError("Invalid JSON for fold state");let e=[];for(let i=0;i{(!r||r.from>t)&&(r={from:t,to:e})})),r}function Il(t,e,i){let n=!1;return t.between(e,e,((t,r)=>{t==e&&r==i&&(n=!0)})),n}function Bl(t,e){return t.field(Ll,!1)?e:e.concat(dt.appendConfig.of(th()))}function Fl(t,e,i=!0){let n=t.state.doc.lineAt(e.from).number,r=t.state.doc.lineAt(e.to).number;return Ir.announce.of(`${t.state.phrase(i?"Folded lines":"Unfolded lines")} ${n} ${t.state.phrase("to")} ${r}.`)}const Hl=[{key:"Ctrl-Shift-[",mac:"Cmd-Alt-[",run:t=>{for(let e of Gl(t)){let i=Yl(t.state,e.from,e.to);if(i)return t.dispatch({effects:Bl(t.state,[jl.of(i),Fl(t,i)])}),!0}return!1}},{key:"Ctrl-Shift-]",mac:"Cmd-Alt-]",run:t=>{if(!t.state.field(Ll,!1))return!1;let e=[];for(let i of Gl(t)){let n=Nl(t.state,i.from,i.to);n&&e.push(Dl.of(n),Fl(t,n,!1))}return e.length&&t.dispatch({effects:e}),e.length>0}},{key:"Ctrl-Alt-[",run:t=>{let{state:e}=t,i=[];for(let n=0;n{let e=t.state.field(Ll,!1);if(!e||!e.size)return!1;let i=[];return e.between(0,t.state.doc.length,((t,e)=>{i.push(Dl.of({from:t,to:e}))})),t.dispatch({effects:i}),!0}}],Jl={placeholderDOM:null,preparePlaceholder:null,placeholderText:"…"},Kl=A.define({combine:t=>kt(t,Jl)});function th(t){return[Ll,ah]}function eh(t,e){let{state:i}=t,n=i.facet(Kl),r=e=>{let i=t.lineBlockAt(t.posAtDOM(e.target)),n=Nl(t.state,i.from,i.to);n&&t.dispatch({effects:Dl.of(n)}),e.preventDefault()};if(n.placeholderDOM)return n.placeholderDOM(t,r,e);let s=document.createElement("span");return s.textContent=n.placeholderText,s.setAttribute("aria-label",i.phrase("folded code")),s.title=i.phrase("unfold"),s.className="cm-foldPlaceholder",s.onclick=r,s}const ih=si.replace({widget:new class extends ni{toDOM(t){return eh(t,null)}}});class nh extends ni{constructor(t){super(),this.value=t}eq(t){return this.value==t.value}toDOM(t){return eh(t,this.value)}}const rh={openText:"⌄",closedText:"›",markerDOM:null,domEventHandlers:{},foldingChanged:()=>!1};class sh extends mo{constructor(t,e){super(),this.config=t,this.open=e}eq(t){return this.config==t.config&&this.open==t.open}toDOM(t){if(this.config.markerDOM)return this.config.markerDOM(this.open);let e=document.createElement("span");return e.textContent=this.open?this.config.openText:this.config.closedText,e.title=t.state.phrase(this.open?"Fold line":"Unfold line"),e}}function oh(t={}){let e=Object.assign(Object.assign({},rh),t),i=new sh(e,!0),n=new sh(e,!1),r=Fi.fromClass(class{constructor(t){this.from=t.viewport.from,this.markers=this.buildMarkers(t)}update(t){(t.docChanged||t.viewportChanged||t.startState.facet(bl)!=t.state.facet(bl)||t.startState.field(Ll,!1)!=t.state.field(Ll,!1)||cl(t.startState)!=cl(t.state)||e.foldingChanged(t))&&(this.markers=this.buildMarkers(t.view))}buildMarkers(t){let e=new Zt;for(let r of t.viewportLineBlocks){let s=Nl(t.state,r.from,r.to)?n:Yl(t.state,r.from,r.to)?i:null;s&&e.add(r.from,r.from,s)}return e.finish()}}),{domEventHandlers:s}=e;return[r,So({class:"cm-foldGutter",markers(t){var e;return(null===(e=t.plugin(r))||void 0===e?void 0:e.markers)||Rt.empty},initialSpacer:()=>new sh(e,!1),domEventHandlers:Object.assign(Object.assign({},s),{click:(t,e,i)=>{if(s.click&&s.click(t,e,i))return!0;let n=Nl(t.state,e.from,e.to);if(n)return t.dispatch({effects:Dl.of(n)}),!0;let r=Yl(t.state,e.from,e.to);return!!r&&(t.dispatch({effects:jl.of(r)}),!0)}})}),th()]}const ah=Ir.baseTheme({".cm-foldPlaceholder":{backgroundColor:"#eee",border:"1px solid #ddd",color:"#888",borderRadius:".2em",margin:"0 1px",padding:"0 1px",cursor:"pointer"},".cm-foldGutter span":{padding:"0 1px",cursor:"pointer"}});class lh{constructor(t,e){let i;function n(t){let e=Nt.newName();return(i||(i=Object.create(null)))["."+e]=t,e}this.specs=t;const r="string"==typeof e.all?e.all:e.all?n(e.all):void 0,s=e.scope;this.scope=s instanceof al?t=>t.prop(rl)==s.data:s?t=>t==s:void 0,this.style=Va(t.map((t=>({tag:t.tag,class:t.class||n(Object.assign({},t,{tag:null}))}))),{all:r}).style,this.module=i?new Nt(i):null,this.themeType=e.themeType}static define(t,e){return new lh(t,e||{})}}const hh=A.define(),ch=A.define({combine:t=>t.length?[t[0]]:null});function Oh(t){let e=t.facet(hh);return e.length?e:t.facet(ch)}function dh(t,e){let i,n=[fh];return t instanceof lh&&(t.module&&n.push(Ir.styleModule.of(t.module)),i=t.themeType),(null==e?void 0:e.fallback)?n.push(ch.of(t)):i?n.push(hh.computeN([Ir.darkTheme],(e=>e.facet(Ir.darkTheme)==("dark"==i)?[t]:[]))):n.push(hh.of(t)),n}class uh{constructor(t){this.markCache=Object.create(null),this.tree=cl(t.state),this.decorations=this.buildDeco(t,Oh(t.state)),this.decoratedTo=t.viewport.to}update(t){let e=cl(t.state),i=Oh(t.state),n=i!=Oh(t.startState),{viewport:r}=t.view,s=t.changes.mapPos(this.decoratedTo,1);e.length=r.to?(this.decorations=this.decorations.map(t.changes),this.decoratedTo=s):(e!=this.tree||t.viewportChanged||n)&&(this.tree=e,this.decorations=this.buildDeco(t.view,i),this.decoratedTo=r.to)}buildDeco(t,e){if(!e||!this.tree.length)return si.none;let i=new Zt;for(let{from:n,to:r}of t.visibleRanges)Ma(this.tree,e,((t,e,n)=>{i.add(t,e,this.markCache[n]||(this.markCache[n]=si.mark({class:n})))}),n,r);return i.finish()}}const fh=B.high(Fi.fromClass(uh,{decorations:t=>t.decorations})),ph=lh.define([{tag:il.meta,color:"#404740"},{tag:il.link,textDecoration:"underline"},{tag:il.heading,textDecoration:"underline",fontWeight:"bold"},{tag:il.emphasis,fontStyle:"italic"},{tag:il.strong,fontWeight:"bold"},{tag:il.strikethrough,textDecoration:"line-through"},{tag:il.keyword,color:"#708"},{tag:[il.atom,il.bool,il.url,il.contentSeparator,il.labelName],color:"#219"},{tag:[il.literal,il.inserted],color:"#164"},{tag:[il.string,il.deleted],color:"#a11"},{tag:[il.regexp,il.escape,il.special(il.string)],color:"#e40"},{tag:il.definition(il.variableName),color:"#00f"},{tag:il.local(il.variableName),color:"#30a"},{tag:[il.typeName,il.namespace],color:"#085"},{tag:il.className,color:"#167"},{tag:[il.special(il.variableName),il.macroName],color:"#256"},{tag:il.definition(il.propertyName),color:"#00c"},{tag:il.comment,color:"#940"},{tag:il.invalid,color:"#f00"}]),mh=Ir.baseTheme({"&.cm-focused .cm-matchingBracket":{backgroundColor:"#328c8252"},"&.cm-focused .cm-nonmatchingBracket":{backgroundColor:"#bb555544"}}),gh=1e4,Qh="()[]{}",bh=A.define({combine:t=>kt(t,{afterCursor:!0,brackets:Qh,maxScanDistance:gh,renderMatch:wh})}),Sh=si.mark({class:"cm-matchingBracket"}),vh=si.mark({class:"cm-nonmatchingBracket"});function wh(t){let e=[],i=t.matched?Sh:vh;return e.push(i.range(t.start.from,t.start.to)),t.end&&e.push(i.range(t.end.from,t.end.to)),e}const yh=j.define({create:()=>si.none,update(t,e){if(!e.docChanged&&!e.selection)return t;let i=[],n=e.state.facet(bh);for(let t of e.state.selection.ranges){if(!t.empty)continue;let r=_h(e.state,t.head,-1,n)||t.head>0&&_h(e.state,t.head-1,1,n)||n.afterCursor&&(_h(e.state,t.head,1,n)||t.headIr.decorations.from(t)}),xh=[yh,mh];function kh(t={}){return[bh.of(t),xh]}const Ph=new Yo;function $h(t,e,i){let n=t.prop(e<0?Yo.openedBy:Yo.closedBy);if(n)return n;if(1==t.name.length){let n=i.indexOf(t.name);if(n>-1&&n%2==(e<0?1:0))return[i[n+e]]}return null}function Th(t){let e=t.type.prop(Ph);return e?e(t.node):t}function _h(t,e,i,n={}){let r=n.maxScanDistance||gh,s=n.brackets||Qh,o=cl(t),a=o.resolveInner(e,i);for(let n=a;n;n=n.parent){let r=$h(n.type,i,s);if(r&&n.from0?e>=o.from&&eo.from&&e<=o.to))return Rh(t,e,i,n,o,r,s)}}return function(t,e,i,n,r,s,o){let a=i<0?t.sliceDoc(e-1,e):t.sliceDoc(e,e+1),l=o.indexOf(a);if(l<0||l%2==0!=i>0)return null;let h={from:i<0?e-1:e,to:i>0?e+1:e},c=t.doc.iterRange(e,i>0?t.doc.length:0),O=0;for(let t=0;!c.next().done&&t<=s;){let s=c.value;i<0&&(t+=s.length);let a=e+t*i;for(let t=i>0?0:s.length-1,e=i>0?s.length:-1;t!=e;t+=i){let e=o.indexOf(s[t]);if(!(e<0||n.resolveInner(a+t,1).type!=r))if(e%2==0==i>0)O++;else{if(1==O)return{start:h,end:{from:a+t,to:a+t+1},matched:e>>1==l>>1};O--}}i>0&&(t+=s.length)}return c.done?{start:h,matched:!1}:null}(t,e,i,o,a.type,r,s)}function Rh(t,e,i,n,r,s,o){let a=n.parent,l={from:r.from,to:r.to},h=0,c=null==a?void 0:a.cursor();if(c&&(i<0?c.childBefore(n.from):c.childAfter(n.to)))do{if(i<0?c.to<=n.from:c.from>=n.to){if(0==h&&s.indexOf(c.type.name)>-1&&c.from-1||(Ch.push(t),console.warn(e))}function zh(t,e){let i=[];for(let n of e.split(" ")){let e=[];for(let i of n.split(".")){let n=t[i]||il[i];n?"function"==typeof n?e.length?e=e.map(n):Ah(i,`Modifier ${i} used at start of tag`):e.length?Ah(i,`Tag ${i} used as modifier`):e=Array.isArray(n)?n:[n]:Ah(i,`Unknown highlighting tag ${i}`)}for(let t of e)i.push(t)}if(!i.length)return 0;let n=e.replace(/ /g,"_"),r=n+" "+i.map((t=>t.id)),s=qh[r];if(s)return s.id;let o=qh[r]=Do.define({id:Xh.length,name:n,props:[Wa({[n]:i})]});return Xh.push(o),o.id}fi.RTL,fi.LTR;function Vh(t,e){return({state:i,dispatch:n})=>{if(i.readOnly)return!1;let r=t(e,i);return!!r&&(n(i.update(r)),!0)}}const Mh=Vh(Gh,0),Eh=Vh(Dh,0),Yh=Vh(((t,e)=>Dh(t,e,function(t){let e=[];for(let i of t.selection.ranges){let n=t.doc.lineAt(i.from),r=i.to<=n.to?n:t.doc.lineAt(i.to),s=e.length-1;s>=0&&e[s].to>n.from?e[s].to=r.to:e.push({from:n.from+/^\s*/.exec(n.text)[0].length,to:r.to})}return e}(e))),0);function Uh(t,e){let i=t.languageDataAt("commentTokens",e);return i.length?i[0]:{}}const jh=50;function Dh(t,e,i=e.selection.ranges){let n=i.map((t=>Uh(e,t.from).block));if(!n.every((t=>t)))return null;let r=i.map(((t,i)=>function(t,{open:e,close:i},n,r){let s,o,a=t.sliceDoc(n-jh,n),l=t.sliceDoc(r,r+jh),h=/\s*$/.exec(a)[0].length,c=/^\s*/.exec(l)[0].length,O=a.length-h;if(a.slice(O-e.length,O)==e&&l.slice(c,c+i.length)==i)return{open:{pos:n-h,margin:h&&1},close:{pos:r+c,margin:c&&1}};r-n<=2*jh?s=o=t.sliceDoc(n,r):(s=t.sliceDoc(n,n+jh),o=t.sliceDoc(r-jh,r));let d=/^\s*/.exec(s)[0].length,u=/\s*$/.exec(o)[0].length,f=o.length-u-i.length;return s.slice(d,d+e.length)==e&&o.slice(f,f+i.length)==i?{open:{pos:n+d+e.length,margin:/\s/.test(s.charAt(d+e.length))?1:0},close:{pos:r-u-i.length,margin:/\s/.test(o.charAt(f-1))?1:0}}:null}(e,n[i],t.from,t.to)));if(2!=t&&!r.every((t=>t)))return{changes:e.changes(i.map(((t,e)=>r[e]?[]:[{from:t.from,insert:n[e].open+" "},{from:t.to,insert:" "+n[e].close}])))};if(1!=t&&r.some((t=>t))){let t=[];for(let e,i=0;ir&&(t==s||s>l.from)){r=l.from;let t=/^\s*/.exec(l.text)[0].length,e=t==l.length,i=l.text.slice(t,t+a.length)==a?t:-1;tt.comment<0&&(!t.empty||t.single)))){let t=[];for(let{line:e,token:i,indent:r,empty:s,single:o}of n)!o&&s||t.push({from:e.from+r,insert:i+" "});let i=e.changes(t);return{changes:i,selection:e.selection.map(i,1)}}if(1!=t&&n.some((t=>t.comment>=0))){let t=[];for(let{line:e,comment:i,token:r}of n)if(i>=0){let n=e.from+i,s=n+r.length;" "==e.text[s-e.from]&&s++,t.push({from:n,to:s})}return{changes:t}}return null}const Lh=ht.define(),Nh=ht.define(),Ih=A.define(),Bh=A.define({combine:t=>kt(t,{minDepth:100,newGroupDelay:500,joinToEvent:(t,e)=>e},{minDepth:Math.max,newGroupDelay:Math.min,joinToEvent:(t,e)=>(i,n)=>t(i,n)||e(i,n)})}),Fh=j.define({create:()=>uc.empty,update(t,e){let i=e.state.facet(Bh),n=e.annotation(Lh);if(n){let r=nc.fromTransaction(e,n.selection),s=n.side,o=0==s?t.undone:t.done;return o=r?rc(o,o.length,i.minDepth,r):lc(o,e.startState.selection),new uc(0==s?n.rest:o,0==s?o:n.rest)}let r=e.annotation(Nh);if("full"!=r&&"before"!=r||(t=t.isolate()),!1===e.annotation(ut.addToHistory))return e.changes.empty?t:t.addMapping(e.changes.desc);let s=nc.fromTransaction(e),o=e.annotation(ut.time),a=e.annotation(ut.userEvent);return s?t=t.addChanges(s,o,a,i,e):e.selection&&(t=t.addSelection(e.startState.selection,o,a,i.newGroupDelay)),"full"!=r&&"after"!=r||(t=t.isolate()),t},toJSON:t=>({done:t.done.map((t=>t.toJSON())),undone:t.undone.map((t=>t.toJSON()))}),fromJSON:t=>new uc(t.done.map(nc.fromJSON),t.undone.map(nc.fromJSON))});function Hh(t={}){return[Fh,Bh.of(t),Ir.domEventHandlers({beforeinput(t,e){let i="historyUndo"==t.inputType?Kh:"historyRedo"==t.inputType?tc:null;return!!i&&(t.preventDefault(),i(e))}})]}function Jh(t,e){return function({state:i,dispatch:n}){if(!e&&i.readOnly)return!1;let r=i.field(Fh,!1);if(!r)return!1;let s=r.pop(t,i,e);return!!s&&(n(s),!0)}}const Kh=Jh(0,!1),tc=Jh(1,!1),ec=Jh(0,!0),ic=Jh(1,!0);class nc{constructor(t,e,i,n,r){this.changes=t,this.effects=e,this.mapped=i,this.startSelection=n,this.selectionsAfter=r}setSelAfter(t){return new nc(this.changes,this.effects,this.mapped,this.startSelection,t)}toJSON(){var t,e,i;return{changes:null===(t=this.changes)||void 0===t?void 0:t.toJSON(),mapped:null===(e=this.mapped)||void 0===e?void 0:e.toJSON(),startSelection:null===(i=this.startSelection)||void 0===i?void 0:i.toJSON(),selectionsAfter:this.selectionsAfter.map((t=>t.toJSON()))}}static fromJSON(t){return new nc(t.changes&&k.fromJSON(t.changes),[],t.mapped&&x.fromJSON(t.mapped),t.startSelection&&C.fromJSON(t.startSelection),t.selectionsAfter.map(C.fromJSON))}static fromTransaction(t,e){let i=oc;for(let e of t.startState.facet(Ih)){let n=e(t);n.length&&(i=i.concat(n))}return!i.length&&t.changes.empty?null:new nc(t.changes.invert(t.startState.doc),i,void 0,e||t.startState.selection,oc)}static selection(t){return new nc(void 0,oc,void 0,void 0,t)}}function rc(t,e,i,n){let r=e+1>i+20?e-i-1:0,s=t.slice(r,e);return s.push(n),s}function sc(t,e){return t.length?e.length?t.concat(e):t:e}const oc=[],ac=200;function lc(t,e){if(t.length){let i=t[t.length-1],n=i.selectionsAfter.slice(Math.max(0,i.selectionsAfter.length-ac));return n.length&&n[n.length-1].eq(e)?t:(n.push(e),rc(t,t.length-1,1e9,i.setSelAfter(n)))}return[nc.selection([e])]}function hc(t){let e=t[t.length-1],i=t.slice();return i[t.length-1]=e.setSelAfter(e.selectionsAfter.slice(0,e.selectionsAfter.length-1)),i}function cc(t,e){if(!t.length)return t;let i=t.length,n=oc;for(;i;){let r=Oc(t[i-1],e,n);if(r.changes&&!r.changes.empty||r.effects.length){let e=t.slice(0,i);return e[i-1]=r,e}e=r.mapped,i--,n=r.selectionsAfter}return n.length?[nc.selection(n)]:oc}function Oc(t,e,i){let n=sc(t.selectionsAfter.length?t.selectionsAfter.map((t=>t.map(e))):oc,i);if(!t.changes)return nc.selection(n);let r=t.changes.map(e),s=e.mapDesc(t.changes,!0),o=t.mapped?t.mapped.composeDesc(s):s;return new nc(r,dt.mapEffects(t.effects,e),o,t.startSelection.map(s),n)}const dc=/^(input\.type|delete)($|\.)/;class uc{constructor(t,e,i=0,n=void 0){this.done=t,this.undone=e,this.prevTime=i,this.prevUserEvent=n}isolate(){return this.prevTime?new uc(this.done,this.undone):this}addChanges(t,e,i,n,r){let s=this.done,o=s[s.length-1];return s=o&&o.changes&&!o.changes.empty&&t.changes&&(!i||dc.test(i))&&(!o.selectionsAfter.length&&e-this.prevTimei.push(t,e))),e.iterChangedRanges(((t,e,r,s)=>{for(let t=0;t=e&&r<=o&&(n=!0)}})),n}(o.changes,t.changes))||"input.type.compose"==i)?rc(s,s.length-1,n.minDepth,new nc(t.changes.compose(o.changes),sc(t.effects,o.effects),o.mapped,o.startSelection,oc)):rc(s,s.length,n.minDepth,t),new uc(s,oc,e,i)}addSelection(t,e,i,n){let r=this.done.length?this.done[this.done.length-1].selectionsAfter:oc;return r.length>0&&e-this.prevTimet.empty!=e.ranges[i].empty)).length}(r[r.length-1],t)?this:new uc(lc(this.done,t),this.undone,e,i)}addMapping(t){return new uc(cc(this.done,t),cc(this.undone,t),this.prevTime,this.prevUserEvent)}pop(t,e,i){let n=0==t?this.done:this.undone;if(0==n.length)return null;let r=n[n.length-1],s=r.selectionsAfter[0]||e.selection;if(i&&r.selectionsAfter.length)return e.update({selection:r.selectionsAfter[r.selectionsAfter.length-1],annotations:Lh.of({side:t,rest:hc(n),selection:s}),userEvent:0==t?"select.undo":"select.redo",scrollIntoView:!0});if(r.changes){let i=1==n.length?oc:n.slice(0,n.length-1);return r.mapped&&(i=cc(i,r.mapped)),e.update({changes:r.changes,selection:r.startSelection,effects:r.effects,annotations:Lh.of({side:t,rest:i,selection:s}),filter:!1,userEvent:0==t?"undo":"redo",scrollIntoView:!0})}return null}}uc.empty=new uc(oc,oc);const fc=[{key:"Mod-z",run:Kh,preventDefault:!0},{key:"Mod-y",mac:"Mod-Shift-z",run:tc,preventDefault:!0},{linux:"Ctrl-Shift-z",run:tc,preventDefault:!0},{key:"Mod-u",run:ec,preventDefault:!0},{key:"Alt-u",mac:"Mod-Shift-u",run:ic,preventDefault:!0}];function pc(t,e){return C.create(t.ranges.map(e),t.mainIndex)}function mc(t,e){return t.update({selection:e,scrollIntoView:!0,userEvent:"select"})}function gc({state:t,dispatch:e},i){let n=pc(t.selection,i);return!n.eq(t.selection,!0)&&(e(mc(t,n)),!0)}function Qc(t,e){return C.cursor(e?t.to:t.from)}function bc(t,e){return gc(t,(i=>i.empty?t.moveByChar(i,e):Qc(i,e)))}function Sc(t){return t.textDirectionAt(t.state.selection.main.head)==fi.LTR}const vc=t=>bc(t,!Sc(t)),wc=t=>bc(t,Sc(t));function yc(t,e){return gc(t,(i=>i.empty?t.moveByGroup(i,e):Qc(i,e)))}function xc(t,e,i){if(e.type.prop(i))return!0;let n=e.to-e.from;return n&&(n>2||/[^\s,.;:]/.test(t.sliceDoc(e.from,e.to)))||e.firstChild}function kc(t,e,i){let n,r,s=cl(t).resolveInner(e.head),o=i?Yo.closedBy:Yo.openedBy;for(let n=e.head;;){let e=i?s.childAfter(n):s.childBefore(n);if(!e)break;xc(t,e,o)?s=e:n=i?e.to:e.from}return r=s.type.prop(o)&&(n=i?_h(t,s.from,1):_h(t,s.to,-1))&&n.matched?i?n.end.to:n.end.from:i?s.to:s.from,C.cursor(r,i?-1:1)}function Pc(t,e){return gc(t,(i=>{if(!i.empty)return Qc(i,e);let n=t.moveVertically(i,e);return n.head!=i.head?n:t.moveToLineBoundary(i,e)}))}const $c=t=>Pc(t,!1),Tc=t=>Pc(t,!0);function _c(t){let e,i=t.scrollDOM.clientHeighti.empty?t.moveVertically(i,e,n.height):Qc(i,e)));if(s.eq(r.selection))return!1;if(n.selfScroll){let e=t.coordsAtPos(r.selection.main.head),o=t.scrollDOM.getBoundingClientRect(),a=o.top+n.marginTop,l=o.bottom-n.marginBottom;e&&e.top>a&&e.bottomRc(t,!1),Xc=t=>Rc(t,!0);function Cc(t,e,i){let n=t.lineBlockAt(e.head),r=t.moveToLineBoundary(e,i);if(r.head==e.head&&r.head!=(i?n.to:n.from)&&(r=t.moveToLineBoundary(e,i,!1)),!i&&r.head==n.from&&n.length){let i=/^\s*/.exec(t.state.sliceDoc(n.from,Math.min(n.from+100,n.to)))[0].length;i&&e.head!=n.from+i&&(r=C.cursor(n.from+i))}return r}function qc(t,e){let i=pc(t.state.selection,(t=>{let i=e(t);return C.range(t.anchor,i.head,i.goalColumn,i.bidiLevel||void 0)}));return!i.eq(t.state.selection)&&(t.dispatch(mc(t.state,i)),!0)}function Wc(t,e){return qc(t,(i=>t.moveByChar(i,e)))}const Ac=t=>Wc(t,!Sc(t)),zc=t=>Wc(t,Sc(t));function Vc(t,e){return qc(t,(i=>t.moveByGroup(i,e)))}function Mc(t,e){return qc(t,(i=>t.moveVertically(i,e)))}const Ec=t=>Mc(t,!1),Yc=t=>Mc(t,!0);function Uc(t,e){return qc(t,(i=>t.moveVertically(i,e,_c(t).height)))}const jc=t=>Uc(t,!1),Dc=t=>Uc(t,!0),Gc=({state:t,dispatch:e})=>(e(mc(t,{anchor:0})),!0),Lc=({state:t,dispatch:e})=>(e(mc(t,{anchor:t.doc.length})),!0),Nc=({state:t,dispatch:e})=>(e(mc(t,{anchor:t.selection.main.anchor,head:0})),!0),Ic=({state:t,dispatch:e})=>(e(mc(t,{anchor:t.selection.main.anchor,head:t.doc.length})),!0);function Bc(t,e){if(t.state.readOnly)return!1;let i="delete.selection",{state:n}=t,r=n.changeByRange((n=>{let{from:r,to:s}=n;if(r==s){let o=e(n);or&&(i="delete.forward",o=Fc(t,o,!0)),r=Math.min(r,o),s=Math.max(s,o)}else r=Fc(t,r,!1),s=Fc(t,s,!0);return r==s?{range:n}:{changes:{from:r,to:s},range:C.cursor(r,re(t))))n.between(e,e,((t,n)=>{te&&(e=i?n:t)}));return e}const Hc=(t,e,i)=>Bc(t,(n=>{let r,s,o=n.from,{state:a}=t,l=a.doc.lineAt(o);if(i&&!e&&o>l.from&&oHc(t,!1,!0),Kc=t=>Hc(t,!0,!1),tO=(t,e)=>Bc(t,(i=>{let n=i.head,{state:r}=t,s=r.doc.lineAt(n),o=r.charCategorizer(n);for(let t=null;;){if(n==(e?s.to:s.from)){n==i.head&&s.number!=(e?r.doc.lines:1)&&(n+=e?1:-1);break}let a=f(s.text,n-s.from,e)+s.from,l=s.text.slice(Math.min(n,a)-s.from,Math.max(n,a)-s.from),h=o(l);if(null!=t&&h!=t)break;" "==l&&n==i.head||(t=h),n=a}return n})),eO=t=>tO(t,!1);function iO(t){let e=[],i=-1;for(let n of t.selection.ranges){let r=t.doc.lineAt(n.from),s=t.doc.lineAt(n.to);if(n.empty||n.to!=s.from||(s=t.doc.lineAt(n.to-1)),i>=r.number){let t=e[e.length-1];t.to=s.to,t.ranges.push(n)}else e.push({from:r.from,to:s.to,ranges:[n]});i=s.number+1}return e}function nO(t,e,i){if(t.readOnly)return!1;let n=[],r=[];for(let e of iO(t)){if(i?e.to==t.doc.length:0==e.from)continue;let s=t.doc.lineAt(i?e.to+1:e.from-1),o=s.length+1;if(i){n.push({from:e.to,to:s.to},{from:e.from,insert:s.text+t.lineBreak});for(let i of e.ranges)r.push(C.range(Math.min(t.doc.length,i.anchor+o),Math.min(t.doc.length,i.head+o)))}else{n.push({from:s.from,to:e.from},{from:e.to,insert:t.lineBreak+s.text});for(let t of e.ranges)r.push(C.range(t.anchor-o,t.head-o))}}return!!n.length&&(e(t.update({changes:n,scrollIntoView:!0,selection:C.create(r,t.selection.mainIndex),userEvent:"move.line"})),!0)}function rO(t,e,i){if(t.readOnly)return!1;let n=[];for(let e of iO(t))i?n.push({from:e.from,insert:t.doc.slice(e.from,e.to)+t.lineBreak}):n.push({from:e.to,insert:t.lineBreak+t.doc.slice(e.from,e.to)});return e(t.update({changes:n,scrollIntoView:!0,userEvent:"input.copyline"})),!0}const sO=aO(!1),oO=aO(!0);function aO(e){return({state:i,dispatch:n})=>{if(i.readOnly)return!1;let r=i.changeByRange((n=>{let{from:r,to:s}=n,o=i.doc.lineAt(r),a=!e&&r==s&&function(t,e){if(/\(\)|\[\]|\{\}/.test(t.sliceDoc(e-1,e+1)))return{from:e,to:e};let i,n=cl(t).resolveInner(e),r=n.childBefore(e),s=n.childAfter(e);return r&&s&&r.to<=e&&s.from>=e&&(i=r.type.prop(Yo.closedBy))&&i.indexOf(s.name)>-1&&t.doc.lineAt(r.to).from==t.doc.lineAt(s.from).from&&!/\S/.test(t.sliceDoc(r.to,s.from))?{from:r.to,to:s.from}:null}(i,r);e&&(r=s=(s<=o.to?o:i.doc.lineAt(s)).to);let l=new $l(i,{simulateBreak:r,simulateDoubleBreak:!!a}),h=Pl(l,r);for(null==h&&(h=Ut(/^\s*/.exec(i.doc.lineAt(r).text)[0],i.tabSize));so.from&&r{let r=[];for(let s=n.from;s<=n.to;){let o=t.doc.lineAt(s);o.number>i&&(n.empty||n.to>o.from)&&(e(o,r,n),i=o.number),s=o.to+1}let s=t.changes(r);return{changes:r,range:C.range(s.mapPos(n.anchor,1),s.mapPos(n.head,1))}}))}const hO=({state:t,dispatch:e})=>!t.readOnly&&(e(t.update(lO(t,((e,i)=>{i.push({from:e.from,insert:t.facet(yl)})})),{userEvent:"input.indent"})),!0),cO=({state:t,dispatch:e})=>!t.readOnly&&(e(t.update(lO(t,((e,i)=>{let n=/^\s*/.exec(e.text)[0];if(!n)return;let r=Ut(n,t.tabSize),s=0,o=kl(t,Math.max(0,r-xl(t)));for(;sgc(t,(e=>C.cursor(t.lineBlockAt(e.head).from,1))),shift:t=>qc(t,(e=>C.cursor(t.lineBlockAt(e.head).from)))},{key:"Ctrl-e",run:t=>gc(t,(e=>C.cursor(t.lineBlockAt(e.head).to,-1))),shift:t=>qc(t,(e=>C.cursor(t.lineBlockAt(e.head).to)))},{key:"Ctrl-d",run:Kc},{key:"Ctrl-h",run:Jc},{key:"Ctrl-k",run:t=>Bc(t,(e=>{let i=t.lineBlockAt(e.head).to;return e.head{if(e.readOnly)return!1;let n=e.changeByRange((e=>({changes:{from:e.from,to:e.to,insert:t.of(["",""])},range:C.cursor(e.from)})));return i(e.update(n,{scrollIntoView:!0,userEvent:"input"})),!0}},{key:"Ctrl-t",run:({state:t,dispatch:e})=>{if(t.readOnly)return!1;let i=t.changeByRange((e=>{if(!e.empty||0==e.from||e.from==t.doc.length)return{range:e};let i=e.from,n=t.doc.lineAt(i),r=i==n.from?i-1:f(n.text,i-n.from,!1)+n.from,s=i==n.to?i+1:f(n.text,i-n.from,!0)+n.from;return{changes:{from:r,to:s,insert:t.doc.slice(i,s).append(t.doc.slice(r,i))},range:C.cursor(s)}}));return!i.changes.empty&&(e(t.update(i,{scrollIntoView:!0,userEvent:"move.character"})),!0)}},{key:"Ctrl-v",run:Xc}],dO=[{key:"ArrowLeft",run:vc,shift:Ac,preventDefault:!0},{key:"Mod-ArrowLeft",mac:"Alt-ArrowLeft",run:t=>yc(t,!Sc(t)),shift:t=>Vc(t,!Sc(t)),preventDefault:!0},{mac:"Cmd-ArrowLeft",run:t=>gc(t,(e=>Cc(t,e,!Sc(t)))),shift:t=>qc(t,(e=>Cc(t,e,!Sc(t)))),preventDefault:!0},{key:"ArrowRight",run:wc,shift:zc,preventDefault:!0},{key:"Mod-ArrowRight",mac:"Alt-ArrowRight",run:t=>yc(t,Sc(t)),shift:t=>Vc(t,Sc(t)),preventDefault:!0},{mac:"Cmd-ArrowRight",run:t=>gc(t,(e=>Cc(t,e,Sc(t)))),shift:t=>qc(t,(e=>Cc(t,e,Sc(t)))),preventDefault:!0},{key:"ArrowUp",run:$c,shift:Ec,preventDefault:!0},{mac:"Cmd-ArrowUp",run:Gc,shift:Nc},{mac:"Ctrl-ArrowUp",run:Zc,shift:jc},{key:"ArrowDown",run:Tc,shift:Yc,preventDefault:!0},{mac:"Cmd-ArrowDown",run:Lc,shift:Ic},{mac:"Ctrl-ArrowDown",run:Xc,shift:Dc},{key:"PageUp",run:Zc,shift:jc},{key:"PageDown",run:Xc,shift:Dc},{key:"Home",run:t=>gc(t,(e=>Cc(t,e,!1))),shift:t=>qc(t,(e=>Cc(t,e,!1))),preventDefault:!0},{key:"Mod-Home",run:Gc,shift:Nc},{key:"End",run:t=>gc(t,(e=>Cc(t,e,!0))),shift:t=>qc(t,(e=>Cc(t,e,!0))),preventDefault:!0},{key:"Mod-End",run:Lc,shift:Ic},{key:"Enter",run:sO},{key:"Mod-a",run:({state:t,dispatch:e})=>(e(t.update({selection:{anchor:0,head:t.doc.length},userEvent:"select"})),!0)},{key:"Backspace",run:Jc,shift:Jc},{key:"Delete",run:Kc},{key:"Mod-Backspace",mac:"Alt-Backspace",run:eO},{key:"Mod-Delete",mac:"Alt-Delete",run:t=>tO(t,!0)},{mac:"Mod-Backspace",run:t=>Bc(t,(e=>{let i=t.moveToLineBoundary(e,!1).head;return e.head>i?i:Math.max(0,e.head-1)}))},{mac:"Mod-Delete",run:t=>Bc(t,(e=>{let i=t.moveToLineBoundary(e,!0).head;return e.head({mac:t.key,run:t.run,shift:t.shift})))),uO=[{key:"Alt-ArrowLeft",mac:"Ctrl-ArrowLeft",run:t=>gc(t,(e=>kc(t.state,e,!Sc(t)))),shift:t=>qc(t,(e=>kc(t.state,e,!Sc(t))))},{key:"Alt-ArrowRight",mac:"Ctrl-ArrowRight",run:t=>gc(t,(e=>kc(t.state,e,Sc(t)))),shift:t=>qc(t,(e=>kc(t.state,e,Sc(t))))},{key:"Alt-ArrowUp",run:({state:t,dispatch:e})=>nO(t,e,!1)},{key:"Shift-Alt-ArrowUp",run:({state:t,dispatch:e})=>rO(t,e,!1)},{key:"Alt-ArrowDown",run:({state:t,dispatch:e})=>nO(t,e,!0)},{key:"Shift-Alt-ArrowDown",run:({state:t,dispatch:e})=>rO(t,e,!0)},{key:"Escape",run:({state:t,dispatch:e})=>{let i=t.selection,n=null;return i.ranges.length>1?n=C.create([i.main]):i.main.empty||(n=C.create([C.cursor(i.main.head)])),!!n&&(e(mc(t,n)),!0)}},{key:"Mod-Enter",run:oO},{key:"Alt-l",mac:"Ctrl-l",run:({state:t,dispatch:e})=>{let i=iO(t).map((({from:e,to:i})=>C.range(e,Math.min(i+1,t.doc.length))));return e(t.update({selection:C.create(i),userEvent:"select"})),!0}},{key:"Mod-i",run:({state:t,dispatch:e})=>{let i=pc(t.selection,(e=>{var i;for(let n=cl(t).resolveStack(e.from,1);n;n=n.next){let{node:t}=n;if((t.from=e.to||t.to>e.to&&t.from<=e.from)&&(null===(i=t.parent)||void 0===i?void 0:i.parent))return C.range(t.to,t.from)}return e}));return e(mc(t,i)),!0},preventDefault:!0},{key:"Mod-[",run:cO},{key:"Mod-]",run:hO},{key:"Mod-Alt-\\",run:({state:t,dispatch:e})=>{if(t.readOnly)return!1;let i=Object.create(null),n=new $l(t,{overrideIndentation:t=>{let e=i[t];return null==e?-1:e}}),r=lO(t,((e,r,s)=>{let o=Pl(n,e.from);if(null==o)return;/\S/.test(e.text)||(o=0);let a=/^\s*/.exec(e.text)[0],l=kl(t,o);(a!=l||s.from{if(t.state.readOnly)return!1;let{state:e}=t,i=e.changes(iO(e).map((({from:t,to:i})=>(t>0?t--:i{let i;if(t.lineWrapping){let n=t.lineBlockAt(e.head),r=t.coordsAtPos(e.head,e.assoc||1);r&&(i=n.bottom+t.documentTop-r.bottom+t.defaultLineHeight/2)}return t.moveVertically(e,!0,i)})).map(i);return t.dispatch({changes:i,selection:n,scrollIntoView:!0,userEvent:"delete.line"}),!0}},{key:"Shift-Mod-\\",run:({state:t,dispatch:e})=>function(t,e,i){let n=!1,r=pc(t.selection,(e=>{let i=_h(t,e.head,-1)||_h(t,e.head,1)||e.head>0&&_h(t,e.head-1,1)||e.head{let{state:e}=t,i=e.doc.lineAt(e.selection.main.from),n=Uh(t.state,i.from);return n.line?Mh(t):!!n.block&&Yh(t)}},{key:"Alt-A",run:Eh},{key:"Ctrl-m",mac:"Shift-Alt-m",run:t=>(t.setTabFocusMode(),!0)}].concat(dO),fO={key:"Tab",run:hO,shift:cO};function pO(){var t=arguments[0];"string"==typeof t&&(t=document.createElement(t));var e=1,i=arguments[1];if(i&&"object"==typeof i&&null==i.nodeType&&!Array.isArray(i)){for(var n in i)if(Object.prototype.hasOwnProperty.call(i,n)){var r=i[n];"string"==typeof r?t.setAttribute(n,r):null!=r&&(t[n]=r)}e++}for(;et.normalize("NFKD"):t=>t;class QO{constructor(t,e,i=0,n=t.length,r,s){this.test=s,this.value={from:0,to:0},this.done=!1,this.matches=[],this.buffer="",this.bufferPos=0,this.iter=t.iterRange(i,n),this.bufferStart=i,this.normalize=r?t=>r(gO(t)):gO,this.query=this.normalize(e)}peek(){if(this.bufferPos==this.buffer.length){if(this.bufferStart+=this.buffer.length,this.iter.next(),this.iter.done)return-1;this.bufferPos=0,this.buffer=this.iter.value}return b(this.buffer,this.bufferPos)}next(){for(;this.matches.length;)this.matches.pop();return this.nextOverlapping()}nextOverlapping(){for(;;){let t=this.peek();if(t<0)return this.done=!0,this;let e=S(t),i=this.bufferStart+this.bufferPos;this.bufferPos+=v(t);let n=this.normalize(e);for(let t=0,r=i;;t++){let s=n.charCodeAt(t),o=this.match(s,r,this.bufferPos+this.bufferStart);if(t==n.length-1){if(o)return this.value=o,this;break}r==i&&tthis.to&&(this.curLine=this.curLine.slice(0,this.to-this.curLineStart)),this.iter.next())}nextLine(){this.curLineStart=this.curLineStart+this.curLine.length+1,this.curLineStart>this.to?this.curLine="":this.getLine(0)}next(){for(let t=this.matchPos-this.curLineStart;;){this.re.lastIndex=t;let e=this.matchPos<=this.to&&this.re.exec(this.curLine);if(e){let i=this.curLineStart+e.index,n=i+e[0].length;if(this.matchPos=kO(this.text,n+(i==n?1:0)),i==this.curLineStart+this.curLine.length&&this.nextLine(),(ithis.value.to)&&(!this.test||this.test(i,n,e)))return this.value={from:i,to:n,match:e},this;t=this.matchPos-this.curLineStart}else{if(!(this.curLineStart+this.curLine.length=i||n.to<=e){let n=new yO(e,t.sliceString(e,i));return wO.set(t,n),n}if(n.from==e&&n.to==i)return n;let{text:r,from:s}=n;return s>e&&(r=t.sliceString(e,s)+r,s=e),n.to=this.to?this.to:this.text.lineAt(t).to}next(){for(;;){let t=this.re.lastIndex=this.matchPos-this.flat.from,e=this.re.exec(this.flat.text);if(e&&!e[0]&&e.index==t&&(this.re.lastIndex=t+1,e=this.re.exec(this.flat.text)),e){let t=this.flat.from+e.index,i=t+e[0].length;if((this.flat.to>=this.to||e.index+e[0].length<=this.flat.text.length-10)&&(!this.test||this.test(t,i,e)))return this.value={from:t,to:i,match:e},this.matchPos=kO(this.text,i+(t==i?1:0)),this}if(this.flat.to==this.to)return this.done=!0,this;this.flat=yO.get(this.text,this.flat.from,this.chunkEnd(this.flat.from+2*this.flat.text.length))}}}function kO(t,e){if(e>=t.length)return e;let i,n=t.lineAt(e);for(;e=56320&&i<57344;)e++;return e}function PO(t){let e=pO("input",{class:"cm-textfield",name:"line",value:String(t.state.doc.lineAt(t.state.selection.main.head).number)});function i(){let i=/^([+-])?(\d+)?(:\d+)?(%)?$/.exec(e.value);if(!i)return;let{state:n}=t,r=n.doc.lineAt(n.selection.main.head),[,s,o,a,l]=i,h=a?+a.slice(1):0,c=o?+o:r.number;if(o&&l){let t=c/100;s&&(t=t*("-"==s?-1:1)+r.number/n.doc.lines),c=Math.round(n.doc.lines*t)}else o&&s&&(c=c*("-"==s?-1:1)+r.number);let O=n.doc.line(Math.max(1,Math.min(n.doc.lines,c))),d=C.cursor(O.from+Math.max(0,Math.min(h,O.length)));t.dispatch({effects:[$O.of(!1),Ir.scrollIntoView(d.from,{y:"center"})],selection:d}),t.focus()}return{dom:pO("form",{class:"cm-gotoLine",onkeydown:e=>{27==e.keyCode?(e.preventDefault(),t.dispatch({effects:$O.of(!1)}),t.focus()):13==e.keyCode&&(e.preventDefault(),i())},onsubmit:t=>{t.preventDefault(),i()}},pO("label",t.state.phrase("Go to line"),": ",e)," ",pO("button",{class:"cm-button",type:"submit"},t.state.phrase("go")))}}"undefined"!=typeof Symbol&&(vO.prototype[Symbol.iterator]=xO.prototype[Symbol.iterator]=function(){return this});const $O=dt.define(),TO=j.define({create:()=>!0,update(t,e){for(let i of e.effects)i.is($O)&&(t=i.value);return t},provide:t=>po.from(t,(t=>t?PO:null))}),_O=Ir.baseTheme({".cm-panel.cm-gotoLine":{padding:"2px 6px 4px","& label":{fontSize:"80%"}}}),RO={highlightWordAroundCursor:!1,minSelectionLength:1,maxMatches:100,wholeWords:!1},ZO=A.define({combine:t=>kt(t,RO,{highlightWordAroundCursor:(t,e)=>t||e,minSelectionLength:Math.min,maxMatches:Math.min})});const XO=si.mark({class:"cm-selectionMatch"}),CO=si.mark({class:"cm-selectionMatch cm-selectionMatch-main"});function qO(t,e,i,n){return!(0!=i&&t(e.sliceDoc(i-1,i))==St.Word||n!=e.doc.length&&t(e.sliceDoc(n,n+1))==St.Word)}const WO=Fi.fromClass(class{constructor(t){this.decorations=this.getDeco(t)}update(t){(t.selectionSet||t.docChanged||t.viewportChanged)&&(this.decorations=this.getDeco(t.view))}getDeco(t){let e=t.state.facet(ZO),{state:i}=t,n=i.selection;if(n.ranges.length>1)return si.none;let r,s=n.main,o=null;if(s.empty){if(!e.highlightWordAroundCursor)return si.none;let t=i.wordAt(s.head);if(!t)return si.none;o=i.charCategorizer(s.head),r=i.sliceDoc(t.from,t.to)}else{let t=s.to-s.from;if(t200)return si.none;if(e.wholeWords){if(r=i.sliceDoc(s.from,s.to),o=i.charCategorizer(s.head),!qO(o,i,s.from,s.to)||!function(t,e,i,n){return t(e.sliceDoc(i,i+1))==St.Word&&t(e.sliceDoc(n-1,n))==St.Word}(o,i,s.from,s.to))return si.none}else if(r=i.sliceDoc(s.from,s.to),!r)return si.none}let a=[];for(let n of t.visibleRanges){let t=new QO(i.doc,r,n.from,n.to);for(;!t.next().done;){let{from:n,to:r}=t.value;if((!o||qO(o,i,n,r))&&(s.empty&&n<=s.from&&r>=s.to?a.push(CO.range(n,r)):(n>=s.to||r<=s.from)&&a.push(XO.range(n,r)),a.length>e.maxMatches))return si.none}}return si.set(a)}},{decorations:t=>t.decorations}),AO=Ir.baseTheme({".cm-selectionMatch":{backgroundColor:"#99ff7780"},".cm-searchMatch .cm-selectionMatch":{backgroundColor:"transparent"}});const zO=A.define({combine:t=>kt(t,{top:!1,caseSensitive:!1,literal:!1,regexp:!1,wholeWord:!1,createPanel:t=>new dd(t),scrollToMatch:t=>Ir.scrollIntoView(t)})});class VO{constructor(t){this.search=t.search,this.caseSensitive=!!t.caseSensitive,this.literal=!!t.literal,this.regexp=!!t.regexp,this.replace=t.replace||"",this.valid=!!this.search&&(!this.regexp||function(t){try{return new RegExp(t,SO),!0}catch(t){return!1}}(this.search)),this.unquoted=this.unquote(this.search),this.wholeWord=!!t.wholeWord}unquote(t){return this.literal?t:t.replace(/\\([nrt\\])/g,((t,e)=>"n"==e?"\n":"r"==e?"\r":"t"==e?"\t":"\\"))}eq(t){return this.search==t.search&&this.replace==t.replace&&this.caseSensitive==t.caseSensitive&&this.regexp==t.regexp&&this.wholeWord==t.wholeWord}create(){return this.regexp?new GO(this):new YO(this)}getCursor(t,e=0,i){let n=t.doc?t:xt.create({doc:t});return null==i&&(i=n.doc.length),this.regexp?UO(this,n,e,i):EO(this,n,e,i)}}class MO{constructor(t){this.spec=t}}function EO(t,e,i,n){return new QO(e.doc,t.unquoted,i,n,t.caseSensitive?void 0:t=>t.toLowerCase(),t.wholeWord?function(t,e){return(i,n,r,s)=>((s>i||s+r.length=e)return null;n.push(i.value)}return n}highlight(t,e,i,n){let r=EO(this.spec,t,Math.max(0,e-this.spec.unquoted.length),Math.min(i+this.spec.unquoted.length,t.doc.length));for(;!r.next().done;)n(r.value.from,r.value.to)}}function UO(t,e,i,n){return new vO(e.doc,t.search,{ignoreCase:!t.caseSensitive,test:t.wholeWord?(r=e.charCategorizer(e.selection.main.head),(t,e,i)=>!i[0].length||(r(jO(i.input,i.index))!=St.Word||r(DO(i.input,i.index))!=St.Word)&&(r(DO(i.input,i.index+i[0].length))!=St.Word||r(jO(i.input,i.index+i[0].length))!=St.Word)):void 0},i,n);var r}function jO(t,e){return t.slice(f(t,e,!1),e)}function DO(t,e){return t.slice(e,f(t,e))}class GO extends MO{nextMatch(t,e,i){let n=UO(this.spec,t,i,t.doc.length).next();return n.done&&(n=UO(this.spec,t,0,e).next()),n.done?null:n.value}prevMatchInRange(t,e,i){for(let n=1;;n++){let r=Math.max(e,i-1e4*n),s=UO(this.spec,t,r,i),o=null;for(;!s.next().done;)o=s.value;if(o&&(r==e||o.from>r+10))return o;if(r==e)return null}}prevMatch(t,e,i){return this.prevMatchInRange(t,0,e)||this.prevMatchInRange(t,i,t.doc.length)}getReplacement(t){return this.spec.unquote(this.spec.replace).replace(/\$([$&\d+])/g,((e,i)=>"$"==i?"$":"&"==i?t.match[0]:"0"!=i&&+i=e)return null;n.push(i.value)}return n}highlight(t,e,i,n){let r=UO(this.spec,t,Math.max(0,e-250),Math.min(i+250,t.doc.length));for(;!r.next().done;)n(r.value.from,r.value.to)}}const LO=dt.define(),NO=dt.define(),IO=j.define({create:t=>new BO(od(t).create(),null),update(t,e){for(let i of e.effects)i.is(LO)?t=new BO(i.value.create(),t.panel):i.is(NO)&&(t=new BO(t.query,i.value?sd:null));return t},provide:t=>po.from(t,(t=>t.panel))});class BO{constructor(t,e){this.query=t,this.panel=e}}const FO=si.mark({class:"cm-searchMatch"}),HO=si.mark({class:"cm-searchMatch cm-searchMatch-selected"}),JO=Fi.fromClass(class{constructor(t){this.view=t,this.decorations=this.highlight(t.state.field(IO))}update(t){let e=t.state.field(IO);(e!=t.startState.field(IO)||t.docChanged||t.selectionSet||t.viewportChanged)&&(this.decorations=this.highlight(e))}highlight({query:t,panel:e}){if(!e||!t.spec.valid)return si.none;let{view:i}=this,n=new Zt;for(let e=0,r=i.visibleRanges,s=r.length;er[e+1].from-500;)a=r[++e].to;t.highlight(i.state,o,a,((t,e)=>{let r=i.state.selection.ranges.some((i=>i.from==t&&i.to==e));n.add(t,e,r?HO:FO)}))}return n.finish()}},{decorations:t=>t.decorations});function KO(t){return e=>{let i=e.state.field(IO,!1);return i&&i.query.spec.valid?t(e,i):hd(e)}}const td=KO(((t,{query:e})=>{let{to:i}=t.state.selection.main,n=e.nextMatch(t.state,i,i);if(!n)return!1;let r=C.single(n.from,n.to),s=t.state.facet(zO);return t.dispatch({selection:r,effects:[md(t,n),s.scrollToMatch(r.main,t)],userEvent:"select.search"}),ld(t),!0})),ed=KO(((t,{query:e})=>{let{state:i}=t,{from:n}=i.selection.main,r=e.prevMatch(i,n,n);if(!r)return!1;let s=C.single(r.from,r.to),o=t.state.facet(zO);return t.dispatch({selection:s,effects:[md(t,r),o.scrollToMatch(s.main,t)],userEvent:"select.search"}),ld(t),!0})),id=KO(((t,{query:e})=>{let i=e.matchAll(t.state,1e3);return!(!i||!i.length)&&(t.dispatch({selection:C.create(i.map((t=>C.range(t.from,t.to)))),userEvent:"select.search.matches"}),!0)})),nd=KO(((t,{query:e})=>{let{state:i}=t,{from:n,to:r}=i.selection.main;if(i.readOnly)return!1;let s=e.nextMatch(i,n,n);if(!s)return!1;let o,a,l=[],h=[];if(s.from==n&&s.to==r&&(a=i.toText(e.getReplacement(s)),l.push({from:s.from,to:s.to,insert:a}),s=e.nextMatch(i,s.from,s.to),h.push(Ir.announce.of(i.phrase("replaced match on line $",i.doc.lineAt(n).number)+"."))),s){let e=0==l.length||l[0].from>=s.to?0:s.to-s.from-a.length;o=C.single(s.from-e,s.to-e),h.push(md(t,s)),h.push(i.facet(zO).scrollToMatch(o.main,t))}return t.dispatch({changes:l,selection:o,effects:h,userEvent:"input.replace"}),!0})),rd=KO(((t,{query:e})=>{if(t.state.readOnly)return!1;let i=e.matchAll(t.state,1e9).map((t=>{let{from:i,to:n}=t;return{from:i,to:n,insert:e.getReplacement(t)}}));if(!i.length)return!1;let n=t.state.phrase("replaced $ matches",i.length)+".";return t.dispatch({changes:i,effects:Ir.announce.of(n),userEvent:"input.replace.all"}),!0}));function sd(t){return t.state.facet(zO).createPanel(t)}function od(t,e){var i,n,r,s,o;let a=t.selection.main,l=a.empty||a.to>a.from+100?"":t.sliceDoc(a.from,a.to);if(e&&!l)return e;let h=t.facet(zO);return new VO({search:(null!==(i=null==e?void 0:e.literal)&&void 0!==i?i:h.literal)?l:l.replace(/\n/g,"\\n"),caseSensitive:null!==(n=null==e?void 0:e.caseSensitive)&&void 0!==n?n:h.caseSensitive,literal:null!==(r=null==e?void 0:e.literal)&&void 0!==r?r:h.literal,regexp:null!==(s=null==e?void 0:e.regexp)&&void 0!==s?s:h.regexp,wholeWord:null!==(o=null==e?void 0:e.wholeWord)&&void 0!==o?o:h.wholeWord})}function ad(t){let e=co(t,sd);return e&&e.dom.querySelector("[main-field]")}function ld(t){let e=ad(t);e&&e==t.root.activeElement&&e.select()}const hd=t=>{let e=t.state.field(IO,!1);if(e&&e.panel){let i=ad(t);if(i&&i!=t.root.activeElement){let n=od(t.state,e.query.spec);n.valid&&t.dispatch({effects:LO.of(n)}),i.focus(),i.select()}}else t.dispatch({effects:[NO.of(!0),e?LO.of(od(t.state,e.query.spec)):dt.appendConfig.of(Qd)]});return!0},cd=t=>{let e=t.state.field(IO,!1);if(!e||!e.panel)return!1;let i=co(t,sd);return i&&i.dom.contains(t.root.activeElement)&&t.focus(),t.dispatch({effects:NO.of(!1)}),!0},Od=[{key:"Mod-f",run:hd,scope:"editor search-panel"},{key:"F3",run:td,shift:ed,scope:"editor search-panel",preventDefault:!0},{key:"Mod-g",run:td,shift:ed,scope:"editor search-panel",preventDefault:!0},{key:"Escape",run:cd,scope:"editor search-panel"},{key:"Mod-Shift-l",run:({state:t,dispatch:e})=>{let i=t.selection;if(i.ranges.length>1||i.main.empty)return!1;let{from:n,to:r}=i.main,s=[],o=0;for(let e=new QO(t.doc,t.sliceDoc(n,r));!e.next().done;){if(s.length>1e3)return!1;e.value.from==n&&(o=s.length),s.push(C.range(e.value.from,e.value.to))}return e(t.update({selection:C.create(s,o),userEvent:"select.search.matches"})),!0}},{key:"Mod-Alt-g",run:t=>{let e=co(t,PO);if(!e){let i=[$O.of(!0)];null==t.state.field(TO,!1)&&i.push(dt.appendConfig.of([TO,_O])),t.dispatch({effects:i}),e=co(t,PO)}return e&&e.dom.querySelector("input").select(),!0}},{key:"Mod-d",run:({state:t,dispatch:e})=>{let{ranges:i}=t.selection;if(i.some((t=>t.from===t.to)))return(({state:t,dispatch:e})=>{let{selection:i}=t,n=C.create(i.ranges.map((e=>t.wordAt(e.head)||C.cursor(e.head))),i.mainIndex);return!n.eq(i)&&(e(t.update({selection:n})),!0)})({state:t,dispatch:e});let n=t.sliceDoc(i[0].from,i[0].to);if(t.selection.ranges.some((e=>t.sliceDoc(e.from,e.to)!=n)))return!1;let r=function(t,e){let{main:i,ranges:n}=t.selection,r=t.wordAt(i.head),s=r&&r.from==i.from&&r.to==i.to;for(let i=!1,r=new QO(t.doc,e,n[n.length-1].to);;){if(r.next(),!r.done){if(i&&n.some((t=>t.from==r.value.from)))continue;if(s){let e=t.wordAt(r.value.from);if(!e||e.from!=r.value.from||e.to!=r.value.to)continue}return r.value}if(i)return null;r=new QO(t.doc,e,0,Math.max(0,n[n.length-1].from-1)),i=!0}}(t,n);return!!r&&(e(t.update({selection:t.selection.addRange(C.range(r.from,r.to),!1),effects:Ir.scrollIntoView(r.to)})),!0)},preventDefault:!0}];class dd{constructor(t){this.view=t;let e=this.query=t.state.field(IO).query.spec;function i(t,e,i){return pO("button",{class:"cm-button",name:t,onclick:e,type:"button"},i)}this.commit=this.commit.bind(this),this.searchField=pO("input",{value:e.search,placeholder:ud(t,"Find"),"aria-label":ud(t,"Find"),class:"cm-textfield",name:"search",form:"","main-field":"true",onchange:this.commit,onkeyup:this.commit}),this.replaceField=pO("input",{value:e.replace,placeholder:ud(t,"Replace"),"aria-label":ud(t,"Replace"),class:"cm-textfield",name:"replace",form:"",onchange:this.commit,onkeyup:this.commit}),this.caseField=pO("input",{type:"checkbox",name:"case",form:"",checked:e.caseSensitive,onchange:this.commit}),this.reField=pO("input",{type:"checkbox",name:"re",form:"",checked:e.regexp,onchange:this.commit}),this.wordField=pO("input",{type:"checkbox",name:"word",form:"",checked:e.wholeWord,onchange:this.commit}),this.dom=pO("div",{onkeydown:t=>this.keydown(t),class:"cm-search"},[this.searchField,i("next",(()=>td(t)),[ud(t,"next")]),i("prev",(()=>ed(t)),[ud(t,"previous")]),i("select",(()=>id(t)),[ud(t,"all")]),pO("label",null,[this.caseField,ud(t,"match case")]),pO("label",null,[this.reField,ud(t,"regexp")]),pO("label",null,[this.wordField,ud(t,"by word")]),...t.state.readOnly?[]:[pO("br"),this.replaceField,i("replace",(()=>nd(t)),[ud(t,"replace")]),i("replaceAll",(()=>rd(t)),[ud(t,"replace all")])],pO("button",{name:"close",onclick:()=>cd(t),"aria-label":ud(t,"close"),type:"button"},["×"])])}commit(){let t=new VO({search:this.searchField.value,caseSensitive:this.caseField.checked,regexp:this.reField.checked,wholeWord:this.wordField.checked,replace:this.replaceField.value});t.eq(this.query)||(this.query=t,this.view.dispatch({effects:LO.of(t)}))}keydown(t){var e,i,n;e=this.view,i=t,n="search-panel",ls(rs(e.state),i,e,n)?t.preventDefault():13==t.keyCode&&t.target==this.searchField?(t.preventDefault(),(t.shiftKey?ed:td)(this.view)):13==t.keyCode&&t.target==this.replaceField&&(t.preventDefault(),nd(this.view))}update(t){for(let e of t.transactions)for(let t of e.effects)t.is(LO)&&!t.value.eq(this.query)&&this.setQuery(t.value)}setQuery(t){this.query=t,this.searchField.value=t.search,this.replaceField.value=t.replace,this.caseField.checked=t.caseSensitive,this.reField.checked=t.regexp,this.wordField.checked=t.wholeWord}mount(){this.searchField.select()}get pos(){return 80}get top(){return this.view.state.facet(zO).top}}function ud(t,e){return t.state.phrase(e)}const fd=30,pd=/[\s\.,:;?!]/;function md(t,{from:e,to:i}){let n=t.state.doc.lineAt(e),r=t.state.doc.lineAt(i).to,s=Math.max(n.from,e-fd),o=Math.min(r,i+fd),a=t.state.sliceDoc(s,o);if(s!=n.from)for(let t=0;ta.length-fd;t--)if(!pd.test(a[t-1])&&pd.test(a[t])){a=a.slice(0,t);break}return Ir.announce.of(`${t.state.phrase("current match")}. ${a} ${t.state.phrase("on line")} ${n.number}.`)}const gd=Ir.baseTheme({".cm-panel.cm-search":{padding:"2px 6px 4px",position:"relative","& [name=close]":{position:"absolute",top:"0",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",padding:0,margin:0},"& input, & button, & label":{margin:".2em .6em .2em 0"},"& input[type=checkbox]":{marginRight:".2em"},"& label":{fontSize:"80%",whiteSpace:"pre"}},"&light .cm-searchMatch":{backgroundColor:"#ffff0054"},"&dark .cm-searchMatch":{backgroundColor:"#00ffff8a"},"&light .cm-searchMatch-selected":{backgroundColor:"#ff6a0054"},"&dark .cm-searchMatch-selected":{backgroundColor:"#ff00ff8a"}}),Qd=[IO,B.low(JO),gd];class bd{constructor(t,e,i,n){this.state=t,this.pos=e,this.explicit=i,this.view=n,this.abortListeners=[]}tokenBefore(t){let e=cl(this.state).resolveInner(this.pos,-1);for(;e&&t.indexOf(e.name)<0;)e=e.parent;return e?{from:e.from,to:this.pos,text:this.state.sliceDoc(e.from,this.pos),type:e.type}:null}matchBefore(t){let e=this.state.doc.lineAt(this.pos),i=Math.max(e.from,this.pos-250),n=e.text.slice(i-e.from,this.pos-e.from),r=n.search(kd(t,!1));return r<0?null:{from:i+r,to:this.pos,text:n.slice(r)}}get aborted(){return null==this.abortListeners}addEventListener(t,e){"abort"==t&&this.abortListeners&&this.abortListeners.push(e)}}function Sd(t){let e=Object.keys(t).join(""),i=/\w/.test(e);return i&&(e=e.replace(/\w/g,"")),`[${i?"\\w":""}${e.replace(/[^\w\s]/g,"\\$&")}]`}function vd(t){let e=t.map((t=>"string"==typeof t?{label:t}:t)),[i,n]=e.every((t=>/^\w+$/.test(t.label)))?[/\w*$/,/\w+$/]:function(t){let e=Object.create(null),i=Object.create(null);for(let{label:n}of t){e[n[0]]=!0;for(let t=1;t{let r=t.matchBefore(n);return r||t.explicit?{from:r?r.from:t.pos,options:e,validFor:i}:null}}function wd(t,e){return i=>{for(let e=cl(i.state).resolveInner(i.pos,-1);e;e=e.parent){if(t.indexOf(e.name)>-1)return null;if(e.type.isTop)break}return e(i)}}class yd{constructor(t,e,i,n){this.completion=t,this.source=e,this.match=i,this.score=n}}function xd(t){return t.selection.main.from}function kd(t,e){var i;let{source:n}=t,r=e&&"^"!=n[0],s="$"!=n[n.length-1];return r||s?new RegExp(`${r?"^":""}(?:${n})${s?"$":""}`,null!==(i=t.flags)&&void 0!==i?i:t.ignoreCase?"i":""):t}const Pd=ht.define();const $d=new WeakMap;function Td(t){if(!Array.isArray(t))return t;let e=$d.get(t);return e||$d.set(t,e=vd(t)),e}const _d=dt.define(),Rd=dt.define();class Zd{constructor(t){this.pattern=t,this.chars=[],this.folded=[],this.any=[],this.precise=[],this.byWord=[],this.score=0,this.matched=[];for(let e=0;e=48&&l<=57||l>=97&&l<=122?2:l>=65&&l<=90?1:0:(Q=S(l))!=Q.toLowerCase()?1:Q!=Q.toUpperCase()?2:0;(!n||1==w&&p||0==g&&0!=w)&&(e[c]==l||i[c]==l&&(O=!0)?s[c++]=n:s.length&&(m=!1)),g=w,n+=v(l)}return c==a&&0==s[0]&&m?this.result((O?-200:0)-100,s,t):d==a&&0==u?this.ret(-200-t.length+(f==t.length?0:-100),[0,f]):o>-1?this.ret(-700-t.length,[o,o+this.pattern.length]):d==a?this.ret(-900-t.length,[u,f]):c==a?this.result((O?-200:0)-100-700+(m?0:-1100),s,t):2==e.length?null:this.result((n[0]?-700:0)-200-1100,n,t)}result(t,e,i){let n=[],r=0;for(let t of e){let e=t+(this.astral?v(b(i,t)):1);r&&n[r-1]==t?n[r-1]=e:(n[r++]=t,n[r++]=e)}return this.ret(t-i.length,n)}}class Xd{constructor(t){this.pattern=t,this.matched=[],this.score=0,this.folded=t.toLowerCase()}match(t){if(t.lengthkt(t,{activateOnTyping:!0,activateOnCompletion:()=>!1,activateOnTypingDelay:100,selectOnOpen:!0,override:null,closeOnBlur:!0,maxRenderedOptions:100,defaultKeymap:!0,tooltipClass:()=>"",optionClass:()=>"",aboveCursor:!1,icons:!0,addToOptions:[],positionInfo:Wd,filterStrict:!1,compareCompletions:(t,e)=>t.label.localeCompare(e.label),interactionDelay:75,updateSyncTime:100},{defaultKeymap:(t,e)=>t&&e,closeOnBlur:(t,e)=>t&&e,icons:(t,e)=>t&&e,tooltipClass:(t,e)=>i=>qd(t(i),e(i)),optionClass:(t,e)=>i=>qd(t(i),e(i)),addToOptions:(t,e)=>t.concat(e),filterStrict:(t,e)=>t||e})});function qd(t,e){return t?e?t+" "+e:t:e}function Wd(t,e,i,n,r,s){let o,a,l=t.textDirection==fi.RTL,h=l,c=!1,O="top",d=e.left-r.left,u=r.right-e.right,f=n.right-n.left,p=n.bottom-n.top;if(h&&d=p||t>e.top?o=i.bottom-e.top:(O="bottom",o=e.bottom-i.top)}return{style:`${O}: ${o/((e.bottom-e.top)/s.offsetHeight)}px; max-width: ${a/((e.right-e.left)/s.offsetWidth)}px`,class:"cm-completionInfo-"+(c?l?"left-narrow":"right-narrow":h?"left":"right")}}function Ad(t,e,i){if(t<=i)return{from:0,to:t};if(e<0&&(e=0),e<=t>>1){let t=Math.floor(e/i);return{from:t*i,to:(t+1)*i}}let n=Math.floor((t-e)/i);return{from:t-(n+1)*i,to:t-n*i}}class zd{constructor(t,e,i){this.view=t,this.stateField=e,this.applyCompletion=i,this.info=null,this.infoDestroy=null,this.placeInfoReq={read:()=>this.measureInfo(),write:t=>this.placeInfo(t),key:this},this.space=null,this.currentClass="";let n=t.state.field(e),{options:r,selected:s}=n.open,o=t.state.facet(Cd);this.optionContent=function(t){let e=t.addToOptions.slice();return t.icons&&e.push({render(t){let e=document.createElement("div");return e.classList.add("cm-completionIcon"),t.type&&e.classList.add(...t.type.split(/\s+/g).map((t=>"cm-completionIcon-"+t))),e.setAttribute("aria-hidden","true"),e},position:20}),e.push({render(t,e,i,n){let r=document.createElement("span");r.className="cm-completionLabel";let s=t.displayLabel||t.label,o=0;for(let t=0;to&&r.appendChild(document.createTextNode(s.slice(o,e)));let a=r.appendChild(document.createElement("span"));a.appendChild(document.createTextNode(s.slice(e,i))),a.className="cm-completionMatchedText",o=i}return ot.position-e.position)).map((t=>t.render))}(o),this.optionClass=o.optionClass,this.tooltipClass=o.tooltipClass,this.range=Ad(r.length,s,o.maxRenderedOptions),this.dom=document.createElement("div"),this.dom.className="cm-tooltip-autocomplete",this.updateTooltipClass(t.state),this.dom.addEventListener("mousedown",(i=>{let{options:n}=t.state.field(e).open;for(let e,r=i.target;r&&r!=this.dom;r=r.parentNode)if("LI"==r.nodeName&&(e=/-(\d+)$/.exec(r.id))&&+e[1]{let i=t.state.field(this.stateField,!1);i&&i.tooltip&&t.state.facet(Cd).closeOnBlur&&e.relatedTarget!=t.contentDOM&&t.dispatch({effects:Rd.of(null)})})),this.showOptions(r,n.id)}mount(){this.updateSel()}showOptions(t,e){this.list&&this.list.remove(),this.list=this.dom.appendChild(this.createListBox(t,e,this.range)),this.list.addEventListener("scroll",(()=>{this.info&&this.view.requestMeasure(this.placeInfoReq)}))}update(t){var e;let i=t.state.field(this.stateField),n=t.startState.field(this.stateField);if(this.updateTooltipClass(t.state),i!=n){let{options:r,selected:s,disabled:o}=i.open;n.open&&n.open.options==r||(this.range=Ad(r.length,s,t.state.facet(Cd).maxRenderedOptions),this.showOptions(r,i.id)),this.updateSel(),o!=(null===(e=n.open)||void 0===e?void 0:e.disabled)&&this.dom.classList.toggle("cm-tooltip-autocomplete-disabled",!!o)}}updateTooltipClass(t){let e=this.tooltipClass(t);if(e!=this.currentClass){for(let t of this.currentClass.split(" "))t&&this.dom.classList.remove(t);for(let t of e.split(" "))t&&this.dom.classList.add(t);this.currentClass=e}}positioned(t){this.space=t,this.info&&this.view.requestMeasure(this.placeInfoReq)}updateSel(){let t=this.view.state.field(this.stateField),e=t.open;if((e.selected>-1&&e.selected=this.range.to)&&(this.range=Ad(e.options.length,e.selected,this.view.state.facet(Cd).maxRenderedOptions),this.showOptions(e.options,t.id)),this.updateSelectedOption(e.selected)){this.destroyInfo();let{completion:i}=e.options[e.selected],{info:n}=i;if(!n)return;let r="string"==typeof n?document.createTextNode(n):n(i);if(!r)return;"then"in r?r.then((e=>{e&&this.view.state.field(this.stateField,!1)==t&&this.addInfoPane(e,i)})).catch((t=>Li(this.view.state,t,"completion info"))):this.addInfoPane(r,i)}}addInfoPane(t,e){this.destroyInfo();let i=this.info=document.createElement("div");if(i.className="cm-tooltip cm-completionInfo",null!=t.nodeType)i.appendChild(t),this.infoDestroy=null;else{let{dom:e,destroy:n}=t;i.appendChild(e),this.infoDestroy=n||null}this.dom.appendChild(i),this.view.requestMeasure(this.placeInfoReq)}updateSelectedOption(t){let e=null;for(let i=this.list.firstChild,n=this.range.from;i;i=i.nextSibling,n++)"LI"==i.nodeName&&i.id?n==t?i.hasAttribute("aria-selected")||(i.setAttribute("aria-selected","true"),e=i):i.hasAttribute("aria-selected")&&i.removeAttribute("aria-selected"):n--;return e&&function(t,e){let i=t.getBoundingClientRect(),n=e.getBoundingClientRect(),r=i.height/t.offsetHeight;n.topi.bottom&&(t.scrollTop+=(n.bottom-i.bottom)/r)}(this.list,e),e}measureInfo(){let t=this.dom.querySelector("[aria-selected]");if(!t||!this.info)return null;let e=this.dom.getBoundingClientRect(),i=this.info.getBoundingClientRect(),n=t.getBoundingClientRect(),r=this.space;if(!r){let t=this.dom.ownerDocument.defaultView||window;r={left:0,top:0,right:t.innerWidth,bottom:t.innerHeight}}return n.top>Math.min(r.bottom,e.bottom)-10||n.bottomi.from||0==i.from))if(r=t,"string"!=typeof l&&l.header)n.appendChild(l.header(l));else{n.appendChild(document.createElement("completion-section")).textContent=t}}const h=n.appendChild(document.createElement("li"));h.id=e+"-"+s,h.setAttribute("role","option");let c=this.optionClass(o);c&&(h.className=c);for(let t of this.optionContent){let e=t(o,this.view.state,this.view,a);e&&h.appendChild(e)}}return i.from&&n.classList.add("cm-completionListIncompleteTop"),i.tonew zd(i,t,e)}function Md(t){return 100*(t.boost||0)+(t.apply?10:0)+(t.info?5:0)+(t.type?1:0)}class Ed{constructor(t,e,i,n,r,s){this.options=t,this.attrs=e,this.tooltip=i,this.timestamp=n,this.selected=r,this.disabled=s}setSelected(t,e){return t==this.selected||t>=this.options.length?this:new Ed(this.options,Dd(e,t),this.tooltip,this.timestamp,t,this.disabled)}static build(t,e,i,n,r){let s=function(t,e){let i=[],n=null,r=t=>{i.push(t);let{section:e}=t.completion;if(e){n||(n=[]);let t="string"==typeof e?e:e.name;n.some((e=>e.name==t))||n.push("string"==typeof e?{name:t}:e)}},s=e.facet(Cd);for(let n of t)if(n.hasResult()){let t=n.result.getMatch;if(!1===n.result.filter)for(let e of n.result.options)r(new yd(e,n.source,t?t(e):[],1e9-i.length));else{let i,o=e.sliceDoc(n.from,n.to),a=s.filterStrict?new Xd(o):new Zd(o);for(let e of n.result.options)if(i=a.match(e.label)){let s=e.displayLabel?t?t(e,i.matched):[]:i.matched;r(new yd(e,n.source,s,i.score+(e.boost||0)))}}}if(n){let t=Object.create(null),e=0,r=(t,e)=>{var i,n;return(null!==(i=t.rank)&&void 0!==i?i:1e9)-(null!==(n=e.rank)&&void 0!==n?n:1e9)||(t.namee.score-t.score||l(t.completion,e.completion)))){let e=t.completion;!a||a.label!=e.label||a.detail!=e.detail||null!=a.type&&null!=e.type&&a.type!=e.type||a.apply!=e.apply||a.boost!=e.boost?o.push(t):Md(t.completion)>Md(a)&&(o[o.length-1]=t),a=t.completion}return o}(t,e);if(!s.length)return n&&t.some((t=>1==t.state))?new Ed(n.options,n.attrs,n.tooltip,n.timestamp,n.selected,!0):null;let o=e.facet(Cd).selectOnOpen?0:-1;if(n&&n.selected!=o&&-1!=n.selected){let t=n.options[n.selected].completion;for(let e=0;ee.hasResult()?Math.min(t,e.from):t),1e8),create:Kd,above:r.aboveCursor},n?n.timestamp:Date.now(),o,!1)}map(t){return new Ed(this.options,this.attrs,Object.assign(Object.assign({},this.tooltip),{pos:t.mapPos(this.tooltip.pos)}),this.timestamp,this.selected,this.disabled)}}class Yd{constructor(t,e,i){this.active=t,this.id=e,this.open=i}static start(){return new Yd(Gd,"cm-ac-"+Math.floor(2e6*Math.random()).toString(36),null)}update(t){let{state:e}=t,i=e.facet(Cd),n=(i.override||e.languageDataAt("autocomplete",xd(e)).map(Td)).map((e=>{let n=this.active.find((t=>t.source==e))||new Nd(e,this.active.some((t=>0!=t.state))?1:0);return n.update(t,i)}));n.length==this.active.length&&n.every(((t,e)=>t==this.active[e]))&&(n=this.active);let r=this.open;r&&t.docChanged&&(r=r.map(t.changes)),t.selection||n.some((e=>e.hasResult()&&t.changes.touchesRange(e.from,e.to)))||!function(t,e){if(t==e)return!0;for(let i=0,n=0;;){for(;i1==t.state))&&(r=null),!r&&n.every((t=>1!=t.state))&&n.some((t=>t.hasResult()))&&(n=n.map((t=>t.hasResult()?new Nd(t.source,0):t)));for(let e of t.effects)e.is(Fd)&&(r=r&&r.setSelected(e.value,this.id));return n==this.active&&r==this.open?this:new Yd(n,this.id,r)}get tooltip(){return this.open?this.open.tooltip:null}get attrs(){return this.open?this.open.attrs:this.active.length?Ud:jd}}const Ud={"aria-autocomplete":"list"},jd={};function Dd(t,e){let i={"aria-autocomplete":"list","aria-haspopup":"listbox","aria-controls":t};return e>-1&&(i["aria-activedescendant"]=t+"-"+e),i}const Gd=[];function Ld(t,e){if(t.isUserEvent("input.complete")){let i=t.annotation(Pd);if(i&&e.activateOnCompletion(i))return 12}let i=t.isUserEvent("input.type");return i&&e.activateOnTyping?5:i?1:t.isUserEvent("delete.backward")?2:t.selection?8:t.docChanged?16:0}class Nd{constructor(t,e,i=-1){this.source=t,this.state=e,this.explicitPos=i}hasResult(){return!1}update(t,e){let i=Ld(t,e),n=this;(8&i||16&i&&this.touches(t))&&(n=new Nd(n.source,0)),4&i&&0==n.state&&(n=new Nd(this.source,1)),n=n.updateFor(t,i);for(let e of t.effects)if(e.is(_d))n=new Nd(n.source,1,e.value?xd(t.state):-1);else if(e.is(Rd))n=new Nd(n.source,0);else if(e.is(Bd))for(let t of e.value)t.source==n.source&&(n=t);return n}updateFor(t,e){return this.map(t.changes)}map(t){return t.empty||this.explicitPos<0?this:new Nd(this.source,this.state,t.mapPos(this.explicitPos))}touches(t){return t.changes.touchesRange(xd(t.state))}}class Id extends Nd{constructor(t,e,i,n,r){super(t,2,e),this.result=i,this.from=n,this.to=r}hasResult(){return!0}updateFor(t,e){var i;if(!(3&e))return this.map(t.changes);let n=this.result;n.map&&!t.changes.empty&&(n=n.map(n,t.changes));let r=t.changes.mapPos(this.from),s=t.changes.mapPos(this.to,1),o=xd(t.state);if((this.explicitPos<0?o<=r:os||!n||2&e&&xd(t.startState)==this.from)return new Nd(this.source,4&e?1:0);let a=this.explicitPos<0?-1:t.changes.mapPos(this.explicitPos);return function(t,e,i,n){if(!t)return!1;let r=e.sliceDoc(i,n);return"function"==typeof t?t(r,i,n,e):kd(t,!0).test(r)}(n.validFor,t.state,r,s)?new Id(this.source,a,n,r,s):n.update&&(n=n.update(n,r,s,new bd(t.state,o,a>=0)))?new Id(this.source,a,n,n.from,null!==(i=n.to)&&void 0!==i?i:xd(t.state)):new Nd(this.source,1,a)}map(t){if(t.empty)return this;return(this.result.map?this.result.map(this.result,t):this.result)?new Id(this.source,this.explicitPos<0?-1:t.mapPos(this.explicitPos),this.result,t.mapPos(this.from),t.mapPos(this.to,1)):new Nd(this.source,0)}touches(t){return t.changes.touchesRange(this.from,this.to)}}const Bd=dt.define({map:(t,e)=>t.map((t=>t.map(e)))}),Fd=dt.define(),Hd=j.define({create:()=>Yd.start(),update:(t,e)=>t.update(e),provide:t=>[to.from(t,(t=>t.tooltip)),Ir.contentAttributes.from(t,(t=>t.attrs))]});function Jd(t,e){const i=e.completion.apply||e.completion.label;let n=t.state.field(Hd).active.find((t=>t.source==e.source));return n instanceof Id&&("string"==typeof i?t.dispatch(Object.assign(Object.assign({},function(t,e,i,n){let{main:r}=t.selection,s=i-r.from,o=n-r.from;return Object.assign(Object.assign({},t.changeByRange((a=>a!=r&&i!=n&&t.sliceDoc(a.from+s,a.from+o)!=t.sliceDoc(i,n)?{range:a}:{changes:{from:a.from+s,to:n==r.from?a.to:a.from+o,insert:e},range:C.cursor(a.from+s+e.length)}))),{scrollIntoView:!0,userEvent:"input.complete"})}(t.state,i,n.from,n.to)),{annotations:Pd.of(e.completion)})):i(t,e.completion,n.from,n.to),!0)}const Kd=Vd(Hd,Jd);function tu(t,e="option"){return i=>{let n=i.state.field(Hd,!1);if(!n||!n.open||n.open.disabled||Date.now()-n.open.timestamp-1?n.open.selected+s*(t?1:-1):t?0:o-1;return a<0?a="page"==e?0:o-1:a>=o&&(a="page"==e?o-1:0),i.dispatch({effects:Fd.of(a)}),!0}}class eu{constructor(t,e){this.active=t,this.context=e,this.time=Date.now(),this.updates=[],this.done=void 0}}const iu=Fi.fromClass(class{constructor(t){this.view=t,this.debounceUpdate=-1,this.running=[],this.debounceAccept=-1,this.pendingStart=!1,this.composing=0;for(let e of t.state.field(Hd).active)1==e.state&&this.startQuery(e)}update(t){let e=t.state.field(Hd),i=t.state.facet(Cd);if(!t.selectionSet&&!t.docChanged&&t.startState.field(Hd)==e)return;let n=t.transactions.some((t=>{let e=Ld(t,i);return 8&e||(t.selection||t.docChanged)&&!(3&e)}));for(let e=0;e50&&Date.now()-i.time>1e3){for(let t of i.context.abortListeners)try{t()}catch(t){Li(this.view.state,t)}i.context.abortListeners=null,this.running.splice(e--,1)}else i.updates.push(...t.transactions)}this.debounceUpdate>-1&&clearTimeout(this.debounceUpdate),t.transactions.some((t=>t.effects.some((t=>t.is(_d)))))&&(this.pendingStart=!0);let r=this.pendingStart?50:i.activateOnTypingDelay;if(this.debounceUpdate=e.active.some((t=>1==t.state&&!this.running.some((e=>e.active.source==t.source))))?setTimeout((()=>this.startUpdate()),r):-1,0!=this.composing)for(let e of t.transactions)e.isUserEvent("input.type")?this.composing=2:2==this.composing&&e.selection&&(this.composing=3)}startUpdate(){this.debounceUpdate=-1,this.pendingStart=!1;let{state:t}=this.view,e=t.field(Hd);for(let t of e.active)1!=t.state||this.running.some((e=>e.active.source==t.source))||this.startQuery(t)}startQuery(t){let{state:e}=this.view,i=xd(e),n=new bd(e,i,t.explicitPos==i,this.view),r=new eu(t,n);this.running.push(r),Promise.resolve(t.source(n)).then((t=>{r.context.aborted||(r.done=t||null,this.scheduleAccept())}),(t=>{this.view.dispatch({effects:Rd.of(null)}),Li(this.view.state,t)}))}scheduleAccept(){this.running.every((t=>void 0!==t.done))?this.accept():this.debounceAccept<0&&(this.debounceAccept=setTimeout((()=>this.accept()),this.view.state.facet(Cd).updateSyncTime))}accept(){var t;this.debounceAccept>-1&&clearTimeout(this.debounceAccept),this.debounceAccept=-1;let e=[],i=this.view.state.facet(Cd);for(let n=0;nt.source==r.active.source));if(s&&1==s.state)if(null==r.done){let t=new Nd(r.active.source,0);for(let e of r.updates)t=t.update(e,i);1!=t.state&&e.push(t)}else this.startQuery(s)}e.length&&this.view.dispatch({effects:Bd.of(e)})}},{eventHandlers:{blur(t){let e=this.view.state.field(Hd,!1);if(e&&e.tooltip&&this.view.state.facet(Cd).closeOnBlur){let i=e.open&&ao(this.view,e.open.tooltip);i&&i.dom.contains(t.relatedTarget)||setTimeout((()=>this.view.dispatch({effects:Rd.of(null)})),10)}},compositionstart(){this.composing=1},compositionend(){3==this.composing&&setTimeout((()=>this.view.dispatch({effects:_d.of(!1)})),20),this.composing=0}}}),nu="object"==typeof navigator&&/Win/.test(navigator.platform),ru=B.highest(Ir.domEventHandlers({keydown(t,e){let i=e.state.field(Hd,!1);if(!i||!i.open||i.open.disabled||i.open.selected<0||t.key.length>1||t.ctrlKey&&(!nu||!t.altKey)||t.metaKey)return!1;let n=i.open.options[i.open.selected],r=i.active.find((t=>t.source==n.source)),s=n.completion.commitCharacters||r.result.commitCharacters;return s&&s.indexOf(t.key)>-1&&Jd(e,n),!1}})),su=Ir.baseTheme({".cm-tooltip.cm-tooltip-autocomplete":{"& > ul":{fontFamily:"monospace",whiteSpace:"nowrap",overflow:"hidden auto",maxWidth_fallback:"700px",maxWidth:"min(700px, 95vw)",minWidth:"250px",maxHeight:"10em",height:"100%",listStyle:"none",margin:0,padding:0,"& > li, & > completion-section":{padding:"1px 3px",lineHeight:1.2},"& > li":{overflowX:"hidden",textOverflow:"ellipsis",cursor:"pointer"},"& > completion-section":{display:"list-item",borderBottom:"1px solid silver",paddingLeft:"0.5em",opacity:.7}}},"&light .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#17c",color:"white"},"&light .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#777"},"&dark .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#347",color:"white"},"&dark .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#444"},".cm-completionListIncompleteTop:before, .cm-completionListIncompleteBottom:after":{content:'"···"',opacity:.5,display:"block",textAlign:"center"},".cm-tooltip.cm-completionInfo":{position:"absolute",padding:"3px 9px",width:"max-content",maxWidth:"400px",boxSizing:"border-box"},".cm-completionInfo.cm-completionInfo-left":{right:"100%"},".cm-completionInfo.cm-completionInfo-right":{left:"100%"},".cm-completionInfo.cm-completionInfo-left-narrow":{right:"30px"},".cm-completionInfo.cm-completionInfo-right-narrow":{left:"30px"},"&light .cm-snippetField":{backgroundColor:"#00000022"},"&dark .cm-snippetField":{backgroundColor:"#ffffff22"},".cm-snippetFieldPosition":{verticalAlign:"text-top",width:0,height:"1.15em",display:"inline-block",margin:"0 -0.7px -.7em",borderLeft:"1.4px dotted #888"},".cm-completionMatchedText":{textDecoration:"underline"},".cm-completionDetail":{marginLeft:"0.5em",fontStyle:"italic"},".cm-completionIcon":{fontSize:"90%",width:".8em",display:"inline-block",textAlign:"center",paddingRight:".6em",opacity:"0.6",boxSizing:"content-box"},".cm-completionIcon-function, .cm-completionIcon-method":{"&:after":{content:"'ƒ'"}},".cm-completionIcon-class":{"&:after":{content:"'○'"}},".cm-completionIcon-interface":{"&:after":{content:"'◌'"}},".cm-completionIcon-variable":{"&:after":{content:"'𝑥'"}},".cm-completionIcon-constant":{"&:after":{content:"'𝐶'"}},".cm-completionIcon-type":{"&:after":{content:"'𝑡'"}},".cm-completionIcon-enum":{"&:after":{content:"'∪'"}},".cm-completionIcon-property":{"&:after":{content:"'□'"}},".cm-completionIcon-keyword":{"&:after":{content:"'🔑︎'"}},".cm-completionIcon-namespace":{"&:after":{content:"'▢'"}},".cm-completionIcon-text":{"&:after":{content:"'abc'",fontSize:"50%",verticalAlign:"middle"}}});class ou{constructor(t,e,i,n){this.field=t,this.line=e,this.from=i,this.to=n}}class au{constructor(t,e,i){this.field=t,this.from=e,this.to=i}map(t){let e=t.mapPos(this.from,-1,y.TrackDel),i=t.mapPos(this.to,1,y.TrackDel);return null==e||null==i?null:new au(this.field,e,i)}}class lu{constructor(t,e){this.lines=t,this.fieldPositions=e}instantiate(t,e){let i=[],n=[e],r=t.doc.lineAt(e),s=/^\s*/.exec(r.text)[0];for(let r of this.lines){if(i.length){let i=s,o=/^\t*/.exec(r)[0].length;for(let e=0;enew au(t.field,n[t.line]+t.from,n[t.line]+t.to)));return{text:i,ranges:o}}static parse(t){let e,i=[],n=[],r=[];for(let s of t.split(/\r\n?|\n/)){for(;e=/[#$]\{(?:(\d+)(?::([^}]*))?|((?:\\[{}]|[^}])*))\}/.exec(s);){let t=e[1]?+e[1]:null,o=e[2]||e[3]||"",a=-1,l=o.replace(/\\[{}]/g,(t=>t[1]));for(let e=0;e=a&&t.field++}r.push(new ou(a,n.length,e.index,e.index+l.length)),s=s.slice(0,e.index)+o+s.slice(e.index+e[0].length)}s=s.replace(/\\([{}])/g,((t,e,i)=>{for(let t of r)t.line==n.length&&t.from>i&&(t.from--,t.to--);return e})),n.push(s)}return new lu(n,r)}}let hu=si.widget({widget:new class extends ni{toDOM(){let t=document.createElement("span");return t.className="cm-snippetFieldPosition",t}ignoreEvent(){return!1}}}),cu=si.mark({class:"cm-snippetField"});class Ou{constructor(t,e){this.ranges=t,this.active=e,this.deco=si.set(t.map((t=>(t.from==t.to?hu:cu).range(t.from,t.to))))}map(t){let e=[];for(let i of this.ranges){let n=i.map(t);if(!n)return null;e.push(n)}return new Ou(e,this.active)}selectionInsideField(t){return t.ranges.every((t=>this.ranges.some((e=>e.field==this.active&&e.from<=t.from&&e.to>=t.to))))}}const du=dt.define({map:(t,e)=>t&&t.map(e)}),uu=dt.define(),fu=j.define({create:()=>null,update(t,e){for(let i of e.effects){if(i.is(du))return i.value;if(i.is(uu)&&t)return new Ou(t.ranges,i.value)}return t&&e.docChanged&&(t=t.map(e.changes)),t&&e.selection&&!t.selectionInsideField(e.selection)&&(t=null),t},provide:t=>Ir.decorations.from(t,(t=>t?t.deco:si.none))});function pu(t,e){return C.create(t.filter((t=>t.field==e)).map((t=>C.range(t.from,t.to))))}function mu(e){let i=lu.parse(e);return(e,n,r,s)=>{let{text:o,ranges:a}=i.instantiate(e.state,r),l={changes:{from:r,to:s,insert:t.of(o)},scrollIntoView:!0,annotations:n?[Pd.of(n),ut.userEvent.of("input.complete")]:void 0};if(a.length&&(l.selection=pu(a,0)),a.some((t=>t.field>0))){let t=new Ou(a,0),i=l.effects=[du.of(t)];void 0===e.state.field(fu,!1)&&i.push(dt.appendConfig.of([fu,Su,wu,su]))}e.dispatch(e.state.update(l))}}function gu(t){return({state:e,dispatch:i})=>{let n=e.field(fu,!1);if(!n||t<0&&0==n.active)return!1;let r=n.active+t,s=t>0&&!n.ranges.some((e=>e.field==r+t));return i(e.update({selection:pu(n.ranges,r),effects:du.of(s?null:new Ou(n.ranges,r)),scrollIntoView:!0})),!0}}const Qu=[{key:"Tab",run:gu(1),shift:gu(-1)},{key:"Escape",run:({state:t,dispatch:e})=>!!t.field(fu,!1)&&(e(t.update({effects:du.of(null)})),!0)}],bu=A.define({combine:t=>t.length?t[0]:Qu}),Su=B.highest(is.compute([bu],(t=>t.facet(bu))));function vu(t,e){return Object.assign(Object.assign({},e),{apply:mu(t)})}const wu=Ir.domEventHandlers({mousedown(t,e){let i,n=e.state.field(fu,!1);if(!n||null==(i=e.posAtCoords({x:t.clientX,y:t.clientY})))return!1;let r=n.ranges.find((t=>t.from<=i&&t.to>=i));return!(!r||r.field==n.active)&&(e.dispatch({selection:pu(n.ranges,r.field),effects:du.of(n.ranges.some((t=>t.field>r.field))?new Ou(n.ranges,r.field):null),scrollIntoView:!0}),!0)}}),yu={brackets:["(","[","{","'",'"'],before:")]}:;>",stringPrefixes:[]},xu=dt.define({map(t,e){let i=e.mapPos(t,-1,y.TrackAfter);return null==i?void 0:i}}),ku=new class extends Pt{};ku.startSide=1,ku.endSide=-1;const Pu=j.define({create:()=>Rt.empty,update(t,e){if(t=t.map(e.changes),e.selection){let i=e.state.doc.lineAt(e.selection.main.head);t=t.update({filter:t=>t>=i.from&&t<=i.to})}for(let i of e.effects)i.is(xu)&&(t=t.update({add:[ku.range(i.value,i.value+1)]}));return t}});const $u="()[]{}<>";function Tu(t){for(let e=0;e<$u.length;e+=2)if($u.charCodeAt(e)==t)return $u.charAt(e+1);return S(t<128?t:t+1)}function _u(t,e){return t.languageDataAt("closeBrackets",e)[0]||yu}const Ru="object"==typeof navigator&&/Android\b/.test(navigator.userAgent),Zu=Ir.inputHandler.of(((t,e,i,n)=>{if((Ru?t.composing:t.compositionStarted)||t.state.readOnly)return!1;let r=t.state.selection.main;if(n.length>2||2==n.length&&1==v(b(n,0))||e!=r.from||i!=r.to)return!1;let s=function(t,e){let i=_u(t,t.selection.main.head),n=i.brackets||yu.brackets;for(let r of n){let s=Tu(b(r,0));if(e==r)return s==r?zu(t,r,n.indexOf(r+r+r)>-1,i):Wu(t,r,s,i.before||yu.before);if(e==s&&Cu(t,t.selection.main.from))return Au(t,r,s)}return null}(t.state,n);return!!s&&(t.dispatch(s),!0)})),Xu=[{key:"Backspace",run:({state:t,dispatch:e})=>{if(t.readOnly)return!1;let i=_u(t,t.selection.main.head).brackets||yu.brackets,n=null,r=t.changeByRange((e=>{if(e.empty){let n=function(t,e){let i=t.sliceString(e-2,e);return v(b(i,0))==i.length?i:i.slice(1)}(t.doc,e.head);for(let r of i)if(r==n&&qu(t.doc,e.head)==Tu(b(r,0)))return{changes:{from:e.head-r.length,to:e.head+r.length},range:C.cursor(e.head-r.length)}}return{range:n=e}}));return n||e(t.update(r,{scrollIntoView:!0,userEvent:"delete.backward"})),!n}}];function Cu(t,e){let i=!1;return t.field(Pu).between(0,t.doc.length,(t=>{t==e&&(i=!0)})),i}function qu(t,e){let i=t.sliceString(e,e+2);return i.slice(0,v(b(i,0)))}function Wu(t,e,i,n){let r=null,s=t.changeByRange((s=>{if(!s.empty)return{changes:[{insert:e,from:s.from},{insert:i,from:s.to}],effects:xu.of(s.to+e.length),range:C.range(s.anchor+e.length,s.head+e.length)};let o=qu(t.doc,s.head);return!o||/\s/.test(o)||n.indexOf(o)>-1?{changes:{insert:e+i,from:s.head},effects:xu.of(s.head+e.length),range:C.cursor(s.head+e.length)}:{range:r=s}}));return r?null:t.update(s,{scrollIntoView:!0,userEvent:"input.type"})}function Au(t,e,i){let n=null,r=t.changeByRange((e=>e.empty&&qu(t.doc,e.head)==i?{changes:{from:e.head,to:e.head+i.length,insert:i},range:C.cursor(e.head+i.length)}:n={range:e}));return n?null:t.update(r,{scrollIntoView:!0,userEvent:"input.type"})}function zu(t,e,i,n){let r=n.stringPrefixes||yu.stringPrefixes,s=null,o=t.changeByRange((n=>{if(!n.empty)return{changes:[{insert:e,from:n.from},{insert:e,from:n.to}],effects:xu.of(n.to+e.length),range:C.range(n.anchor+e.length,n.head+e.length)};let o,a=n.head,l=qu(t.doc,a);if(l==e){if(Vu(t,a))return{changes:{insert:e+e,from:a},effects:xu.of(a+e.length),range:C.cursor(a+e.length)};if(Cu(t,a)){let n=i&&t.sliceDoc(a,a+3*e.length)==e+e+e?e+e+e:e;return{changes:{from:a,to:a+n.length,insert:n},range:C.cursor(a+n.length)}}}else{if(i&&t.sliceDoc(a-2*e.length,a)==e+e&&(o=Mu(t,a-2*e.length,r))>-1&&Vu(t,o))return{changes:{insert:e+e+e+e,from:a},effects:xu.of(a+e.length),range:C.cursor(a+e.length)};if(t.charCategorizer(a)(l)!=St.Word&&Mu(t,a,r)>-1&&!function(t,e,i,n){let r=cl(t).resolveInner(e,-1),s=n.reduce(((t,e)=>Math.max(t,e.length)),0);for(let o=0;o<5;o++){let o=t.sliceDoc(r.from,Math.min(r.to,r.from+i.length+s)),a=o.indexOf(i);if(!a||a>-1&&n.indexOf(o.slice(0,a))>-1){let e=r.firstChild;for(;e&&e.from==r.from&&e.to-e.from>i.length+a;){if(t.sliceDoc(e.to-i.length,e.to)==i)return!1;e=e.firstChild}return!0}let l=r.to==e&&r.parent;if(!l)break;r=l}return!1}(t,a,e,r))return{changes:{insert:e+e,from:a},effects:xu.of(a+e.length),range:C.cursor(a+e.length)}}return{range:s=n}}));return s?null:t.update(o,{scrollIntoView:!0,userEvent:"input.type"})}function Vu(t,e){let i=cl(t).resolveInner(e+1);return i.parent&&i.from==e}function Mu(t,e,i){let n=t.charCategorizer(e);if(n(t.sliceDoc(e-1,e))!=St.Word)return e;for(let r of i){let i=e-r.length;if(t.sliceDoc(i,e)==r&&n(t.sliceDoc(i-1,i))!=St.Word)return i}return-1}function Eu(t={}){return[ru,Hd,Cd.of(t),iu,Uu,su]}const Yu=[{key:"Ctrl-Space",run:t=>!!t.state.field(Hd,!1)&&(t.dispatch({effects:_d.of(!0)}),!0)},{key:"Escape",run:t=>{let e=t.state.field(Hd,!1);return!(!e||!e.active.some((t=>0!=t.state)))&&(t.dispatch({effects:Rd.of(null)}),!0)}},{key:"ArrowDown",run:tu(!0)},{key:"ArrowUp",run:tu(!1)},{key:"PageDown",run:tu(!0,"page")},{key:"PageUp",run:tu(!1,"page")},{key:"Enter",run:t=>{let e=t.state.field(Hd,!1);return!(t.state.readOnly||!e||!e.open||e.open.selected<0||e.open.disabled||Date.now()-e.open.timestampt.facet(Cd).defaultKeymap?[Yu]:[])));class ju{constructor(t,e,i){this.from=t,this.to=e,this.diagnostic=i}}class Du{constructor(t,e,i){this.diagnostics=t,this.panel=e,this.selected=i}static init(t,e,i){let n=t,r=i.facet(ef).markerFilter;r&&(n=r(n,i));let s=si.set(n.map((t=>t.from==t.to||t.from==t.to-1&&i.doc.lineAt(t.from).to==t.from?si.widget({widget:new sf(t),diagnostic:t}).range(t.from):si.mark({attributes:{class:"cm-lintRange cm-lintRange-"+t.severity+(t.markClass?" "+t.markClass:"")},diagnostic:t,inclusive:!0}).range(t.from,t.to))),!0);return new Du(s,e,Gu(s))}}function Gu(t,e=null,i=0){let n=null;return t.between(i,1e9,((t,i,{spec:r})=>{if(!e||r.diagnostic==e)return n=new ju(t,i,r.diagnostic),!1})),n}const Lu=dt.define(),Nu=dt.define(),Iu=dt.define(),Bu=j.define({create:()=>new Du(si.none,null,null),update(t,e){if(e.docChanged&&t.diagnostics.size){let i=t.diagnostics.map(e.changes),n=null,r=t.panel;if(t.selected){let r=e.changes.mapPos(t.selected.from,1);n=Gu(i,t.selected.diagnostic,r)||Gu(i,null,r)}!i.size&&r&&e.state.facet(ef).autoPanel&&(r=null),t=new Du(i,r,n)}for(let i of e.effects)if(i.is(Lu)){let n=e.state.facet(ef).autoPanel?i.value.length?af.open:null:t.panel;t=Du.init(i.value,n,e.state)}else i.is(Nu)?t=new Du(t.diagnostics,i.value?af.open:null,t.selected):i.is(Iu)&&(t=new Du(t.diagnostics,t.panel,i.value));return t},provide:t=>[po.from(t,(t=>t.panel)),Ir.decorations.from(t,(t=>t.diagnostics))]}),Fu=si.mark({class:"cm-lintRange cm-lintRange-active",inclusive:!0});function Hu(t,e,i){let{diagnostics:n}=t.state.field(Bu),r=[],s=2e8,o=0;n.between(e-(i<0?1:0),e+(i>0?1:0),((t,n,{spec:a})=>{e>=t&&e<=n&&(t==n||(e>t||i>0)&&(e({dom:Ju(t,r)})}:null}function Ju(t,e){return pO("ul",{class:"cm-tooltip-lint"},e.map((e=>rf(t,e,!1))))}const Ku=t=>{let e=t.state.field(Bu,!1);return!(!e||!e.panel)&&(t.dispatch({effects:Nu.of(!1)}),!0)},tf=[{key:"Mod-Shift-m",run:t=>{let e=t.state.field(Bu,!1);var i,n;e&&e.panel||t.dispatch({effects:(i=t.state,n=[Nu.of(!0)],i.field(Bu,!1)?n:n.concat(dt.appendConfig.of(cf)))});let r=co(t,af.open);return r&&r.dom.querySelector(".cm-panel-lint ul").focus(),!0},preventDefault:!0},{key:"F8",run:t=>{let e=t.state.field(Bu,!1);if(!e)return!1;let i=t.state.selection.main,n=e.diagnostics.iter(i.to+1);return!(!n.value&&(n=e.diagnostics.iter(0),!n.value||n.from==i.from&&n.to==i.to))&&(t.dispatch({selection:{anchor:n.from,head:n.to},scrollIntoView:!0}),!0)}}],ef=A.define({combine:t=>Object.assign({sources:t.map((t=>t.source)).filter((t=>null!=t))},kt(t.map((t=>t.config)),{delay:750,markerFilter:null,tooltipFilter:null,needsRefresh:null,hideOn:()=>null},{needsRefresh:(t,e)=>t?e?i=>t(i)||e(i):t:e}))});function nf(t){let e=[];if(t)t:for(let{name:i}of t){for(let t=0;tt.toLowerCase()==n.toLowerCase()))){e.push(n);continue t}}e.push("")}return e}function rf(t,e,i){var n;let r=i?nf(e.actions):[];return pO("li",{class:"cm-diagnostic cm-diagnostic-"+e.severity},pO("span",{class:"cm-diagnosticText"},e.renderMessage?e.renderMessage(t):e.message),null===(n=e.actions)||void 0===n?void 0:n.map(((i,n)=>{let s=!1,o=n=>{if(n.preventDefault(),s)return;s=!0;let r=Gu(t.state.field(Bu).diagnostics,e);r&&i.apply(t,r.from,r.to)},{name:a}=i,l=r[n]?a.indexOf(r[n]):-1,h=l<0?a:[a.slice(0,l),pO("u",a.slice(l,l+1)),a.slice(l+1)];return pO("button",{type:"button",class:"cm-diagnosticAction",onclick:o,onmousedown:o,"aria-label":` Action: ${a}${l<0?"":` (access key "${r[n]})"`}.`},h)})),e.source&&pO("div",{class:"cm-diagnosticSource"},e.source))}class sf extends ni{constructor(t){super(),this.diagnostic=t}eq(t){return t.diagnostic==this.diagnostic}toDOM(){return pO("span",{class:"cm-lintPoint cm-lintPoint-"+this.diagnostic.severity})}}class of{constructor(t,e){this.diagnostic=e,this.id="item_"+Math.floor(4294967295*Math.random()).toString(16),this.dom=rf(t,e,!0),this.dom.id=this.id,this.dom.setAttribute("role","option")}}class af{constructor(t){this.view=t,this.items=[];this.list=pO("ul",{tabIndex:0,role:"listbox","aria-label":this.view.state.phrase("Diagnostics"),onkeydown:e=>{if(27==e.keyCode)Ku(this.view),this.view.focus();else if(38==e.keyCode||33==e.keyCode)this.moveSelection((this.selectedIndex-1+this.items.length)%this.items.length);else if(40==e.keyCode||34==e.keyCode)this.moveSelection((this.selectedIndex+1)%this.items.length);else if(36==e.keyCode)this.moveSelection(0);else if(35==e.keyCode)this.moveSelection(this.items.length-1);else if(13==e.keyCode)this.view.focus();else{if(!(e.keyCode>=65&&e.keyCode<=90&&this.selectedIndex>=0))return;{let{diagnostic:i}=this.items[this.selectedIndex],n=nf(i.actions);for(let r=0;r{for(let e=0;eKu(this.view)},"×")),this.update()}get selectedIndex(){let t=this.view.state.field(Bu).selected;if(!t)return-1;for(let e=0;e{let a,l=-1;for(let t=i;ti&&(this.items.splice(i,l-i),n=!0)),e&&a.diagnostic==e.diagnostic?a.dom.hasAttribute("aria-selected")||(a.dom.setAttribute("aria-selected","true"),r=a):a.dom.hasAttribute("aria-selected")&&a.dom.removeAttribute("aria-selected"),i++}));i({sel:r.dom.getBoundingClientRect(),panel:this.list.getBoundingClientRect()}),write:({sel:t,panel:e})=>{let i=e.height/this.list.offsetHeight;t.tope.bottom&&(this.list.scrollTop+=(t.bottom-e.bottom)/i)}})):this.selectedIndex<0&&this.list.removeAttribute("aria-activedescendant"),n&&this.sync()}sync(){let t=this.list.firstChild;function e(){let e=t;t=e.nextSibling,e.remove()}for(let i of this.items)if(i.dom.parentNode==this.list){for(;t!=i.dom;)e();t=i.dom.nextSibling}else this.list.insertBefore(i.dom,t);for(;t;)e()}moveSelection(t){if(this.selectedIndex<0)return;let e=Gu(this.view.state.field(Bu).diagnostics,this.items[t].diagnostic);e&&this.view.dispatch({selection:{anchor:e.from,head:e.to},scrollIntoView:!0,effects:Iu.of(e)})}static open(t){return new af(t)}}function lf(t){return function(t,e='viewBox="0 0 40 40"'){return`url('data:image/svg+xml,${encodeURIComponent(t)}')`}(``,'width="6" height="3"')}const hf=Ir.baseTheme({".cm-diagnostic":{padding:"3px 6px 3px 8px",marginLeft:"-1px",display:"block",whiteSpace:"pre-wrap"},".cm-diagnostic-error":{borderLeft:"5px solid #d11"},".cm-diagnostic-warning":{borderLeft:"5px solid orange"},".cm-diagnostic-info":{borderLeft:"5px solid #999"},".cm-diagnostic-hint":{borderLeft:"5px solid #66d"},".cm-diagnosticAction":{font:"inherit",border:"none",padding:"2px 4px",backgroundColor:"#444",color:"white",borderRadius:"3px",marginLeft:"8px",cursor:"pointer"},".cm-diagnosticSource":{fontSize:"70%",opacity:.7},".cm-lintRange":{backgroundPosition:"left bottom",backgroundRepeat:"repeat-x",paddingBottom:"0.7px"},".cm-lintRange-error":{backgroundImage:lf("#d11")},".cm-lintRange-warning":{backgroundImage:lf("orange")},".cm-lintRange-info":{backgroundImage:lf("#999")},".cm-lintRange-hint":{backgroundImage:lf("#66d")},".cm-lintRange-active":{backgroundColor:"#ffdd9980"},".cm-tooltip-lint":{padding:0,margin:0},".cm-lintPoint":{position:"relative","&:after":{content:'""',position:"absolute",bottom:0,left:"-2px",borderLeft:"3px solid transparent",borderRight:"3px solid transparent",borderBottom:"4px solid #d11"}},".cm-lintPoint-warning":{"&:after":{borderBottomColor:"orange"}},".cm-lintPoint-info":{"&:after":{borderBottomColor:"#999"}},".cm-lintPoint-hint":{"&:after":{borderBottomColor:"#66d"}},".cm-panel.cm-panel-lint":{position:"relative","& ul":{maxHeight:"100px",overflowY:"auto","& [aria-selected]":{backgroundColor:"#ddd","& u":{textDecoration:"underline"}},"&:focus [aria-selected]":{background_fallback:"#bdf",backgroundColor:"Highlight",color_fallback:"white",color:"HighlightText"},"& u":{textDecoration:"none"},padding:0,margin:0},"& [name=close]":{position:"absolute",top:"0",right:"2px",background:"inherit",border:"none",font:"inherit",padding:0,margin:0}}}),cf=[Bu,Ir.decorations.compute([Bu],(t=>{let{selected:e,panel:i}=t.field(Bu);return e&&i&&e.from!=e.to?si.set([Fu.range(e.from,e.to)]):si.none})),oo(Hu,{hideOn:function(t,e){let i=e.pos,n=e.end||i,r=t.state.facet(ef).hideOn(t,i,n);if(null!=r)return r;let s=t.startState.doc.lineAt(e.pos);return!(!t.effects.some((t=>t.is(Lu)))&&!t.changes.touchesRange(s.from,Math.max(s.to,n)))}}),hf],Of=(()=>[qo(),zo,qs(),Hh(),oh(),gs(),[ks,Ps],xt.allowMultipleSelections.of(!0),xt.transactionFilter.of((t=>{if(!t.docChanged||!t.isUserEvent("input.type")&&!t.isUserEvent("input.complete"))return t;let e=t.startState.languageDataAt("indentOnInput",t.startState.selection.main.head);if(!e.length)return t;let i=t.newDoc,{head:n}=t.newSelection.main,r=i.lineAt(n);if(n>r.from+200)return t;let s=i.sliceString(r.from,n);if(!e.some((t=>t.test(s))))return t;let{state:o}=t,a=-1,l=[];for(let{head:t}of o.selection.ranges){let e=o.doc.lineAt(t);if(e.from==a)continue;a=e.from;let i=Pl(o,e.from);if(null==i)continue;let n=/^\s*/.exec(e.text)[0],r=kl(o,i);n!=r&&l.push({from:e.from,to:e.from+n.length,insert:r})}return l.length?[t,{changes:l,sequential:!0}]:t})),dh(ph,{fallback:!0}),kh(),[Zu,Pu],Eu(),Ir.mouseSelectionStyle.of(((t,e)=>(t=>t.altKey&&0==t.button)(e)?Us(t,e):null)),Gs(),Ms,[AO,WO],is.of([...Xu,...uO,...Od,...fc,...Hl,...Yu,...tf])])(),df=(()=>[qs(),Hh(),gs(),dh(ph,{fallback:!0}),is.of([...uO,...fc])])();class uf{constructor(t,e,i,n,r,s,o,a,l,h=0,c){this.p=t,this.stack=e,this.state=i,this.reducePos=n,this.pos=r,this.score=s,this.buffer=o,this.bufferBase=a,this.curContext=l,this.lookAhead=h,this.parent=c}toString(){return`[${this.stack.filter(((t,e)=>e%3==0)).concat(this.state)}]@${this.pos}${this.score?"!"+this.score:""}`}static start(t,e,i=0){let n=t.parser.context;return new uf(t,[],e,i,i,0,[],0,n?new ff(n,n.start):null,0,null)}get context(){return this.curContext?this.curContext.context:null}pushState(t,e){this.stack.push(this.state,e,this.bufferBase+this.buffer.length),this.state=t}reduce(t){var e;let i=t>>19,n=65535&t,{parser:r}=this.p,s=this.reducePos=2e3&&!(null===(e=this.p.parser.nodeSet.types[n])||void 0===e?void 0:e.isAnonymous)&&(l==this.p.lastBigReductionStart?(this.p.bigReductionCount++,this.p.lastBigReductionSize=h):this.p.lastBigReductionSizea;)this.stack.pop();this.reduceContext(n,l)}storeNode(t,e,i,n=4,r=!1){if(0==t&&(!this.stack.length||this.stack[this.stack.length-1]0&&0==t.buffer[n-4]&&t.buffer[n-1]>-1){if(e==i)return;if(t.buffer[n-2]>=e)return void(t.buffer[n-2]=i)}}if(r&&this.pos!=i){let r=this.buffer.length;if(r>0&&0!=this.buffer[r-4]){let t=!1;for(let e=r;e>0&&this.buffer[e-2]>i;e-=4)if(this.buffer[e-1]>=0){t=!0;break}if(t)for(;r>0&&this.buffer[r-2]>i;)this.buffer[r]=this.buffer[r-4],this.buffer[r+1]=this.buffer[r-3],this.buffer[r+2]=this.buffer[r-2],this.buffer[r+3]=this.buffer[r-1],r-=4,n>4&&(n-=4)}this.buffer[r]=t,this.buffer[r+1]=e,this.buffer[r+2]=i,this.buffer[r+3]=n}else this.buffer.push(t,e,i,n)}shift(t,e,i,n){if(131072&t)this.pushState(65535&t,this.pos);else if(262144&t)this.pos=n,this.shiftContext(e,i),e<=this.p.parser.maxNode&&this.buffer.push(e,i,n,4);else{let r=t,{parser:s}=this.p;(n>this.pos||e<=s.maxNode)&&(this.pos=n,s.stateFlag(r,1)||(this.reducePos=n)),this.pushState(r,i),this.shiftContext(e,i),e<=s.maxNode&&this.buffer.push(e,i,n,4)}}apply(t,e,i,n){65536&t?this.reduce(t):this.shift(t,e,i,n)}useNode(t,e){let i=this.p.reused.length-1;(i<0||this.p.reused[i]!=t)&&(this.p.reused.push(t),i++);let n=this.pos;this.reducePos=this.pos=n+t.length,this.pushState(e,n),this.buffer.push(i,n,this.reducePos,-1),this.curContext&&this.updateContext(this.curContext.tracker.reuse(this.curContext.context,t,this,this.p.stream.reset(this.pos-t.length)))}split(){let t=this,e=t.buffer.length;for(;e>0&&t.buffer[e-2]>t.reducePos;)e-=4;let i=t.buffer.slice(e),n=t.bufferBase+e;for(;t&&n==t.bufferBase;)t=t.parent;return new uf(this.p,this.stack.slice(),this.state,this.reducePos,this.pos,this.score,i,n,this.curContext,this.lookAhead,t)}recoverByDelete(t,e){let i=t<=this.p.parser.maxNode;i&&this.storeNode(t,this.pos,e,4),this.storeNode(0,this.pos,e,i?8:4),this.pos=this.reducePos=e,this.score-=190}canShift(t){for(let e=new pf(this);;){let i=this.p.parser.stateSlot(e.state,4)||this.p.parser.hasAction(e.state,t);if(0==i)return!1;if(!(65536&i))return!0;e.reduce(i)}}recoverByInsert(t){if(this.stack.length>=300)return[];let e=this.p.parser.nextStates(this.state);if(e.length>8||this.stack.length>=120){let i=[];for(let n,r=0;r1&e&&t==n))||i.push(e[t],n)}e=i}let i=[];for(let t=0;t>19,n=65535&e,r=this.stack.length-3*i;if(r<0||t.getGoto(this.stack[r],n,!1)<0){let t=this.findForcedReduction();if(null==t)return!1;e=t}this.storeNode(0,this.pos,this.pos,4,!0),this.score-=100}return this.reducePos=this.pos,this.reduce(e),!0}findForcedReduction(){let{parser:t}=this.p,e=[],i=(n,r)=>{if(!e.includes(n))return e.push(n),t.allActions(n,(e=>{if(393216&e);else if(65536&e){let i=(e>>19)-r;if(i>1){let n=65535&e,r=this.stack.length-3*i;if(r>=0&&t.getGoto(this.stack[r],n,!1)>=0)return i<<19|65536|n}}else{let t=i(e,r+1);if(null!=t)return t}}))};return i(this.state,0)}forceAll(){for(;!this.p.parser.stateFlag(this.state,2);)if(!this.forceReduce()){this.storeNode(0,this.pos,this.pos,4,!0);break}return this}get deadEnd(){if(3!=this.stack.length)return!1;let{parser:t}=this.p;return 65535==t.data[t.stateSlot(this.state,1)]&&!t.stateSlot(this.state,4)}restart(){this.storeNode(0,this.pos,this.pos,4,!0),this.state=this.stack[0],this.stack.length=0}sameState(t){if(this.state!=t.state||this.stack.length!=t.stack.length)return!1;for(let e=0;ethis.lookAhead&&(this.emitLookAhead(),this.lookAhead=t)}close(){this.curContext&&this.curContext.tracker.strict&&this.emitContext(),this.lookAhead>0&&this.emitLookAhead()}}class ff{constructor(t,e){this.tracker=t,this.context=e,this.hash=t.strict?t.hash(e):0}}class pf{constructor(t){this.start=t,this.state=t.state,this.stack=t.stack,this.base=this.stack.length}reduce(t){let e=65535&t,i=t>>19;0==i?(this.stack==this.start.stack&&(this.stack=this.stack.slice()),this.stack.push(this.state,0,0),this.base+=3):this.base-=3*(i-1);let n=this.start.p.parser.getGoto(this.stack[this.base-3],e,!0);this.state=n}}class mf{constructor(t,e,i){this.stack=t,this.pos=e,this.index=i,this.buffer=t.buffer,0==this.index&&this.maybeNext()}static create(t,e=t.bufferBase+t.buffer.length){return new mf(t,e,e-t.bufferBase)}maybeNext(){let t=this.stack.parent;null!=t&&(this.index=this.stack.bufferBase-t.bufferBase,this.stack=t,this.buffer=t.buffer)}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}next(){this.index-=4,this.pos-=4,0==this.index&&this.maybeNext()}fork(){return new mf(this.stack,this.pos,this.index)}}function gf(t,e=Uint16Array){if("string"!=typeof t)return t;let i=null;for(let n=0,r=0;n=92&&e--,e>=34&&e--;let r=e-32;if(r>=46&&(r-=46,i=!0),s+=r,i)break;s*=46}i?i[r++]=s:i=new e(s)}return i}class Qf{constructor(){this.start=-1,this.value=-1,this.end=-1,this.extended=-1,this.lookAhead=0,this.mask=0,this.context=0}}const bf=new Qf;class Sf{constructor(t,e){this.input=t,this.ranges=e,this.chunk="",this.chunkOff=0,this.chunk2="",this.chunk2Pos=0,this.next=-1,this.token=bf,this.rangeIndex=0,this.pos=this.chunkPos=e[0].from,this.range=e[0],this.end=e[e.length-1].to,this.readNext()}resolveOffset(t,e){let i=this.range,n=this.rangeIndex,r=this.pos+t;for(;ri.to:r>=i.to;){if(n==this.ranges.length-1)return null;let t=this.ranges[++n];r+=t.from-i.to,i=t}return r}clipPos(t){if(t>=this.range.from&&tt)return Math.max(t,e.from);return this.end}peek(t){let e,i,n=this.chunkOff+t;if(n>=0&&n=this.chunk2Pos&&en.to&&(this.chunk2=this.chunk2.slice(0,n.to-e)),i=this.chunk2.charCodeAt(0)}}return e>=this.token.lookAhead&&(this.token.lookAhead=e+1),i}acceptToken(t,e=0){let i=e?this.resolveOffset(e,-1):this.pos;if(null==i||i=this.chunk2Pos&&this.posthis.range.to?t.slice(0,this.range.to-this.pos):t,this.chunkPos=this.pos,this.chunkOff=0}}readNext(){return this.chunkOff>=this.chunk.length&&(this.getChunk(),this.chunkOff==this.chunk.length)?this.next=-1:this.next=this.chunk.charCodeAt(this.chunkOff)}advance(t=1){for(this.chunkOff+=t;this.pos+t>=this.range.to;){if(this.rangeIndex==this.ranges.length-1)return this.setDone();t-=this.range.to-this.pos,this.range=this.ranges[++this.rangeIndex],this.pos=this.range.from}return this.pos+=t,this.pos>=this.token.lookAhead&&(this.token.lookAhead=this.pos+1),this.readNext()}setDone(){return this.pos=this.chunkPos=this.end,this.range=this.ranges[this.rangeIndex=this.ranges.length-1],this.chunk="",this.next=-1}reset(t,e){if(e?(this.token=e,e.start=t,e.lookAhead=t+1,e.value=e.extended=-1):this.token=bf,this.pos!=t){if(this.pos=t,t==this.end)return this.setDone(),this;for(;t=this.range.to;)this.range=this.ranges[++this.rangeIndex];t>=this.chunkPos&&t=this.chunkPos&&e<=this.chunkPos+this.chunk.length)return this.chunk.slice(t-this.chunkPos,e-this.chunkPos);if(t>=this.chunk2Pos&&e<=this.chunk2Pos+this.chunk2.length)return this.chunk2.slice(t-this.chunk2Pos,e-this.chunk2Pos);if(t>=this.range.from&&e<=this.range.to)return this.input.read(t,e);let i="";for(let n of this.ranges){if(n.from>=e)break;n.to>t&&(i+=this.input.read(Math.max(n.from,t),Math.min(n.to,e)))}return i}}class vf{constructor(t,e){this.data=t,this.id=e}token(t,e){let{parser:i}=e.p;xf(this.data,t,e,this.id,i.data,i.tokenPrecTable)}}vf.prototype.contextual=vf.prototype.fallback=vf.prototype.extend=!1;class wf{constructor(t,e,i){this.precTable=e,this.elseToken=i,this.data="string"==typeof t?gf(t):t}token(t,e){let i=t.pos,n=0;for(;;){let i=t.next<0,r=t.resolveOffset(1,1);if(xf(this.data,t,e,0,this.data,this.precTable),t.token.value>-1)break;if(null==this.elseToken)return;if(i||n++,null==r)break;t.reset(r,t.token)}n&&(t.reset(i,t.token),t.acceptToken(this.elseToken,n))}}wf.prototype.contextual=vf.prototype.fallback=vf.prototype.extend=!1;class yf{constructor(t,e={}){this.token=t,this.contextual=!!e.contextual,this.fallback=!!e.fallback,this.extend=!!e.extend}}function xf(t,e,i,n,r,s){let o=0,a=1<0){let i=t[n];if(l.allows(i)&&(-1==e.token.value||e.token.value==i||Pf(i,e.token.value,r,s))){e.acceptToken(i);break}}let n=e.next,h=0,c=t[o+2];if(!(e.next<0&&c>h&&65535==t[i+3*c-3])){for(;h>1,s=i+r+(r<<1),a=t[s],l=t[s+1]||65536;if(n=l)){o=t[s+2],e.advance();continue t}h=r+1}}break}o=t[i+3*c-1]}}function kf(t,e,i){for(let n,r=e;65535!=(n=t[r]);r++)if(n==i)return r-e;return-1}function Pf(t,e,i,n){let r=kf(i,n,e);return r<0||kf(i,n,t)e)&&!n.type.isError)return i<0?Math.max(0,Math.min(n.to-1,e-25)):Math.min(t.length,Math.max(n.from+1,e+25));if(i<0?n.prevSibling():n.nextSibling())break;if(!n.parent())return i<0?0:t.length}}let Rf=class{constructor(t,e){this.fragments=t,this.nodeSet=e,this.i=0,this.fragment=null,this.safeFrom=-1,this.safeTo=-1,this.trees=[],this.start=[],this.index=[],this.nextFragment()}nextFragment(){let t=this.fragment=this.i==this.fragments.length?null:this.fragments[this.i++];if(t){for(this.safeFrom=t.openStart?_f(t.tree,t.from+t.offset,1)-t.offset:t.from,this.safeTo=t.openEnd?_f(t.tree,t.to+t.offset,-1)-t.offset:t.to;this.trees.length;)this.trees.pop(),this.start.pop(),this.index.pop();this.trees.push(t.tree),this.start.push(-t.offset),this.index.push(0),this.nextStart=this.safeFrom}else this.nextStart=1e9}nodeAt(t){if(tt)return this.nextStart=s,null;if(r instanceof Bo){if(s==t){if(s=Math.max(this.safeFrom,t)&&(this.trees.push(r),this.start.push(s),this.index.push(0))}else this.index[e]++,this.nextStart=s+r.length}}};class Zf{constructor(t,e){this.stream=e,this.tokens=[],this.mainToken=null,this.actions=[],this.tokens=t.tokenizers.map((t=>new Qf))}getActions(t){let e=0,i=null,{parser:n}=t.p,{tokenizers:r}=n,s=n.stateSlot(t.state,3),o=t.curContext?t.curContext.hash:0,a=0;for(let n=0;nh.end+25&&(a=Math.max(h.lookAhead,a)),0!=h.value)){let n=e;if(h.extended>-1&&(e=this.addActions(t,h.extended,h.end,e)),e=this.addActions(t,h.value,h.end,e),!l.extend&&(i=h,e>n))break}}for(;this.actions.length>e;)this.actions.pop();return a&&t.setLookAhead(a),i||t.pos!=this.stream.end||(i=new Qf,i.value=t.p.parser.eofTerm,i.start=i.end=t.pos,e=this.addActions(t,i.value,i.end,e)),this.mainToken=i,this.actions}getMainToken(t){if(this.mainToken)return this.mainToken;let e=new Qf,{pos:i,p:n}=t;return e.start=i,e.end=Math.min(i+1,n.stream.end),e.value=i==n.stream.end?n.parser.eofTerm:0,e}updateCachedToken(t,e,i){let n=this.stream.clipPos(i.pos);if(e.token(this.stream.reset(n,t),i),t.value>-1){let{parser:e}=i.p;for(let n=0;n=0&&i.p.parser.dialect.allows(r>>1)){1&r?t.extended=r>>1:t.value=r>>1;break}}}else t.value=0,t.end=this.stream.clipPos(n+1)}putAction(t,e,i,n){for(let e=0;e4*t.bufferLength?new Rf(i,t.nodeSet):null}get parsedPos(){return this.minStackPos}advance(){let t,e,i=this.stacks,n=this.minStackPos,r=this.stacks=[];if(this.bigReductionCount>300&&1==i.length){let[t]=i;for(;t.forceReduce()&&t.stack.length&&t.stack[t.stack.length-2]>=this.lastBigReductionStart;);this.bigReductionCount=this.lastBigReductionSize=0}for(let s=0;sn)r.push(o);else{if(this.advanceStack(o,r,i))continue;{t||(t=[],e=[]),t.push(o);let i=this.tokens.getMainToken(o);e.push(i.value,i.end)}}break}}if(!r.length){let e=t&&function(t){let e=null;for(let i of t){let t=i.p.stoppedAt;(i.pos==i.p.stream.end||null!=t&&i.pos>t)&&i.p.parser.stateFlag(i.state,2)&&(!e||e.scorethis.stoppedAt?t[0]:this.runRecovery(t,e,r);if(i)return $f&&console.log("Force-finish "+this.stackID(i)),this.stackToTree(i.forceAll())}if(this.recovering){let t=1==this.recovering?1:3*this.recovering;if(r.length>t)for(r.sort(((t,e)=>e.score-t.score));r.length>t;)r.pop();r.some((t=>t.reducePos>n))&&this.recovering--}else if(r.length>1){t:for(let t=0;t500&&n.buffer.length>500){if(!((e.score-n.score||e.buffer.length-n.buffer.length)>0)){r.splice(t--,1);continue t}r.splice(i--,1)}}}r.length>12&&r.splice(12,r.length-12)}this.minStackPos=r[0].pos;for(let t=1;t ":"";if(null!=this.stoppedAt&&n>this.stoppedAt)return t.forceReduce()?t:null;if(this.fragments){let e=t.curContext&&t.curContext.tracker.strict,i=e?t.curContext.hash:0;for(let o=this.fragments.nodeAt(n);o;){let n=this.parser.nodeSet.types[o.type.id]==o.type?r.getGoto(t.state,o.type.id):-1;if(n>-1&&o.length&&(!e||(o.prop(Yo.contextHash)||0)==i))return t.useNode(o,n),$f&&console.log(s+this.stackID(t)+` (via reuse of ${r.getName(o.type.id)})`),!0;if(!(o instanceof Bo)||0==o.children.length||o.positions[0]>0)break;let a=o.children[0];if(!(a instanceof Bo&&0==o.positions[0]))break;o=a}}let o=r.stateSlot(t.state,4);if(o>0)return t.reduce(o),$f&&console.log(s+this.stackID(t)+` (via always-reduce ${r.getName(65535&o)})`),!0;if(t.stack.length>=8400)for(;t.stack.length>6e3&&t.forceReduce(););let a=this.tokens.getActions(t);for(let o=0;on?e.push(d):i.push(d)}return!1}advanceFully(t,e){let i=t.pos;for(;;){if(!this.advanceStack(t,null,null))return!1;if(t.pos>i)return Cf(t,e),!0}}runRecovery(t,e,i){let n=null,r=!1;for(let s=0;s ":"";if(o.deadEnd){if(r)continue;if(r=!0,o.restart(),$f&&console.log(h+this.stackID(o)+" (restarted)"),this.advanceFully(o,i))continue}let c=o.split(),O=h;for(let t=0;c.forceReduce()&&t<10;t++){if($f&&console.log(O+this.stackID(c)+" (via force-reduce)"),this.advanceFully(c,i))break;$f&&(O=this.stackID(c)+" -> ")}for(let t of o.recoverByInsert(a))$f&&console.log(h+this.stackID(t)+" (via recover-insert)"),this.advanceFully(t,i);this.stream.end>o.pos?(l==o.pos&&(l++,a=0),o.recoverByDelete(a,l),$f&&console.log(h+this.stackID(o)+` (via recover-delete ${this.parser.getName(a)})`),Cf(o,i)):(!n||n.scoret;class Af{constructor(t){this.start=t.start,this.shift=t.shift||Wf,this.reduce=t.reduce||Wf,this.reuse=t.reuse||Wf,this.hash=t.hash||(()=>0),this.strict=!1!==t.strict}}class zf extends pa{constructor(t){if(super(),this.wrappers=[],14!=t.version)throw new RangeError(`Parser version (${t.version}) doesn't match runtime version (14)`);let e=t.nodeNames.split(" ");this.minRepeatTerm=e.length;for(let i=0;it.topRules[e][1])),n=[];for(let t=0;t=0)r(n,t,e[i++]);else{let s=e[i+-n];for(let o=-n;o>0;o--)r(e[i++],t,s);i++}}}this.nodeSet=new Go(e.map(((e,r)=>Do.define({name:r>=this.minRepeatTerm?void 0:e,id:r,props:n[r],top:i.indexOf(r)>-1,error:0==r,skipped:t.skippedNodes&&t.skippedNodes.indexOf(r)>-1})))),t.propSources&&(this.nodeSet=this.nodeSet.extend(...t.propSources)),this.strict=!1,this.bufferLength=Vo;let s=gf(t.tokenData);this.context=t.context,this.specializerSpecs=t.specialized||[],this.specialized=new Uint16Array(this.specializerSpecs.length);for(let t=0;t"number"==typeof t?new vf(s,t):t)),this.topRules=t.topRules,this.dialects=t.dialects||{},this.dynamicPrecedences=t.dynamicPrecedences||null,this.tokenPrecTable=t.tokenPrec,this.termNames=t.termNames||null,this.maxNode=this.nodeSet.types.length-1,this.dialect=this.parseDialect(),this.top=this.topRules[Object.keys(this.topRules)[0]]}createParse(t,e,i){let n=new Xf(this,t,e,i);for(let r of this.wrappers)n=r(n,t,e,i);return n}getGoto(t,e,i=!1){let n=this.goto;if(e>=n[0])return-1;for(let r=n[e+1];;){let e=n[r++],s=1&e,o=n[r++];if(s&&i)return o;for(let i=r+(e>>1);r0}validAction(t,e){return!!this.allActions(t,(t=>t==e||null))}allActions(t,e){let i=this.stateSlot(t,4),n=i?e(i):void 0;for(let i=this.stateSlot(t,1);null==n;i+=3){if(65535==this.data[i]){if(1!=this.data[i+1])break;i=Vf(this.data,i+2)}n=e(Vf(this.data,i+1))}return n}nextStates(t){let e=[];for(let i=this.stateSlot(t,1);;i+=3){if(65535==this.data[i]){if(1!=this.data[i+1])break;i=Vf(this.data,i+2)}if(!(1&this.data[i+2])){let t=this.data[i+1];e.some(((e,i)=>1&i&&e==t))||e.push(this.data[i],t)}}return e}configure(t){let e=Object.assign(Object.create(zf.prototype),this);if(t.props&&(e.nodeSet=this.nodeSet.extend(...t.props)),t.top){let i=this.topRules[t.top];if(!i)throw new RangeError(`Invalid top rule name ${t.top}`);e.top=i}return t.tokenizers&&(e.tokenizers=this.tokenizers.map((e=>{let i=t.tokenizers.find((t=>t.from==e));return i?i.to:e}))),t.specializers&&(e.specializers=this.specializers.slice(),e.specializerSpecs=this.specializerSpecs.map(((i,n)=>{let r=t.specializers.find((t=>t.from==i.external));if(!r)return i;let s=Object.assign(Object.assign({},i),{external:r.to});return e.specializers[n]=Mf(s),s}))),t.contextTracker&&(e.context=t.contextTracker),t.dialect&&(e.dialect=this.parseDialect(t.dialect)),null!=t.strict&&(e.strict=t.strict),t.wrap&&(e.wrappers=e.wrappers.concat(t.wrap)),null!=t.bufferLength&&(e.bufferLength=t.bufferLength),e}hasWrappers(){return this.wrappers.length>0}getName(t){return this.termNames?this.termNames[t]:String(t<=this.maxNode&&this.nodeSet.types[t].name||t)}get eofTerm(){return this.maxNode+1}get topNode(){return this.nodeSet.types[this.top[1]]}dynamicPrecedence(t){let e=this.dynamicPrecedences;return null==e?0:e[t]||0}parseDialect(t){let e=Object.keys(this.dialects),i=e.map((()=>!1));if(t)for(let n of t.split(" ")){let t=e.indexOf(n);t>=0&&(i[t]=!0)}let n=null;for(let t=0;tt.external(i,n)<<1|e}return t.get}const Ef=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],Yf=new Af({start:!1,shift:(t,e)=>5==e||6==e||315==e?t:316==e,strict:!1}),Uf=new yf(((t,e)=>{let{next:i}=t;(125==i||-1==i||e.context)&&t.acceptToken(313)}),{contextual:!0,fallback:!0}),jf=new yf(((t,e)=>{let i,{next:n}=t;Ef.indexOf(n)>-1||(47!=n||47!=(i=t.peek(1))&&42!=i)&&(125==n||59==n||-1==n||e.context||t.acceptToken(312))}),{contextual:!0}),Df=new yf(((t,e)=>{let{next:i}=t;if(43==i||45==i){if(t.advance(),i==t.next){t.advance();let i=!e.context&&e.canShift(1);t.acceptToken(i?1:2)}}else 63==i&&46==t.peek(1)&&(t.advance(),t.advance(),(t.next<48||t.next>57)&&t.acceptToken(3))}),{contextual:!0});function Gf(t,e){return t>=65&&t<=90||t>=97&&t<=122||95==t||t>=192||!e&&t>=48&&t<=57}const Lf=new yf(((t,e)=>{if(60!=t.next||!e.dialectEnabled(0))return;if(t.advance(),47==t.next)return;let i=0;for(;Ef.indexOf(t.next)>-1;)t.advance(),i++;if(Gf(t.next,!0)){for(t.advance(),i++;Gf(t.next,!1);)t.advance(),i++;for(;Ef.indexOf(t.next)>-1;)t.advance(),i++;if(44==t.next)return;for(let e=0;;e++){if(7==e){if(!Gf(t.next,!0))return;break}if(t.next!="extends".charCodeAt(e))break;t.advance(),i++}}t.acceptToken(4,-i)})),Nf=Wa({"get set async static":il.modifier,"for while do if else switch try catch finally return throw break continue default case":il.controlKeyword,"in of await yield void typeof delete instanceof":il.operatorKeyword,"let var const using function class extends":il.definitionKeyword,"import export from":il.moduleKeyword,"with debugger as new":il.keyword,TemplateString:il.special(il.string),super:il.atom,BooleanLiteral:il.bool,this:il.self,null:il.null,Star:il.modifier,VariableName:il.variableName,"CallExpression/VariableName TaggedTemplateExpression/VariableName":il.function(il.variableName),VariableDefinition:il.definition(il.variableName),Label:il.labelName,PropertyName:il.propertyName,PrivatePropertyName:il.special(il.propertyName),"CallExpression/MemberExpression/PropertyName":il.function(il.propertyName),"FunctionDeclaration/VariableDefinition":il.function(il.definition(il.variableName)),"ClassDeclaration/VariableDefinition":il.definition(il.className),PropertyDefinition:il.definition(il.propertyName),PrivatePropertyDefinition:il.definition(il.special(il.propertyName)),UpdateOp:il.updateOperator,"LineComment Hashbang":il.lineComment,BlockComment:il.blockComment,Number:il.number,String:il.string,Escape:il.escape,ArithOp:il.arithmeticOperator,LogicOp:il.logicOperator,BitOp:il.bitwiseOperator,CompareOp:il.compareOperator,RegExp:il.regexp,Equals:il.definitionOperator,Arrow:il.function(il.punctuation),": Spread":il.punctuation,"( )":il.paren,"[ ]":il.squareBracket,"{ }":il.brace,"InterpolationStart InterpolationEnd":il.special(il.brace),".":il.derefOperator,", ;":il.separator,"@":il.meta,TypeName:il.typeName,TypeDefinition:il.definition(il.typeName),"type enum interface implements namespace module declare":il.definitionKeyword,"abstract global Privacy readonly override":il.modifier,"is keyof unique infer":il.operatorKeyword,JSXAttributeValue:il.attributeValue,JSXText:il.content,"JSXStartTag JSXStartCloseTag JSXSelfCloseEndTag JSXEndTag":il.angleBracket,"JSXIdentifier JSXNameSpacedName":il.tagName,"JSXAttribute/JSXIdentifier JSXAttribute/JSXNameSpacedName":il.attributeName,"JSXBuiltin/JSXIdentifier":il.standard(il.tagName)}),If={__proto__:null,export:20,as:25,from:33,default:36,async:41,function:42,extends:54,this:58,true:66,false:66,null:78,void:82,typeof:86,super:102,new:136,delete:148,yield:157,await:161,class:166,public:229,private:229,protected:229,readonly:231,instanceof:250,satisfies:253,in:254,const:256,import:290,keyof:345,unique:349,infer:355,is:391,abstract:411,implements:413,type:415,let:418,var:420,using:423,interface:429,enum:433,namespace:439,module:441,declare:445,global:449,for:468,of:477,while:480,with:484,do:488,if:492,else:494,switch:498,case:504,try:510,catch:514,finally:518,return:522,throw:526,break:530,continue:534,debugger:538},Bf={__proto__:null,async:123,get:125,set:127,declare:189,public:191,private:191,protected:191,static:193,abstract:195,override:197,readonly:203,accessor:205,new:395},Ff={__proto__:null,"<":187},Hf=zf.deserialize({version:14,states:"$@QO%TQ^OOO%[Q^OOO'_Q`OOP(lOWOOO*zQ?NdO'#CiO+RO!bO'#CjO+aO#tO'#CjO+oO!0LbO'#D^O.QQ^O'#DdO.bQ^O'#DoO%[Q^O'#DwO0fQ^O'#EPOOQ?Mr'#EX'#EXO1PQWO'#EUOOQO'#Em'#EmOOQO'#Ih'#IhO1XQWO'#GpO1dQWO'#ElO1iQWO'#ElO3hQ?NdO'#JmO6[Q?NdO'#JnO6uQWO'#F[O6zQ&jO'#FsOOQ?Mr'#Fe'#FeO7VO,YO'#FeO7eQ7[O'#FzO9RQWO'#FyOOQ?Mr'#Jn'#JnOOQ?Mp'#Jm'#JmO9WQWO'#GtOOQU'#KZ'#KZO9cQWO'#IUO9hQ?MxO'#IVOOQU'#JZ'#JZOOQU'#IZ'#IZQ`Q^OOO`Q^OOO9pQMnO'#DsO9wQ^O'#D{O:OQ^O'#D}O9^QWO'#GpO:VQ7[O'#CoO:eQWO'#EkO:pQWO'#EvO:uQ7[O'#FdO;dQWO'#GpOOQO'#K['#K[O;iQWO'#K[O;wQWO'#GxO;wQWO'#GyO;wQWO'#G{O9^QWO'#HOOVQWO'#CeO>gQWO'#H_O>oQWO'#HeO>oQWO'#HgO`Q^O'#HiO>oQWO'#HkO>oQWO'#HnO>tQWO'#HtO>yQ?MyO'#HzO%[Q^O'#H|O?UQ?MyO'#IOO?aQ?MyO'#IQO9hQ?MxO'#ISO?lQ?NdO'#CiO@nQ`O'#DiQOQWOOO%[Q^O'#D}OAUQWO'#EQO:VQ7[O'#EkOAaQWO'#EkOAlQpO'#FdOOQU'#Cg'#CgOOQ?Mp'#Dn'#DnOOQ?Mp'#Jq'#JqO%[Q^O'#JqOOQO'#Jt'#JtOOQO'#Id'#IdOBlQ`O'#EdOOQ?Mp'#Ec'#EcOOQ?Mp'#Jx'#JxOChQ?NQO'#EdOCrQ`O'#ETOOQO'#Js'#JsODWQ`O'#JtOEeQ`O'#ETOCrQ`O'#EdPErO#@ItO'#CbPOOO)CDx)CDxOOOO'#I['#I[OE}O!bO,59UOOQ?Mr,59U,59UOOOO'#I]'#I]OF]O#tO,59UO%[Q^O'#D`OOOO'#I_'#I_OFkO!0LbO,59xOOQ?Mr,59x,59xOFyQ^O'#I`OG^QWO'#JoOI]QrO'#JoO+}Q^O'#JoOIdQWO,5:OOIzQWO'#EmOJXQWO'#KOOJdQWO'#J}OJdQWO'#J}OJlQWO,5;ZOJqQWO'#J|OOQ?Mv,5:Z,5:ZOJxQ^O,5:ZOLvQ?NdO,5:cOMgQWO,5:kONQQ?MxO'#J{ONXQWO'#JzO9WQWO'#JzONmQWO'#JzONuQWO,5;YONzQWO'#JzO!#PQrO'#JnOOQ?Mr'#Ci'#CiO%[Q^O'#EPO!#oQrO,5:pOOQQ'#Ju'#JuOOQO-EpOOQU'#Jc'#JcOOQU,5>q,5>qOOQU-EtQWO'#HTO9^QWO'#HVO!DgQWO'#HVO:VQ7[O'#HXO!DlQWO'#HXOOQU,5=m,5=mO!DqQWO'#HYO!ESQWO'#CoO!EXQWO,59PO!EcQWO,59PO!GhQ^O,59POOQU,59P,59PO!GxQ?MxO,59PO%[Q^O,59PO!JTQ^O'#HaOOQU'#Hb'#HbOOQU'#Hc'#HcO`Q^O,5=yO!JkQWO,5=yO`Q^O,5>PO`Q^O,5>RO!JpQWO,5>TO`Q^O,5>VO!JuQWO,5>YO!JzQ^O,5>`OOQU,5>f,5>fO%[Q^O,5>fO9hQ?MxO,5>hOOQU,5>j,5>jO# UQWO,5>jOOQU,5>l,5>lO# UQWO,5>lOOQU,5>n,5>nO# rQ`O'#D[O%[Q^O'#JqO# |Q`O'#JqO#!kQ`O'#DjO#!|Q`O'#DjO#%_Q^O'#DjO#%fQWO'#JpO#%nQWO,5:TO#%sQWO'#EqO#&RQWO'#KPO#&ZQWO,5;[O#&`Q`O'#DjO#&mQ`O'#ESOOQ?Mr,5:l,5:lO%[Q^O,5:lO#&tQWO,5:lO>tQWO,5;VO!A}Q`O,5;VO!BVQ7[O,5;VO:VQ7[O,5;VO#&|QWO,5@]O#'RQ(CYO,5:pOOQO-EzO+}Q^O,5>zOOQO,5?Q,5?QO#*ZQ^O'#I`OOQO-E<^-E<^O#*hQWO,5@ZO#*pQrO,5@ZO#*wQWO,5@iOOQ?Mr1G/j1G/jO%[Q^O,5@jO#+PQWO'#IfOOQO-EuQ?NdO1G0|O#>|Q?NdO1G0|O#AZQ07bO'#CiO#CUQ07bO1G1_O#C]Q07bO'#JnO#CpQ?NdO,5?WOOQ?Mp-EoQWO1G3oO$3VQ^O1G3qO$7ZQ^O'#HpOOQU1G3t1G3tO$7hQWO'#HvO>tQWO'#HxOOQU1G3z1G3zO$7pQ^O1G3zO9hQ?MxO1G4QOOQU1G4S1G4SOOQ?Mp'#G]'#G]O9hQ?MxO1G4UO9hQ?MxO1G4WO$;wQWO,5@]O!(oQ^O,5;]O9WQWO,5;]O>tQWO,5:UO!(oQ^O,5:UO!A}Q`O,5:UO$;|Q07bO,5:UOOQO,5;],5;]O$tQWO1G0qO!A}Q`O1G0qO!BVQ7[O1G0qOOQ?Mp1G5w1G5wO!ArQ?MxO1G0ZOOQO1G0j1G0jO%[Q^O1G0jO$=aQ?MxO1G0jO$=lQ?MxO1G0jO!A}Q`O1G0ZOCrQ`O1G0ZO$=zQ?MxO1G0jOOQO1G0Z1G0ZO$>`Q?NdO1G0jPOOO-EjQpO,5rQrO1G4fOOQO1G4l1G4lO%[Q^O,5>zO$>|QWO1G5uO$?UQWO1G6TO$?^QrO1G6UO9WQWO,5?QO$?hQ?NdO1G6RO%[Q^O1G6RO$?xQ?MxO1G6RO$@ZQWO1G6QO$@ZQWO1G6QO9WQWO1G6QO$@cQWO,5?TO9WQWO,5?TOOQO,5?T,5?TO$@wQWO,5?TO$(PQWO,5?TOOQO-E[OOQU,5>[,5>[O%[Q^O'#HqO%8mQWO'#HsOOQU,5>b,5>bO9WQWO,5>bOOQU,5>d,5>dOOQU7+)f7+)fOOQU7+)l7+)lOOQU7+)p7+)pOOQU7+)r7+)rO%8rQ`O1G5wO%9WQ07bO1G0wO%9bQWO1G0wOOQO1G/p1G/pO%9mQ07bO1G/pO>tQWO1G/pO!(oQ^O'#DjOOQO,5>{,5>{OOQO-E<_-E<_OOQO,5?R,5?ROOQO-EtQWO7+&]O!A}Q`O7+&]OOQO7+%u7+%uO$>`Q?NdO7+&UOOQO7+&U7+&UO%[Q^O7+&UO%9wQ?MxO7+&UO!ArQ?MxO7+%uO!A}Q`O7+%uO%:SQ?MxO7+&UO%:bQ?NdO7++mO%[Q^O7++mO%:rQWO7++lO%:rQWO7++lOOQO1G4o1G4oO9WQWO1G4oO%:zQWO1G4oOOQQ7+%z7+%zO#&wQWO<|O%[Q^O,5>|OOQO-E<`-E<`O%FwQWO1G5xOOQ?Mr<]OOQU,5>_,5>_O&8uQWO1G3|O9WQWO7+&cO!(oQ^O7+&cOOQO7+%[7+%[O&8zQ07bO1G6UO>tQWO7+%[OOQ?Mr<tQWO<`Q?NdO<pQ?NdO,5?_O&@xQ?NdO7+'zO&CWQrO1G4hO&CbQ07bO7+&^O&EcQ07bO,5=UO&GgQ07bO,5=WO&GwQ07bO,5=UO&HXQ07bO,5=WO&HiQ07bO,59rO&JlQ07bO,5tQWO7+)hO'(OQWO<`Q?NdOAN?[OOQOAN>{AN>{O%[Q^OAN?[OOQO<`Q?NdOG24vO#&wQWOLD,nOOQULD,nLD,nO!&_Q7[OLD,nO'5TQrOLD,nO'5[Q07bO7+'xO'6}Q07bO,5?]O'8}Q07bO,5?_O':}Q07bO7+'zO'kOh%VOk+aO![']O%f+`O~O!d+cOa(WX![(WX'u(WX!Y(WX~Oa%lO![XO'u%lO~Oh%VO!i%cO~Oh%VO!i%cO(O%eO~O!d#vO#h(tO~Ob+nO%g+oO(O+kO(QTO(TUO!Z)TP~O!Y+pO`)SX~O[+tO~O`+uO~O![%}O(O%eO(P!lO`)SP~Oh%VO#]+zO~Oh%VOk+}O![$|O~O![,PO~O},RO![XO~O%k%tO~O!u,WO~Oe,]O~Ob,^O(O#nO(QTO(TUO!Z)RP~Oe%{O~O%g!QO(O&WO~P=RO[,cO`,bO~OPYOQYOSfOdzOeyOmkOoYOpkOqkOwkOyYO{YO!PWO!TkO!UkO!fuO!iZO!lYO!mYO!nYO!pvO!uxO!y]O%e}O(QTO(TUO([VO(j[O(yiO~O![!eO!r!gO$V!kO(O!dO~P!EkO`,bOa%lO'u%lO~OPYOQYOSfOd!jOe!iOmkOoYOpkOqkOwkOyYO{YO!PWO!TkO!UkO![!eO!fuO!iZO!lYO!mYO!nYO!pvO!u!hO$V!kO(O!dO(QTO(TUO([VO(j[O(yiO~Oa,hO!rwO#t!OO%i!OO%j!OO%k!OO~P!HTO!i&lO~O&Y,nO~O![,pO~O&k,rO&m,sOP&haQ&haS&haY&haa&had&hae&ham&hao&hap&haq&haw&hay&ha{&ha!P&ha!T&ha!U&ha![&ha!f&ha!i&ha!l&ha!m&ha!n&ha!p&ha!r&ha!u&ha!y&ha#t&ha$V&ha%e&ha%g&ha%i&ha%j&ha%k&ha%n&ha%p&ha%s&ha%t&ha%v&ha&S&ha&Y&ha&[&ha&^&ha&`&ha&c&ha&i&ha&o&ha&q&ha&s&ha&u&ha&w&ha's&ha(O&ha(Q&ha(T&ha([&ha(j&ha(y&ha!Z&ha&a&hab&ha&f&ha~O(O,xO~Oh!bX!Y!OX!Z!OX!d!OX!d!bX!i!bX#]!OX~O!Y!bX!Z!bX~P# ZO!d,}O#],|Oh(eX!Y#eX!Y(eX!Z#eX!Z(eX!d(eX!i(eX~Oh%VO!d-PO!i%cO!Y!^X!Z!^X~Op!nO!P!oO(QTO(TUO(`!mO~OP;POQ;POSfOdkOg'XX!Y'XX~P!+hO!Y.wOg(ka~OSfO![3uO$c3vO~O!Z3zO~Os3{O~P#.aOa$lq!Y$lq'u$lq's$lq!V$lq!h$lqs$lq![$lq%f$lq!d$lq~P!9mO!V3|O~P#.aO})zO!P){O(u%POk'ea(t'ea!Y'ea#]'ea~Og'ea#}'ea~P%)nO})zO!P){Ok'ga(t'ga(u'ga!Y'ga#]'ga~Og'ga#}'ga~P%*aO(m$YO~P#.aO!VfX!V$xX!YfX!Y$xX!d%PX#]fX~P!/gO(OQ#>g#@V#@e#@l#BR#Ba#C|#D[#Db#Dh#Dn#Dx#EO#EU#E`#Er#ExPPPPPPPPPP#FOPPPPPPP#Fs#Iz#KZ#Kb#KjPPP$!sP$!|$%t$,^$,a$,d$-P$-S$-Z$-cP$-i$-lP$.Y$.^$/U$0d$0i$1PPP$1U$1[$1`P$1c$1g$1k$2a$2x$3a$3e$3h$3k$3q$3t$3x$3|R!|RoqOXst!Z#d%k&o&q&r&t,k,p1|2PY!vQ']-]1a5eQ%rvQ%zyQ&R|Q&g!VS'T!e-TQ'c!iS'i!r!yU*e$|*V*jQ+i%{Q+v&TQ,[&aQ-Z'[Q-e'dQ-m'jQ0R*lQ1k,]R;v;T%QdOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%k%r&P&h&k&o&q&r&t&x'Q'_'o(P(R(X(`(t(v(z)y+R+V,h,k,p-a-i-w-}.l.s/f0a0g0v1d1t1u1w1y1|2P2R2r2x3^5b5m5}6O6R6f8R8X8h8rS#q];Q!r)Z$Z$n'U)o,|-P.}2b3u5`6]9h9y;P;S;T;W;X;Y;Z;[;];^;_;`;a;b;c;d;f;i;v;x;y;{ < TypeParamList TypeDefinition extends ThisType this LiteralType ArithOp Number BooleanLiteral TemplateType InterpolationEnd Interpolation InterpolationStart NullType null VoidType void TypeofType typeof MemberExpression . PropertyName [ TemplateString Escape Interpolation super RegExp ] ArrayExpression Spread , } { ObjectExpression Property async get set PropertyDefinition Block : NewTarget new NewExpression ) ( ArgList UnaryExpression delete LogicOp BitOp YieldExpression yield AwaitExpression await ParenthesizedExpression ClassExpression class ClassBody MethodDeclaration Decorator @ MemberExpression PrivatePropertyName CallExpression TypeArgList CompareOp < declare Privacy static abstract override PrivatePropertyDefinition PropertyDeclaration readonly accessor Optional TypeAnnotation Equals StaticBlock FunctionExpression ArrowFunction ParamList ParamList ArrayPattern ObjectPattern PatternProperty Privacy readonly Arrow MemberExpression BinaryExpression ArithOp ArithOp ArithOp ArithOp BitOp CompareOp instanceof satisfies in const CompareOp BitOp BitOp BitOp LogicOp LogicOp ConditionalExpression LogicOp LogicOp AssignmentExpression UpdateOp PostfixExpression CallExpression InstantiationExpression TaggedTemplateExpression DynamicImport import ImportMeta JSXElement JSXSelfCloseEndTag JSXSelfClosingTag JSXIdentifier JSXBuiltin JSXIdentifier JSXNamespacedName JSXMemberExpression JSXSpreadAttribute JSXAttribute JSXAttributeValue JSXEscape JSXEndTag JSXOpenTag JSXFragmentTag JSXText JSXEscape JSXStartCloseTag JSXCloseTag PrefixCast ArrowFunction TypeParamList SequenceExpression InstantiationExpression KeyofType keyof UniqueType unique ImportType InferredType infer TypeName ParenthesizedType FunctionSignature ParamList NewSignature IndexedType TupleType Label ArrayType ReadonlyType ObjectType MethodType PropertyType IndexSignature PropertyDefinition CallSignature TypePredicate is NewSignature new UnionType LogicOp IntersectionType LogicOp ConditionalType ParameterizedType ClassDeclaration abstract implements type VariableDeclaration let var using TypeAliasDeclaration InterfaceDeclaration interface EnumDeclaration enum EnumBody NamespaceDeclaration namespace module AmbientDeclaration declare GlobalDeclaration global ClassDeclaration ClassBody AmbientFunctionDeclaration ExportGroup VariableName VariableName ImportDeclaration ImportGroup ForStatement for ForSpec ForInSpec ForOfSpec of WhileStatement while WithStatement with DoStatement do IfStatement if else SwitchStatement switch SwitchBody CaseLabel case DefaultLabel TryStatement try CatchClause catch FinallyClause finally ReturnStatement return ThrowStatement throw BreakStatement break ContinueStatement continue DebuggerStatement debugger LabeledStatement ExpressionStatement SingleExpression SingleClassItem",maxTerm:376,context:Yf,nodeProps:[["isolate",-8,5,6,14,34,36,48,50,52,""],["group",-26,9,17,19,65,204,208,212,213,215,218,221,231,233,239,241,243,245,248,254,260,262,264,266,268,270,271,"Statement",-34,13,14,29,32,33,39,48,51,52,54,59,67,69,73,77,79,81,82,107,108,117,118,135,138,140,141,142,143,144,146,147,166,167,169,"Expression",-23,28,30,34,38,40,42,171,173,175,176,178,179,180,182,183,184,186,187,188,198,200,202,203,"Type",-3,85,100,106,"ClassItem"],["openedBy",23,"<",35,"InterpolationStart",53,"[",57,"{",70,"(",159,"JSXStartCloseTag"],["closedBy",24,">",37,"InterpolationEnd",47,"]",58,"}",71,")",164,"JSXEndTag"]],propSources:[Nf],skippedNodes:[0,5,6,274],repeatNodeCount:37,tokenData:"$Fq07[R!bOX%ZXY+gYZ-yZ[+g[]%Z]^.c^p%Zpq+gqr/mrs3cst:_tuEruvJSvwLkwx! Yxy!'iyz!(sz{!)}{|!,q|}!.O}!O!,q!O!P!/Y!P!Q!9j!Q!R#:O!R![#<_![!]#I_!]!^#Jk!^!_#Ku!_!`$![!`!a$$v!a!b$*T!b!c$,r!c!}Er!}#O$-|#O#P$/W#P#Q$4o#Q#R$5y#R#SEr#S#T$7W#T#o$8b#o#p$x#r#s$@U#s$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$I|Er$I|$I}$Dk$I}$JO$Dk$JO$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr(n%d_$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z&j&hT$h&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c&j&zP;=`<%l&c'|'U]$h&j(U!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!b(SU(U!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!b(iP;=`<%l'}'|(oP;=`<%l&}'[(y]$h&j(RpOY(rYZ&cZr(rrs&cs!^(r!^!_)r!_#O(r#O#P&c#P#o(r#o#p)r#p;'S(r;'S;=`*a<%lO(rp)wU(RpOY)rZr)rs#O)r#P;'S)r;'S;=`*Z<%lO)rp*^P;=`<%l)r'[*dP;=`<%l(r#S*nX(Rp(U!bOY*gZr*grs'}sw*gwx)rx#O*g#P;'S*g;'S;=`+Z<%lO*g#S+^P;=`<%l*g(n+dP;=`<%l%Z07[+rq$h&j(Rp(U!b'w0/lOX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p$f%Z$f$g+g$g#BY%Z#BY#BZ+g#BZ$IS%Z$IS$I_+g$I_$JT%Z$JT$JU+g$JU$KV%Z$KV$KW+g$KW&FU%Z&FU&FV+g&FV;'S%Z;'S;=`+a<%l?HT%Z?HT?HU+g?HUO%Z07[.ST(S#S$h&j'x0/lO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c07[.n_$h&j(Rp(U!b'x0/lOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)3p/x`$h&j!m),Q(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`0z!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW1V`#u(Ch$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`2X!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW2d_#u(Ch$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'At3l_(Q':f$h&j(U!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k(^4r_$h&j(U!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k&z5vX$h&jOr5qrs6cs!^5q!^!_6y!_#o5q#o#p6y#p;'S5q;'S;=`7h<%lO5q&z6jT$c`$h&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c`6|TOr6yrs7]s;'S6y;'S;=`7b<%lO6y`7bO$c``7eP;=`<%l6y&z7kP;=`<%l5q(^7w]$c`$h&j(U!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!r8uZ(U!bOY8pYZ6yZr8prs9hsw8pwx6yx#O8p#O#P6y#P;'S8p;'S;=`:R<%lO8p!r9oU$c`(U!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!r:UP;=`<%l8p(^:[P;=`<%l4k%9[:hh$h&j(Rp(U!bOY%ZYZ&cZq%Zqr`#P#o`x!^=^!^!_?q!_#O=^#O#P>`#P#o=^#o#p?q#p;'S=^;'S;=`@h<%lO=^&n>gXWS$h&jOY>`YZ&cZ!^>`!^!_?S!_#o>`#o#p?S#p;'S>`;'S;=`?k<%lO>`S?XSWSOY?SZ;'S?S;'S;=`?e<%lO?SS?hP;=`<%l?S&n?nP;=`<%l>`!f?xWWS(U!bOY?qZw?qwx?Sx#O?q#O#P?S#P;'S?q;'S;=`@b<%lO?q!f@eP;=`<%l?q(Q@kP;=`<%l=^'`@w]WS$h&j(RpOY@nYZ&cZr@nrs>`s!^@n!^!_Ap!_#O@n#O#P>`#P#o@n#o#pAp#p;'S@n;'S;=`Bg<%lO@ntAwWWS(RpOYApZrAprs?Ss#OAp#O#P?S#P;'SAp;'S;=`Ba<%lOAptBdP;=`<%lAp'`BjP;=`<%l@n#WBvYWS(Rp(U!bOYBmZrBmrs?qswBmwxApx#OBm#O#P?S#P;'SBm;'S;=`Cf<%lOBm#WCiP;=`<%lBm(rCoP;=`<%l^!Q^$h&j!U7`OY!=yYZ&cZ!P!=y!P!Q!>|!Q!^!=y!^!_!@c!_!}!=y!}#O!CW#O#P!Dy#P#o!=y#o#p!@c#p;'S!=y;'S;=`!Ek<%lO!=y|#X#Z&c#Z#[!>|#[#]&c#]#^!>|#^#a&c#a#b!>|#b#g&c#g#h!>|#h#i&c#i#j!>|#j#k!>|#k#m&c#m#n!>|#n#o&c#p;'S&c;'S;=`&w<%lO&c7`!@hX!U7`OY!@cZ!P!@c!P!Q!AT!Q!}!@c!}#O!Ar#O#P!Bq#P;'S!@c;'S;=`!CQ<%lO!@c7`!AYW!U7`#W#X!AT#Z#[!AT#]#^!AT#a#b!AT#g#h!AT#i#j!AT#j#k!AT#m#n!AT7`!AuVOY!ArZ#O!Ar#O#P!B[#P#Q!@c#Q;'S!Ar;'S;=`!Bk<%lO!Ar7`!B_SOY!ArZ;'S!Ar;'S;=`!Bk<%lO!Ar7`!BnP;=`<%l!Ar7`!BtSOY!@cZ;'S!@c;'S;=`!CQ<%lO!@c7`!CTP;=`<%l!@c^!Ezl$h&j(U!b!U7`OY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#W&}#W#X!Eq#X#Z&}#Z#[!Eq#[#]&}#]#^!Eq#^#a&}#a#b!Eq#b#g&}#g#h!Eq#h#i&}#i#j!Eq#j#k!Eq#k#m&}#m#n!Eq#n#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}8r!GyZ(U!b!U7`OY!GrZw!Grwx!@cx!P!Gr!P!Q!Hl!Q!}!Gr!}#O!JU#O#P!Bq#P;'S!Gr;'S;=`!J|<%lO!Gr8r!Hse(U!b!U7`OY'}Zw'}x#O'}#P#W'}#W#X!Hl#X#Z'}#Z#[!Hl#[#]'}#]#^!Hl#^#a'}#a#b!Hl#b#g'}#g#h!Hl#h#i'}#i#j!Hl#j#k!Hl#k#m'}#m#n!Hl#n;'S'};'S;=`(f<%lO'}8r!JZX(U!bOY!JUZw!JUwx!Arx#O!JU#O#P!B[#P#Q!Gr#Q;'S!JU;'S;=`!Jv<%lO!JU8r!JyP;=`<%l!JU8r!KPP;=`<%l!Gr>^!KZ^$h&j(U!bOY!KSYZ&cZw!KSwx!CWx!^!KS!^!_!JU!_#O!KS#O#P!DR#P#Q!^!LYP;=`<%l!KS>^!L`P;=`<%l!_#c#d#Bq#d#l%Z#l#m#Es#m#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#>j_$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#?rd$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#A]f$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Bzc$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Dbe$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#E|g$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Gpi$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z*)x#Il_!d$b$h&j#})Lv(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)[#Jv_al$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z04f#LS^h#)`#O-If[t]||-1},{term:338,get:t=>Bf[t]||-1},{term:92,get:t=>Ff[t]||-1}],tokenPrec:14749}),Jf=[vu("function ${name}(${params}) {\n\t${}\n}",{label:"function",detail:"definition",type:"keyword"}),vu("for (let ${index} = 0; ${index} < ${bound}; ${index}++) {\n\t${}\n}",{label:"for",detail:"loop",type:"keyword"}),vu("for (let ${name} of ${collection}) {\n\t${}\n}",{label:"for",detail:"of loop",type:"keyword"}),vu("do {\n\t${}\n} while (${})",{label:"do",detail:"loop",type:"keyword"}),vu("while (${}) {\n\t${}\n}",{label:"while",detail:"loop",type:"keyword"}),vu("try {\n\t${}\n} catch (${error}) {\n\t${}\n}",{label:"try",detail:"/ catch block",type:"keyword"}),vu("if (${}) {\n\t${}\n}",{label:"if",detail:"block",type:"keyword"}),vu("if (${}) {\n\t${}\n} else {\n\t${}\n}",{label:"if",detail:"/ else block",type:"keyword"}),vu("class ${name} {\n\tconstructor(${params}) {\n\t\t${}\n\t}\n}",{label:"class",detail:"definition",type:"keyword"}),vu('import {${names}} from "${module}"\n${}',{label:"import",detail:"named",type:"keyword"}),vu('import ${name} from "${module}"\n${}',{label:"import",detail:"default",type:"keyword"})],Kf=Jf.concat([vu("interface ${name} {\n\t${}\n}",{label:"interface",detail:"definition",type:"keyword"}),vu("type ${name} = ${type}",{label:"type",detail:"definition",type:"keyword"}),vu("enum ${name} {\n\t${}\n}",{label:"enum",detail:"definition",type:"keyword"})]),tp=new ua,ep=new Set(["Script","Block","FunctionExpression","FunctionDeclaration","ArrowFunction","MethodDeclaration","ForStatement"]);function ip(t){return(e,i)=>{let n=e.node.getChild("VariableDefinition");return n&&i(n,t),!0}}const np=["FunctionDeclaration"],rp={FunctionDeclaration:ip("function"),ClassDeclaration:ip("class"),ClassExpression:()=>!0,EnumDeclaration:ip("constant"),TypeAliasDeclaration:ip("type"),NamespaceDeclaration:ip("namespace"),VariableDefinition(t,e){t.matchContext(np)||e(t,"variable")},TypeDefinition(t,e){e(t,"type")},__proto__:null};function sp(t,e){let i=tp.get(e);if(i)return i;let n=[],r=!0;function s(e,i){let r=t.sliceString(e.from,e.to);n.push({label:r,type:i})}return e.cursor(Io.IncludeAnonymous).iterate((e=>{if(r)r=!1;else if(e.name){let t=rp[e.name];if(t&&t(e,s)||ep.has(e.name))return!1}else if(e.to-e.from>8192){for(let i of sp(t,e.node))n.push(i);return!1}})),tp.set(e,n),n}const op=/^[\w$\xa1-\uffff][\w$\d\xa1-\uffff]*$/,ap=["TemplateString","String","RegExp","LineComment","BlockComment","VariableDefinition","TypeDefinition","Label","PropertyDefinition","PropertyName","PrivatePropertyDefinition","PrivatePropertyName",".","?."];function lp(t){let e=cl(t.state).resolveInner(t.pos,-1);if(ap.indexOf(e.name)>-1)return null;let i="VariableName"==e.name||e.to-e.from<20&&op.test(t.state.sliceDoc(e.from,e.to));if(!i&&!t.explicit)return null;let n=[];for(let i=e;i;i=i.parent)ep.has(i.name)&&(n=n.concat(sp(t.state.doc,i)));return{options:n,from:i?e.from:t.pos,validFor:op}}const hp=hl.define({name:"javascript",parser:Hf.configure({props:[Tl.add({IfStatement:Al({except:/^\s*({|else\b)/}),TryStatement:Al({except:/^\s*({|catch\b|finally\b)/}),LabeledStatement:t=>t.baseIndent,SwitchBody:t=>{let e=t.textAfter,i=/^\s*\}/.test(e),n=/^\s*(case|default)\b/.test(e);return t.baseIndent+(i?0:n?1:2)*t.unit},Block:ql({closing:"}"}),ArrowFunction:t=>t.baseIndent+t.unit,"TemplateString BlockComment":()=>null,"Statement Property":Al({except:/^{/}),JSXElement(t){let e=/^\s*<\//.test(t.textAfter);return t.lineIndent(t.node.from)+(e?0:t.unit)},JSXEscape(t){let e=/\s*\}/.test(t.textAfter);return t.lineIndent(t.node.from)+(e?0:t.unit)},"JSXOpenTag JSXSelfClosingTag":t=>t.column(t.node.from)+t.unit}),Vl.add({"Block ClassBody SwitchBody EnumBody ObjectExpression ArrayExpression ObjectType":Ml,BlockComment:t=>({from:t.from+2,to:t.to-2})})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"`"]},commentTokens:{line:"//",block:{open:"/*",close:"*/"}},indentOnInput:/^\s*(?:case |default:|\{|\}|<\/)$/,wordChars:"$"}}),cp={test:t=>/^JSX/.test(t.name),facet:sl({commentTokens:{block:{open:"{/*",close:"*/}"}}})},Op=hp.configure({dialect:"ts"},"typescript"),dp=hp.configure({dialect:"jsx",props:[ol.add((t=>t.isTop?[cp]:void 0))]}),up=hp.configure({dialect:"jsx ts",props:[ol.add((t=>t.isTop?[cp]:void 0))]},"typescript");let fp=t=>({label:t,type:"keyword"});const pp="break case const continue default delete export extends false finally in instanceof let new return static super switch this throw true typeof var yield".split(" ").map(fp),mp=pp.concat(["declare","implements","private","protected","public"].map(fp));function gp(t={}){let e=t.jsx?t.typescript?up:dp:t.typescript?Op:hp,i=t.typescript?Kf.concat(mp):Jf.concat(pp);return new Sl(e,[hp.data.of({autocomplete:wd(ap,vd(i))}),hp.data.of({autocomplete:lp}),t.jsx?Sp:[]])}function Qp(t,e,i=t.length){for(let n=null==e?void 0:e.firstChild;n;n=n.nextSibling)if("JSXIdentifier"==n.name||"JSXBuiltin"==n.name||"JSXNamespacedName"==n.name||"JSXMemberExpression"==n.name)return t.sliceString(n.from,Math.min(n.to,i));return""}const bp="object"==typeof navigator&&/Android\b/.test(navigator.userAgent),Sp=Ir.inputHandler.of(((t,e,i,n,r)=>{if((bp?t.composing:t.compositionStarted)||t.state.readOnly||e!=i||">"!=n&&"/"!=n||!hp.isActiveAt(t.state,e,-1))return!1;let s=r(),{state:o}=s,a=o.changeByRange((t=>{var e;let i,{head:r}=t,s=cl(o).resolveInner(r-1,-1);if("JSXStartTag"==s.name&&(s=s.parent),o.doc.sliceString(r-1,r)!=n||"JSXAttributeValue"==s.name&&s.to>r);else{if(">"==n&&"JSXFragmentTag"==s.name)return{range:t,changes:{from:r,insert:""}};if("/"==n&&"JSXStartCloseTag"==s.name){let t=s.parent,n=t.parent;if(n&&t.from==r-2&&((i=Qp(o.doc,n.firstChild,r))||"JSXFragmentTag"==(null===(e=n.firstChild)||void 0===e?void 0:e.name))){let t=`${i}>`;return{range:C.cursor(r+t.length,-1),changes:{from:r,insert:t}}}}else if(">"==n){let e=function(t){for(;;){if("JSXOpenTag"==t.name||"JSXSelfClosingTag"==t.name||"JSXFragmentTag"==t.name)return t;if("JSXEscape"==t.name||!t.parent)return null;t=t.parent}}(s);if(e&&"JSXOpenTag"==e.name&&!/^\/?>|^<\//.test(o.doc.sliceString(r,r+2))&&(i=Qp(o.doc,e,r)))return{range:t,changes:{from:r,insert:``}}}}return{range:t}}));return!a.changes.empty&&(t.dispatch([s,o.update(a,{userEvent:"input.complete",scrollIntoView:!0})]),!0)})),vp=10,wp=new Set([25,49,50,263,65,130,56,57,238,62,63,72,73,77,60,61,151,152,155,112]);function yp(t){return t==vp||13==t}function xp(t){return t>=48&&t<=57||t>=65&&t<=70||t>=97&&t<=102}const kp=new yf(((t,e)=>{let i;if(t.next<0)t.acceptToken(199);else if(e.context.flags&$p)yp(t.next)&&t.acceptToken(198,1);else if(((i=t.peek(-1))<0||yp(i))&&e.canShift(197)){let e=0;for(;32==t.next||9==t.next;)t.advance(),e++;t.next!=vp&&13!=t.next&&35!=t.next||t.acceptToken(197,-e)}else yp(t.next)&&t.acceptToken(196,1)}),{contextual:!0}),Pp=new yf(((t,e)=>{let i=e.context;if(i.flags)return;let n=t.peek(-1);if(n==vp||13==n){let e=0,n=0;for(;;){if(32==t.next)e++;else{if(9!=t.next)break;e+=8-e%8}t.advance(),n++}e!=i.indent&&t.next!=vp&&13!=t.next&&35!=t.next&&(e[t,2|e]))),Wp=new Af({start:Cp,reduce:(t,e,i,n)=>t.flags&$p&&wp.has(e)||(71==e||72==e)&&2&t.flags?t.parent:t,shift:(t,e,i,n)=>194==e?new Xp(t,function(t){let e=0;for(let i=0;it.hash}),Ap=new yf((t=>{for(let e=0;e<5;e++){if(t.next!="print".charCodeAt(e))return;t.advance()}if(!/\w/.test(String.fromCharCode(t.next)))for(let e=0;;e++){let i=t.peek(e);if(32!=i&&9!=i)return void(40!=i&&46!=i&&i!=vp&&13!=i&&35!=i&&t.acceptToken(1))}})),zp=new yf(((t,e)=>{let{flags:i}=e.context,n=i&Tp?34:39,r=(i&_p)>0,s=!(i&Rp),o=(i&Zp)>0,a=t.pos;for(;!(t.next<0);)if(o&&123==t.next){if(123!=t.peek(1)){if(t.pos==a)return void t.acceptToken(3,1);break}t.advance(2)}else{if(s&&92==t.next){if(t.pos==a){t.advance();let e=t.next;return e>=0&&(t.advance(),Vp(t,e)),void t.acceptToken(2)}break}if(t.next==n&&(!r||t.peek(1)==n&&t.peek(2)==n)){if(t.pos==a)return void t.acceptToken(201,r?3:1);break}if(t.next==vp){if(r)t.advance();else if(t.pos==a)return void t.acceptToken(201);break}t.advance()}t.pos>a&&t.acceptToken(200)}));function Vp(t,e){if(111==e)for(let e=0;e<2&&t.next>=48&&t.next<=55;e++)t.advance();else if(120==e)for(let e=0;e<2&&xp(t.next);e++)t.advance();else if(117==e)for(let e=0;e<4&&xp(t.next);e++)t.advance();else if(85==e)for(let e=0;e<8&&xp(t.next);e++)t.advance();else if(78==e&&123==t.next){for(t.advance();t.next>=0&&125!=t.next&&39!=t.next&&34!=t.next&&t.next!=vp;)t.advance();125==t.next&&t.advance()}}const Mp=Wa({'async "*" "**" FormatConversion FormatSpec':il.modifier,"for while if elif else try except finally return raise break continue with pass assert await yield match case":il.controlKeyword,"in not and or is del":il.operatorKeyword,"from def class global nonlocal lambda":il.definitionKeyword,import:il.moduleKeyword,"with as print":il.keyword,Boolean:il.bool,None:il.null,VariableName:il.variableName,"CallExpression/VariableName":il.function(il.variableName),"FunctionDefinition/VariableName":il.function(il.definition(il.variableName)),"ClassDefinition/VariableName":il.definition(il.className),PropertyName:il.propertyName,"CallExpression/MemberExpression/PropertyName":il.function(il.propertyName),Comment:il.lineComment,Number:il.number,String:il.string,FormatString:il.special(il.string),Escape:il.escape,UpdateOp:il.updateOperator,"ArithOp!":il.arithmeticOperator,BitOp:il.bitwiseOperator,CompareOp:il.compareOperator,AssignOp:il.definitionOperator,Ellipsis:il.punctuation,At:il.meta,"( )":il.paren,"[ ]":il.squareBracket,"{ }":il.brace,".":il.derefOperator,", ;":il.separator}),Ep={__proto__:null,await:44,or:54,and:56,in:60,not:62,is:64,if:70,else:72,lambda:76,yield:94,from:96,async:102,for:104,None:162,True:164,False:164,del:178,pass:182,break:186,continue:190,return:194,raise:202,import:206,as:208,global:212,nonlocal:214,assert:218,type:223,elif:236,while:240,try:246,except:248,finally:250,with:254,def:258,class:268,match:279,case:285},Yp=zf.deserialize({version:14,states:"##jO`QeOOP$}OSOOO&WQtO'#HUOOQS'#Co'#CoOOQS'#Cp'#CpO'vQdO'#CnO*UQtO'#HTOOQS'#HU'#HUOOQS'#DU'#DUOOQS'#HT'#HTO*rQdO'#D_O+VQdO'#DfO+gQdO'#DjO+zOWO'#DuO,VOWO'#DvO.[QtO'#GuOOQS'#Gu'#GuO'vQdO'#GtO0ZQtO'#GtOOQS'#Eb'#EbO0rQdO'#EcOOQS'#Gs'#GsO0|QdO'#GrOOQV'#Gr'#GrO1XQdO'#FYOOQS'#G^'#G^O1^QdO'#FXOOQV'#IS'#ISOOQV'#Gq'#GqOOQV'#Fq'#FqQ`QeOOO'vQdO'#CqO1lQdO'#C}O1sQdO'#DRO2RQdO'#HYO2cQtO'#EVO'vQdO'#EWOOQS'#EY'#EYOOQS'#E['#E[OOQS'#E^'#E^O2wQdO'#E`O3_QdO'#EdO3rQdO'#EfO3zQtO'#EfO1XQdO'#EiO0rQdO'#ElO1XQdO'#EnO0rQdO'#EtO0rQdO'#EwO4VQdO'#EyO4^QdO'#FOO4iQdO'#EzO0rQdO'#FOO1XQdO'#FQO1XQdO'#FVO4nQdO'#F[P4uOdO'#GpPOOO)CBd)CBdOOQS'#Ce'#CeOOQS'#Cf'#CfOOQS'#Cg'#CgOOQS'#Ch'#ChOOQS'#Ci'#CiOOQS'#Cj'#CjOOQS'#Cl'#ClO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO5QQdO'#DoOOQS,5:Y,5:YO5eQdO'#HdOOQS,5:],5:]O5rQ!fO,5:]O5wQtO,59YO1lQdO,59bO1lQdO,59bO1lQdO,59bO8gQdO,59bO8lQdO,59bO8sQdO,59jO8zQdO'#HTO:QQdO'#HSOOQS'#HS'#HSOOQS'#D['#D[O:iQdO,59aO'vQdO,59aO:wQdO,59aOOQS,59y,59yO:|QdO,5:RO'vQdO,5:ROOQS,5:Q,5:QO;[QdO,5:QO;aQdO,5:XO'vQdO,5:XO'vQdO,5:VOOQS,5:U,5:UO;rQdO,5:UO;wQdO,5:WOOOW'#Fy'#FyO;|OWO,5:aOOQS,5:a,5:aOOOOQS'#Ds'#DsOOQS1G/w1G/wOOQS1G.|1G.|O!/RQtO1G.|O!/YQtO1G.|O1lQdO1G.|O!/uQdO1G/UOOQS'#DZ'#DZO0rQdO,59tOOQS1G.{1G.{O!/|QdO1G/eO!0^QdO1G/eO!0fQdO1G/fO'vQdO'#H[O!0kQdO'#H[O!0pQtO1G.{O!1QQdO,59iO!2WQdO,5=zO!2hQdO,5=zO!2pQdO1G/mO!2uQtO1G/mOOQS1G/l1G/lO!3VQdO,5=uO!3|QdO,5=uO0rQdO1G/qO!4kQdO1G/sO!4pQtO1G/sO!5QQtO1G/qOOQS1G/p1G/pOOQS1G/r1G/rOOOW-E9w-E9wOOQS1G/{1G/{O!5bQdO'#HxO0rQdO'#HxO!5sQdO,5>cOOOW-E9x-E9xOOQS1G/|1G/|OOQS-E9{-E9{O!6RQ#xO1G2zO!6rQtO1G2zO'vQdO,5kOOQS1G1`1G1`O!7xQdO1G1`OOQS'#DV'#DVO0rQdO,5=qOOQS,5=q,5=qO!7}QdO'#FrO!8YQdO,59oO!8bQdO1G/XO!8lQtO,5=uOOQS1G3`1G3`OOQS,5:m,5:mO!9]QdO'#GtOOQS,5jO!;QQdO,5>jO1XQdO,5>jO!;cQdO,5>iOOQS-E:R-E:RO!;hQdO1G0lO!;sQdO1G0lO!;xQdO,5>lO!lO!hO!<|QdO,5>hO!=_QdO'#EpO0rQdO1G0tO!=jQdO1G0tO!=oQgO1G0zO!AmQgO1G0}O!EhQdO,5>oO!ErQdO,5>oO!EzQtO,5>oO0rQdO1G1PO!FUQdO1G1PO4iQdO1G1UO!!sQdO1G1WOOQV,5;a,5;aO!FZQfO,5;aO!F`QgO1G1QO!JaQdO'#GZO4iQdO1G1QO4iQdO1G1QO!JqQdO,5>pO!KOQdO,5>pO1XQdO,5>pOOQV1G1U1G1UO!KWQdO'#FSO!KiQ!fO1G1WO!KqQdO1G1WOOQV1G1]1G1]O4iQdO1G1]O!KvQdO1G1]O!LOQdO'#F^OOQV1G1b1G1bO!#WQtO1G1bPOOO1G2v1G2vP!LTOSO1G2vOOQS,5=},5=}OOQS'#Dp'#DpO0rQdO,5=}O!LYQdO,5=|O!LmQdO,5=|OOQS1G/u1G/uO!LuQdO,5>PO!MVQdO,5>PO!M_QdO,5>PO!MrQdO,5>PO!NSQdO,5>POOQS1G3j1G3jOOQS7+$h7+$hO!8bQdO7+$pO# uQdO1G.|O# |QdO1G.|OOQS1G/`1G/`OOQS,5<`,5<`O'vQdO,5<`OOQS7+%P7+%PO#!TQdO7+%POOQS-E9r-E9rOOQS7+%Q7+%QO#!eQdO,5=vO'vQdO,5=vOOQS7+$g7+$gO#!jQdO7+%PO#!rQdO7+%QO#!wQdO1G3fOOQS7+%X7+%XO##XQdO1G3fO##aQdO7+%XOOQS,5<_,5<_O'vQdO,5<_O##fQdO1G3aOOQS-E9q-E9qO#$]QdO7+%]OOQS7+%_7+%_O#$kQdO1G3aO#%YQdO7+%_O#%_QdO1G3gO#%oQdO1G3gO#%wQdO7+%]O#%|QdO,5>dO#&gQdO,5>dO#&gQdO,5>dOOQS'#Dx'#DxO#&xO&jO'#DzO#'TO`O'#HyOOOW1G3}1G3}O#'YQdO1G3}O#'bQdO1G3}O#'mQ#xO7+(fO#(^QtO1G2UP#(wQdO'#GOOOQS,5bQdO,5gQdO1G4OOOQS-E9y-E9yO#?QQdO1G4OOe,5>eOOOW7+)i7+)iO#?nQdO7+)iO#?vQdO1G2zO#@aQdO1G2zP'vQdO'#FuO0rQdO<mO#AtQdO,5>mOOQS1G0v1G0vOOQS<rO#KZQdO,5>rOOQS,5>r,5>rO#KfQdO,5>qO#KwQdO,5>qOOQS1G1Y1G1YOOQS,5;p,5;pOOQV<VAN>VO$ WQdO<cAN>cO0rQdO1G1|O$ hQtO1G1|P$ rQdO'#FvOOQS1G2R1G2RP$!PQdO'#F{O$!^QdO7+)jO$!wQdO,5>gOOOO-E9z-E9zOOOW<tO$4dQdO,5>tO1XQdO,5vO$)VQdO,5>vOOQS1G1p1G1pO$8[QtO,5<[OOQU7+'P7+'PO$+cQdO1G/iO$)VQdO,5wO$8jQdO,5>wOOQS1G1s1G1sOOQS7+'S7+'SP$)VQdO'#GdO$8rQdO1G4bO$8|QdO1G4bO$9UQdO1G4bOOQS7+%T7+%TO$9dQdO1G1tO$9rQtO'#FaO$9yQdO,5<}OOQS,5<},5<}O$:XQdO1G4cOOQS-E:a-E:aO$)VQdO,5<|O$:`QdO,5<|O$:eQdO7+)|OOQS-E:`-E:`O$:oQdO7+)|O$)VQdO,5m>pPP'Z'ZPP?PPP'Z'ZPP'Z'Z'Z'Z'Z?T?}'ZP@QP@WD_G{HPPHSH^Hb'ZPPPHeHn'RP'R'RP'RP'RP'RP'RP'R'R'RP'RPP'RPP'RP'RPHtIQIYPIaIgPIaPIaIaPPPIaPKuPLOLYL`KuPIaLiPIaPLpLvPLzM`M}NhLzLzNnN{LzLzLzLz! a! g! j! o! r! |!!S!!`!!r!!x!#S!#Y!#v!#|!$S!$^!$d!$j!$|!%W!%^!%d!%n!%t!%z!&Q!&W!&^!&h!&n!&x!'O!'X!'_!'n!'v!(Q!(XPPPPPPPPPPP!(_!(b!(h!(q!({!)WPPPPPPPPPPPP!-z!/`!3`!6pPP!6x!7X!7b!8Z!8Q!8d!8j!8m!8p!8s!8{!9lPPPPPPPPPPPPPPPPP!9o!9s!9yP!:_!:c!:o!:x!;U!;l!;o!;r!;x!_![!]Do!]!^Es!^!_FZ!_!`Gk!`!aHX!a!b%T!b!cIf!c!dJU!d!eK^!e!hJU!h!i!#f!i!tJU!t!u!,|!u!wJU!w!x!.t!x!}JU!}#O!0S#O#P&o#P#Q!0j#Q#R!1Q#R#SJU#S#T%T#T#UJU#U#VK^#V#YJU#Y#Z!#f#Z#fJU#f#g!,|#g#iJU#i#j!.t#j#oJU#o#p!1n#p#q!1s#q#r!2a#r#s!2f#s$g%T$g;'SJU;'S;=`KW<%lOJU`%YT&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T`%lP;=`<%l%To%v]&n`%c_OX%TXY%oY[%T[]%o]p%Tpq%oq#O%T#O#P&o#P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To&tX&n`OY%TYZ%oZ]%T]^%o^#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc'f[&n`O!_%T!_!`([!`#T%T#T#U(r#U#f%T#f#g(r#g#h(r#h#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(cTmR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(yT!mR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk)aV&n`&[ZOr%Trs)vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk){V&n`Or%Trs*bs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk*iT&n`&^ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To+PZS_&n`OY*xYZ%TZ]*x]^%T^#o*x#o#p+r#p#q*x#q#r+r#r;'S*x;'S;=`,^<%lO*x_+wTS_OY+rZ]+r^;'S+r;'S;=`,W<%lO+r_,ZP;=`<%l+ro,aP;=`<%l*xj,kV%rQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-XT!xY&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-oV%lQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.]V&n`&ZZOw%Twx.rx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.wV&n`Ow%Twx/^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/eT&n`&]ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/{ThZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc0cTgR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk0yXVZ&n`Oz%Tz{1f{!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk1mVaR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk2ZV%oZ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc2wTzR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To3_W%pZ&n`O!_%T!_!`-Q!`!a3w!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Td4OT&{S&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk4fX!fQ&n`O!O%T!O!P5R!P!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5WV&n`O!O%T!O!P5m!P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5tT!rZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti6[a!hX&n`O!Q%T!Q![6T![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S6T#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti7fZ&n`O{%T{|8X|}%T}!O8X!O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8^V&n`O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8z]!hX&n`O!Q%T!Q![8s![!l%T!l!m9s!m#R%T#R#S8s#S#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti9zT!hX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk:bX%qR&n`O!P%T!P!Q:}!Q!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj;UV%sQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti;ro!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!d%T!d!e?q!e!g%T!g!h7a!h!l%T!l!m9s!m!q%T!q!rA]!r!z%T!z!{Bq!{#R%T#R#S>_#S#U%T#U#V?q#V#X%T#X#Y7a#Y#^%T#^#_9s#_#c%T#c#dA]#d#l%T#l#mBq#m#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti=xV&n`O!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti>fc!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S>_#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti?vY&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti@mY!hX&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiAbX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBUX!hX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBv]&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiCv]!hX&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToDvV{_&n`O!_%T!_!`E]!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TcEdT%{R&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkEzT#gZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkFbXmR&n`O!^%T!^!_F}!_!`([!`!a([!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjGUV%mQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkGrV%zZ&n`O!_%T!_!`([!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkH`WmR&n`O!_%T!_!`([!`!aHx!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjIPV%nQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkIoV_Q#}P&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToJ_]&n`&YS%uZO!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoKZP;=`<%lJUoKge&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!tJU!t!uLx!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#gLx#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoMRa&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUkN_V&n`&`ZOr%TrsNts#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkNyV&n`Or%Trs! `s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! gT&n`&bZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! }V&n`&_ZOw%Twx!!dx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!!iV&n`Ow%Twx!#Ox#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!#VT&n`&aZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!#oe&n`&YS%uZOr%Trs!%Qsw%Twx!&px!Q%T!Q![JU![!c%T!c!tJU!t!u!(`!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#g!(`#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!%XV&n`&dZOr%Trs!%ns#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!%sV&n`Or%Trs!&Ys#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&aT&n`&fZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&wV&n`&cZOw%Twx!'^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!'cV&n`Ow%Twx!'xx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!(PT&n`&eZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!(ia&n`&YS%uZOr%Trs!)nsw%Twx!+^x!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!)uV&n`&hZOr%Trs!*[s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*aV&n`Or%Trs!*vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*}T&n`&jZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!+eV&n`&gZOw%Twx!+zx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,PV&n`Ow%Twx!,fx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,mT&n`&iZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!-Vi&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!dJU!d!eLx!e!hJU!h!i!(`!i!}JU!}#R%T#R#SJU#S#T%T#T#UJU#U#VLx#V#YJU#Y#Z!(`#Z#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUo!.}a&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!0ZT!XZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc!0qT!WR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj!1XV%kQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!1sO!]~k!1zV%jR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!2fO![~i!2mT%tX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T",tokenizers:[Ap,Pp,kp,zp,0,1,2,3,4],topRules:{Script:[0,5]},specialized:[{term:221,get:t=>Ep[t]||-1}],tokenPrec:7652}),Up=new ua,jp=new Set(["Script","Body","FunctionDefinition","ClassDefinition","LambdaExpression","ForStatement","MatchClause"]);function Dp(t){return(e,i,n)=>{if(n)return!1;let r=e.node.getChild("VariableName");return r&&i(r,t),!0}}const Gp={FunctionDefinition:Dp("function"),ClassDefinition:Dp("class"),ForStatement(t,e,i){if(i)for(let i=t.node.firstChild;i;i=i.nextSibling)if("VariableName"==i.name)e(i,"variable");else if("in"==i.name)break},ImportStatement(t,e){var i,n;let{node:r}=t,s="from"==(null===(i=r.firstChild)||void 0===i?void 0:i.name);for(let t=r.getChild("import");t;t=t.nextSibling)"VariableName"==t.name&&"as"!=(null===(n=t.nextSibling)||void 0===n?void 0:n.name)&&e(t,s?"variable":"namespace")},AssignStatement(t,e){for(let i=t.node.firstChild;i;i=i.nextSibling)if("VariableName"==i.name)e(i,"variable");else if(":"==i.name||"AssignOp"==i.name)break},ParamList(t,e){for(let i=null,n=t.node.firstChild;n;n=n.nextSibling)"VariableName"!=n.name||i&&/\*|AssignOp/.test(i.name)||e(n,"variable"),i=n},CapturePattern:Dp("variable"),AsPattern:Dp("variable"),__proto__:null};function Lp(t,e){let i=Up.get(e);if(i)return i;let n=[],r=!0;function s(e,i){let r=t.sliceString(e.from,e.to);n.push({label:r,type:i})}return e.cursor(Io.IncludeAnonymous).iterate((e=>{if(e.name){let t=Gp[e.name];if(t&&t(e,s,r)||!r&&jp.has(e.name))return!1;r=!1}else if(e.to-e.from>8192){for(let i of Lp(t,e.node))n.push(i);return!1}})),Up.set(e,n),n}const Np=/^[\w\xa1-\uffff][\w\d\xa1-\uffff]*$/,Ip=["String","FormatString","Comment","PropertyName"];function Bp(t){let e=cl(t.state).resolveInner(t.pos,-1);if(Ip.indexOf(e.name)>-1)return null;let i="VariableName"==e.name||e.to-e.from<20&&Np.test(t.state.sliceDoc(e.from,e.to));if(!i&&!t.explicit)return null;let n=[];for(let i=e;i;i=i.parent)jp.has(i.name)&&(n=n.concat(Lp(t.state.doc,i)));return{options:n,from:i?e.from:t.pos,validFor:Np}}const Fp=["__annotations__","__builtins__","__debug__","__doc__","__import__","__name__","__loader__","__package__","__spec__","False","None","True"].map((t=>({label:t,type:"constant"}))).concat(["ArithmeticError","AssertionError","AttributeError","BaseException","BlockingIOError","BrokenPipeError","BufferError","BytesWarning","ChildProcessError","ConnectionAbortedError","ConnectionError","ConnectionRefusedError","ConnectionResetError","DeprecationWarning","EOFError","Ellipsis","EncodingWarning","EnvironmentError","Exception","FileExistsError","FileNotFoundError","FloatingPointError","FutureWarning","GeneratorExit","IOError","ImportError","ImportWarning","IndentationError","IndexError","InterruptedError","IsADirectoryError","KeyError","KeyboardInterrupt","LookupError","MemoryError","ModuleNotFoundError","NameError","NotADirectoryError","NotImplemented","NotImplementedError","OSError","OverflowError","PendingDeprecationWarning","PermissionError","ProcessLookupError","RecursionError","ReferenceError","ResourceWarning","RuntimeError","RuntimeWarning","StopAsyncIteration","StopIteration","SyntaxError","SyntaxWarning","SystemError","SystemExit","TabError","TimeoutError","TypeError","UnboundLocalError","UnicodeDecodeError","UnicodeEncodeError","UnicodeError","UnicodeTranslateError","UnicodeWarning","UserWarning","ValueError","Warning","ZeroDivisionError"].map((t=>({label:t,type:"type"})))).concat(["bool","bytearray","bytes","classmethod","complex","float","frozenset","int","list","map","memoryview","object","range","set","staticmethod","str","super","tuple","type"].map((t=>({label:t,type:"class"})))).concat(["abs","aiter","all","anext","any","ascii","bin","breakpoint","callable","chr","compile","delattr","dict","dir","divmod","enumerate","eval","exec","exit","filter","format","getattr","globals","hasattr","hash","help","hex","id","input","isinstance","issubclass","iter","len","license","locals","max","min","next","oct","open","ord","pow","print","property","quit","repr","reversed","round","setattr","slice","sorted","sum","vars","zip"].map((t=>({label:t,type:"function"})))),Hp=[vu("def ${name}(${params}):\n\t${}",{label:"def",detail:"function",type:"keyword"}),vu("for ${name} in ${collection}:\n\t${}",{label:"for",detail:"loop",type:"keyword"}),vu("while ${}:\n\t${}",{label:"while",detail:"loop",type:"keyword"}),vu("try:\n\t${}\nexcept ${error}:\n\t${}",{label:"try",detail:"/ except block",type:"keyword"}),vu("if ${}:\n\t\n",{label:"if",detail:"block",type:"keyword"}),vu("if ${}:\n\t${}\nelse:\n\t${}",{label:"if",detail:"/ else block",type:"keyword"}),vu("class ${name}:\n\tdef __init__(self, ${params}):\n\t\t\t${}",{label:"class",detail:"definition",type:"keyword"}),vu("import ${module}",{label:"import",detail:"statement",type:"keyword"}),vu("from ${module} import ${names}",{label:"from",detail:"import",type:"keyword"})],Jp=wd(Ip,vd(Fp.concat(Hp)));function Kp(t){let{node:e,pos:i}=t,n=t.lineIndent(i,-1),r=null;for(;;){let s=e.childBefore(i);if(!s)break;if("Comment"==s.name)i=s.from;else if("Body"==s.name)t.baseIndentFor(s)+t.unit<=n&&(r=s),e=s;else{if(!s.type.is("Statement"))break;e=s}}return r}function tm(t,e){let i=t.baseIndentFor(e),n=t.lineAt(t.pos,-1),r=n.from+n.text.length;return/^\s*($|#)/.test(n.text)&&t.node.toi?null:i+t.unit}const em=hl.define({name:"python",parser:Yp.configure({props:[Tl.add({Body:t=>{var e;return null!==(e=tm(t,Kp(t)||t.node))&&void 0!==e?e:t.continue()},IfStatement:t=>/^\s*(else:|elif )/.test(t.textAfter)?t.baseIndent:t.continue(),"ForStatement WhileStatement":t=>/^\s*else:/.test(t.textAfter)?t.baseIndent:t.continue(),TryStatement:t=>/^\s*(except |finally:|else:)/.test(t.textAfter)?t.baseIndent:t.continue(),"TupleExpression ComprehensionExpression ParamList ArgList ParenthesizedExpression":ql({closing:")"}),"DictionaryExpression DictionaryComprehensionExpression SetExpression SetComprehensionExpression":ql({closing:"}"}),"ArrayExpression ArrayComprehensionExpression":ql({closing:"]"}),"String FormatString":()=>null,Script:t=>{var e;let i=Kp(t);return null!==(e=i&&tm(t,i))&&void 0!==e?e:t.continue()}}),Vl.add({"ArrayExpression DictionaryExpression SetExpression TupleExpression":Ml,Body:(t,e)=>({from:t.from+1,to:t.to-(t.to==e.doc.length?0:1)})})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"'''",'"""'],stringPrefixes:["f","fr","rf","r","u","b","br","rb","F","FR","RF","R","U","B","BR","RB"]},commentTokens:{line:"#"},indentOnInput:/^\s*([\}\]\)]|else:|elif |except |finally:)$/}});class im{static create(t,e,i,n,r){return new im(t,e,i,n+(n<<8)+t+(e<<4)|0,r,[],[])}constructor(t,e,i,n,r,s,o){this.type=t,this.value=e,this.from=i,this.hash=n,this.end=r,this.children=s,this.positions=o,this.hashProp=[[Yo.contextHash,n]]}addChild(t,e){t.prop(Yo.contextHash)!=this.hash&&(t=new Bo(t.type,t.children,t.positions,t.length,this.hashProp)),this.children.push(t),this.positions.push(e)}toTree(t,e=this.end){let i=this.children.length-1;return i>=0&&(e=Math.max(e,this.positions[i]+this.children[i].length+this.from)),new Bo(t.types[this.type],this.children,this.positions,e-this.from).balance({makeTree:(t,e,i)=>new Bo(Do.none,t,e,i,this.hashProp)})}}var nm;!function(t){t[t.Document=1]="Document",t[t.CodeBlock=2]="CodeBlock",t[t.FencedCode=3]="FencedCode",t[t.Blockquote=4]="Blockquote",t[t.HorizontalRule=5]="HorizontalRule",t[t.BulletList=6]="BulletList",t[t.OrderedList=7]="OrderedList",t[t.ListItem=8]="ListItem",t[t.ATXHeading1=9]="ATXHeading1",t[t.ATXHeading2=10]="ATXHeading2",t[t.ATXHeading3=11]="ATXHeading3",t[t.ATXHeading4=12]="ATXHeading4",t[t.ATXHeading5=13]="ATXHeading5",t[t.ATXHeading6=14]="ATXHeading6",t[t.SetextHeading1=15]="SetextHeading1",t[t.SetextHeading2=16]="SetextHeading2",t[t.HTMLBlock=17]="HTMLBlock",t[t.LinkReference=18]="LinkReference",t[t.Paragraph=19]="Paragraph",t[t.CommentBlock=20]="CommentBlock",t[t.ProcessingInstructionBlock=21]="ProcessingInstructionBlock",t[t.Escape=22]="Escape",t[t.Entity=23]="Entity",t[t.HardBreak=24]="HardBreak",t[t.Emphasis=25]="Emphasis",t[t.StrongEmphasis=26]="StrongEmphasis",t[t.Link=27]="Link",t[t.Image=28]="Image",t[t.InlineCode=29]="InlineCode",t[t.HTMLTag=30]="HTMLTag",t[t.Comment=31]="Comment",t[t.ProcessingInstruction=32]="ProcessingInstruction",t[t.Autolink=33]="Autolink",t[t.HeaderMark=34]="HeaderMark",t[t.QuoteMark=35]="QuoteMark",t[t.ListMark=36]="ListMark",t[t.LinkMark=37]="LinkMark",t[t.EmphasisMark=38]="EmphasisMark",t[t.CodeMark=39]="CodeMark",t[t.CodeText=40]="CodeText",t[t.CodeInfo=41]="CodeInfo",t[t.LinkTitle=42]="LinkTitle",t[t.LinkLabel=43]="LinkLabel",t[t.URL=44]="URL"}(nm||(nm={}));class rm{constructor(t,e){this.start=t,this.content=e,this.marks=[],this.parsers=[]}}class sm{constructor(){this.text="",this.baseIndent=0,this.basePos=0,this.depth=0,this.markers=[],this.pos=0,this.indent=0,this.next=-1}forward(){this.basePos>this.pos&&this.forwardInner()}forwardInner(){let t=this.skipSpace(this.basePos);this.indent=this.countIndent(t,this.pos,this.indent),this.pos=t,this.next=t==this.text.length?-1:this.text.charCodeAt(t)}skipSpace(t){return hm(this.text,t)}reset(t){for(this.text=t,this.baseIndent=this.basePos=this.pos=this.indent=0,this.forwardInner(),this.depth=1;this.markers.length;)this.markers.pop()}moveBase(t){this.basePos=t,this.baseIndent=this.countIndent(t,this.pos,this.indent)}moveBaseColumn(t){this.baseIndent=t,this.basePos=this.findColumn(t)}addMarker(t){this.markers.push(t)}countIndent(t,e=0,i=0){for(let n=e;n=e.stack[i.depth+1].value+i.baseIndent)return!0;if(i.indent>=i.baseIndent+4)return!1;let n=(t.type==nm.OrderedList?mm:pm)(i,e,!1);return n>0&&(t.type!=nm.BulletList||um(i,e,!1)<0)&&i.text.charCodeAt(i.pos+n-1)==t.value}const am={[nm.Blockquote]:(t,e,i)=>62==i.next&&(i.markers.push(Dm(nm.QuoteMark,e.lineStart+i.pos,e.lineStart+i.pos+1)),i.moveBase(i.pos+(lm(i.text.charCodeAt(i.pos+1))?2:1)),t.end=e.lineStart+i.text.length,!0),[nm.ListItem]:(t,e,i)=>!(i.indent-1)&&(i.moveBaseColumn(i.baseIndent+t.value),!0),[nm.OrderedList]:om,[nm.BulletList]:om,[nm.Document]:()=>!0};function lm(t){return 32==t||9==t||10==t||13==t}function hm(t,e=0){for(;ei&&lm(t.charCodeAt(e-1));)e--;return e}function Om(t){if(96!=t.next&&126!=t.next)return-1;let e=t.pos+1;for(;e-1&&t.depth==e.stack.length||n<3?-1:1}function fm(t,e){for(let i=t.stack.length-1;i>=0;i--)if(t.stack[i].type==e)return!0;return!1}function pm(t,e,i){return 45!=t.next&&43!=t.next&&42!=t.next||t.pos!=t.text.length-1&&!lm(t.text.charCodeAt(t.pos+1))||!(!i||fm(e,nm.BulletList)||t.skipSpace(t.pos+2)=48&&r<=57;){if(n++,n==t.text.length)return-1;r=t.text.charCodeAt(n)}return n==t.pos||n>t.pos+9||46!=r&&41!=r||nt.pos+1||49!=t.next)?-1:n+1-t.pos}function gm(t){if(35!=t.next)return-1;let e=t.pos+1;for(;e6?-1:i}function Qm(t){if(45!=t.next&&61!=t.next||t.indent>=t.baseIndent+4)return-1;let e=t.pos+1;for(;e/,vm=/\?>/,wm=[[/^<(?:script|pre|style)(?:\s|>|$)/i,/<\/(?:script|pre|style)>/i],[/^\s*/i.exec(n);if(s)return t.append(Dm(nm.Comment,i,i+1+s[0].length));let o=/^\?[^]*?\?>/.exec(n);if(o)return t.append(Dm(nm.ProcessingInstruction,i,i+1+o[0].length));let a=/^(?:![A-Z][^]*?>|!\[CDATA\[[^]*?\]\]>|\/\s*[a-zA-Z][\w-]*\s*>|\s*[a-zA-Z][\w-]*(\s+[a-zA-Z:_][\w-.:]*(?:\s*=\s*(?:[^\s"'=<>`]+|'[^']*'|"[^"]*"))?)*\s*(\/\s*)?>)/.exec(n);return a?t.append(Dm(nm.HTMLTag,i,i+1+a[0].length)):-1},Emphasis(t,e,i){if(95!=e&&42!=e)return-1;let n=i+1;for(;t.char(n)==e;)n++;let r=t.slice(i-1,i),s=t.slice(n,n+1),o=Hm.test(r),a=Hm.test(s),l=/\s|^$/.test(r),h=/\s|^$/.test(s),c=!h&&(!a||l||o),O=!l&&(!o||h||a),d=c&&(42==e||!O||o),u=O&&(42==e||!c||a);return t.append(new Bm(95==e?Gm:Lm,i,n,(d?1:0)|(u?2:0)))},HardBreak(t,e,i){if(92==e&&10==t.char(i+1))return t.append(Dm(nm.HardBreak,i,i+2));if(32==e){let e=i+1;for(;32==t.char(e);)e++;if(10==t.char(e)&&e>=i+2)return t.append(Dm(nm.HardBreak,i,e+1))}return-1},Link:(t,e,i)=>91==e?t.append(new Bm(Nm,i,i+1,1)):-1,Image:(t,e,i)=>33==e&&91==t.char(i+1)?t.append(new Bm(Im,i,i+2,1)):-1,LinkEnd(t,e,i){if(93!=e)return-1;for(let e=t.parts.length-1;e>=0;e--){let n=t.parts[e];if(n instanceof Bm&&(n.type==Nm||n.type==Im)){if(!n.side||t.skipSpace(n.to)==i&&!/[(\[]/.test(t.slice(i+1,i+2)))return t.parts[e]=null,-1;let r=t.takeContent(e),s=t.parts[e]=Km(t,r,n.type==Nm?nm.Link:nm.Image,n.from,i+1);if(n.type==Nm)for(let i=0;ie?Dm(nm.URL,e+i,r+i):r==t.length&&null}}function eg(t,e,i){let n=t.charCodeAt(e);if(39!=n&&34!=n&&40!=n)return!1;let r=40==n?41:n;for(let n=e+1,s=!1;n=this.end?-1:this.text.charCodeAt(t-this.offset)}get end(){return this.offset+this.text.length}slice(t,e){return this.text.slice(t-this.offset,e-this.offset)}append(t){return this.parts.push(t),t.to}addDelimiter(t,e,i,n,r){return this.append(new Bm(t,e,i,(n?1:0)|(r?2:0)))}get hasOpenLink(){for(let t=this.parts.length-1;t>=0;t--){let e=this.parts[t];if(e instanceof Bm&&(e.type==Nm||e.type==Im))return!0}return!1}addElement(t){return this.append(t)}resolveMarkers(t){for(let e=t;e=t;o--){let t=this.parts[o];if(t instanceof Bm&&1&t.side&&t.type==i.type&&!(r&&(1&i.side||2&t.side)&&(t.to-t.from+s)%3==0&&((t.to-t.from)%3||s%3))){n=t;break}}if(!n)continue;let a=i.type.resolve,l=[],h=n.from,c=i.to;if(r){let t=Math.min(2,n.to-n.from,s);h=n.to-t,c=i.from+t,a=1==t?"Emphasis":"StrongEmphasis"}n.type.mark&&l.push(this.elt(n.type.mark,h,n.to));for(let t=o+1;t=0;e--){let i=this.parts[e];if(i instanceof Bm&&i.type==t)return e}return null}takeContent(t){let e=this.resolveMarkers(t);return this.parts.length=t,e}skipSpace(t){return hm(this.text,t-this.offset)+this.offset}elt(t,e,i,n){return"string"==typeof t?Dm(this.parser.getNodeType(t),e,i,n):new jm(t,e)}}function rg(t,e){if(!e.length)return t;if(!t.length)return e;let i=t.slice(),n=0;for(let t of e){for(;n(t?t-1:0))return!1;if(this.fragmentEnd<0){let t=this.fragment.to;for(;t>0&&"\n"!=this.input.read(t-1,t);)t--;this.fragmentEnd=t?t-1:0}let i=this.cursor;i||(i=this.cursor=this.fragment.tree.cursor(),i.firstChild());let n=t+this.fragment.offset;for(;i.to<=n;)if(!i.parent())return!1;for(;;){if(i.from>=n)return this.fragment.from<=e;if(!i.childAfter(n))return!1}}matches(t){let e=this.cursor.tree;return e&&e.prop(Yo.contextHash)==t}takeNodes(t){let e=this.cursor,i=this.fragment.offset,n=this.fragmentEnd-(this.fragment.openEnd?1:0),r=t.absoluteLineStart,s=r,o=t.block.children.length,a=s,l=o;for(;;){if(e.to-i>n){if(e.type.isAnonymous&&e.firstChild())continue;break}let r=ag(e.from-i,t.ranges);if(e.to-i<=t.ranges[t.rangeI].to)t.addNode(e.tree,r);else{let i=new Bo(t.parser.nodeSet.types[nm.Paragraph],[],[],0,t.block.hashProp);t.reusePlaceholders.set(i,e.tree),t.addNode(i,r)}if(e.type.is("Block")&&(sg.indexOf(e.type.id)<0?(s=e.to-i,o=t.block.children.length):(s=a,o=l,a=e.to-i,l=t.block.children.length)),!e.nextSibling())break}for(;t.block.children.length>o;)t.block.children.pop(),t.block.positions.pop();return s-r}}function ag(t,e){let i=t;for(let n=1;nPm[t])),Object.keys(Pm).map((t=>Rm[t])),Object.keys(Pm),Zm,am,Object.keys(Jm).map((t=>Jm[t])),Object.keys(Jm),[]);function cg(t,e,i){let n=[];for(let r=t.firstChild,s=e;;r=r.nextSibling){let t=r?r.from:i;if(t>s&&n.push({from:s,to:t}),!r)break;s=r.to}return n}const Og={resolve:"Strikethrough",mark:"StrikethroughMark"},dg={defineNodes:[{name:"Strikethrough",style:{"Strikethrough/...":il.strikethrough}},{name:"StrikethroughMark",style:il.processingInstruction}],parseInline:[{name:"Strikethrough",parse(t,e,i){if(126!=e||126!=t.char(i+1)||126==t.char(i+2))return-1;let n=t.slice(i-1,i),r=t.slice(i+2,i+3),s=/\s|^$/.test(n),o=/\s|^$/.test(r),a=Hm.test(n),l=Hm.test(r);return t.addDelimiter(Og,i,i+2,!o&&(!l||s||a),!s&&(!a||o||l))},after:"Emphasis"}]};function ug(t,e,i=0,n,r=0){let s=0,o=!0,a=-1,l=-1,h=!1,c=()=>{n.push(t.elt("TableCell",r+a,r+l,t.parser.parseInline(e.slice(a,l),r+a)))};for(let O=i;O-1)&&s++,o=!1,n&&(a>-1&&c(),n.push(t.elt("TableDelimiter",O+r,O+r+1))),a=l=-1),h=!h&&92==i}return a>-1&&(s++,n&&c()),s}function fg(t,e){for(let i=e;ifg(e.content,0)?new mg:null,endLeaf(t,e,i){if(i.parsers.some((t=>t instanceof mg))||!fg(e.text,e.basePos))return!1;let n=t.scanLine(t.absoluteLineEnd+1).text;return pg.test(n)&&ug(t,e.text,e.basePos)==ug(t,n,e.basePos)},before:"SetextHeading"}]};class Qg{nextLine(){return!1}finish(t,e){return t.addLeafElement(e,t.elt("Task",e.start,e.start+e.content.length,[t.elt("TaskMarker",e.start,e.start+3),...t.parser.parseInline(e.content.slice(3),e.start+3)])),!0}}const bg={defineNodes:[{name:"Task",block:!0,style:il.list},{name:"TaskMarker",style:il.atom}],parseBlock:[{name:"TaskList",leaf:(t,e)=>/^\[[ xX]\][ \t]/.test(e.content)&&"ListItem"==t.parentType().name?new Qg:null,after:"SetextHeading"}]},Sg=/(www\.)|(https?:\/\/)|([\w.+-]+@)|(mailto:|xmpp:)/gy,vg=/[\w-]+(\.[\w-]+)+(\/[^\s<]*)?/gy,wg=/[\w-]+\.[\w-]+($|\/)/,yg=/[\w.+-]+@[\w-]+(\.[\w.-]+)+/gy,xg=/\/[a-zA-Z\d@.]+/gy;function kg(t,e,i,n){let r=0;for(let s=e;s-1)return-1;let n=e+i[0].length;for(;;){let i,r=t[n-1];if(/[?!.,:*_~]/.test(r)||")"==r&&kg(t,e,n,")")>kg(t,e,n,"("))n--;else{if(";"!=r||!(i=/&(?:#\d+|#x[a-f\d]+|\w+);$/.exec(t.slice(e,n))))break;n=e+i.index}}return n}(t.text,n+r[0].length),s>-1&&t.hasOpenLink){s=n+/([^\[\]]|\[[^\]]*\])*/.exec(t.text.slice(n,s))[0].length}}else r[3]?s=Pg(t.text,n):(s=Pg(t.text,n+r[0].length),s>-1&&"xmpp:"==r[0]&&(xg.lastIndex=s,r=xg.exec(t.text),r&&(s=r.index+r[0].length)));return s<0?-1:(t.addElement(t.elt("URL",i,s+t.offset)),s+t.offset)}}]},Tg=[gg,bg,dg,$g];function _g(t,e,i){return(n,r,s)=>{if(r!=t||n.char(s+1)==t)return-1;let o=[n.elt(i,s,s+1)];for(let r=s+1;r=65&&s<=90||95==s||s>=97&&s<=122||s>=161;)r+=String.fromCharCode(n),n=t.peek(++e);var s;return Ig=t,Bg=i,Ng=r?r.toLowerCase():n==Hg||n==Jg?void 0:null}const Hg=63,Jg=33;function Kg(t,e){this.name=t,this.parent=e}const tQ=[6,10,7,8,9],eQ=new Af({start:null,shift:(t,e,i,n)=>tQ.indexOf(e)>-1?new Kg(Fg(n,1)||"",t):t,reduce:(t,e)=>e==Cg&&t?t.parent:t,reuse(t,e,i,n){let r=e.type.id;return 6==r||36==r?new Kg(Fg(n,1)||"",t):t},strict:!1}),iQ=new yf(((t,e)=>{if(60!=t.next)return void(t.next<0&&e.context&&t.acceptToken(57));t.advance();let i=47==t.next;i&&t.advance();let n=Fg(t,0);if(void 0===n)return;if(!n)return t.acceptToken(i?14:6);let r=e.context?e.context.name:null;if(i){if(n==r)return t.acceptToken(11);if(r&&Dg[r])return t.acceptToken(57,-2);if(e.dialectEnabled(0))return t.acceptToken(12);for(let t=e.context;t;t=t.parent)if(t.name==n)return;t.acceptToken(13)}else{if("script"==n)return t.acceptToken(7);if("style"==n)return t.acceptToken(8);if("textarea"==n)return t.acceptToken(9);if(jg.hasOwnProperty(n))return t.acceptToken(10);r&&Gg[r]&&Gg[r][n]?t.acceptToken(57,-1):t.acceptToken(6)}}),{contextual:!0}),nQ=new yf((t=>{for(let e=0,i=0;;i++){if(t.next<0){i&&t.acceptToken(58);break}if(45==t.next)e++;else{if(62==t.next&&e>=2){i>=3&&t.acceptToken(58,-2);break}e=0}t.advance()}}));const rQ=new yf(((t,e)=>{if(47==t.next&&62==t.peek(1)){let i=e.dialectEnabled(1)||function(t){for(;t;t=t.parent)if("svg"==t.name||"math"==t.name)return!0;return!1}(e.context);t.acceptToken(i?5:4,2)}else 62==t.next&&t.acceptToken(4,1)}));function sQ(t,e,i){let n=2+t.length;return new yf((r=>{for(let s=0,o=0,a=0;;a++){if(r.next<0){a&&r.acceptToken(e);break}if(0==s&&60==r.next||1==s&&47==r.next||s>=2&&so?r.acceptToken(e,-o):r.acceptToken(i,-(o-2));break}if((10==r.next||13==r.next)&&a){r.acceptToken(e,1);break}s=o=0}else o++;r.advance()}}))}const oQ=sQ("script",54,1),aQ=sQ("style",55,2),lQ=sQ("textarea",56,3),hQ=Wa({"Text RawText":il.content,"StartTag StartCloseTag SelfClosingEndTag EndTag":il.angleBracket,TagName:il.tagName,"MismatchedCloseTag/TagName":[il.tagName,il.invalid],AttributeName:il.attributeName,"AttributeValue UnquotedAttributeValue":il.attributeValue,Is:il.definitionOperator,"EntityReference CharacterReference":il.character,Comment:il.blockComment,ProcessingInst:il.processingInstruction,DoctypeDecl:il.documentMeta}),cQ=zf.deserialize({version:14,states:",xOVO!rOOO!WQ#tO'#CqO!]Q#tO'#CzO!bQ#tO'#C}O!gQ#tO'#DQO!lQ#tO'#DSO!qOaO'#CpO!|ObO'#CpO#XOdO'#CpO$eO!rO'#CpOOO`'#Cp'#CpO$lO$fO'#DTO$tQ#tO'#DVO$yQ#tO'#DWOOO`'#Dk'#DkOOO`'#DY'#DYQVO!rOOO%OQ&rO,59]O%ZQ&rO,59fO%fQ&rO,59iO%qQ&rO,59lO%|Q&rO,59nOOOa'#D^'#D^O&XOaO'#CxO&dOaO,59[OOOb'#D_'#D_O&lObO'#C{O&wObO,59[OOOd'#D`'#D`O'POdO'#DOO'[OdO,59[OOO`'#Da'#DaO'dO!rO,59[O'kQ#tO'#DROOO`,59[,59[OOOp'#Db'#DbO'pO$fO,59oOOO`,59o,59oO'xQ#|O,59qO'}Q#|O,59rOOO`-E7W-E7WO(SQ&rO'#CsOOQW'#DZ'#DZO(bQ&rO1G.wOOOa1G.w1G.wOOO`1G/Y1G/YO(mQ&rO1G/QOOOb1G/Q1G/QO(xQ&rO1G/TOOOd1G/T1G/TO)TQ&rO1G/WOOO`1G/W1G/WO)`Q&rO1G/YOOOa-E7[-E7[O)kQ#tO'#CyOOO`1G.v1G.vOOOb-E7]-E7]O)pQ#tO'#C|OOOd-E7^-E7^O)uQ#tO'#DPOOO`-E7_-E7_O)zQ#|O,59mOOOp-E7`-E7`OOO`1G/Z1G/ZOOO`1G/]1G/]OOO`1G/^1G/^O*PQ,UO,59_OOQW-E7X-E7XOOOa7+$c7+$cOOO`7+$t7+$tOOOb7+$l7+$lOOOd7+$o7+$oOOO`7+$r7+$rO*[Q#|O,59eO*aQ#|O,59hO*fQ#|O,59kOOO`1G/X1G/XO*kO7[O'#CvO*|OMhO'#CvOOQW1G.y1G.yOOO`1G/P1G/POOO`1G/S1G/SOOO`1G/V1G/VOOOO'#D['#D[O+_O7[O,59bOOQW,59b,59bOOOO'#D]'#D]O+pOMhO,59bOOOO-E7Y-E7YOOQW1G.|1G.|OOOO-E7Z-E7Z",stateData:",]~O!^OS~OUSOVPOWQOXROYTO[]O][O^^O`^Oa^Ob^Oc^Ox^O{_O!dZO~OfaO~OfbO~OfcO~OfdO~OfeO~O!WfOPlP!ZlP~O!XiOQoP!ZoP~O!YlORrP!ZrP~OUSOVPOWQOXROYTOZqO[]O][O^^O`^Oa^Ob^Oc^Ox^O!dZO~O!ZrO~P#dO![sO!euO~OfvO~OfwO~OS|OT}OhyO~OS!POT}OhyO~OS!ROT}OhyO~OS!TOT}OhyO~OS}OT}OhyO~O!WfOPlX!ZlX~OP!WO!Z!XO~O!XiOQoX!ZoX~OQ!ZO!Z!XO~O!YlORrX!ZrX~OR!]O!Z!XO~O!Z!XO~P#dOf!_O~O![sO!e!aO~OS!bO~OS!cO~Oi!dOSgXTgXhgX~OS!fOT!gOhyO~OS!hOT!gOhyO~OS!iOT!gOhyO~OS!jOT!gOhyO~OS!gOT!gOhyO~Of!kO~Of!lO~Of!mO~OS!nO~Ok!qO!`!oO!b!pO~OS!rO~OS!sO~OS!tO~Oa!uOb!uOc!uO!`!wO!a!uO~Oa!xOb!xOc!xO!b!wO!c!xO~Oa!uOb!uOc!uO!`!{O!a!uO~Oa!xOb!xOc!xO!b!{O!c!xO~OT~bac!dx{!d~",goto:"%p!`PPPPPPPPPPPPPPPPPPPP!a!gP!mPP!yP!|#P#S#Y#]#`#f#i#l#r#x!aP!a!aP$O$U$l$r$x%O%U%[%bPPPPPPPP%hX^OX`pXUOX`pezabcde{!O!Q!S!UR!q!dRhUR!XhXVOX`pRkVR!XkXWOX`pRnWR!XnXXOX`pQrXR!XpXYOX`pQ`ORx`Q{aQ!ObQ!QcQ!SdQ!UeZ!e{!O!Q!S!UQ!v!oR!z!vQ!y!pR!|!yQgUR!VgQjVR!YjQmWR![mQpXR!^pQtZR!`tS_O`ToXp",nodeNames:"⚠ StartCloseTag StartCloseTag StartCloseTag EndTag SelfClosingEndTag StartTag StartTag StartTag StartTag StartTag StartCloseTag StartCloseTag StartCloseTag IncompleteCloseTag Document Text EntityReference CharacterReference InvalidEntity Element OpenTag TagName Attribute AttributeName Is AttributeValue UnquotedAttributeValue ScriptText CloseTag OpenTag StyleText CloseTag OpenTag TextareaText CloseTag OpenTag CloseTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag CloseTag DoctypeDecl",maxTerm:67,context:eQ,nodeProps:[["closedBy",-10,1,2,3,7,8,9,10,11,12,13,"EndTag",6,"EndTag SelfClosingEndTag",-4,21,30,33,36,"CloseTag"],["openedBy",4,"StartTag StartCloseTag",5,"StartTag",-4,29,32,35,37,"OpenTag"],["group",-9,14,17,18,19,20,39,40,41,42,"Entity",16,"Entity TextContent",-3,28,31,34,"TextContent Entity"],["isolate",-11,21,29,30,32,33,35,36,37,38,41,42,"ltr",-3,26,27,39,""]],propSources:[hQ],skippedNodes:[0],repeatNodeCount:9,tokenData:"!]tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^/^!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!Z5zbkWOX5uXZ7SZ[5u[^7S^p5uqr5urs7Sst+Ptw5uwx7Sx!]5u!]!^7w!^!a7S!a#S5u#S#T7S#T;'S5u;'S;=`8n<%lO5u!R7VVOp7Sqs7St!]7S!]!^7l!^;'S7S;'S;=`7q<%lO7S!R7qOa!R!R7tP;=`<%l7S!Z8OYkWa!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!Z8qP;=`<%l5u!_8{ihSkWOX5uXZ7SZ[5u[^7S^p5uqr8trs7Sst/^tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^:j!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!_:sbhSkWa!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VP<%l?Ah;{?Ah?BY7S?BY?Mn;{?MnO7S!V=dXhSa!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!V>SP;=`<%l;{!_>YP;=`<%l8t!_>dhhSkWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^/^!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!Z@TakWOX@OXZAYZ[@O[^AY^p@Oqr@OrsAYsw@OwxAYx!]@O!]!^Az!^!aAY!a#S@O#S#TAY#T;'S@O;'S;=`Bq<%lO@O!RA]UOpAYq!]AY!]!^Ao!^;'SAY;'S;=`At<%lOAY!RAtOb!R!RAwP;=`<%lAY!ZBRYkWb!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!ZBtP;=`<%l@O!_COhhSkWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^Dj!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!_DsbhSkWb!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VFQbhSOpAYqrE{rsAYswE{wxAYx!PE{!P!QAY!Q!]E{!]!^GY!^!aAY!a#sE{#s$fAY$f;'SE{;'S;=`G|<%l?AhE{?Ah?BYAY?BY?MnE{?MnOAY!VGaXhSb!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!VHPP;=`<%lE{!_HVP;=`<%lBw!ZHcW!bx`P!a`Or(trs'ksv(tw!^(t!^!_)e!_;'S(t;'S;=`*P<%lO(t!aIYlhS`PkW!a`!cpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OKQ!O!P-_!P!Q$q!Q!^-_!^!_*V!_!a&X!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!aK_khS`PkW!a`!cpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx!P-_!P!Q$q!Q!^-_!^!_*V!_!`&X!`!aMS!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!TM_X`P!a`!cp!eQOr&Xrs&}sv&Xwx(tx!^&X!^!_*V!_;'S&X;'S;=`*y<%lO&X!aNZ!ZhSfQ`PkW!a`!cpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OMz!O!PMz!P!Q$q!Q![Mz![!]Mz!]!^-_!^!_*V!_!a&X!a!c-_!c!}Mz!}#R-_#R#SMz#S#T1k#T#oMz#o#s-_#s$f$q$f$}-_$}%OMz%O%W-_%W%oMz%o%p-_%p&aMz&a&b-_&b1pMz1p4UMz4U4dMz4d4e-_4e$ISMz$IS$I`-_$I`$IbMz$Ib$Je-_$Je$JgMz$Jg$Kh-_$Kh%#tMz%#t&/x-_&/x&EtMz&Et&FV-_&FV;'SMz;'S;:j!#|;:j;=`3X<%l?&r-_?&r?AhMz?Ah?BY$q?BY?MnMz?MnO$q!a!$PP;=`<%lMz!R!$ZY!a`!cpOq*Vqr!$yrs(Vsv*Vwx)ex!a*V!a!b!4t!b;'S*V;'S;=`*s<%lO*V!R!%Q]!a`!cpOr*Vrs(Vsv*Vwx)ex}*V}!O!%y!O!f*V!f!g!']!g#W*V#W#X!0`#X;'S*V;'S;=`*s<%lO*V!R!&QX!a`!cpOr*Vrs(Vsv*Vwx)ex}*V}!O!&m!O;'S*V;'S;=`*s<%lO*V!R!&vV!a`!cp!dPOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!'dX!a`!cpOr*Vrs(Vsv*Vwx)ex!q*V!q!r!(P!r;'S*V;'S;=`*s<%lO*V!R!(WX!a`!cpOr*Vrs(Vsv*Vwx)ex!e*V!e!f!(s!f;'S*V;'S;=`*s<%lO*V!R!(zX!a`!cpOr*Vrs(Vsv*Vwx)ex!v*V!v!w!)g!w;'S*V;'S;=`*s<%lO*V!R!)nX!a`!cpOr*Vrs(Vsv*Vwx)ex!{*V!{!|!*Z!|;'S*V;'S;=`*s<%lO*V!R!*bX!a`!cpOr*Vrs(Vsv*Vwx)ex!r*V!r!s!*}!s;'S*V;'S;=`*s<%lO*V!R!+UX!a`!cpOr*Vrs(Vsv*Vwx)ex!g*V!g!h!+q!h;'S*V;'S;=`*s<%lO*V!R!+xY!a`!cpOr!+qrs!,hsv!+qvw!-Swx!.[x!`!+q!`!a!/j!a;'S!+q;'S;=`!0Y<%lO!+qq!,mV!cpOv!,hvx!-Sx!`!,h!`!a!-q!a;'S!,h;'S;=`!.U<%lO!,hP!-VTO!`!-S!`!a!-f!a;'S!-S;'S;=`!-k<%lO!-SP!-kO{PP!-nP;=`<%l!-Sq!-xS!cp{POv(Vx;'S(V;'S;=`(h<%lO(Vq!.XP;=`<%l!,ha!.aX!a`Or!.[rs!-Ssv!.[vw!-Sw!`!.[!`!a!.|!a;'S!.[;'S;=`!/d<%lO!.[a!/TT!a`{POr)esv)ew;'S)e;'S;=`)y<%lO)ea!/gP;=`<%l!.[!R!/sV!a`!cp{POr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!0]P;=`<%l!+q!R!0gX!a`!cpOr*Vrs(Vsv*Vwx)ex#c*V#c#d!1S#d;'S*V;'S;=`*s<%lO*V!R!1ZX!a`!cpOr*Vrs(Vsv*Vwx)ex#V*V#V#W!1v#W;'S*V;'S;=`*s<%lO*V!R!1}X!a`!cpOr*Vrs(Vsv*Vwx)ex#h*V#h#i!2j#i;'S*V;'S;=`*s<%lO*V!R!2qX!a`!cpOr*Vrs(Vsv*Vwx)ex#m*V#m#n!3^#n;'S*V;'S;=`*s<%lO*V!R!3eX!a`!cpOr*Vrs(Vsv*Vwx)ex#d*V#d#e!4Q#e;'S*V;'S;=`*s<%lO*V!R!4XX!a`!cpOr*Vrs(Vsv*Vwx)ex#X*V#X#Y!+q#Y;'S*V;'S;=`*s<%lO*V!R!4{Y!a`!cpOr!4trs!5ksv!4tvw!6Vwx!8]x!a!4t!a!b!:]!b;'S!4t;'S;=`!;r<%lO!4tq!5pV!cpOv!5kvx!6Vx!a!5k!a!b!7W!b;'S!5k;'S;=`!8V<%lO!5kP!6YTO!a!6V!a!b!6i!b;'S!6V;'S;=`!7Q<%lO!6VP!6lTO!`!6V!`!a!6{!a;'S!6V;'S;=`!7Q<%lO!6VP!7QOxPP!7TP;=`<%l!6Vq!7]V!cpOv!5kvx!6Vx!`!5k!`!a!7r!a;'S!5k;'S;=`!8V<%lO!5kq!7yS!cpxPOv(Vx;'S(V;'S;=`(h<%lO(Vq!8YP;=`<%l!5ka!8bX!a`Or!8]rs!6Vsv!8]vw!6Vw!a!8]!a!b!8}!b;'S!8];'S;=`!:V<%lO!8]a!9SX!a`Or!8]rs!6Vsv!8]vw!6Vw!`!8]!`!a!9o!a;'S!8];'S;=`!:V<%lO!8]a!9vT!a`xPOr)esv)ew;'S)e;'S;=`)y<%lO)ea!:YP;=`<%l!8]!R!:dY!a`!cpOr!4trs!5ksv!4tvw!6Vwx!8]x!`!4t!`!a!;S!a;'S!4t;'S;=`!;r<%lO!4t!R!;]V!a`!cpxPOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!;uP;=`<%l!4t!V!{let a=t.type.id;if(a==Mg)return uQ(t,e,i);if(a==Eg)return uQ(t,e,n);if(a==Yg)return uQ(t,e,r);if(a==Cg&&s.length){let i,n=t.node,r=n.firstChild,o=r&&dQ(r,e);if(o)for(let t of s)if(t.tag==o&&(!t.attrs||t.attrs(i||(i=OQ(r,e))))){let e=n.lastChild,i=e.type.id==Ug?e.from:n.to;if(i>r.to)return{parser:t.parser,overlay:[{from:r.to,to:i}]}}}if(o&&a==Wg){let i,n=t.node;if(i=n.firstChild){let t=o[e.read(i.from,i.to)];if(t)for(let i of t){if(i.tagName&&i.tagName!=dQ(n.parent,e))continue;let t=n.lastChild;if(t.type.id==zg){let e=t.from+1,n=t.lastChild,r=t.to-(n&&n.isError?0:1);if(r>e)return{parser:i.parser,overlay:[{from:e,to:r}]}}else if(t.type.id==Vg)return{parser:i.parser,overlay:[{from:t.from,to:t.to}]}}}}return null}))}const pQ=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288];function mQ(t){return t>=65&&t<=90||t>=97&&t<=122||t>=161}function gQ(t){return t>=48&&t<=57}const QQ=new yf(((t,e)=>{for(let i=!1,n=0,r=0;;r++){let{next:s}=t;if(mQ(s)||45==s||95==s||i&&gQ(s))!i&&(45!=s||r>0)&&(i=!0),n===r&&45==s&&n++,t.advance();else{if(92!=s||10==t.peek(1)){i&&t.acceptToken(40==s?100:2==n&&e.canShift(2)?2:101);break}t.advance(),t.next>-1&&t.advance(),i=!0}}})),bQ=new yf((t=>{if(pQ.includes(t.peek(-1))){let{next:e}=t;(mQ(e)||95==e||35==e||46==e||91==e||58==e&&mQ(t.peek(1))||45==e||38==e)&&t.acceptToken(99)}})),SQ=new yf((t=>{if(!pQ.includes(t.peek(-1))){let{next:e}=t;if(37==e&&(t.advance(),t.acceptToken(1)),mQ(e)){do{t.advance()}while(mQ(t.next)||gQ(t.next));t.acceptToken(1)}}})),vQ=Wa({"AtKeyword import charset namespace keyframes media supports":il.definitionKeyword,"from to selector":il.keyword,NamespaceName:il.namespace,KeyframeName:il.labelName,KeyframeRangeName:il.operatorKeyword,TagName:il.tagName,ClassName:il.className,PseudoClassName:il.constant(il.className),IdName:il.labelName,"FeatureName PropertyName":il.propertyName,AttributeName:il.attributeName,NumberLiteral:il.number,KeywordQuery:il.keyword,UnaryQueryOp:il.operatorKeyword,"CallTag ValueName":il.atom,VariableName:il.variableName,Callee:il.operatorKeyword,Unit:il.unit,"UniversalSelector NestingSelector":il.definitionOperator,MatchOp:il.compareOperator,"ChildOp SiblingOp, LogicOp":il.logicOperator,BinOp:il.arithmeticOperator,Important:il.modifier,Comment:il.blockComment,ColorLiteral:il.color,"ParenthesizedContent StringLiteral":il.string,":":il.punctuation,"PseudoOp #":il.derefOperator,"; ,":il.separator,"( )":il.paren,"[ ]":il.squareBracket,"{ }":il.brace}),wQ={__proto__:null,lang:32,"nth-child":32,"nth-last-child":32,"nth-of-type":32,"nth-last-of-type":32,dir:32,"host-context":32,url:60,"url-prefix":60,domain:60,regexp:60,selector:138},yQ={__proto__:null,"@import":118,"@media":142,"@charset":146,"@namespace":150,"@keyframes":156,"@supports":168},xQ={__proto__:null,not:132,only:132},kQ=zf.deserialize({version:14,states:":^QYQ[OOO#_Q[OOP#fOWOOOOQP'#Cd'#CdOOQP'#Cc'#CcO#kQ[O'#CfO$_QXO'#CaO$fQ[O'#ChO$qQ[O'#DTO$vQ[O'#DWOOQP'#Em'#EmO${QdO'#DgO%jQ[O'#DtO${QdO'#DvO%{Q[O'#DxO&WQ[O'#D{O&`Q[O'#ERO&nQ[O'#ETOOQS'#El'#ElOOQS'#EW'#EWQYQ[OOO&uQXO'#CdO'jQWO'#DcO'oQWO'#EsO'zQ[O'#EsQOQWOOP(UO#tO'#C_POOO)C@[)C@[OOQP'#Cg'#CgOOQP,59Q,59QO#kQ[O,59QO(aQ[O'#E[O({QWO,58{O)TQ[O,59SO$qQ[O,59oO$vQ[O,59rO(aQ[O,59uO(aQ[O,59wO(aQ[O,59xO)`Q[O'#DbOOQS,58{,58{OOQP'#Ck'#CkOOQO'#DR'#DROOQP,59S,59SO)gQWO,59SO)lQWO,59SOOQP'#DV'#DVOOQP,59o,59oOOQO'#DX'#DXO)qQ`O,59rOOQS'#Cp'#CpO${QdO'#CqO)yQvO'#CsO+ZQtO,5:ROOQO'#Cx'#CxO)lQWO'#CwO+oQWO'#CyO+tQ[O'#DOOOQS'#Ep'#EpOOQO'#Dj'#DjO+|Q[O'#DqO,[QWO'#EtO&`Q[O'#DoO,jQWO'#DrOOQO'#Eu'#EuO)OQWO,5:`O,oQpO,5:bOOQS'#Dz'#DzO,wQWO,5:dO,|Q[O,5:dOOQO'#D}'#D}O-UQWO,5:gO-ZQWO,5:mO-cQWO,5:oOOQS-E8U-E8UO${QdO,59}O-kQ[O'#E^O-xQWO,5;_O-xQWO,5;_POOO'#EV'#EVP.TO#tO,58yPOOO,58y,58yOOQP1G.l1G.lO.zQXO,5:vOOQO-E8Y-E8YOOQS1G.g1G.gOOQP1G.n1G.nO)gQWO1G.nO)lQWO1G.nOOQP1G/Z1G/ZO/XQ`O1G/^O/rQXO1G/aO0YQXO1G/cO0pQXO1G/dO1WQWO,59|O1]Q[O'#DSO1dQdO'#CoOOQP1G/^1G/^O${QdO1G/^O1kQpO,59]OOQS,59_,59_O${QdO,59aO1sQWO1G/mOOQS,59c,59cO1xQ!bO,59eOOQS'#DP'#DPOOQS'#EY'#EYO2QQ[O,59jOOQS,59j,59jO2YQWO'#DjO2eQWO,5:VO2jQWO,5:]O&`Q[O,5:XO&`Q[O'#E_O2rQWO,5;`O2}QWO,5:ZO(aQ[O,5:^OOQS1G/z1G/zOOQS1G/|1G/|OOQS1G0O1G0OO3`QWO1G0OO3eQdO'#EOOOQS1G0R1G0ROOQS1G0X1G0XOOQS1G0Z1G0ZO3pQtO1G/iOOQO,5:x,5:xO4WQ[O,5:xOOQO-E8[-E8[O4eQWO1G0yPOOO-E8T-E8TPOOO1G.e1G.eOOQP7+$Y7+$YOOQP7+$x7+$xO${QdO7+$xOOQS1G/h1G/hO4pQXO'#ErO4wQWO,59nO4|QtO'#EXO5tQdO'#EoO6OQWO,59ZO6TQpO7+$xOOQS1G.w1G.wOOQS1G.{1G.{OOQS7+%X7+%XO6]QWO1G/POOQS-E8W-E8WOOQS1G/U1G/UO${QdO1G/qOOQO1G/w1G/wOOQO1G/s1G/sO6bQWO,5:yOOQO-E8]-E8]O6pQXO1G/xOOQS7+%j7+%jO6wQYO'#CsOOQO'#EQ'#EQO7SQ`O'#EPOOQO'#EP'#EPO7_QWO'#E`O7gQdO,5:jOOQS,5:j,5:jO7rQtO'#E]O${QdO'#E]O8sQdO7+%TOOQO7+%T7+%TOOQO1G0d1G0dO9WQpO<OAN>OO:xQdO,5:uOOQO-E8X-E8XOOQO<T![;'S%^;'S;=`%o<%lO%^l;TUo`Oy%^z!Q%^!Q![;g![;'S%^;'S;=`%o<%lO%^l;nYo`#e[Oy%^z!Q%^!Q![;g![!g%^!g!h<^!h#X%^#X#Y<^#Y;'S%^;'S;=`%o<%lO%^l[[o`#e[Oy%^z!O%^!O!P;g!P!Q%^!Q![>T![!g%^!g!h<^!h#X%^#X#Y<^#Y;'S%^;'S;=`%o<%lO%^n?VSt^Oy%^z;'S%^;'S;=`%o<%lO%^l?hWjWOy%^z!O%^!O!P;O!P!Q%^!Q![>T![;'S%^;'S;=`%o<%lO%^n@VU#bQOy%^z!Q%^!Q![;g![;'S%^;'S;=`%o<%lO%^~@nTjWOy%^z{@}{;'S%^;'S;=`%o<%lO%^~AUSo`#[~Oy%^z;'S%^;'S;=`%o<%lO%^lAg[#e[Oy%^z!O%^!O!P;g!P!Q%^!Q![>T![!g%^!g!h<^!h#X%^#X#Y<^#Y;'S%^;'S;=`%o<%lO%^bBbU]QOy%^z![%^![!]Bt!];'S%^;'S;=`%o<%lO%^bB{S^Qo`Oy%^z;'S%^;'S;=`%o<%lO%^nC^S!Y^Oy%^z;'S%^;'S;=`%o<%lO%^dCoS|SOy%^z;'S%^;'S;=`%o<%lO%^bDQU!OQOy%^z!`%^!`!aDd!a;'S%^;'S;=`%o<%lO%^bDkS!OQo`Oy%^z;'S%^;'S;=`%o<%lO%^bDzWOy%^z!c%^!c!}Ed!}#T%^#T#oEd#o;'S%^;'S;=`%o<%lO%^bEk[![Qo`Oy%^z}%^}!OEd!O!Q%^!Q![Ed![!c%^!c!}Ed!}#T%^#T#oEd#o;'S%^;'S;=`%o<%lO%^nFfSq^Oy%^z;'S%^;'S;=`%o<%lO%^nFwSp^Oy%^z;'S%^;'S;=`%o<%lO%^bGWUOy%^z#b%^#b#cGj#c;'S%^;'S;=`%o<%lO%^bGoUo`Oy%^z#W%^#W#XHR#X;'S%^;'S;=`%o<%lO%^bHYS!bQo`Oy%^z;'S%^;'S;=`%o<%lO%^bHiUOy%^z#f%^#f#gHR#g;'S%^;'S;=`%o<%lO%^fIQS!TUOy%^z;'S%^;'S;=`%o<%lO%^nIcS!S^Oy%^z;'S%^;'S;=`%o<%lO%^fItU!RQOy%^z!_%^!_!`6y!`;'S%^;'S;=`%o<%lO%^`JZP;=`<%l$}",tokenizers:[bQ,SQ,QQ,1,2,3,4,new wf("m~RRYZ[z{a~~g~aO#^~~dP!P!Qg~lO#_~~",28,105)],topRules:{StyleSheet:[0,4],Styles:[1,86]},specialized:[{term:100,get:t=>wQ[t]||-1},{term:58,get:t=>yQ[t]||-1},{term:101,get:t=>xQ[t]||-1}],tokenPrec:1200});let PQ=null;function $Q(){if(!PQ&&"object"==typeof document&&document.body){let{style:t}=document.body,e=[],i=new Set;for(let n in t)"cssText"!=n&&"cssFloat"!=n&&"string"==typeof t[n]&&(/[A-Z]/.test(n)&&(n=n.replace(/[A-Z]/g,(t=>"-"+t.toLowerCase()))),i.has(n)||(e.push(n),i.add(n)));PQ=e.sort().map((t=>({type:"property",label:t})))}return PQ||[]}const TQ=["active","after","any-link","autofill","backdrop","before","checked","cue","default","defined","disabled","empty","enabled","file-selector-button","first","first-child","first-letter","first-line","first-of-type","focus","focus-visible","focus-within","fullscreen","has","host","host-context","hover","in-range","indeterminate","invalid","is","lang","last-child","last-of-type","left","link","marker","modal","not","nth-child","nth-last-child","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","part","placeholder","placeholder-shown","read-only","read-write","required","right","root","scope","selection","slotted","target","target-text","valid","visited","where"].map((t=>({type:"class",label:t}))),_Q=["above","absolute","activeborder","additive","activecaption","after-white-space","ahead","alias","all","all-scroll","alphabetic","alternate","always","antialiased","appworkspace","asterisks","attr","auto","auto-flow","avoid","avoid-column","avoid-page","avoid-region","axis-pan","background","backwards","baseline","below","bidi-override","blink","block","block-axis","bold","bolder","border","border-box","both","bottom","break","break-all","break-word","bullets","button","button-bevel","buttonface","buttonhighlight","buttonshadow","buttontext","calc","capitalize","caps-lock-indicator","caption","captiontext","caret","cell","center","checkbox","circle","cjk-decimal","clear","clip","close-quote","col-resize","collapse","color","color-burn","color-dodge","column","column-reverse","compact","condensed","contain","content","contents","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","darken","dashed","decimal","decimal-leading-zero","default","default-button","dense","destination-atop","destination-in","destination-out","destination-over","difference","disc","discard","disclosure-closed","disclosure-open","document","dot-dash","dot-dot-dash","dotted","double","down","e-resize","ease","ease-in","ease-in-out","ease-out","element","ellipse","ellipsis","embed","end","ethiopic-abegede-gez","ethiopic-halehame-aa-er","ethiopic-halehame-gez","ew-resize","exclusion","expanded","extends","extra-condensed","extra-expanded","fantasy","fast","fill","fill-box","fixed","flat","flex","flex-end","flex-start","footnotes","forwards","from","geometricPrecision","graytext","grid","groove","hand","hard-light","help","hidden","hide","higher","highlight","highlighttext","horizontal","hsl","hsla","hue","icon","ignore","inactiveborder","inactivecaption","inactivecaptiontext","infinite","infobackground","infotext","inherit","initial","inline","inline-axis","inline-block","inline-flex","inline-grid","inline-table","inset","inside","intrinsic","invert","italic","justify","keep-all","landscape","large","larger","left","level","lighter","lighten","line-through","linear","linear-gradient","lines","list-item","listbox","listitem","local","logical","loud","lower","lower-hexadecimal","lower-latin","lower-norwegian","lowercase","ltr","luminosity","manipulation","match","matrix","matrix3d","medium","menu","menutext","message-box","middle","min-intrinsic","mix","monospace","move","multiple","multiple_mask_images","multiply","n-resize","narrower","ne-resize","nesw-resize","no-close-quote","no-drop","no-open-quote","no-repeat","none","normal","not-allowed","nowrap","ns-resize","numbers","numeric","nw-resize","nwse-resize","oblique","opacity","open-quote","optimizeLegibility","optimizeSpeed","outset","outside","outside-shape","overlay","overline","padding","padding-box","painted","page","paused","perspective","pinch-zoom","plus-darker","plus-lighter","pointer","polygon","portrait","pre","pre-line","pre-wrap","preserve-3d","progress","push-button","radial-gradient","radio","read-only","read-write","read-write-plaintext-only","rectangle","region","relative","repeat","repeating-linear-gradient","repeating-radial-gradient","repeat-x","repeat-y","reset","reverse","rgb","rgba","ridge","right","rotate","rotate3d","rotateX","rotateY","rotateZ","round","row","row-resize","row-reverse","rtl","run-in","running","s-resize","sans-serif","saturation","scale","scale3d","scaleX","scaleY","scaleZ","screen","scroll","scrollbar","scroll-position","se-resize","self-start","self-end","semi-condensed","semi-expanded","separate","serif","show","single","skew","skewX","skewY","skip-white-space","slide","slider-horizontal","slider-vertical","sliderthumb-horizontal","sliderthumb-vertical","slow","small","small-caps","small-caption","smaller","soft-light","solid","source-atop","source-in","source-out","source-over","space","space-around","space-between","space-evenly","spell-out","square","start","static","status-bar","stretch","stroke","stroke-box","sub","subpixel-antialiased","svg_masks","super","sw-resize","symbolic","symbols","system-ui","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group","text","text-bottom","text-top","textarea","textfield","thick","thin","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","to","top","transform","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","unidirectional-pan","unset","up","upper-latin","uppercase","url","var","vertical","vertical-text","view-box","visible","visibleFill","visiblePainted","visibleStroke","visual","w-resize","wait","wave","wider","window","windowframe","windowtext","words","wrap","wrap-reverse","x-large","x-small","xor","xx-large","xx-small"].map((t=>({type:"keyword",label:t}))).concat(["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"].map((t=>({type:"constant",label:t})))),RQ=["a","abbr","address","article","aside","b","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","dd","del","details","dfn","dialog","div","dl","dt","em","figcaption","figure","footer","form","header","hgroup","h1","h2","h3","h4","h5","h6","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","main","meter","nav","ol","output","p","pre","ruby","section","select","small","source","span","strong","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","tr","u","ul"].map((t=>({type:"type",label:t}))),ZQ=/^(\w[\w-]*|-\w[\w-]*|)$/,XQ=/^-(-[\w-]*)?$/;const CQ=new ua,qQ=["Declaration"];function WQ(t){for(let e=t;;){if(e.type.isTop)return e;if(!(e=e.parent))return t}}function AQ(t,e,i){if(e.to-e.from>4096){let n=CQ.get(e);if(n)return n;let r=[],s=new Set,o=e.cursor(Io.IncludeAnonymous);if(o.firstChild())do{for(let e of AQ(t,o.node,i))s.has(e.label)||(s.add(e.label),r.push(e))}while(o.nextSibling());return CQ.set(e,r),r}{let n=[],r=new Set;return e.cursor().iterate((e=>{var s;if(i(e)&&e.matchContext(qQ)&&":"==(null===(s=e.node.nextSibling)||void 0===s?void 0:s.name)){let i=t.sliceString(e.from,e.to);r.has(i)||(r.add(i),n.push({label:i,type:"variable"}))}})),n}}const zQ=t=>e=>{let{state:i,pos:n}=e,r=cl(i).resolveInner(n,-1),s=r.type.isError&&r.from==r.to-1&&"-"==i.doc.sliceString(r.from,r.to);if("PropertyName"==r.name||(s||"TagName"==r.name)&&/^(Block|Styles)$/.test(r.resolve(r.to).name))return{from:r.from,options:$Q(),validFor:ZQ};if("ValueName"==r.name)return{from:r.from,options:_Q,validFor:ZQ};if("PseudoClassName"==r.name)return{from:r.from,options:TQ,validFor:ZQ};if(t(r)||(e.explicit||s)&&function(t,e){var i;if(("("==t.name||t.type.isError)&&(t=t.parent||t),"ArgList"!=t.name)return!1;let n=null===(i=t.parent)||void 0===i?void 0:i.firstChild;return"Callee"==(null==n?void 0:n.name)&&"var"==e.sliceString(n.from,n.to)}(r,i.doc))return{from:t(r)||s?r.from:n,options:AQ(i.doc,WQ(r),t),validFor:XQ};if("TagName"==r.name){for(let{parent:t}=r;t;t=t.parent)if("Block"==t.name)return{from:r.from,options:$Q(),validFor:ZQ};return{from:r.from,options:RQ,validFor:ZQ}}if(!e.explicit)return null;let o=r.resolve(n),a=o.childBefore(n);return a&&":"==a.name&&"PseudoClassSelector"==o.name?{from:n,options:TQ,validFor:ZQ}:a&&":"==a.name&&"Declaration"==o.name||"ArgList"==o.name?{from:n,options:_Q,validFor:ZQ}:"Block"==o.name||"Styles"==o.name?{from:n,options:$Q(),validFor:ZQ}:null},VQ=zQ((t=>"VariableName"==t.name)),MQ=hl.define({name:"css",parser:kQ.configure({props:[Tl.add({Declaration:Al()}),Vl.add({"Block KeyframeList":Ml})]}),languageData:{commentTokens:{block:{open:"/*",close:"*/"}},indentOnInput:/^\s*\}$/,wordChars:"-"}});const EQ=["_blank","_self","_top","_parent"],YQ=["ascii","utf-8","utf-16","latin1","latin1"],UQ=["get","post","put","delete"],jQ=["application/x-www-form-urlencoded","multipart/form-data","text/plain"],DQ=["true","false"],GQ={},LQ={a:{attrs:{href:null,ping:null,type:null,media:null,target:EQ,hreflang:null}},abbr:GQ,address:GQ,area:{attrs:{alt:null,coords:null,href:null,target:null,ping:null,media:null,hreflang:null,type:null,shape:["default","rect","circle","poly"]}},article:GQ,aside:GQ,audio:{attrs:{src:null,mediagroup:null,crossorigin:["anonymous","use-credentials"],preload:["none","metadata","auto"],autoplay:["autoplay"],loop:["loop"],controls:["controls"]}},b:GQ,base:{attrs:{href:null,target:EQ}},bdi:GQ,bdo:GQ,blockquote:{attrs:{cite:null}},body:GQ,br:GQ,button:{attrs:{form:null,formaction:null,name:null,value:null,autofocus:["autofocus"],disabled:["autofocus"],formenctype:jQ,formmethod:UQ,formnovalidate:["novalidate"],formtarget:EQ,type:["submit","reset","button"]}},canvas:{attrs:{width:null,height:null}},caption:GQ,center:GQ,cite:GQ,code:GQ,col:{attrs:{span:null}},colgroup:{attrs:{span:null}},command:{attrs:{type:["command","checkbox","radio"],label:null,icon:null,radiogroup:null,command:null,title:null,disabled:["disabled"],checked:["checked"]}},data:{attrs:{value:null}},datagrid:{attrs:{disabled:["disabled"],multiple:["multiple"]}},datalist:{attrs:{data:null}},dd:GQ,del:{attrs:{cite:null,datetime:null}},details:{attrs:{open:["open"]}},dfn:GQ,div:GQ,dl:GQ,dt:GQ,em:GQ,embed:{attrs:{src:null,type:null,width:null,height:null}},eventsource:{attrs:{src:null}},fieldset:{attrs:{disabled:["disabled"],form:null,name:null}},figcaption:GQ,figure:GQ,footer:GQ,form:{attrs:{action:null,name:null,"accept-charset":YQ,autocomplete:["on","off"],enctype:jQ,method:UQ,novalidate:["novalidate"],target:EQ}},h1:GQ,h2:GQ,h3:GQ,h4:GQ,h5:GQ,h6:GQ,head:{children:["title","base","link","style","meta","script","noscript","command"]},header:GQ,hgroup:GQ,hr:GQ,html:{attrs:{manifest:null}},i:GQ,iframe:{attrs:{src:null,srcdoc:null,name:null,width:null,height:null,sandbox:["allow-top-navigation","allow-same-origin","allow-forms","allow-scripts"],seamless:["seamless"]}},img:{attrs:{alt:null,src:null,ismap:null,usemap:null,width:null,height:null,crossorigin:["anonymous","use-credentials"]}},input:{attrs:{alt:null,dirname:null,form:null,formaction:null,height:null,list:null,max:null,maxlength:null,min:null,name:null,pattern:null,placeholder:null,size:null,src:null,step:null,value:null,width:null,accept:["audio/*","video/*","image/*"],autocomplete:["on","off"],autofocus:["autofocus"],checked:["checked"],disabled:["disabled"],formenctype:jQ,formmethod:UQ,formnovalidate:["novalidate"],formtarget:EQ,multiple:["multiple"],readonly:["readonly"],required:["required"],type:["hidden","text","search","tel","url","email","password","datetime","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]}},ins:{attrs:{cite:null,datetime:null}},kbd:GQ,keygen:{attrs:{challenge:null,form:null,name:null,autofocus:["autofocus"],disabled:["disabled"],keytype:["RSA"]}},label:{attrs:{for:null,form:null}},legend:GQ,li:{attrs:{value:null}},link:{attrs:{href:null,type:null,hreflang:null,media:null,sizes:["all","16x16","16x16 32x32","16x16 32x32 64x64"]}},map:{attrs:{name:null}},mark:GQ,menu:{attrs:{label:null,type:["list","context","toolbar"]}},meta:{attrs:{content:null,charset:YQ,name:["viewport","application-name","author","description","generator","keywords"],"http-equiv":["content-language","content-type","default-style","refresh"]}},meter:{attrs:{value:null,min:null,low:null,high:null,max:null,optimum:null}},nav:GQ,noscript:GQ,object:{attrs:{data:null,type:null,name:null,usemap:null,form:null,width:null,height:null,typemustmatch:["typemustmatch"]}},ol:{attrs:{reversed:["reversed"],start:null,type:["1","a","A","i","I"]},children:["li","script","template","ul","ol"]},optgroup:{attrs:{disabled:["disabled"],label:null}},option:{attrs:{disabled:["disabled"],label:null,selected:["selected"],value:null}},output:{attrs:{for:null,form:null,name:null}},p:GQ,param:{attrs:{name:null,value:null}},pre:GQ,progress:{attrs:{value:null,max:null}},q:{attrs:{cite:null}},rp:GQ,rt:GQ,ruby:GQ,samp:GQ,script:{attrs:{type:["text/javascript"],src:null,async:["async"],defer:["defer"],charset:YQ}},section:GQ,select:{attrs:{form:null,name:null,size:null,autofocus:["autofocus"],disabled:["disabled"],multiple:["multiple"]}},slot:{attrs:{name:null}},small:GQ,source:{attrs:{src:null,type:null,media:null}},span:GQ,strong:GQ,style:{attrs:{type:["text/css"],media:null,scoped:null}},sub:GQ,summary:GQ,sup:GQ,table:GQ,tbody:GQ,td:{attrs:{colspan:null,rowspan:null,headers:null}},template:GQ,textarea:{attrs:{dirname:null,form:null,maxlength:null,name:null,placeholder:null,rows:null,cols:null,autofocus:["autofocus"],disabled:["disabled"],readonly:["readonly"],required:["required"],wrap:["soft","hard"]}},tfoot:GQ,th:{attrs:{colspan:null,rowspan:null,headers:null,scope:["row","col","rowgroup","colgroup"]}},thead:GQ,time:{attrs:{datetime:null}},title:GQ,tr:GQ,track:{attrs:{src:null,label:null,default:null,kind:["subtitles","captions","descriptions","chapters","metadata"],srclang:null}},ul:{children:["li","script","template","ul","ol"]},var:GQ,video:{attrs:{src:null,poster:null,width:null,height:null,crossorigin:["anonymous","use-credentials"],preload:["auto","metadata","none"],autoplay:["autoplay"],mediagroup:["movie"],muted:["muted"],controls:["controls"]}},wbr:GQ},NQ={accesskey:null,class:null,contenteditable:DQ,contextmenu:null,dir:["ltr","rtl","auto"],draggable:["true","false","auto"],dropzone:["copy","move","link","string:","file:"],hidden:["hidden"],id:null,inert:["inert"],itemid:null,itemprop:null,itemref:null,itemscope:["itemscope"],itemtype:null,lang:["ar","bn","de","en-GB","en-US","es","fr","hi","id","ja","pa","pt","ru","tr","zh"],spellcheck:DQ,autocorrect:DQ,autocapitalize:DQ,style:null,tabindex:null,title:null,translate:["yes","no"],rel:["stylesheet","alternate","author","bookmark","help","license","next","nofollow","noreferrer","prefetch","prev","search","tag"],role:"alert application article banner button cell checkbox complementary contentinfo dialog document feed figure form grid gridcell heading img list listbox listitem main navigation region row rowgroup search switch tab table tabpanel textbox timer".split(" "),"aria-activedescendant":null,"aria-atomic":DQ,"aria-autocomplete":["inline","list","both","none"],"aria-busy":DQ,"aria-checked":["true","false","mixed","undefined"],"aria-controls":null,"aria-describedby":null,"aria-disabled":DQ,"aria-dropeffect":null,"aria-expanded":["true","false","undefined"],"aria-flowto":null,"aria-grabbed":["true","false","undefined"],"aria-haspopup":DQ,"aria-hidden":DQ,"aria-invalid":["true","false","grammar","spelling"],"aria-label":null,"aria-labelledby":null,"aria-level":null,"aria-live":["off","polite","assertive"],"aria-multiline":DQ,"aria-multiselectable":DQ,"aria-owns":null,"aria-posinset":null,"aria-pressed":["true","false","mixed","undefined"],"aria-readonly":DQ,"aria-relevant":null,"aria-required":DQ,"aria-selected":["true","false","undefined"],"aria-setsize":null,"aria-sort":["ascending","descending","none","other"],"aria-valuemax":null,"aria-valuemin":null,"aria-valuenow":null,"aria-valuetext":null},IQ="beforeunload copy cut dragstart dragover dragleave dragenter dragend drag paste focus blur change click load mousedown mouseenter mouseleave mouseup keydown keyup resize scroll unload".split(" ").map((t=>"on"+t));for(let t of IQ)NQ[t]=null;class BQ{constructor(t,e){this.tags=Object.assign(Object.assign({},LQ),t),this.globalAttrs=Object.assign(Object.assign({},NQ),e),this.allTags=Object.keys(this.tags),this.globalAttrNames=Object.keys(this.globalAttrs)}}function FQ(t,e,i=t.length){if(!e)return"";let n=e.firstChild,r=n&&n.getChild("TagName");return r?t.sliceString(r.from,Math.min(r.to,i)):""}function HQ(t,e=!1){for(;t;t=t.parent)if("Element"==t.name){if(!e)return t;e=!1}return null}function JQ(t,e,i){let n=i.tags[FQ(t,HQ(e))];return(null==n?void 0:n.children)||i.allTags}function KQ(t,e){let i=[];for(let n=HQ(e);n&&!n.type.isTop;n=HQ(n.parent)){let r=FQ(t,n);if(r&&"CloseTag"==n.lastChild.name)break;r&&i.indexOf(r)<0&&("EndTag"==e.name||e.from>=n.firstChild.to)&&i.push(r)}return i}BQ.default=new BQ;const tb=/^[:\-\.\w\u00b7-\uffff]*$/;function eb(t,e,i,n,r){let s=/\s*>/.test(t.sliceDoc(r,r+5))?"":">",o=HQ(i,!0);return{from:n,to:r,options:JQ(t.doc,o,e).map((t=>({label:t,type:"type"}))).concat(KQ(t.doc,i).map(((t,e)=>({label:"/"+t,apply:"/"+t+s,type:"type",boost:99-e})))),validFor:/^\/?[:\-\.\w\u00b7-\uffff]*$/}}function ib(t,e,i,n){let r=/\s*>/.test(t.sliceDoc(n,n+5))?"":">";return{from:i,to:n,options:KQ(t.doc,e).map(((t,e)=>({label:t,apply:t+r,type:"type",boost:99-e}))),validFor:tb}}function nb(t,e){let{state:i,pos:n}=e,r=cl(i).resolveInner(n,-1),s=r.resolve(n);for(let t,e=n;s==r&&(t=r.childBefore(e));){let i=t.lastChild;if(!i||!i.type.isError||i.from({label:t,type:"property"}))),validFor:tb}}(i,t,r,"AttributeName"==r.name?r.from:n,n):"Is"==r.name||"AttributeValue"==r.name||"UnquotedAttributeValue"==r.name?function(t,e,i,n,r){var s;let o,a=null===(s=i.parent)||void 0===s?void 0:s.getChild("AttributeName"),l=[];if(a){let s=t.sliceDoc(a.from,a.to),h=e.globalAttrs[s];if(!h){let n=HQ(i),r=n?e.tags[FQ(t.doc,n)]:null;h=(null==r?void 0:r.attrs)&&r.attrs[s]}if(h){let e=t.sliceDoc(n,r).toLowerCase(),i='"',s='"';/^['"]/.test(e)?(o='"'==e[0]?/^[^"]*$/:/^[^']*$/,i="",s=t.sliceDoc(r,r+1)==e[0]?"":e[0],e=e.slice(1),n++):o=/^[^\s<>='"]*$/;for(let t of h)l.push({label:t,apply:i+t+s,type:"constant"})}}return{from:n,to:r,options:l,validFor:o}}(i,t,r,"Is"==r.name?n:r.from,n):!e.explicit||"Element"!=s.name&&"Text"!=s.name&&"Document"!=s.name?null:function(t,e,i,n){let r=[],s=0;for(let n of JQ(t.doc,i,e))r.push({label:"<"+n,type:"type"});for(let e of KQ(t.doc,i))r.push({label:"",type:"type",boost:99-s++});return{from:n,to:n,options:r,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}(i,t,r,n)}function rb(t){let{extraTags:e,extraGlobalAttributes:i}=t,n=i||e?new BQ(e,i):BQ.default;return t=>nb(n,t)}const sb=hp.parser.configure({top:"SingleExpression"}),ob=[{tag:"script",attrs:t=>"text/typescript"==t.type||"ts"==t.lang,parser:Op.parser},{tag:"script",attrs:t=>"text/babel"==t.type||"text/jsx"==t.type,parser:dp.parser},{tag:"script",attrs:t=>"text/typescript-jsx"==t.type,parser:up.parser},{tag:"script",attrs:t=>/^(importmap|speculationrules|application\/(.+\+)?json)$/i.test(t.type),parser:sb},{tag:"script",attrs:t=>!t.type||/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i.test(t.type),parser:hp.parser},{tag:"style",attrs:t=>(!t.lang||"css"==t.lang)&&(!t.type||/^(text\/)?(x-)?(stylesheet|css)$/i.test(t.type)),parser:MQ.parser}],ab=[{name:"style",parser:MQ.parser.configure({top:"Styles"})}].concat(IQ.map((t=>({name:t,parser:hp.parser})))),lb=hl.define({name:"html",parser:cQ.configure({props:[Tl.add({Element(t){let e=/^(\s*)(<\/)?/.exec(t.textAfter);return t.node.to<=t.pos+e[0].length?t.continue():t.lineIndent(t.node.from)+(e[2]?0:t.unit)},"OpenTag CloseTag SelfClosingTag":t=>t.column(t.node.from)+t.unit,Document(t){if(t.pos+/\s*/.exec(t.textAfter)[0].lengtht.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:"\x3c!--",close:"--\x3e"}},indentOnInput:/^\s*<\/\w+\W$/,wordChars:"-._"}}),hb=lb.configure({wrap:fQ(ob,ab)});function cb(t={}){let e,i="";!1===t.matchClosingTags&&(i="noMatch"),!0===t.selfClosingTags&&(i=(i?i+" ":"")+"selfClosing"),(t.nestedLanguages&&t.nestedLanguages.length||t.nestedAttributes&&t.nestedAttributes.length)&&(e=fQ((t.nestedLanguages||[]).concat(ob),(t.nestedAttributes||[]).concat(ab)));let n=e?lb.configure({wrap:e,dialect:i}):i?hb.configure({dialect:i}):hb;return new Sl(n,[hb.data.of({autocomplete:rb(t)}),!1!==t.autoCloseTags?db:[],gp().support,new Sl(MQ,MQ.data.of({autocomplete:VQ})).support])}const Ob=new Set("area base br col command embed frame hr img input keygen link meta param source track wbr menuitem".split(" ")),db=Ir.inputHandler.of(((t,e,i,n,r)=>{if(t.composing||t.state.readOnly||e!=i||">"!=n&&"/"!=n||!hb.isActiveAt(t.state,e,-1))return!1;let s=r(),{state:o}=s,a=o.changeByRange((t=>{var e,i,r;let s,a=o.doc.sliceString(t.from-1,t.to)==n,{head:l}=t,h=cl(o).resolveInner(l,-1);if(a&&">"==n&&"EndTag"==h.name){let n=h.parent;if("CloseTag"!=(null===(i=null===(e=n.parent)||void 0===e?void 0:e.lastChild)||void 0===i?void 0:i.name)&&(s=FQ(o.doc,n.parent,l))&&!Ob.has(s)){return{range:t,changes:{from:l,to:l+(">"===o.doc.sliceString(l,l+1)?1:0),insert:``}}}}else if(a&&"/"==n&&"IncompleteCloseTag"==h.name){let t=h.parent;if(h.from==l-2&&"CloseTag"!=(null===(r=t.lastChild)||void 0===r?void 0:r.name)&&(s=FQ(o.doc,t,l))&&!Ob.has(s)){let t=l+(">"===o.doc.sliceString(l,l+1)?1:0),e=`${s}>`;return{range:C.cursor(l+e.length,-1),changes:{from:l,to:t,insert:e}}}}return{range:t}}));return!a.changes.empty&&(t.dispatch([s,o.update(a,{userEvent:"input.complete",scrollIntoView:!0})]),!0)})),ub=sl({commentTokens:{block:{open:"\x3c!--",close:"--\x3e"}}}),fb=new Yo,pb=hg.configure({props:[Vl.add((t=>!t.is("Block")||t.is("Document")||null!=mb(t)||function(t){return"OrderedList"==t.name||"BulletList"==t.name}(t)?void 0:(t,e)=>({from:e.doc.lineAt(t.from).to,to:t.to}))),fb.add(mb),Tl.add({Document:()=>null}),rl.add({Document:ub})]});function mb(t){let e=/^(?:ATX|Setext)Heading(\d)$/.exec(t.name);return e?+e[1]:void 0}function gb(t,e){let i=t;for(;;){let t,n=i.nextSibling;if(!n||null!=(t=mb(n.type))&&t<=e)break;i=n}return i.to}const Qb=zl.of(((t,e,i)=>{for(let n=cl(t).resolveInner(i,-1);n&&!(n.fromi)return{from:i,to:e}}return null}));function bb(t){return new al(ub,t,[Qb],"markdown")}const Sb=bb(pb),vb=bb(pb.configure([Tg,Zg,Rg,Xg,{props:[Vl.add({Table:(t,e)=>({from:e.doc.lineAt(t.from).to,to:t.to})})]}]));class wb{constructor(t,e,i,n,r,s,o){this.node=t,this.from=e,this.to=i,this.spaceBefore=n,this.spaceAfter=r,this.type=s,this.item=o}blank(t,e=!0){let i=this.spaceBefore+("Blockquote"==this.node.name?">":"");if(null!=t){for(;i.length0;t--)i+=" ";return i+(e?this.spaceAfter:"")}marker(t,e){let i="OrderedList"==this.node.name?String(+xb(this.item,t)[2]+e):"";return this.spaceBefore+i+this.type+this.spaceAfter}}function yb(t,e){let i=[];for(let e=t;e&&"Document"!=e.name;e=e.parent)"ListItem"!=e.name&&"Blockquote"!=e.name&&"FencedCode"!=e.name||i.push(e);let n=[];for(let t=i.length-1;t>=0;t--){let r,s=i[t],o=e.lineAt(s.from),a=s.from-o.from;if("FencedCode"==s.name)n.push(new wb(s,a,a,"","","",null));else if("Blockquote"==s.name&&(r=/^ *>( ?)/.exec(o.text.slice(a))))n.push(new wb(s,a,a+r[0].length,"",r[1],">",null));else if("ListItem"==s.name&&"OrderedList"==s.parent.name&&(r=/^( *)\d+([.)])( *)/.exec(o.text.slice(a)))){let t=r[3],e=r[0].length;t.length>=4&&(t=t.slice(0,t.length-4),e-=4),n.push(new wb(s.parent,a,a+e,r[1],t,r[2],s))}else if("ListItem"==s.name&&"BulletList"==s.parent.name&&(r=/^( *)([-+*])( {1,4}\[[ xX]\])?( +)/.exec(o.text.slice(a)))){let t=r[4],e=r[0].length;t.length>4&&(t=t.slice(0,t.length-4),e-=4);let i=r[2];r[3]&&(i+=r[3].replace(/[xX]/," ")),n.push(new wb(s.parent,a,a+e,r[1],t,i,s))}}return n}function xb(t,e){return/^(\s*)(\d+)(?=[.)])/.exec(e.sliceString(t.from,t.from+10))}function kb(t,e,i,n=0){for(let r=-1,s=t;;){if("ListItem"==s.name){let t=xb(s,e),o=+t[2];if(r>=0){if(o!=r+1)return;i.push({from:s.from+t[1].length,to:s.from+t[0].length,insert:String(r+2+n)})}r=o}let t=s.nextSibling;if(!t)break;s=t}}function Pb(t,e){let i=/^[ \t]*/.exec(t)[0].length;if(!i||"\t"!=e.facet(yl))return t;let n="";for(let e=Ut(t,4,i);e>0;)e>=4?(n+="\t",e-=4):(n+=" ",e--);return n+t.slice(i)}function $b(t){return"QuoteMark"==t.name||"ListMark"==t.name}function Tb(t,e,i){let n="";for(let e=0,r=t.length-2;e<=r;e++)n+=t[e].blank(e{let i=cl(t),{doc:n}=t,r=null,s=t.changeByRange((e=>{if(!e.empty||!vb.isActiveAt(t,e.from))return r={range:e};let s=e.from,o=n.lineAt(s),a=yb(i.resolveInner(s,-1),n);for(;a.length&&a[a.length-1].from>s-o.from;)a.pop();if(!a.length)return r={range:e};let l=a[a.length-1];if(l.to-l.spaceAfter.length>s-o.from)return r={range:e};let h=s>=l.to-l.spaceAfter.length&&!/\S/.test(o.text.slice(l.to));if(l.item&&h){let e=l.node.firstChild,i=l.node.getChild("ListItem","ListItem");if(e.to>=s||i&&i.to0&&!/[^\s>]/.test(n.lineAt(o.from-1).text)){let t,e=a.length>1?a[a.length-2]:null,i="";e&&e.item?(t=o.from+e.from,i=e.marker(n,1)):t=o.from+(e?e.to:0);let r=[{from:t,to:s,insert:i}];return"OrderedList"==l.node.name&&kb(l.item,n,r,-2),e&&"OrderedList"==e.node.name&&kb(e.item,n,r),{range:C.cursor(t+i.length),changes:r}}{let e=Tb(a,t,o);return{range:C.cursor(s+e.length+1),changes:{from:o.from,insert:e+t.lineBreak}}}}if("Blockquote"==l.node.name&&h&&o.from){let i=n.lineAt(o.from-1),r=/>\s*$/.exec(i.text);if(r&&r.index==l.from){let n=t.changes([{from:i.from+r.index,to:i.to},{from:o.from+l.from,to:o.to}]);return{range:e.map(n),changes:n}}}let c=[];"OrderedList"==l.node.name&&kb(l.item,n,c);let O=l.item&&l.item.from]*/.exec(o.text)[0].length>=l.to)for(let t=0,e=a.length-1;t<=e;t++)d+=t!=e||O?a[t].blank(to.from&&/\s/.test(o.text.charAt(u-o.from-1));)u--;return d=Pb(d,t),function(t,e){if("OrderedList"!=t.name&&"BulletList"!=t.name)return!1;let i=t.firstChild,n=t.getChild("ListItem","ListItem");if(!n)return!1;let r=e.lineAt(i.to),s=e.lineAt(n.from),o=/^[\s>]*$/.test(r.text);return r.number+(o?0:1){let i=cl(t),n=null,r=t.changeByRange((e=>{let r=e.from,{doc:s}=t;if(e.empty&&vb.isActiveAt(t,e.from)){let e=s.lineAt(r),n=yb(function(t,e){let i=t.resolveInner(e,-1),n=e;$b(i)&&(n=i.from,i=i.parent);for(let t;t=i.childBefore(n);)if($b(t))n=t.from;else{if("OrderedList"!=t.name&&"BulletList"!=t.name)break;i=t.lastChild,n=i.to}return i}(i,r),s);if(n.length){let i=n[n.length-1],s=i.to-i.spaceAfter.length+(i.spaceAfter?1:0);if(r-e.from>s&&!/\S/.test(e.text.slice(s,r-e.from)))return{range:C.cursor(e.from+s),changes:{from:e.from+s,to:r}};if(r-e.from==s&&(!i.item||e.from<=i.item.from||!/\S/.test(e.text.slice(0,i.to)))){let n=e.from+i.from;if(i.item&&i.node.from{if(t&&c){let e=null;if(t=/\S*/.exec(t)[0],e="function"==typeof c?c(t):vl.matchLanguageName(c,t,!0),e instanceof vl)return e.support?e.support.language.parser:ul.getSkippingParser(e.load());if(e)return e.parser}return O?O.parser:null}):void 0;var c,O;a.push(function(t){let{codeParser:e,htmlParser:i}=t,n=ga(((t,n)=>{let r=t.type.id;if(!e||r!=nm.CodeBlock&&r!=nm.FencedCode){if(i&&(r==nm.HTMLBlock||r==nm.HTMLTag))return{parser:i,overlay:cg(t.node,t.from,t.to)}}else{let i="";if(r==nm.FencedCode){let e=t.node.getChild(nm.CodeInfo);e&&(i=n.read(e.from,e.to))}let s=e(i);if(s)return{parser:s,overlay:t=>t.type.id==nm.CodeText}}return null}));return{wrap:n}}({codeParser:h,htmlParser:Rb.language.parser})),n&&l.push(B.high(is.of(_b)));let d=bb(r.configure(a));return s&&l.push(d.data.of({autocomplete:Xb})),new Sl(d,l)}function Xb(t){let{state:e,pos:i}=t,n=/<[:\-\.\w\u00b7-\uffff]*$/.exec(e.sliceDoc(i-25,i));if(!n)return null;let r=cl(e).resolveInner(i,-1);for(;r&&!r.type.isTop;){if("CodeBlock"==r.name||"FencedCode"==r.name||"ProcessingInstructionBlock"==r.name||"CommentBlock"==r.name||"Link"==r.name||"Image"==r.name)return null;r=r.parent}return{from:i-n[0].length,to:i,options:qb(),validFor:/^<[:\-\.\w\u00b7-\uffff]*$/}}let Cb=null;function qb(){if(Cb)return Cb;let t=(e=new bd(xt.create({extensions:Rb}),0,!0),nb(BQ.default,e));var e;return Cb=t?t.options:[]}var Wb,Ab,zb,Vb,Mb,Eb,Yb,Ub,jb,Db,Gb={},Lb=[],Nb=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,Ib=Array.isArray;function Bb(t,e){for(var i in e)t[i]=e[i];return t}function Fb(t){var e=t.parentNode;e&&e.removeChild(t)}function Hb(t,e,i){var n,r,s,o={};for(s in e)"key"==s?n=e[s]:"ref"==s?r=e[s]:o[s]=e[s];if(arguments.length>2&&(o.children=arguments.length>3?Wb.call(arguments,2):i),"function"==typeof t&&null!=t.defaultProps)for(s in t.defaultProps)void 0===o[s]&&(o[s]=t.defaultProps[s]);return Jb(t,o,n,r,null)}function Jb(t,e,i,n,r){var s={type:t,props:e,key:i,ref:n,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:null==r?++zb:r,__i:-1,__u:0};return null==r&&null!=Ab.vnode&&Ab.vnode(s),s}function Kb(t){return t.children}function tS(t,e){this.props=t,this.context=e}function eS(t,e){if(null==e)return t.__?eS(t.__,t.__i+1):null;for(var i;ee&&Vb.sort(Yb));rS.__r=0}function sS(t,e,i,n,r,s,o,a,l,h,c){var O,d,u,f,p,m=n&&n.__k||Lb,g=e.length;for(i.__d=l,oS(i,e,m),l=i.__d,O=0;O0?Jb(r.type,r.props,r.key,r.ref?r.ref:null,r.__v):r)?(r.__=t,r.__b=t.__b+1,a=lS(r,i,o,c),r.__i=a,s=null,-1!==a&&(c--,(s=i[a])&&(s.__u|=131072)),null==s||null===s.__v?(-1==a&&O--,"function"!=typeof r.type&&(r.__u|=65536)):a!==o&&(a==o-1?O=a-o:a==o+1?O++:a>o?c>l-o?O+=a-o:O--:a(null==l||131072&l.__u?0:1))for(;o>=0||a=0){if((l=e[o])&&!(131072&l.__u)&&r==l.key&&s===l.type)return o;o--}if(a=i.__.length&&i.__.push({}),i.__[t]}function XS(t){return wS=1,function(t,e,i){var n=ZS(QS++,2);if(n.t=t,!n.__c&&(n.__=[VS(void 0,e),function(t){var e=n.__N?n.__N[0]:n.__[0],i=n.t(e,t);e!==i&&(n.__N=[i,n.__[1]],n.__c.setState({}))}],n.__c=bS,!bS.u)){var r=function(t,e,i){if(!n.__c.__H)return!0;var r=n.__c.__H.__.filter((function(t){return!!t.__c}));if(r.every((function(t){return!t.__N})))return!s||s.call(this,t,e,i);var o=!1;return r.forEach((function(t){if(t.__N){var e=t.__[0];t.__=t.__N,t.__N=void 0,e!==t.__[0]&&(o=!0)}})),!(!o&&n.__c.props===t)&&(!s||s.call(this,t,e,i))};bS.u=!0;var s=bS.shouldComponentUpdate,o=bS.componentWillUpdate;bS.componentWillUpdate=function(t,e,i){if(this.__e){var n=s;s=void 0,r(t,e,i),s=n}o&&o.call(this,t,e,i)},bS.shouldComponentUpdate=r}return n.__N||n.__}(VS,t)}function CS(){for(var t;t=yS.shift();)if(t.__P&&t.__H)try{t.__H.__h.forEach(AS),t.__H.__h.forEach(zS),t.__H.__h=[]}catch(e){t.__H.__h=[],xS.__e(e,t.__v)}}xS.__b=function(t){bS=null,kS&&kS(t)},xS.__=function(t,e){t&&e.__k&&e.__k.__m&&(t.__m=e.__k.__m),RS&&RS(t,e)},xS.__r=function(t){PS&&PS(t),QS=0;var e=(bS=t.__c).__H;e&&(SS===bS?(e.__h=[],bS.__h=[],e.__.forEach((function(t){t.__N&&(t.__=t.__N),t.i=t.__N=void 0}))):(e.__h.forEach(AS),e.__h.forEach(zS),e.__h=[],QS=0)),SS=bS},xS.diffed=function(t){$S&&$S(t);var e=t.__c;e&&e.__H&&(e.__H.__h.length&&(1!==yS.push(e)&&vS===xS.requestAnimationFrame||((vS=xS.requestAnimationFrame)||WS)(CS)),e.__H.__.forEach((function(t){t.i&&(t.__H=t.i),t.i=void 0}))),SS=bS=null},xS.__c=function(t,e){e.some((function(t){try{t.__h.forEach(AS),t.__h=t.__h.filter((function(t){return!t.__||zS(t)}))}catch(i){e.some((function(t){t.__h&&(t.__h=[])})),e=[],xS.__e(i,t.__v)}})),TS&&TS(t,e)},xS.unmount=function(t){_S&&_S(t);var e,i=t.__c;i&&i.__H&&(i.__H.__.forEach((function(t){try{AS(t)}catch(t){e=t}})),i.__H=void 0,e&&xS.__e(e,i.__v))};var qS="function"==typeof requestAnimationFrame;function WS(t){var e,i=function(){clearTimeout(n),qS&&cancelAnimationFrame(e),setTimeout(t)},n=setTimeout(i,100);qS&&(e=requestAnimationFrame(i))}function AS(t){var e=bS,i=t.__c;"function"==typeof i&&(t.__c=void 0,i()),bS=e}function zS(t){var e=bS;t.__c=t.__(),bS=e}function VS(t,e){return"function"==typeof e?e(t):e}const MS="ftd_is_frozen_now";function ES(t,e,i){if(void 0!==i.ftd_globals)throw new Error(`ftd is already initialized on ${node.id}`);i.ftd_globals={FROZEN:!1},function(t,e,i){var n,r,s,o;Ab.__&&Ab.__(t,e),r=(n="function"==typeof i)?null:e.__k,s=[],o=[],dS(e,t=(!n&&i||e).__k=Hb(Kb,null,[t]),r||Gb,Gb,e.namespaceURI,!n&&i?[i]:r?null:e.firstChild?Wb.call(e.childNodes):null,s,!n&&i?i:r?r.__e:e.firstChild,n,o),uS(s,t,o)}(Hb(t,{...e,ftd_root:i}),i),i.ftd_globals[MS]=!0}const YS=(t,e,i)=>{let n=document.getElementById(t);if(void 0===n.ftd_globals)throw new Error(`ftd is already initialized on ${t}`);n.ftd_globals[e].set(i)};class US{#t;#e;constructor(t,e,i){if([this.#t,this.#e]=XS(t),void 0===i)return;if(!e||void 0===e.ftd_globals)throw console.log(e),new Error("ftd is not initialized on this node");let n=e.ftd_globals;if(n[MS]){if(void 0===n[i])throw new Error(`global_key ${i} not found`)}else if(void 0!==n[i])throw new Error(`global_key ${i} already exists`);n[i]=this}get(){return this.#t}set(t){this.set_key([],t)}notify_preact(){structuredClone?this.#e(structuredClone(this.#t)):this.#e(JSON.parse(JSON.stringify(this.#t)))}set_key(t,e){if(0===t.length)return this.#t=e,this.notify_preact();let i=this.#t,n=0;for(;n{let i=document.getElementById(t);if(void 0===i.ftd_globals)throw new Error(`ftd is already initialized on ${t}`);return i.ftd_globals[e].get()})(DS,GS);if(null!=t)for(;;){let[i,n]=KS(t);if(console.log(i,n),null===i)break;let r=tv(e.folders,i);if(console.log(r),null===r)throw new Error(`folder ${i} not found`);r.open=!0,t=n,e=r}else console.log("current_file is null")}function KS(t){let e=t.indexOf("/");return-1===e?[null,t]:[t.slice(0,e),t.slice(e+1)]}function tv(t,e){for(let i=0;i18*(t-1)+8+"px",nv=(t,e)=>{if(e)return"blue";switch(t.status){case"Normal":return"black";case"Deleted":return"red";case"New":return"green";case"Modified":return"blue";default:return console.error("unreachable state. File status must be in [Normal, Deleted, New, Modified]"),"black"}};function rv(t,e,i){return t.get()?function(t,{right:e,onClick:i}){let n=new US(!1);return sv(t,{right:e,onClick:i,variant:n.get()?"regular":"thin",onmouseenter:()=>n.set(!0),onmouseleave:()=>n.set(!1)})}("dots-three-circle-vertical",{right:"5px",onClick:t=>{let n=t.target.getBoundingClientRect();return ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-visible",e?"file":"folder"),ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-left",n.left+16),ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-top",n.top+16),console.log("ui.fifthtry.com/components/editor/vars#context-menu-path",i),ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-path",i),HS(i),t.preventDefault(),t.stopPropagation(),!1}}):null}function sv(t,{variant:e,right:i,onClick:n,...r}){e=e||"light";let s={width:"16px",height:"16px",right:i||"auto"};i&&(s.right=i,s.position="absolute");let o={src:"regular"===e?`//raw.githubusercontent.com/phosphor-icons/core/main/raw/regular/${t}.svg`:`//raw.githubusercontent.com/phosphor-icons/core/main/raw/${e}/${t}-${e}.svg`,style:{...s,...r.style},onClick:n,...r};return n&&(o.onClick=n,o.style.cursor="pointer"),Hb("img",o)}const ov=({file:t,level:e,current_file:i,context_menu_path:n,modified_files:r,only_modified_files:s})=>{let o=r.indexOf(t.full_name)>=0,a=o||["Deleted","New"].includes(t.status);if(s&&!a)return null;let l=new US(!1),h="white";return t.full_name===n?h="#f5f5f5":t.full_name===i&&""===n&&(h="#f0f0f0"),Hb("a",{style:{"padding-top":"2px","padding-bottom":"2px","padding-left":iv(e),color:nv(t,o),display:"flex",flexDirection:"row",width:"100%",gap:"3px",background:h,position:"relative"},onmouseenter:()=>l.set(!0),onmouseleave:()=>l.set(!1),href:t.url},sv("file-text",{}),t.name,rv(l,!0,t.full_name))},av=({folder:t,parent_full_name:e,level:i,hide_name:n,current_file:r,context_menu_path:s,modified_files:o,only_modified_files:a})=>{i||(i=0);let l=""===e?t.get().name:`${e}${t.get().name}`;l="root"===l?"":`${l}/`;let h=t.index("open");if(a){let e=!1;for(let t=0;th.set(!h.get()),onmouseenter:()=>c.set(!0),onmouseleave:()=>c.set(!1),style:{display:"flex","flex-direction":"row",gap:"5px",width:"100%",cursor:"pointer","padding-left":iv(i),color:t.get().modified?"blue":"black",position:"relative"}},sv(h.get()?"folder-open":"folder",{}),t.get().name,rv(c,!1,t.get().full_name)),h.get()?t.index("folders").map((t=>Hb(av,{folder:t,level:i+1,current_file:r,context_menu_path:s,modified_files:o,only_modified_files:a,parent_full_name:l}))).concat(t.index("files").map((t=>Hb(ov,{file:t.get(),level:i+1,current_file:r,context_menu_path:s,modified_files:o,only_modified_files:a})))):[]))};function lv(t){const e=t.selection.main.head;return t.doc.lineAt(e)}function hv(t,e){let i=0;t:for(let n=0;nkt(t,{highlightActiveBlock:!0,hideFirstIndent:!1,markerType:"fullScope",thickness:1})});class Ov{constructor(t,e,i,n){this.lines=t,this.state=e,this.map=new Map,this.unitWidth=i,this.markerType=n;for(const t of this.lines)this.add(t);this.state.facet(cv).highlightActiveBlock&&this.findAndSetActiveLines()}has(t){return this.map.has("number"==typeof t?t:t.number)}get(t){const e=this.map.get("number"==typeof t?t:t.number);if(!e)throw new Error("Line not found in indentation map");return e}set(t,e,i){const n=!t.text.trim().length,r={line:t,col:e,level:i,empty:n};return this.map.set(r.line.number,r),r}add(t){if(this.has(t))return this.get(t);if(!t.length||!t.text.trim().length){if(1===t.number)return this.set(t,0,0);if(t.number===this.state.doc.lines){const e=this.closestNonEmpty(t,-1);return this.set(t,0,e.level)}const e=this.closestNonEmpty(t,-1),i=this.closestNonEmpty(t,1);return e.level>=i.level&&"codeOnly"!==this.markerType?this.set(t,0,e.level):e.empty&&0===e.level&&0!==i.level?this.set(t,0,0):i.level>e.level?this.set(t,0,e.level+1):this.set(t,0,i.level)}const e=hv(t.text,this.state.tabSize),i=Math.floor(e/this.unitWidth);return this.set(t,e,i)}closestNonEmpty(t,e){let i=t.number+e;for(;-1===e?i>=1:i<=this.state.doc.lines;){if(this.has(i)){const t=this.get(i);if(!t.empty)return t}const t=this.state.doc.line(i);if(t.text.trim().length){const e=hv(t.text,this.state.tabSize),i=Math.floor(e/this.unitWidth);return this.set(t,e,i)}i+=e}const n=this.state.doc.line(-1===e?1:this.state.doc.lines);return this.set(n,0,0)}findAndSetActiveLines(){const t=lv(this.state);if(!this.has(t))return;let e,i,n=this.get(t);if(this.has(n.line.number+1)){const t=this.get(n.line.number+1);t.level>n.level&&(n=t)}if(this.has(n.line.number-1)){const t=this.get(n.line.number-1);t.level>n.level&&(n=t)}if(0!==n.level){for(n.active=n.level,e=n.line.number;e>1;e--){if(!this.has(e-1))continue;const t=this.get(e-1);if(t.level0&&l.push(uv("--indent-marker-bg-color",n,e,a,t)),l.push(uv("--indent-marker-active-bg-color",r,e,o-1,1)),o!==s&&l.push(uv("--indent-marker-bg-color",n,e,o,s-o))}else l.push(uv("--indent-marker-bg-color",n,e,a,s-a));return l.join(",")}class pv{constructor(t){this.view=t,this.unitWidth=xl(t.state),this.currentLineNumber=lv(t.state).number,this.generate(t.state)}update(t){const e=xl(t.state),i=e!==this.unitWidth;i&&(this.unitWidth=e);const n=lv(t.state).number,r=n!==this.currentLineNumber;this.currentLineNumber=n;const s=t.state.facet(cv).highlightActiveBlock&&r;(t.docChanged||t.viewportChanged||i||s)&&this.generate(t.state)}generate(t){const e=new Zt,i=function(t,e=t.state){const i=new Set;for(const{from:n,to:r}of t.visibleRanges){let t=n;for(;t<=r;){const n=e.doc.lineAt(t);i.has(n)||i.add(n),t=n.to+1}}return i}(this.view,t),{hideFirstIndent:n,markerType:r,thickness:s,activeThickness:o}=t.facet(cv),a=new Ov(i,t,this.unitWidth,r);for(const t of i){const i=a.get(t.number);if(!(null==i?void 0:i.level))continue;const r=fv(i,this.unitWidth,n,s,o);e.add(t.from,t.from,si.line({class:"cm-indent-markers",attributes:{style:`--indent-markers: ${r}`}}))}this.decorations=e.finish()}}function mv(t={}){return[cv.of(t),dv(t.colors),Fi.fromClass(pv,{decorations:t=>t.decorations})]}const gv=zf.deserialize({version:14,states:"$[OVQPOOOhQPO'#C_OOQO'#Ca'#CaOhQPO'#CbOhQPO'#CcOOQO'#Cd'#CdQOQPOOOOQO'#Ce'#CeOmQQO,58yOmQQO,58|OmQQO,58}OOQO-E6c-E6cOuQPO'#CfO}QQO'#C`OOQO1G.e1G.eOOQO1G.h1G.hOOQO1G.i1G.iOOQO,59Q,59QO!SQQO,58zO!XQPO,58zOOQO-E6d-E6dOOQO1G.f1G.fO!aQQO1G.fP!fQPO'#CfOOQO7+$Q7+$Q",stateData:"!k~OPOS~O]PObQOcROdSOeTO~O^VO~O^VO_[O~O`aOabO~O_cO~O_eO~O`aOafO~O_hO~O`aO~O",goto:"!OZPPP[_[[[[hvRUOQ^WQ_XR`YQWPQXRQYSVZWXYU]WXYRd]",nodeNames:"⚠ LineComment command AddFile FileName ClearOPFS PushFile DeleteFile UpdatePreview",maxTerm:21,skippedNodes:[0,1],repeatNodeCount:2,tokenData:"?r~Rapq!W}!O!]!O!P!q!P!Q!v!Q![!]!]!^!{!c!}!]#R#S!]#T#U#j#U#V!]#V#W'x#W#X-Z#X#d!]#d#e3Z#e#i!]#i#j8T#j#o!]~!]O^~Q!bT_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]~!vOa~~!{O`~~#OP!]!^#R~#WSP~OY#RZ;'S#R;'S;=`#d<%lO#R~#gP;=`<%l#RR#oV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#W!]#W#X$U#X#o!]R$ZV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#W!]#W#X$p#X#o!]R$uT_Q}!O%U!Q![!]!c!}!]#R#S!]#T#o!]R%ZV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#Y!]#Y#Z%p#Z#o!]R%uV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#]!]#]#^&[#^#o!]R&aV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a&v#a#o!]R&{V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y'b#Y#o!]R'iT]P_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]R'}V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a(d#a#o!]R(iV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y)O#Y#o!]R)TU_Q}!O!]!Q![!]!c!}!]#R#S!]#T#U)g#U#o!]R)lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#f!]#f#g*R#g#o!]R*WT_Q}!O*g!Q![!]!c!}!]#R#S!]#T#o!]R*lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#c!]#c#d+R#d#o!]R+WV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#d!]#d#e+m#e#o!]R+rV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#Y!]#Y#Z,X#Z#o!]R,^V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#g!]#g#h,s#h#o!]R,zTbP_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]R-`V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y-u#Y#o!]R-zV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a.a#a#o!]R.fV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y.{#Y#o!]R/QV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#h!]#h#i/g#i#o!]R/lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y0R#Y#o!]R0WT_Q}!O0g!Q![!]!c!}!]#R#S!]#T#o!]R0lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#Y!]#Y#Z1R#Z#o!]R1WV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#]!]#]#^1m#^#o!]R1rV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a2X#a#o!]R2^V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y2s#Y#o!]R2zTdP_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]R3`V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#i!]#i#j3u#j#o!]R3zV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#g!]#g#h4a#h#o!]R4fV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#[!]#[#]4{#]#o!]R5QT_Q}!O5a!Q![!]!c!}!]#R#S!]#T#o!]R5fV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#Y!]#Y#Z5{#Z#o!]R6QV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#]!]#]#^6g#^#o!]R6lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a7R#a#o!]R7WV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y7m#Y#o!]R7tTcP_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]R8YV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#d!]#d#e8o#e#o!]R8tV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#W!]#W#X9Z#X#o!]R9`U_Q}!O!]!Q![!]!c!}!]#R#S!]#T#U9r#U#o!]R9wV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#h!]#h#i:^#i#o!]R:cV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y:x#Y#o!]R:}T_Q}!O;^!Q![!]!c!}!]#R#S!]#T#o!]R;cV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#d!]#d#e;x#e#o!]R;}V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#f!]#f#gU#^#o!]R>ZV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y>p#Y#o!]R>uV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#k!]#k#l?[#l#o!]R?cTeP_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]",tokenizers:[0,1],topRules:{command:[0,2]},tokenPrec:0}),Qv=hl.define({name:"fifthtry_ide_repl",parser:gv.configure({props:[Wa({FileName:il.literal,AddFile:il.keyword,DeleteFile:il.keyword,PushFile:il.keyword,LineComment:il.lineComment})]}),languageData:{autocomplete:t=>window.ide_autocomplete_command_prompt&&window.ide_autocomplete_command_prompt(t),commentTokens:{line:";;"}}});const bv=gv;class Sv extends HTMLElement{constructor(){super(),this.style.width="100%",this.style.height="100%"}connectedCallback(){window.command_editor=new Ir({extensions:[vv(["Alt-Enter","Cmd-Enter","Ctrl-Enter","Shift-Enter"]),is.of([{key:"Enter",run:yv},...Yu]),df,Eu(),new Sl(Qv,[Eu({icons:!1,addToOptions:[{render:(t,e,i)=>window.ide_autocomplete_command_prompt_extra&&window.ide_autocomplete_command_prompt_extra(t,e,i),position:90}]})]),Ir.updateListener.of(wv)],parent:this}),window.command_editor.focus()}}function vv(t){return t.map((t=>is.of([{key:t,run:sO}])))}function wv(t){if(!t.docChanged)return;ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-error",null);let e=window.command_editor.state.doc.toString().trim();try{bv.configure({strict:!0}).parse(window.command_editor.state.doc.toString()),ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-valid",!0),ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-error","Press `Enter` to execute command.")}catch(t){ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-valid",!1)}0===e.indexOf("add-file")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","add-file"):0===e.indexOf("push-file")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","push-file"):0===e.indexOf("delete-file")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","delete-file"):0===e.indexOf("clear-opfs")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","clear-opfs"):0===e.indexOf("update-preview")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","update-preview"):ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","available-commands")}function yv(){let t;try{t=bv.configure({strict:!0}).parse(window.command_editor.state.doc.toString())}catch(t){return ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-error",t.toString()),!0}return window.ide_parse_command&&window.ide_parse_command(window.command_editor.state.doc,t),!0}window.ide_open_command_k_s=t=>{ide_open_command_k(t+" ")},window.ide_open_command_k=t=>{ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k",!0),window.command_editor.dispatch({changes:{from:0,to:window.command_editor.state.doc.length,insert:t},selection:{anchor:t.length,head:t.length}}),window.command_editor.focus(),ide_clear_context_menu()},window.ide_run_command_parser=yv,document.addEventListener("keydown",(t=>{"Escape"===t.key?(ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k",!1),ide_clear_context_menu()):"s"===t.key&&(t.metaKey||t.ctrlKey)?(ide_open_command_k("push-file "+ftd.get_value("ui.fifthtry.com/components/editor/vars#current-file")),t.preventDefault()):"k"===t.key&&(t.metaKey||t.ctrlKey)&&(t.preventDefault(),ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k",!0),window.command_editor.focus())})),window.ide_clear_context_menu=()=>{ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-path",""),ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-visible","hidden"),HS("")};class xv extends HTMLElement{constructor(){super(),this.style.width="100%",this.style.height="100%",this.classList.add("fastn-ignore-global-keyboard"),this.currentDocument="current",this.documents={}}saveCurrentFile(){kv(ftd.get_value("ui.fifthtry.com/components/editor/vars#current-file"),this.documents[this.currentDocument].doc.toString())}connectedCallback(){!function(){let t=document.getElementById(DS);t.addEventListener("scroll",window.ide_clear_context_menu),ES(ev,{folders:[],files:[],ftd_root:t},t)}();let t=window.ftd.component_data(this),e=this,i=fastn_utils.getFlattenStaticValue(t.doc.get().get("content")),n=fastn_utils.getFlattenStaticValue(t.doc.get().get("language"));function r(t){e.documents[e.currentDocument]=t.state,t.docChanged&&e.saveCurrentFile()}function s(t,e){let i=[Of,mv(),xt.tabSize.of(4),is.of([fO]),Ir.updateListener.of(e)];switch(t){case"JavaScript":i.push(gp());break;case"Python":i.push(new Sl(em,[em.data.of({autocomplete:Bp}),em.data.of({autocomplete:Jp})]));break;case"Markdown":i.push(Zb());break;case"Html":i.push(cb())}return i}this.currentDocument=fastn_utils.getFlattenStaticValue(t.doc.get().get("file_name")),this.documents[this.currentDocument]=xt.create({doc:i,extensions:s(n,r)}),window.ide_cm_editor=new Ir({state:this.documents[e.currentDocument],parent:this}),t.doc.on_change((()=>{let e=fastn_utils.getFlattenStaticValue(t.doc.get().get("content")),i=fastn_utils.getFlattenStaticValue(t.doc.get().get("language"));this.currentDocument=fastn_utils.getFlattenStaticValue(t.doc.get().get("file_name")),this.documents[this.currentDocument]=xt.create({doc:e,extensions:s(i,r)}),window.ide_cm_editor.setState(this.documents[this.currentDocument])}))}}const kv=function(t,e){let i=null;return(...n)=>{window.clearTimeout(i),i=window.setTimeout((()=>{t.apply(null,n)}),e)}}(((t,e)=>{window.ide_dispatch_event("save-unsaved-file",{file_path:t,content:e})}),1e3);function Pv(t){return`ui.fifthtry.com/components/editor/vars#${t[0]}`}customElements.define("cm-editor",xv),customElements.define("command-editor",Sv),window.ide_dispatch_event=function(t,e){console.log("ide_dispatch_event",e),window.dispatchEvent(new CustomEvent("ide-event",{detail:{name:t,data:e}}))};const $v=Pv`package-data`,Tv=Pv`current-file`,_v=Pv`context-menu-path`,Rv=Pv`modified-files`,Zv=Pv`only-show-modified-files`;window.ide_update_ftd_var=function(t,e){var i,n;e=JSON.parse(e),t===$v&&(i=e.folders,n=e.files,YS(DS,GS,{folders:i,files:n,name:"root",open:!0})),t===Tv&&JS(e),t===Rv&&function(t){YS(DS,IS,t)}(e),t===_v&&HS(e),ftd.set_value(t,e);const r=ftd.get_value;r(Zv)&&0===r(Rv).length&&0===r(VAR_DELETED_FILES).length&&0===r(VAR_ADDED_FILES).length&&(ftd.set_value(Zv,!1),FS(!1))},window.ide_toggle_only_show_modified_files=()=>{let t="ui.fifthtry.com/components/editor/vars#only-show-modified-files",e=ftd.get_value(t);ftd.set_value(t,!e),FS(!e)},window.ide_get_ftd_var=function(t){const e=ftd.get_value(t);return console.log("ide_get_ftd_var",t,e),JSON.stringify(e)}}(); +!function(){"use strict";class t{lineAt(t){if(t<0||t>this.length)throw new RangeError(`Invalid position ${t} in document of length ${this.length}`);return this.lineInner(t,!1,1,0)}line(t){if(t<1||t>this.lines)throw new RangeError(`Invalid line number ${t} in ${this.lines}-line document`);return this.lineInner(t,!0,1,0)}replace(t,e,n){[t,e]=h(this,t,e);let r=[];return this.decompose(0,t,r,2),n.length&&n.decompose(0,n.length,r,3),this.decompose(e,this.length,r,1),i.from(r,this.length-(e-t)+n.length)}append(t){return this.replace(this.length,this.length,t)}slice(t,e=this.length){[t,e]=h(this,t,e);let n=[];return this.decompose(t,e,n,0),i.from(n,e-t)}eq(t){if(t==this)return!0;if(t.length!=this.length||t.lines!=this.lines)return!1;let e=this.scanIdentical(t,1),i=this.length-this.scanIdentical(t,-1),n=new s(this),r=new s(t);for(let t=e,s=e;;){if(n.next(t),r.next(t),t=0,n.lineBreak!=r.lineBreak||n.done!=r.done||n.value!=r.value)return!1;if(s+=n.value.length,n.done||s>=i)return!0}}iter(t=1){return new s(this,t)}iterRange(t,e=this.length){return new o(this,t,e)}iterLines(t,e){let i;if(null==t)i=this.iter();else{null==e&&(e=this.lines+1);let n=this.line(t).from;i=this.iterRange(n,Math.max(n,e==this.lines+1?this.length:e<=1?0:this.line(e-1).to))}return new a(i)}toString(){return this.sliceString(0)}toJSON(){let t=[];return this.flatten(t),t}constructor(){}static of(n){if(0==n.length)throw new RangeError("A document must have at least one line");return 1!=n.length||n[0]?n.length<=32?new e(n):i.from(e.split(n,[])):t.empty}}class e extends t{constructor(t,e=function(t){let e=-1;for(let i of t)e+=i.length+1;return e}(t)){super(),this.text=t,this.length=e}get lines(){return this.text.length}get children(){return null}lineInner(t,e,i,n){for(let r=0;;r++){let s=this.text[r],o=n+s.length;if((e?i:o)>=t)return new l(n,o,i,s);n=o+1,i++}}decompose(t,i,s,o){let a=t<=0&&i>=this.length?this:new e(r(this.text,t,i),Math.min(i,this.length)-Math.max(0,t));if(1&o){let t=s.pop(),i=n(a.text,t.text.slice(),0,a.length);if(i.length<=32)s.push(new e(i,t.length+a.length));else{let t=i.length>>1;s.push(new e(i.slice(0,t)),new e(i.slice(t)))}}else s.push(a)}replace(t,s,o){if(!(o instanceof e))return super.replace(t,s,o);[t,s]=h(this,t,s);let a=n(this.text,n(o.text,r(this.text,0,t)),s),l=this.length+o.length-(s-t);return a.length<=32?new e(a,l):i.from(e.split(a,[]),l)}sliceString(t,e=this.length,i="\n"){[t,e]=h(this,t,e);let n="";for(let r=0,s=0;r<=e&&st&&s&&(n+=i),tr&&(n+=o.slice(Math.max(0,t-r),e-r)),r=a+1}return n}flatten(t){for(let e of this.text)t.push(e)}scanIdentical(){return 0}static split(t,i){let n=[],r=-1;for(let s of t)n.push(s),r+=s.length+1,32==n.length&&(i.push(new e(n,r)),n=[],r=-1);return r>-1&&i.push(new e(n,r)),i}}class i extends t{constructor(t,e){super(),this.children=t,this.length=e,this.lines=0;for(let e of t)this.lines+=e.lines}lineInner(t,e,i,n){for(let r=0;;r++){let s=this.children[r],o=n+s.length,a=i+s.lines-1;if((e?a:o)>=t)return s.lineInner(t,e,i,n);n=o+1,i=a+1}}decompose(t,e,i,n){for(let r=0,s=0;s<=e&&r=s){let r=n&((s<=t?1:0)|(a>=e?2:0));s>=t&&a<=e&&!r?i.push(o):o.decompose(t-s,e-s,i,r)}s=a+1}}replace(t,e,n){if([t,e]=h(this,t,e),n.lines=s&&e<=a){let l=o.replace(t-s,e-s,n),h=this.lines-o.lines+l.lines;if(l.lines>4&&l.lines>h>>6){let s=this.children.slice();return s[r]=l,new i(s,this.length-(e-t)+n.length)}return super.replace(s,a,l)}s=a+1}return super.replace(t,e,n)}sliceString(t,e=this.length,i="\n"){[t,e]=h(this,t,e);let n="";for(let r=0,s=0;rt&&r&&(n+=i),ts&&(n+=o.sliceString(t-s,e-s,i)),s=a+1}return n}flatten(t){for(let e of this.children)e.flatten(t)}scanIdentical(t,e){if(!(t instanceof i))return 0;let n=0,[r,s,o,a]=e>0?[0,0,this.children.length,t.children.length]:[this.children.length-1,t.children.length-1,-1,-1];for(;;r+=e,s+=e){if(r==o||s==a)return n;let i=this.children[r],l=t.children[s];if(i!=l)return n+i.scanIdentical(l,e);n+=i.length+1}}static from(t,n=t.reduce(((t,e)=>t+e.length+1),-1)){let r=0;for(let e of t)r+=e.lines;if(r<32){let i=[];for(let e of t)e.flatten(i);return new e(i,n)}let s=Math.max(32,r>>5),o=s<<1,a=s>>1,l=[],h=0,c=-1,O=[];function d(t){let n;if(t.lines>o&&t instanceof i)for(let e of t.children)d(e);else t.lines>a&&(h>a||!h)?(u(),l.push(t)):t instanceof e&&h&&(n=O[O.length-1])instanceof e&&t.lines+n.lines<=32?(h+=t.lines,c+=t.length+1,O[O.length-1]=new e(n.text.concat(t.text),n.length+1+t.length)):(h+t.lines>s&&u(),h+=t.lines,c+=t.length+1,O.push(t))}function u(){0!=h&&(l.push(1==O.length?O[0]:i.from(O,c)),c=-1,h=O.length=0)}for(let e of t)d(e);return u(),1==l.length?l[0]:new i(l,n)}}function n(t,e,i=0,n=1e9){for(let r=0,s=0,o=!0;s=i&&(l>n&&(a=a.slice(0,n-r)),r0?1:(t instanceof e?t.text.length:t.children.length)<<1]}nextInner(t,i){for(this.done=this.lineBreak=!1;;){let n=this.nodes.length-1,r=this.nodes[n],s=this.offsets[n],o=s>>1,a=r instanceof e?r.text.length:r.children.length;if(o==(i>0?a:0)){if(0==n)return this.done=!0,this.value="",this;i>0&&this.offsets[n-1]++,this.nodes.pop(),this.offsets.pop()}else if((1&s)==(i>0?0:1)){if(this.offsets[n]+=i,0==t)return this.lineBreak=!0,this.value="\n",this;t--}else if(r instanceof e){let e=r.text[o+(i<0?-1:0)];if(this.offsets[n]+=i,e.length>Math.max(0,t))return this.value=0==t?e:i>0?e.slice(t):e.slice(0,e.length-t),this;t-=e.length}else{let s=r.children[o+(i<0?-1:0)];t>s.length?(t-=s.length,this.offsets[n]+=i):(i<0&&this.offsets[n]--,this.nodes.push(s),this.offsets.push(i>0?1:(s instanceof e?s.text.length:s.children.length)<<1))}}}next(t=0){return t<0&&(this.nextInner(-t,-this.dir),t=this.value.length),this.nextInner(t,this.dir)}}class o{constructor(t,e,i){this.value="",this.done=!1,this.cursor=new s(t,e>i?-1:1),this.pos=e>i?t.length:0,this.from=Math.min(e,i),this.to=Math.max(e,i)}nextInner(t,e){if(e<0?this.pos<=this.from:this.pos>=this.to)return this.value="",this.done=!0,this;t+=Math.max(0,e<0?this.pos-this.to:this.from-this.pos);let i=e<0?this.pos-this.from:this.to-this.pos;t>i&&(t=i),i-=t;let{value:n}=this.cursor.next(t);return this.pos+=(n.length+t)*e,this.value=n.length<=i?n:e<0?n.slice(n.length-i):n.slice(0,i),this.done=!this.value,this}next(t=0){return t<0?t=Math.max(t,this.from-this.pos):t>0&&(t=Math.min(t,this.to-this.pos)),this.nextInner(t,this.cursor.dir)}get lineBreak(){return this.cursor.lineBreak&&""!=this.value}}class a{constructor(t){this.inner=t,this.afterBreak=!0,this.value="",this.done=!1}next(t=0){let{done:e,lineBreak:i,value:n}=this.inner.next(t);return e&&this.afterBreak?(this.value="",this.afterBreak=!1):e?(this.done=!0,this.value=""):i?this.afterBreak?this.value="":(this.afterBreak=!0,this.next()):(this.value=n,this.afterBreak=!1),this}get lineBreak(){return!1}}"undefined"!=typeof Symbol&&(t.prototype[Symbol.iterator]=function(){return this.iter()},s.prototype[Symbol.iterator]=o.prototype[Symbol.iterator]=a.prototype[Symbol.iterator]=function(){return this});let l=class{constructor(t,e,i,n){this.from=t,this.to=e,this.number=i,this.text=n}get length(){return this.to-this.from}};function h(t,e,i){return[e=Math.max(0,Math.min(t.length,e)),Math.max(e,Math.min(t.length,i))]}let c="lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o".split(",").map((t=>t?parseInt(t,36):1));for(let t=1;tt)return c[e-1]<=t;return!1}function d(t){return t>=127462&&t<=127487}const u=8205;function f(t,e,i=!0,n=!0){return(i?p:m)(t,e,n)}function p(t,e,i){if(e==t.length)return e;e&&g(t.charCodeAt(e))&&Q(t.charCodeAt(e-1))&&e--;let n=b(t,e);for(e+=v(n);e=0&&d(b(t,n));)i++,n-=2;if(i%2==0)break;e+=2}}}return e}function m(t,e,i){for(;e>0;){let n=p(t,e-2,i);if(n=56320&&t<57344}function Q(t){return t>=55296&&t<56320}function b(t,e){let i=t.charCodeAt(e);if(!Q(i)||e+1==t.length)return i;let n=t.charCodeAt(e+1);return g(n)?n-56320+(i-55296<<10)+65536:i}function S(t){return t<=65535?String.fromCharCode(t):(t-=65536,String.fromCharCode(55296+(t>>10),56320+(1023&t)))}function v(t){return t<65536?1:2}const w=/\r\n?|\n/;var y=function(t){return t[t.Simple=0]="Simple",t[t.TrackDel=1]="TrackDel",t[t.TrackBefore=2]="TrackBefore",t[t.TrackAfter=3]="TrackAfter",t}(y||(y={}));class x{constructor(t){this.sections=t}get length(){let t=0;for(let e=0;et)return r+(t-n);r+=o}else{if(i!=y.Simple&&l>=t&&(i==y.TrackDel&&nt||i==y.TrackBefore&&nt))return null;if(l>t||l==t&&e<0&&!o)return t==n||e<0?r:r+a;r+=a}n=l}if(t>n)throw new RangeError(`Position ${t} is out of range for changeset of length ${n}`);return r}touchesRange(t,e=t){for(let i=0,n=0;i=0&&n<=e&&r>=t)return!(ne)||"cover";n=r}return!1}toString(){let t="";for(let e=0;e=0?":"+n:"")}return t}toJSON(){return this.sections}static fromJSON(t){if(!Array.isArray(t)||t.length%2||t.some((t=>"number"!=typeof t)))throw new RangeError("Invalid JSON representation of ChangeDesc");return new x(t)}static create(t){return new x(t)}}class k extends x{constructor(t,e){super(t),this.inserted=e}apply(t){if(this.length!=t.length)throw new RangeError("Applying change set to a document with the wrong length");return T(this,((e,i,n,r,s)=>t=t.replace(n,n+(i-e),s)),!1),t}mapDesc(t,e=!1){return _(this,t,e,!0)}invert(e){let i=this.sections.slice(),n=[];for(let r=0,s=0;r=0){i[r]=a,i[r+1]=o;let l=r>>1;for(;n.length0&&$(i,e,r.text),r.forward(t),o+=t}let l=t[s++];for(;o>1].toJSON()))}return t}static of(e,i,n){let r=[],s=[],o=0,a=null;function l(t=!1){if(!t&&!r.length)return;oa||e<0||a>i)throw new RangeError(`Invalid change range ${e} to ${a} (in doc of length ${i})`);let O=c?"string"==typeof c?t.of(c.split(n||w)):c:t.empty,d=O.length;if(e==a&&0==d)return;eo&&P(r,e-o,-1),P(r,a-e,d),$(s,r,O),o=a}}(e),l(!a),a}static empty(t){return new k(t?[t,-1]:[],[])}static fromJSON(e){if(!Array.isArray(e))throw new RangeError("Invalid JSON representation of ChangeSet");let i=[],n=[];for(let r=0;re&&"string"!=typeof t)))throw new RangeError("Invalid JSON representation of ChangeSet");if(1==s.length)i.push(s[0],0);else{for(;n.length=0&&i<=0&&i==t[r+1]?t[r]+=e:0==e&&0==t[r]?t[r+1]+=i:n?(t[r]+=e,t[r+1]+=i):t.push(e,i)}function $(e,i,n){if(0==n.length)return;let r=i.length-2>>1;if(r>1])),!(n||a==e.sections.length||e.sections[a+1]<0);)l=e.sections[a++],h=e.sections[a++];i(s,c,o,O,d),s=c,o=O}}}function _(t,e,i,n=!1){let r=[],s=n?[]:null,o=new Z(t),a=new Z(e);for(let t=-1;;)if(-1==o.ins&&-1==a.ins){let t=Math.min(o.len,a.len);P(r,t,-1),o.forward(t),a.forward(t)}else if(a.ins>=0&&(o.ins<0||t==o.i||0==o.off&&(a.len=0&&t=0)){if(o.done&&a.done)return s?k.createSet(r,s):x.create(r);throw new Error("Mismatched change set lengths")}{let e=0,i=o.len;for(;i;)if(-1==a.ins){let t=Math.min(i,a.len);e+=t,i-=t,a.forward(t)}else{if(!(0==a.ins&&a.lene||o.ins>=0&&o.len>e)&&(t||n.length>i),s.forward2(e),o.forward(e)}}else P(n,0,o.ins,t),r&&$(r,n,o.text),o.next()}}class Z{constructor(t){this.set=t,this.i=0,this.next()}next(){let{sections:t}=this.set;this.i>1;return i>=e.length?t.empty:e[i]}textBit(e){let{inserted:i}=this.set,n=this.i-2>>1;return n>=i.length&&!e?t.empty:i[n].slice(this.off,null==e?void 0:this.off+e)}forward(t){t==this.len?this.next():(this.len-=t,this.off+=t)}forward2(t){-1==this.ins?this.forward(t):t==this.ins?this.next():(this.ins-=t,this.off+=t)}}class X{constructor(t,e,i){this.from=t,this.to=e,this.flags=i}get anchor(){return 32&this.flags?this.to:this.from}get head(){return 32&this.flags?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return 8&this.flags?-1:16&this.flags?1:0}get bidiLevel(){let t=7&this.flags;return 7==t?null:t}get goalColumn(){let t=this.flags>>6;return 16777215==t?void 0:t}map(t,e=-1){let i,n;return this.empty?i=n=t.mapPos(this.from,e):(i=t.mapPos(this.from,1),n=t.mapPos(this.to,-1)),i==this.from&&n==this.to?this:new X(i,n,this.flags)}extend(t,e=t){if(t<=this.anchor&&e>=this.anchor)return C.range(t,e);let i=Math.abs(t-this.anchor)>Math.abs(e-this.anchor)?t:e;return C.range(this.anchor,i)}eq(t,e=!1){return!(this.anchor!=t.anchor||this.head!=t.head||e&&this.empty&&this.assoc!=t.assoc)}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(t){if(!t||"number"!=typeof t.anchor||"number"!=typeof t.head)throw new RangeError("Invalid JSON representation for SelectionRange");return C.range(t.anchor,t.head)}static create(t,e,i){return new X(t,e,i)}}class C{constructor(t,e){this.ranges=t,this.mainIndex=e}map(t,e=-1){return t.empty?this:C.create(this.ranges.map((i=>i.map(t,e))),this.mainIndex)}eq(t,e=!1){if(this.ranges.length!=t.ranges.length||this.mainIndex!=t.mainIndex)return!1;for(let i=0;it.toJSON())),main:this.mainIndex}}static fromJSON(t){if(!t||!Array.isArray(t.ranges)||"number"!=typeof t.main||t.main>=t.ranges.length)throw new RangeError("Invalid JSON representation for EditorSelection");return new C(t.ranges.map((t=>X.fromJSON(t))),t.main)}static single(t,e=t){return new C([C.range(t,e)],0)}static create(t,e=0){if(0==t.length)throw new RangeError("A selection needs at least one range");for(let i=0,n=0;nt?8:0)|r)}static normalized(t,e=0){let i=t[e];t.sort(((t,e)=>t.from-e.from)),e=t.indexOf(i);for(let i=1;in.head?C.range(o,s):C.range(s,o))}}return new C(t,e)}}function q(t,e){for(let i of t.ranges)if(i.to>e)throw new RangeError("Selection points outside of document")}let W=0;class A{constructor(t,e,i,n,r){this.combine=t,this.compareInput=e,this.compare=i,this.isStatic=n,this.id=W++,this.default=t([]),this.extensions="function"==typeof r?r(this):r}get reader(){return this}static define(t={}){return new A(t.combine||(t=>t),t.compareInput||((t,e)=>t===e),t.compare||(t.combine?(t,e)=>t===e:z),!!t.static,t.enables)}of(t){return new V([],this,0,t)}compute(t,e){if(this.isStatic)throw new Error("Can't compute a static facet");return new V(t,this,1,e)}computeN(t,e){if(this.isStatic)throw new Error("Can't compute a static facet");return new V(t,this,2,e)}from(t,e){return e||(e=t=>t),this.compute([t],(i=>e(i.field(t))))}}function z(t,e){return t==e||t.length==e.length&&t.every(((t,i)=>t===e[i]))}class V{constructor(t,e,i,n){this.dependencies=t,this.facet=e,this.type=i,this.value=n,this.id=W++}dynamicSlot(t){var e;let i=this.value,n=this.facet.compareInput,r=this.id,s=t[r]>>1,o=2==this.type,a=!1,l=!1,h=[];for(let i of this.dependencies)"doc"==i?a=!0:"selection"==i?l=!0:1&(null!==(e=t[i.id])&&void 0!==e?e:1)||h.push(t[i.id]);return{create:t=>(t.values[s]=i(t),1),update(t,e){if(a&&e.docChanged||l&&(e.docChanged||e.selection)||E(t,h)){let e=i(t);if(o?!M(e,t.values[s],n):!n(e,t.values[s]))return t.values[s]=e,1}return 0},reconfigure:(t,e)=>{let a,l=e.config.address[r];if(null!=l){let r=et(e,l);if(this.dependencies.every((i=>i instanceof A?e.facet(i)===t.facet(i):!(i instanceof j)||e.field(i,!1)==t.field(i,!1)))||(o?M(a=i(t),r,n):n(a=i(t),r)))return t.values[s]=r,0}else a=i(t);return t.values[s]=a,1}}}}function M(t,e,i){if(t.length!=e.length)return!1;for(let n=0;nt[e.id])),r=i.map((t=>t.type)),s=n.filter((t=>!(1&t))),o=t[e.id]>>1;function a(t){let i=[];for(let e=0;et===e),t);return t.provide&&(e.provides=t.provide(e)),e}create(t){let e=t.facet(U).find((t=>t.field==this));return((null==e?void 0:e.create)||this.createF)(t)}slot(t){let e=t[this.id]>>1;return{create:t=>(t.values[e]=this.create(t),1),update:(t,i)=>{let n=t.values[e],r=this.updateF(n,i);return this.compareF(n,r)?0:(t.values[e]=r,1)},reconfigure:(t,i)=>null!=i.config.address[this.id]?(t.values[e]=i.field(this),0):(t.values[e]=this.create(t),1)}}init(t){return[this,U.of({field:this,create:t})]}get extension(){return this}}const D=4,G=3,L=2,N=1;function I(t){return e=>new F(e,t)}const B={highest:I(0),high:I(N),default:I(L),low:I(G),lowest:I(D)};class F{constructor(t,e){this.inner=t,this.prec=e}}class H{of(t){return new J(this,t)}reconfigure(t){return H.reconfigure.of({compartment:this,extension:t})}get(t){return t.config.compartments.get(this)}}class J{constructor(t,e){this.compartment=t,this.inner=e}}class K{constructor(t,e,i,n,r,s){for(this.base=t,this.compartments=e,this.dynamicSlots=i,this.address=n,this.staticValues=r,this.facets=s,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(t,e,i){let n=[],r=Object.create(null),s=new Map;for(let i of function(t,e,i){let n=[[],[],[],[],[]],r=new Map;function s(t,o){let a=r.get(t);if(null!=a){if(a<=o)return;let e=n[a].indexOf(t);e>-1&&n[a].splice(e,1),t instanceof J&&i.delete(t.compartment)}if(r.set(t,o),Array.isArray(t))for(let e of t)s(e,o);else if(t instanceof J){if(i.has(t.compartment))throw new RangeError("Duplicate use of compartment in extensions");let n=e.get(t.compartment)||t.inner;i.set(t.compartment,n),s(n,o)}else if(t instanceof F)s(t.inner,t.prec);else if(t instanceof j)n[o].push(t),t.provides&&s(t.provides,o);else if(t instanceof V)n[o].push(t),t.facet.extensions&&s(t.facet.extensions,L);else{let e=t.extension;if(!e)throw new Error(`Unrecognized extension value in extension set (${t}). This sometimes happens because multiple instances of @codemirror/state are loaded, breaking instanceof checks.`);s(e,o)}}return s(t,L),n.reduce(((t,e)=>t.concat(e)))}(t,e,s))i instanceof j?n.push(i):(r[i.facet.id]||(r[i.facet.id]=[])).push(i);let o=Object.create(null),a=[],l=[];for(let t of n)o[t.id]=l.length<<1,l.push((e=>t.slot(e)));let h=null==i?void 0:i.config.facets;for(let t in r){let e=r[t],n=e[0].facet,s=h&&h[t]||[];if(e.every((t=>0==t.type)))if(o[n.id]=a.length<<1|1,z(s,e))a.push(i.facet(n));else{let t=n.combine(e.map((t=>t.value)));a.push(i&&n.compare(t,i.facet(n))?i.facet(n):t)}else{for(let t of e)0==t.type?(o[t.id]=a.length<<1|1,a.push(t.value)):(o[t.id]=l.length<<1,l.push((e=>t.dynamicSlot(e))));o[n.id]=l.length<<1,l.push((t=>Y(t,n,e)))}}let c=l.map((t=>t(o)));return new K(t,s,c,o,a,r)}}function tt(t,e){if(1&e)return 2;let i=e>>1,n=t.status[i];if(4==n)throw new Error("Cyclic dependency between fields and/or facets");if(2&n)return n;t.status[i]=4;let r=t.computeSlot(t,t.config.dynamicSlots[i]);return t.status[i]=2|r}function et(t,e){return 1&e?t.config.staticValues[e>>1]:t.values[e>>1]}const it=A.define(),nt=A.define({combine:t=>t.some((t=>t)),static:!0}),rt=A.define({combine:t=>t.length?t[0]:void 0,static:!0}),st=A.define(),ot=A.define(),at=A.define(),lt=A.define({combine:t=>!!t.length&&t[0]});class ht{constructor(t,e){this.type=t,this.value=e}static define(){return new ct}}class ct{of(t){return new ht(this,t)}}class Ot{constructor(t){this.map=t}of(t){return new dt(this,t)}}class dt{constructor(t,e){this.type=t,this.value=e}map(t){let e=this.type.map(this.value,t);return void 0===e?void 0:e==this.value?this:new dt(this.type,e)}is(t){return this.type==t}static define(t={}){return new Ot(t.map||(t=>t))}static mapEffects(t,e){if(!t.length)return t;let i=[];for(let n of t){let t=n.map(e);t&&i.push(t)}return i}}dt.reconfigure=dt.define(),dt.appendConfig=dt.define();class ut{constructor(t,e,i,n,r,s){this.startState=t,this.changes=e,this.selection=i,this.effects=n,this.annotations=r,this.scrollIntoView=s,this._doc=null,this._state=null,i&&q(i,e.newLength),r.some((t=>t.type==ut.time))||(this.annotations=r.concat(ut.time.of(Date.now())))}static create(t,e,i,n,r,s){return new ut(t,e,i,n,r,s)}get newDoc(){return this._doc||(this._doc=this.changes.apply(this.startState.doc))}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(t){for(let e of this.annotations)if(e.type==t)return e.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}isUserEvent(t){let e=this.annotation(ut.userEvent);return!(!e||!(e==t||e.length>t.length&&e.slice(0,t.length)==t&&"."==e[t.length]))}}function ft(t,e){let i=[];for(let n=0,r=0;;){let s,o;if(n=t[n]))s=t[n++],o=t[n++];else{if(!(r=0;r--){let s=i[r](t);s&&Object.keys(s).length&&(n=pt(n,mt(e,s,t.changes.newLength),!0))}return n==t?t:ut.create(e,t.changes,t.selection,n.effects,n.annotations,n.scrollIntoView)}(i?function(t){let e=t.startState,i=!0;for(let n of e.facet(st)){let e=n(t);if(!1===e){i=!1;break}Array.isArray(e)&&(i=!0===i?e:ft(i,e))}if(!0!==i){let n,r;if(!1===i)r=t.changes.invertedDesc,n=k.empty(e.doc.length);else{let e=t.changes.filter(i);n=e.changes,r=e.filtered.mapDesc(e.changes).invertedDesc}t=ut.create(e,n,t.selection&&t.selection.map(r),dt.mapEffects(t.effects,r),t.annotations,t.scrollIntoView)}let n=e.facet(ot);for(let i=n.length-1;i>=0;i--){let r=n[i](t);t=r instanceof ut?r:Array.isArray(r)&&1==r.length&&r[0]instanceof ut?r[0]:gt(e,bt(r),!1)}return t}(r):r)}ut.time=ht.define(),ut.userEvent=ht.define(),ut.addToHistory=ht.define(),ut.remote=ht.define();const Qt=[];function bt(t){return null==t?Qt:Array.isArray(t)?t:[t]}var St=function(t){return t[t.Word=0]="Word",t[t.Space=1]="Space",t[t.Other=2]="Other",t}(St||(St={}));const vt=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;let wt;try{wt=new RegExp("[\\p{Alphabetic}\\p{Number}_]","u")}catch(Hb){}function yt(t){return e=>{if(!/\S/.test(e))return St.Space;if(function(t){if(wt)return wt.test(t);for(let e=0;e"€"&&(i.toUpperCase()!=i.toLowerCase()||vt.test(i)))return!0}return!1}(e))return St.Word;for(let i=0;i-1)return St.Word;return St.Other}}class xt{constructor(t,e,i,n,r,s){this.config=t,this.doc=e,this.selection=i,this.values=n,this.status=t.statusTemplate.slice(),this.computeSlot=r,s&&(s._state=this);for(let t=0;tr.set(e,t))),i=null),r.set(e.value.compartment,e.value.extension)):e.is(dt.reconfigure)?(i=null,n=e.value):e.is(dt.appendConfig)&&(i=null,n=bt(n).concat(e.value));if(i)e=t.startState.values.slice();else{i=K.resolve(n,r,this),e=new xt(i,this.doc,this.selection,i.dynamicSlots.map((()=>null)),((t,e)=>e.reconfigure(t,this)),null).values}let s=t.startState.facet(nt)?t.newSelection:t.newSelection.asSingle();new xt(i,t.newDoc,s,e,((e,i)=>i.update(e,t)),t)}replaceSelection(t){return"string"==typeof t&&(t=this.toText(t)),this.changeByRange((e=>({changes:{from:e.from,to:e.to,insert:t},range:C.cursor(e.from+t.length)})))}changeByRange(t){let e=this.selection,i=t(e.ranges[0]),n=this.changes(i.changes),r=[i.range],s=bt(i.effects);for(let i=1;ir.spec.fromJSON(s,t))))}return xt.create({doc:t.doc,selection:C.fromJSON(t.selection),extensions:e.extensions?n.concat([e.extensions]):n})}static create(e={}){let i=K.resolve(e.extensions||[],new Map),n=e.doc instanceof t?e.doc:t.of((e.doc||"").split(i.staticFacet(xt.lineSeparator)||w)),r=e.selection?e.selection instanceof C?e.selection:C.single(e.selection.anchor,e.selection.head):C.single(0);return q(r,n.length),i.staticFacet(nt)||(r=r.asSingle()),new xt(i,n,r,i.dynamicSlots.map((()=>null)),((t,e)=>e.create(t)),null)}get tabSize(){return this.facet(xt.tabSize)}get lineBreak(){return this.facet(xt.lineSeparator)||"\n"}get readOnly(){return this.facet(lt)}phrase(t,...e){for(let e of this.facet(xt.phrases))if(Object.prototype.hasOwnProperty.call(e,t)){t=e[t];break}return e.length&&(t=t.replace(/\$(\$|\d*)/g,((t,i)=>{if("$"==i)return"$";let n=+(i||1);return!n||n>e.length?t:e[n-1]}))),t}languageDataAt(t,e,i=-1){let n=[];for(let r of this.facet(it))for(let s of r(this,e,i))Object.prototype.hasOwnProperty.call(s,t)&&n.push(s[t]);return n}charCategorizer(t){return yt(this.languageDataAt("wordChars",t).join(""))}wordAt(t){let{text:e,from:i,length:n}=this.doc.lineAt(t),r=this.charCategorizer(t),s=t-i,o=t-i;for(;s>0;){let t=f(e,s,!1);if(r(e.slice(t,s))!=St.Word)break;s=t}for(;ot.length?t[0]:4}),xt.lineSeparator=rt,xt.readOnly=lt,xt.phrases=A.define({compare(t,e){let i=Object.keys(t),n=Object.keys(e);return i.length==n.length&&i.every((i=>t[i]==e[i]))}}),xt.languageData=it,xt.changeFilter=st,xt.transactionFilter=ot,xt.transactionExtender=at,H.reconfigure=dt.define();class Pt{eq(t){return this==t}range(t,e=t){return $t.create(t,e,this)}}Pt.prototype.startSide=Pt.prototype.endSide=0,Pt.prototype.point=!1,Pt.prototype.mapMode=y.TrackDel;let $t=class t{constructor(t,e,i){this.from=t,this.to=e,this.value=i}static create(e,i,n){return new t(e,i,n)}};function Tt(t,e){return t.from-e.from||t.value.startSide-e.value.startSide}class _t{constructor(t,e,i,n){this.from=t,this.to=e,this.value=i,this.maxPoint=n}get length(){return this.to[this.to.length-1]}findIndex(t,e,i,n=0){let r=i?this.to:this.from;for(let s=n,o=r.length;;){if(s==o)return s;let n=s+o>>1,a=r[n]-t||(i?this.value[n].endSide:this.value[n].startSide)-e;if(n==s)return a>=0?s:o;a>=0?o=n:s=n+1}}between(t,e,i,n){for(let r=this.findIndex(e,-1e9,!0),s=this.findIndex(i,1e9,!1,r);rh||l==h&&c.startSide>0&&c.endSide<=0)continue;(h-l||c.endSide-c.startSide)<0||(s<0&&(s=l),c.point&&(o=Math.max(o,h-l)),i.push(c),n.push(l-s),r.push(h-s))}return{mapped:i.length?new _t(n,r,i,o):null,pos:s}}}class Rt{constructor(t,e,i,n){this.chunkPos=t,this.chunk=e,this.nextLayer=i,this.maxPoint=n}static create(t,e,i,n){return new Rt(t,e,i,n)}get length(){let t=this.chunk.length-1;return t<0?0:Math.max(this.chunkEnd(t),this.nextLayer.length)}get size(){if(this.isEmpty)return 0;let t=this.nextLayer.size;for(let e of this.chunk)t+=e.value.length;return t}chunkEnd(t){return this.chunkPos[t]+this.chunk[t].length}update(t){let{add:e=[],sort:i=!1,filterFrom:n=0,filterTo:r=this.length}=t,s=t.filter;if(0==e.length&&!s)return this;if(i&&(e=e.slice().sort(Tt)),this.isEmpty)return e.length?Rt.of(e):this;let o=new Ct(this,null,-1).goto(0),a=0,l=[],h=new Zt;for(;o.value||a=0){let t=e[a++];h.addInner(t.from,t.to,t.value)||l.push(t)}else 1==o.rangeIndex&&o.chunkIndexthis.chunkEnd(o.chunkIndex)||ro.to||r=r&&t<=r+s.length&&!1===s.between(r,t-r,e-r,i))return}this.nextLayer.between(t,e,i)}}iter(t=0){return qt.from([this]).goto(t)}get isEmpty(){return this.nextLayer==this}static iter(t,e=0){return qt.from(t).goto(e)}static compare(t,e,i,n,r=-1){let s=t.filter((t=>t.maxPoint>0||!t.isEmpty&&t.maxPoint>=r)),o=e.filter((t=>t.maxPoint>0||!t.isEmpty&&t.maxPoint>=r)),a=Xt(s,o,i),l=new At(s,a,r),h=new At(o,a,r);i.iterGaps(((t,e,i)=>zt(l,t,h,e,i,n))),i.empty&&0==i.length&&zt(l,0,h,0,0,n)}static eq(t,e,i=0,n){null==n&&(n=999999999);let r=t.filter((t=>!t.isEmpty&&e.indexOf(t)<0)),s=e.filter((e=>!e.isEmpty&&t.indexOf(e)<0));if(r.length!=s.length)return!1;if(!r.length)return!0;let o=Xt(r,s),a=new At(r,o,0).goto(i),l=new At(s,o,0).goto(i);for(;;){if(a.to!=l.to||!Vt(a.active,l.active)||a.point&&(!l.point||!a.point.eq(l.point)))return!1;if(a.to>n)return!0;a.next(),l.next()}}static spans(t,e,i,n,r=-1){let s=new At(t,null,r).goto(e),o=e,a=s.openStart;for(;;){let t=Math.min(s.to,i);if(s.point){let i=s.activeForPoint(s.to),r=s.pointFromo&&(n.span(o,t,s.active,a),a=s.openEnd(t));if(s.to>i)return a+(s.point&&s.to>i?1:0);o=s.to,s.next()}}static of(t,e=!1){let i=new Zt;for(let n of t instanceof $t?[t]:e?function(t){if(t.length>1)for(let e=t[0],i=1;i0)return t.slice().sort(Tt);e=n}return t}(t):t)i.add(n.from,n.to,n.value);return i.finish()}static join(t){if(!t.length)return Rt.empty;let e=t[t.length-1];for(let i=t.length-2;i>=0;i--)for(let n=t[i];n!=Rt.empty;n=n.nextLayer)e=new Rt(n.chunkPos,n.chunk,e,Math.max(n.maxPoint,e.maxPoint));return e}}Rt.empty=new Rt([],[],null,-1),Rt.empty.nextLayer=Rt.empty;class Zt{finishChunk(t){this.chunks.push(new _t(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,t&&(this.from=[],this.to=[],this.value=[])}constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}add(t,e,i){this.addInner(t,e,i)||(this.nextLayer||(this.nextLayer=new Zt)).add(t,e,i)}addInner(t,e,i){let n=t-this.lastTo||i.startSide-this.last.endSide;if(n<=0&&(t-this.lastFrom||i.startSide-this.last.startSide)<0)throw new Error("Ranges must be added sorted by `from` position and `startSide`");return!(n<0)&&(250==this.from.length&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=t),this.from.push(t-this.chunkStart),this.to.push(e-this.chunkStart),this.last=i,this.lastFrom=t,this.lastTo=e,this.value.push(i),i.point&&(this.maxPoint=Math.max(this.maxPoint,e-t)),!0)}addChunk(t,e){if((t-this.lastTo||e.value[0].startSide-this.last.endSide)<0)return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,e.maxPoint),this.chunks.push(e),this.chunkPos.push(t);let i=e.value.length-1;return this.last=e.value[i],this.lastFrom=e.from[i]+t,this.lastTo=e.to[i]+t,!0}finish(){return this.finishInner(Rt.empty)}finishInner(t){if(this.from.length&&this.finishChunk(!1),0==this.chunks.length)return t;let e=Rt.create(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(t):t,this.setMaxPoint);return this.from=null,e}}function Xt(t,e,i){let n=new Map;for(let e of t)for(let t=0;t=this.minPoint)break}}}setRangeIndex(t){if(t==this.layer.chunk[this.chunkIndex].value.length){if(this.chunkIndex++,this.skip)for(;this.chunkIndex=i&&n.push(new Ct(s,e,i,r));return 1==n.length?n[0]:new qt(n)}get startSide(){return this.value?this.value.startSide:0}goto(t,e=-1e9){for(let i of this.heap)i.goto(t,e);for(let t=this.heap.length>>1;t>=0;t--)Wt(this.heap,t);return this.next(),this}forward(t,e){for(let i of this.heap)i.forward(t,e);for(let t=this.heap.length>>1;t>=0;t--)Wt(this.heap,t);(this.to-t||this.value.endSide-e)<0&&this.next()}next(){if(0==this.heap.length)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let t=this.heap[0];this.from=t.from,this.to=t.to,this.value=t.value,this.rank=t.rank,t.value&&t.next(),Wt(this.heap,0)}}}function Wt(t,e){for(let i=t[e];;){let n=1+(e<<1);if(n>=t.length)break;let r=t[n];if(n+1=0&&(r=t[n+1],n++),i.compare(r)<0)break;t[n]=i,t[e]=r,e=n}}class At{constructor(t,e,i){this.minPoint=i,this.active=[],this.activeTo=[],this.activeRank=[],this.minActive=-1,this.point=null,this.pointFrom=0,this.pointRank=0,this.to=-1e9,this.endSide=0,this.openStart=-1,this.cursor=qt.from(t,e,i)}goto(t,e=-1e9){return this.cursor.goto(t,e),this.active.length=this.activeTo.length=this.activeRank.length=0,this.minActive=-1,this.to=t,this.endSide=e,this.openStart=-1,this.next(),this}forward(t,e){for(;this.minActive>-1&&(this.activeTo[this.minActive]-t||this.active[this.minActive].endSide-e)<0;)this.removeActive(this.minActive);this.cursor.forward(t,e)}removeActive(t){Mt(this.active,t),Mt(this.activeTo,t),Mt(this.activeRank,t),this.minActive=Yt(this.active,this.activeTo)}addActive(t){let e=0,{value:i,to:n,rank:r}=this.cursor;for(;e0;)e++;Et(this.active,e,i),Et(this.activeTo,e,n),Et(this.activeRank,e,r),t&&Et(t,e,this.cursor.from),this.minActive=Yt(this.active,this.activeTo)}next(){let t=this.to,e=this.point;this.point=null;let i=this.openStart<0?[]:null;for(;;){let n=this.minActive;if(n>-1&&(this.activeTo[n]-this.cursor.from||this.active[n].endSide-this.cursor.startSide)<0){if(this.activeTo[n]>t){this.to=this.activeTo[n],this.endSide=this.active[n].endSide;break}this.removeActive(n),i&&Mt(i,n)}else{if(!this.cursor.value){this.to=this.endSide=1e9;break}if(this.cursor.from>t){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}{let t=this.cursor.value;if(t.point){if(!(e&&this.cursor.to==this.to&&this.cursor.from=0&&i[e]=0&&!(this.activeRank[i]t||this.activeTo[i]==t&&this.active[i].endSide>=this.point.endSide)&&e.push(this.active[i]);return e.reverse()}openEnd(t){let e=0;for(let i=this.activeTo.length-1;i>=0&&this.activeTo[i]>t;i--)e++;return e}}function zt(t,e,i,n,r,s){t.goto(e),i.goto(n);let o=n+r,a=n,l=n-e;for(;;){let e=t.to+l-i.to||t.endSide-i.endSide,n=e<0?t.to+l:i.to,r=Math.min(n,o);if(t.point||i.point?t.point&&i.point&&(t.point==i.point||t.point.eq(i.point))&&Vt(t.activeForPoint(t.to),i.activeForPoint(i.to))||s.comparePoint(a,r,t.point,i.point):r>a&&!Vt(t.active,i.active)&&s.compareRange(a,r,t.active,i.active),n>o)break;a=n,e<=0&&t.next(),e>=0&&i.next()}}function Vt(t,e){if(t.length!=e.length)return!1;for(let i=0;i=e;i--)t[i+1]=t[i];t[e]=i}function Yt(t,e){let i=-1,n=1e9;for(let r=0;r=e)return n;if(n==t.length)break;r+=9==t.charCodeAt(n)?i-r%i:1,n=f(t,n)}return!0===n?-1:t.length}const Dt="undefined"==typeof Symbol?"__ͼ":Symbol.for("ͼ"),Gt="undefined"==typeof Symbol?"__styleSet"+Math.floor(1e8*Math.random()):Symbol("styleSet"),Lt="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:{};class Nt{constructor(t,e){this.rules=[];let{finish:i}=e||{};function n(t){return/^@/.test(t)?[t]:t.split(/,\s*/)}function r(t,e,s,o){let a=[],l=/^@(\w+)\b/.exec(t[0]),h=l&&"keyframes"==l[1];if(l&&null==e)return s.push(t[0]+";");for(let i in e){let o=e[i];if(/&/.test(i))r(i.split(/,\s*/).map((e=>t.map((t=>e.replace(/&/,t))))).reduce(((t,e)=>t.concat(e))),o,s);else if(o&&"object"==typeof o){if(!l)throw new RangeError("The value of a property ("+i+") should be a primitive value.");r(n(i),o,a,h)}else null!=o&&a.push(i.replace(/_.*/,"").replace(/[A-Z]/g,(t=>"-"+t.toLowerCase()))+": "+o+";")}(a.length||h)&&s.push((!i||l||o?t:t.map(i)).join(", ")+" {"+a.join(" ")+"}")}for(let e in t)r(n(e),t[e],this.rules)}getRules(){return this.rules.join("\n")}static newName(){let t=Lt[Dt]||1;return Lt[Dt]=t+1,"ͼ"+t.toString(36)}static mount(t,e,i){let n=t[Gt],r=i&&i.nonce;n?r&&n.setNonce(r):n=new Bt(t,r),n.mount(Array.isArray(e)?e:[e],t)}}let It=new Map;class Bt{constructor(t,e){let i=t.ownerDocument||t,n=i.defaultView;if(!t.head&&t.adoptedStyleSheets&&n.CSSStyleSheet){let e=It.get(i);if(e)return t[Gt]=e;this.sheet=new n.CSSStyleSheet,It.set(i,this)}else this.styleTag=i.createElement("style"),e&&this.styleTag.setAttribute("nonce",e);this.modules=[],t[Gt]=this}mount(t,e){let i=this.sheet,n=0,r=0;for(let e=0;e-1&&(this.modules.splice(o,1),r--,o=-1),-1==o){if(this.modules.splice(r++,0,s),i)for(let t=0;t",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},Jt="undefined"!=typeof navigator&&/Mac/.test(navigator.platform),Kt="undefined"!=typeof navigator&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),te=0;te<10;te++)Ft[48+te]=Ft[96+te]=String(te);for(te=1;te<=24;te++)Ft[te+111]="F"+te;for(te=65;te<=90;te++)Ft[te]=String.fromCharCode(te+32),Ht[te]=String.fromCharCode(te);for(var ee in Ft)Ht.hasOwnProperty(ee)||(Ht[ee]=Ft[ee]);function ie(t){let e;return e=11==t.nodeType?t.getSelection?t:t.ownerDocument:t,e.getSelection()}function ne(t,e){return!!e&&(t==e||t.contains(1!=e.nodeType?e.parentNode:e))}function re(t,e){if(!e.anchorNode)return!1;try{return ne(t,e.anchorNode)}catch(t){return!1}}function se(t){return 3==t.nodeType?Qe(t,0,t.nodeValue.length).getClientRects():1==t.nodeType?t.getClientRects():[]}function oe(t,e,i,n){return!!i&&(he(t,e,i,n,-1)||he(t,e,i,n,1))}function ae(t){for(var e=0;;e++)if(!(t=t.previousSibling))return e}function le(t){return 1==t.nodeType&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(t.nodeName)}function he(t,e,i,n,r){for(;;){if(t==i&&e==n)return!0;if(e==(r<0?0:ce(t))){if("DIV"==t.nodeName)return!1;let i=t.parentNode;if(!i||1!=i.nodeType)return!1;e=ae(t)+(r<0?0:1),t=i}else{if(1!=t.nodeType)return!1;if(1==(t=t.childNodes[e+(r<0?-1:0)]).nodeType&&"false"==t.contentEditable)return!1;e=r<0?ce(t):0}}}function ce(t){return 3==t.nodeType?t.nodeValue.length:t.childNodes.length}function Oe(t,e){let i=e?t.left:t.right;return{left:i,right:i,top:t.top,bottom:t.bottom}}function de(t){let e=t.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:t.innerWidth,top:0,bottom:t.innerHeight}}function ue(t,e){let i=e.width/t.offsetWidth,n=e.height/t.offsetHeight;return(i>.995&&i<1.005||!isFinite(i)||Math.abs(e.width-t.offsetWidth)<1)&&(i=1),(n>.995&&n<1.005||!isFinite(n)||Math.abs(e.height-t.offsetHeight)<1)&&(n=1),{scaleX:i,scaleY:n}}class fe{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}eq(t){return this.anchorNode==t.anchorNode&&this.anchorOffset==t.anchorOffset&&this.focusNode==t.focusNode&&this.focusOffset==t.focusOffset}setRange(t){let{anchorNode:e,focusNode:i}=t;this.set(e,Math.min(t.anchorOffset,e?ce(e):0),i,Math.min(t.focusOffset,i?ce(i):0))}set(t,e,i,n){this.anchorNode=t,this.anchorOffset=e,this.focusNode=i,this.focusOffset=n}}let pe,me=null;function ge(t){if(t.setActive)return t.setActive();if(me)return t.focus(me);let e=[];for(let i=t;i&&(e.push(i,i.scrollTop,i.scrollLeft),i!=i.ownerDocument);i=i.parentNode);if(t.focus(null==me?{get preventScroll(){return me={preventScroll:!0},!0}}:void 0),!me){me=!1;for(let t=0;tMath.max(1,t.scrollHeight-t.clientHeight-4)}function we(t,e){for(let i=t,n=e;;){if(3==i.nodeType&&n>0)return{node:i,offset:n};if(1==i.nodeType&&n>0){if("false"==i.contentEditable)return null;i=i.childNodes[n-1],n=ce(i)}else{if(!i.parentNode||le(i))return null;n=ae(i),i=i.parentNode}}}function ye(t,e){for(let i=t,n=e;;){if(3==i.nodeType&&ne)return i.domBoundsAround(t,e,l);if(c>=t&&-1==n&&(n=a,r=l),l>e&&i.dom.parentNode==this.dom){s=a,o=h;break}h=c,l=c+i.breakAfter}return{from:r,to:o<0?i+this.length:o,startDOM:(n?this.children[n-1].dom.nextSibling:null)||this.dom.firstChild,endDOM:s=0?this.children[s].dom:null}}markDirty(t=!1){this.flags|=2,this.markParentsDirty(t)}markParentsDirty(t){for(let e=this.parent;e;e=e.parent){if(t&&(e.flags|=2),1&e.flags)return;e.flags|=1,t=!1}}setParent(t){this.parent!=t&&(this.parent=t,7&this.flags&&this.markParentsDirty(!0))}setDOM(t){this.dom!=t&&(this.dom&&(this.dom.cmView=null),this.dom=t,t.cmView=this)}get rootView(){for(let t=this;;){let e=t.parent;if(!e)return t;t=e}}replaceChildren(t,e,i=ke){this.markDirty();for(let n=t;nthis.pos||t==this.pos&&(e>0||0==this.i||this.children[this.i-1].breakAfter))return this.off=t-this.pos,this;let i=this.children[--this.i];this.pos-=i.length+i.breakAfter}}}function _e(t,e,i,n,r,s,o,a,l){let{children:h}=t,c=h.length?h[e]:null,O=s.length?s[s.length-1]:null,d=O?O.breakAfter:o;if(!(e==n&&c&&!o&&!d&&s.length<2&&c.merge(i,r,s.length?O:null,0==i,a,l))){if(n0&&(!o&&s.length&&c.merge(i,c.length,s[0],!1,a,0)?c.breakAfter=s.shift().breakAfter:(i2);var Ue={mac:Ye||/Mac/.test(Ze.platform),windows:/Win/.test(Ze.platform),linux:/Linux|X11/.test(Ze.platform),ie:Ae,ie_version:qe?Xe.documentMode||6:We?+We[1]:Ce?+Ce[1]:0,gecko:ze,gecko_version:ze?+(/Firefox\/(\d+)/.exec(Ze.userAgent)||[0,0])[1]:0,chrome:!!Ve,chrome_version:Ve?+Ve[1]:0,ios:Ye,android:/Android\b/.test(Ze.userAgent),webkit:Me,safari:Ee,webkit_version:Me?+(/\bAppleWebKit\/(\d+)/.exec(Ze.userAgent)||[0,0])[1]:0,tabSize:null!=Xe.documentElement.style.tabSize?"tab-size":"-moz-tab-size"};class je extends Pe{constructor(t){super(),this.text=t}get length(){return this.text.length}createDOM(t){this.setDOM(t||document.createTextNode(this.text))}sync(t,e){this.dom||this.createDOM(),this.dom.nodeValue!=this.text&&(e&&e.node==this.dom&&(e.written=!0),this.dom.nodeValue=this.text)}reuseDOM(t){3==t.nodeType&&this.createDOM(t)}merge(t,e,i){return!(8&this.flags||i&&(!(i instanceof je)||this.length-(e-t)+i.length>256||8&i.flags))&&(this.text=this.text.slice(0,t)+(i?i.text:"")+this.text.slice(e),this.markDirty(),!0)}split(t){let e=new je(this.text.slice(t));return this.text=this.text.slice(0,t),this.markDirty(),e.flags|=8&this.flags,e}localPosFromDOM(t,e){return t==this.dom?e:e?this.text.length:0}domAtPos(t){return new xe(this.dom,t)}domBoundsAround(t,e,i){return{from:i,to:i+this.length,startDOM:this.dom,endDOM:this.dom.nextSibling}}coordsAt(t,e){return function(t,e,i){let n=t.nodeValue.length;e>n&&(e=n);let r=e,s=e,o=0;0==e&&i<0||e==n&&i>=0?Ue.chrome||Ue.gecko||(e?(r--,o=1):s=0)?0:a.length-1];Ue.safari&&!o&&0==l.width&&(l=Array.prototype.find.call(a,(t=>t.width))||l);return o?Oe(l,o<0):l||null}(this.dom,t,e)}}class De extends Pe{constructor(t,e=[],i=0){super(),this.mark=t,this.children=e,this.length=i;for(let t of e)t.setParent(this)}setAttrs(t){if(Se(t),this.mark.class&&(t.className=this.mark.class),this.mark.attrs)for(let e in this.mark.attrs)t.setAttribute(e,this.mark.attrs[e]);return t}canReuseDOM(t){return super.canReuseDOM(t)&&!(8&(this.flags|t.flags))}reuseDOM(t){t.nodeName==this.mark.tagName.toUpperCase()&&(this.setDOM(t),this.flags|=6)}sync(t,e){this.dom?4&this.flags&&this.setAttrs(this.dom):this.setDOM(this.setAttrs(document.createElement(this.mark.tagName))),super.sync(t,e)}merge(t,e,i,n,r,s){return(!i||!(!(i instanceof De&&i.mark.eq(this.mark))||t&&r<=0||et&&e.push(i=t&&(n=r),i=o,r++}let s=this.length-t;return this.length=t,n>-1&&(this.children.length=n,this.markDirty()),new De(this.mark,e,s)}domAtPos(t){return Ne(this,t)}coordsAt(t,e){return Be(this,t,e)}}class Ge extends Pe{static create(t,e,i){return new Ge(t,e,i)}constructor(t,e,i){super(),this.widget=t,this.length=e,this.side=i,this.prevWidget=null}split(t){let e=Ge.create(this.widget,this.length-t,this.side);return this.length-=t,e}sync(t){this.dom&&this.widget.updateDOM(this.dom,t)||(this.dom&&this.prevWidget&&this.prevWidget.destroy(this.dom),this.prevWidget=null,this.setDOM(this.widget.toDOM(t)),this.widget.editable||(this.dom.contentEditable="false"))}getSide(){return this.side}merge(t,e,i,n,r,s){return!(i&&(!(i instanceof Ge&&this.widget.compare(i.widget))||t>0&&r<=0||e0)?xe.before(this.dom):xe.after(this.dom,t==this.length)}domBoundsAround(){return null}coordsAt(t,e){let i=this.widget.coordsAt(this.dom,t,e);if(i)return i;let n=this.dom.getClientRects(),r=null;if(!n.length)return null;let s=this.side?this.side<0:t>0;for(let e=s?n.length-1:0;r=n[e],!(t>0?0==e:e==n.length-1||r.top0?xe.before(this.dom):xe.after(this.dom)}localPosFromDOM(){return 0}domBoundsAround(){return null}coordsAt(t){return this.dom.getBoundingClientRect()}get overrideDOMText(){return t.empty}get isHidden(){return!0}}function Ne(t,e){let i=t.dom,{children:n}=t,r=0;for(let t=0;rt&&e0;t--){let e=n[t-1];if(e.dom.parentNode==i)return e.domAtPos(e.length)}for(let t=r;t0&&e instanceof De&&r.length&&(n=r[r.length-1])instanceof De&&n.mark.eq(e.mark)?Ie(n,e.children[0],i-1):(r.push(e),e.setParent(t)),t.length+=e.length}function Be(t,e,i){let n=null,r=-1,s=null,o=-1;!function t(e,a){for(let l=0,h=0;l=a&&(c.children.length?t(c,a-h):(!s||s.isHidden&&i>0)&&(O>a||h==O&&c.getSide()>0)?(s=c,o=a-h):(h-1?1:0)!=r.length-(i&&r.indexOf(i)>-1?1:0))return!1;for(let s of n)if(s!=i&&(-1==r.indexOf(s)||t[s]!==e[s]))return!1;return!0}function Ke(t,e,i){let n=!1;if(e)for(let r in e)i&&r in i||(n=!0,"style"==r?t.style.cssText="":t.removeAttribute(r));if(i)for(let r in i)e&&e[r]==i[r]||(n=!0,"style"==r?t.style.cssText=i[r]:t.setAttribute(r,i[r]));return n}function ti(t){let e=Object.create(null);for(let i=0;i0&&0==this.children[i-1].length;)this.children[--i].destroy();return this.children.length=i,this.markDirty(),this.length=t,e}transferDOM(t){this.dom&&(this.markDirty(),t.setDOM(this.dom),t.prevAttrs=void 0===this.prevAttrs?this.attrs:this.prevAttrs,this.prevAttrs=void 0,this.dom=null)}setDeco(t){Je(this.attrs,t)||(this.dom&&(this.prevAttrs=this.attrs,this.markDirty()),this.attrs=t)}append(t,e){Ie(this,t,e)}addLineDeco(t){let e=t.spec.attributes,i=t.spec.class;e&&(this.attrs=Fe(e,this.attrs||{})),i&&(this.attrs=Fe({class:i},this.attrs||{}))}domAtPos(t){return Ne(this,t)}reuseDOM(t){"DIV"==t.nodeName&&(this.setDOM(t),this.flags|=6)}sync(t,e){var i;this.dom?4&this.flags&&(Se(this.dom),this.dom.className="cm-line",this.prevAttrs=this.attrs?null:void 0):(this.setDOM(document.createElement("div")),this.dom.className="cm-line",this.prevAttrs=this.attrs?null:void 0),void 0!==this.prevAttrs&&(Ke(this.dom,this.prevAttrs,this.attrs),this.dom.classList.add("cm-line"),this.prevAttrs=void 0),super.sync(t,e);let n=this.dom.lastChild;for(;n&&Pe.get(n)instanceof De;)n=n.lastChild;if(!(n&&this.length&&("BR"==n.nodeName||0!=(null===(i=Pe.get(n))||void 0===i?void 0:i.isEditable)||Ue.ios&&this.children.some((t=>t instanceof je))))){let t=document.createElement("BR");t.cmIgnore=!0,this.dom.appendChild(t)}}measureTextSize(){if(0==this.children.length||this.length>20)return null;let t,e=0;for(let i of this.children){if(!(i instanceof je)||/[^ -~]/.test(i.text))return null;let n=se(i.dom);if(1!=n.length)return null;e+=n[0].width,t=n[0].height}return e?{lineHeight:this.dom.getBoundingClientRect().height,charWidth:e/this.length,textHeight:t}:null}coordsAt(t,e){let i=Be(this,t,e);if(!this.children.length&&i&&this.parent){let{heightOracle:t}=this.parent.view.viewState,e=i.bottom-i.top;if(Math.abs(e-t.lineHeight)<2&&t.textHeight=e){if(r instanceof ei)return r;if(s>e)break}n=s+r.breakAfter}return null}}class ii extends Pe{constructor(t,e,i){super(),this.widget=t,this.length=e,this.deco=i,this.breakAfter=0,this.prevWidget=null}merge(t,e,i,n,r,s){return!(i&&(!(i instanceof ii&&this.widget.compare(i.widget))||t>0&&r<=0||e0)}}class ni{eq(t){return!1}updateDOM(t,e){return!1}compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}get estimatedHeight(){return-1}get lineBreaks(){return 0}ignoreEvent(t){return!0}coordsAt(t,e,i){return null}get isHidden(){return!1}get editable(){return!1}destroy(t){}}var ri=function(t){return t[t.Text=0]="Text",t[t.WidgetBefore=1]="WidgetBefore",t[t.WidgetAfter=2]="WidgetAfter",t[t.WidgetRange=3]="WidgetRange",t}(ri||(ri={}));class si extends Pt{constructor(t,e,i,n){super(),this.startSide=t,this.endSide=e,this.widget=i,this.spec=n}get heightRelevant(){return!1}static mark(t){return new oi(t)}static widget(t){let e=Math.max(-1e4,Math.min(1e4,t.side||0)),i=!!t.block;return e+=i&&!t.inlineOrder?e>0?3e8:-4e8:e>0?1e8:-1e8,new li(t,e,e,i,t.widget||null,!1)}static replace(t){let e,i,n=!!t.block;if(t.isBlockGap)e=-5e8,i=4e8;else{let{start:r,end:s}=hi(t,n);e=(r?n?-3e8:-1:5e8)-1,i=1+(s?n?2e8:1:-6e8)}return new li(t,e,i,n,t.widget||null,!0)}static line(t){return new ai(t)}static set(t,e=!1){return Rt.of(t,e)}hasHeight(){return!!this.widget&&this.widget.estimatedHeight>-1}}si.none=Rt.empty;class oi extends si{constructor(t){let{start:e,end:i}=hi(t);super(e?-1:5e8,i?1:-6e8,null,t),this.tagName=t.tagName||"span",this.class=t.class||"",this.attrs=t.attributes||null}eq(t){var e,i;return this==t||t instanceof oi&&this.tagName==t.tagName&&(this.class||(null===(e=this.attrs)||void 0===e?void 0:e.class))==(t.class||(null===(i=t.attrs)||void 0===i?void 0:i.class))&&Je(this.attrs,t.attrs,"class")}range(t,e=t){if(t>=e)throw new RangeError("Mark decorations may not be empty");return super.range(t,e)}}oi.prototype.point=!1;class ai extends si{constructor(t){super(-2e8,-2e8,null,t)}eq(t){return t instanceof ai&&this.spec.class==t.spec.class&&Je(this.spec.attributes,t.spec.attributes)}range(t,e=t){if(e!=t)throw new RangeError("Line decoration ranges must be zero-length");return super.range(t,e)}}ai.prototype.mapMode=y.TrackBefore,ai.prototype.point=!0;class li extends si{constructor(t,e,i,n,r,s){super(e,i,r,t),this.block=n,this.isReplace=s,this.mapMode=n?e<=0?y.TrackBefore:y.TrackAfter:y.TrackDel}get type(){return this.startSide!=this.endSide?ri.WidgetRange:this.startSide<=0?ri.WidgetBefore:ri.WidgetAfter}get heightRelevant(){return this.block||!!this.widget&&(this.widget.estimatedHeight>=5||this.widget.lineBreaks>0)}eq(t){return t instanceof li&&function(t,e){return t==e||!!(t&&e&&t.compare(e))}(this.widget,t.widget)&&this.block==t.block&&this.startSide==t.startSide&&this.endSide==t.endSide}range(t,e=t){if(this.isReplace&&(t>e||t==e&&this.startSide>0&&this.endSide<=0))throw new RangeError("Invalid range for replacement decoration");if(!this.isReplace&&e!=t)throw new RangeError("Widget decorations can only have zero-length ranges");return super.range(t,e)}}function hi(t,e=!1){let{inclusiveStart:i,inclusiveEnd:n}=t;return null==i&&(i=t.inclusive),null==n&&(n=t.inclusive),{start:null!=i?i:e,end:null!=n?n:e}}function ci(t,e,i,n=0){let r=i.length-1;r>=0&&i[r]+n>=t?i[r]=Math.max(i[r],e):i.push(t,e)}li.prototype.point=!0;class Oi{constructor(t,e,i,n){this.doc=t,this.pos=e,this.end=i,this.disallowBlockEffectsFor=n,this.content=[],this.curLine=null,this.breakAtStart=0,this.pendingBuffer=0,this.bufferMarks=[],this.atCursorPos=!0,this.openStart=-1,this.openEnd=-1,this.text="",this.textOff=0,this.cursor=t.iter(),this.skip=e}posCovered(){if(0==this.content.length)return!this.breakAtStart&&this.doc.lineAt(this.pos).from!=this.pos;let t=this.content[this.content.length-1];return!(t.breakAfter||t instanceof ii&&t.deco.endSide<0)}getLine(){return this.curLine||(this.content.push(this.curLine=new ei),this.atCursorPos=!0),this.curLine}flushBuffer(t=this.bufferMarks){this.pendingBuffer&&(this.curLine.append(di(new Le(-1),t),t.length),this.pendingBuffer=0)}addBlockWidget(t){this.flushBuffer(),this.curLine=null,this.content.push(t)}finish(t){this.pendingBuffer&&t<=this.bufferMarks.length?this.flushBuffer():this.pendingBuffer=0,this.posCovered()||t&&this.content.length&&this.content[this.content.length-1]instanceof ii||this.getLine()}buildText(t,e,i){for(;t>0;){if(this.textOff==this.text.length){let{value:e,lineBreak:i,done:n}=this.cursor.next(this.skip);if(this.skip=0,n)throw new Error("Ran out of text content when drawing inline views");if(i){this.posCovered()||this.getLine(),this.content.length?this.content[this.content.length-1].breakAfter=1:this.breakAtStart=1,this.flushBuffer(),this.curLine=null,this.atCursorPos=!0,t--;continue}this.text=e,this.textOff=0}let n=Math.min(this.text.length-this.textOff,t,512);this.flushBuffer(e.slice(e.length-i)),this.getLine().append(di(new je(this.text.slice(this.textOff,this.textOff+n)),e),i),this.atCursorPos=!0,this.textOff+=n,t-=n,i=0}}span(t,e,i,n){this.buildText(e-t,i,n),this.pos=e,this.openStart<0&&(this.openStart=n)}point(t,e,i,n,r,s){if(this.disallowBlockEffectsFor[s]&&i instanceof li){if(i.block)throw new RangeError("Block decorations may not be specified via plugins");if(e>this.doc.lineAt(this.pos).to)throw new RangeError("Decorations that replace line breaks may not be specified via plugins")}let o=e-t;if(i instanceof li)if(i.block)i.startSide>0&&!this.posCovered()&&this.getLine(),this.addBlockWidget(new ii(i.widget||ui.block,o,i));else{let s=Ge.create(i.widget||ui.inline,o,o?0:i.startSide),a=this.atCursorPos&&!s.isEditable&&r<=n.length&&(t0),l=!s.isEditable&&(tn.length||i.startSide<=0),h=this.getLine();2!=this.pendingBuffer||a||s.isEditable||(this.pendingBuffer=0),this.flushBuffer(n),a&&(h.append(di(new Le(1),n),r),r=n.length+Math.max(0,r-n.length)),h.append(di(s,n),r),this.atCursorPos=l,this.pendingBuffer=l?tn.length?1:2:0,this.pendingBuffer&&(this.bufferMarks=n.slice())}else this.doc.lineAt(this.pos).from==this.pos&&this.getLine().addLineDeco(i);o&&(this.textOff+o<=this.text.length?this.textOff+=o:(this.skip+=o-(this.text.length-this.textOff),this.text="",this.textOff=0),this.pos=e),this.openStart<0&&(this.openStart=r)}static build(t,e,i,n,r){let s=new Oi(t,e,i,r);return s.openEnd=Rt.spans(n,e,i,s),s.openStart<0&&(s.openStart=s.openEnd),s.finish(s.openEnd),s}}function di(t,e){for(let i of e)t=new De(i,[t],t.length);return t}class ui extends ni{constructor(t){super(),this.tag=t}eq(t){return t.tag==this.tag}toDOM(){return document.createElement(this.tag)}updateDOM(t){return t.nodeName.toLowerCase()==this.tag}get isHidden(){return!0}}ui.inline=new ui("span"),ui.block=new ui("div");var fi=function(t){return t[t.LTR=0]="LTR",t[t.RTL=1]="RTL",t}(fi||(fi={}));const pi=fi.LTR,mi=fi.RTL;function gi(t){let e=[];for(let i=0;i=e){if(o.level==i)return s;(r<0||(0!=n?n<0?o.frome:t[r].level>o.level))&&(r=s)}}if(r<0)throw new RangeError("Index out of range");return r}}function ki(t,e){if(t.length!=e.length)return!1;for(let i=0;il&&o.push(new xi(l,f.from,d)),Ti(t,f.direction==pi!=!(d%2)?n+1:n,r,f.inner,f.from,f.to,o),l=f.to}u=f.to}else{if(u==i||(e?Pi[u]!=a:Pi[u]==a))break;u++}O?$i(t,l,u,n+1,r,O,o):le;){let i=!0,c=!1;if(!h||l>s[h-1].to){let t=Pi[l-1];t!=a&&(i=!1,c=16==t)}let O=i||1!=a?null:[],d=i?n:n+1,u=l;t:for(;;)if(h&&u==s[h-1].to){if(c)break t;let f=s[--h];if(!i)for(let t=f.from,i=h;;){if(t==e)break t;if(!i||s[i-1].to!=t){if(Pi[t-1]==a)break t;break}t=s[--i].from}if(O)O.push(f);else{f.to=0;t-=3)if(vi[t+1]==-i){let e=vi[t+2],i=2&e?r:4&e?1&e?s:r:0;i&&(Pi[o]=Pi[vi[t]]=i),a=t;break}}else{if(189==vi.length)break;vi[a++]=o,vi[a++]=e,vi[a++]=l}else if(2==(n=Pi[o])||1==n){let t=n==r;l=t?0:1;for(let e=a-3;e>=0;e-=3){let i=vi[e+2];if(2&i)break;if(t)vi[e+2]|=2;else{if(4&i)break;vi[e+2]|=4}}}}}(t,r,s,n,a),function(t,e,i,n){for(let r=0,s=n;r<=i.length;r++){let o=r?i[r-1].to:t,a=rl;)e==s&&(e=i[--n].from,s=n?i[n-1].to:t),Pi[--e]=c;l=o}else s=o,l++}}}(r,s,n,a),$i(t,r,s,e,i,n,o)}function _i(t){return[new xi(0,t,0)]}let Ri="";function Zi(t,e,i,n,r){var s;let o=n.head-t.from,a=xi.find(e,o,null!==(s=n.bidiLevel)&&void 0!==s?s:-1,n.assoc),l=e[a],h=l.side(r,i);if(o==h){let t=a+=r?1:-1;if(t<0||t>=e.length)return null;l=e[a=t],o=l.side(!r,i),h=l.side(r,i)}let c=f(t.text,o,l.forward(r,i));(cl.to)&&(c=h),Ri=t.text.slice(Math.min(o,c),Math.max(o,c));let O=a==(r?e.length-1:0)?null:e[a+(r?1:-1)];return O&&c==h&&O.level+(r?0:1)t.some((t=>t))}),Yi=A.define({combine:t=>t.some((t=>t))}),Ui=A.define();class ji{constructor(t,e="nearest",i="nearest",n=5,r=5,s=!1){this.range=t,this.y=e,this.x=i,this.yMargin=n,this.xMargin=r,this.isSnapshot=s}map(t){return t.empty?this:new ji(this.range.map(t),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}clip(t){return this.range.to<=t.doc.length?this:new ji(C.cursor(t.doc.length),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}}const Di=dt.define({map:(t,e)=>t.map(e)}),Gi=dt.define();function Li(t,e,i){let n=t.facet(Ai);n.length?n[0](e):window.onerror?window.onerror(String(e),i,void 0,void 0,e):i?console.error(i+":",e):console.error(e)}const Ni=A.define({combine:t=>!t.length||t[0]});let Ii=0;const Bi=A.define();class Fi{constructor(t,e,i,n,r){this.id=t,this.create=e,this.domEventHandlers=i,this.domEventObservers=n,this.extension=r(this)}static define(t,e){const{eventHandlers:i,eventObservers:n,provide:r,decorations:s}=e||{};return new Fi(Ii++,t,i,n,(t=>{let e=[Bi.of(t)];return s&&e.push(tn.of((e=>{let i=e.plugin(t);return i?s(i):si.none}))),r&&e.push(r(t)),e}))}static fromClass(t,e){return Fi.define((e=>new t(e)),e)}}class Hi{constructor(t){this.spec=t,this.mustUpdate=null,this.value=null}update(t){if(this.value){if(this.mustUpdate){let t=this.mustUpdate;if(this.mustUpdate=null,this.value.update)try{this.value.update(t)}catch(e){if(Li(t.state,e,"CodeMirror plugin crashed"),this.value.destroy)try{this.value.destroy()}catch(t){}this.deactivate()}}}else if(this.spec)try{this.value=this.spec.create(t)}catch(e){Li(t.state,e,"CodeMirror plugin crashed"),this.deactivate()}return this}destroy(t){var e;if(null===(e=this.value)||void 0===e?void 0:e.destroy)try{this.value.destroy()}catch(e){Li(t.state,e,"CodeMirror plugin crashed")}}deactivate(){this.spec=this.value=null}}const Ji=A.define(),Ki=A.define(),tn=A.define(),en=A.define(),nn=A.define(),rn=A.define();function sn(t,e){let i=t.state.facet(rn);if(!i.length)return i;let n=i.map((e=>e instanceof Function?e(t):e)),r=[];return Rt.spans(n,e.from,e.to,{point(){},span(t,i,n,s){let o=t-e.from,a=i-e.from,l=r;for(let t=n.length-1;t>=0;t--,s--){let i,r=n[t].spec.bidiIsolate;if(null==r&&(r=Xi(e.text,o,a)),s>0&&l.length&&(i=l[l.length-1]).to==o&&i.direction==r)i.to=a,l=i.inner;else{let t={from:o,to:a,direction:r,inner:[]};l.push(t),l=t.inner}}}}),r}const on=A.define();function an(t){let e=0,i=0,n=0,r=0;for(let s of t.state.facet(on)){let o=s(t);o&&(null!=o.left&&(e=Math.max(e,o.left)),null!=o.right&&(i=Math.max(i,o.right)),null!=o.top&&(n=Math.max(n,o.top)),null!=o.bottom&&(r=Math.max(r,o.bottom)))}return{left:e,right:i,top:n,bottom:r}}const ln=A.define();class hn{constructor(t,e,i,n){this.fromA=t,this.toA=e,this.fromB=i,this.toB=n}join(t){return new hn(Math.min(this.fromA,t.fromA),Math.max(this.toA,t.toA),Math.min(this.fromB,t.fromB),Math.max(this.toB,t.toB))}addToSet(t){let e=t.length,i=this;for(;e>0;e--){let n=t[e-1];if(!(n.fromA>i.toA)){if(n.toAh)break;r+=2}if(!a)return i;new hn(a.fromA,a.toA,a.fromB,a.toB).addToSet(i),s=a.toA,o=a.toB}}}class cn{constructor(t,e,i){this.view=t,this.state=e,this.transactions=i,this.flags=0,this.startState=t.state,this.changes=k.empty(this.startState.doc.length);for(let t of i)this.changes=this.changes.compose(t.changes);let n=[];this.changes.iterChangedRanges(((t,e,i,r)=>n.push(new hn(t,e,i,r)))),this.changedRanges=n}static create(t,e,i){return new cn(t,e,i)}get viewportChanged(){return(4&this.flags)>0}get heightChanged(){return(2&this.flags)>0}get geometryChanged(){return this.docChanged||(10&this.flags)>0}get focusChanged(){return(1&this.flags)>0}get docChanged(){return!this.changes.empty}get selectionSet(){return this.transactions.some((t=>t.selection))}get empty(){return 0==this.flags&&0==this.transactions.length}}class On extends Pe{get length(){return this.view.state.doc.length}constructor(t){super(),this.view=t,this.decorations=[],this.dynamicDecorationMap=[!1],this.domChanged=null,this.hasComposition=null,this.markedForComposition=new Set,this.editContextFormatting=si.none,this.lastCompositionAfterCursor=!1,this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.forceSelection=!1,this.lastUpdate=Date.now(),this.setDOM(t.contentDOM),this.children=[new ei],this.children[0].setParent(this),this.updateDeco(),this.updateInner([new hn(0,0,0,t.state.doc.length)],0,null)}update(t){var e;let i=t.changedRanges;this.minWidth>0&&i.length&&(i.every((({fromA:t,toA:e})=>ethis.minWidthTo))?(this.minWidthFrom=t.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=t.changes.mapPos(this.minWidthTo,1)):this.minWidth=this.minWidthFrom=this.minWidthTo=0),this.updateEditContextFormatting(t);let n=-1;this.view.inputState.composing>=0&&!this.view.observer.editContext&&((null===(e=this.domChanged)||void 0===e?void 0:e.newSel)?n=this.domChanged.newSel.head:function(t,e){let i=!1;e&&t.iterChangedRanges(((t,n)=>{te.from&&(i=!0)}));return i}(t.changes,this.hasComposition)||t.selectionSet||(n=t.state.selection.main.head));let r=n>-1?function(t,e,i){let n=un(t,i);if(!n)return null;let{node:r,from:s,to:o}=n,a=r.nodeValue;if(/[\n\r]/.test(a))return null;if(t.state.doc.sliceString(n.from,n.to)!=a)return null;let l=e.invertedDesc,h=new hn(l.mapPos(s),l.mapPos(o),s,o),c=[];for(let e=r.parentNode;;e=e.parentNode){let i=Pe.get(e);if(i instanceof De)c.push({node:e,deco:i.mark});else{if(i instanceof ei||"DIV"==e.nodeName&&e.parentNode==t.contentDOM)return{range:h,text:r,marks:c,line:e};if(e==t.contentDOM)return null;c.push({node:e,deco:new oi({inclusive:!0,attributes:ti(e),tagName:e.tagName.toLowerCase()})})}}}(this.view,t.changes,n):null;if(this.domChanged=null,this.hasComposition){this.markedForComposition.clear();let{from:e,to:n}=this.hasComposition;i=new hn(e,n,t.changes.mapPos(e,-1),t.changes.mapPos(n,1)).addToSet(i.slice())}this.hasComposition=r?{from:r.range.fromB,to:r.range.toB}:null,(Ue.ie||Ue.chrome)&&!r&&t&&t.state.doc.lines!=t.startState.doc.lines&&(this.forceSelection=!0);let s=function(t,e,i){let n=new fn;return Rt.compare(t,e,i,n),n.changes}(this.decorations,this.updateDeco(),t.changes);return i=hn.extendWithRanges(i,s),!!(7&this.flags||0!=i.length)&&(this.updateInner(i,t.startState.doc.length,r),t.transactions.length&&(this.lastUpdate=Date.now()),!0)}updateInner(t,e,i){this.view.viewState.mustMeasureContent=!0,this.updateChildren(t,e,i);let{observer:n}=this.view;n.ignore((()=>{this.dom.style.height=this.view.viewState.contentHeight/this.view.scaleY+"px",this.dom.style.flexBasis=this.minWidth?this.minWidth+"px":"";let t=Ue.chrome||Ue.ios?{node:n.selectionRange.focusNode,written:!1}:void 0;this.sync(this.view,t),this.flags&=-8,t&&(t.written||n.selectionRange.focusNode!=t.node)&&(this.forceSelection=!0),this.dom.style.height=""})),this.markedForComposition.forEach((t=>t.flags&=-9));let r=[];if(this.view.viewport.from||this.view.viewport.to=0?n[t]:null;if(!e)break;let s,o,a,l,{fromA:h,toA:c,fromB:O,toB:d}=e;if(i&&i.range.fromBO){let t=Oi.build(this.view.state.doc,O,i.range.fromB,this.decorations,this.dynamicDecorationMap),e=Oi.build(this.view.state.doc,i.range.toB,d,this.decorations,this.dynamicDecorationMap);o=t.breakAtStart,a=t.openStart,l=e.openEnd;let n=this.compositionView(i);e.breakAtStart?n.breakAfter=1:e.content.length&&n.merge(n.length,n.length,e.content[0],!1,e.openStart,0)&&(n.breakAfter=e.content[0].breakAfter,e.content.shift()),t.content.length&&n.merge(0,0,t.content[t.content.length-1],!0,0,t.openEnd)&&t.content.pop(),s=t.content.concat(n).concat(e.content)}else({content:s,breakAtStart:o,openStart:a,openEnd:l}=Oi.build(this.view.state.doc,O,d,this.decorations,this.dynamicDecorationMap));let{i:u,off:f}=r.findPos(c,1),{i:p,off:m}=r.findPos(h,-1);_e(this,p,m,u,f,s,o,a,l)}i&&this.fixCompositionDOM(i)}updateEditContextFormatting(t){this.editContextFormatting=this.editContextFormatting.map(t.changes);for(let e of t.transactions)for(let t of e.effects)t.is(Gi)&&(this.editContextFormatting=t.value)}compositionView(t){let e=new je(t.text.nodeValue);e.flags|=8;for(let{deco:i}of t.marks)e=new De(i,[e],e.length);let i=new ei;return i.append(e,0),i}fixCompositionDOM(t){let e=(t,e)=>{e.flags|=8|(e.children.some((t=>7&t.flags))?1:0),this.markedForComposition.add(e);let i=Pe.get(t);i&&i!=e&&(i.dom=null),e.setDOM(t)},i=this.childPos(t.range.fromB,1),n=this.children[i.i];e(t.line,n);for(let r=t.marks.length-1;r>=-1;r--)i=n.childPos(i.off,1),n=n.children[i.i],e(r>=0?t.marks[r].node:t.text,n)}updateSelection(t=!1,e=!1){!t&&this.view.observer.selectionRange.focusNode||this.view.observer.readSelectionRange();let i=this.view.root.activeElement,n=i==this.dom,r=!n&&re(this.dom,this.view.observer.selectionRange)&&!(i&&this.dom.contains(i));if(!(n||e||r))return;let s=this.forceSelection;this.forceSelection=!1;let o=this.view.state.selection.main,a=this.moveToLine(this.domAtPos(o.anchor)),l=o.empty?a:this.moveToLine(this.domAtPos(o.head));if(Ue.gecko&&o.empty&&!this.hasComposition&&(1==(h=a).node.nodeType&&h.node.firstChild&&(0==h.offset||"false"==h.node.childNodes[h.offset-1].contentEditable)&&(h.offset==h.node.childNodes.length||"false"==h.node.childNodes[h.offset].contentEditable))){let t=document.createTextNode("");this.view.observer.ignore((()=>a.node.insertBefore(t,a.node.childNodes[a.offset]||null))),a=l=new xe(t,0),s=!0}var h;let c=this.view.observer.selectionRange;!s&&c.focusNode&&(oe(a.node,a.offset,c.anchorNode,c.anchorOffset)&&oe(l.node,l.offset,c.focusNode,c.focusOffset)||this.suppressWidgetCursorChange(c,o))||(this.view.observer.ignore((()=>{Ue.android&&Ue.chrome&&this.dom.contains(c.focusNode)&&function(t,e){for(let i=t;i&&i!=e;i=i.assignedSlot||i.parentNode)if(1==i.nodeType&&"false"==i.contentEditable)return!0;return!1}(c.focusNode,this.dom)&&(this.dom.blur(),this.dom.focus({preventScroll:!0}));let t=ie(this.view.root);if(t)if(o.empty){if(Ue.gecko){let t=function(t,e){return 1!=t.nodeType?0:(e&&"false"==t.childNodes[e-1].contentEditable?1:0)|(eo.head&&([a,l]=[l,a]),e.setEnd(l.node,l.offset),e.setStart(a.node,a.offset),t.removeAllRanges(),t.addRange(e)}else;r&&this.view.root.activeElement==this.dom&&(this.dom.blur(),i&&i.focus())})),this.view.observer.setSelectionRange(a,l)),this.impreciseAnchor=a.precise?null:new xe(c.anchorNode,c.anchorOffset),this.impreciseHead=l.precise?null:new xe(c.focusNode,c.focusOffset)}suppressWidgetCursorChange(t,e){return this.hasComposition&&e.empty&&oe(t.focusNode,t.focusOffset,t.anchorNode,t.anchorOffset)&&this.posFromDOM(t.focusNode,t.focusOffset)==e.head}enforceCursorAssoc(){if(this.hasComposition)return;let{view:t}=this,e=t.state.selection.main,i=ie(t.root),{anchorNode:n,anchorOffset:r}=t.observer.selectionRange;if(!(i&&e.empty&&e.assoc&&i.modify))return;let s=ei.find(this,e.head);if(!s)return;let o=s.posAtStart;if(e.head==o||e.head==o+s.length)return;let a=this.coordsAt(e.head,-1),l=this.coordsAt(e.head,1);if(!a||!l||a.bottom>l.top)return;let h=this.domAtPos(e.head+e.assoc);i.collapse(h.node,h.offset),i.modify("move",e.assoc<0?"forward":"backward","lineboundary"),t.observer.readSelectionRange();let c=t.observer.selectionRange;t.docView.posFromDOM(c.anchorNode,c.anchorOffset)!=e.from&&i.collapse(n,r)}moveToLine(t){let e,i=this.dom;if(t.node!=i)return t;for(let n=t.offset;!e&&n=0;n--){let t=Pe.get(i.childNodes[n]);t instanceof ei&&(e=t.domAtPos(t.length))}return e?new xe(e.node,e.offset,!0):t}nearest(t){for(let e=t;e;){let t=Pe.get(e);if(t&&t.rootView==this)return t;e=e.parentNode}return null}posFromDOM(t,e){let i=this.nearest(t);if(!i)throw new RangeError("Trying to find position for a DOM position outside of the document");return i.localPosFromDOM(t,e)+i.posAtStart}domAtPos(t){let{i:e,off:i}=this.childCursor().findPos(t,-1);for(;e=0;s--){let o=this.children[s],a=r-o.breakAfter,l=a-o.length;if(at||o.covers(1))&&(!i||o instanceof ei&&!(i instanceof ei&&e>=0)))i=o,n=l;else if(i&&l==t&&a==t&&o instanceof ii&&Math.abs(e)<2){if(o.deco.startSide<0)break;s&&(i=null)}r=l}return i?i.coordsAt(t-n,e):null}coordsForChar(t){let{i:e,off:i}=this.childPos(t,1),n=this.children[e];if(!(n instanceof ei))return null;for(;n.children.length;){let{i:t,off:e}=n.childPos(i,1);for(;;t++){if(t==n.children.length)return null;if((n=n.children[t]).length)break}i=e}if(!(n instanceof je))return null;let r=f(n.text,i);if(r==i)return null;let s=Qe(n.dom,i,r).getClientRects();for(let t=0;tMath.max(this.view.scrollDOM.clientWidth,this.minWidth)+1,o=-1,a=this.view.textDirection==fi.LTR;for(let t=0,l=0;ln)break;if(t>=i){let i=h.dom.getBoundingClientRect();if(e.push(i.height),s){let e=h.dom.lastChild,n=e?se(e):[];if(n.length){let e=n[n.length-1],s=a?e.right-i.left:i.right-e.left;s>o&&(o=s,this.minWidth=r,this.minWidthFrom=t,this.minWidthTo=c)}}}t=c+h.breakAfter}return e}textDirectionAt(t){let{i:e}=this.childPos(t,1);return"rtl"==getComputedStyle(this.children[e].dom).direction?fi.RTL:fi.LTR}measureTextSize(){for(let t of this.children)if(t instanceof ei){let e=t.measureTextSize();if(e)return e}let t,e,i,n=document.createElement("div");return n.className="cm-line",n.style.width="99999px",n.style.position="absolute",n.textContent="abc def ghi jkl mno pqr stu",this.view.observer.ignore((()=>{this.dom.appendChild(n);let r=se(n.firstChild)[0];t=n.getBoundingClientRect().height,e=r?r.width/27:7,i=r?r.height:t,n.remove()})),{lineHeight:t,charWidth:e,textHeight:i}}childCursor(t=this.length){let e=this.children.length;return e&&(t-=this.children[--e].length),new Te(this.children,t,e)}computeBlockGapDeco(){let t=[],e=this.view.viewState;for(let i=0,n=0;;n++){let r=n==e.viewports.length?null:e.viewports[n],s=r?r.from-1:this.length;if(s>i){let n=(e.lineBlockAt(s).bottom-e.lineBlockAt(i).top)/this.view.scaleY;t.push(si.replace({widget:new dn(n),block:!0,inclusive:!0,isBlockGap:!0}).range(i,s))}if(!r)break;i=r.to+1}return si.set(t)}updateDeco(){let t=1,e=this.view.state.facet(tn).map((e=>(this.dynamicDecorationMap[t++]="function"==typeof e)?e(this.view):e)),i=!1,n=this.view.state.facet(en).map(((t,e)=>{let n="function"==typeof t;return n&&(i=!0),n?t(this.view):t}));for(n.length&&(this.dynamicDecorationMap[t++]=i,e.push(Rt.join(n))),this.decorations=[this.editContextFormatting,...e,this.computeBlockGapDeco(),this.view.viewState.lineGapDeco];ti.anchor?-1:1);if(!n)return;!i.empty&&(e=this.coordsAt(i.anchor,i.anchor>i.head?-1:1))&&(n={left:Math.min(n.left,e.left),top:Math.min(n.top,e.top),right:Math.max(n.right,e.right),bottom:Math.max(n.bottom,e.bottom)});let r=an(this.view),s={left:n.left-r.left,top:n.top-r.top,right:n.right+r.right,bottom:n.bottom+r.bottom},{offsetWidth:o,offsetHeight:a}=this.view.scrollDOM;!function(t,e,i,n,r,s,o,a){let l=t.ownerDocument,h=l.defaultView||window;for(let c=t,O=!1;c&&!O;)if(1==c.nodeType){let t,d=c==l.body,u=1,f=1;if(d)t=de(h);else{if(/^(fixed|sticky)$/.test(getComputedStyle(c).position)&&(O=!0),c.scrollHeight<=c.clientHeight&&c.scrollWidth<=c.clientWidth){c=c.assignedSlot||c.parentNode;continue}let e=c.getBoundingClientRect();({scaleX:u,scaleY:f}=ue(c,e)),t={left:e.left,right:e.left+c.clientWidth*u,top:e.top,bottom:e.top+c.clientHeight*f}}let p=0,m=0;if("nearest"==r)e.top0&&e.bottom>t.bottom+m&&(m=e.bottom-t.bottom+m+o)):e.bottom>t.bottom&&(m=e.bottom-t.bottom+o,i<0&&e.top-m0&&e.right>t.right+p&&(p=e.right-t.right+p+s)):e.right>t.right&&(p=e.right-t.right+s,i<0&&e.leftt?e.left-t:Math.max(0,t-e.right)}function mn(t,e){return e.top>t?e.top-t:Math.max(0,t-e.bottom)}function gn(t,e){return t.tope.top+1}function Qn(t,e){return et.bottom?{top:t.top,left:t.left,right:t.right,bottom:e}:t}function Sn(t,e,i){let n,r,s,o,a,l,h,c,O=!1;for(let d=t.firstChild;d;d=d.nextSibling){let t=se(d);for(let u=0;um||o==m&&s>p){n=d,r=f,s=p,o=m;let a=m?i0?u0)}0==p?i>f.bottom&&(!h||h.bottomf.top)&&(l=d,c=f):h&&gn(h,f)?h=bn(h,f.bottom):c&&gn(c,f)&&(c=Qn(c,f.top))}}if(h&&h.bottom>=i?(n=a,r=h):c&&c.top<=i&&(n=l,r=c),!n)return{node:t,offset:0};let d=Math.max(r.left,Math.min(r.right,e));return 3==n.nodeType?vn(n,d,i):O&&"false"!=n.contentEditable?Sn(n,d,i):{node:t,offset:Array.prototype.indexOf.call(t.childNodes,n)+(e>=(r.left+r.right)/2?1:0)}}function vn(t,e,i){let n=t.nodeValue.length,r=-1,s=1e9,o=0;for(let a=0;ai?h.top-i:i-h.bottom)-1;if(h.left-1<=e&&h.right+1>=e&&c=(h.left+h.right)/2,n=i;if(Ue.chrome||Ue.gecko){Qe(t,a).getBoundingClientRect().left==h.right&&(n=!i)}if(c<=0)return{node:t,offset:a+(n?1:0)};r=a+(n?1:0),s=c}}}return{node:t,offset:r>-1?r:o>0?t.nodeValue.length:0}}function wn(t,e,i,n=-1){var r,s;let o,a=t.contentDOM.getBoundingClientRect(),l=a.top+t.viewState.paddingTop,{docHeight:h}=t.viewState,{x:c,y:O}=e,d=O-l;if(d<0)return 0;if(d>h)return t.state.doc.length;for(let e=t.viewState.heightOracle.textHeight/2,r=!1;o=t.elementAtHeight(d),o.type!=ri.Text;)for(;d=n>0?o.bottom+e:o.top-e,!(d>=0&&d<=h);){if(r)return i?null:0;r=!0,n=-n}O=l+d;let u=o.from;if(ut.viewport.to)return t.viewport.to==t.state.doc.length?t.state.doc.length:i?null:yn(t,a,o,c,O);let f=t.dom.ownerDocument,p=t.root.elementFromPoint?t.root:f,m=p.elementFromPoint(c,O);m&&!t.contentDOM.contains(m)&&(m=null),m||(c=Math.max(a.left+1,Math.min(a.right-1,c)),m=p.elementFromPoint(c,O),m&&!t.contentDOM.contains(m)&&(m=null));let g,Q=-1;if(m&&0!=(null===(r=t.docView.nearest(m))||void 0===r?void 0:r.isEditable))if(f.caretPositionFromPoint){let t=f.caretPositionFromPoint(c,O);t&&({offsetNode:g,offset:Q}=t)}else if(f.caretRangeFromPoint){let e=f.caretRangeFromPoint(c,O);e&&(({startContainer:g,startOffset:Q}=e),(!t.contentDOM.contains(g)||Ue.safari&&function(t,e,i){let n;if(3!=t.nodeType||e!=(n=t.nodeValue.length))return!1;for(let e=t.nextSibling;e;e=e.nextSibling)if(1!=e.nodeType||"BR"!=e.nodeName)return!1;return Qe(t,n-1,n).getBoundingClientRect().left>i}(g,Q,c)||Ue.chrome&&function(t,e,i){if(0!=e)return!1;for(let e=t;;){let t=e.parentNode;if(!t||1!=t.nodeType||t.firstChild!=e)return!1;if(t.classList.contains("cm-line"))break;e=t}let n=1==t.nodeType?t.getBoundingClientRect():Qe(t,0,Math.max(t.nodeValue.length,1)).getBoundingClientRect();return i-n.left>5}(g,Q,c))&&(g=void 0))}if(!g||!t.docView.dom.contains(g)){let e=ei.find(t.docView,u);if(!e)return d>o.top+o.height/2?o.to:o.from;({node:g,offset:Q}=Sn(e.dom,c,O))}let b=t.docView.nearest(g);if(!b)return null;if(b.isWidget&&1==(null===(s=b.dom)||void 0===s?void 0:s.nodeType)){let t=b.dom.getBoundingClientRect();return e.y1.5*t.defaultLineHeight){let e=t.viewState.heightOracle.textHeight;s+=Math.floor((r-i.top-.5*(t.defaultLineHeight-e))/e)*t.viewState.heightOracle.lineLength}let o=t.state.sliceDoc(i.from,i.to);return i.from+jt(o,s,t.state.tabSize)}function xn(t,e){let i=t.lineBlockAt(e);if(Array.isArray(i.type))for(let t of i.type)if(t.to>e||t.to==e&&(t.to==i.to||t.type==ri.Text))return t;return i}function kn(t,e,i,n){let r=t.state.doc.lineAt(e.head),s=t.bidiSpans(r),o=t.textDirectionAt(r.from);for(let a=e,l=null;;){let e=Zi(r,s,o,a,i),h=Ri;if(!e){if(r.number==(i?t.state.doc.lines:1))return a;h="\n",r=t.state.doc.line(r.number+(i?1:-1)),s=t.bidiSpans(r),e=t.visualLineSide(r,!i)}if(l){if(!l(h))return a}else{if(!n)return e;l=n(h)}a=e}}function Pn(t,e,i){for(;;){let n=0;for(let r of t)r.between(e-1,e+1,((t,r,s)=>{if(e>t&&ee(t))),i.from,e.head>i.from?-1:1);return n==i.from?i:C.cursor(n,nnull)),Ue.gecko&&function(t){er.has(t)||(er.add(t),t.addEventListener("copy",(()=>{})),t.addEventListener("cut",(()=>{})))}(t.contentDOM.ownerDocument)}handleEvent(t){(function(t,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let i,n=e.target;n!=t.contentDOM;n=n.parentNode)if(!n||11==n.nodeType||(i=Pe.get(n))&&i.ignoreEvent(e))return!1;return!0})(this.view,t)&&!this.ignoreDuringComposition(t)&&("keydown"==t.type&&this.keydown(t)||this.runHandlers(t.type,t))}runHandlers(t,e){let i=this.handlers[t];if(i){for(let t of i.observers)t(this.view,e);for(let t of i.handlers){if(e.defaultPrevented)break;if(t(this.view,e)){e.preventDefault();break}}}}ensureHandlers(t){let e=Rn(t),i=this.handlers,n=this.view.contentDOM;for(let t in e)if("scroll"!=t){let r=!e[t].handlers.length,s=i[t];s&&r!=!s.handlers.length&&(n.removeEventListener(t,this.handleEvent),s=null),s||n.addEventListener(t,this.handleEvent,{passive:r})}for(let t in i)"scroll"==t||e[t]||n.removeEventListener(t,this.handleEvent);this.handlers=e}keydown(t){if(this.lastKeyCode=t.keyCode,this.lastKeyTime=Date.now(),9==t.keyCode&&this.tabFocusMode>-1&&(!this.tabFocusMode||Date.now()<=this.tabFocusMode))return!0;if(this.tabFocusMode>0&&27!=t.keyCode&&Cn.indexOf(t.keyCode)<0&&(this.tabFocusMode=-1),Ue.android&&Ue.chrome&&!t.synthetic&&(13==t.keyCode||8==t.keyCode))return this.view.observer.delayAndroidKey(t.key,t.keyCode),!0;let e;return!Ue.ios||t.synthetic||t.altKey||t.metaKey||!((e=Zn.find((e=>e.keyCode==t.keyCode)))&&!t.ctrlKey||Xn.indexOf(t.key)>-1&&t.ctrlKey&&!t.shiftKey)?(229!=t.keyCode&&this.view.observer.forceFlush(),!1):(this.pendingIOSKey=e||t,setTimeout((()=>this.flushIOSKey()),250),!0)}flushIOSKey(t){let e=this.pendingIOSKey;return!!e&&(!("Enter"==e.key&&t&&t.from0||!!(Ue.safari&&!Ue.ios&&this.compositionPendingKey&&Date.now()-this.compositionEndedAt<100)&&(this.compositionPendingKey=!1,!0))}startMouseSelection(t){this.mouseSelection&&this.mouseSelection.destroy(),this.mouseSelection=t}update(t){this.view.observer.update(t),this.mouseSelection&&this.mouseSelection.update(t),this.draggedContent&&t.docChanged&&(this.draggedContent=this.draggedContent.map(t.changes)),t.transactions.length&&(this.lastKeyCode=this.lastSelectionTime=0)}destroy(){this.mouseSelection&&this.mouseSelection.destroy()}}function _n(t,e){return(i,n)=>{try{return e.call(t,n,i)}catch(t){Li(i.state,t)}}}function Rn(t){let e=Object.create(null);function i(t){return e[t]||(e[t]={observers:[],handlers:[]})}for(let e of t){let t=e.spec;if(t&&t.domEventHandlers)for(let n in t.domEventHandlers){let r=t.domEventHandlers[n];r&&i(n).handlers.push(_n(e.value,r))}if(t&&t.domEventObservers)for(let n in t.domEventObservers){let r=t.domEventObservers[n];r&&i(n).observers.push(_n(e.value,r))}}for(let t in An)i(t).handlers.push(An[t]);for(let t in zn)i(t).observers.push(zn[t]);return e}const Zn=[{key:"Backspace",keyCode:8,inputType:"deleteContentBackward"},{key:"Enter",keyCode:13,inputType:"insertParagraph"},{key:"Enter",keyCode:13,inputType:"insertLineBreak"},{key:"Delete",keyCode:46,inputType:"deleteContentForward"}],Xn="dthko",Cn=[16,17,18,20,91,92,224,225];function qn(t){return.7*Math.max(0,t)+8}class Wn{constructor(t,e,i,n){this.view=t,this.startEvent=e,this.style=i,this.mustSelect=n,this.scrollSpeed={x:0,y:0},this.scrolling=-1,this.lastEvent=e,this.scrollParents=function(t){let e,i,n=t.ownerDocument;for(let r=t.parentNode;r&&!(r==n.body||e&&i);)if(1==r.nodeType)!i&&r.scrollHeight>r.clientHeight&&(i=r),!e&&r.scrollWidth>r.clientWidth&&(e=r),r=r.assignedSlot||r.parentNode;else{if(11!=r.nodeType)break;r=r.host}return{x:e,y:i}}(t.contentDOM),this.atoms=t.state.facet(nn).map((e=>e(t)));let r=t.contentDOM.ownerDocument;r.addEventListener("mousemove",this.move=this.move.bind(this)),r.addEventListener("mouseup",this.up=this.up.bind(this)),this.extend=e.shiftKey,this.multiple=t.state.facet(xt.allowMultipleSelections)&&function(t,e){let i=t.state.facet(Ci);return i.length?i[0](e):Ue.mac?e.metaKey:e.ctrlKey}(t,e),this.dragging=!(!function(t,e){let{main:i}=t.state.selection;if(i.empty)return!1;let n=ie(t.root);if(!n||0==n.rangeCount)return!0;let r=n.getRangeAt(0).getClientRects();for(let t=0;t=e.clientX&&i.top<=e.clientY&&i.bottom>=e.clientY)return!0}return!1}(t,e)||1!=Bn(e))&&null}start(t){!1===this.dragging&&this.select(t)}move(t){if(0==t.buttons)return this.destroy();if(this.dragging||null==this.dragging&&function(t,e){return Math.max(Math.abs(t.clientX-e.clientX),Math.abs(t.clientY-e.clientY))}(this.startEvent,t)<10)return;this.select(this.lastEvent=t);let e=0,i=0,n=0,r=0,s=this.view.win.innerWidth,o=this.view.win.innerHeight;this.scrollParents.x&&({left:n,right:s}=this.scrollParents.x.getBoundingClientRect()),this.scrollParents.y&&({top:r,bottom:o}=this.scrollParents.y.getBoundingClientRect());let a=an(this.view);t.clientX-a.left<=n+6?e=-qn(n-t.clientX):t.clientX+a.right>=s-6&&(e=qn(t.clientX-s)),t.clientY-a.top<=r+6?i=-qn(r-t.clientY):t.clientY+a.bottom>=o-6&&(i=qn(t.clientY-o)),this.setScrollSpeed(e,i)}up(t){null==this.dragging&&this.select(this.lastEvent),this.dragging||t.preventDefault(),this.destroy()}destroy(){this.setScrollSpeed(0,0);let t=this.view.contentDOM.ownerDocument;t.removeEventListener("mousemove",this.move),t.removeEventListener("mouseup",this.up),this.view.inputState.mouseSelection=this.view.inputState.draggedContent=null}setScrollSpeed(t,e){this.scrollSpeed={x:t,y:e},t||e?this.scrolling<0&&(this.scrolling=setInterval((()=>this.scroll()),50)):this.scrolling>-1&&(clearInterval(this.scrolling),this.scrolling=-1)}scroll(){let{x:t,y:e}=this.scrollSpeed;t&&this.scrollParents.x&&(this.scrollParents.x.scrollLeft+=t,t=0),e&&this.scrollParents.y&&(this.scrollParents.y.scrollTop+=e,e=0),(t||e)&&this.view.win.scrollBy(t,e),!1===this.dragging&&this.select(this.lastEvent)}skipAtoms(t){let e=null;for(let i=0;it.isUserEvent("input.type")))?this.destroy():this.style.update(t)&&setTimeout((()=>this.select(this.lastEvent)),20)}}const An=Object.create(null),zn=Object.create(null),Vn=Ue.ie&&Ue.ie_version<15||Ue.ios&&Ue.webkit_version<604;function Mn(t,e){let i,{state:n}=t,r=1,s=n.toText(e),o=s.lines==n.selection.ranges.length,a=null!=Hn&&n.selection.ranges.every((t=>t.empty))&&Hn==s.toString();if(a){let t=-1;i=n.changeByRange((i=>{let a=n.doc.lineAt(i.from);if(a.from==t)return{range:i};t=a.from;let l=n.toText((o?s.line(r++).text:e)+n.lineBreak);return{changes:{from:a.from,insert:l},range:C.cursor(i.from+l.length)}}))}else i=o?n.changeByRange((t=>{let e=s.line(r++);return{changes:{from:t.from,to:t.to,insert:e.text},range:C.cursor(t.from+e.length)}})):n.replaceSelection(s);t.dispatch(i,{userEvent:"input.paste",scrollIntoView:!0})}function En(t,e,i,n){if(1==n)return C.cursor(e,i);if(2==n)return function(t,e,i=1){let n=t.charCategorizer(e),r=t.doc.lineAt(e),s=e-r.from;if(0==r.length)return C.cursor(e);0==s?i=1:s==r.length&&(i=-1);let o=s,a=s;i<0?o=f(r.text,s,!1):a=f(r.text,s);let l=n(r.text.slice(o,a));for(;o>0;){let t=f(r.text,o,!1);if(n(r.text.slice(t,o))!=l)break;o=t}for(;a{t.inputState.lastScrollTop=t.scrollDOM.scrollTop,t.inputState.lastScrollLeft=t.scrollDOM.scrollLeft},An.keydown=(t,e)=>(t.inputState.setSelectionOrigin("select"),27==e.keyCode&&0!=t.inputState.tabFocusMode&&(t.inputState.tabFocusMode=Date.now()+2e3),!1),zn.touchstart=(t,e)=>{t.inputState.lastTouchTime=Date.now(),t.inputState.setSelectionOrigin("select.pointer")},zn.touchmove=t=>{t.inputState.setSelectionOrigin("select.pointer")},An.mousedown=(t,e)=>{if(t.observer.flush(),t.inputState.lastTouchTime>Date.now()-2e3)return!1;let i=null;for(let n of t.state.facet(Wi))if(i=n(t,e),i)break;if(i||0!=e.button||(i=function(t,e){let i=Dn(t,e),n=Bn(e),r=t.state.selection;return{update(t){t.docChanged&&(i.pos=t.changes.mapPos(i.pos),r=r.map(t.changes))},get(e,s,o){let a,l=Dn(t,e),h=En(t,l.pos,l.bias,n);if(i.pos!=l.pos&&!s){let e=En(t,i.pos,i.bias,n),r=Math.min(e.from,h.from),s=Math.max(e.to,h.to);h=r1&&(a=function(t,e){for(let i=0;i=e)return C.create(t.ranges.slice(0,i).concat(t.ranges.slice(i+1)),t.mainIndex==i?0:t.mainIndex-(t.mainIndex>i?1:0))}return null}(r,l.pos))?a:o?r.addRange(h):C.create([h])}}}(t,e)),i){let n=!t.hasFocus;t.inputState.startMouseSelection(new Wn(t,e,i,n)),n&&t.observer.ignore((()=>{ge(t.contentDOM);let e=t.root.activeElement;e&&!e.contains(t.contentDOM)&&e.blur()}));let r=t.inputState.mouseSelection;if(r)return r.start(e),!1===r.dragging}return!1};let Yn=(t,e)=>t>=e.top&&t<=e.bottom,Un=(t,e,i)=>Yn(e,i)&&t>=i.left&&t<=i.right;function jn(t,e,i,n){let r=ei.find(t.docView,e);if(!r)return 1;let s=e-r.posAtStart;if(0==s)return 1;if(s==r.length)return-1;let o=r.coordsAt(s,-1);if(o&&Un(i,n,o))return-1;let a=r.coordsAt(s,1);return a&&Un(i,n,a)?1:o&&Yn(n,o)?-1:1}function Dn(t,e){let i=t.posAtCoords({x:e.clientX,y:e.clientY},!1);return{pos:i,bias:jn(t,i,e.clientX,e.clientY)}}const Gn=Ue.ie&&Ue.ie_version<=11;let Ln=null,Nn=0,In=0;function Bn(t){if(!Gn)return t.detail;let e=Ln,i=In;return Ln=t,In=Date.now(),Nn=!e||i>Date.now()-400&&Math.abs(e.clientX-t.clientX)<2&&Math.abs(e.clientY-t.clientY)<2?(Nn+1)%3:1}function Fn(t,e,i,n){if(!i)return;let r=t.posAtCoords({x:e.clientX,y:e.clientY},!1),{draggedContent:s}=t.inputState,o=n&&s&&function(t,e){let i=t.state.facet(qi);return i.length?i[0](e):Ue.mac?!e.altKey:!e.ctrlKey}(t,e)?{from:s.from,to:s.to}:null,a={from:r,insert:i},l=t.state.changes(o?[o,a]:a);t.focus(),t.dispatch({changes:l,selection:{anchor:l.mapPos(r,-1),head:l.mapPos(r,1)},userEvent:o?"move.drop":"input.drop"}),t.inputState.draggedContent=null}An.dragstart=(t,e)=>{let{selection:{main:i}}=t.state;if(e.target.draggable){let n=t.docView.nearest(e.target);if(n&&n.isWidget){let t=n.posAtStart,e=t+n.length;(t>=i.to||e<=i.from)&&(i=C.range(t,e))}}let{inputState:n}=t;return n.mouseSelection&&(n.mouseSelection.dragging=!0),n.draggedContent=i,e.dataTransfer&&(e.dataTransfer.setData("Text",t.state.sliceDoc(i.from,i.to)),e.dataTransfer.effectAllowed="copyMove"),!1},An.dragend=t=>(t.inputState.draggedContent=null,!1),An.drop=(t,e)=>{if(!e.dataTransfer)return!1;if(t.state.readOnly)return!0;let i=e.dataTransfer.files;if(i&&i.length){let n=Array(i.length),r=0,s=()=>{++r==i.length&&Fn(t,e,n.filter((t=>null!=t)).join(t.state.lineBreak),!1)};for(let t=0;t{/[\x00-\x08\x0e-\x1f]{2}/.test(e.result)||(n[t]=e.result),s()},e.readAsText(i[t])}return!0}{let i=e.dataTransfer.getData("Text");if(i)return Fn(t,e,i,!0),!0}return!1},An.paste=(t,e)=>{if(t.state.readOnly)return!0;t.observer.flush();let i=Vn?null:e.clipboardData;return i?(Mn(t,i.getData("text/plain")||i.getData("text/uri-list")),!0):(function(t){let e=t.dom.parentNode;if(!e)return;let i=e.appendChild(document.createElement("textarea"));i.style.cssText="position: fixed; left: -10000px; top: 10px",i.focus(),setTimeout((()=>{t.focus(),i.remove(),Mn(t,i.value)}),50)}(t),!1)};let Hn=null;An.copy=An.cut=(t,e)=>{let{text:i,ranges:n,linewise:r}=function(t){let e=[],i=[],n=!1;for(let n of t.selection.ranges)n.empty||(e.push(t.sliceDoc(n.from,n.to)),i.push(n));if(!e.length){let r=-1;for(let{from:n}of t.selection.ranges){let s=t.doc.lineAt(n);s.number>r&&(e.push(s.text),i.push({from:s.from,to:Math.min(t.doc.length,s.to+1)})),r=s.number}n=!0}return{text:e.join(t.lineBreak),ranges:i,linewise:n}}(t.state);if(!i&&!r)return!1;Hn=r?i:null,"cut"!=e.type||t.state.readOnly||t.dispatch({changes:n,scrollIntoView:!0,userEvent:"delete.cut"});let s=Vn?null:e.clipboardData;return s?(s.clearData(),s.setData("text/plain",i),!0):(function(t,e){let i=t.dom.parentNode;if(!i)return;let n=i.appendChild(document.createElement("textarea"));n.style.cssText="position: fixed; left: -10000px; top: 10px",n.value=e,n.focus(),n.selectionEnd=e.length,n.selectionStart=0,setTimeout((()=>{n.remove(),t.focus()}),50)}(t,i),!1)};const Jn=ht.define();function Kn(t,e){let i=[];for(let n of t.facet(Mi)){let r=n(t,e);r&&i.push(r)}return i?t.update({effects:i,annotations:Jn.of(!0)}):null}function tr(t){setTimeout((()=>{let e=t.hasFocus;if(e!=t.inputState.notifiedFocused){let i=Kn(t.state,e);i?t.dispatch(i):t.update([])}}),10)}zn.focus=t=>{t.inputState.lastFocusTime=Date.now(),t.scrollDOM.scrollTop||!t.inputState.lastScrollTop&&!t.inputState.lastScrollLeft||(t.scrollDOM.scrollTop=t.inputState.lastScrollTop,t.scrollDOM.scrollLeft=t.inputState.lastScrollLeft),tr(t)},zn.blur=t=>{t.observer.clearSelectionRange(),tr(t)},zn.compositionstart=zn.compositionupdate=t=>{t.observer.editContext||(null==t.inputState.compositionFirstChange&&(t.inputState.compositionFirstChange=!0),t.inputState.composing<0&&(t.inputState.composing=0))},zn.compositionend=t=>{t.observer.editContext||(t.inputState.composing=-1,t.inputState.compositionEndedAt=Date.now(),t.inputState.compositionPendingKey=!0,t.inputState.compositionPendingChange=t.observer.pendingRecords().length>0,t.inputState.compositionFirstChange=null,Ue.chrome&&Ue.android?t.observer.flushSoon():t.inputState.compositionPendingChange?Promise.resolve().then((()=>t.observer.flush())):setTimeout((()=>{t.inputState.composing<0&&t.docView.hasComposition&&t.update([])}),50))},zn.contextmenu=t=>{t.inputState.lastContextMenu=Date.now()},An.beforeinput=(t,e)=>{var i;let n;if(Ue.chrome&&Ue.android&&(n=Zn.find((t=>t.inputType==e.inputType)))&&(t.observer.delayAndroidKey(n.key,n.keyCode),"Backspace"==n.key||"Delete"==n.key)){let e=(null===(i=window.visualViewport)||void 0===i?void 0:i.height)||0;setTimeout((()=>{var i;((null===(i=window.visualViewport)||void 0===i?void 0:i.height)||0)>e+10&&t.hasFocus&&(t.contentDOM.blur(),t.focus())}),100)}return Ue.ios&&"deleteContentForward"==e.inputType&&t.observer.flushSoon(),Ue.safari&&"insertText"==e.inputType&&t.inputState.composing>=0&&setTimeout((()=>zn.compositionend(t,e)),20),!1};const er=new Set;const ir=["pre-wrap","normal","pre-line","break-spaces"];class nr{constructor(e){this.lineWrapping=e,this.doc=t.empty,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.textHeight=14,this.lineLength=30,this.heightChanged=!1}heightForGap(t,e){let i=this.doc.lineAt(e).number-this.doc.lineAt(t).number+1;return this.lineWrapping&&(i+=Math.max(0,Math.ceil((e-t-i*this.lineLength*.5)/this.lineLength))),this.lineHeight*i}heightForLine(t){if(!this.lineWrapping)return this.lineHeight;return(1+Math.max(0,Math.ceil((t-this.lineLength)/(this.lineLength-5))))*this.lineHeight}setDoc(t){return this.doc=t,this}mustRefreshForWrapping(t){return ir.indexOf(t)>-1!=this.lineWrapping}mustRefreshForHeights(t){let e=!1;for(let i=0;i-1,a=Math.round(e)!=Math.round(this.lineHeight)||this.lineWrapping!=o;if(this.lineWrapping=o,this.lineHeight=e,this.charWidth=i,this.textHeight=n,this.lineLength=r,a){this.heightSamples={};for(let t=0;t0}set outdated(t){this.flags=(t?2:0)|-3&this.flags}setHeight(t,e){this.height!=e&&(Math.abs(this.height-e)>ar&&(t.heightChanged=!0),this.height=e)}replace(t,e,i){return lr.of(i)}decomposeLeft(t,e){e.push(this)}decomposeRight(t,e){e.push(this)}applyChanges(t,e,i,n){let r=this,s=i.doc;for(let o=n.length-1;o>=0;o--){let{fromA:a,toA:l,fromB:h,toB:c}=n[o],O=r.lineAt(a,or.ByPosNoHeight,i.setDoc(e),0,0),d=O.to>=l?O:r.lineAt(l,or.ByPosNoHeight,i,0,0);for(c+=d.to-l,l=d.to;o>0&&O.from<=n[o-1].toA;)a=n[o-1].fromA,h=n[o-1].fromB,o--,a2*r){let r=t[e-1];r.break?t.splice(--e,1,r.left,null,r.right):t.splice(--e,1,r.left,r.right),i+=1+r.break,n-=r.size}else{if(!(r>2*n))break;{let e=t[i];e.break?t.splice(i,1,e.left,null,e.right):t.splice(i,1,e.left,e.right),i+=2+e.break,r-=e.size}}else if(n=r&&s(this.blockAt(0,i,n,r))}updateHeight(t,e=0,i=!1,n){return n&&n.from<=e&&n.more&&this.setHeight(t,n.heights[n.index++]),this.outdated=!1,this}toString(){return`block(${this.length})`}}class cr extends hr{constructor(t,e){super(t,e,null),this.collapsed=0,this.widgetHeight=0,this.breaks=0}blockAt(t,e,i,n){return new sr(n,this.length,i,this.height,this.breaks)}replace(t,e,i){let n=i[0];return 1==i.length&&(n instanceof cr||n instanceof Or&&4&n.flags)&&Math.abs(this.length-n.length)<10?(n instanceof Or?n=new cr(n.length,this.height):n.height=this.height,this.outdated||(n.outdated=!1),n):lr.of(i)}updateHeight(t,e=0,i=!1,n){return n&&n.from<=e&&n.more?this.setHeight(t,n.heights[n.index++]):(i||this.outdated)&&this.setHeight(t,Math.max(this.widgetHeight,t.heightForLine(this.length-this.collapsed))+this.breaks*t.lineHeight),this.outdated=!1,this}toString(){return`line(${this.length}${this.collapsed?-this.collapsed:""}${this.widgetHeight?":"+this.widgetHeight:""})`}}class Or extends lr{constructor(t){super(t,0)}heightMetrics(t,e){let i,n=t.doc.lineAt(e).number,r=t.doc.lineAt(e+this.length).number,s=r-n+1,o=0;if(t.lineWrapping){let e=Math.min(this.height,t.lineHeight*s);i=e/s,this.length>s+1&&(o=(this.height-e)/(this.length-s-1))}else i=this.height/s;return{firstLine:n,lastLine:r,perLine:i,perChar:o}}blockAt(t,e,i,n){let{firstLine:r,lastLine:s,perLine:o,perChar:a}=this.heightMetrics(e,n);if(e.lineWrapping){let r=n+(t0){let t=i[i.length-1];t instanceof Or?i[i.length-1]=new Or(t.length+n):i.push(null,new Or(n-1))}if(t>0){let e=i[0];e instanceof Or?i[0]=new Or(t+e.length):i.unshift(new Or(t-1),null)}return lr.of(i)}decomposeLeft(t,e){e.push(new Or(t-1),null)}decomposeRight(t,e){e.push(null,new Or(this.length-t-1))}updateHeight(t,e=0,i=!1,n){let r=e+this.length;if(n&&n.from<=e+this.length&&n.more){let i=[],s=Math.max(e,n.from),o=-1;for(n.from>e&&i.push(new Or(n.from-e-1).updateHeight(t,e));s<=r&&n.more;){let e=t.doc.lineAt(s).length;i.length&&i.push(null);let r=n.heights[n.index++];-1==o?o=r:Math.abs(r-o)>=ar&&(o=-2);let a=new cr(e,r);a.outdated=!1,i.push(a),s+=e+1}s<=r&&i.push(null,new Or(r-s).updateHeight(t,s));let a=lr.of(i);return(o<0||Math.abs(a.height-this.height)>=ar||Math.abs(o-this.heightMetrics(t,e).perLine)>=ar)&&(t.heightChanged=!0),a}return(i||this.outdated)&&(this.setHeight(t,t.heightForGap(e,e+this.length)),this.outdated=!1),this}toString(){return`gap(${this.length})`}}class dr extends lr{constructor(t,e,i){super(t.length+e+i.length,t.height+i.height,e|(t.outdated||i.outdated?2:0)),this.left=t,this.right=i,this.size=t.size+i.size}get break(){return 1&this.flags}blockAt(t,e,i,n){let r=i+this.left.height;return to))return l;let h=e==or.ByPosNoHeight?or.ByPosNoHeight:or.ByPos;return a?l.join(this.right.lineAt(o,h,i,s,o)):this.left.lineAt(o,h,i,n,r).join(l)}forEachLine(t,e,i,n,r,s){let o=n+this.left.height,a=r+this.left.length+this.break;if(this.break)t=a&&this.right.forEachLine(t,e,i,o,a,s);else{let l=this.lineAt(a,or.ByPos,i,n,r);t=t&&l.from<=e&&s(l),e>l.to&&this.right.forEachLine(l.to+1,e,i,o,a,s)}}replace(t,e,i){let n=this.left.length+this.break;if(ethis.left.length)return this.balanced(this.left,this.right.replace(t-n,e-n,i));let r=[];t>0&&this.decomposeLeft(t,r);let s=r.length;for(let t of i)r.push(t);if(t>0&&ur(r,s-1),e=i&&e.push(null)),t>i&&this.right.decomposeLeft(t-i,e)}decomposeRight(t,e){let i=this.left.length,n=i+this.break;if(t>=n)return this.right.decomposeRight(t-n,e);t2*e.size||e.size>2*t.size?lr.of(this.break?[t,null,e]:[t,e]):(this.left=t,this.right=e,this.height=t.height+e.height,this.outdated=t.outdated||e.outdated,this.size=t.size+e.size,this.length=t.length+this.break+e.length,this)}updateHeight(t,e=0,i=!1,n){let{left:r,right:s}=this,o=e+r.length+this.break,a=null;return n&&n.from<=e+r.length&&n.more?a=r=r.updateHeight(t,e,i,n):r.updateHeight(t,e,i),n&&n.from<=o+s.length&&n.more?a=s=s.updateHeight(t,o,i,n):s.updateHeight(t,o,i),a?this.balanced(r,s):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?" ":"-")+this.right}}function ur(t,e){let i,n;null==t[e]&&(i=t[e-1])instanceof Or&&(n=t[e+1])instanceof Or&&t.splice(e-1,3,new Or(i.length+1+n.length))}class fr{constructor(t,e){this.pos=t,this.oracle=e,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=t}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(t,e){if(this.lineStart>-1){let t=Math.min(e,this.lineEnd),i=this.nodes[this.nodes.length-1];i instanceof cr?i.length+=t-this.pos:(t>this.pos||!this.isCovered)&&this.nodes.push(new cr(t-this.pos,-1)),this.writtenTo=t,e>t&&(this.nodes.push(null),this.writtenTo++,this.lineStart=-1)}this.pos=e}point(t,e,i){if(t=5)&&this.addLineDeco(n,r,s)}else e>t&&this.span(t,e);this.lineEnd>-1&&this.lineEnd-1)return;let{from:t,to:e}=this.oracle.doc.lineAt(this.pos);this.lineStart=t,this.lineEnd=e,this.writtenTot&&this.nodes.push(new cr(this.pos-t,-1)),this.writtenTo=this.pos}blankContent(t,e){let i=new Or(e-t);return this.oracle.doc.lineAt(t).to==e&&(i.flags|=4),i}ensureLine(){this.enterLine();let t=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(t instanceof cr)return t;let e=new cr(0,-1);return this.nodes.push(e),e}addBlock(t){this.enterLine();let e=t.deco;e&&e.startSide>0&&!this.isCovered&&this.ensureLine(),this.nodes.push(t),this.writtenTo=this.pos=this.pos+t.length,e&&e.endSide>0&&(this.covering=t)}addLineDeco(t,e,i){let n=this.ensureLine();n.length+=i,n.collapsed+=i,n.widgetHeight=Math.max(n.widgetHeight,t),n.breaks+=e,this.writtenTo=this.pos=this.pos+i}finish(t){let e=0==this.nodes.length?null:this.nodes[this.nodes.length-1];!(this.lineStart>-1)||e instanceof cr||this.isCovered?(this.writtenToi.clientHeight||i.scrollWidth>i.clientWidth)&&"visible"!=n.overflow){let n=i.getBoundingClientRect();s=Math.max(s,n.left),o=Math.min(o,n.right),a=Math.max(a,n.top),l=e==t.parentNode?n.bottom:Math.min(l,n.bottom)}e="absolute"==n.position||"fixed"==n.position?i.offsetParent:i.parentNode}else{if(11!=e.nodeType)break;e=e.host}return{left:s-i.left,right:Math.max(s,o)-i.left,top:a-(i.top+e),bottom:Math.max(a,l)-(i.top+e)}}function gr(t,e){let i=t.getBoundingClientRect();return{left:0,right:i.right-i.left,top:e,bottom:i.bottom-(i.top+e)}}class Qr{constructor(t,e,i){this.from=t,this.to=e,this.size=i}static same(t,e){if(t.length!=e.length)return!1;for(let i=0;i"function"!=typeof t&&"cm-lineWrapping"==t.class));this.heightOracle=new nr(i),this.stateDeco=e.facet(tn).filter((t=>"function"!=typeof t)),this.heightMap=lr.empty().applyChanges(this.stateDeco,t.empty,this.heightOracle.setDoc(e.doc),[new hn(0,0,0,e.doc.length)]);for(let t=0;t<2&&(this.viewport=this.getViewport(0,null),this.updateForViewport());t++);this.updateViewportLines(),this.lineGaps=this.ensureLineGaps([]),this.lineGapDeco=si.set(this.lineGaps.map((t=>t.draw(this,!1)))),this.computeVisibleRanges()}updateForViewport(){let t=[this.viewport],{main:e}=this.state.selection;for(let i=0;i<=1;i++){let n=i?e.head:e.anchor;if(!t.some((({from:t,to:e})=>n>=t&&n<=e))){let{from:e,to:i}=this.lineBlockAt(n);t.push(new vr(e,i))}}return this.viewports=t.sort(((t,e)=>t.from-e.from)),this.updateScaler()}updateScaler(){let t=this.scaler;return this.scaler=this.heightMap.height<=7e6?xr:new kr(this.heightOracle,this.heightMap,this.viewports),t.eq(this.scaler)?0:2}updateViewportLines(){this.viewportLines=[],this.heightMap.forEachLine(this.viewport.from,this.viewport.to,this.heightOracle.setDoc(this.state.doc),0,0,(t=>{this.viewportLines.push(Pr(t,this.scaler))}))}update(t,e=null){this.state=t.state;let i=this.stateDeco;this.stateDeco=this.state.facet(tn).filter((t=>"function"!=typeof t));let n=t.changedRanges,r=hn.extendWithRanges(n,function(t,e,i){let n=new pr;return Rt.compare(t,e,i,n,0),n.changes}(i,this.stateDeco,t?t.changes:k.empty(this.state.doc.length))),s=this.heightMap.height,o=this.scrolledToBottom?null:this.scrollAnchorAt(this.scrollTop);this.heightMap=this.heightMap.applyChanges(this.stateDeco,t.startState.doc,this.heightOracle.setDoc(this.state.doc),r),this.heightMap.height!=s&&(t.flags|=2),o?(this.scrollAnchorPos=t.changes.mapPos(o.from,-1),this.scrollAnchorHeight=o.top):(this.scrollAnchorPos=-1,this.scrollAnchorHeight=this.heightMap.height);let a=r.length?this.mapViewport(this.viewport,t.changes):this.viewport;(e&&(e.range.heada.to)||!this.viewportIsAppropriate(a))&&(a=this.getViewport(0,e));let l=a.from!=this.viewport.from||a.to!=this.viewport.to;this.viewport=a,t.flags|=this.updateForViewport(),(l||!t.changes.empty||2&t.flags)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(this.mapLineGaps(this.lineGaps,t.changes))),t.flags|=this.computeVisibleRanges(),e&&(this.scrollTarget=e),!this.mustEnforceCursorAssoc&&t.selectionSet&&t.view.lineWrapping&&t.state.selection.main.empty&&t.state.selection.main.assoc&&!t.state.facet(Yi)&&(this.mustEnforceCursorAssoc=!0)}measure(e){let i=e.contentDOM,n=window.getComputedStyle(i),r=this.heightOracle,s=n.whiteSpace;this.defaultTextDirection="rtl"==n.direction?fi.RTL:fi.LTR;let o=this.heightOracle.mustRefreshForWrapping(s),a=i.getBoundingClientRect(),l=o||this.mustMeasureContent||this.contentDOMHeight!=a.height;this.contentDOMHeight=a.height,this.mustMeasureContent=!1;let h=0,c=0;if(a.width&&a.height){let{scaleX:t,scaleY:e}=ue(i,a);(t>.005&&Math.abs(this.scaleX-t)>.005||e>.005&&Math.abs(this.scaleY-e)>.005)&&(this.scaleX=t,this.scaleY=e,h|=8,o=l=!0)}let O=(parseInt(n.paddingTop)||0)*this.scaleY,d=(parseInt(n.paddingBottom)||0)*this.scaleY;this.paddingTop==O&&this.paddingBottom==d||(this.paddingTop=O,this.paddingBottom=d,h|=10),this.editorWidth!=e.scrollDOM.clientWidth&&(r.lineWrapping&&(l=!0),this.editorWidth=e.scrollDOM.clientWidth,h|=8);let u=e.scrollDOM.scrollTop*this.scaleY;this.scrollTop!=u&&(this.scrollAnchorHeight=-1,this.scrollTop=u),this.scrolledToBottom=ve(e.scrollDOM);let f=(this.printing?gr:mr)(i,this.paddingTop),p=f.top-this.pixelViewport.top,m=f.bottom-this.pixelViewport.bottom;this.pixelViewport=f;let g=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left;if(g!=this.inView&&(this.inView=g,g&&(l=!0)),!this.inView&&!this.scrollTarget)return 0;let Q=a.width;if(this.contentDOMWidth==Q&&this.editorHeight==e.scrollDOM.clientHeight||(this.contentDOMWidth=a.width,this.editorHeight=e.scrollDOM.clientHeight,h|=8),l){let i=e.docView.measureVisibleLineHeights(this.viewport);if(r.mustRefreshForHeights(i)&&(o=!0),o||r.lineWrapping&&Math.abs(Q-this.contentDOMWidth)>r.charWidth){let{lineHeight:t,charWidth:n,textHeight:a}=e.docView.measureTextSize();o=t>0&&r.refresh(s,t,n,a,Q/n,i),o&&(e.docView.minWidth=0,h|=8)}p>0&&m>0?c=Math.max(p,m):p<0&&m<0&&(c=Math.min(p,m)),r.heightChanged=!1;for(let n of this.viewports){let s=n.from==this.viewport.from?i:e.docView.measureVisibleLineHeights(n);this.heightMap=(o?lr.empty().applyChanges(this.stateDeco,t.empty,this.heightOracle,[new hn(0,0,0,e.state.doc.length)]):this.heightMap).updateHeight(r,0,o,new rr(n.from,s))}r.heightChanged&&(h|=2)}let b=!this.viewportIsAppropriate(this.viewport,c)||this.scrollTarget&&(this.scrollTarget.range.headthis.viewport.to);return b&&(2&h&&(h|=this.updateScaler()),this.viewport=this.getViewport(c,this.scrollTarget),h|=this.updateForViewport()),(2&h||b)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(o?[]:this.lineGaps,e)),h|=this.computeVisibleRanges(),this.mustEnforceCursorAssoc&&(this.mustEnforceCursorAssoc=!1,e.docView.enforceCursorAssoc()),h}get visibleTop(){return this.scaler.fromDOM(this.pixelViewport.top)}get visibleBottom(){return this.scaler.fromDOM(this.pixelViewport.bottom)}getViewport(t,e){let i=.5-Math.max(-.5,Math.min(.5,t/1e3/2)),n=this.heightMap,r=this.heightOracle,{visibleTop:s,visibleBottom:o}=this,a=new vr(n.lineAt(s-1e3*i,or.ByHeight,r,0,0).from,n.lineAt(o+1e3*(1-i),or.ByHeight,r,0,0).to);if(e){let{head:t}=e.range;if(ta.to){let i,s=Math.min(this.editorHeight,this.pixelViewport.bottom-this.pixelViewport.top),o=n.lineAt(t,or.ByPos,r,0,0);i="center"==e.y?(o.top+o.bottom)/2-s/2:"start"==e.y||"nearest"==e.y&&t=o+Math.max(10,Math.min(i,250)))&&n>s-2e3&&r>1,s=n<<1;if(this.defaultTextDirection!=fi.LTR&&!i)return[];let o=[],a=(n,s,l,h)=>{if(s-nn&&tt.from>=l.from&&t.to<=l.to&&Math.abs(t.from-n)t.frome))));if(!d){if(st.from<=s&&t.to>=s))){let t=e.moveToLineBoundary(C.cursor(s),!1,!0).head;t>n&&(s=t)}d=new Qr(n,s,this.gapSize(l,n,s,h))}o.push(d)},l=t=>{if(t.lengthr&&(n.push({from:r,to:t}),s+=t-r),r=e}},20),rt.from&&a(t.from,r,t,e),ot.draw(this,this.heightOracle.lineWrapping)))))}computeVisibleRanges(){let t=this.stateDeco;this.lineGaps.length&&(t=t.concat(this.lineGapDeco));let e=[];Rt.spans(t,this.viewport.from,this.viewport.to,{span(t,i){e.push({from:t,to:i})},point(){}},20);let i=e.length!=this.visibleRanges.length||this.visibleRanges.some(((t,i)=>t.from!=e[i].from||t.to!=e[i].to));return this.visibleRanges=e,i?4:0}lineBlockAt(t){return t>=this.viewport.from&&t<=this.viewport.to&&this.viewportLines.find((e=>e.from<=t&&e.to>=t))||Pr(this.heightMap.lineAt(t,or.ByPos,this.heightOracle,0,0),this.scaler)}lineBlockAtHeight(t){return t>=this.viewportLines[0].top&&t<=this.viewportLines[this.viewportLines.length-1].bottom&&this.viewportLines.find((e=>e.top<=t&&e.bottom>=t))||Pr(this.heightMap.lineAt(this.scaler.fromDOM(t),or.ByHeight,this.heightOracle,0,0),this.scaler)}scrollAnchorAt(t){let e=this.lineBlockAtHeight(t+8);return e.from>=this.viewport.from||this.viewportLines[0].top-t>200?e:this.viewportLines[0]}elementAtHeight(t){return Pr(this.heightMap.blockAt(this.scaler.fromDOM(t),this.heightOracle,0,0),this.scaler)}get docHeight(){return this.scaler.toDOM(this.heightMap.height)}get contentHeight(){return this.docHeight+this.paddingTop+this.paddingBottom}}class vr{constructor(t,e){this.from=t,this.to=e}}function wr({total:t,ranges:e},i){if(i<=0)return e[0].from;if(i>=1)return e[e.length-1].to;let n=Math.floor(t*i);for(let t=0;;t++){let{from:i,to:r}=e[t],s=r-i;if(n<=s)return i+n;n-=s}}function yr(t,e){let i=0;for(let{from:n,to:r}of t.ranges){if(e<=r){i+=e-n;break}i+=r-n}return i/t.total}const xr={toDOM:t=>t,fromDOM:t=>t,scale:1,eq(t){return t==this}};class kr{constructor(t,e,i){let n=0,r=0,s=0;this.viewports=i.map((({from:i,to:r})=>{let s=e.lineAt(i,or.ByPos,t,0,0).top,o=e.lineAt(r,or.ByPos,t,0,0).bottom;return n+=o-s,{from:i,to:r,top:s,bottom:o,domTop:0,domBottom:0}})),this.scale=(7e6-n)/(e.height-n);for(let t of this.viewports)t.domTop=s+(t.top-r)*this.scale,s=t.domBottom=t.domTop+(t.bottom-t.top),r=t.bottom}toDOM(t){for(let e=0,i=0,n=0;;e++){let r=ee.from==t.viewports[i].from&&e.to==t.viewports[i].to)))}}function Pr(t,e){if(1==e.scale)return t;let i=e.toDOM(t.top),n=e.toDOM(t.bottom);return new sr(t.from,t.length,i,n-i,Array.isArray(t._content)?t._content.map((t=>Pr(t,e))):t._content)}const $r=A.define({combine:t=>t.join(" ")}),Tr=A.define({combine:t=>t.indexOf(!0)>-1}),_r=Nt.newName(),Rr=Nt.newName(),Zr=Nt.newName(),Xr={"&light":"."+Rr,"&dark":"."+Zr};function Cr(t,e,i){return new Nt(e,{finish:e=>/&/.test(e)?e.replace(/&\w*/,(e=>{if("&"==e)return t;if(!i||!i[e])throw new RangeError(`Unsupported selector: ${e}`);return i[e]})):t+" "+e})}const qr=Cr("."+_r,{"&":{position:"relative !important",boxSizing:"border-box","&.cm-focused":{outline:"1px dotted #212121"},display:"flex !important",flexDirection:"column"},".cm-scroller":{display:"flex !important",alignItems:"flex-start !important",fontFamily:"monospace",lineHeight:1.4,height:"100%",overflowX:"auto",position:"relative",zIndex:0},".cm-content":{margin:0,flexGrow:2,flexShrink:0,display:"block",whiteSpace:"pre",wordWrap:"normal",boxSizing:"border-box",minHeight:"100%",padding:"4px 0",outline:"none","&[contenteditable=true]":{WebkitUserModify:"read-write-plaintext-only"}},".cm-lineWrapping":{whiteSpace_fallback:"pre-wrap",whiteSpace:"break-spaces",wordBreak:"break-word",overflowWrap:"anywhere",flexShrink:1},"&light .cm-content":{caretColor:"black"},"&dark .cm-content":{caretColor:"white"},".cm-line":{display:"block",padding:"0 2px 0 6px"},".cm-layer":{position:"absolute",left:0,top:0,contain:"size style","& > *":{position:"absolute"}},"&light .cm-selectionBackground":{background:"#d9d9d9"},"&dark .cm-selectionBackground":{background:"#222"},"&light.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#d7d4f0"},"&dark.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#233"},".cm-cursorLayer":{pointerEvents:"none"},"&.cm-focused > .cm-scroller > .cm-cursorLayer":{animation:"steps(1) cm-blink 1.2s infinite"},"@keyframes cm-blink":{"0%":{},"50%":{opacity:0},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{opacity:0},"100%":{}},".cm-cursor, .cm-dropCursor":{borderLeft:"1.2px solid black",marginLeft:"-0.6px",pointerEvents:"none"},".cm-cursor":{display:"none"},"&dark .cm-cursor":{borderLeftColor:"#444"},".cm-dropCursor":{position:"absolute"},"&.cm-focused > .cm-scroller > .cm-cursorLayer .cm-cursor":{display:"block"},".cm-iso":{unicodeBidi:"isolate"},".cm-announced":{position:"fixed",top:"-10000px"},"@media print":{".cm-announced":{display:"none"}},"&light .cm-activeLine":{backgroundColor:"#cceeff44"},"&dark .cm-activeLine":{backgroundColor:"#99eeff33"},"&light .cm-specialChar":{color:"red"},"&dark .cm-specialChar":{color:"#f78"},".cm-gutters":{flexShrink:0,display:"flex",height:"100%",boxSizing:"border-box",insetInlineStart:0,zIndex:200},"&light .cm-gutters":{backgroundColor:"#f5f5f5",color:"#6c6c6c",borderRight:"1px solid #ddd"},"&dark .cm-gutters":{backgroundColor:"#333338",color:"#ccc"},".cm-gutter":{display:"flex !important",flexDirection:"column",flexShrink:0,boxSizing:"border-box",minHeight:"100%",overflow:"hidden"},".cm-gutterElement":{boxSizing:"border-box"},".cm-lineNumbers .cm-gutterElement":{padding:"0 3px 0 5px",minWidth:"20px",textAlign:"right",whiteSpace:"nowrap"},"&light .cm-activeLineGutter":{backgroundColor:"#e2f2ff"},"&dark .cm-activeLineGutter":{backgroundColor:"#222227"},".cm-panels":{boxSizing:"border-box",position:"sticky",left:0,right:0},"&light .cm-panels":{backgroundColor:"#f5f5f5",color:"black"},"&light .cm-panels-top":{borderBottom:"1px solid #ddd"},"&light .cm-panels-bottom":{borderTop:"1px solid #ddd"},"&dark .cm-panels":{backgroundColor:"#333338",color:"white"},".cm-tab":{display:"inline-block",overflow:"hidden",verticalAlign:"bottom"},".cm-widgetBuffer":{verticalAlign:"text-top",height:"1em",width:0,display:"inline"},".cm-placeholder":{color:"#888",display:"inline-block",verticalAlign:"top"},".cm-highlightSpace:before":{content:"attr(data-display)",position:"absolute",pointerEvents:"none",color:"#888"},".cm-highlightTab":{backgroundImage:'url(\'data:image/svg+xml,\')',backgroundSize:"auto 100%",backgroundPosition:"right 90%",backgroundRepeat:"no-repeat"},".cm-trailingSpace":{backgroundColor:"#ff332255"},".cm-button":{verticalAlign:"middle",color:"inherit",fontSize:"70%",padding:".2em 1em",borderRadius:"1px"},"&light .cm-button":{backgroundImage:"linear-gradient(#eff1f5, #d9d9df)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#b4b4b4, #d0d3d6)"}},"&dark .cm-button":{backgroundImage:"linear-gradient(#393939, #111)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#111, #333)"}},".cm-textfield":{verticalAlign:"middle",color:"inherit",fontSize:"70%",border:"1px solid silver",padding:".2em .5em"},"&light .cm-textfield":{backgroundColor:"white"},"&dark .cm-textfield":{border:"1px solid #555",backgroundColor:"inherit"}},Xr),Wr="￿";class Ar{constructor(t,e){this.points=t,this.text="",this.lineSeparator=e.facet(xt.lineSeparator)}append(t){this.text+=t}lineBreak(){this.text+=Wr}readRange(t,e){if(!t)return this;let i=t.parentNode;for(let n=t;;){this.findPointBefore(i,n);let t=this.text.length;this.readNode(n);let r=n.nextSibling;if(r==e)break;let s=Pe.get(n),o=Pe.get(r);(s&&o?s.breakAfter:(s?s.breakAfter:le(n))||le(r)&&("BR"!=n.nodeName||n.cmIgnore)&&this.text.length>t)&&this.lineBreak(),n=r}return this.findPointBefore(i,e),this}readTextNode(t){let e=t.nodeValue;for(let i of this.points)i.node==t&&(i.pos=this.text.length+Math.min(i.offset,e.length));for(let i=0,n=this.lineSeparator?null:/\r\n?|\n/g;;){let r,s=-1,o=1;if(this.lineSeparator?(s=e.indexOf(this.lineSeparator,i),o=this.lineSeparator.length):(r=n.exec(e))&&(s=r.index,o=r[0].length),this.append(e.slice(i,s<0?e.length:s)),s<0)break;if(this.lineBreak(),o>1)for(let e of this.points)e.node==t&&e.pos>this.text.length&&(e.pos-=o-1);i=s+o}}readNode(t){if(t.cmIgnore)return;let e=Pe.get(t),i=e&&e.overrideDOMText;if(null!=i){this.findPointInside(t,i.length);for(let t=i.iter();!t.next().done;)t.lineBreak?this.lineBreak():this.append(t.value)}else 3==t.nodeType?this.readTextNode(t):"BR"==t.nodeName?t.nextSibling&&this.lineBreak():1==t.nodeType&&this.readRange(t.firstChild,null)}findPointBefore(t,e){for(let i of this.points)i.node==t&&t.childNodes[i.offset]==e&&(i.pos=this.text.length)}findPointInside(t,e){for(let i of this.points)(3==t.nodeType?i.node==t:t.contains(i.node))&&(i.pos=this.text.length+(zr(t,i.node,i.offset)?e:0))}}function zr(t,e,i){for(;;){if(!e||i-1;let{impreciseHead:r,impreciseAnchor:s}=t.docView;if(t.state.readOnly&&e>-1)this.newSel=null;else if(e>-1&&(this.bounds=t.docView.domBoundsAround(e,i,0))){let e=r||s?[]:function(t){let e=[];if(t.root.activeElement!=t.contentDOM)return e;let{anchorNode:i,anchorOffset:n,focusNode:r,focusOffset:s}=t.observer.selectionRange;i&&(e.push(new Vr(i,n)),r==i&&s==n||e.push(new Vr(r,s)));return e}(t),i=new Ar(e,t.state);i.readRange(this.bounds.startDOM,this.bounds.endDOM),this.text=i.text,this.newSel=function(t,e){if(0==t.length)return null;let i=t[0].pos,n=2==t.length?t[1].pos:i;return i>-1&&n>-1?C.single(i+e,n+e):null}(e,this.bounds.from)}else{let e=t.observer.selectionRange,i=r&&r.node==e.focusNode&&r.offset==e.focusOffset||!ne(t.contentDOM,e.focusNode)?t.state.selection.main.head:t.docView.posFromDOM(e.focusNode,e.focusOffset),n=s&&s.node==e.anchorNode&&s.offset==e.anchorOffset||!ne(t.contentDOM,e.anchorNode)?t.state.selection.main.anchor:t.docView.posFromDOM(e.anchorNode,e.anchorOffset),o=t.viewport;if((Ue.ios||Ue.chrome)&&t.state.selection.main.empty&&i!=n&&(o.from>0||o.toDate.now()-100?e.inputState.lastKeyCode:-1;if(i.bounds){let{from:r,to:a}=i.bounds,l=s.from,h=null;(8===o||Ue.android&&i.text.length0&&a>0&&t.charCodeAt(o-1)==e.charCodeAt(a-1);)o--,a--;if("end"==n){i-=o+Math.max(0,s-Math.min(o,a))-s}if(o=o?s-i:0,a=s+(a-o),o=s}else if(a=a?s-i:0,o=s+(o-a),a=s}return{from:s,toA:o,toB:a}}(e.state.doc.sliceString(r,a,Wr),i.text,l-r,h);c&&(Ue.chrome&&13==o&&c.toB==c.from+2&&i.text.slice(c.from,c.toB)==Wr+Wr&&c.toB--,n={from:r+c.from,to:r+c.toA,insert:t.of(i.text.slice(c.from,c.toB).split(Wr))})}else r&&(!e.hasFocus&&e.state.facet(Ni)||r.main.eq(s))&&(r=null);if(!n&&!r)return!1;if(!n&&i.typeOver&&!s.empty&&r&&r.main.empty?n={from:s.from,to:s.to,insert:e.state.doc.slice(s.from,s.to)}:n&&n.from>=s.from&&n.to<=s.to&&(n.from!=s.from||n.to!=s.to)&&s.to-s.from-(n.to-n.from)<=4?n={from:s.from,to:s.to,insert:e.state.doc.slice(s.from,n.from).append(n.insert).append(e.state.doc.slice(n.to,s.to))}:(Ue.mac||Ue.android)&&n&&n.from==n.to&&n.from==s.head-1&&/^\. ?$/.test(n.insert.toString())&&"off"==e.contentDOM.getAttribute("autocorrect")?(r&&2==n.insert.length&&(r=C.single(r.main.anchor-1,r.main.head-1)),n={from:s.from,to:s.to,insert:t.of([" "])}):Ue.chrome&&n&&n.from==n.to&&n.from==s.head&&"\n "==n.insert.toString()&&e.lineWrapping&&(r&&(r=C.single(r.main.anchor-1,r.main.head-1)),n={from:s.from,to:s.to,insert:t.of([" "])}),n)return Yr(e,n,r,o);if(r&&!r.main.eq(s)){let t=!1,i="select";return e.inputState.lastSelectionTime>Date.now()-50&&("select"==e.inputState.lastSelectionOrigin&&(t=!0),i=e.inputState.lastSelectionOrigin),e.dispatch({selection:r,scrollIntoView:t,userEvent:i}),!0}return!1}function Yr(t,e,i,n=-1){if(Ue.ios&&t.inputState.flushIOSKey(e))return!0;let r=t.state.selection.main;if(Ue.android&&(e.to==r.to&&(e.from==r.from||e.from==r.from-1&&" "==t.state.sliceDoc(e.from,r.from))&&1==e.insert.length&&2==e.insert.lines&&be(t.contentDOM,"Enter",13)||(e.from==r.from-1&&e.to==r.to&&0==e.insert.length||8==n&&e.insert.lengthr.head)&&be(t.contentDOM,"Backspace",8)||e.from==r.from&&e.to==r.to+1&&0==e.insert.length&&be(t.contentDOM,"Delete",46)))return!0;let s,o=e.insert.toString();t.inputState.composing>=0&&t.inputState.composing++;let a=()=>s||(s=function(t,e,i){let n,r=t.state,s=r.selection.main;if(e.from>=s.from&&e.to<=s.to&&e.to-e.from>=(s.to-s.from)/3&&(!i||i.main.empty&&i.main.from==e.from+e.insert.length)&&t.inputState.composing<0){let i=s.frome.to?r.sliceDoc(e.to,s.to):"";n=r.replaceSelection(t.state.toText(i+e.insert.sliceString(0,void 0,t.state.lineBreak)+o))}else{let o=r.changes(e),a=i&&i.main.to<=o.newLength?i.main:void 0;if(r.selection.ranges.length>1&&t.inputState.composing>=0&&e.to<=s.to&&e.to>=s.to-10){let l,h=t.state.sliceDoc(e.from,e.to),c=i&&un(t,i.main.head);if(c){let t=e.insert.length-(e.to-e.from);l={from:c.from,to:c.to-t}}else l=t.state.doc.lineAt(s.head);let O=s.to-e.to,d=s.to-s.from;n=r.changeByRange((i=>{if(i.from==s.from&&i.to==s.to)return{changes:o,range:a||i.map(o)};let n=i.to-O,c=n-h.length;if(i.to-i.from!=d||t.state.sliceDoc(c,n)!=h||i.to>=l.from&&i.from<=l.to)return{range:i};let u=r.changes({from:c,to:n,insert:e.insert}),f=i.to-s.to;return{changes:u,range:a?C.range(Math.max(0,a.anchor+f),Math.max(0,a.head+f)):i.map(u)}}))}else n={changes:o,selection:a&&r.selection.replaceRange(a)}}let o="input.type";(t.composing||t.inputState.compositionPendingChange&&t.inputState.compositionEndedAt>Date.now()-50)&&(t.inputState.compositionPendingChange=!1,o+=".compose",t.inputState.compositionFirstChange&&(o+=".start",t.inputState.compositionFirstChange=!1));return r.update(n,{userEvent:o,scrollIntoView:!0})}(t,e,i));return t.state.facet(Vi).some((i=>i(t,e.from,e.to,o,a)))||t.dispatch(a()),!0}const Ur={childList:!0,characterData:!0,subtree:!0,attributes:!0,characterDataOldValue:!0},jr=Ue.ie&&Ue.ie_version<=11;class Dr{constructor(t){this.view=t,this.active=!1,this.editContext=null,this.selectionRange=new fe,this.selectionChanged=!1,this.delayedFlush=-1,this.resizeTimeout=-1,this.queue=[],this.delayedAndroidKey=null,this.flushingAndroidKey=-1,this.lastChange=0,this.scrollTargets=[],this.intersection=null,this.resizeScroll=null,this.intersecting=!1,this.gapIntersection=null,this.gaps=[],this.printQuery=null,this.parentCheck=-1,this.dom=t.contentDOM,this.observer=new MutationObserver((e=>{for(let t of e)this.queue.push(t);(Ue.ie&&Ue.ie_version<=11||Ue.ios&&t.composing)&&e.some((t=>"childList"==t.type&&t.removedNodes.length||"characterData"==t.type&&t.oldValue.length>t.target.nodeValue.length))?this.flushSoon():this.flush()})),!window.EditContext||!1===t.constructor.EDIT_CONTEXT||Ue.chrome&&Ue.chrome_version<126||(this.editContext=new Nr(t),t.state.facet(Ni)&&(t.contentDOM.editContext=this.editContext.editContext)),jr&&(this.onCharData=t=>{this.queue.push({target:t.target,type:"characterData",oldValue:t.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.onResize=this.onResize.bind(this),this.onPrint=this.onPrint.bind(this),this.onScroll=this.onScroll.bind(this),window.matchMedia&&(this.printQuery=window.matchMedia("print")),"function"==typeof ResizeObserver&&(this.resizeScroll=new ResizeObserver((()=>{var t;(null===(t=this.view.docView)||void 0===t?void 0:t.lastUpdate){this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),t.length>0&&t[t.length-1].intersectionRatio>0!=this.intersecting&&(this.intersecting=!this.intersecting,this.intersecting!=this.view.inView&&this.onScrollChanged(document.createEvent("Event")))}),{threshold:[0,.001]}),this.intersection.observe(this.dom),this.gapIntersection=new IntersectionObserver((t=>{t.length>0&&t[t.length-1].intersectionRatio>0&&this.onScrollChanged(document.createEvent("Event"))}),{})),this.listenForScroll(),this.readSelectionRange()}onScrollChanged(t){this.view.inputState.runHandlers("scroll",t),this.intersecting&&this.view.measure()}onScroll(t){this.intersecting&&this.flush(!1),this.editContext&&this.view.requestMeasure(this.editContext.measureReq),this.onScrollChanged(t)}onResize(){this.resizeTimeout<0&&(this.resizeTimeout=setTimeout((()=>{this.resizeTimeout=-1,this.view.requestMeasure()}),50))}onPrint(t){("change"!=t.type||t.matches)&&(this.view.viewState.printing=!0,this.view.measure(),setTimeout((()=>{this.view.viewState.printing=!1,this.view.requestMeasure()}),500))}updateGaps(t){if(this.gapIntersection&&(t.length!=this.gaps.length||this.gaps.some(((e,i)=>e!=t[i])))){this.gapIntersection.disconnect();for(let e of t)this.gapIntersection.observe(e);this.gaps=t}}onSelectionChange(t){let e=this.selectionChanged;if(!this.readSelectionRange()||this.delayedAndroidKey)return;let{view:i}=this,n=this.selectionRange;if(i.state.facet(Ni)?i.root.activeElement!=this.dom:!re(i.dom,n))return;let r=n.anchorNode&&i.docView.nearest(n.anchorNode);r&&r.ignoreEvent(t)?e||(this.selectionChanged=!1):(Ue.ie&&Ue.ie_version<=11||Ue.android&&Ue.chrome)&&!i.state.selection.main.empty&&n.focusNode&&oe(n.focusNode,n.focusOffset,n.anchorNode,n.anchorOffset)?this.flushSoon():this.flush(!1)}readSelectionRange(){let{view:t}=this,e=ie(t.root);if(!e)return!1;let i=Ue.safari&&11==t.root.nodeType&&function(t){let e=t.activeElement;for(;e&&e.shadowRoot;)e=e.shadowRoot.activeElement;return e}(this.dom.ownerDocument)==this.dom&&function(t,e){if(e.getComposedRanges){let i=e.getComposedRanges(t.root)[0];if(i)return Lr(t,i)}let i=null;function n(t){t.preventDefault(),t.stopImmediatePropagation(),i=t.getTargetRanges()[0]}return t.contentDOM.addEventListener("beforeinput",n,!0),t.dom.ownerDocument.execCommand("indent"),t.contentDOM.removeEventListener("beforeinput",n,!0),i?Lr(t,i):null}(this.view,e)||e;if(!i||this.selectionRange.eq(i))return!1;let n=re(this.dom,i);return n&&!this.selectionChanged&&t.inputState.lastFocusTime>Date.now()-200&&t.inputState.lastTouchTime{let t=this.delayedAndroidKey;if(t){this.clearDelayedAndroidKey(),this.view.inputState.lastKeyCode=t.keyCode,this.view.inputState.lastKeyTime=Date.now(),!this.flush()&&t.force&&be(this.dom,t.key,t.keyCode)}};this.flushingAndroidKey=this.view.win.requestAnimationFrame(t)}this.delayedAndroidKey&&"Enter"!=t||(this.delayedAndroidKey={key:t,keyCode:e,force:this.lastChange{this.delayedFlush=-1,this.flush()})))}forceFlush(){this.delayedFlush>=0&&(this.view.win.cancelAnimationFrame(this.delayedFlush),this.delayedFlush=-1),this.flush()}pendingRecords(){for(let t of this.observer.takeRecords())this.queue.push(t);return this.queue}processRecords(){let t=this.pendingRecords();t.length&&(this.queue=[]);let e=-1,i=-1,n=!1;for(let r of t){let t=this.readMutation(r);t&&(t.typeOver&&(n=!0),-1==e?({from:e,to:i}=t):(e=Math.min(t.from,e),i=Math.max(t.to,i)))}return{from:e,to:i,typeOver:n}}readChange(){let{from:t,to:e,typeOver:i}=this.processRecords(),n=this.selectionChanged&&re(this.dom,this.selectionRange);if(t<0&&!n)return null;t>-1&&(this.lastChange=Date.now()),this.view.inputState.lastFocusTime=0,this.selectionChanged=!1;let r=new Mr(this.view,t,e,i);return this.view.docView.domChanged={newSel:r.newSel?r.newSel.main:null},r}flush(t=!0){if(this.delayedFlush>=0||this.delayedAndroidKey)return!1;t&&this.readSelectionRange();let e=this.readChange();if(!e)return this.view.requestMeasure(),!1;let i=this.view.state,n=Er(this.view,e);return this.view.state==i&&(e.domChanged||e.newSel&&!e.newSel.main.eq(this.view.state.selection.main))&&this.view.update([]),n}readMutation(t){let e=this.view.docView.nearest(t.target);if(!e||e.ignoreMutation(t))return null;if(e.markDirty("attributes"==t.type),"attributes"==t.type&&(e.flags|=4),"childList"==t.type){let i=Gr(e,t.previousSibling||t.target.previousSibling,-1),n=Gr(e,t.nextSibling||t.target.nextSibling,1);return{from:i?e.posAfter(i):e.posAtStart,to:n?e.posBefore(n):e.posAtEnd,typeOver:!1}}return"characterData"==t.type?{from:e.posAtStart,to:e.posAtEnd,typeOver:t.target.nodeValue==t.oldValue}:null}setWindow(t){t!=this.win&&(this.removeWindowListeners(this.win),this.win=t,this.addWindowListeners(this.win))}addWindowListeners(t){t.addEventListener("resize",this.onResize),this.printQuery?this.printQuery.addEventListener("change",this.onPrint):t.addEventListener("beforeprint",this.onPrint),t.addEventListener("scroll",this.onScroll),t.document.addEventListener("selectionchange",this.onSelectionChange)}removeWindowListeners(t){t.removeEventListener("scroll",this.onScroll),t.removeEventListener("resize",this.onResize),this.printQuery?this.printQuery.removeEventListener("change",this.onPrint):t.removeEventListener("beforeprint",this.onPrint),t.document.removeEventListener("selectionchange",this.onSelectionChange)}update(t){this.editContext&&(this.editContext.update(t),t.startState.facet(Ni)!=t.state.facet(Ni)&&(t.view.contentDOM.editContext=t.state.facet(Ni)?this.editContext.editContext:null))}destroy(){var t,e,i;this.stop(),null===(t=this.intersection)||void 0===t||t.disconnect(),null===(e=this.gapIntersection)||void 0===e||e.disconnect(),null===(i=this.resizeScroll)||void 0===i||i.disconnect();for(let t of this.scrollTargets)t.removeEventListener("scroll",this.onScroll);this.removeWindowListeners(this.win),clearTimeout(this.parentCheck),clearTimeout(this.resizeTimeout),this.win.cancelAnimationFrame(this.delayedFlush),this.win.cancelAnimationFrame(this.flushingAndroidKey),this.editContext&&(this.view.contentDOM.editContext=null,this.editContext.destroy())}}function Gr(t,e,i){for(;e;){let n=Pe.get(e);if(n&&n.parent==t)return n;let r=e.parentNode;e=r!=t.dom?r:i>0?e.nextSibling:e.previousSibling}return null}function Lr(t,e){let i=e.startContainer,n=e.startOffset,r=e.endContainer,s=e.endOffset,o=t.docView.domAtPos(t.state.selection.main.anchor);return oe(o.node,o.offset,r,s)&&([i,n,r,s]=[r,s,i,n]),{anchorNode:i,anchorOffset:n,focusNode:r,focusOffset:s}}class Nr{constructor(e){this.from=0,this.to=0,this.pendingContextChange=null,this.handlers=Object.create(null),this.resetRange(e.state);let i=this.editContext=new window.EditContext({text:e.state.doc.sliceString(this.from,this.to),selectionStart:this.toContextPos(Math.max(this.from,Math.min(this.to,e.state.selection.main.anchor))),selectionEnd:this.toContextPos(e.state.selection.main.head)});this.handlers.textupdate=i=>{let{anchor:n}=e.state.selection.main,r={from:this.toEditorPos(i.updateRangeStart),to:this.toEditorPos(i.updateRangeEnd),insert:t.of(i.text.split("\n"))};r.from==this.from&&nthis.to&&(r.to=n),(r.from!=r.to||r.insert.length)&&(this.pendingContextChange=r,Yr(e,r,C.single(this.toEditorPos(i.selectionStart),this.toEditorPos(i.selectionEnd))),this.pendingContextChange&&(this.revertPending(e.state),this.setSelection(e.state)))},this.handlers.characterboundsupdate=t=>{let n=[],r=null;for(let i=this.toEditorPos(t.rangeStart),s=this.toEditorPos(t.rangeEnd);i{let i=[];for(let e of t.getTextFormats()){let t=e.underlineStyle,n=e.underlineThickness;if("None"!=t&&"None"!=n){let r=`text-decoration: underline ${"Dashed"==t?"dashed ":"Squiggle"==t?"wavy ":""}${"Thin"==n?1:2}px`;i.push(si.mark({attributes:{style:r}}).range(this.toEditorPos(e.rangeStart),this.toEditorPos(e.rangeEnd)))}}e.dispatch({effects:Gi.of(si.set(i))})},this.handlers.compositionstart=()=>{e.inputState.composing<0&&(e.inputState.composing=0,e.inputState.compositionFirstChange=!0)},this.handlers.compositionend=()=>{e.inputState.composing=-1,e.inputState.compositionFirstChange=null};for(let t in this.handlers)i.addEventListener(t,this.handlers[t]);this.measureReq={read:t=>{this.editContext.updateControlBounds(t.contentDOM.getBoundingClientRect());let e=ie(t.root);e&&e.rangeCount&&this.editContext.updateSelectionBounds(e.getRangeAt(0).getBoundingClientRect())}}}applyEdits(t){let e=0,i=!1,n=this.pendingContextChange;return t.changes.iterChanges(((r,s,o,a,l)=>{if(i)return;let h=l.length-(s-r);if(n&&s>=n.to){if(n.from==r&&n.to==s&&n.insert.eq(l))return n=this.pendingContextChange=null,e+=h,void(this.to+=h);n=null,this.revertPending(t.state)}if(r+=e,(s+=e)<=this.from)this.from+=h,this.to+=h;else if(rthis.to||this.to-this.from+l.length>3e4)return void(i=!0);this.editContext.updateText(this.toContextPos(r),this.toContextPos(s),l.toString()),this.to+=h}e+=h})),n&&!i&&this.revertPending(t.state),!i}update(t){let e=this.pendingContextChange;this.applyEdits(t)&&this.rangeIsValid(t.state)?(t.docChanged||t.selectionSet||e)&&this.setSelection(t.state):(this.pendingContextChange=null,this.resetRange(t.state),this.editContext.updateText(0,this.editContext.text.length,t.state.doc.sliceString(this.from,this.to)),this.setSelection(t.state)),(t.geometryChanged||t.docChanged||t.selectionSet)&&t.view.requestMeasure(this.measureReq)}resetRange(t){let{head:e}=t.selection.main;this.from=Math.max(0,e-1e4),this.to=Math.min(t.doc.length,e+1e4)}revertPending(t){let e=this.pendingContextChange;this.pendingContextChange=null,this.editContext.updateText(this.toContextPos(e.from),this.toContextPos(e.from+e.insert.length),t.doc.sliceString(e.from,e.to))}setSelection(t){let{main:e}=t.selection,i=this.toContextPos(Math.max(this.from,Math.min(this.to,e.anchor))),n=this.toContextPos(e.head);this.editContext.selectionStart==i&&this.editContext.selectionEnd==n||this.editContext.updateSelection(i,n)}rangeIsValid(t){let{head:e}=t.selection.main;return!(this.from>0&&e-this.from<500||this.to3e4)}toEditorPos(t){return t+this.from}toContextPos(t){return t-this.from}destroy(){for(let t in this.handlers)this.editContext.removeEventListener(t,this.handlers[t])}}class Ir{get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return this.inputState.composing>0}get compositionStarted(){return this.inputState.composing>=0}get root(){return this._root}get win(){return this.dom.ownerDocument.defaultView||window}constructor(t={}){this.plugins=[],this.pluginMap=new Map,this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.destroyed=!1,this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement("div"),this.scrollDOM=document.createElement("div"),this.scrollDOM.tabIndex=-1,this.scrollDOM.className="cm-scroller",this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement("div"),this.announceDOM.className="cm-announced",this.announceDOM.setAttribute("aria-live","polite"),this.dom=document.createElement("div"),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),t.parent&&t.parent.appendChild(this.dom);let{dispatch:e}=t;this.dispatchTransactions=t.dispatchTransactions||e&&(t=>t.forEach((t=>e(t,this))))||(t=>this.update(t)),this.dispatch=this.dispatch.bind(this),this._root=t.root||function(t){for(;t;){if(t&&(9==t.nodeType||11==t.nodeType&&t.host))return t;t=t.assignedSlot||t.parentNode}return null}(t.parent)||document,this.viewState=new Sr(t.state||xt.create(t)),t.scrollTo&&t.scrollTo.is(Di)&&(this.viewState.scrollTarget=t.scrollTo.value.clip(this.viewState.state)),this.plugins=this.state.facet(Bi).map((t=>new Hi(t)));for(let t of this.plugins)t.update(this);this.observer=new Dr(this),this.inputState=new Tn(this),this.inputState.ensureHandlers(this.plugins),this.docView=new On(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,this.requestMeasure()}dispatch(...t){let e=1==t.length&&t[0]instanceof ut?t:1==t.length&&Array.isArray(t[0])?t[0]:[this.state.update(...t)];this.dispatchTransactions(e,this)}update(t){if(0!=this.updateState)throw new Error("Calls to EditorView.update are not allowed while an update is in progress");let e,i=!1,n=!1,r=this.state;for(let e of t){if(e.startState!=r)throw new RangeError("Trying to update state with a transaction that doesn't start from the previous state.");r=e.state}if(this.destroyed)return void(this.viewState.state=r);let s=this.hasFocus,o=0,a=null;t.some((t=>t.annotation(Jn)))?(this.inputState.notifiedFocused=s,o=1):s!=this.inputState.notifiedFocused&&(this.inputState.notifiedFocused=s,a=Kn(r,s),a||(o=1));let l=this.observer.delayedAndroidKey,h=null;if(l?(this.observer.clearDelayedAndroidKey(),h=this.observer.readChange(),(h&&!this.state.doc.eq(r.doc)||!this.state.selection.eq(r.selection))&&(h=null)):this.observer.clear(),r.facet(xt.phrases)!=this.state.facet(xt.phrases))return this.setState(r);e=cn.create(this,r,t),e.flags|=o;let c=this.viewState.scrollTarget;try{this.updateState=2;for(let e of t){if(c&&(c=c.map(e.changes)),e.scrollIntoView){let{main:t}=e.state.selection;c=new ji(t.empty?t:C.cursor(t.head,t.head>t.anchor?-1:1))}for(let t of e.effects)t.is(Di)&&(c=t.value.clip(this.state))}this.viewState.update(e,c),this.bidiCache=Hr.update(this.bidiCache,e.changes),e.empty||(this.updatePlugins(e),this.inputState.update(e)),i=this.docView.update(e),this.state.facet(ln)!=this.styleModules&&this.mountStyles(),n=this.updateAttrs(),this.showAnnouncements(t),this.docView.updateSelection(i,t.some((t=>t.isUserEvent("select.pointer"))))}finally{this.updateState=0}if(e.startState.facet($r)!=e.state.facet($r)&&(this.viewState.mustMeasureContent=!0),(i||n||c||this.viewState.mustEnforceCursorAssoc||this.viewState.mustMeasureContent)&&this.requestMeasure(),i&&this.docViewUpdate(),!e.empty)for(let t of this.state.facet(zi))try{t(e)}catch(t){Li(this.state,t,"update listener")}(a||h)&&Promise.resolve().then((()=>{a&&this.state==a.startState&&this.dispatch(a),h&&!Er(this,h)&&l.force&&be(this.contentDOM,l.key,l.keyCode)}))}setState(t){if(0!=this.updateState)throw new Error("Calls to EditorView.setState are not allowed while an update is in progress");if(this.destroyed)return void(this.viewState.state=t);this.updateState=2;let e=this.hasFocus;try{for(let t of this.plugins)t.destroy(this);this.viewState=new Sr(t),this.plugins=t.facet(Bi).map((t=>new Hi(t))),this.pluginMap.clear();for(let t of this.plugins)t.update(this);this.docView.destroy(),this.docView=new On(this),this.inputState.ensureHandlers(this.plugins),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}e&&this.focus(),this.requestMeasure()}updatePlugins(t){let e=t.startState.facet(Bi),i=t.state.facet(Bi);if(e!=i){let n=[];for(let r of i){let i=e.indexOf(r);if(i<0)n.push(new Hi(r));else{let e=this.plugins[i];e.mustUpdate=t,n.push(e)}}for(let e of this.plugins)e.mustUpdate!=t&&e.destroy(this);this.plugins=n,this.pluginMap.clear()}else for(let e of this.plugins)e.mustUpdate=t;for(let t=0;t-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.observer.delayedAndroidKey)return this.measureScheduled=-1,void this.requestMeasure();this.measureScheduled=0,t&&this.observer.forceFlush();let e=null,i=this.scrollDOM,n=i.scrollTop*this.scaleY,{scrollAnchorPos:r,scrollAnchorHeight:s}=this.viewState;Math.abs(n-this.viewState.scrollTop)>1&&(s=-1),this.viewState.scrollAnchorHeight=-1;try{for(let t=0;;t++){if(s<0)if(ve(i))r=-1,s=this.viewState.heightMap.height;else{let t=this.viewState.scrollAnchorAt(n);r=t.from,s=t.top}this.updateState=1;let o=this.viewState.measure(this);if(!o&&!this.measureRequests.length&&null==this.viewState.scrollTarget)break;if(t>5){console.warn(this.measureRequests.length?"Measure loop restarted more than 5 times":"Viewport failed to stabilize");break}let a=[];4&o||([this.measureRequests,a]=[a,this.measureRequests]);let l=a.map((t=>{try{return t.read(this)}catch(t){return Li(this.state,t),Fr}})),h=cn.create(this,this.state,[]),c=!1;h.flags|=o,e?e.flags|=o:e=h,this.updateState=2,h.empty||(this.updatePlugins(h),this.inputState.update(h),this.updateAttrs(),c=this.docView.update(h),c&&this.docViewUpdate());for(let t=0;t1||t<-1){n+=t,i.scrollTop=n/this.scaleY,s=-1;continue}}}break}}}finally{this.updateState=0,this.measureScheduled=-1}if(e&&!e.empty)for(let t of this.state.facet(zi))t(e)}get themeClasses(){return _r+" "+(this.state.facet(Tr)?Zr:Rr)+" "+this.state.facet($r)}updateAttrs(){let t=Jr(this,Ji,{class:"cm-editor"+(this.hasFocus?" cm-focused ":" ")+this.themeClasses}),e={spellcheck:"false",autocorrect:"off",autocapitalize:"off",translate:"no",contenteditable:this.state.facet(Ni)?"true":"false",class:"cm-content",style:`${Ue.tabSize}: ${this.state.tabSize}`,role:"textbox","aria-multiline":"true"};this.state.readOnly&&(e["aria-readonly"]="true"),Jr(this,Ki,e);let i=this.observer.ignore((()=>{let i=Ke(this.contentDOM,this.contentAttrs,e),n=Ke(this.dom,this.editorAttrs,t);return i||n}));return this.editorAttrs=t,this.contentAttrs=e,i}showAnnouncements(t){let e=!0;for(let i of t)for(let t of i.effects)if(t.is(Ir.announce)){e&&(this.announceDOM.textContent=""),e=!1,this.announceDOM.appendChild(document.createElement("div")).textContent=t.value}}mountStyles(){this.styleModules=this.state.facet(ln);let t=this.state.facet(Ir.cspNonce);Nt.mount(this.root,this.styleModules.concat(qr).reverse(),t?{nonce:t}:void 0)}readMeasured(){if(2==this.updateState)throw new Error("Reading the editor layout isn't allowed during an update");0==this.updateState&&this.measureScheduled>-1&&this.measure(!1)}requestMeasure(t){if(this.measureScheduled<0&&(this.measureScheduled=this.win.requestAnimationFrame((()=>this.measure()))),t){if(this.measureRequests.indexOf(t)>-1)return;if(null!=t.key)for(let e=0;ee.spec==t))||null),e&&e.update(this).value}get documentTop(){return this.contentDOM.getBoundingClientRect().top+this.viewState.paddingTop}get documentPadding(){return{top:this.viewState.paddingTop,bottom:this.viewState.paddingBottom}}get scaleX(){return this.viewState.scaleX}get scaleY(){return this.viewState.scaleY}elementAtHeight(t){return this.readMeasured(),this.viewState.elementAtHeight(t)}lineBlockAtHeight(t){return this.readMeasured(),this.viewState.lineBlockAtHeight(t)}get viewportLineBlocks(){return this.viewState.viewportLines}lineBlockAt(t){return this.viewState.lineBlockAt(t)}get contentHeight(){return this.viewState.contentHeight}moveByChar(t,e,i){return $n(this,t,kn(this,t,e,i))}moveByGroup(t,e){return $n(this,t,kn(this,t,e,(e=>function(t,e,i){let n=t.state.charCategorizer(e),r=n(i);return t=>{let e=n(t);return r==St.Space&&(r=e),r==e}}(this,t.head,e))))}visualLineSide(t,e){let i=this.bidiSpans(t),n=this.textDirectionAt(t.from),r=i[e?i.length-1:0];return C.cursor(r.side(e,n)+t.from,r.forward(!e,n)?1:-1)}moveToLineBoundary(t,e,i=!0){return function(t,e,i,n){let r=xn(t,e.head),s=n&&r.type==ri.Text&&(t.lineWrapping||r.widgetLineBreaks)?t.coordsAtPos(e.assoc<0&&e.head>r.from?e.head-1:e.head):null;if(s){let e=t.dom.getBoundingClientRect(),n=t.textDirectionAt(r.from),o=t.posAtCoords({x:i==(n==fi.LTR)?e.right-1:e.left+1,y:(s.top+s.bottom)/2});if(null!=o)return C.cursor(o,i?-1:1)}return C.cursor(i?r.to:r.from,i?-1:1)}(this,t,e,i)}moveVertically(t,e,i){return $n(this,t,function(t,e,i,n){let r=e.head,s=i?1:-1;if(r==(i?t.state.doc.length:0))return C.cursor(r,e.assoc);let o,a=e.goalColumn,l=t.contentDOM.getBoundingClientRect(),h=t.coordsAtPos(r,e.assoc||-1),c=t.documentTop;if(h)null==a&&(a=h.left-l.left),o=s<0?h.top:h.bottom;else{let e=t.viewState.lineBlockAt(r);null==a&&(a=Math.min(l.right-l.left,t.defaultCharacterWidth*(r-e.from))),o=(s<0?e.top:e.bottom)+c}let O=l.left+a,d=null!=n?n:t.viewState.heightOracle.textHeight>>1;for(let e=0;;e+=10){let i=o+(d+e)*s,n=wn(t,{x:O,y:i},!1,s);if(il.bottom||(s<0?nr)){let e=t.docView.coordsForChar(n),r=!e||i0)}coordsForChar(t){return this.readMeasured(),this.docView.coordsForChar(t)}get defaultCharacterWidth(){return this.viewState.heightOracle.charWidth}get defaultLineHeight(){return this.viewState.heightOracle.lineHeight}get textDirection(){return this.viewState.defaultTextDirection}textDirectionAt(t){return!this.state.facet(Ei)||tthis.viewport.to?this.textDirection:(this.readMeasured(),this.docView.textDirectionAt(t))}get lineWrapping(){return this.viewState.heightOracle.lineWrapping}bidiSpans(t){if(t.length>Br)return _i(t.length);let e,i=this.textDirectionAt(t.from);for(let n of this.bidiCache)if(n.from==t.from&&n.dir==i&&(n.fresh||ki(n.isolates,e=sn(this,t))))return n.order;e||(e=sn(this,t));let n=function(t,e,i){if(!t)return[new xi(0,0,e==mi?1:0)];if(e==pi&&!i.length&&!yi.test(t))return _i(t.length);if(i.length)for(;t.length>Pi.length;)Pi[Pi.length]=256;let n=[],r=e==pi?0:1;return Ti(t,r,r,i,0,t.length,n),n}(t.text,i,e);return this.bidiCache.push(new Hr(t.from,t.to,i,e,!0,n)),n}get hasFocus(){var t;return(this.dom.ownerDocument.hasFocus()||Ue.safari&&(null===(t=this.inputState)||void 0===t?void 0:t.lastContextMenu)>Date.now()-3e4)&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore((()=>{ge(this.contentDOM),this.docView.updateSelection()}))}setRoot(t){this._root!=t&&(this._root=t,this.observer.setWindow((9==t.nodeType?t:t.ownerDocument).defaultView||window),this.mountStyles())}destroy(){this.root.activeElement==this.contentDOM&&this.contentDOM.blur();for(let t of this.plugins)t.destroy(this);this.plugins=[],this.inputState.destroy(),this.docView.destroy(),this.dom.remove(),this.observer.destroy(),this.measureScheduled>-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.destroyed=!0}static scrollIntoView(t,e={}){return Di.of(new ji("number"==typeof t?C.cursor(t):t,e.y,e.x,e.yMargin,e.xMargin))}scrollSnapshot(){let{scrollTop:t,scrollLeft:e}=this.scrollDOM,i=this.viewState.scrollAnchorAt(t);return Di.of(new ji(C.cursor(i.from),"start","start",i.top-t,e,!0))}setTabFocusMode(t){null==t?this.inputState.tabFocusMode=this.inputState.tabFocusMode<0?0:-1:"boolean"==typeof t?this.inputState.tabFocusMode=t?0:-1:0!=this.inputState.tabFocusMode&&(this.inputState.tabFocusMode=Date.now()+t)}static domEventHandlers(t){return Fi.define((()=>({})),{eventHandlers:t})}static domEventObservers(t){return Fi.define((()=>({})),{eventObservers:t})}static theme(t,e){let i=Nt.newName(),n=[$r.of(i),ln.of(Cr(`.${i}`,t))];return e&&e.dark&&n.push(Tr.of(!0)),n}static baseTheme(t){return B.lowest(ln.of(Cr("."+_r,t,Xr)))}static findFromDOM(t){var e;let i=t.querySelector(".cm-content"),n=i&&Pe.get(i)||Pe.get(t);return(null===(e=null==n?void 0:n.rootView)||void 0===e?void 0:e.view)||null}}Ir.styleModule=ln,Ir.inputHandler=Vi,Ir.scrollHandler=Ui,Ir.focusChangeEffect=Mi,Ir.perLineTextDirection=Ei,Ir.exceptionSink=Ai,Ir.updateListener=zi,Ir.editable=Ni,Ir.mouseSelectionStyle=Wi,Ir.dragMovesSelection=qi,Ir.clickAddsSelectionRange=Ci,Ir.decorations=tn,Ir.outerDecorations=en,Ir.atomicRanges=nn,Ir.bidiIsolatedRanges=rn,Ir.scrollMargins=on,Ir.darkTheme=Tr,Ir.cspNonce=A.define({combine:t=>t.length?t[0]:""}),Ir.contentAttributes=Ki,Ir.editorAttributes=Ji,Ir.lineWrapping=Ir.contentAttributes.of({class:"cm-lineWrapping"}),Ir.announce=dt.define();const Br=4096,Fr={};class Hr{constructor(t,e,i,n,r,s){this.from=t,this.to=e,this.dir=i,this.isolates=n,this.fresh=r,this.order=s}static update(t,e){if(e.empty&&!t.some((t=>t.fresh)))return t;let i=[],n=t.length?t[t.length-1].dir:fi.LTR;for(let r=Math.max(0,t.length-10);r=0;r--){let e=n[r],s="function"==typeof e?e(t):e;s&&Fe(s,i)}return i}const Kr=Ue.mac?"mac":Ue.windows?"win":Ue.linux?"linux":"key";function ts(t,e,i){return e.altKey&&(t="Alt-"+t),e.ctrlKey&&(t="Ctrl-"+t),e.metaKey&&(t="Meta-"+t),!1!==i&&e.shiftKey&&(t="Shift-"+t),t}const es=B.default(Ir.domEventHandlers({keydown:(t,e)=>ls(rs(e.state),t,e,"editor")})),is=A.define({enables:es}),ns=new WeakMap;function rs(t){let e=t.facet(is),i=ns.get(e);return i||ns.set(e,i=function(t,e=Kr){let i=Object.create(null),n=Object.create(null),r=(t,e)=>{let i=n[t];if(null==i)n[t]=e;else if(i!=e)throw new Error("Key binding "+t+" is used both as a regular binding and as a multi-stroke prefix")},s=(t,n,s,o,a)=>{var l,h;let c=i[t]||(i[t]=Object.create(null)),O=n.split(/ (?!$)/).map((t=>function(t,e){const i=t.split(/-(?!$)/);let n,r,s,o,a=i[i.length-1];"Space"==a&&(a=" ");for(let t=0;t{let n=ss={view:e,prefix:i,scope:t};return setTimeout((()=>{ss==n&&(ss=null)}),os),!0}]})}let d=O.join(" ");r(d,!1);let u=c[d]||(c[d]={preventDefault:!1,stopPropagation:!1,run:(null===(h=null===(l=c._any)||void 0===l?void 0:l.run)||void 0===h?void 0:h.slice())||[]});s&&u.run.push(s),o&&(u.preventDefault=!0),a&&(u.stopPropagation=!0)};for(let n of t){let t=n.scope?n.scope.split(" "):["editor"];if(n.any)for(let e of t){let t=i[e]||(i[e]=Object.create(null));t._any||(t._any={preventDefault:!1,stopPropagation:!1,run:[]});let{any:r}=n;for(let e in t)t[e].run.push((t=>r(t,as)))}let r=n[e]||n.key;if(r)for(let e of t)s(e,r,n.run,n.preventDefault,n.stopPropagation),n.shift&&s(e,"Shift-"+r,n.shift,n.preventDefault,n.stopPropagation)}return i}(e.reduce(((t,e)=>t.concat(e)),[]))),i}let ss=null;const os=4e3;let as=null;function ls(t,e,i,n){as=e;let r=function(t){var e=!(Jt&&t.metaKey&&t.shiftKey&&!t.ctrlKey&&!t.altKey||Kt&&t.shiftKey&&t.key&&1==t.key.length||"Unidentified"==t.key)&&t.key||(t.shiftKey?Ht:Ft)[t.keyCode]||t.key||"Unidentified";return"Esc"==e&&(e="Escape"),"Del"==e&&(e="Delete"),"Left"==e&&(e="ArrowLeft"),"Up"==e&&(e="ArrowUp"),"Right"==e&&(e="ArrowRight"),"Down"==e&&(e="ArrowDown"),e}(e),s=v(b(r,0))==r.length&&" "!=r,o="",a=!1,l=!1,h=!1;ss&&ss.view==i&&ss.scope==n&&(o=ss.prefix+" ",Cn.indexOf(e.keyCode)<0&&(l=!0,ss=null));let c,O,d=new Set,u=t=>{if(t){for(let e of t.run)if(!d.has(e)&&(d.add(e),e(i)))return t.stopPropagation&&(h=!0),!0;t.preventDefault&&(t.stopPropagation&&(h=!0),l=!0)}return!1},f=t[n];return f&&(u(f[o+ts(r,e,!s)])?a=!0:s&&(e.altKey||e.metaKey||e.ctrlKey)&&!(Ue.windows&&e.ctrlKey&&e.altKey)&&(c=Ft[e.keyCode])&&c!=r?(u(f[o+ts(c,e,!0)])||e.shiftKey&&(O=Ht[e.keyCode])!=r&&O!=c&&u(f[o+ts(O,e,!1)]))&&(a=!0):s&&e.shiftKey&&u(f[o+ts(r,e,!0)])&&(a=!0),!a&&u(f._any)&&(a=!0)),l&&(a=!0),a&&h&&e.stopPropagation(),as=null,a}class hs{constructor(t,e,i,n,r){this.className=t,this.left=e,this.top=i,this.width=n,this.height=r}draw(){let t=document.createElement("div");return t.className=this.className,this.adjust(t),t}update(t,e){return e.className==this.className&&(this.adjust(t),!0)}adjust(t){t.style.left=this.left+"px",t.style.top=this.top+"px",null!=this.width&&(t.style.width=this.width+"px"),t.style.height=this.height+"px"}eq(t){return this.left==t.left&&this.top==t.top&&this.width==t.width&&this.height==t.height&&this.className==t.className}static forRange(t,e,i){if(i.empty){let n=t.coordsAtPos(i.head,i.assoc||1);if(!n)return[];let r=cs(t);return[new hs(e,n.left-r.left,n.top-r.top,null,n.bottom-n.top)]}return function(t,e,i){if(i.to<=t.viewport.from||i.from>=t.viewport.to)return[];let n=Math.max(i.from,t.viewport.from),r=Math.min(i.to,t.viewport.to),s=t.textDirection==fi.LTR,o=t.contentDOM,a=o.getBoundingClientRect(),l=cs(t),h=o.querySelector(".cm-line"),c=h&&window.getComputedStyle(h),O=a.left+(c?parseInt(c.paddingLeft)+Math.min(0,parseInt(c.textIndent)):0),d=a.right-(c?parseInt(c.paddingRight):0),u=xn(t,n),f=xn(t,r),p=u.type==ri.Text?u:null,m=f.type==ri.Text?f:null;p&&(t.lineWrapping||u.widgetLineBreaks)&&(p=Os(t,n,1,p));m&&(t.lineWrapping||f.widgetLineBreaks)&&(m=Os(t,r,-1,m));if(p&&m&&p.from==m.from&&p.to==m.to)return Q(b(i.from,i.to,p));{let e=p?b(i.from,null,p):S(u,!1),n=m?b(null,i.to,m):S(f,!0),r=[];return(p||u).to<(m||f).from-(p&&m?1:0)||u.widgetLineBreaks>1&&e.bottom+t.defaultLineHeight/2h&&n.from=s)break;a>r&&l(Math.max(t,r),null==e&&t<=h,Math.min(a,s),null==i&&a>=c,o.dir)}if(r=n.to+1,r>=s)break}return 0==a.length&&l(h,null==e,c,null==i,t.textDirection),{top:r,bottom:o,horizontal:a}}function S(t,e){let i=a.top+(e?t.top:t.bottom);return{top:i,bottom:i,horizontal:[]}}}(t,e,i)}}function cs(t){let e=t.scrollDOM.getBoundingClientRect();return{left:(t.textDirection==fi.LTR?e.left:e.right-t.scrollDOM.clientWidth*t.scaleX)-t.scrollDOM.scrollLeft*t.scaleX,top:e.top-t.scrollDOM.scrollTop*t.scaleY}}function Os(t,e,i,n){let r=t.coordsAtPos(e,2*i);if(!r)return n;let s=t.dom.getBoundingClientRect(),o=(r.top+r.bottom)/2,a=t.posAtCoords({x:s.left+1,y:o}),l=t.posAtCoords({x:s.right-1,y:o});return null==a||null==l?n:{from:Math.max(n.from,Math.min(a,l)),to:Math.min(n.to,Math.max(a,l))}}class ds{constructor(t,e){this.view=t,this.layer=e,this.drawn=[],this.scaleX=1,this.scaleY=1,this.measureReq={read:this.measure.bind(this),write:this.draw.bind(this)},this.dom=t.scrollDOM.appendChild(document.createElement("div")),this.dom.classList.add("cm-layer"),e.above&&this.dom.classList.add("cm-layer-above"),e.class&&this.dom.classList.add(e.class),this.scale(),this.dom.setAttribute("aria-hidden","true"),this.setOrder(t.state),t.requestMeasure(this.measureReq),e.mount&&e.mount(this.dom,t)}update(t){t.startState.facet(us)!=t.state.facet(us)&&this.setOrder(t.state),(this.layer.update(t,this.dom)||t.geometryChanged)&&(this.scale(),t.view.requestMeasure(this.measureReq))}docViewUpdate(t){!1!==this.layer.updateOnDocViewUpdate&&t.requestMeasure(this.measureReq)}setOrder(t){let e=0,i=t.facet(us);for(;e!function(t,e){return t.constructor==e.constructor&&t.eq(e)}(t,this.drawn[e])))){let e=this.dom.firstChild,i=0;for(let n of t)n.update&&e&&n.constructor&&this.drawn[i].constructor&&n.update(e,this.drawn[i])?(e=e.nextSibling,i++):this.dom.insertBefore(n.draw(),e);for(;e;){let t=e.nextSibling;e.remove(),e=t}this.drawn=t}}destroy(){this.layer.destroy&&this.layer.destroy(this.dom,this.view),this.dom.remove()}}const us=A.define();function fs(t){return[Fi.define((e=>new ds(e,t))),us.of(t)]}const ps=!Ue.ios,ms=A.define({combine:t=>kt(t,{cursorBlinkRate:1200,drawRangeCursor:!0},{cursorBlinkRate:(t,e)=>Math.min(t,e),drawRangeCursor:(t,e)=>t||e})});function gs(t={}){return[ms.of(t),bs,vs,ys,Yi.of(!0)]}function Qs(t){return t.startState.facet(ms)!=t.state.facet(ms)}const bs=fs({above:!0,markers(t){let{state:e}=t,i=e.facet(ms),n=[];for(let r of e.selection.ranges){let s=r==e.selection.main;if(r.empty?!s||ps:i.drawRangeCursor){let e=s?"cm-cursor cm-cursor-primary":"cm-cursor cm-cursor-secondary",i=r.empty?r:C.cursor(r.head,r.head>r.anchor?-1:1);for(let r of hs.forRange(t,e,i))n.push(r)}}return n},update(t,e){t.transactions.some((t=>t.selection))&&(e.style.animationName="cm-blink"==e.style.animationName?"cm-blink2":"cm-blink");let i=Qs(t);return i&&Ss(t.state,e),t.docChanged||t.selectionSet||i},mount(t,e){Ss(e.state,t)},class:"cm-cursorLayer"});function Ss(t,e){e.style.animationDuration=t.facet(ms).cursorBlinkRate+"ms"}const vs=fs({above:!1,markers:t=>t.state.selection.ranges.map((e=>e.empty?[]:hs.forRange(t,"cm-selectionBackground",e))).reduce(((t,e)=>t.concat(e))),update:(t,e)=>t.docChanged||t.selectionSet||t.viewportChanged||Qs(t),class:"cm-selectionLayer"}),ws={".cm-line":{"& ::selection, &::selection":{backgroundColor:"transparent !important"}},".cm-content":{"& :focus":{caretColor:"initial !important","&::selection, & ::selection":{backgroundColor:"Highlight !important"}}}};ps&&(ws[".cm-line"].caretColor=ws[".cm-content"].caretColor="transparent !important");const ys=B.highest(Ir.theme(ws)),xs=dt.define({map:(t,e)=>null==t?null:e.mapPos(t)}),ks=j.define({create:()=>null,update:(t,e)=>(null!=t&&(t=e.changes.mapPos(t)),e.effects.reduce(((t,e)=>e.is(xs)?e.value:t),t))}),Ps=Fi.fromClass(class{constructor(t){this.view=t,this.cursor=null,this.measureReq={read:this.readPos.bind(this),write:this.drawCursor.bind(this)}}update(t){var e;let i=t.state.field(ks);null==i?null!=this.cursor&&(null===(e=this.cursor)||void 0===e||e.remove(),this.cursor=null):(this.cursor||(this.cursor=this.view.scrollDOM.appendChild(document.createElement("div")),this.cursor.className="cm-dropCursor"),(t.startState.field(ks)!=i||t.docChanged||t.geometryChanged)&&this.view.requestMeasure(this.measureReq))}readPos(){let{view:t}=this,e=t.state.field(ks),i=null!=e&&t.coordsAtPos(e);if(!i)return null;let n=t.scrollDOM.getBoundingClientRect();return{left:i.left-n.left+t.scrollDOM.scrollLeft*t.scaleX,top:i.top-n.top+t.scrollDOM.scrollTop*t.scaleY,height:i.bottom-i.top}}drawCursor(t){if(this.cursor){let{scaleX:e,scaleY:i}=this.view;t?(this.cursor.style.left=t.left/e+"px",this.cursor.style.top=t.top/i+"px",this.cursor.style.height=t.height/i+"px"):this.cursor.style.left="-100000px"}}destroy(){this.cursor&&this.cursor.remove()}setDropPos(t){this.view.state.field(ks)!=t&&this.view.dispatch({effects:xs.of(t)})}},{eventObservers:{dragover(t){this.setDropPos(this.view.posAtCoords({x:t.clientX,y:t.clientY}))},dragleave(t){t.target!=this.view.contentDOM&&this.view.contentDOM.contains(t.relatedTarget)||this.setDropPos(null)},dragend(){this.setDropPos(null)},drop(){this.setDropPos(null)}}});function $s(t,e,i,n,r){e.lastIndex=0;for(let s,o=t.iterRange(i,n),a=i;!o.next().done;a+=o.value.length)if(!o.lineBreak)for(;s=e.exec(o.value);)r(a+s.index,s)}class Ts{constructor(t){const{regexp:e,decoration:i,decorate:n,boundary:r,maxLength:s=1e3}=t;if(!e.global)throw new RangeError("The regular expression given to MatchDecorator should have its 'g' flag set");if(this.regexp=e,n)this.addMatch=(t,e,i,r)=>n(r,i,i+t[0].length,t,e);else if("function"==typeof i)this.addMatch=(t,e,n,r)=>{let s=i(t,e,n);s&&r(n,n+t[0].length,s)};else{if(!i)throw new RangeError("Either 'decorate' or 'decoration' should be provided to MatchDecorator");this.addMatch=(t,e,n,r)=>r(n,n+t[0].length,i)}this.boundary=r,this.maxLength=s}createDeco(t){let e=new Zt,i=e.add.bind(e);for(let{from:e,to:n}of function(t,e){let i=t.visibleRanges;if(1==i.length&&i[0].from==t.viewport.from&&i[0].to==t.viewport.to)return i;let n=[];for(let{from:r,to:s}of i)r=Math.max(t.state.doc.lineAt(r).from,r-e),s=Math.min(t.state.doc.lineAt(s).to,s+e),n.length&&n[n.length-1].to>=r?n[n.length-1].to=s:n.push({from:r,to:s});return n}(t,this.maxLength))$s(t.state.doc,this.regexp,e,n,((e,n)=>this.addMatch(n,t,e,i)));return e.finish()}updateDeco(t,e){let i=1e9,n=-1;return t.docChanged&&t.changes.iterChanges(((e,r,s,o)=>{o>t.view.viewport.from&&s1e3?this.createDeco(t.view):n>-1?this.updateRange(t.view,e.map(t.changes),i,n):e}updateRange(t,e,i,n){for(let r of t.visibleRanges){let s=Math.max(r.from,i),o=Math.min(r.to,n);if(o>s){let i=t.state.doc.lineAt(s),n=i.toi.from;s--)if(this.boundary.test(i.text[s-1-i.from])){a=s;break}for(;oc.push(i.range(t,e));if(i==n)for(this.regexp.lastIndex=a-i.from;(h=this.regexp.exec(i.text))&&h.indexthis.addMatch(i,t,e,O)));e=e.update({filterFrom:a,filterTo:l,filter:(t,e)=>tl,add:c})}}return e}}const _s=null!=/x/.unicode?"gu":"g",Rs=new RegExp("[\0-\b\n--Ÿ­؜​‎‏\u2028\u2029‭‮⁦⁧⁩\ufeff-]",_s),Zs={0:"null",7:"bell",8:"backspace",10:"newline",11:"vertical tab",13:"carriage return",27:"escape",8203:"zero width space",8204:"zero width non-joiner",8205:"zero width joiner",8206:"left-to-right mark",8207:"right-to-left mark",8232:"line separator",8237:"left-to-right override",8238:"right-to-left override",8294:"left-to-right isolate",8295:"right-to-left isolate",8297:"pop directional isolate",8233:"paragraph separator",65279:"zero width no-break space",65532:"object replacement"};let Xs=null;const Cs=A.define({combine(t){let e=kt(t,{render:null,specialChars:Rs,addSpecialChars:null});return(e.replaceTabs=!function(){var t;if(null==Xs&&"undefined"!=typeof document&&document.body){let e=document.body.style;Xs=null!=(null!==(t=e.tabSize)&&void 0!==t?t:e.MozTabSize)}return Xs||!1}())&&(e.specialChars=new RegExp("\t|"+e.specialChars.source,_s)),e.addSpecialChars&&(e.specialChars=new RegExp(e.specialChars.source+"|"+e.addSpecialChars.source,_s)),e}});function qs(t={}){return[Cs.of(t),Ws||(Ws=Fi.fromClass(class{constructor(t){this.view=t,this.decorations=si.none,this.decorationCache=Object.create(null),this.decorator=this.makeDecorator(t.state.facet(Cs)),this.decorations=this.decorator.createDeco(t)}makeDecorator(t){return new Ts({regexp:t.specialChars,decoration:(e,i,n)=>{let{doc:r}=i.state,s=b(e[0],0);if(9==s){let t=r.lineAt(n),e=i.state.tabSize,s=Ut(t.text,e,n-t.from);return si.replace({widget:new zs((e-s%e)*this.view.defaultCharacterWidth/this.view.scaleX)})}return this.decorationCache[s]||(this.decorationCache[s]=si.replace({widget:new As(t,s)}))},boundary:t.replaceTabs?void 0:/[^]/})}update(t){let e=t.state.facet(Cs);t.startState.facet(Cs)!=e?(this.decorator=this.makeDecorator(e),this.decorations=this.decorator.createDeco(t.view)):this.decorations=this.decorator.updateDeco(t,this.decorations)}},{decorations:t=>t.decorations}))]}let Ws=null;class As extends ni{constructor(t,e){super(),this.options=t,this.code=e}eq(t){return t.code==this.code}toDOM(t){let e=function(t){return t>=32?"•":10==t?"␤":String.fromCharCode(9216+t)}(this.code),i=t.state.phrase("Control character")+" "+(Zs[this.code]||"0x"+this.code.toString(16)),n=this.options.render&&this.options.render(this.code,i,e);if(n)return n;let r=document.createElement("span");return r.textContent=e,r.title=i,r.setAttribute("aria-label",i),r.className="cm-specialChar",r}ignoreEvent(){return!1}}class zs extends ni{constructor(t){super(),this.width=t}eq(t){return t.width==this.width}toDOM(){let t=document.createElement("span");return t.textContent="\t",t.className="cm-tab",t.style.width=this.width+"px",t}ignoreEvent(){return!1}}const Vs=si.line({class:"cm-activeLine"}),Ms=Fi.fromClass(class{constructor(t){this.decorations=this.getDeco(t)}update(t){(t.docChanged||t.selectionSet)&&(this.decorations=this.getDeco(t.view))}getDeco(t){let e=-1,i=[];for(let n of t.state.selection.ranges){let r=t.lineBlockAt(n.head);r.from>e&&(i.push(Vs.range(r.from)),e=r.from)}return si.set(i)}},{decorations:t=>t.decorations}),Es=2e3;function Ys(t,e){let i=t.posAtCoords({x:e.clientX,y:e.clientY},!1),n=t.state.doc.lineAt(i),r=i-n.from,s=r>Es?-1:r==n.length?function(t,e){let i=t.coordsAtPos(t.viewport.from);return i?Math.round(Math.abs((i.left-e)/t.defaultCharacterWidth)):-1}(t,e.clientX):Ut(n.text,t.state.tabSize,i-n.from);return{line:n.number,col:s,off:r}}function Us(t,e){let i=Ys(t,e),n=t.state.selection;return i?{update(t){if(t.docChanged){let e=t.changes.mapPos(t.startState.doc.line(i.line).from),r=t.state.doc.lineAt(e);i={line:r.number,col:i.col,off:Math.min(i.off,r.length)},n=n.map(t.changes)}},get(e,r,s){let o=Ys(t,e);if(!o)return n;let a=function(t,e,i){let n=Math.min(e.line,i.line),r=Math.max(e.line,i.line),s=[];if(e.off>Es||i.off>Es||e.col<0||i.col<0){let o=Math.min(e.off,i.off),a=Math.max(e.off,i.off);for(let e=n;e<=r;e++){let i=t.doc.line(e);i.length<=a&&s.push(C.range(i.from+o,i.to+a))}}else{let o=Math.min(e.col,i.col),a=Math.max(e.col,i.col);for(let e=n;e<=r;e++){let i=t.doc.line(e),n=jt(i.text,o,t.tabSize,!0);if(n<0)s.push(C.cursor(i.to));else{let e=jt(i.text,a,t.tabSize);s.push(C.range(i.from+n,i.from+e))}}}return s}(t.state,i,o);return a.length?s?C.create(a.concat(n.ranges)):C.create(a):n}}:null}const js={Alt:[18,t=>!!t.altKey],Control:[17,t=>!!t.ctrlKey],Shift:[16,t=>!!t.shiftKey],Meta:[91,t=>!!t.metaKey]},Ds={style:"cursor: crosshair"};function Gs(t={}){let[e,i]=js[t.key||"Alt"],n=Fi.fromClass(class{constructor(t){this.view=t,this.isDown=!1}set(t){this.isDown!=t&&(this.isDown=t,this.view.update([]))}},{eventObservers:{keydown(t){this.set(t.keyCode==e||i(t))},keyup(t){t.keyCode!=e&&i(t)||this.set(!1)},mousemove(t){this.set(i(t))}}});return[n,Ir.contentAttributes.of((t=>{var e;return(null===(e=t.plugin(n))||void 0===e?void 0:e.isDown)?Ds:null}))]}const Ls="-10000px";class Ns{constructor(t,e,i,n){this.facet=e,this.createTooltipView=i,this.removeTooltipView=n,this.input=t.state.facet(e),this.tooltips=this.input.filter((t=>t));let r=null;this.tooltipViews=this.tooltips.map((t=>r=i(t,r)))}update(t,e){var i;let n=t.state.facet(this.facet),r=n.filter((t=>t));if(n===this.input){for(let e of this.tooltipViews)e.update&&e.update(t);return!1}let s=[],o=e?[]:null;for(let i=0;ie[i]=t)),e.length=o.length),this.input=n,this.tooltips=r,this.tooltipViews=s,!0}}function Is(t){let{win:e}=t;return{top:0,left:0,bottom:e.innerHeight,right:e.innerWidth}}const Bs=A.define({combine:t=>{var e,i,n;return{position:Ue.ios?"absolute":(null===(e=t.find((t=>t.position)))||void 0===e?void 0:e.position)||"fixed",parent:(null===(i=t.find((t=>t.parent)))||void 0===i?void 0:i.parent)||null,tooltipSpace:(null===(n=t.find((t=>t.tooltipSpace)))||void 0===n?void 0:n.tooltipSpace)||Is}}}),Fs=new WeakMap,Hs=Fi.fromClass(class{constructor(t){this.view=t,this.above=[],this.inView=!0,this.madeAbsolute=!1,this.lastTransaction=0,this.measureTimeout=-1;let e=t.state.facet(Bs);this.position=e.position,this.parent=e.parent,this.classes=t.themeClasses,this.createContainer(),this.measureReq={read:this.readMeasure.bind(this),write:this.writeMeasure.bind(this),key:this},this.resizeObserver="function"==typeof ResizeObserver?new ResizeObserver((()=>this.measureSoon())):null,this.manager=new Ns(t,to,((t,e)=>this.createTooltip(t,e)),(t=>{this.resizeObserver&&this.resizeObserver.unobserve(t.dom),t.dom.remove()})),this.above=this.manager.tooltips.map((t=>!!t.above)),this.intersectionObserver="function"==typeof IntersectionObserver?new IntersectionObserver((t=>{Date.now()>this.lastTransaction-50&&t.length>0&&t[t.length-1].intersectionRatio<1&&this.measureSoon()}),{threshold:[1]}):null,this.observeIntersection(),t.win.addEventListener("resize",this.measureSoon=this.measureSoon.bind(this)),this.maybeMeasure()}createContainer(){this.parent?(this.container=document.createElement("div"),this.container.style.position="relative",this.container.className=this.view.themeClasses,this.parent.appendChild(this.container)):this.container=this.view.dom}observeIntersection(){if(this.intersectionObserver){this.intersectionObserver.disconnect();for(let t of this.manager.tooltipViews)this.intersectionObserver.observe(t.dom)}}measureSoon(){this.measureTimeout<0&&(this.measureTimeout=setTimeout((()=>{this.measureTimeout=-1,this.maybeMeasure()}),50))}update(t){t.transactions.length&&(this.lastTransaction=Date.now());let e=this.manager.update(t,this.above);e&&this.observeIntersection();let i=e||t.geometryChanged,n=t.state.facet(Bs);if(n.position!=this.position&&!this.madeAbsolute){this.position=n.position;for(let t of this.manager.tooltipViews)t.dom.style.position=this.position;i=!0}if(n.parent!=this.parent){this.parent&&this.container.remove(),this.parent=n.parent,this.createContainer();for(let t of this.manager.tooltipViews)this.container.appendChild(t.dom);i=!0}else this.parent&&this.view.themeClasses!=this.classes&&(this.classes=this.container.className=this.view.themeClasses);i&&this.maybeMeasure()}createTooltip(t,e){let i=t.create(this.view),n=e?e.dom:null;if(i.dom.classList.add("cm-tooltip"),t.arrow&&!i.dom.querySelector(".cm-tooltip > .cm-tooltip-arrow")){let t=document.createElement("div");t.className="cm-tooltip-arrow",i.dom.appendChild(t)}return i.dom.style.position=this.position,i.dom.style.top=Ls,i.dom.style.left="0px",this.container.insertBefore(i.dom,n),i.mount&&i.mount(this.view),this.resizeObserver&&this.resizeObserver.observe(i.dom),i}destroy(){var t,e,i;this.view.win.removeEventListener("resize",this.measureSoon);for(let e of this.manager.tooltipViews)e.dom.remove(),null===(t=e.destroy)||void 0===t||t.call(e);this.parent&&this.container.remove(),null===(e=this.resizeObserver)||void 0===e||e.disconnect(),null===(i=this.intersectionObserver)||void 0===i||i.disconnect(),clearTimeout(this.measureTimeout)}readMeasure(){let t=this.view.dom.getBoundingClientRect(),e=1,i=1,n=!1;if("fixed"==this.position&&this.manager.tooltipViews.length){let{dom:t}=this.manager.tooltipViews[0];if(Ue.gecko)n=t.offsetParent!=this.container.ownerDocument.body;else if(t.style.top==Ls&&"0px"==t.style.left){let e=t.getBoundingClientRect();n=Math.abs(e.top+1e4)>1||Math.abs(e.left)>1}}if(n||"absolute"==this.position)if(this.parent){let t=this.parent.getBoundingClientRect();t.width&&t.height&&(e=t.width/this.parent.offsetWidth,i=t.height/this.parent.offsetHeight)}else({scaleX:e,scaleY:i}=this.view.viewState);return{editor:t,parent:this.parent?this.container.getBoundingClientRect():t,pos:this.manager.tooltips.map(((t,e)=>{let i=this.manager.tooltipViews[e];return i.getCoords?i.getCoords(t.pos):this.view.coordsAtPos(t.pos)})),size:this.manager.tooltipViews.map((({dom:t})=>t.getBoundingClientRect())),space:this.view.state.facet(Bs).tooltipSpace(this.view),scaleX:e,scaleY:i,makeAbsolute:n}}writeMeasure(t){var e;if(t.makeAbsolute){this.madeAbsolute=!0,this.position="absolute";for(let t of this.manager.tooltipViews)t.dom.style.position="absolute"}let{editor:i,space:n,scaleX:r,scaleY:s}=t,o=[];for(let a=0;a=Math.min(i.bottom,n.bottom)||O.rightMath.min(i.right,n.right)+.1){c.style.top=Ls;continue}let u=l.arrow?h.dom.querySelector(".cm-tooltip-arrow"):null,f=u?7:0,p=d.right-d.left,m=null!==(e=Fs.get(h))&&void 0!==e?e:d.bottom-d.top,g=h.offset||Ks,Q=this.view.textDirection==fi.LTR,b=d.width>n.right-n.left?Q?n.left:n.right-d.width:Q?Math.min(O.left-(u?14:0)+g.x,n.right-p):Math.max(n.left,O.left-p+(u?14:0)-g.x),S=this.above[a];!l.strictSide&&(S?O.top-(d.bottom-d.top)-g.yn.bottom)&&S==n.bottom-O.bottom>O.top-n.top&&(S=this.above[a]=!S);let v=(S?O.top-n.top:n.bottom-O.bottom)-f;if(vb&&t.topw&&(w=S?t.top-m-2-f:t.bottom+f+2);if("absolute"==this.position?(c.style.top=(w-t.parent.top)/s+"px",c.style.left=(b-t.parent.left)/r+"px"):(c.style.top=w/s+"px",c.style.left=b/r+"px"),u){let t=O.left+(Q?g.x:-g.x)-(b+14-7);u.style.left=t/r+"px"}!0!==h.overlap&&o.push({left:b,top:w,right:y,bottom:w+m}),c.classList.toggle("cm-tooltip-above",S),c.classList.toggle("cm-tooltip-below",!S),h.positioned&&h.positioned(t.space)}}maybeMeasure(){if(this.manager.tooltips.length&&(this.view.inView&&this.view.requestMeasure(this.measureReq),this.inView!=this.view.inView&&(this.inView=this.view.inView,!this.inView)))for(let t of this.manager.tooltipViews)t.dom.style.top=Ls}},{eventObservers:{scroll(){this.maybeMeasure()}}}),Js=Ir.baseTheme({".cm-tooltip":{zIndex:100,boxSizing:"border-box"},"&light .cm-tooltip":{border:"1px solid #bbb",backgroundColor:"#f5f5f5"},"&light .cm-tooltip-section:not(:first-child)":{borderTop:"1px solid #bbb"},"&dark .cm-tooltip":{backgroundColor:"#333338",color:"white"},".cm-tooltip-arrow":{height:"7px",width:"14px",position:"absolute",zIndex:-1,overflow:"hidden","&:before, &:after":{content:"''",position:"absolute",width:0,height:0,borderLeft:"7px solid transparent",borderRight:"7px solid transparent"},".cm-tooltip-above &":{bottom:"-7px","&:before":{borderTop:"7px solid #bbb"},"&:after":{borderTop:"7px solid #f5f5f5",bottom:"1px"}},".cm-tooltip-below &":{top:"-7px","&:before":{borderBottom:"7px solid #bbb"},"&:after":{borderBottom:"7px solid #f5f5f5",top:"1px"}}},"&dark .cm-tooltip .cm-tooltip-arrow":{"&:before":{borderTopColor:"#333338",borderBottomColor:"#333338"},"&:after":{borderTopColor:"transparent",borderBottomColor:"transparent"}}}),Ks={x:0,y:0},to=A.define({enables:[Hs,Js]}),eo=A.define({combine:t=>t.reduce(((t,e)=>t.concat(e)),[])});class io{static create(t){return new io(t)}constructor(t){this.view=t,this.mounted=!1,this.dom=document.createElement("div"),this.dom.classList.add("cm-tooltip-hover"),this.manager=new Ns(t,eo,((t,e)=>this.createHostedView(t,e)),(t=>t.dom.remove()))}createHostedView(t,e){let i=t.create(this.view);return i.dom.classList.add("cm-tooltip-section"),this.dom.insertBefore(i.dom,e?e.dom.nextSibling:this.dom.firstChild),this.mounted&&i.mount&&i.mount(this.view),i}mount(t){for(let e of this.manager.tooltipViews)e.mount&&e.mount(t);this.mounted=!0}positioned(t){for(let e of this.manager.tooltipViews)e.positioned&&e.positioned(t)}update(t){this.manager.update(t)}destroy(){var t;for(let e of this.manager.tooltipViews)null===(t=e.destroy)||void 0===t||t.call(e)}passProp(t){let e;for(let i of this.manager.tooltipViews){let n=i[t];if(void 0!==n)if(void 0===e)e=n;else if(e!==n)return}return e}get offset(){return this.passProp("offset")}get getCoords(){return this.passProp("getCoords")}get overlap(){return this.passProp("overlap")}get resize(){return this.passProp("resize")}}const no=to.compute([eo],(t=>{let e=t.facet(eo);return 0===e.length?null:{pos:Math.min(...e.map((t=>t.pos))),end:Math.max(...e.map((t=>{var e;return null!==(e=t.end)&&void 0!==e?e:t.pos}))),create:io.create,above:e[0].above,arrow:e.some((t=>t.arrow))}}));class ro{constructor(t,e,i,n,r){this.view=t,this.source=e,this.field=i,this.setHover=n,this.hoverTime=r,this.hoverTimeout=-1,this.restartTimeout=-1,this.pending=null,this.lastMove={x:0,y:0,target:t.dom,time:0},this.checkHover=this.checkHover.bind(this),t.dom.addEventListener("mouseleave",this.mouseleave=this.mouseleave.bind(this)),t.dom.addEventListener("mousemove",this.mousemove=this.mousemove.bind(this))}update(){this.pending&&(this.pending=null,clearTimeout(this.restartTimeout),this.restartTimeout=setTimeout((()=>this.startHover()),20))}get active(){return this.view.state.field(this.field)}checkHover(){if(this.hoverTimeout=-1,this.active.length)return;let t=Date.now()-this.lastMove.time;ti.bottom||e.xi.right+t.defaultCharacterWidth)return;let s=t.bidiSpans(t.state.doc.lineAt(n)).find((t=>t.from<=n&&t.to>=n)),o=s&&s.dir==fi.RTL?-1:1;r=e.x{this.pending==e&&(this.pending=null,!i||Array.isArray(i)&&!i.length||t.dispatch({effects:this.setHover.of(Array.isArray(i)?i:[i])}))}),(e=>Li(t.state,e,"hover tooltip")))}else!s||Array.isArray(s)&&!s.length||t.dispatch({effects:this.setHover.of(Array.isArray(s)?s:[s])})}get tooltip(){let t=this.view.plugin(Hs),e=t?t.manager.tooltips.findIndex((t=>t.create==io.create)):-1;return e>-1?t.manager.tooltipViews[e]:null}mousemove(t){var e,i;this.lastMove={x:t.clientX,y:t.clientY,target:t.target,time:Date.now()},this.hoverTimeout<0&&(this.hoverTimeout=setTimeout(this.checkHover,this.hoverTime));let{active:n,tooltip:r}=this;if(n.length&&r&&!function(t,e){let i=t.getBoundingClientRect();return e.clientX>=i.left-so&&e.clientX<=i.right+so&&e.clientY>=i.top-so&&e.clientY<=i.bottom+so}(r.dom,t)||this.pending){let{pos:r}=n[0]||this.pending,s=null!==(i=null===(e=n[0])||void 0===e?void 0:e.end)&&void 0!==i?i:r;(r==s?this.view.posAtCoords(this.lastMove)==r:function(t,e,i,n,r,s){let o=t.scrollDOM.getBoundingClientRect(),a=t.documentTop+t.documentPadding.top+t.contentHeight;if(o.left>n||o.rightr||Math.min(o.bottom,a)=e&&l<=i}(this.view,r,s,t.clientX,t.clientY))||(this.view.dispatch({effects:this.setHover.of([])}),this.pending=null)}}mouseleave(t){clearTimeout(this.hoverTimeout),this.hoverTimeout=-1;let{active:e}=this;if(e.length){let{tooltip:e}=this;e&&e.dom.contains(t.relatedTarget)?this.watchTooltipLeave(e.dom):this.view.dispatch({effects:this.setHover.of([])})}}watchTooltipLeave(t){let e=i=>{t.removeEventListener("mouseleave",e),this.active.length&&!this.view.dom.contains(i.relatedTarget)&&this.view.dispatch({effects:this.setHover.of([])})};t.addEventListener("mouseleave",e)}destroy(){clearTimeout(this.hoverTimeout),this.view.dom.removeEventListener("mouseleave",this.mouseleave),this.view.dom.removeEventListener("mousemove",this.mousemove)}}const so=4;function oo(t,e={}){let i=dt.define(),n=j.define({create:()=>[],update(t,n){if(t.length&&(e.hideOnChange&&(n.docChanged||n.selection)?t=[]:e.hideOn&&(t=t.filter((t=>!e.hideOn(n,t)))),n.docChanged)){let e=[];for(let i of t){let t=n.changes.mapPos(i.pos,-1,y.TrackDel);if(null!=t){let r=Object.assign(Object.create(null),i);r.pos=t,null!=r.end&&(r.end=n.changes.mapPos(r.end)),e.push(r)}}t=e}for(let e of n.effects)e.is(i)&&(t=e.value),e.is(lo)&&(t=[]);return t},provide:t=>eo.from(t)});return[n,Fi.define((r=>new ro(r,t,n,i,e.hoverTime||300))),no]}function ao(t,e){let i=t.plugin(Hs);if(!i)return null;let n=i.manager.tooltips.indexOf(e);return n<0?null:i.manager.tooltipViews[n]}const lo=dt.define(),ho=A.define({combine(t){let e,i;for(let n of t)e=e||n.topContainer,i=i||n.bottomContainer;return{topContainer:e,bottomContainer:i}}});function co(t,e){let i=t.plugin(Oo),n=i?i.specs.indexOf(e):-1;return n>-1?i.panels[n]:null}const Oo=Fi.fromClass(class{constructor(t){this.input=t.state.facet(po),this.specs=this.input.filter((t=>t)),this.panels=this.specs.map((e=>e(t)));let e=t.state.facet(ho);this.top=new uo(t,!0,e.topContainer),this.bottom=new uo(t,!1,e.bottomContainer),this.top.sync(this.panels.filter((t=>t.top))),this.bottom.sync(this.panels.filter((t=>!t.top)));for(let t of this.panels)t.dom.classList.add("cm-panel"),t.mount&&t.mount()}update(t){let e=t.state.facet(ho);this.top.container!=e.topContainer&&(this.top.sync([]),this.top=new uo(t.view,!0,e.topContainer)),this.bottom.container!=e.bottomContainer&&(this.bottom.sync([]),this.bottom=new uo(t.view,!1,e.bottomContainer)),this.top.syncClasses(),this.bottom.syncClasses();let i=t.state.facet(po);if(i!=this.input){let e=i.filter((t=>t)),n=[],r=[],s=[],o=[];for(let i of e){let e,a=this.specs.indexOf(i);a<0?(e=i(t.view),o.push(e)):(e=this.panels[a],e.update&&e.update(t)),n.push(e),(e.top?r:s).push(e)}this.specs=e,this.panels=n,this.top.sync(r),this.bottom.sync(s);for(let t of o)t.dom.classList.add("cm-panel"),t.mount&&t.mount()}else for(let e of this.panels)e.update&&e.update(t)}destroy(){this.top.sync([]),this.bottom.sync([])}},{provide:t=>Ir.scrollMargins.of((e=>{let i=e.plugin(t);return i&&{top:i.top.scrollMargin(),bottom:i.bottom.scrollMargin()}}))});class uo{constructor(t,e,i){this.view=t,this.top=e,this.container=i,this.dom=void 0,this.classes="",this.panels=[],this.syncClasses()}sync(t){for(let e of this.panels)e.destroy&&t.indexOf(e)<0&&e.destroy();this.panels=t,this.syncDOM()}syncDOM(){if(0==this.panels.length)return void(this.dom&&(this.dom.remove(),this.dom=void 0));if(!this.dom){this.dom=document.createElement("div"),this.dom.className=this.top?"cm-panels cm-panels-top":"cm-panels cm-panels-bottom",this.dom.style[this.top?"top":"bottom"]="0";let t=this.container||this.view.dom;t.insertBefore(this.dom,this.top?t.firstChild:null)}let t=this.dom.firstChild;for(let e of this.panels)if(e.dom.parentNode==this.dom){for(;t!=e.dom;)t=fo(t);t=t.nextSibling}else this.dom.insertBefore(e.dom,t);for(;t;)t=fo(t)}scrollMargin(){return!this.dom||this.container?0:Math.max(0,this.top?this.dom.getBoundingClientRect().bottom-Math.max(0,this.view.scrollDOM.getBoundingClientRect().top):Math.min(innerHeight,this.view.scrollDOM.getBoundingClientRect().bottom)-this.dom.getBoundingClientRect().top)}syncClasses(){if(this.container&&this.classes!=this.view.themeClasses){for(let t of this.classes.split(" "))t&&this.container.classList.remove(t);for(let t of(this.classes=this.view.themeClasses).split(" "))t&&this.container.classList.add(t)}}}function fo(t){let e=t.nextSibling;return t.remove(),e}const po=A.define({enables:Oo});class mo extends Pt{compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}eq(t){return!1}destroy(t){}}mo.prototype.elementClass="",mo.prototype.toDOM=void 0,mo.prototype.mapMode=y.TrackBefore,mo.prototype.startSide=mo.prototype.endSide=-1,mo.prototype.point=!0;const go=A.define(),Qo={class:"",renderEmptyElements:!1,elementStyle:"",markers:()=>Rt.empty,lineMarker:()=>null,widgetMarker:()=>null,lineMarkerChange:null,initialSpacer:null,updateSpacer:null,domEventHandlers:{}},bo=A.define();function So(t){return[wo(),bo.of(Object.assign(Object.assign({},Qo),t))]}const vo=A.define({combine:t=>t.some((t=>t))});function wo(t){return[yo]}const yo=Fi.fromClass(class{constructor(t){this.view=t,this.prevViewport=t.viewport,this.dom=document.createElement("div"),this.dom.className="cm-gutters",this.dom.setAttribute("aria-hidden","true"),this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.gutters=t.state.facet(bo).map((e=>new $o(t,e)));for(let t of this.gutters)this.dom.appendChild(t.dom);this.fixed=!t.state.facet(vo),this.fixed&&(this.dom.style.position="sticky"),this.syncGutters(!1),t.scrollDOM.insertBefore(this.dom,t.contentDOM)}update(t){if(this.updateGutters(t)){let e=this.prevViewport,i=t.view.viewport,n=Math.min(e.to,i.to)-Math.max(e.from,i.from);this.syncGutters(n<.8*(i.to-i.from))}t.geometryChanged&&(this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+"px"),this.view.state.facet(vo)!=!this.fixed&&(this.fixed=!this.fixed,this.dom.style.position=this.fixed?"sticky":""),this.prevViewport=t.view.viewport}syncGutters(t){let e=this.dom.nextSibling;t&&this.dom.remove();let i=Rt.iter(this.view.state.facet(go),this.view.viewport.from),n=[],r=this.gutters.map((t=>new Po(t,this.view.viewport,-this.view.documentPadding.top)));for(let t of this.view.viewportLineBlocks)if(n.length&&(n=[]),Array.isArray(t.type)){let e=!0;for(let s of t.type)if(s.type==ri.Text&&e){ko(i,n,s.from);for(let t of r)t.line(this.view,s,n);e=!1}else if(s.widget)for(let t of r)t.widget(this.view,s)}else if(t.type==ri.Text){ko(i,n,t.from);for(let e of r)e.line(this.view,t,n)}else if(t.widget)for(let e of r)e.widget(this.view,t);for(let t of r)t.finish();t&&this.view.scrollDOM.insertBefore(this.dom,e)}updateGutters(t){let e=t.startState.facet(bo),i=t.state.facet(bo),n=t.docChanged||t.heightChanged||t.viewportChanged||!Rt.eq(t.startState.facet(go),t.state.facet(go),t.view.viewport.from,t.view.viewport.to);if(e==i)for(let e of this.gutters)e.update(t)&&(n=!0);else{n=!0;let r=[];for(let n of i){let i=e.indexOf(n);i<0?r.push(new $o(this.view,n)):(this.gutters[i].update(t),r.push(this.gutters[i]))}for(let t of this.gutters)t.dom.remove(),r.indexOf(t)<0&&t.destroy();for(let t of r)this.dom.appendChild(t.dom);this.gutters=r}return n}destroy(){for(let t of this.gutters)t.destroy();this.dom.remove()}},{provide:t=>Ir.scrollMargins.of((e=>{let i=e.plugin(t);return i&&0!=i.gutters.length&&i.fixed?e.textDirection==fi.LTR?{left:i.dom.offsetWidth*e.scaleX}:{right:i.dom.offsetWidth*e.scaleX}:null}))});function xo(t){return Array.isArray(t)?t:[t]}function ko(t,e,i){for(;t.value&&t.from<=i;)t.from==i&&e.push(t.value),t.next()}class Po{constructor(t,e,i){this.gutter=t,this.height=i,this.i=0,this.cursor=Rt.iter(t.markers,e.from)}addElement(t,e,i){let{gutter:n}=this,r=(e.top-this.height)/t.scaleY,s=e.height/t.scaleY;if(this.i==n.elements.length){let e=new To(t,s,r,i);n.elements.push(e),n.dom.appendChild(e.dom)}else n.elements[this.i].update(t,s,r,i);this.height=e.bottom,this.i++}line(t,e,i){let n=[];ko(this.cursor,n,e.from),i.length&&(n=n.concat(i));let r=this.gutter.config.lineMarker(t,e,n);r&&n.unshift(r);let s=this.gutter;(0!=n.length||s.config.renderEmptyElements)&&this.addElement(t,e,n)}widget(t,e){let i=this.gutter.config.widgetMarker(t,e.widget,e);i&&this.addElement(t,e,[i])}finish(){let t=this.gutter;for(;t.elements.length>this.i;){let e=t.elements.pop();t.dom.removeChild(e.dom),e.destroy()}}}class $o{constructor(t,e){this.view=t,this.config=e,this.elements=[],this.spacer=null,this.dom=document.createElement("div"),this.dom.className="cm-gutter"+(this.config.class?" "+this.config.class:"");for(let i in e.domEventHandlers)this.dom.addEventListener(i,(n=>{let r,s=n.target;if(s!=this.dom&&this.dom.contains(s)){for(;s.parentNode!=this.dom;)s=s.parentNode;let t=s.getBoundingClientRect();r=(t.top+t.bottom)/2}else r=n.clientY;let o=t.lineBlockAtHeight(r-t.documentTop);e.domEventHandlers[i](t,o,n)&&n.preventDefault()}));this.markers=xo(e.markers(t)),e.initialSpacer&&(this.spacer=new To(t,0,0,[e.initialSpacer(t)]),this.dom.appendChild(this.spacer.dom),this.spacer.dom.style.cssText+="visibility: hidden; pointer-events: none")}update(t){let e=this.markers;if(this.markers=xo(this.config.markers(t.view)),this.spacer&&this.config.updateSpacer){let e=this.config.updateSpacer(this.spacer.markers[0],t);e!=this.spacer.markers[0]&&this.spacer.update(t.view,0,0,[e])}let i=t.view.viewport;return!Rt.eq(this.markers,e,i.from,i.to)||!!this.config.lineMarkerChange&&this.config.lineMarkerChange(t)}destroy(){for(let t of this.elements)t.destroy()}}class To{constructor(t,e,i,n){this.height=-1,this.above=0,this.markers=[],this.dom=document.createElement("div"),this.dom.className="cm-gutterElement",this.update(t,e,i,n)}update(t,e,i,n){this.height!=e&&(this.height=e,this.dom.style.height=e+"px"),this.above!=i&&(this.dom.style.marginTop=(this.above=i)?i+"px":""),function(t,e){if(t.length!=e.length)return!1;for(let i=0;ikt(t,{formatNumber:String,domEventHandlers:{}},{domEventHandlers(t,e){let i=Object.assign({},t);for(let t in e){let n=i[t],r=e[t];i[t]=n?(t,e,i)=>n(t,e,i)||r(t,e,i):r}return i}})});class Zo extends mo{constructor(t){super(),this.number=t}eq(t){return this.number==t.number}toDOM(){return document.createTextNode(this.number)}}function Xo(t,e){return t.state.facet(Ro).formatNumber(e,t.state)}const Co=bo.compute([Ro],(t=>({class:"cm-lineNumbers",renderEmptyElements:!1,markers:t=>t.state.facet(_o),lineMarker:(t,e,i)=>i.some((t=>t.toDOM))?null:new Zo(Xo(t,t.state.doc.lineAt(e.from).number)),widgetMarker:()=>null,lineMarkerChange:t=>t.startState.facet(Ro)!=t.state.facet(Ro),initialSpacer:t=>new Zo(Xo(t,Wo(t.state.doc.lines))),updateSpacer(t,e){let i=Xo(e.view,Wo(e.view.state.doc.lines));return i==t.number?t:new Zo(i)},domEventHandlers:t.facet(Ro).domEventHandlers})));function qo(t={}){return[Ro.of(t),wo(),Co]}function Wo(t){let e=9;for(;e{let e=[],i=-1;for(let n of t.selection.ranges){let r=t.doc.lineAt(n.head).from;r>i&&(i=r,e.push(Ao.range(r)))}return Rt.of(e)}));const Vo=1024;let Mo=0;class Eo{constructor(t,e){this.from=t,this.to=e}}class Yo{constructor(t={}){this.id=Mo++,this.perNode=!!t.perNode,this.deserialize=t.deserialize||(()=>{throw new Error("This node type doesn't define a deserialize function")})}add(t){if(this.perNode)throw new RangeError("Can't add per-node props to node types");return"function"!=typeof t&&(t=Do.match(t)),e=>{let i=t(e);return void 0===i?null:[this,i]}}}Yo.closedBy=new Yo({deserialize:t=>t.split(" ")}),Yo.openedBy=new Yo({deserialize:t=>t.split(" ")}),Yo.group=new Yo({deserialize:t=>t.split(" ")}),Yo.isolate=new Yo({deserialize:t=>{if(t&&"rtl"!=t&&"ltr"!=t&&"auto"!=t)throw new RangeError("Invalid value for isolate: "+t);return t||"auto"}}),Yo.contextHash=new Yo({perNode:!0}),Yo.lookAhead=new Yo({perNode:!0}),Yo.mounted=new Yo({perNode:!0});class Uo{constructor(t,e,i){this.tree=t,this.overlay=e,this.parser=i}static get(t){return t&&t.props&&t.props[Yo.mounted.id]}}const jo=Object.create(null);class Do{constructor(t,e,i,n=0){this.name=t,this.props=e,this.id=i,this.flags=n}static define(t){let e=t.props&&t.props.length?Object.create(null):jo,i=(t.top?1:0)|(t.skipped?2:0)|(t.error?4:0)|(null==t.name?8:0),n=new Do(t.name||"",e,t.id,i);if(t.props)for(let i of t.props)if(Array.isArray(i)||(i=i(n)),i){if(i[0].perNode)throw new RangeError("Can't store a per-node prop on a node type");e[i[0].id]=i[1]}return n}prop(t){return this.props[t.id]}get isTop(){return(1&this.flags)>0}get isSkipped(){return(2&this.flags)>0}get isError(){return(4&this.flags)>0}get isAnonymous(){return(8&this.flags)>0}is(t){if("string"==typeof t){if(this.name==t)return!0;let e=this.prop(Yo.group);return!!e&&e.indexOf(t)>-1}return this.id==t}static match(t){let e=Object.create(null);for(let i in t)for(let n of i.split(" "))e[n]=t[i];return t=>{for(let i=t.prop(Yo.group),n=-1;n<(i?i.length:0);n++){let r=e[n<0?t.name:i[n]];if(r)return r}}}}Do.none=new Do("",Object.create(null),0,8);class Go{constructor(t){this.types=t;for(let e=0;e=e){let o=new ea(s.tree,s.overlay[0].from+t.from,-1,t);(r||(r=[n])).push(Ko(o,e,i,!1))}}return r?oa(r):n}(this,t,e)}iterate(t){let{enter:e,leave:i,from:n=0,to:r=this.length}=t,s=t.mode||0,o=(s&Io.IncludeAnonymous)>0;for(let t=this.cursor(s|Io.IncludeAnonymous);;){let s=!1;if(t.from<=r&&t.to>=n&&(!o&&t.type.isAnonymous||!1!==e(t))){if(t.firstChild())continue;s=!0}for(;s&&i&&(o||!t.type.isAnonymous)&&i(t),!t.nextSibling();){if(!t.parent())return;s=!0}}}prop(t){return t.perNode?this.props?this.props[t.id]:void 0:this.type.prop(t)}get propValues(){let t=[];if(this.props)for(let e in this.props)t.push([+e,this.props[e]]);return t}balance(t={}){return this.children.length<=8?this:da(Do.none,this.children,this.positions,0,this.children.length,0,this.length,((t,e,i)=>new Bo(this.type,t,e,i,this.propValues)),t.makeTree||((t,e,i)=>new Bo(Do.none,t,e,i)))}static build(t){return function(t){var e;let{buffer:i,nodeSet:n,maxBufferLength:r=Vo,reused:s=[],minRepeatType:o=n.types.length}=t,a=Array.isArray(i)?new Fo(i,i.length):i,l=n.types,h=0,c=0;function O(t,e,i,Q,b,S){let{id:v,start:w,end:y,size:x}=a,k=c;for(;x<0;){if(a.next(),-1==x){let e=s[v];return i.push(e),void Q.push(w-t)}if(-3==x)return void(h=v);if(-4==x)return void(c=v);throw new RangeError(`Unrecognized record size: ${x}`)}let P,$,T=l[v],_=w-t;if(y-w<=r&&($=m(a.pos-e,b))){let e=new Uint16Array($.size-$.skip),i=a.pos-$.size,r=e.length;for(;a.pos>i;)r=g($.start,e,r);P=new Ho(e,y-$.start,n),_=$.start-t}else{let t=a.pos-x;a.next();let e=[],i=[],n=v>=o?v:-1,s=0,l=y;for(;a.pos>t;)n>=0&&a.id==n&&a.size>=0?(a.end<=l-r&&(f(e,i,w,s,a.end,l,n,k),s=e.length,l=a.end),a.next()):S>2500?d(w,t,e,i):O(w,t,e,i,n,S+1);if(n>=0&&s>0&&s-1&&s>0){let t=u(T);P=da(T,e,i,0,e.length,0,y-w,t,t)}else P=p(T,e,i,y-w,k-y)}i.push(P),Q.push(_)}function d(t,e,i,s){let o=[],l=0,h=-1;for(;a.pos>e;){let{id:t,start:e,end:i,size:n}=a;if(n>4)a.next();else{if(h>-1&&e=0;t-=3)e[i++]=o[t],e[i++]=o[t+1]-r,e[i++]=o[t+2]-r,e[i++]=i;i.push(new Ho(e,o[2]-r,n)),s.push(r-t)}}function u(t){return(e,i,n)=>{let r,s,o=0,a=e.length-1;if(a>=0&&(r=e[a])instanceof Bo){if(!a&&r.type==t&&r.length==n)return r;(s=r.prop(Yo.lookAhead))&&(o=i[a]+r.length+s)}return p(t,e,i,n,o)}}function f(t,e,i,r,s,o,a,l){let h=[],c=[];for(;t.length>r;)h.push(t.pop()),c.push(e.pop()+i-s);t.push(p(n.types[a],h,c,o-s,l-o)),e.push(s-i)}function p(t,e,i,n,r=0,s){if(h){let t=[Yo.contextHash,h];s=s?[t].concat(s):[t]}if(r>25){let t=[Yo.lookAhead,r];s=s?[t].concat(s):[t]}return new Bo(t,e,i,n,s)}function m(t,e){let i=a.fork(),n=0,s=0,l=0,h=i.end-r,c={size:0,start:0,skip:0};t:for(let r=i.pos-t;i.pos>r;){let t=i.size;if(i.id==e&&t>=0){c.size=n,c.start=s,c.skip=l,l+=4,n+=4,i.next();continue}let a=i.pos-t;if(t<0||a=o?4:0,d=i.start;for(i.next();i.pos>a;){if(i.size<0){if(-3!=i.size)break t;O+=4}else i.id>=o&&(O+=4);i.next()}s=d,n+=t,l+=O}return(e<0||n==t)&&(c.size=n,c.start=s,c.skip=l),c.size>4?c:void 0}function g(t,e,i){let{id:n,start:r,end:s,size:l}=a;if(a.next(),l>=0&&n4){let n=a.pos-(l-4);for(;a.pos>n;)i=g(t,e,i)}e[--i]=o,e[--i]=s-t,e[--i]=r-t,e[--i]=n}else-3==l?h=n:-4==l&&(c=n);return i}let Q=[],b=[];for(;a.pos>0;)O(t.start||0,t.bufferStart||0,Q,b,-1,0);let S=null!==(e=t.length)&&void 0!==e?e:Q.length?b[0]+Q[0].length:0;return new Bo(l[t.topID],Q.reverse(),b.reverse(),S)}(t)}}Bo.empty=new Bo(Do.none,[],[],0);class Fo{constructor(t,e){this.buffer=t,this.index=e}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}get pos(){return this.index}next(){this.index-=4}fork(){return new Fo(this.buffer,this.index)}}class Ho{constructor(t,e,i){this.buffer=t,this.length=e,this.set=i}get type(){return Do.none}toString(){let t=[];for(let e=0;e0));a=s[a+3]);return o}slice(t,e,i){let n=this.buffer,r=new Uint16Array(e-t),s=0;for(let o=t,a=0;o=e&&ie;case 1:return i<=e&&n>e;case 2:return n>e;case 4:return!0}}function Ko(t,e,i,n){for(var r;t.from==t.to||(i<1?t.from>=e:t.from>e)||(i>-1?t.to<=e:t.to0?o.length:-1;t!=l;t+=e){let l=o[t],h=a[t]+s.from;if(Jo(n,i,h,h+l.length))if(l instanceof Ho){if(r&Io.ExcludeBuffers)continue;let o=l.findChild(0,l.buffer.length,e,i-h,n);if(o>-1)return new sa(new ra(s,l,t,h),null,o)}else if(r&Io.IncludeAnonymous||!l.type.isAnonymous||ha(l)){let o;if(!(r&Io.IgnoreMounts)&&(o=Uo.get(l))&&!o.overlay)return new ea(o.tree,h,t,s);let a=new ea(l,h,t,s);return r&Io.IncludeAnonymous||!a.type.isAnonymous?a:a.nextChild(e<0?l.children.length-1:0,e,i,n)}}if(r&Io.IncludeAnonymous||!s.type.isAnonymous)return null;if(t=s.index>=0?s.index+e:e<0?-1:s._parent._tree.children.length,s=s._parent,!s)return null}}get firstChild(){return this.nextChild(0,1,0,4)}get lastChild(){return this.nextChild(this._tree.children.length-1,-1,0,4)}childAfter(t){return this.nextChild(0,1,t,2)}childBefore(t){return this.nextChild(this._tree.children.length-1,-1,t,-2)}enter(t,e,i=0){let n;if(!(i&Io.IgnoreOverlays)&&(n=Uo.get(this._tree))&&n.overlay){let i=t-this.from;for(let{from:t,to:r}of n.overlay)if((e>0?t<=i:t=i:r>i))return new ea(n.tree,n.overlay[0].from+this.from,-1,this)}return this.nextChild(0,1,t,e,i)}nextSignificantParent(){let t=this;for(;t.type.isAnonymous&&t._parent;)t=t._parent;return t}get parent(){return this._parent?this._parent.nextSignificantParent():null}get nextSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index+1,1,0,4):null}get prevSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index-1,-1,0,4):null}get tree(){return this._tree}toTree(){return this._tree}toString(){return this._tree.toString()}}function ia(t,e,i,n){let r=t.cursor(),s=[];if(!r.firstChild())return s;if(null!=i)for(let t=!1;!t;)if(t=r.type.is(i),!r.nextSibling())return s;for(;;){if(null!=n&&r.type.is(n))return s;if(r.type.is(e)&&s.push(r.node),!r.nextSibling())return null==n?s:[]}}function na(t,e,i=e.length-1){for(let n=t.parent;i>=0;n=n.parent){if(!n)return!1;if(!n.type.isAnonymous){if(e[i]&&e[i]!=n.name)return!1;i--}}return!0}class ra{constructor(t,e,i,n){this.parent=t,this.buffer=e,this.index=i,this.start=n}}class sa extends ta{get name(){return this.type.name}get from(){return this.context.start+this.context.buffer.buffer[this.index+1]}get to(){return this.context.start+this.context.buffer.buffer[this.index+2]}constructor(t,e,i){super(),this.context=t,this._parent=e,this.index=i,this.type=t.buffer.set.types[t.buffer.buffer[i]]}child(t,e,i){let{buffer:n}=this.context,r=n.findChild(this.index+4,n.buffer[this.index+3],t,e-this.context.start,i);return r<0?null:new sa(this.context,this,r)}get firstChild(){return this.child(1,0,4)}get lastChild(){return this.child(-1,0,4)}childAfter(t){return this.child(1,t,2)}childBefore(t){return this.child(-1,t,-2)}enter(t,e,i=0){if(i&Io.ExcludeBuffers)return null;let{buffer:n}=this.context,r=n.findChild(this.index+4,n.buffer[this.index+3],e>0?1:-1,t-this.context.start,e);return r<0?null:new sa(this.context,this,r)}get parent(){return this._parent||this.context.parent.nextSignificantParent()}externalSibling(t){return this._parent?null:this.context.parent.nextChild(this.context.index+t,t,0,4)}get nextSibling(){let{buffer:t}=this.context,e=t.buffer[this.index+3];return e<(this._parent?t.buffer[this._parent.index+3]:t.buffer.length)?new sa(this.context,this._parent,e):this.externalSibling(1)}get prevSibling(){let{buffer:t}=this.context,e=this._parent?this._parent.index+4:0;return this.index==e?this.externalSibling(-1):new sa(this.context,this._parent,t.findChild(e,this.index,-1,0,4))}get tree(){return null}toTree(){let t=[],e=[],{buffer:i}=this.context,n=this.index+4,r=i.buffer[this.index+3];if(r>n){let s=i.buffer[this.index+1];t.push(i.slice(n,r,s)),e.push(0)}return new Bo(this.type,t,e,this.to-this.from)}toString(){return this.context.buffer.childString(this.index)}}function oa(t){if(!t.length)return null;let e=0,i=t[0];for(let n=1;ni.from||r.to0){if(this.index-1)for(let n=e+t,r=t<0?-1:i._tree.children.length;n!=r;n+=t){let t=i._tree.children[n];if(this.mode&Io.IncludeAnonymous||t instanceof Ho||!t.type.isAnonymous||ha(t))return!1}return!0}move(t,e){if(e&&this.enterChild(t,0,4))return!0;for(;;){if(this.sibling(t))return!0;if(this.atLastNode(t)||!this.parent())return!1}}next(t=!0){return this.move(1,t)}prev(t=!0){return this.move(-1,t)}moveTo(t,e=0){for(;(this.from==this.to||(e<1?this.from>=t:this.from>t)||(e>-1?this.to<=t:this.to=0;){for(let s=t;s;s=s._parent)if(s.index==n){if(n==this.index)return s;e=s,i=r+1;break t}n=this.stack[--r]}for(let t=i;t=0;r--){if(r<0)return na(this.node,t,n);let s=i[e.buffer[this.stack[r]]];if(!s.isAnonymous){if(t[n]&&t[n]!=s.name)return!1;n--}}return!0}}function ha(t){return t.children.some((t=>t instanceof Ho||!t.type.isAnonymous||ha(t)))}const ca=new WeakMap;function Oa(t,e){if(!t.isAnonymous||e instanceof Ho||e.type!=t)return 1;let i=ca.get(e);if(null==i){i=1;for(let n of e.children){if(n.type!=t||!(n instanceof Bo)){i=1;break}i+=Oa(t,n)}ca.set(e,i)}return i}function da(t,e,i,n,r,s,o,a,l){let h=0;for(let i=n;i=c)break;f+=e}if(h==r+1){if(f>c){let t=i[r];e(t.children,t.positions,0,t.children.length,n[r]+a);continue}O.push(i[r])}else{let e=n[h-1]+i[h-1].length-u;O.push(da(t,i,n,r,h,u,e,null,l))}d.push(u+a-s)}}(e,i,n,r,0),(a||l)(O,d,o)}class ua{constructor(){this.map=new WeakMap}setBuffer(t,e,i){let n=this.map.get(t);n||this.map.set(t,n=new Map),n.set(e,i)}getBuffer(t,e){let i=this.map.get(t);return i&&i.get(e)}set(t,e){t instanceof sa?this.setBuffer(t.context.buffer,t.index,e):t instanceof ea&&this.map.set(t.tree,e)}get(t){return t instanceof sa?this.getBuffer(t.context.buffer,t.index):t instanceof ea?this.map.get(t.tree):void 0}cursorSet(t,e){t.buffer?this.setBuffer(t.buffer.buffer,t.index,e):this.map.set(t.tree,e)}cursorGet(t){return t.buffer?this.getBuffer(t.buffer.buffer,t.index):this.map.get(t.tree)}}class fa{constructor(t,e,i,n,r=!1,s=!1){this.from=t,this.to=e,this.tree=i,this.offset=n,this.open=(r?1:0)|(s?2:0)}get openStart(){return(1&this.open)>0}get openEnd(){return(2&this.open)>0}static addTree(t,e=[],i=!1){let n=[new fa(0,t.length,t,0,!1,i)];for(let i of e)i.to>t.length&&n.push(i);return n}static applyChanges(t,e,i=128){if(!e.length)return t;let n=[],r=1,s=t.length?t[0]:null;for(let o=0,a=0,l=0;;o++){let h=o=i)for(;s&&s.from=e.from||c<=e.to||l){let t=Math.max(e.from,a)-l,i=Math.min(e.to,c)-l;e=t>=i?null:new fa(t,i,e.tree,e.offset+l,o>0,!!h)}if(e&&n.push(e),s.to>c)break;s=rnew Eo(t.from,t.to))):[new Eo(0,0)]:[new Eo(0,t.length)],this.createParse(t,e||[],i)}parse(t,e,i){let n=this.startParse(t,e,i);for(;;){let t=n.advance();if(t)return t}}}class ma{constructor(t){this.string=t}get length(){return this.string.length}chunk(t){return this.string.slice(t)}get lineChunks(){return!1}read(t,e){return this.string.slice(t,e)}}function ga(t){return(e,i,n,r)=>new wa(e,t,i,n,r)}class Qa{constructor(t,e,i,n,r){this.parser=t,this.parse=e,this.overlay=i,this.target=n,this.from=r}}function ba(t){if(!t.length||t.some((t=>t.from>=t.to)))throw new RangeError("Invalid inner parse ranges given: "+JSON.stringify(t))}class Sa{constructor(t,e,i,n,r,s,o){this.parser=t,this.predicate=e,this.mounts=i,this.index=n,this.start=r,this.target=s,this.prev=o,this.depth=0,this.ranges=[]}}const va=new Yo({perNode:!0});class wa{constructor(t,e,i,n,r){this.nest=e,this.input=i,this.fragments=n,this.ranges=r,this.inner=[],this.innerDone=0,this.baseTree=null,this.stoppedAt=null,this.baseParse=t}advance(){if(this.baseParse){let t=this.baseParse.advance();if(!t)return null;if(this.baseParse=null,this.baseTree=t,this.startInner(),null!=this.stoppedAt)for(let t of this.inner)t.parse.stopAt(this.stoppedAt)}if(this.innerDone==this.inner.length){let t=this.baseTree;return null!=this.stoppedAt&&(t=new Bo(t.type,t.children,t.positions,t.length,t.propValues.concat([[va,this.stoppedAt]]))),t}let t=this.inner[this.innerDone],e=t.parse.advance();if(e){this.innerDone++;let i=Object.assign(Object.create(null),t.target.props);i[Yo.mounted.id]=new Uo(e,t.overlay,t.parser),t.target.props=i}return null}get parsedPos(){if(this.baseParse)return 0;let t=this.input.length;for(let e=this.innerDone;e=this.stoppedAt)a=!1;else if(t.hasNode(n)){if(e){let t=e.mounts.find((t=>t.frag.from<=n.from&&t.frag.to>=n.to&&t.mount.overlay));if(t)for(let i of t.mount.overlay){let r=i.from+t.pos,s=i.to+t.pos;r>=n.from&&s<=n.to&&!e.ranges.some((t=>t.fromr))&&e.ranges.push({from:r,to:s})}}a=!1}else if(i&&(s=ya(i.ranges,n.from,n.to)))a=2!=s;else if(!n.type.isAnonymous&&(r=this.nest(n,this.input))&&(n.fromnew Eo(t.from-n.from,t.to-n.from))):null,n.tree,t.length?t[0].from:n.from)),r.overlay?t.length&&(i={ranges:t,depth:0,prev:i}):a=!1}}else e&&(o=e.predicate(n))&&(!0===o&&(o=new Eo(n.from,n.to)),o.fromnew Eo(t.from-e.start,t.to-e.start))),e.target,t[0].from))),e=e.prev}i&&! --i.depth&&(i=i.prev)}}}}function ya(t,e,i){for(let n of t){if(n.from>=i)break;if(n.to>e)return n.from<=e&&n.to>=i?2:1}return 0}function xa(t,e,i,n,r,s){if(e=t&&e.enter(i,1,Io.IgnoreOverlays|Io.ExcludeBuffers)||e.next(!1)||(this.done=!0)}hasNode(t){if(this.moveTo(t.from),!this.done&&this.cursor.from+this.offset==t.from&&this.cursor.tree)for(let e=this.cursor.tree;;){if(e==t.tree)return!0;if(!(e.children.length&&0==e.positions[0]&&e.children[0]instanceof Bo))break;e=e.children[0]}return!1}}let $a=class{constructor(t){var e;if(this.fragments=t,this.curTo=0,this.fragI=0,t.length){let i=this.curFrag=t[0];this.curTo=null!==(e=i.tree.prop(va))&&void 0!==e?e:i.to,this.inner=new Pa(i.tree,-i.offset)}else this.curFrag=this.inner=null}hasNode(t){for(;this.curFrag&&t.from>=this.curTo;)this.nextFrag();return this.curFrag&&this.curFrag.from<=t.from&&this.curTo>=t.to&&this.inner.hasNode(t)}nextFrag(){var t;if(this.fragI++,this.fragI==this.fragments.length)this.curFrag=this.inner=null;else{let e=this.curFrag=this.fragments[this.fragI];this.curTo=null!==(t=e.tree.prop(va))&&void 0!==t?t:e.to,this.inner=new Pa(e.tree,-e.offset)}}findMounts(t,e){var i;let n=[];if(this.inner){this.inner.cursor.moveTo(t,1);for(let t=this.inner.cursor.node;t;t=t.parent){let r=null===(i=t.tree)||void 0===i?void 0:i.prop(Yo.mounted);if(r&&r.parser==e)for(let e=this.fragI;e=t.to)break;i.tree==this.curFrag.tree&&n.push({frag:i,pos:t.from-i.offset,mount:r})}}}return n}};function Ta(t,e){let i=null,n=e;for(let r=1,s=0;r=a)break;t.to<=o||(i||(n=i=e.slice()),t.froma&&i.splice(s+1,0,new Eo(a,t.to))):t.to>a?i[s--]=new Eo(a,t.to):i.splice(s--,1))}}return n}function _a(t,e,i,n){let r=0,s=0,o=!1,a=!1,l=-1e9,h=[];for(;;){let c=r==t.length?1e9:o?t[r].to:t[r].from,O=s==e.length?1e9:a?e[s].to:e[s].from;if(o!=a){let t=Math.max(l,i),e=Math.min(c,O,n);tnew Eo(t.from+n,t.to+n))),h=_a(e,o,a,l);for(let e=0,n=a;;e++){let o=e==h.length,a=o?l:h[e].from;if(a>n&&i.push(new fa(n,a,r.tree,-t,s.from>=n||s.openStart,s.to<=a||s.openEnd)),o)break;n=h[e].to}}else i.push(new fa(a,l,r.tree,-t,s.from>=t||s.openStart,s.to<=o||s.openEnd))}return i}let Za=0;class Xa{constructor(t,e,i){this.set=t,this.base=e,this.modified=i,this.id=Za++}static define(t){if(null==t?void 0:t.base)throw new Error("Can not derive from a modified tag");let e=new Xa([],null,[]);if(e.set.push(e),t)for(let i of t.set)e.set.push(i);return e}static defineModifier(){let t=new qa;return e=>e.modified.indexOf(t)>-1?e:qa.get(e.base||e,e.modified.concat(t).sort(((t,e)=>t.id-e.id)))}}let Ca=0;class qa{constructor(){this.instances=[],this.id=Ca++}static get(t,e){if(!e.length)return t;let i=e[0].instances.find((i=>i.base==t&&function(t,e){return t.length==e.length&&t.every(((t,i)=>t==e[i]))}(e,i.modified)));if(i)return i;let n=[],r=new Xa(n,t,e);for(let t of e)t.instances.push(r);let s=function(t){let e=[[]];for(let i=0;ie.length-t.length))}(e);for(let e of t.set)if(!e.modified.length)for(let t of s)n.push(qa.get(e,t));return r}}function Wa(t){let e=Object.create(null);for(let i in t){let n=t[i];Array.isArray(n)||(n=[n]);for(let t of i.split(" "))if(t){let i=[],r=2,s=t;for(let e=0;;){if("..."==s&&e>0&&e+3==t.length){r=1;break}let n=/^"(?:[^"\\]|\\.)*?"|[^\/!]+/.exec(s);if(!n)throw new RangeError("Invalid path: "+t);if(i.push("*"==n[0]?"":'"'==n[0][0]?JSON.parse(n[0]):n[0]),e+=n[0].length,e==t.length)break;let o=t[e++];if(e==t.length&&"!"==o){r=0;break}if("/"!=o)throw new RangeError("Invalid path: "+t);s=t.slice(e)}let o=i.length-1,a=i[o];if(!a)throw new RangeError("Invalid path: "+t);let l=new za(n,r,o>0?i.slice(0,o):null);e[a]=l.sort(e[a])}}return Aa.add(e)}const Aa=new Yo;class za{constructor(t,e,i,n){this.tags=t,this.mode=e,this.context=i,this.next=n}get opaque(){return 0==this.mode}get inherit(){return 1==this.mode}sort(t){return!t||t.depth{let e=r;for(let n of t)for(let t of n.set){let n=i[t.id];if(n){e=e?e+" "+n:n;break}}return e},scope:n}}function Ma(t,e,i,n=0,r=t.length){let s=new Ea(n,Array.isArray(e)?e:[e],i);s.highlightRange(t.cursor(),n,r,"",s.highlighters),s.flush(r)}za.empty=new za([],2,null);class Ea{constructor(t,e,i){this.at=t,this.highlighters=e,this.span=i,this.class=""}startSpan(t,e){e!=this.class&&(this.flush(t),t>this.at&&(this.at=t),this.class=e)}flush(t){t>this.at&&this.class&&this.span(this.at,t,this.class)}highlightRange(t,e,i,n,r){let{type:s,from:o,to:a}=t;if(o>=i||a<=e)return;s.isTop&&(r=this.highlighters.filter((t=>!t.scope||t.scope(s))));let l=n,h=function(t){let e=t.type.prop(Aa);for(;e&&e.context&&!t.matchContext(e.context);)e=e.next;return e||null}(t)||za.empty,c=function(t,e){let i=null;for(let n of t){let t=n.style(e);t&&(i=i?i+" "+t:t)}return i}(r,h.tags);if(c&&(l&&(l+=" "),l+=c,1==h.mode&&(n+=(n?" ":"")+c)),this.startSpan(Math.max(e,o),l),h.opaque)return;let O=t.tree&&t.tree.prop(Yo.mounted);if(O&&O.overlay){let s=t.node.enter(O.overlay[0].from+o,1),h=this.highlighters.filter((t=>!t.scope||t.scope(O.tree.type))),c=t.firstChild();for(let d=0,u=o;;d++){let f=d=p)&&t.nextSibling()););if(!f||p>i)break;u=f.to+o,u>e&&(this.highlightRange(s.cursor(),Math.max(e,f.from+o),Math.min(i,u),"",h),this.startSpan(Math.min(i,u),l))}c&&t.parent()}else if(t.firstChild()){O&&(n="");do{if(!(t.to<=e)){if(t.from>=i)break;this.highlightRange(t,e,i,n,r),this.startSpan(Math.min(i,t.to),l)}}while(t.nextSibling());t.parent()}}}const Ya=Xa.define,Ua=Ya(),ja=Ya(),Da=Ya(ja),Ga=Ya(ja),La=Ya(),Na=Ya(La),Ia=Ya(La),Ba=Ya(),Fa=Ya(Ba),Ha=Ya(),Ja=Ya(),Ka=Ya(),tl=Ya(Ka),el=Ya(),il={comment:Ua,lineComment:Ya(Ua),blockComment:Ya(Ua),docComment:Ya(Ua),name:ja,variableName:Ya(ja),typeName:Da,tagName:Ya(Da),propertyName:Ga,attributeName:Ya(Ga),className:Ya(ja),labelName:Ya(ja),namespace:Ya(ja),macroName:Ya(ja),literal:La,string:Na,docString:Ya(Na),character:Ya(Na),attributeValue:Ya(Na),number:Ia,integer:Ya(Ia),float:Ya(Ia),bool:Ya(La),regexp:Ya(La),escape:Ya(La),color:Ya(La),url:Ya(La),keyword:Ha,self:Ya(Ha),null:Ya(Ha),atom:Ya(Ha),unit:Ya(Ha),modifier:Ya(Ha),operatorKeyword:Ya(Ha),controlKeyword:Ya(Ha),definitionKeyword:Ya(Ha),moduleKeyword:Ya(Ha),operator:Ja,derefOperator:Ya(Ja),arithmeticOperator:Ya(Ja),logicOperator:Ya(Ja),bitwiseOperator:Ya(Ja),compareOperator:Ya(Ja),updateOperator:Ya(Ja),definitionOperator:Ya(Ja),typeOperator:Ya(Ja),controlOperator:Ya(Ja),punctuation:Ka,separator:Ya(Ka),bracket:tl,angleBracket:Ya(tl),squareBracket:Ya(tl),paren:Ya(tl),brace:Ya(tl),content:Ba,heading:Fa,heading1:Ya(Fa),heading2:Ya(Fa),heading3:Ya(Fa),heading4:Ya(Fa),heading5:Ya(Fa),heading6:Ya(Fa),contentSeparator:Ya(Ba),list:Ya(Ba),quote:Ya(Ba),emphasis:Ya(Ba),strong:Ya(Ba),link:Ya(Ba),monospace:Ya(Ba),strikethrough:Ya(Ba),inserted:Ya(),deleted:Ya(),changed:Ya(),invalid:Ya(),meta:el,documentMeta:Ya(el),annotation:Ya(el),processingInstruction:Ya(el),definition:Xa.defineModifier(),constant:Xa.defineModifier(),function:Xa.defineModifier(),standard:Xa.defineModifier(),local:Xa.defineModifier(),special:Xa.defineModifier()};var nl;Va([{tag:il.link,class:"tok-link"},{tag:il.heading,class:"tok-heading"},{tag:il.emphasis,class:"tok-emphasis"},{tag:il.strong,class:"tok-strong"},{tag:il.keyword,class:"tok-keyword"},{tag:il.atom,class:"tok-atom"},{tag:il.bool,class:"tok-bool"},{tag:il.url,class:"tok-url"},{tag:il.labelName,class:"tok-labelName"},{tag:il.inserted,class:"tok-inserted"},{tag:il.deleted,class:"tok-deleted"},{tag:il.literal,class:"tok-literal"},{tag:il.string,class:"tok-string"},{tag:il.number,class:"tok-number"},{tag:[il.regexp,il.escape,il.special(il.string)],class:"tok-string2"},{tag:il.variableName,class:"tok-variableName"},{tag:il.local(il.variableName),class:"tok-variableName tok-local"},{tag:il.definition(il.variableName),class:"tok-variableName tok-definition"},{tag:il.special(il.variableName),class:"tok-variableName2"},{tag:il.definition(il.propertyName),class:"tok-propertyName tok-definition"},{tag:il.typeName,class:"tok-typeName"},{tag:il.namespace,class:"tok-namespace"},{tag:il.className,class:"tok-className"},{tag:il.macroName,class:"tok-macroName"},{tag:il.propertyName,class:"tok-propertyName"},{tag:il.operator,class:"tok-operator"},{tag:il.comment,class:"tok-comment"},{tag:il.meta,class:"tok-meta"},{tag:il.invalid,class:"tok-invalid"},{tag:il.punctuation,class:"tok-punctuation"}]);const rl=new Yo;function sl(t){return A.define({combine:t?e=>e.concat(t):void 0})}const ol=new Yo;class al{constructor(t,e,i=[],n=""){this.data=t,this.name=n,xt.prototype.hasOwnProperty("tree")||Object.defineProperty(xt.prototype,"tree",{get(){return cl(this)}}),this.parser=e,this.extension=[bl.of(this),xt.languageData.of(((t,e,i)=>{let n=ll(t,e,i),r=n.type.prop(rl);if(!r)return[];let s=t.facet(r),o=n.type.prop(ol);if(o){let r=n.resolve(e-n.from,i);for(let e of o)if(e.test(r,t)){let i=t.facet(e.facet);return"replace"==e.type?i:i.concat(s)}}return s}))].concat(i)}isActiveAt(t,e,i=-1){return ll(t,e,i).type.prop(rl)==this.data}findRegions(t){let e=t.facet(bl);if((null==e?void 0:e.data)==this.data)return[{from:0,to:t.doc.length}];if(!e||!e.allowsNesting)return[];let i=[],n=(t,e)=>{if(t.prop(rl)==this.data)return void i.push({from:e,to:e+t.length});let r=t.prop(Yo.mounted);if(r){if(r.tree.prop(rl)==this.data){if(r.overlay)for(let t of r.overlay)i.push({from:t.from+e,to:t.to+e});else i.push({from:e,to:e+t.length});return}if(r.overlay){let t=i.length;if(n(r.tree,r.overlay[0].from+e),i.length>t)return}}for(let i=0;it.isTop?e:void 0))]}),t.name)}configure(t,e){return new hl(this.data,this.parser.configure(t),e||this.name)}get allowsNesting(){return this.parser.hasWrappers()}}function cl(t){let e=t.field(al.state,!1);return e?e.tree:Bo.empty}class Ol{constructor(t){this.doc=t,this.cursorPos=0,this.string="",this.cursor=t.iter()}get length(){return this.doc.length}syncTo(t){return this.string=this.cursor.next(t-this.cursorPos).value,this.cursorPos=t+this.string.length,this.cursorPos-this.string.length}chunk(t){return this.syncTo(t),this.string}get lineChunks(){return!0}read(t,e){let i=this.cursorPos-this.string.length;return t=this.cursorPos?this.doc.sliceString(t,e):this.string.slice(t-i,e-i)}}let dl=null;class ul{constructor(t,e,i=[],n,r,s,o,a){this.parser=t,this.state=e,this.fragments=i,this.tree=n,this.treeLen=r,this.viewport=s,this.skipped=o,this.scheduleOn=a,this.parse=null,this.tempSkipped=[]}static create(t,e,i){return new ul(t,e,[],Bo.empty,0,i,[],null)}startParse(){return this.parser.startParse(new Ol(this.state.doc),this.fragments)}work(t,e){return null!=e&&e>=this.state.doc.length&&(e=void 0),this.tree!=Bo.empty&&this.isDone(null!=e?e:this.state.doc.length)?(this.takeTree(),!0):this.withContext((()=>{var i;if("number"==typeof t){let e=Date.now()+t;t=()=>Date.now()>e}for(this.parse||(this.parse=this.startParse()),null!=e&&(null==this.parse.stoppedAt||this.parse.stoppedAt>e)&&e=this.treeLen&&((null==this.parse.stoppedAt||this.parse.stoppedAt>t)&&this.parse.stopAt(t),this.withContext((()=>{for(;!(e=this.parse.advance()););})),this.treeLen=t,this.tree=e,this.fragments=this.withoutTempSkipped(fa.addTree(this.tree,this.fragments,!0)),this.parse=null)}withContext(t){let e=dl;dl=this;try{return t()}finally{dl=e}}withoutTempSkipped(t){for(let e;e=this.tempSkipped.pop();)t=fl(t,e.from,e.to);return t}changes(t,e){let{fragments:i,tree:n,treeLen:r,viewport:s,skipped:o}=this;if(this.takeTree(),!t.empty){let e=[];if(t.iterChangedRanges(((t,i,n,r)=>e.push({fromA:t,toA:i,fromB:n,toB:r}))),i=fa.applyChanges(i,e),n=Bo.empty,r=0,s={from:t.mapPos(s.from,-1),to:t.mapPos(s.to,1)},this.skipped.length){o=[];for(let e of this.skipped){let i=t.mapPos(e.from,1),n=t.mapPos(e.to,-1);it.from&&(this.fragments=fl(this.fragments,i,n),this.skipped.splice(e--,1))}return!(this.skipped.length>=e)&&(this.reset(),!0)}reset(){this.parse&&(this.takeTree(),this.parse=null)}skipUntilInView(t,e){this.skipped.push({from:t,to:e})}static getSkippingParser(t){return new class extends pa{createParse(e,i,n){let r=n[0].from,s=n[n.length-1].to,o={parsedPos:r,advance(){let e=dl;if(e){for(let t of n)e.tempSkipped.push(t);t&&(e.scheduleOn=e.scheduleOn?Promise.all([e.scheduleOn,t]):t)}return this.parsedPos=s,new Bo(Do.none,[],[],s-r)},stoppedAt:null,stopAt(){}};return o}}}isDone(t){t=Math.min(t,this.state.doc.length);let e=this.fragments;return this.treeLen>=t&&e.length&&0==e[0].from&&e[0].to>=t}static get(){return dl}}function fl(t,e,i){return fa.applyChanges(t,[{fromA:e,toA:i,fromB:e,toB:i}])}class pl{constructor(t){this.context=t,this.tree=t.tree}apply(t){if(!t.docChanged&&this.tree==this.context.tree)return this;let e=this.context.changes(t.changes,t.state),i=this.context.treeLen==t.startState.doc.length?void 0:Math.max(t.changes.mapPos(this.context.treeLen),e.viewport.to);return e.work(20,i)||e.takeTree(),new pl(e)}static init(t){let e=Math.min(3e3,t.doc.length),i=ul.create(t.facet(bl).parser,t,{from:0,to:e});return i.work(20,e)||i.takeTree(),new pl(i)}}al.state=j.define({create:pl.init,update(t,e){for(let t of e.effects)if(t.is(al.setState))return t.value;return e.startState.facet(bl)!=e.state.facet(bl)?pl.init(e.state):t.apply(e)}});let ml=t=>{let e=setTimeout((()=>t()),500);return()=>clearTimeout(e)};"undefined"!=typeof requestIdleCallback&&(ml=t=>{let e=-1,i=setTimeout((()=>{e=requestIdleCallback(t,{timeout:400})}),100);return()=>e<0?clearTimeout(i):cancelIdleCallback(e)});const gl="undefined"!=typeof navigator&&(null===(nl=navigator.scheduling)||void 0===nl?void 0:nl.isInputPending)?()=>navigator.scheduling.isInputPending():null,Ql=Fi.fromClass(class{constructor(t){this.view=t,this.working=null,this.workScheduled=0,this.chunkEnd=-1,this.chunkBudget=-1,this.work=this.work.bind(this),this.scheduleWork()}update(t){let e=this.view.state.field(al.state).context;(e.updateViewport(t.view.viewport)||this.view.viewport.to>e.treeLen)&&this.scheduleWork(),(t.docChanged||t.selectionSet)&&(this.view.hasFocus&&(this.chunkBudget+=50),this.scheduleWork()),this.checkAsyncSchedule(e)}scheduleWork(){if(this.working)return;let{state:t}=this.view,e=t.field(al.state);e.tree==e.context.tree&&e.context.isDone(t.doc.length)||(this.working=ml(this.work))}work(t){this.working=null;let e=Date.now();if(this.chunkEndn+1e3,a=r.context.work((()=>gl&&gl()||Date.now()>s),n+(o?0:1e5));this.chunkBudget-=Date.now()-e,(a||this.chunkBudget<=0)&&(r.context.takeTree(),this.view.dispatch({effects:al.setState.of(new pl(r.context))})),this.chunkBudget>0&&(!a||o)&&this.scheduleWork(),this.checkAsyncSchedule(r.context)}checkAsyncSchedule(t){t.scheduleOn&&(this.workScheduled++,t.scheduleOn.then((()=>this.scheduleWork())).catch((t=>Li(this.view.state,t))).then((()=>this.workScheduled--)),t.scheduleOn=null)}destroy(){this.working&&this.working()}isWorking(){return!!(this.working||this.workScheduled>0)}},{eventHandlers:{focus(){this.scheduleWork()}}}),bl=A.define({combine:t=>t.length?t[0]:null,enables:t=>[al.state,Ql,Ir.contentAttributes.compute([t],(e=>{let i=e.facet(t);return i&&i.name?{"data-language":i.name}:{}}))]});class Sl{constructor(t,e=[]){this.language=t,this.support=e,this.extension=[t,e]}}class vl{constructor(t,e,i,n,r,s=void 0){this.name=t,this.alias=e,this.extensions=i,this.filename=n,this.loadFunc=r,this.support=s,this.loading=null}load(){return this.loading||(this.loading=this.loadFunc().then((t=>this.support=t),(t=>{throw this.loading=null,t})))}static of(t){let{load:e,support:i}=t;if(!e){if(!i)throw new RangeError("Must pass either 'load' or 'support' to LanguageDescription.of");e=()=>Promise.resolve(i)}return new vl(t.name,(t.alias||[]).concat(t.name).map((t=>t.toLowerCase())),t.extensions||[],t.filename,e,i)}static matchFilename(t,e){for(let i of t)if(i.filename&&i.filename.test(e))return i;let i=/\.([^.]+)$/.exec(e);if(i)for(let e of t)if(e.extensions.indexOf(i[1])>-1)return e;return null}static matchLanguageName(t,e,i=!0){e=e.toLowerCase();for(let i of t)if(i.alias.some((t=>t==e)))return i;if(i)for(let i of t)for(let t of i.alias){let n=e.indexOf(t);if(n>-1&&(t.length>2||!/\w/.test(e[n-1])&&!/\w/.test(e[n+t.length])))return i}return null}}const wl=A.define(),yl=A.define({combine:t=>{if(!t.length)return" ";let e=t[0];if(!e||/\S/.test(e)||Array.from(e).some((t=>t!=e[0])))throw new Error("Invalid indent unit: "+JSON.stringify(t[0]));return e}});function xl(t){let e=t.facet(yl);return 9==e.charCodeAt(0)?t.tabSize*e.length:e.length}function kl(t,e){let i="",n=t.tabSize,r=t.facet(yl)[0];if("\t"==r){for(;e>=n;)i+="\t",e-=n;r=" "}for(let t=0;t=e?function(t,e,i){let n=e.resolveStack(i),r=n.node.enterUnfinishedNodesBefore(i);if(r!=n.node){let t=[];for(let e=r;e!=n.node;e=e.parent)t.push(e);for(let e=t.length-1;e>=0;e--)n={node:t[e],next:n}}return _l(n,t,i)}(t,i,e):null}class $l{constructor(t,e={}){this.state=t,this.options=e,this.unit=xl(t)}lineAt(t,e=1){let i=this.state.doc.lineAt(t),{simulateBreak:n,simulateDoubleBreak:r}=this.options;return null!=n&&n>=i.from&&n<=i.to?r&&n==t?{text:"",from:t}:(e<0?n-1&&(r+=s-this.countColumn(i,i.search(/\S|$/))),r}countColumn(t,e=t.length){return Ut(t,this.state.tabSize,e)}lineIndent(t,e=1){let{text:i,from:n}=this.lineAt(t,e),r=this.options.overrideIndentation;if(r){let t=r(n);if(t>-1)return t}return this.countColumn(i,i.search(/\S|$/))}get simulatedBreak(){return this.options.simulateBreak||null}}const Tl=new Yo;function _l(t,e,i){for(let n=t;n;n=n.next){let t=Rl(n.node);if(t)return t(Xl.create(e,i,n))}return 0}function Rl(t){let e=t.type.prop(Tl);if(e)return e;let i,n=t.firstChild;if(n&&(i=n.type.prop(Yo.closedBy))){let e=t.lastChild,n=e&&i.indexOf(e.name)>-1;return t=>Wl(t,!0,1,void 0,n&&!function(t){return t.pos==t.options.simulateBreak&&t.options.simulateDoubleBreak}(t)?e.from:void 0)}return null==t.parent?Zl:null}function Zl(){return 0}class Xl extends $l{constructor(t,e,i){super(t.state,t.options),this.base=t,this.pos=e,this.context=i}get node(){return this.context.node}static create(t,e,i){return new Xl(t,e,i)}get textAfter(){return this.textAfterPos(this.pos)}get baseIndent(){return this.baseIndentFor(this.node)}baseIndentFor(t){let e=this.state.doc.lineAt(t.from);for(;;){let i=t.resolve(e.from);for(;i.parent&&i.parent.from==i.from;)i=i.parent;if(Cl(i,t))break;e=this.state.doc.lineAt(i.from)}return this.lineIndent(e.from)}continue(){return _l(this.context.next,this.base,this.pos)}}function Cl(t,e){for(let i=e;i;i=i.parent)if(t==i)return!0;return!1}function ql({closing:t,align:e=!0,units:i=1}){return n=>Wl(n,e,i,t)}function Wl(t,e,i,n,r){let s=t.textAfter,o=s.match(/^\s*/)[0].length,a=n&&s.slice(o,o+n.length)==n||r==t.pos+o,l=e?function(t){let e=t.node,i=e.childAfter(e.from),n=e.lastChild;if(!i)return null;let r=t.options.simulateBreak,s=t.state.doc.lineAt(i.from),o=null==r||r<=s.from?s.to:Math.min(s.to,r);for(let t=i.to;;){let r=e.childAfter(t);if(!r||r==n)return null;if(!r.type.isSkipped)return r.from{let n=t&&t.test(i.textAfter);return i.baseIndent+(n?0:e*i.unit)}}const zl=A.define(),Vl=new Yo;function Ml(t){let e=t.firstChild,i=t.lastChild;return e&&e.toi)continue;if(r&&o.from=e&&n.to>i&&(r=n)}}return r}(t,e,i)}function Ul(t,e){let i=e.mapPos(t.from,1),n=e.mapPos(t.to,-1);return i>=n?void 0:{from:i,to:n}}const jl=dt.define({map:Ul}),Dl=dt.define({map:Ul});function Gl(t){let e=[];for(let{head:i}of t.state.selection.ranges)e.some((t=>t.from<=i&&t.to>=i))||e.push(t.lineBlockAt(i));return e}const Ll=j.define({create:()=>si.none,update(t,e){t=t.map(e.changes);for(let i of e.effects)if(i.is(jl)&&!Il(t,i.value.from,i.value.to)){let{preparePlaceholder:n}=e.state.facet(Kl),r=n?si.replace({widget:new nh(n(e.state,i.value))}):ih;t=t.update({add:[r.range(i.value.from,i.value.to)]})}else i.is(Dl)&&(t=t.update({filter:(t,e)=>i.value.from!=t||i.value.to!=e,filterFrom:i.value.from,filterTo:i.value.to}));if(e.selection){let i=!1,{head:n}=e.selection.main;t.between(n,n,((t,e)=>{tn&&(i=!0)})),i&&(t=t.update({filterFrom:n,filterTo:n,filter:(t,e)=>e<=n||t>=n}))}return t},provide:t=>Ir.decorations.from(t),toJSON(t,e){let i=[];return t.between(0,e.doc.length,((t,e)=>{i.push(t,e)})),i},fromJSON(t){if(!Array.isArray(t)||t.length%2)throw new RangeError("Invalid JSON for fold state");let e=[];for(let i=0;i{(!r||r.from>t)&&(r={from:t,to:e})})),r}function Il(t,e,i){let n=!1;return t.between(e,e,((t,r)=>{t==e&&r==i&&(n=!0)})),n}function Bl(t,e){return t.field(Ll,!1)?e:e.concat(dt.appendConfig.of(th()))}function Fl(t,e,i=!0){let n=t.state.doc.lineAt(e.from).number,r=t.state.doc.lineAt(e.to).number;return Ir.announce.of(`${t.state.phrase(i?"Folded lines":"Unfolded lines")} ${n} ${t.state.phrase("to")} ${r}.`)}const Hl=[{key:"Ctrl-Shift-[",mac:"Cmd-Alt-[",run:t=>{for(let e of Gl(t)){let i=Yl(t.state,e.from,e.to);if(i)return t.dispatch({effects:Bl(t.state,[jl.of(i),Fl(t,i)])}),!0}return!1}},{key:"Ctrl-Shift-]",mac:"Cmd-Alt-]",run:t=>{if(!t.state.field(Ll,!1))return!1;let e=[];for(let i of Gl(t)){let n=Nl(t.state,i.from,i.to);n&&e.push(Dl.of(n),Fl(t,n,!1))}return e.length&&t.dispatch({effects:e}),e.length>0}},{key:"Ctrl-Alt-[",run:t=>{let{state:e}=t,i=[];for(let n=0;n{let e=t.state.field(Ll,!1);if(!e||!e.size)return!1;let i=[];return e.between(0,t.state.doc.length,((t,e)=>{i.push(Dl.of({from:t,to:e}))})),t.dispatch({effects:i}),!0}}],Jl={placeholderDOM:null,preparePlaceholder:null,placeholderText:"…"},Kl=A.define({combine:t=>kt(t,Jl)});function th(t){return[Ll,ah]}function eh(t,e){let{state:i}=t,n=i.facet(Kl),r=e=>{let i=t.lineBlockAt(t.posAtDOM(e.target)),n=Nl(t.state,i.from,i.to);n&&t.dispatch({effects:Dl.of(n)}),e.preventDefault()};if(n.placeholderDOM)return n.placeholderDOM(t,r,e);let s=document.createElement("span");return s.textContent=n.placeholderText,s.setAttribute("aria-label",i.phrase("folded code")),s.title=i.phrase("unfold"),s.className="cm-foldPlaceholder",s.onclick=r,s}const ih=si.replace({widget:new class extends ni{toDOM(t){return eh(t,null)}}});class nh extends ni{constructor(t){super(),this.value=t}eq(t){return this.value==t.value}toDOM(t){return eh(t,this.value)}}const rh={openText:"⌄",closedText:"›",markerDOM:null,domEventHandlers:{},foldingChanged:()=>!1};class sh extends mo{constructor(t,e){super(),this.config=t,this.open=e}eq(t){return this.config==t.config&&this.open==t.open}toDOM(t){if(this.config.markerDOM)return this.config.markerDOM(this.open);let e=document.createElement("span");return e.textContent=this.open?this.config.openText:this.config.closedText,e.title=t.state.phrase(this.open?"Fold line":"Unfold line"),e}}function oh(t={}){let e=Object.assign(Object.assign({},rh),t),i=new sh(e,!0),n=new sh(e,!1),r=Fi.fromClass(class{constructor(t){this.from=t.viewport.from,this.markers=this.buildMarkers(t)}update(t){(t.docChanged||t.viewportChanged||t.startState.facet(bl)!=t.state.facet(bl)||t.startState.field(Ll,!1)!=t.state.field(Ll,!1)||cl(t.startState)!=cl(t.state)||e.foldingChanged(t))&&(this.markers=this.buildMarkers(t.view))}buildMarkers(t){let e=new Zt;for(let r of t.viewportLineBlocks){let s=Nl(t.state,r.from,r.to)?n:Yl(t.state,r.from,r.to)?i:null;s&&e.add(r.from,r.from,s)}return e.finish()}}),{domEventHandlers:s}=e;return[r,So({class:"cm-foldGutter",markers(t){var e;return(null===(e=t.plugin(r))||void 0===e?void 0:e.markers)||Rt.empty},initialSpacer:()=>new sh(e,!1),domEventHandlers:Object.assign(Object.assign({},s),{click:(t,e,i)=>{if(s.click&&s.click(t,e,i))return!0;let n=Nl(t.state,e.from,e.to);if(n)return t.dispatch({effects:Dl.of(n)}),!0;let r=Yl(t.state,e.from,e.to);return!!r&&(t.dispatch({effects:jl.of(r)}),!0)}})}),th()]}const ah=Ir.baseTheme({".cm-foldPlaceholder":{backgroundColor:"#eee",border:"1px solid #ddd",color:"#888",borderRadius:".2em",margin:"0 1px",padding:"0 1px",cursor:"pointer"},".cm-foldGutter span":{padding:"0 1px",cursor:"pointer"}});class lh{constructor(t,e){let i;function n(t){let e=Nt.newName();return(i||(i=Object.create(null)))["."+e]=t,e}this.specs=t;const r="string"==typeof e.all?e.all:e.all?n(e.all):void 0,s=e.scope;this.scope=s instanceof al?t=>t.prop(rl)==s.data:s?t=>t==s:void 0,this.style=Va(t.map((t=>({tag:t.tag,class:t.class||n(Object.assign({},t,{tag:null}))}))),{all:r}).style,this.module=i?new Nt(i):null,this.themeType=e.themeType}static define(t,e){return new lh(t,e||{})}}const hh=A.define(),ch=A.define({combine:t=>t.length?[t[0]]:null});function Oh(t){let e=t.facet(hh);return e.length?e:t.facet(ch)}function dh(t,e){let i,n=[fh];return t instanceof lh&&(t.module&&n.push(Ir.styleModule.of(t.module)),i=t.themeType),(null==e?void 0:e.fallback)?n.push(ch.of(t)):i?n.push(hh.computeN([Ir.darkTheme],(e=>e.facet(Ir.darkTheme)==("dark"==i)?[t]:[]))):n.push(hh.of(t)),n}class uh{constructor(t){this.markCache=Object.create(null),this.tree=cl(t.state),this.decorations=this.buildDeco(t,Oh(t.state)),this.decoratedTo=t.viewport.to}update(t){let e=cl(t.state),i=Oh(t.state),n=i!=Oh(t.startState),{viewport:r}=t.view,s=t.changes.mapPos(this.decoratedTo,1);e.length=r.to?(this.decorations=this.decorations.map(t.changes),this.decoratedTo=s):(e!=this.tree||t.viewportChanged||n)&&(this.tree=e,this.decorations=this.buildDeco(t.view,i),this.decoratedTo=r.to)}buildDeco(t,e){if(!e||!this.tree.length)return si.none;let i=new Zt;for(let{from:n,to:r}of t.visibleRanges)Ma(this.tree,e,((t,e,n)=>{i.add(t,e,this.markCache[n]||(this.markCache[n]=si.mark({class:n})))}),n,r);return i.finish()}}const fh=B.high(Fi.fromClass(uh,{decorations:t=>t.decorations})),ph=lh.define([{tag:il.meta,color:"#404740"},{tag:il.link,textDecoration:"underline"},{tag:il.heading,textDecoration:"underline",fontWeight:"bold"},{tag:il.emphasis,fontStyle:"italic"},{tag:il.strong,fontWeight:"bold"},{tag:il.strikethrough,textDecoration:"line-through"},{tag:il.keyword,color:"#708"},{tag:[il.atom,il.bool,il.url,il.contentSeparator,il.labelName],color:"#219"},{tag:[il.literal,il.inserted],color:"#164"},{tag:[il.string,il.deleted],color:"#a11"},{tag:[il.regexp,il.escape,il.special(il.string)],color:"#e40"},{tag:il.definition(il.variableName),color:"#00f"},{tag:il.local(il.variableName),color:"#30a"},{tag:[il.typeName,il.namespace],color:"#085"},{tag:il.className,color:"#167"},{tag:[il.special(il.variableName),il.macroName],color:"#256"},{tag:il.definition(il.propertyName),color:"#00c"},{tag:il.comment,color:"#940"},{tag:il.invalid,color:"#f00"}]),mh=Ir.baseTheme({"&.cm-focused .cm-matchingBracket":{backgroundColor:"#328c8252"},"&.cm-focused .cm-nonmatchingBracket":{backgroundColor:"#bb555544"}}),gh=1e4,Qh="()[]{}",bh=A.define({combine:t=>kt(t,{afterCursor:!0,brackets:Qh,maxScanDistance:gh,renderMatch:wh})}),Sh=si.mark({class:"cm-matchingBracket"}),vh=si.mark({class:"cm-nonmatchingBracket"});function wh(t){let e=[],i=t.matched?Sh:vh;return e.push(i.range(t.start.from,t.start.to)),t.end&&e.push(i.range(t.end.from,t.end.to)),e}const yh=j.define({create:()=>si.none,update(t,e){if(!e.docChanged&&!e.selection)return t;let i=[],n=e.state.facet(bh);for(let t of e.state.selection.ranges){if(!t.empty)continue;let r=_h(e.state,t.head,-1,n)||t.head>0&&_h(e.state,t.head-1,1,n)||n.afterCursor&&(_h(e.state,t.head,1,n)||t.headIr.decorations.from(t)}),xh=[yh,mh];function kh(t={}){return[bh.of(t),xh]}const Ph=new Yo;function $h(t,e,i){let n=t.prop(e<0?Yo.openedBy:Yo.closedBy);if(n)return n;if(1==t.name.length){let n=i.indexOf(t.name);if(n>-1&&n%2==(e<0?1:0))return[i[n+e]]}return null}function Th(t){let e=t.type.prop(Ph);return e?e(t.node):t}function _h(t,e,i,n={}){let r=n.maxScanDistance||gh,s=n.brackets||Qh,o=cl(t),a=o.resolveInner(e,i);for(let n=a;n;n=n.parent){let r=$h(n.type,i,s);if(r&&n.from0?e>=o.from&&eo.from&&e<=o.to))return Rh(t,e,i,n,o,r,s)}}return function(t,e,i,n,r,s,o){let a=i<0?t.sliceDoc(e-1,e):t.sliceDoc(e,e+1),l=o.indexOf(a);if(l<0||l%2==0!=i>0)return null;let h={from:i<0?e-1:e,to:i>0?e+1:e},c=t.doc.iterRange(e,i>0?t.doc.length:0),O=0;for(let t=0;!c.next().done&&t<=s;){let s=c.value;i<0&&(t+=s.length);let a=e+t*i;for(let t=i>0?0:s.length-1,e=i>0?s.length:-1;t!=e;t+=i){let e=o.indexOf(s[t]);if(!(e<0||n.resolveInner(a+t,1).type!=r))if(e%2==0==i>0)O++;else{if(1==O)return{start:h,end:{from:a+t,to:a+t+1},matched:e>>1==l>>1};O--}}i>0&&(t+=s.length)}return c.done?{start:h,matched:!1}:null}(t,e,i,o,a.type,r,s)}function Rh(t,e,i,n,r,s,o){let a=n.parent,l={from:r.from,to:r.to},h=0,c=null==a?void 0:a.cursor();if(c&&(i<0?c.childBefore(n.from):c.childAfter(n.to)))do{if(i<0?c.to<=n.from:c.from>=n.to){if(0==h&&s.indexOf(c.type.name)>-1&&c.from-1||(Ch.push(t),console.warn(e))}function zh(t,e){let i=[];for(let n of e.split(" ")){let e=[];for(let i of n.split(".")){let n=t[i]||il[i];n?"function"==typeof n?e.length?e=e.map(n):Ah(i,`Modifier ${i} used at start of tag`):e.length?Ah(i,`Tag ${i} used as modifier`):e=Array.isArray(n)?n:[n]:Ah(i,`Unknown highlighting tag ${i}`)}for(let t of e)i.push(t)}if(!i.length)return 0;let n=e.replace(/ /g,"_"),r=n+" "+i.map((t=>t.id)),s=qh[r];if(s)return s.id;let o=qh[r]=Do.define({id:Xh.length,name:n,props:[Wa({[n]:i})]});return Xh.push(o),o.id}fi.RTL,fi.LTR;function Vh(t,e){return({state:i,dispatch:n})=>{if(i.readOnly)return!1;let r=t(e,i);return!!r&&(n(i.update(r)),!0)}}const Mh=Vh(Gh,0),Eh=Vh(Dh,0),Yh=Vh(((t,e)=>Dh(t,e,function(t){let e=[];for(let i of t.selection.ranges){let n=t.doc.lineAt(i.from),r=i.to<=n.to?n:t.doc.lineAt(i.to),s=e.length-1;s>=0&&e[s].to>n.from?e[s].to=r.to:e.push({from:n.from+/^\s*/.exec(n.text)[0].length,to:r.to})}return e}(e))),0);function Uh(t,e){let i=t.languageDataAt("commentTokens",e);return i.length?i[0]:{}}const jh=50;function Dh(t,e,i=e.selection.ranges){let n=i.map((t=>Uh(e,t.from).block));if(!n.every((t=>t)))return null;let r=i.map(((t,i)=>function(t,{open:e,close:i},n,r){let s,o,a=t.sliceDoc(n-jh,n),l=t.sliceDoc(r,r+jh),h=/\s*$/.exec(a)[0].length,c=/^\s*/.exec(l)[0].length,O=a.length-h;if(a.slice(O-e.length,O)==e&&l.slice(c,c+i.length)==i)return{open:{pos:n-h,margin:h&&1},close:{pos:r+c,margin:c&&1}};r-n<=2*jh?s=o=t.sliceDoc(n,r):(s=t.sliceDoc(n,n+jh),o=t.sliceDoc(r-jh,r));let d=/^\s*/.exec(s)[0].length,u=/\s*$/.exec(o)[0].length,f=o.length-u-i.length;return s.slice(d,d+e.length)==e&&o.slice(f,f+i.length)==i?{open:{pos:n+d+e.length,margin:/\s/.test(s.charAt(d+e.length))?1:0},close:{pos:r-u-i.length,margin:/\s/.test(o.charAt(f-1))?1:0}}:null}(e,n[i],t.from,t.to)));if(2!=t&&!r.every((t=>t)))return{changes:e.changes(i.map(((t,e)=>r[e]?[]:[{from:t.from,insert:n[e].open+" "},{from:t.to,insert:" "+n[e].close}])))};if(1!=t&&r.some((t=>t))){let t=[];for(let e,i=0;ir&&(t==s||s>l.from)){r=l.from;let t=/^\s*/.exec(l.text)[0].length,e=t==l.length,i=l.text.slice(t,t+a.length)==a?t:-1;tt.comment<0&&(!t.empty||t.single)))){let t=[];for(let{line:e,token:i,indent:r,empty:s,single:o}of n)!o&&s||t.push({from:e.from+r,insert:i+" "});let i=e.changes(t);return{changes:i,selection:e.selection.map(i,1)}}if(1!=t&&n.some((t=>t.comment>=0))){let t=[];for(let{line:e,comment:i,token:r}of n)if(i>=0){let n=e.from+i,s=n+r.length;" "==e.text[s-e.from]&&s++,t.push({from:n,to:s})}return{changes:t}}return null}const Lh=ht.define(),Nh=ht.define(),Ih=A.define(),Bh=A.define({combine:t=>kt(t,{minDepth:100,newGroupDelay:500,joinToEvent:(t,e)=>e},{minDepth:Math.max,newGroupDelay:Math.min,joinToEvent:(t,e)=>(i,n)=>t(i,n)||e(i,n)})}),Fh=j.define({create:()=>uc.empty,update(t,e){let i=e.state.facet(Bh),n=e.annotation(Lh);if(n){let r=nc.fromTransaction(e,n.selection),s=n.side,o=0==s?t.undone:t.done;return o=r?rc(o,o.length,i.minDepth,r):lc(o,e.startState.selection),new uc(0==s?n.rest:o,0==s?o:n.rest)}let r=e.annotation(Nh);if("full"!=r&&"before"!=r||(t=t.isolate()),!1===e.annotation(ut.addToHistory))return e.changes.empty?t:t.addMapping(e.changes.desc);let s=nc.fromTransaction(e),o=e.annotation(ut.time),a=e.annotation(ut.userEvent);return s?t=t.addChanges(s,o,a,i,e):e.selection&&(t=t.addSelection(e.startState.selection,o,a,i.newGroupDelay)),"full"!=r&&"after"!=r||(t=t.isolate()),t},toJSON:t=>({done:t.done.map((t=>t.toJSON())),undone:t.undone.map((t=>t.toJSON()))}),fromJSON:t=>new uc(t.done.map(nc.fromJSON),t.undone.map(nc.fromJSON))});function Hh(t={}){return[Fh,Bh.of(t),Ir.domEventHandlers({beforeinput(t,e){let i="historyUndo"==t.inputType?Kh:"historyRedo"==t.inputType?tc:null;return!!i&&(t.preventDefault(),i(e))}})]}function Jh(t,e){return function({state:i,dispatch:n}){if(!e&&i.readOnly)return!1;let r=i.field(Fh,!1);if(!r)return!1;let s=r.pop(t,i,e);return!!s&&(n(s),!0)}}const Kh=Jh(0,!1),tc=Jh(1,!1),ec=Jh(0,!0),ic=Jh(1,!0);class nc{constructor(t,e,i,n,r){this.changes=t,this.effects=e,this.mapped=i,this.startSelection=n,this.selectionsAfter=r}setSelAfter(t){return new nc(this.changes,this.effects,this.mapped,this.startSelection,t)}toJSON(){var t,e,i;return{changes:null===(t=this.changes)||void 0===t?void 0:t.toJSON(),mapped:null===(e=this.mapped)||void 0===e?void 0:e.toJSON(),startSelection:null===(i=this.startSelection)||void 0===i?void 0:i.toJSON(),selectionsAfter:this.selectionsAfter.map((t=>t.toJSON()))}}static fromJSON(t){return new nc(t.changes&&k.fromJSON(t.changes),[],t.mapped&&x.fromJSON(t.mapped),t.startSelection&&C.fromJSON(t.startSelection),t.selectionsAfter.map(C.fromJSON))}static fromTransaction(t,e){let i=oc;for(let e of t.startState.facet(Ih)){let n=e(t);n.length&&(i=i.concat(n))}return!i.length&&t.changes.empty?null:new nc(t.changes.invert(t.startState.doc),i,void 0,e||t.startState.selection,oc)}static selection(t){return new nc(void 0,oc,void 0,void 0,t)}}function rc(t,e,i,n){let r=e+1>i+20?e-i-1:0,s=t.slice(r,e);return s.push(n),s}function sc(t,e){return t.length?e.length?t.concat(e):t:e}const oc=[],ac=200;function lc(t,e){if(t.length){let i=t[t.length-1],n=i.selectionsAfter.slice(Math.max(0,i.selectionsAfter.length-ac));return n.length&&n[n.length-1].eq(e)?t:(n.push(e),rc(t,t.length-1,1e9,i.setSelAfter(n)))}return[nc.selection([e])]}function hc(t){let e=t[t.length-1],i=t.slice();return i[t.length-1]=e.setSelAfter(e.selectionsAfter.slice(0,e.selectionsAfter.length-1)),i}function cc(t,e){if(!t.length)return t;let i=t.length,n=oc;for(;i;){let r=Oc(t[i-1],e,n);if(r.changes&&!r.changes.empty||r.effects.length){let e=t.slice(0,i);return e[i-1]=r,e}e=r.mapped,i--,n=r.selectionsAfter}return n.length?[nc.selection(n)]:oc}function Oc(t,e,i){let n=sc(t.selectionsAfter.length?t.selectionsAfter.map((t=>t.map(e))):oc,i);if(!t.changes)return nc.selection(n);let r=t.changes.map(e),s=e.mapDesc(t.changes,!0),o=t.mapped?t.mapped.composeDesc(s):s;return new nc(r,dt.mapEffects(t.effects,e),o,t.startSelection.map(s),n)}const dc=/^(input\.type|delete)($|\.)/;class uc{constructor(t,e,i=0,n=void 0){this.done=t,this.undone=e,this.prevTime=i,this.prevUserEvent=n}isolate(){return this.prevTime?new uc(this.done,this.undone):this}addChanges(t,e,i,n,r){let s=this.done,o=s[s.length-1];return s=o&&o.changes&&!o.changes.empty&&t.changes&&(!i||dc.test(i))&&(!o.selectionsAfter.length&&e-this.prevTimei.push(t,e))),e.iterChangedRanges(((t,e,r,s)=>{for(let t=0;t=e&&r<=o&&(n=!0)}})),n}(o.changes,t.changes))||"input.type.compose"==i)?rc(s,s.length-1,n.minDepth,new nc(t.changes.compose(o.changes),sc(t.effects,o.effects),o.mapped,o.startSelection,oc)):rc(s,s.length,n.minDepth,t),new uc(s,oc,e,i)}addSelection(t,e,i,n){let r=this.done.length?this.done[this.done.length-1].selectionsAfter:oc;return r.length>0&&e-this.prevTimet.empty!=e.ranges[i].empty)).length}(r[r.length-1],t)?this:new uc(lc(this.done,t),this.undone,e,i)}addMapping(t){return new uc(cc(this.done,t),cc(this.undone,t),this.prevTime,this.prevUserEvent)}pop(t,e,i){let n=0==t?this.done:this.undone;if(0==n.length)return null;let r=n[n.length-1],s=r.selectionsAfter[0]||e.selection;if(i&&r.selectionsAfter.length)return e.update({selection:r.selectionsAfter[r.selectionsAfter.length-1],annotations:Lh.of({side:t,rest:hc(n),selection:s}),userEvent:0==t?"select.undo":"select.redo",scrollIntoView:!0});if(r.changes){let i=1==n.length?oc:n.slice(0,n.length-1);return r.mapped&&(i=cc(i,r.mapped)),e.update({changes:r.changes,selection:r.startSelection,effects:r.effects,annotations:Lh.of({side:t,rest:i,selection:s}),filter:!1,userEvent:0==t?"undo":"redo",scrollIntoView:!0})}return null}}uc.empty=new uc(oc,oc);const fc=[{key:"Mod-z",run:Kh,preventDefault:!0},{key:"Mod-y",mac:"Mod-Shift-z",run:tc,preventDefault:!0},{linux:"Ctrl-Shift-z",run:tc,preventDefault:!0},{key:"Mod-u",run:ec,preventDefault:!0},{key:"Alt-u",mac:"Mod-Shift-u",run:ic,preventDefault:!0}];function pc(t,e){return C.create(t.ranges.map(e),t.mainIndex)}function mc(t,e){return t.update({selection:e,scrollIntoView:!0,userEvent:"select"})}function gc({state:t,dispatch:e},i){let n=pc(t.selection,i);return!n.eq(t.selection,!0)&&(e(mc(t,n)),!0)}function Qc(t,e){return C.cursor(e?t.to:t.from)}function bc(t,e){return gc(t,(i=>i.empty?t.moveByChar(i,e):Qc(i,e)))}function Sc(t){return t.textDirectionAt(t.state.selection.main.head)==fi.LTR}const vc=t=>bc(t,!Sc(t)),wc=t=>bc(t,Sc(t));function yc(t,e){return gc(t,(i=>i.empty?t.moveByGroup(i,e):Qc(i,e)))}function xc(t,e,i){if(e.type.prop(i))return!0;let n=e.to-e.from;return n&&(n>2||/[^\s,.;:]/.test(t.sliceDoc(e.from,e.to)))||e.firstChild}function kc(t,e,i){let n,r,s=cl(t).resolveInner(e.head),o=i?Yo.closedBy:Yo.openedBy;for(let n=e.head;;){let e=i?s.childAfter(n):s.childBefore(n);if(!e)break;xc(t,e,o)?s=e:n=i?e.to:e.from}return r=s.type.prop(o)&&(n=i?_h(t,s.from,1):_h(t,s.to,-1))&&n.matched?i?n.end.to:n.end.from:i?s.to:s.from,C.cursor(r,i?-1:1)}function Pc(t,e){return gc(t,(i=>{if(!i.empty)return Qc(i,e);let n=t.moveVertically(i,e);return n.head!=i.head?n:t.moveToLineBoundary(i,e)}))}const $c=t=>Pc(t,!1),Tc=t=>Pc(t,!0);function _c(t){let e,i=t.scrollDOM.clientHeighti.empty?t.moveVertically(i,e,n.height):Qc(i,e)));if(s.eq(r.selection))return!1;if(n.selfScroll){let e=t.coordsAtPos(r.selection.main.head),o=t.scrollDOM.getBoundingClientRect(),a=o.top+n.marginTop,l=o.bottom-n.marginBottom;e&&e.top>a&&e.bottomRc(t,!1),Xc=t=>Rc(t,!0);function Cc(t,e,i){let n=t.lineBlockAt(e.head),r=t.moveToLineBoundary(e,i);if(r.head==e.head&&r.head!=(i?n.to:n.from)&&(r=t.moveToLineBoundary(e,i,!1)),!i&&r.head==n.from&&n.length){let i=/^\s*/.exec(t.state.sliceDoc(n.from,Math.min(n.from+100,n.to)))[0].length;i&&e.head!=n.from+i&&(r=C.cursor(n.from+i))}return r}function qc(t,e){let i=pc(t.state.selection,(t=>{let i=e(t);return C.range(t.anchor,i.head,i.goalColumn,i.bidiLevel||void 0)}));return!i.eq(t.state.selection)&&(t.dispatch(mc(t.state,i)),!0)}function Wc(t,e){return qc(t,(i=>t.moveByChar(i,e)))}const Ac=t=>Wc(t,!Sc(t)),zc=t=>Wc(t,Sc(t));function Vc(t,e){return qc(t,(i=>t.moveByGroup(i,e)))}function Mc(t,e){return qc(t,(i=>t.moveVertically(i,e)))}const Ec=t=>Mc(t,!1),Yc=t=>Mc(t,!0);function Uc(t,e){return qc(t,(i=>t.moveVertically(i,e,_c(t).height)))}const jc=t=>Uc(t,!1),Dc=t=>Uc(t,!0),Gc=({state:t,dispatch:e})=>(e(mc(t,{anchor:0})),!0),Lc=({state:t,dispatch:e})=>(e(mc(t,{anchor:t.doc.length})),!0),Nc=({state:t,dispatch:e})=>(e(mc(t,{anchor:t.selection.main.anchor,head:0})),!0),Ic=({state:t,dispatch:e})=>(e(mc(t,{anchor:t.selection.main.anchor,head:t.doc.length})),!0);function Bc(t,e){if(t.state.readOnly)return!1;let i="delete.selection",{state:n}=t,r=n.changeByRange((n=>{let{from:r,to:s}=n;if(r==s){let o=e(n);or&&(i="delete.forward",o=Fc(t,o,!0)),r=Math.min(r,o),s=Math.max(s,o)}else r=Fc(t,r,!1),s=Fc(t,s,!0);return r==s?{range:n}:{changes:{from:r,to:s},range:C.cursor(r,re(t))))n.between(e,e,((t,n)=>{te&&(e=i?n:t)}));return e}const Hc=(t,e,i)=>Bc(t,(n=>{let r,s,o=n.from,{state:a}=t,l=a.doc.lineAt(o);if(i&&!e&&o>l.from&&oHc(t,!1,!0),Kc=t=>Hc(t,!0,!1),tO=(t,e)=>Bc(t,(i=>{let n=i.head,{state:r}=t,s=r.doc.lineAt(n),o=r.charCategorizer(n);for(let t=null;;){if(n==(e?s.to:s.from)){n==i.head&&s.number!=(e?r.doc.lines:1)&&(n+=e?1:-1);break}let a=f(s.text,n-s.from,e)+s.from,l=s.text.slice(Math.min(n,a)-s.from,Math.max(n,a)-s.from),h=o(l);if(null!=t&&h!=t)break;" "==l&&n==i.head||(t=h),n=a}return n})),eO=t=>tO(t,!1);function iO(t){let e=[],i=-1;for(let n of t.selection.ranges){let r=t.doc.lineAt(n.from),s=t.doc.lineAt(n.to);if(n.empty||n.to!=s.from||(s=t.doc.lineAt(n.to-1)),i>=r.number){let t=e[e.length-1];t.to=s.to,t.ranges.push(n)}else e.push({from:r.from,to:s.to,ranges:[n]});i=s.number+1}return e}function nO(t,e,i){if(t.readOnly)return!1;let n=[],r=[];for(let e of iO(t)){if(i?e.to==t.doc.length:0==e.from)continue;let s=t.doc.lineAt(i?e.to+1:e.from-1),o=s.length+1;if(i){n.push({from:e.to,to:s.to},{from:e.from,insert:s.text+t.lineBreak});for(let i of e.ranges)r.push(C.range(Math.min(t.doc.length,i.anchor+o),Math.min(t.doc.length,i.head+o)))}else{n.push({from:s.from,to:e.from},{from:e.to,insert:t.lineBreak+s.text});for(let t of e.ranges)r.push(C.range(t.anchor-o,t.head-o))}}return!!n.length&&(e(t.update({changes:n,scrollIntoView:!0,selection:C.create(r,t.selection.mainIndex),userEvent:"move.line"})),!0)}function rO(t,e,i){if(t.readOnly)return!1;let n=[];for(let e of iO(t))i?n.push({from:e.from,insert:t.doc.slice(e.from,e.to)+t.lineBreak}):n.push({from:e.to,insert:t.lineBreak+t.doc.slice(e.from,e.to)});return e(t.update({changes:n,scrollIntoView:!0,userEvent:"input.copyline"})),!0}const sO=aO(!1),oO=aO(!0);function aO(e){return({state:i,dispatch:n})=>{if(i.readOnly)return!1;let r=i.changeByRange((n=>{let{from:r,to:s}=n,o=i.doc.lineAt(r),a=!e&&r==s&&function(t,e){if(/\(\)|\[\]|\{\}/.test(t.sliceDoc(e-1,e+1)))return{from:e,to:e};let i,n=cl(t).resolveInner(e),r=n.childBefore(e),s=n.childAfter(e);return r&&s&&r.to<=e&&s.from>=e&&(i=r.type.prop(Yo.closedBy))&&i.indexOf(s.name)>-1&&t.doc.lineAt(r.to).from==t.doc.lineAt(s.from).from&&!/\S/.test(t.sliceDoc(r.to,s.from))?{from:r.to,to:s.from}:null}(i,r);e&&(r=s=(s<=o.to?o:i.doc.lineAt(s)).to);let l=new $l(i,{simulateBreak:r,simulateDoubleBreak:!!a}),h=Pl(l,r);for(null==h&&(h=Ut(/^\s*/.exec(i.doc.lineAt(r).text)[0],i.tabSize));so.from&&r{let r=[];for(let s=n.from;s<=n.to;){let o=t.doc.lineAt(s);o.number>i&&(n.empty||n.to>o.from)&&(e(o,r,n),i=o.number),s=o.to+1}let s=t.changes(r);return{changes:r,range:C.range(s.mapPos(n.anchor,1),s.mapPos(n.head,1))}}))}const hO=({state:t,dispatch:e})=>!t.readOnly&&(e(t.update(lO(t,((e,i)=>{i.push({from:e.from,insert:t.facet(yl)})})),{userEvent:"input.indent"})),!0),cO=({state:t,dispatch:e})=>!t.readOnly&&(e(t.update(lO(t,((e,i)=>{let n=/^\s*/.exec(e.text)[0];if(!n)return;let r=Ut(n,t.tabSize),s=0,o=kl(t,Math.max(0,r-xl(t)));for(;sgc(t,(e=>C.cursor(t.lineBlockAt(e.head).from,1))),shift:t=>qc(t,(e=>C.cursor(t.lineBlockAt(e.head).from)))},{key:"Ctrl-e",run:t=>gc(t,(e=>C.cursor(t.lineBlockAt(e.head).to,-1))),shift:t=>qc(t,(e=>C.cursor(t.lineBlockAt(e.head).to)))},{key:"Ctrl-d",run:Kc},{key:"Ctrl-h",run:Jc},{key:"Ctrl-k",run:t=>Bc(t,(e=>{let i=t.lineBlockAt(e.head).to;return e.head{if(e.readOnly)return!1;let n=e.changeByRange((e=>({changes:{from:e.from,to:e.to,insert:t.of(["",""])},range:C.cursor(e.from)})));return i(e.update(n,{scrollIntoView:!0,userEvent:"input"})),!0}},{key:"Ctrl-t",run:({state:t,dispatch:e})=>{if(t.readOnly)return!1;let i=t.changeByRange((e=>{if(!e.empty||0==e.from||e.from==t.doc.length)return{range:e};let i=e.from,n=t.doc.lineAt(i),r=i==n.from?i-1:f(n.text,i-n.from,!1)+n.from,s=i==n.to?i+1:f(n.text,i-n.from,!0)+n.from;return{changes:{from:r,to:s,insert:t.doc.slice(i,s).append(t.doc.slice(r,i))},range:C.cursor(s)}}));return!i.changes.empty&&(e(t.update(i,{scrollIntoView:!0,userEvent:"move.character"})),!0)}},{key:"Ctrl-v",run:Xc}],dO=[{key:"ArrowLeft",run:vc,shift:Ac,preventDefault:!0},{key:"Mod-ArrowLeft",mac:"Alt-ArrowLeft",run:t=>yc(t,!Sc(t)),shift:t=>Vc(t,!Sc(t)),preventDefault:!0},{mac:"Cmd-ArrowLeft",run:t=>gc(t,(e=>Cc(t,e,!Sc(t)))),shift:t=>qc(t,(e=>Cc(t,e,!Sc(t)))),preventDefault:!0},{key:"ArrowRight",run:wc,shift:zc,preventDefault:!0},{key:"Mod-ArrowRight",mac:"Alt-ArrowRight",run:t=>yc(t,Sc(t)),shift:t=>Vc(t,Sc(t)),preventDefault:!0},{mac:"Cmd-ArrowRight",run:t=>gc(t,(e=>Cc(t,e,Sc(t)))),shift:t=>qc(t,(e=>Cc(t,e,Sc(t)))),preventDefault:!0},{key:"ArrowUp",run:$c,shift:Ec,preventDefault:!0},{mac:"Cmd-ArrowUp",run:Gc,shift:Nc},{mac:"Ctrl-ArrowUp",run:Zc,shift:jc},{key:"ArrowDown",run:Tc,shift:Yc,preventDefault:!0},{mac:"Cmd-ArrowDown",run:Lc,shift:Ic},{mac:"Ctrl-ArrowDown",run:Xc,shift:Dc},{key:"PageUp",run:Zc,shift:jc},{key:"PageDown",run:Xc,shift:Dc},{key:"Home",run:t=>gc(t,(e=>Cc(t,e,!1))),shift:t=>qc(t,(e=>Cc(t,e,!1))),preventDefault:!0},{key:"Mod-Home",run:Gc,shift:Nc},{key:"End",run:t=>gc(t,(e=>Cc(t,e,!0))),shift:t=>qc(t,(e=>Cc(t,e,!0))),preventDefault:!0},{key:"Mod-End",run:Lc,shift:Ic},{key:"Enter",run:sO},{key:"Mod-a",run:({state:t,dispatch:e})=>(e(t.update({selection:{anchor:0,head:t.doc.length},userEvent:"select"})),!0)},{key:"Backspace",run:Jc,shift:Jc},{key:"Delete",run:Kc},{key:"Mod-Backspace",mac:"Alt-Backspace",run:eO},{key:"Mod-Delete",mac:"Alt-Delete",run:t=>tO(t,!0)},{mac:"Mod-Backspace",run:t=>Bc(t,(e=>{let i=t.moveToLineBoundary(e,!1).head;return e.head>i?i:Math.max(0,e.head-1)}))},{mac:"Mod-Delete",run:t=>Bc(t,(e=>{let i=t.moveToLineBoundary(e,!0).head;return e.head({mac:t.key,run:t.run,shift:t.shift})))),uO=[{key:"Alt-ArrowLeft",mac:"Ctrl-ArrowLeft",run:t=>gc(t,(e=>kc(t.state,e,!Sc(t)))),shift:t=>qc(t,(e=>kc(t.state,e,!Sc(t))))},{key:"Alt-ArrowRight",mac:"Ctrl-ArrowRight",run:t=>gc(t,(e=>kc(t.state,e,Sc(t)))),shift:t=>qc(t,(e=>kc(t.state,e,Sc(t))))},{key:"Alt-ArrowUp",run:({state:t,dispatch:e})=>nO(t,e,!1)},{key:"Shift-Alt-ArrowUp",run:({state:t,dispatch:e})=>rO(t,e,!1)},{key:"Alt-ArrowDown",run:({state:t,dispatch:e})=>nO(t,e,!0)},{key:"Shift-Alt-ArrowDown",run:({state:t,dispatch:e})=>rO(t,e,!0)},{key:"Escape",run:({state:t,dispatch:e})=>{let i=t.selection,n=null;return i.ranges.length>1?n=C.create([i.main]):i.main.empty||(n=C.create([C.cursor(i.main.head)])),!!n&&(e(mc(t,n)),!0)}},{key:"Mod-Enter",run:oO},{key:"Alt-l",mac:"Ctrl-l",run:({state:t,dispatch:e})=>{let i=iO(t).map((({from:e,to:i})=>C.range(e,Math.min(i+1,t.doc.length))));return e(t.update({selection:C.create(i),userEvent:"select"})),!0}},{key:"Mod-i",run:({state:t,dispatch:e})=>{let i=pc(t.selection,(e=>{var i;for(let n=cl(t).resolveStack(e.from,1);n;n=n.next){let{node:t}=n;if((t.from=e.to||t.to>e.to&&t.from<=e.from)&&(null===(i=t.parent)||void 0===i?void 0:i.parent))return C.range(t.to,t.from)}return e}));return e(mc(t,i)),!0},preventDefault:!0},{key:"Mod-[",run:cO},{key:"Mod-]",run:hO},{key:"Mod-Alt-\\",run:({state:t,dispatch:e})=>{if(t.readOnly)return!1;let i=Object.create(null),n=new $l(t,{overrideIndentation:t=>{let e=i[t];return null==e?-1:e}}),r=lO(t,((e,r,s)=>{let o=Pl(n,e.from);if(null==o)return;/\S/.test(e.text)||(o=0);let a=/^\s*/.exec(e.text)[0],l=kl(t,o);(a!=l||s.from{if(t.state.readOnly)return!1;let{state:e}=t,i=e.changes(iO(e).map((({from:t,to:i})=>(t>0?t--:i{let i;if(t.lineWrapping){let n=t.lineBlockAt(e.head),r=t.coordsAtPos(e.head,e.assoc||1);r&&(i=n.bottom+t.documentTop-r.bottom+t.defaultLineHeight/2)}return t.moveVertically(e,!0,i)})).map(i);return t.dispatch({changes:i,selection:n,scrollIntoView:!0,userEvent:"delete.line"}),!0}},{key:"Shift-Mod-\\",run:({state:t,dispatch:e})=>function(t,e,i){let n=!1,r=pc(t.selection,(e=>{let i=_h(t,e.head,-1)||_h(t,e.head,1)||e.head>0&&_h(t,e.head-1,1)||e.head{let{state:e}=t,i=e.doc.lineAt(e.selection.main.from),n=Uh(t.state,i.from);return n.line?Mh(t):!!n.block&&Yh(t)}},{key:"Alt-A",run:Eh},{key:"Ctrl-m",mac:"Shift-Alt-m",run:t=>(t.setTabFocusMode(),!0)}].concat(dO),fO={key:"Tab",run:hO,shift:cO};function pO(){var t=arguments[0];"string"==typeof t&&(t=document.createElement(t));var e=1,i=arguments[1];if(i&&"object"==typeof i&&null==i.nodeType&&!Array.isArray(i)){for(var n in i)if(Object.prototype.hasOwnProperty.call(i,n)){var r=i[n];"string"==typeof r?t.setAttribute(n,r):null!=r&&(t[n]=r)}e++}for(;et.normalize("NFKD"):t=>t;class QO{constructor(t,e,i=0,n=t.length,r,s){this.test=s,this.value={from:0,to:0},this.done=!1,this.matches=[],this.buffer="",this.bufferPos=0,this.iter=t.iterRange(i,n),this.bufferStart=i,this.normalize=r?t=>r(gO(t)):gO,this.query=this.normalize(e)}peek(){if(this.bufferPos==this.buffer.length){if(this.bufferStart+=this.buffer.length,this.iter.next(),this.iter.done)return-1;this.bufferPos=0,this.buffer=this.iter.value}return b(this.buffer,this.bufferPos)}next(){for(;this.matches.length;)this.matches.pop();return this.nextOverlapping()}nextOverlapping(){for(;;){let t=this.peek();if(t<0)return this.done=!0,this;let e=S(t),i=this.bufferStart+this.bufferPos;this.bufferPos+=v(t);let n=this.normalize(e);for(let t=0,r=i;;t++){let s=n.charCodeAt(t),o=this.match(s,r,this.bufferPos+this.bufferStart);if(t==n.length-1){if(o)return this.value=o,this;break}r==i&&tthis.to&&(this.curLine=this.curLine.slice(0,this.to-this.curLineStart)),this.iter.next())}nextLine(){this.curLineStart=this.curLineStart+this.curLine.length+1,this.curLineStart>this.to?this.curLine="":this.getLine(0)}next(){for(let t=this.matchPos-this.curLineStart;;){this.re.lastIndex=t;let e=this.matchPos<=this.to&&this.re.exec(this.curLine);if(e){let i=this.curLineStart+e.index,n=i+e[0].length;if(this.matchPos=kO(this.text,n+(i==n?1:0)),i==this.curLineStart+this.curLine.length&&this.nextLine(),(ithis.value.to)&&(!this.test||this.test(i,n,e)))return this.value={from:i,to:n,match:e},this;t=this.matchPos-this.curLineStart}else{if(!(this.curLineStart+this.curLine.length=i||n.to<=e){let n=new yO(e,t.sliceString(e,i));return wO.set(t,n),n}if(n.from==e&&n.to==i)return n;let{text:r,from:s}=n;return s>e&&(r=t.sliceString(e,s)+r,s=e),n.to=this.to?this.to:this.text.lineAt(t).to}next(){for(;;){let t=this.re.lastIndex=this.matchPos-this.flat.from,e=this.re.exec(this.flat.text);if(e&&!e[0]&&e.index==t&&(this.re.lastIndex=t+1,e=this.re.exec(this.flat.text)),e){let t=this.flat.from+e.index,i=t+e[0].length;if((this.flat.to>=this.to||e.index+e[0].length<=this.flat.text.length-10)&&(!this.test||this.test(t,i,e)))return this.value={from:t,to:i,match:e},this.matchPos=kO(this.text,i+(t==i?1:0)),this}if(this.flat.to==this.to)return this.done=!0,this;this.flat=yO.get(this.text,this.flat.from,this.chunkEnd(this.flat.from+2*this.flat.text.length))}}}function kO(t,e){if(e>=t.length)return e;let i,n=t.lineAt(e);for(;e=56320&&i<57344;)e++;return e}function PO(t){let e=pO("input",{class:"cm-textfield",name:"line",value:String(t.state.doc.lineAt(t.state.selection.main.head).number)});function i(){let i=/^([+-])?(\d+)?(:\d+)?(%)?$/.exec(e.value);if(!i)return;let{state:n}=t,r=n.doc.lineAt(n.selection.main.head),[,s,o,a,l]=i,h=a?+a.slice(1):0,c=o?+o:r.number;if(o&&l){let t=c/100;s&&(t=t*("-"==s?-1:1)+r.number/n.doc.lines),c=Math.round(n.doc.lines*t)}else o&&s&&(c=c*("-"==s?-1:1)+r.number);let O=n.doc.line(Math.max(1,Math.min(n.doc.lines,c))),d=C.cursor(O.from+Math.max(0,Math.min(h,O.length)));t.dispatch({effects:[$O.of(!1),Ir.scrollIntoView(d.from,{y:"center"})],selection:d}),t.focus()}return{dom:pO("form",{class:"cm-gotoLine",onkeydown:e=>{27==e.keyCode?(e.preventDefault(),t.dispatch({effects:$O.of(!1)}),t.focus()):13==e.keyCode&&(e.preventDefault(),i())},onsubmit:t=>{t.preventDefault(),i()}},pO("label",t.state.phrase("Go to line"),": ",e)," ",pO("button",{class:"cm-button",type:"submit"},t.state.phrase("go")))}}"undefined"!=typeof Symbol&&(vO.prototype[Symbol.iterator]=xO.prototype[Symbol.iterator]=function(){return this});const $O=dt.define(),TO=j.define({create:()=>!0,update(t,e){for(let i of e.effects)i.is($O)&&(t=i.value);return t},provide:t=>po.from(t,(t=>t?PO:null))}),_O=Ir.baseTheme({".cm-panel.cm-gotoLine":{padding:"2px 6px 4px","& label":{fontSize:"80%"}}}),RO={highlightWordAroundCursor:!1,minSelectionLength:1,maxMatches:100,wholeWords:!1},ZO=A.define({combine:t=>kt(t,RO,{highlightWordAroundCursor:(t,e)=>t||e,minSelectionLength:Math.min,maxMatches:Math.min})});const XO=si.mark({class:"cm-selectionMatch"}),CO=si.mark({class:"cm-selectionMatch cm-selectionMatch-main"});function qO(t,e,i,n){return!(0!=i&&t(e.sliceDoc(i-1,i))==St.Word||n!=e.doc.length&&t(e.sliceDoc(n,n+1))==St.Word)}const WO=Fi.fromClass(class{constructor(t){this.decorations=this.getDeco(t)}update(t){(t.selectionSet||t.docChanged||t.viewportChanged)&&(this.decorations=this.getDeco(t.view))}getDeco(t){let e=t.state.facet(ZO),{state:i}=t,n=i.selection;if(n.ranges.length>1)return si.none;let r,s=n.main,o=null;if(s.empty){if(!e.highlightWordAroundCursor)return si.none;let t=i.wordAt(s.head);if(!t)return si.none;o=i.charCategorizer(s.head),r=i.sliceDoc(t.from,t.to)}else{let t=s.to-s.from;if(t200)return si.none;if(e.wholeWords){if(r=i.sliceDoc(s.from,s.to),o=i.charCategorizer(s.head),!qO(o,i,s.from,s.to)||!function(t,e,i,n){return t(e.sliceDoc(i,i+1))==St.Word&&t(e.sliceDoc(n-1,n))==St.Word}(o,i,s.from,s.to))return si.none}else if(r=i.sliceDoc(s.from,s.to),!r)return si.none}let a=[];for(let n of t.visibleRanges){let t=new QO(i.doc,r,n.from,n.to);for(;!t.next().done;){let{from:n,to:r}=t.value;if((!o||qO(o,i,n,r))&&(s.empty&&n<=s.from&&r>=s.to?a.push(CO.range(n,r)):(n>=s.to||r<=s.from)&&a.push(XO.range(n,r)),a.length>e.maxMatches))return si.none}}return si.set(a)}},{decorations:t=>t.decorations}),AO=Ir.baseTheme({".cm-selectionMatch":{backgroundColor:"#99ff7780"},".cm-searchMatch .cm-selectionMatch":{backgroundColor:"transparent"}});const zO=A.define({combine:t=>kt(t,{top:!1,caseSensitive:!1,literal:!1,regexp:!1,wholeWord:!1,createPanel:t=>new dd(t),scrollToMatch:t=>Ir.scrollIntoView(t)})});class VO{constructor(t){this.search=t.search,this.caseSensitive=!!t.caseSensitive,this.literal=!!t.literal,this.regexp=!!t.regexp,this.replace=t.replace||"",this.valid=!!this.search&&(!this.regexp||function(t){try{return new RegExp(t,SO),!0}catch(t){return!1}}(this.search)),this.unquoted=this.unquote(this.search),this.wholeWord=!!t.wholeWord}unquote(t){return this.literal?t:t.replace(/\\([nrt\\])/g,((t,e)=>"n"==e?"\n":"r"==e?"\r":"t"==e?"\t":"\\"))}eq(t){return this.search==t.search&&this.replace==t.replace&&this.caseSensitive==t.caseSensitive&&this.regexp==t.regexp&&this.wholeWord==t.wholeWord}create(){return this.regexp?new GO(this):new YO(this)}getCursor(t,e=0,i){let n=t.doc?t:xt.create({doc:t});return null==i&&(i=n.doc.length),this.regexp?UO(this,n,e,i):EO(this,n,e,i)}}class MO{constructor(t){this.spec=t}}function EO(t,e,i,n){return new QO(e.doc,t.unquoted,i,n,t.caseSensitive?void 0:t=>t.toLowerCase(),t.wholeWord?function(t,e){return(i,n,r,s)=>((s>i||s+r.length=e)return null;n.push(i.value)}return n}highlight(t,e,i,n){let r=EO(this.spec,t,Math.max(0,e-this.spec.unquoted.length),Math.min(i+this.spec.unquoted.length,t.doc.length));for(;!r.next().done;)n(r.value.from,r.value.to)}}function UO(t,e,i,n){return new vO(e.doc,t.search,{ignoreCase:!t.caseSensitive,test:t.wholeWord?(r=e.charCategorizer(e.selection.main.head),(t,e,i)=>!i[0].length||(r(jO(i.input,i.index))!=St.Word||r(DO(i.input,i.index))!=St.Word)&&(r(DO(i.input,i.index+i[0].length))!=St.Word||r(jO(i.input,i.index+i[0].length))!=St.Word)):void 0},i,n);var r}function jO(t,e){return t.slice(f(t,e,!1),e)}function DO(t,e){return t.slice(e,f(t,e))}class GO extends MO{nextMatch(t,e,i){let n=UO(this.spec,t,i,t.doc.length).next();return n.done&&(n=UO(this.spec,t,0,e).next()),n.done?null:n.value}prevMatchInRange(t,e,i){for(let n=1;;n++){let r=Math.max(e,i-1e4*n),s=UO(this.spec,t,r,i),o=null;for(;!s.next().done;)o=s.value;if(o&&(r==e||o.from>r+10))return o;if(r==e)return null}}prevMatch(t,e,i){return this.prevMatchInRange(t,0,e)||this.prevMatchInRange(t,i,t.doc.length)}getReplacement(t){return this.spec.unquote(this.spec.replace).replace(/\$([$&\d+])/g,((e,i)=>"$"==i?"$":"&"==i?t.match[0]:"0"!=i&&+i=e)return null;n.push(i.value)}return n}highlight(t,e,i,n){let r=UO(this.spec,t,Math.max(0,e-250),Math.min(i+250,t.doc.length));for(;!r.next().done;)n(r.value.from,r.value.to)}}const LO=dt.define(),NO=dt.define(),IO=j.define({create:t=>new BO(od(t).create(),null),update(t,e){for(let i of e.effects)i.is(LO)?t=new BO(i.value.create(),t.panel):i.is(NO)&&(t=new BO(t.query,i.value?sd:null));return t},provide:t=>po.from(t,(t=>t.panel))});class BO{constructor(t,e){this.query=t,this.panel=e}}const FO=si.mark({class:"cm-searchMatch"}),HO=si.mark({class:"cm-searchMatch cm-searchMatch-selected"}),JO=Fi.fromClass(class{constructor(t){this.view=t,this.decorations=this.highlight(t.state.field(IO))}update(t){let e=t.state.field(IO);(e!=t.startState.field(IO)||t.docChanged||t.selectionSet||t.viewportChanged)&&(this.decorations=this.highlight(e))}highlight({query:t,panel:e}){if(!e||!t.spec.valid)return si.none;let{view:i}=this,n=new Zt;for(let e=0,r=i.visibleRanges,s=r.length;er[e+1].from-500;)a=r[++e].to;t.highlight(i.state,o,a,((t,e)=>{let r=i.state.selection.ranges.some((i=>i.from==t&&i.to==e));n.add(t,e,r?HO:FO)}))}return n.finish()}},{decorations:t=>t.decorations});function KO(t){return e=>{let i=e.state.field(IO,!1);return i&&i.query.spec.valid?t(e,i):hd(e)}}const td=KO(((t,{query:e})=>{let{to:i}=t.state.selection.main,n=e.nextMatch(t.state,i,i);if(!n)return!1;let r=C.single(n.from,n.to),s=t.state.facet(zO);return t.dispatch({selection:r,effects:[md(t,n),s.scrollToMatch(r.main,t)],userEvent:"select.search"}),ld(t),!0})),ed=KO(((t,{query:e})=>{let{state:i}=t,{from:n}=i.selection.main,r=e.prevMatch(i,n,n);if(!r)return!1;let s=C.single(r.from,r.to),o=t.state.facet(zO);return t.dispatch({selection:s,effects:[md(t,r),o.scrollToMatch(s.main,t)],userEvent:"select.search"}),ld(t),!0})),id=KO(((t,{query:e})=>{let i=e.matchAll(t.state,1e3);return!(!i||!i.length)&&(t.dispatch({selection:C.create(i.map((t=>C.range(t.from,t.to)))),userEvent:"select.search.matches"}),!0)})),nd=KO(((t,{query:e})=>{let{state:i}=t,{from:n,to:r}=i.selection.main;if(i.readOnly)return!1;let s=e.nextMatch(i,n,n);if(!s)return!1;let o,a,l=[],h=[];if(s.from==n&&s.to==r&&(a=i.toText(e.getReplacement(s)),l.push({from:s.from,to:s.to,insert:a}),s=e.nextMatch(i,s.from,s.to),h.push(Ir.announce.of(i.phrase("replaced match on line $",i.doc.lineAt(n).number)+"."))),s){let e=0==l.length||l[0].from>=s.to?0:s.to-s.from-a.length;o=C.single(s.from-e,s.to-e),h.push(md(t,s)),h.push(i.facet(zO).scrollToMatch(o.main,t))}return t.dispatch({changes:l,selection:o,effects:h,userEvent:"input.replace"}),!0})),rd=KO(((t,{query:e})=>{if(t.state.readOnly)return!1;let i=e.matchAll(t.state,1e9).map((t=>{let{from:i,to:n}=t;return{from:i,to:n,insert:e.getReplacement(t)}}));if(!i.length)return!1;let n=t.state.phrase("replaced $ matches",i.length)+".";return t.dispatch({changes:i,effects:Ir.announce.of(n),userEvent:"input.replace.all"}),!0}));function sd(t){return t.state.facet(zO).createPanel(t)}function od(t,e){var i,n,r,s,o;let a=t.selection.main,l=a.empty||a.to>a.from+100?"":t.sliceDoc(a.from,a.to);if(e&&!l)return e;let h=t.facet(zO);return new VO({search:(null!==(i=null==e?void 0:e.literal)&&void 0!==i?i:h.literal)?l:l.replace(/\n/g,"\\n"),caseSensitive:null!==(n=null==e?void 0:e.caseSensitive)&&void 0!==n?n:h.caseSensitive,literal:null!==(r=null==e?void 0:e.literal)&&void 0!==r?r:h.literal,regexp:null!==(s=null==e?void 0:e.regexp)&&void 0!==s?s:h.regexp,wholeWord:null!==(o=null==e?void 0:e.wholeWord)&&void 0!==o?o:h.wholeWord})}function ad(t){let e=co(t,sd);return e&&e.dom.querySelector("[main-field]")}function ld(t){let e=ad(t);e&&e==t.root.activeElement&&e.select()}const hd=t=>{let e=t.state.field(IO,!1);if(e&&e.panel){let i=ad(t);if(i&&i!=t.root.activeElement){let n=od(t.state,e.query.spec);n.valid&&t.dispatch({effects:LO.of(n)}),i.focus(),i.select()}}else t.dispatch({effects:[NO.of(!0),e?LO.of(od(t.state,e.query.spec)):dt.appendConfig.of(Qd)]});return!0},cd=t=>{let e=t.state.field(IO,!1);if(!e||!e.panel)return!1;let i=co(t,sd);return i&&i.dom.contains(t.root.activeElement)&&t.focus(),t.dispatch({effects:NO.of(!1)}),!0},Od=[{key:"Mod-f",run:hd,scope:"editor search-panel"},{key:"F3",run:td,shift:ed,scope:"editor search-panel",preventDefault:!0},{key:"Mod-g",run:td,shift:ed,scope:"editor search-panel",preventDefault:!0},{key:"Escape",run:cd,scope:"editor search-panel"},{key:"Mod-Shift-l",run:({state:t,dispatch:e})=>{let i=t.selection;if(i.ranges.length>1||i.main.empty)return!1;let{from:n,to:r}=i.main,s=[],o=0;for(let e=new QO(t.doc,t.sliceDoc(n,r));!e.next().done;){if(s.length>1e3)return!1;e.value.from==n&&(o=s.length),s.push(C.range(e.value.from,e.value.to))}return e(t.update({selection:C.create(s,o),userEvent:"select.search.matches"})),!0}},{key:"Mod-Alt-g",run:t=>{let e=co(t,PO);if(!e){let i=[$O.of(!0)];null==t.state.field(TO,!1)&&i.push(dt.appendConfig.of([TO,_O])),t.dispatch({effects:i}),e=co(t,PO)}return e&&e.dom.querySelector("input").select(),!0}},{key:"Mod-d",run:({state:t,dispatch:e})=>{let{ranges:i}=t.selection;if(i.some((t=>t.from===t.to)))return(({state:t,dispatch:e})=>{let{selection:i}=t,n=C.create(i.ranges.map((e=>t.wordAt(e.head)||C.cursor(e.head))),i.mainIndex);return!n.eq(i)&&(e(t.update({selection:n})),!0)})({state:t,dispatch:e});let n=t.sliceDoc(i[0].from,i[0].to);if(t.selection.ranges.some((e=>t.sliceDoc(e.from,e.to)!=n)))return!1;let r=function(t,e){let{main:i,ranges:n}=t.selection,r=t.wordAt(i.head),s=r&&r.from==i.from&&r.to==i.to;for(let i=!1,r=new QO(t.doc,e,n[n.length-1].to);;){if(r.next(),!r.done){if(i&&n.some((t=>t.from==r.value.from)))continue;if(s){let e=t.wordAt(r.value.from);if(!e||e.from!=r.value.from||e.to!=r.value.to)continue}return r.value}if(i)return null;r=new QO(t.doc,e,0,Math.max(0,n[n.length-1].from-1)),i=!0}}(t,n);return!!r&&(e(t.update({selection:t.selection.addRange(C.range(r.from,r.to),!1),effects:Ir.scrollIntoView(r.to)})),!0)},preventDefault:!0}];class dd{constructor(t){this.view=t;let e=this.query=t.state.field(IO).query.spec;function i(t,e,i){return pO("button",{class:"cm-button",name:t,onclick:e,type:"button"},i)}this.commit=this.commit.bind(this),this.searchField=pO("input",{value:e.search,placeholder:ud(t,"Find"),"aria-label":ud(t,"Find"),class:"cm-textfield",name:"search",form:"","main-field":"true",onchange:this.commit,onkeyup:this.commit}),this.replaceField=pO("input",{value:e.replace,placeholder:ud(t,"Replace"),"aria-label":ud(t,"Replace"),class:"cm-textfield",name:"replace",form:"",onchange:this.commit,onkeyup:this.commit}),this.caseField=pO("input",{type:"checkbox",name:"case",form:"",checked:e.caseSensitive,onchange:this.commit}),this.reField=pO("input",{type:"checkbox",name:"re",form:"",checked:e.regexp,onchange:this.commit}),this.wordField=pO("input",{type:"checkbox",name:"word",form:"",checked:e.wholeWord,onchange:this.commit}),this.dom=pO("div",{onkeydown:t=>this.keydown(t),class:"cm-search"},[this.searchField,i("next",(()=>td(t)),[ud(t,"next")]),i("prev",(()=>ed(t)),[ud(t,"previous")]),i("select",(()=>id(t)),[ud(t,"all")]),pO("label",null,[this.caseField,ud(t,"match case")]),pO("label",null,[this.reField,ud(t,"regexp")]),pO("label",null,[this.wordField,ud(t,"by word")]),...t.state.readOnly?[]:[pO("br"),this.replaceField,i("replace",(()=>nd(t)),[ud(t,"replace")]),i("replaceAll",(()=>rd(t)),[ud(t,"replace all")])],pO("button",{name:"close",onclick:()=>cd(t),"aria-label":ud(t,"close"),type:"button"},["×"])])}commit(){let t=new VO({search:this.searchField.value,caseSensitive:this.caseField.checked,regexp:this.reField.checked,wholeWord:this.wordField.checked,replace:this.replaceField.value});t.eq(this.query)||(this.query=t,this.view.dispatch({effects:LO.of(t)}))}keydown(t){var e,i,n;e=this.view,i=t,n="search-panel",ls(rs(e.state),i,e,n)?t.preventDefault():13==t.keyCode&&t.target==this.searchField?(t.preventDefault(),(t.shiftKey?ed:td)(this.view)):13==t.keyCode&&t.target==this.replaceField&&(t.preventDefault(),nd(this.view))}update(t){for(let e of t.transactions)for(let t of e.effects)t.is(LO)&&!t.value.eq(this.query)&&this.setQuery(t.value)}setQuery(t){this.query=t,this.searchField.value=t.search,this.replaceField.value=t.replace,this.caseField.checked=t.caseSensitive,this.reField.checked=t.regexp,this.wordField.checked=t.wholeWord}mount(){this.searchField.select()}get pos(){return 80}get top(){return this.view.state.facet(zO).top}}function ud(t,e){return t.state.phrase(e)}const fd=30,pd=/[\s\.,:;?!]/;function md(t,{from:e,to:i}){let n=t.state.doc.lineAt(e),r=t.state.doc.lineAt(i).to,s=Math.max(n.from,e-fd),o=Math.min(r,i+fd),a=t.state.sliceDoc(s,o);if(s!=n.from)for(let t=0;ta.length-fd;t--)if(!pd.test(a[t-1])&&pd.test(a[t])){a=a.slice(0,t);break}return Ir.announce.of(`${t.state.phrase("current match")}. ${a} ${t.state.phrase("on line")} ${n.number}.`)}const gd=Ir.baseTheme({".cm-panel.cm-search":{padding:"2px 6px 4px",position:"relative","& [name=close]":{position:"absolute",top:"0",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",padding:0,margin:0},"& input, & button, & label":{margin:".2em .6em .2em 0"},"& input[type=checkbox]":{marginRight:".2em"},"& label":{fontSize:"80%",whiteSpace:"pre"}},"&light .cm-searchMatch":{backgroundColor:"#ffff0054"},"&dark .cm-searchMatch":{backgroundColor:"#00ffff8a"},"&light .cm-searchMatch-selected":{backgroundColor:"#ff6a0054"},"&dark .cm-searchMatch-selected":{backgroundColor:"#ff00ff8a"}}),Qd=[IO,B.low(JO),gd];class bd{constructor(t,e,i,n){this.state=t,this.pos=e,this.explicit=i,this.view=n,this.abortListeners=[]}tokenBefore(t){let e=cl(this.state).resolveInner(this.pos,-1);for(;e&&t.indexOf(e.name)<0;)e=e.parent;return e?{from:e.from,to:this.pos,text:this.state.sliceDoc(e.from,this.pos),type:e.type}:null}matchBefore(t){let e=this.state.doc.lineAt(this.pos),i=Math.max(e.from,this.pos-250),n=e.text.slice(i-e.from,this.pos-e.from),r=n.search(kd(t,!1));return r<0?null:{from:i+r,to:this.pos,text:n.slice(r)}}get aborted(){return null==this.abortListeners}addEventListener(t,e){"abort"==t&&this.abortListeners&&this.abortListeners.push(e)}}function Sd(t){let e=Object.keys(t).join(""),i=/\w/.test(e);return i&&(e=e.replace(/\w/g,"")),`[${i?"\\w":""}${e.replace(/[^\w\s]/g,"\\$&")}]`}function vd(t){let e=t.map((t=>"string"==typeof t?{label:t}:t)),[i,n]=e.every((t=>/^\w+$/.test(t.label)))?[/\w*$/,/\w+$/]:function(t){let e=Object.create(null),i=Object.create(null);for(let{label:n}of t){e[n[0]]=!0;for(let t=1;t{let r=t.matchBefore(n);return r||t.explicit?{from:r?r.from:t.pos,options:e,validFor:i}:null}}function wd(t,e){return i=>{for(let e=cl(i.state).resolveInner(i.pos,-1);e;e=e.parent){if(t.indexOf(e.name)>-1)return null;if(e.type.isTop)break}return e(i)}}class yd{constructor(t,e,i,n){this.completion=t,this.source=e,this.match=i,this.score=n}}function xd(t){return t.selection.main.from}function kd(t,e){var i;let{source:n}=t,r=e&&"^"!=n[0],s="$"!=n[n.length-1];return r||s?new RegExp(`${r?"^":""}(?:${n})${s?"$":""}`,null!==(i=t.flags)&&void 0!==i?i:t.ignoreCase?"i":""):t}const Pd=ht.define();const $d=new WeakMap;function Td(t){if(!Array.isArray(t))return t;let e=$d.get(t);return e||$d.set(t,e=vd(t)),e}const _d=dt.define(),Rd=dt.define();class Zd{constructor(t){this.pattern=t,this.chars=[],this.folded=[],this.any=[],this.precise=[],this.byWord=[],this.score=0,this.matched=[];for(let e=0;e=48&&l<=57||l>=97&&l<=122?2:l>=65&&l<=90?1:0:(Q=S(l))!=Q.toLowerCase()?1:Q!=Q.toUpperCase()?2:0;(!n||1==w&&p||0==g&&0!=w)&&(e[c]==l||i[c]==l&&(O=!0)?s[c++]=n:s.length&&(m=!1)),g=w,n+=v(l)}return c==a&&0==s[0]&&m?this.result((O?-200:0)-100,s,t):d==a&&0==u?this.ret(-200-t.length+(f==t.length?0:-100),[0,f]):o>-1?this.ret(-700-t.length,[o,o+this.pattern.length]):d==a?this.ret(-900-t.length,[u,f]):c==a?this.result((O?-200:0)-100-700+(m?0:-1100),s,t):2==e.length?null:this.result((n[0]?-700:0)-200-1100,n,t)}result(t,e,i){let n=[],r=0;for(let t of e){let e=t+(this.astral?v(b(i,t)):1);r&&n[r-1]==t?n[r-1]=e:(n[r++]=t,n[r++]=e)}return this.ret(t-i.length,n)}}class Xd{constructor(t){this.pattern=t,this.matched=[],this.score=0,this.folded=t.toLowerCase()}match(t){if(t.lengthkt(t,{activateOnTyping:!0,activateOnCompletion:()=>!1,activateOnTypingDelay:100,selectOnOpen:!0,override:null,closeOnBlur:!0,maxRenderedOptions:100,defaultKeymap:!0,tooltipClass:()=>"",optionClass:()=>"",aboveCursor:!1,icons:!0,addToOptions:[],positionInfo:Wd,filterStrict:!1,compareCompletions:(t,e)=>t.label.localeCompare(e.label),interactionDelay:75,updateSyncTime:100},{defaultKeymap:(t,e)=>t&&e,closeOnBlur:(t,e)=>t&&e,icons:(t,e)=>t&&e,tooltipClass:(t,e)=>i=>qd(t(i),e(i)),optionClass:(t,e)=>i=>qd(t(i),e(i)),addToOptions:(t,e)=>t.concat(e),filterStrict:(t,e)=>t||e})});function qd(t,e){return t?e?t+" "+e:t:e}function Wd(t,e,i,n,r,s){let o,a,l=t.textDirection==fi.RTL,h=l,c=!1,O="top",d=e.left-r.left,u=r.right-e.right,f=n.right-n.left,p=n.bottom-n.top;if(h&&d=p||t>e.top?o=i.bottom-e.top:(O="bottom",o=e.bottom-i.top)}return{style:`${O}: ${o/((e.bottom-e.top)/s.offsetHeight)}px; max-width: ${a/((e.right-e.left)/s.offsetWidth)}px`,class:"cm-completionInfo-"+(c?l?"left-narrow":"right-narrow":h?"left":"right")}}function Ad(t,e,i){if(t<=i)return{from:0,to:t};if(e<0&&(e=0),e<=t>>1){let t=Math.floor(e/i);return{from:t*i,to:(t+1)*i}}let n=Math.floor((t-e)/i);return{from:t-(n+1)*i,to:t-n*i}}class zd{constructor(t,e,i){this.view=t,this.stateField=e,this.applyCompletion=i,this.info=null,this.infoDestroy=null,this.placeInfoReq={read:()=>this.measureInfo(),write:t=>this.placeInfo(t),key:this},this.space=null,this.currentClass="";let n=t.state.field(e),{options:r,selected:s}=n.open,o=t.state.facet(Cd);this.optionContent=function(t){let e=t.addToOptions.slice();return t.icons&&e.push({render(t){let e=document.createElement("div");return e.classList.add("cm-completionIcon"),t.type&&e.classList.add(...t.type.split(/\s+/g).map((t=>"cm-completionIcon-"+t))),e.setAttribute("aria-hidden","true"),e},position:20}),e.push({render(t,e,i,n){let r=document.createElement("span");r.className="cm-completionLabel";let s=t.displayLabel||t.label,o=0;for(let t=0;to&&r.appendChild(document.createTextNode(s.slice(o,e)));let a=r.appendChild(document.createElement("span"));a.appendChild(document.createTextNode(s.slice(e,i))),a.className="cm-completionMatchedText",o=i}return ot.position-e.position)).map((t=>t.render))}(o),this.optionClass=o.optionClass,this.tooltipClass=o.tooltipClass,this.range=Ad(r.length,s,o.maxRenderedOptions),this.dom=document.createElement("div"),this.dom.className="cm-tooltip-autocomplete",this.updateTooltipClass(t.state),this.dom.addEventListener("mousedown",(i=>{let{options:n}=t.state.field(e).open;for(let e,r=i.target;r&&r!=this.dom;r=r.parentNode)if("LI"==r.nodeName&&(e=/-(\d+)$/.exec(r.id))&&+e[1]{let i=t.state.field(this.stateField,!1);i&&i.tooltip&&t.state.facet(Cd).closeOnBlur&&e.relatedTarget!=t.contentDOM&&t.dispatch({effects:Rd.of(null)})})),this.showOptions(r,n.id)}mount(){this.updateSel()}showOptions(t,e){this.list&&this.list.remove(),this.list=this.dom.appendChild(this.createListBox(t,e,this.range)),this.list.addEventListener("scroll",(()=>{this.info&&this.view.requestMeasure(this.placeInfoReq)}))}update(t){var e;let i=t.state.field(this.stateField),n=t.startState.field(this.stateField);if(this.updateTooltipClass(t.state),i!=n){let{options:r,selected:s,disabled:o}=i.open;n.open&&n.open.options==r||(this.range=Ad(r.length,s,t.state.facet(Cd).maxRenderedOptions),this.showOptions(r,i.id)),this.updateSel(),o!=(null===(e=n.open)||void 0===e?void 0:e.disabled)&&this.dom.classList.toggle("cm-tooltip-autocomplete-disabled",!!o)}}updateTooltipClass(t){let e=this.tooltipClass(t);if(e!=this.currentClass){for(let t of this.currentClass.split(" "))t&&this.dom.classList.remove(t);for(let t of e.split(" "))t&&this.dom.classList.add(t);this.currentClass=e}}positioned(t){this.space=t,this.info&&this.view.requestMeasure(this.placeInfoReq)}updateSel(){let t=this.view.state.field(this.stateField),e=t.open;if((e.selected>-1&&e.selected=this.range.to)&&(this.range=Ad(e.options.length,e.selected,this.view.state.facet(Cd).maxRenderedOptions),this.showOptions(e.options,t.id)),this.updateSelectedOption(e.selected)){this.destroyInfo();let{completion:i}=e.options[e.selected],{info:n}=i;if(!n)return;let r="string"==typeof n?document.createTextNode(n):n(i);if(!r)return;"then"in r?r.then((e=>{e&&this.view.state.field(this.stateField,!1)==t&&this.addInfoPane(e,i)})).catch((t=>Li(this.view.state,t,"completion info"))):this.addInfoPane(r,i)}}addInfoPane(t,e){this.destroyInfo();let i=this.info=document.createElement("div");if(i.className="cm-tooltip cm-completionInfo",null!=t.nodeType)i.appendChild(t),this.infoDestroy=null;else{let{dom:e,destroy:n}=t;i.appendChild(e),this.infoDestroy=n||null}this.dom.appendChild(i),this.view.requestMeasure(this.placeInfoReq)}updateSelectedOption(t){let e=null;for(let i=this.list.firstChild,n=this.range.from;i;i=i.nextSibling,n++)"LI"==i.nodeName&&i.id?n==t?i.hasAttribute("aria-selected")||(i.setAttribute("aria-selected","true"),e=i):i.hasAttribute("aria-selected")&&i.removeAttribute("aria-selected"):n--;return e&&function(t,e){let i=t.getBoundingClientRect(),n=e.getBoundingClientRect(),r=i.height/t.offsetHeight;n.topi.bottom&&(t.scrollTop+=(n.bottom-i.bottom)/r)}(this.list,e),e}measureInfo(){let t=this.dom.querySelector("[aria-selected]");if(!t||!this.info)return null;let e=this.dom.getBoundingClientRect(),i=this.info.getBoundingClientRect(),n=t.getBoundingClientRect(),r=this.space;if(!r){let t=this.dom.ownerDocument.defaultView||window;r={left:0,top:0,right:t.innerWidth,bottom:t.innerHeight}}return n.top>Math.min(r.bottom,e.bottom)-10||n.bottomi.from||0==i.from))if(r=t,"string"!=typeof l&&l.header)n.appendChild(l.header(l));else{n.appendChild(document.createElement("completion-section")).textContent=t}}const h=n.appendChild(document.createElement("li"));h.id=e+"-"+s,h.setAttribute("role","option");let c=this.optionClass(o);c&&(h.className=c);for(let t of this.optionContent){let e=t(o,this.view.state,this.view,a);e&&h.appendChild(e)}}return i.from&&n.classList.add("cm-completionListIncompleteTop"),i.tonew zd(i,t,e)}function Md(t){return 100*(t.boost||0)+(t.apply?10:0)+(t.info?5:0)+(t.type?1:0)}class Ed{constructor(t,e,i,n,r,s){this.options=t,this.attrs=e,this.tooltip=i,this.timestamp=n,this.selected=r,this.disabled=s}setSelected(t,e){return t==this.selected||t>=this.options.length?this:new Ed(this.options,Dd(e,t),this.tooltip,this.timestamp,t,this.disabled)}static build(t,e,i,n,r){let s=function(t,e){let i=[],n=null,r=t=>{i.push(t);let{section:e}=t.completion;if(e){n||(n=[]);let t="string"==typeof e?e:e.name;n.some((e=>e.name==t))||n.push("string"==typeof e?{name:t}:e)}},s=e.facet(Cd);for(let n of t)if(n.hasResult()){let t=n.result.getMatch;if(!1===n.result.filter)for(let e of n.result.options)r(new yd(e,n.source,t?t(e):[],1e9-i.length));else{let i,o=e.sliceDoc(n.from,n.to),a=s.filterStrict?new Xd(o):new Zd(o);for(let e of n.result.options)if(i=a.match(e.label)){let s=e.displayLabel?t?t(e,i.matched):[]:i.matched;r(new yd(e,n.source,s,i.score+(e.boost||0)))}}}if(n){let t=Object.create(null),e=0,r=(t,e)=>{var i,n;return(null!==(i=t.rank)&&void 0!==i?i:1e9)-(null!==(n=e.rank)&&void 0!==n?n:1e9)||(t.namee.score-t.score||l(t.completion,e.completion)))){let e=t.completion;!a||a.label!=e.label||a.detail!=e.detail||null!=a.type&&null!=e.type&&a.type!=e.type||a.apply!=e.apply||a.boost!=e.boost?o.push(t):Md(t.completion)>Md(a)&&(o[o.length-1]=t),a=t.completion}return o}(t,e);if(!s.length)return n&&t.some((t=>1==t.state))?new Ed(n.options,n.attrs,n.tooltip,n.timestamp,n.selected,!0):null;let o=e.facet(Cd).selectOnOpen?0:-1;if(n&&n.selected!=o&&-1!=n.selected){let t=n.options[n.selected].completion;for(let e=0;ee.hasResult()?Math.min(t,e.from):t),1e8),create:Kd,above:r.aboveCursor},n?n.timestamp:Date.now(),o,!1)}map(t){return new Ed(this.options,this.attrs,Object.assign(Object.assign({},this.tooltip),{pos:t.mapPos(this.tooltip.pos)}),this.timestamp,this.selected,this.disabled)}}class Yd{constructor(t,e,i){this.active=t,this.id=e,this.open=i}static start(){return new Yd(Gd,"cm-ac-"+Math.floor(2e6*Math.random()).toString(36),null)}update(t){let{state:e}=t,i=e.facet(Cd),n=(i.override||e.languageDataAt("autocomplete",xd(e)).map(Td)).map((e=>{let n=this.active.find((t=>t.source==e))||new Nd(e,this.active.some((t=>0!=t.state))?1:0);return n.update(t,i)}));n.length==this.active.length&&n.every(((t,e)=>t==this.active[e]))&&(n=this.active);let r=this.open;r&&t.docChanged&&(r=r.map(t.changes)),t.selection||n.some((e=>e.hasResult()&&t.changes.touchesRange(e.from,e.to)))||!function(t,e){if(t==e)return!0;for(let i=0,n=0;;){for(;i1==t.state))&&(r=null),!r&&n.every((t=>1!=t.state))&&n.some((t=>t.hasResult()))&&(n=n.map((t=>t.hasResult()?new Nd(t.source,0):t)));for(let e of t.effects)e.is(Fd)&&(r=r&&r.setSelected(e.value,this.id));return n==this.active&&r==this.open?this:new Yd(n,this.id,r)}get tooltip(){return this.open?this.open.tooltip:null}get attrs(){return this.open?this.open.attrs:this.active.length?Ud:jd}}const Ud={"aria-autocomplete":"list"},jd={};function Dd(t,e){let i={"aria-autocomplete":"list","aria-haspopup":"listbox","aria-controls":t};return e>-1&&(i["aria-activedescendant"]=t+"-"+e),i}const Gd=[];function Ld(t,e){if(t.isUserEvent("input.complete")){let i=t.annotation(Pd);if(i&&e.activateOnCompletion(i))return 12}let i=t.isUserEvent("input.type");return i&&e.activateOnTyping?5:i?1:t.isUserEvent("delete.backward")?2:t.selection?8:t.docChanged?16:0}class Nd{constructor(t,e,i=-1){this.source=t,this.state=e,this.explicitPos=i}hasResult(){return!1}update(t,e){let i=Ld(t,e),n=this;(8&i||16&i&&this.touches(t))&&(n=new Nd(n.source,0)),4&i&&0==n.state&&(n=new Nd(this.source,1)),n=n.updateFor(t,i);for(let e of t.effects)if(e.is(_d))n=new Nd(n.source,1,e.value?xd(t.state):-1);else if(e.is(Rd))n=new Nd(n.source,0);else if(e.is(Bd))for(let t of e.value)t.source==n.source&&(n=t);return n}updateFor(t,e){return this.map(t.changes)}map(t){return t.empty||this.explicitPos<0?this:new Nd(this.source,this.state,t.mapPos(this.explicitPos))}touches(t){return t.changes.touchesRange(xd(t.state))}}class Id extends Nd{constructor(t,e,i,n,r){super(t,2,e),this.result=i,this.from=n,this.to=r}hasResult(){return!0}updateFor(t,e){var i;if(!(3&e))return this.map(t.changes);let n=this.result;n.map&&!t.changes.empty&&(n=n.map(n,t.changes));let r=t.changes.mapPos(this.from),s=t.changes.mapPos(this.to,1),o=xd(t.state);if((this.explicitPos<0?o<=r:os||!n||2&e&&xd(t.startState)==this.from)return new Nd(this.source,4&e?1:0);let a=this.explicitPos<0?-1:t.changes.mapPos(this.explicitPos);return function(t,e,i,n){if(!t)return!1;let r=e.sliceDoc(i,n);return"function"==typeof t?t(r,i,n,e):kd(t,!0).test(r)}(n.validFor,t.state,r,s)?new Id(this.source,a,n,r,s):n.update&&(n=n.update(n,r,s,new bd(t.state,o,a>=0)))?new Id(this.source,a,n,n.from,null!==(i=n.to)&&void 0!==i?i:xd(t.state)):new Nd(this.source,1,a)}map(t){if(t.empty)return this;return(this.result.map?this.result.map(this.result,t):this.result)?new Id(this.source,this.explicitPos<0?-1:t.mapPos(this.explicitPos),this.result,t.mapPos(this.from),t.mapPos(this.to,1)):new Nd(this.source,0)}touches(t){return t.changes.touchesRange(this.from,this.to)}}const Bd=dt.define({map:(t,e)=>t.map((t=>t.map(e)))}),Fd=dt.define(),Hd=j.define({create:()=>Yd.start(),update:(t,e)=>t.update(e),provide:t=>[to.from(t,(t=>t.tooltip)),Ir.contentAttributes.from(t,(t=>t.attrs))]});function Jd(t,e){const i=e.completion.apply||e.completion.label;let n=t.state.field(Hd).active.find((t=>t.source==e.source));return n instanceof Id&&("string"==typeof i?t.dispatch(Object.assign(Object.assign({},function(t,e,i,n){let{main:r}=t.selection,s=i-r.from,o=n-r.from;return Object.assign(Object.assign({},t.changeByRange((a=>a!=r&&i!=n&&t.sliceDoc(a.from+s,a.from+o)!=t.sliceDoc(i,n)?{range:a}:{changes:{from:a.from+s,to:n==r.from?a.to:a.from+o,insert:e},range:C.cursor(a.from+s+e.length)}))),{scrollIntoView:!0,userEvent:"input.complete"})}(t.state,i,n.from,n.to)),{annotations:Pd.of(e.completion)})):i(t,e.completion,n.from,n.to),!0)}const Kd=Vd(Hd,Jd);function tu(t,e="option"){return i=>{let n=i.state.field(Hd,!1);if(!n||!n.open||n.open.disabled||Date.now()-n.open.timestamp-1?n.open.selected+s*(t?1:-1):t?0:o-1;return a<0?a="page"==e?0:o-1:a>=o&&(a="page"==e?o-1:0),i.dispatch({effects:Fd.of(a)}),!0}}class eu{constructor(t,e){this.active=t,this.context=e,this.time=Date.now(),this.updates=[],this.done=void 0}}const iu=Fi.fromClass(class{constructor(t){this.view=t,this.debounceUpdate=-1,this.running=[],this.debounceAccept=-1,this.pendingStart=!1,this.composing=0;for(let e of t.state.field(Hd).active)1==e.state&&this.startQuery(e)}update(t){let e=t.state.field(Hd),i=t.state.facet(Cd);if(!t.selectionSet&&!t.docChanged&&t.startState.field(Hd)==e)return;let n=t.transactions.some((t=>{let e=Ld(t,i);return 8&e||(t.selection||t.docChanged)&&!(3&e)}));for(let e=0;e50&&Date.now()-i.time>1e3){for(let t of i.context.abortListeners)try{t()}catch(t){Li(this.view.state,t)}i.context.abortListeners=null,this.running.splice(e--,1)}else i.updates.push(...t.transactions)}this.debounceUpdate>-1&&clearTimeout(this.debounceUpdate),t.transactions.some((t=>t.effects.some((t=>t.is(_d)))))&&(this.pendingStart=!0);let r=this.pendingStart?50:i.activateOnTypingDelay;if(this.debounceUpdate=e.active.some((t=>1==t.state&&!this.running.some((e=>e.active.source==t.source))))?setTimeout((()=>this.startUpdate()),r):-1,0!=this.composing)for(let e of t.transactions)e.isUserEvent("input.type")?this.composing=2:2==this.composing&&e.selection&&(this.composing=3)}startUpdate(){this.debounceUpdate=-1,this.pendingStart=!1;let{state:t}=this.view,e=t.field(Hd);for(let t of e.active)1!=t.state||this.running.some((e=>e.active.source==t.source))||this.startQuery(t)}startQuery(t){let{state:e}=this.view,i=xd(e),n=new bd(e,i,t.explicitPos==i,this.view),r=new eu(t,n);this.running.push(r),Promise.resolve(t.source(n)).then((t=>{r.context.aborted||(r.done=t||null,this.scheduleAccept())}),(t=>{this.view.dispatch({effects:Rd.of(null)}),Li(this.view.state,t)}))}scheduleAccept(){this.running.every((t=>void 0!==t.done))?this.accept():this.debounceAccept<0&&(this.debounceAccept=setTimeout((()=>this.accept()),this.view.state.facet(Cd).updateSyncTime))}accept(){var t;this.debounceAccept>-1&&clearTimeout(this.debounceAccept),this.debounceAccept=-1;let e=[],i=this.view.state.facet(Cd);for(let n=0;nt.source==r.active.source));if(s&&1==s.state)if(null==r.done){let t=new Nd(r.active.source,0);for(let e of r.updates)t=t.update(e,i);1!=t.state&&e.push(t)}else this.startQuery(s)}e.length&&this.view.dispatch({effects:Bd.of(e)})}},{eventHandlers:{blur(t){let e=this.view.state.field(Hd,!1);if(e&&e.tooltip&&this.view.state.facet(Cd).closeOnBlur){let i=e.open&&ao(this.view,e.open.tooltip);i&&i.dom.contains(t.relatedTarget)||setTimeout((()=>this.view.dispatch({effects:Rd.of(null)})),10)}},compositionstart(){this.composing=1},compositionend(){3==this.composing&&setTimeout((()=>this.view.dispatch({effects:_d.of(!1)})),20),this.composing=0}}}),nu="object"==typeof navigator&&/Win/.test(navigator.platform),ru=B.highest(Ir.domEventHandlers({keydown(t,e){let i=e.state.field(Hd,!1);if(!i||!i.open||i.open.disabled||i.open.selected<0||t.key.length>1||t.ctrlKey&&(!nu||!t.altKey)||t.metaKey)return!1;let n=i.open.options[i.open.selected],r=i.active.find((t=>t.source==n.source)),s=n.completion.commitCharacters||r.result.commitCharacters;return s&&s.indexOf(t.key)>-1&&Jd(e,n),!1}})),su=Ir.baseTheme({".cm-tooltip.cm-tooltip-autocomplete":{"& > ul":{fontFamily:"monospace",whiteSpace:"nowrap",overflow:"hidden auto",maxWidth_fallback:"700px",maxWidth:"min(700px, 95vw)",minWidth:"250px",maxHeight:"10em",height:"100%",listStyle:"none",margin:0,padding:0,"& > li, & > completion-section":{padding:"1px 3px",lineHeight:1.2},"& > li":{overflowX:"hidden",textOverflow:"ellipsis",cursor:"pointer"},"& > completion-section":{display:"list-item",borderBottom:"1px solid silver",paddingLeft:"0.5em",opacity:.7}}},"&light .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#17c",color:"white"},"&light .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#777"},"&dark .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#347",color:"white"},"&dark .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#444"},".cm-completionListIncompleteTop:before, .cm-completionListIncompleteBottom:after":{content:'"···"',opacity:.5,display:"block",textAlign:"center"},".cm-tooltip.cm-completionInfo":{position:"absolute",padding:"3px 9px",width:"max-content",maxWidth:"400px",boxSizing:"border-box"},".cm-completionInfo.cm-completionInfo-left":{right:"100%"},".cm-completionInfo.cm-completionInfo-right":{left:"100%"},".cm-completionInfo.cm-completionInfo-left-narrow":{right:"30px"},".cm-completionInfo.cm-completionInfo-right-narrow":{left:"30px"},"&light .cm-snippetField":{backgroundColor:"#00000022"},"&dark .cm-snippetField":{backgroundColor:"#ffffff22"},".cm-snippetFieldPosition":{verticalAlign:"text-top",width:0,height:"1.15em",display:"inline-block",margin:"0 -0.7px -.7em",borderLeft:"1.4px dotted #888"},".cm-completionMatchedText":{textDecoration:"underline"},".cm-completionDetail":{marginLeft:"0.5em",fontStyle:"italic"},".cm-completionIcon":{fontSize:"90%",width:".8em",display:"inline-block",textAlign:"center",paddingRight:".6em",opacity:"0.6",boxSizing:"content-box"},".cm-completionIcon-function, .cm-completionIcon-method":{"&:after":{content:"'ƒ'"}},".cm-completionIcon-class":{"&:after":{content:"'○'"}},".cm-completionIcon-interface":{"&:after":{content:"'◌'"}},".cm-completionIcon-variable":{"&:after":{content:"'𝑥'"}},".cm-completionIcon-constant":{"&:after":{content:"'𝐶'"}},".cm-completionIcon-type":{"&:after":{content:"'𝑡'"}},".cm-completionIcon-enum":{"&:after":{content:"'∪'"}},".cm-completionIcon-property":{"&:after":{content:"'□'"}},".cm-completionIcon-keyword":{"&:after":{content:"'🔑︎'"}},".cm-completionIcon-namespace":{"&:after":{content:"'▢'"}},".cm-completionIcon-text":{"&:after":{content:"'abc'",fontSize:"50%",verticalAlign:"middle"}}});class ou{constructor(t,e,i,n){this.field=t,this.line=e,this.from=i,this.to=n}}class au{constructor(t,e,i){this.field=t,this.from=e,this.to=i}map(t){let e=t.mapPos(this.from,-1,y.TrackDel),i=t.mapPos(this.to,1,y.TrackDel);return null==e||null==i?null:new au(this.field,e,i)}}class lu{constructor(t,e){this.lines=t,this.fieldPositions=e}instantiate(t,e){let i=[],n=[e],r=t.doc.lineAt(e),s=/^\s*/.exec(r.text)[0];for(let r of this.lines){if(i.length){let i=s,o=/^\t*/.exec(r)[0].length;for(let e=0;enew au(t.field,n[t.line]+t.from,n[t.line]+t.to)));return{text:i,ranges:o}}static parse(t){let e,i=[],n=[],r=[];for(let s of t.split(/\r\n?|\n/)){for(;e=/[#$]\{(?:(\d+)(?::([^}]*))?|((?:\\[{}]|[^}])*))\}/.exec(s);){let t=e[1]?+e[1]:null,o=e[2]||e[3]||"",a=-1,l=o.replace(/\\[{}]/g,(t=>t[1]));for(let e=0;e=a&&t.field++}r.push(new ou(a,n.length,e.index,e.index+l.length)),s=s.slice(0,e.index)+o+s.slice(e.index+e[0].length)}s=s.replace(/\\([{}])/g,((t,e,i)=>{for(let t of r)t.line==n.length&&t.from>i&&(t.from--,t.to--);return e})),n.push(s)}return new lu(n,r)}}let hu=si.widget({widget:new class extends ni{toDOM(){let t=document.createElement("span");return t.className="cm-snippetFieldPosition",t}ignoreEvent(){return!1}}}),cu=si.mark({class:"cm-snippetField"});class Ou{constructor(t,e){this.ranges=t,this.active=e,this.deco=si.set(t.map((t=>(t.from==t.to?hu:cu).range(t.from,t.to))))}map(t){let e=[];for(let i of this.ranges){let n=i.map(t);if(!n)return null;e.push(n)}return new Ou(e,this.active)}selectionInsideField(t){return t.ranges.every((t=>this.ranges.some((e=>e.field==this.active&&e.from<=t.from&&e.to>=t.to))))}}const du=dt.define({map:(t,e)=>t&&t.map(e)}),uu=dt.define(),fu=j.define({create:()=>null,update(t,e){for(let i of e.effects){if(i.is(du))return i.value;if(i.is(uu)&&t)return new Ou(t.ranges,i.value)}return t&&e.docChanged&&(t=t.map(e.changes)),t&&e.selection&&!t.selectionInsideField(e.selection)&&(t=null),t},provide:t=>Ir.decorations.from(t,(t=>t?t.deco:si.none))});function pu(t,e){return C.create(t.filter((t=>t.field==e)).map((t=>C.range(t.from,t.to))))}function mu(e){let i=lu.parse(e);return(e,n,r,s)=>{let{text:o,ranges:a}=i.instantiate(e.state,r),l={changes:{from:r,to:s,insert:t.of(o)},scrollIntoView:!0,annotations:n?[Pd.of(n),ut.userEvent.of("input.complete")]:void 0};if(a.length&&(l.selection=pu(a,0)),a.some((t=>t.field>0))){let t=new Ou(a,0),i=l.effects=[du.of(t)];void 0===e.state.field(fu,!1)&&i.push(dt.appendConfig.of([fu,Su,wu,su]))}e.dispatch(e.state.update(l))}}function gu(t){return({state:e,dispatch:i})=>{let n=e.field(fu,!1);if(!n||t<0&&0==n.active)return!1;let r=n.active+t,s=t>0&&!n.ranges.some((e=>e.field==r+t));return i(e.update({selection:pu(n.ranges,r),effects:du.of(s?null:new Ou(n.ranges,r)),scrollIntoView:!0})),!0}}const Qu=[{key:"Tab",run:gu(1),shift:gu(-1)},{key:"Escape",run:({state:t,dispatch:e})=>!!t.field(fu,!1)&&(e(t.update({effects:du.of(null)})),!0)}],bu=A.define({combine:t=>t.length?t[0]:Qu}),Su=B.highest(is.compute([bu],(t=>t.facet(bu))));function vu(t,e){return Object.assign(Object.assign({},e),{apply:mu(t)})}const wu=Ir.domEventHandlers({mousedown(t,e){let i,n=e.state.field(fu,!1);if(!n||null==(i=e.posAtCoords({x:t.clientX,y:t.clientY})))return!1;let r=n.ranges.find((t=>t.from<=i&&t.to>=i));return!(!r||r.field==n.active)&&(e.dispatch({selection:pu(n.ranges,r.field),effects:du.of(n.ranges.some((t=>t.field>r.field))?new Ou(n.ranges,r.field):null),scrollIntoView:!0}),!0)}}),yu={brackets:["(","[","{","'",'"'],before:")]}:;>",stringPrefixes:[]},xu=dt.define({map(t,e){let i=e.mapPos(t,-1,y.TrackAfter);return null==i?void 0:i}}),ku=new class extends Pt{};ku.startSide=1,ku.endSide=-1;const Pu=j.define({create:()=>Rt.empty,update(t,e){if(t=t.map(e.changes),e.selection){let i=e.state.doc.lineAt(e.selection.main.head);t=t.update({filter:t=>t>=i.from&&t<=i.to})}for(let i of e.effects)i.is(xu)&&(t=t.update({add:[ku.range(i.value,i.value+1)]}));return t}});const $u="()[]{}<>";function Tu(t){for(let e=0;e<$u.length;e+=2)if($u.charCodeAt(e)==t)return $u.charAt(e+1);return S(t<128?t:t+1)}function _u(t,e){return t.languageDataAt("closeBrackets",e)[0]||yu}const Ru="object"==typeof navigator&&/Android\b/.test(navigator.userAgent),Zu=Ir.inputHandler.of(((t,e,i,n)=>{if((Ru?t.composing:t.compositionStarted)||t.state.readOnly)return!1;let r=t.state.selection.main;if(n.length>2||2==n.length&&1==v(b(n,0))||e!=r.from||i!=r.to)return!1;let s=function(t,e){let i=_u(t,t.selection.main.head),n=i.brackets||yu.brackets;for(let r of n){let s=Tu(b(r,0));if(e==r)return s==r?zu(t,r,n.indexOf(r+r+r)>-1,i):Wu(t,r,s,i.before||yu.before);if(e==s&&Cu(t,t.selection.main.from))return Au(t,r,s)}return null}(t.state,n);return!!s&&(t.dispatch(s),!0)})),Xu=[{key:"Backspace",run:({state:t,dispatch:e})=>{if(t.readOnly)return!1;let i=_u(t,t.selection.main.head).brackets||yu.brackets,n=null,r=t.changeByRange((e=>{if(e.empty){let n=function(t,e){let i=t.sliceString(e-2,e);return v(b(i,0))==i.length?i:i.slice(1)}(t.doc,e.head);for(let r of i)if(r==n&&qu(t.doc,e.head)==Tu(b(r,0)))return{changes:{from:e.head-r.length,to:e.head+r.length},range:C.cursor(e.head-r.length)}}return{range:n=e}}));return n||e(t.update(r,{scrollIntoView:!0,userEvent:"delete.backward"})),!n}}];function Cu(t,e){let i=!1;return t.field(Pu).between(0,t.doc.length,(t=>{t==e&&(i=!0)})),i}function qu(t,e){let i=t.sliceString(e,e+2);return i.slice(0,v(b(i,0)))}function Wu(t,e,i,n){let r=null,s=t.changeByRange((s=>{if(!s.empty)return{changes:[{insert:e,from:s.from},{insert:i,from:s.to}],effects:xu.of(s.to+e.length),range:C.range(s.anchor+e.length,s.head+e.length)};let o=qu(t.doc,s.head);return!o||/\s/.test(o)||n.indexOf(o)>-1?{changes:{insert:e+i,from:s.head},effects:xu.of(s.head+e.length),range:C.cursor(s.head+e.length)}:{range:r=s}}));return r?null:t.update(s,{scrollIntoView:!0,userEvent:"input.type"})}function Au(t,e,i){let n=null,r=t.changeByRange((e=>e.empty&&qu(t.doc,e.head)==i?{changes:{from:e.head,to:e.head+i.length,insert:i},range:C.cursor(e.head+i.length)}:n={range:e}));return n?null:t.update(r,{scrollIntoView:!0,userEvent:"input.type"})}function zu(t,e,i,n){let r=n.stringPrefixes||yu.stringPrefixes,s=null,o=t.changeByRange((n=>{if(!n.empty)return{changes:[{insert:e,from:n.from},{insert:e,from:n.to}],effects:xu.of(n.to+e.length),range:C.range(n.anchor+e.length,n.head+e.length)};let o,a=n.head,l=qu(t.doc,a);if(l==e){if(Vu(t,a))return{changes:{insert:e+e,from:a},effects:xu.of(a+e.length),range:C.cursor(a+e.length)};if(Cu(t,a)){let n=i&&t.sliceDoc(a,a+3*e.length)==e+e+e?e+e+e:e;return{changes:{from:a,to:a+n.length,insert:n},range:C.cursor(a+n.length)}}}else{if(i&&t.sliceDoc(a-2*e.length,a)==e+e&&(o=Mu(t,a-2*e.length,r))>-1&&Vu(t,o))return{changes:{insert:e+e+e+e,from:a},effects:xu.of(a+e.length),range:C.cursor(a+e.length)};if(t.charCategorizer(a)(l)!=St.Word&&Mu(t,a,r)>-1&&!function(t,e,i,n){let r=cl(t).resolveInner(e,-1),s=n.reduce(((t,e)=>Math.max(t,e.length)),0);for(let o=0;o<5;o++){let o=t.sliceDoc(r.from,Math.min(r.to,r.from+i.length+s)),a=o.indexOf(i);if(!a||a>-1&&n.indexOf(o.slice(0,a))>-1){let e=r.firstChild;for(;e&&e.from==r.from&&e.to-e.from>i.length+a;){if(t.sliceDoc(e.to-i.length,e.to)==i)return!1;e=e.firstChild}return!0}let l=r.to==e&&r.parent;if(!l)break;r=l}return!1}(t,a,e,r))return{changes:{insert:e+e,from:a},effects:xu.of(a+e.length),range:C.cursor(a+e.length)}}return{range:s=n}}));return s?null:t.update(o,{scrollIntoView:!0,userEvent:"input.type"})}function Vu(t,e){let i=cl(t).resolveInner(e+1);return i.parent&&i.from==e}function Mu(t,e,i){let n=t.charCategorizer(e);if(n(t.sliceDoc(e-1,e))!=St.Word)return e;for(let r of i){let i=e-r.length;if(t.sliceDoc(i,e)==r&&n(t.sliceDoc(i-1,i))!=St.Word)return i}return-1}function Eu(t={}){return[ru,Hd,Cd.of(t),iu,Uu,su]}const Yu=[{key:"Ctrl-Space",run:t=>!!t.state.field(Hd,!1)&&(t.dispatch({effects:_d.of(!0)}),!0)},{key:"Escape",run:t=>{let e=t.state.field(Hd,!1);return!(!e||!e.active.some((t=>0!=t.state)))&&(t.dispatch({effects:Rd.of(null)}),!0)}},{key:"ArrowDown",run:tu(!0)},{key:"ArrowUp",run:tu(!1)},{key:"PageDown",run:tu(!0,"page")},{key:"PageUp",run:tu(!1,"page")},{key:"Enter",run:t=>{let e=t.state.field(Hd,!1);return!(t.state.readOnly||!e||!e.open||e.open.selected<0||e.open.disabled||Date.now()-e.open.timestampt.facet(Cd).defaultKeymap?[Yu]:[])));class ju{constructor(t,e,i){this.from=t,this.to=e,this.diagnostic=i}}class Du{constructor(t,e,i){this.diagnostics=t,this.panel=e,this.selected=i}static init(t,e,i){let n=t,r=i.facet(ef).markerFilter;r&&(n=r(n,i));let s=si.set(n.map((t=>t.from==t.to||t.from==t.to-1&&i.doc.lineAt(t.from).to==t.from?si.widget({widget:new sf(t),diagnostic:t}).range(t.from):si.mark({attributes:{class:"cm-lintRange cm-lintRange-"+t.severity+(t.markClass?" "+t.markClass:"")},diagnostic:t,inclusive:!0}).range(t.from,t.to))),!0);return new Du(s,e,Gu(s))}}function Gu(t,e=null,i=0){let n=null;return t.between(i,1e9,((t,i,{spec:r})=>{if(!e||r.diagnostic==e)return n=new ju(t,i,r.diagnostic),!1})),n}const Lu=dt.define(),Nu=dt.define(),Iu=dt.define(),Bu=j.define({create:()=>new Du(si.none,null,null),update(t,e){if(e.docChanged&&t.diagnostics.size){let i=t.diagnostics.map(e.changes),n=null,r=t.panel;if(t.selected){let r=e.changes.mapPos(t.selected.from,1);n=Gu(i,t.selected.diagnostic,r)||Gu(i,null,r)}!i.size&&r&&e.state.facet(ef).autoPanel&&(r=null),t=new Du(i,r,n)}for(let i of e.effects)if(i.is(Lu)){let n=e.state.facet(ef).autoPanel?i.value.length?af.open:null:t.panel;t=Du.init(i.value,n,e.state)}else i.is(Nu)?t=new Du(t.diagnostics,i.value?af.open:null,t.selected):i.is(Iu)&&(t=new Du(t.diagnostics,t.panel,i.value));return t},provide:t=>[po.from(t,(t=>t.panel)),Ir.decorations.from(t,(t=>t.diagnostics))]}),Fu=si.mark({class:"cm-lintRange cm-lintRange-active",inclusive:!0});function Hu(t,e,i){let{diagnostics:n}=t.state.field(Bu),r=[],s=2e8,o=0;n.between(e-(i<0?1:0),e+(i>0?1:0),((t,n,{spec:a})=>{e>=t&&e<=n&&(t==n||(e>t||i>0)&&(e({dom:Ju(t,r)})}:null}function Ju(t,e){return pO("ul",{class:"cm-tooltip-lint"},e.map((e=>rf(t,e,!1))))}const Ku=t=>{let e=t.state.field(Bu,!1);return!(!e||!e.panel)&&(t.dispatch({effects:Nu.of(!1)}),!0)},tf=[{key:"Mod-Shift-m",run:t=>{let e=t.state.field(Bu,!1);var i,n;e&&e.panel||t.dispatch({effects:(i=t.state,n=[Nu.of(!0)],i.field(Bu,!1)?n:n.concat(dt.appendConfig.of(cf)))});let r=co(t,af.open);return r&&r.dom.querySelector(".cm-panel-lint ul").focus(),!0},preventDefault:!0},{key:"F8",run:t=>{let e=t.state.field(Bu,!1);if(!e)return!1;let i=t.state.selection.main,n=e.diagnostics.iter(i.to+1);return!(!n.value&&(n=e.diagnostics.iter(0),!n.value||n.from==i.from&&n.to==i.to))&&(t.dispatch({selection:{anchor:n.from,head:n.to},scrollIntoView:!0}),!0)}}],ef=A.define({combine:t=>Object.assign({sources:t.map((t=>t.source)).filter((t=>null!=t))},kt(t.map((t=>t.config)),{delay:750,markerFilter:null,tooltipFilter:null,needsRefresh:null,hideOn:()=>null},{needsRefresh:(t,e)=>t?e?i=>t(i)||e(i):t:e}))});function nf(t){let e=[];if(t)t:for(let{name:i}of t){for(let t=0;tt.toLowerCase()==n.toLowerCase()))){e.push(n);continue t}}e.push("")}return e}function rf(t,e,i){var n;let r=i?nf(e.actions):[];return pO("li",{class:"cm-diagnostic cm-diagnostic-"+e.severity},pO("span",{class:"cm-diagnosticText"},e.renderMessage?e.renderMessage(t):e.message),null===(n=e.actions)||void 0===n?void 0:n.map(((i,n)=>{let s=!1,o=n=>{if(n.preventDefault(),s)return;s=!0;let r=Gu(t.state.field(Bu).diagnostics,e);r&&i.apply(t,r.from,r.to)},{name:a}=i,l=r[n]?a.indexOf(r[n]):-1,h=l<0?a:[a.slice(0,l),pO("u",a.slice(l,l+1)),a.slice(l+1)];return pO("button",{type:"button",class:"cm-diagnosticAction",onclick:o,onmousedown:o,"aria-label":` Action: ${a}${l<0?"":` (access key "${r[n]})"`}.`},h)})),e.source&&pO("div",{class:"cm-diagnosticSource"},e.source))}class sf extends ni{constructor(t){super(),this.diagnostic=t}eq(t){return t.diagnostic==this.diagnostic}toDOM(){return pO("span",{class:"cm-lintPoint cm-lintPoint-"+this.diagnostic.severity})}}class of{constructor(t,e){this.diagnostic=e,this.id="item_"+Math.floor(4294967295*Math.random()).toString(16),this.dom=rf(t,e,!0),this.dom.id=this.id,this.dom.setAttribute("role","option")}}class af{constructor(t){this.view=t,this.items=[];this.list=pO("ul",{tabIndex:0,role:"listbox","aria-label":this.view.state.phrase("Diagnostics"),onkeydown:e=>{if(27==e.keyCode)Ku(this.view),this.view.focus();else if(38==e.keyCode||33==e.keyCode)this.moveSelection((this.selectedIndex-1+this.items.length)%this.items.length);else if(40==e.keyCode||34==e.keyCode)this.moveSelection((this.selectedIndex+1)%this.items.length);else if(36==e.keyCode)this.moveSelection(0);else if(35==e.keyCode)this.moveSelection(this.items.length-1);else if(13==e.keyCode)this.view.focus();else{if(!(e.keyCode>=65&&e.keyCode<=90&&this.selectedIndex>=0))return;{let{diagnostic:i}=this.items[this.selectedIndex],n=nf(i.actions);for(let r=0;r{for(let e=0;eKu(this.view)},"×")),this.update()}get selectedIndex(){let t=this.view.state.field(Bu).selected;if(!t)return-1;for(let e=0;e{let a,l=-1;for(let t=i;ti&&(this.items.splice(i,l-i),n=!0)),e&&a.diagnostic==e.diagnostic?a.dom.hasAttribute("aria-selected")||(a.dom.setAttribute("aria-selected","true"),r=a):a.dom.hasAttribute("aria-selected")&&a.dom.removeAttribute("aria-selected"),i++}));i({sel:r.dom.getBoundingClientRect(),panel:this.list.getBoundingClientRect()}),write:({sel:t,panel:e})=>{let i=e.height/this.list.offsetHeight;t.tope.bottom&&(this.list.scrollTop+=(t.bottom-e.bottom)/i)}})):this.selectedIndex<0&&this.list.removeAttribute("aria-activedescendant"),n&&this.sync()}sync(){let t=this.list.firstChild;function e(){let e=t;t=e.nextSibling,e.remove()}for(let i of this.items)if(i.dom.parentNode==this.list){for(;t!=i.dom;)e();t=i.dom.nextSibling}else this.list.insertBefore(i.dom,t);for(;t;)e()}moveSelection(t){if(this.selectedIndex<0)return;let e=Gu(this.view.state.field(Bu).diagnostics,this.items[t].diagnostic);e&&this.view.dispatch({selection:{anchor:e.from,head:e.to},scrollIntoView:!0,effects:Iu.of(e)})}static open(t){return new af(t)}}function lf(t){return function(t,e='viewBox="0 0 40 40"'){return`url('data:image/svg+xml,${encodeURIComponent(t)}')`}(``,'width="6" height="3"')}const hf=Ir.baseTheme({".cm-diagnostic":{padding:"3px 6px 3px 8px",marginLeft:"-1px",display:"block",whiteSpace:"pre-wrap"},".cm-diagnostic-error":{borderLeft:"5px solid #d11"},".cm-diagnostic-warning":{borderLeft:"5px solid orange"},".cm-diagnostic-info":{borderLeft:"5px solid #999"},".cm-diagnostic-hint":{borderLeft:"5px solid #66d"},".cm-diagnosticAction":{font:"inherit",border:"none",padding:"2px 4px",backgroundColor:"#444",color:"white",borderRadius:"3px",marginLeft:"8px",cursor:"pointer"},".cm-diagnosticSource":{fontSize:"70%",opacity:.7},".cm-lintRange":{backgroundPosition:"left bottom",backgroundRepeat:"repeat-x",paddingBottom:"0.7px"},".cm-lintRange-error":{backgroundImage:lf("#d11")},".cm-lintRange-warning":{backgroundImage:lf("orange")},".cm-lintRange-info":{backgroundImage:lf("#999")},".cm-lintRange-hint":{backgroundImage:lf("#66d")},".cm-lintRange-active":{backgroundColor:"#ffdd9980"},".cm-tooltip-lint":{padding:0,margin:0},".cm-lintPoint":{position:"relative","&:after":{content:'""',position:"absolute",bottom:0,left:"-2px",borderLeft:"3px solid transparent",borderRight:"3px solid transparent",borderBottom:"4px solid #d11"}},".cm-lintPoint-warning":{"&:after":{borderBottomColor:"orange"}},".cm-lintPoint-info":{"&:after":{borderBottomColor:"#999"}},".cm-lintPoint-hint":{"&:after":{borderBottomColor:"#66d"}},".cm-panel.cm-panel-lint":{position:"relative","& ul":{maxHeight:"100px",overflowY:"auto","& [aria-selected]":{backgroundColor:"#ddd","& u":{textDecoration:"underline"}},"&:focus [aria-selected]":{background_fallback:"#bdf",backgroundColor:"Highlight",color_fallback:"white",color:"HighlightText"},"& u":{textDecoration:"none"},padding:0,margin:0},"& [name=close]":{position:"absolute",top:"0",right:"2px",background:"inherit",border:"none",font:"inherit",padding:0,margin:0}}}),cf=[Bu,Ir.decorations.compute([Bu],(t=>{let{selected:e,panel:i}=t.field(Bu);return e&&i&&e.from!=e.to?si.set([Fu.range(e.from,e.to)]):si.none})),oo(Hu,{hideOn:function(t,e){let i=e.pos,n=e.end||i,r=t.state.facet(ef).hideOn(t,i,n);if(null!=r)return r;let s=t.startState.doc.lineAt(e.pos);return!(!t.effects.some((t=>t.is(Lu)))&&!t.changes.touchesRange(s.from,Math.max(s.to,n)))}}),hf],Of=(()=>[qo(),zo,qs(),Hh(),oh(),gs(),[ks,Ps],xt.allowMultipleSelections.of(!0),xt.transactionFilter.of((t=>{if(!t.docChanged||!t.isUserEvent("input.type")&&!t.isUserEvent("input.complete"))return t;let e=t.startState.languageDataAt("indentOnInput",t.startState.selection.main.head);if(!e.length)return t;let i=t.newDoc,{head:n}=t.newSelection.main,r=i.lineAt(n);if(n>r.from+200)return t;let s=i.sliceString(r.from,n);if(!e.some((t=>t.test(s))))return t;let{state:o}=t,a=-1,l=[];for(let{head:t}of o.selection.ranges){let e=o.doc.lineAt(t);if(e.from==a)continue;a=e.from;let i=Pl(o,e.from);if(null==i)continue;let n=/^\s*/.exec(e.text)[0],r=kl(o,i);n!=r&&l.push({from:e.from,to:e.from+n.length,insert:r})}return l.length?[t,{changes:l,sequential:!0}]:t})),dh(ph,{fallback:!0}),kh(),[Zu,Pu],Eu(),Ir.mouseSelectionStyle.of(((t,e)=>(t=>t.altKey&&0==t.button)(e)?Us(t,e):null)),Gs(),Ms,[AO,WO],is.of([...Xu,...uO,...Od,...fc,...Hl,...Yu,...tf])])(),df=(()=>[qs(),Hh(),gs(),dh(ph,{fallback:!0}),is.of([...uO,...fc])])();class uf{constructor(t,e,i,n,r,s,o,a,l,h=0,c){this.p=t,this.stack=e,this.state=i,this.reducePos=n,this.pos=r,this.score=s,this.buffer=o,this.bufferBase=a,this.curContext=l,this.lookAhead=h,this.parent=c}toString(){return`[${this.stack.filter(((t,e)=>e%3==0)).concat(this.state)}]@${this.pos}${this.score?"!"+this.score:""}`}static start(t,e,i=0){let n=t.parser.context;return new uf(t,[],e,i,i,0,[],0,n?new ff(n,n.start):null,0,null)}get context(){return this.curContext?this.curContext.context:null}pushState(t,e){this.stack.push(this.state,e,this.bufferBase+this.buffer.length),this.state=t}reduce(t){var e;let i=t>>19,n=65535&t,{parser:r}=this.p,s=this.reducePos=2e3&&!(null===(e=this.p.parser.nodeSet.types[n])||void 0===e?void 0:e.isAnonymous)&&(l==this.p.lastBigReductionStart?(this.p.bigReductionCount++,this.p.lastBigReductionSize=h):this.p.lastBigReductionSizea;)this.stack.pop();this.reduceContext(n,l)}storeNode(t,e,i,n=4,r=!1){if(0==t&&(!this.stack.length||this.stack[this.stack.length-1]0&&0==t.buffer[n-4]&&t.buffer[n-1]>-1){if(e==i)return;if(t.buffer[n-2]>=e)return void(t.buffer[n-2]=i)}}if(r&&this.pos!=i){let r=this.buffer.length;if(r>0&&0!=this.buffer[r-4]){let t=!1;for(let e=r;e>0&&this.buffer[e-2]>i;e-=4)if(this.buffer[e-1]>=0){t=!0;break}if(t)for(;r>0&&this.buffer[r-2]>i;)this.buffer[r]=this.buffer[r-4],this.buffer[r+1]=this.buffer[r-3],this.buffer[r+2]=this.buffer[r-2],this.buffer[r+3]=this.buffer[r-1],r-=4,n>4&&(n-=4)}this.buffer[r]=t,this.buffer[r+1]=e,this.buffer[r+2]=i,this.buffer[r+3]=n}else this.buffer.push(t,e,i,n)}shift(t,e,i,n){if(131072&t)this.pushState(65535&t,this.pos);else if(262144&t)this.pos=n,this.shiftContext(e,i),e<=this.p.parser.maxNode&&this.buffer.push(e,i,n,4);else{let r=t,{parser:s}=this.p;(n>this.pos||e<=s.maxNode)&&(this.pos=n,s.stateFlag(r,1)||(this.reducePos=n)),this.pushState(r,i),this.shiftContext(e,i),e<=s.maxNode&&this.buffer.push(e,i,n,4)}}apply(t,e,i,n){65536&t?this.reduce(t):this.shift(t,e,i,n)}useNode(t,e){let i=this.p.reused.length-1;(i<0||this.p.reused[i]!=t)&&(this.p.reused.push(t),i++);let n=this.pos;this.reducePos=this.pos=n+t.length,this.pushState(e,n),this.buffer.push(i,n,this.reducePos,-1),this.curContext&&this.updateContext(this.curContext.tracker.reuse(this.curContext.context,t,this,this.p.stream.reset(this.pos-t.length)))}split(){let t=this,e=t.buffer.length;for(;e>0&&t.buffer[e-2]>t.reducePos;)e-=4;let i=t.buffer.slice(e),n=t.bufferBase+e;for(;t&&n==t.bufferBase;)t=t.parent;return new uf(this.p,this.stack.slice(),this.state,this.reducePos,this.pos,this.score,i,n,this.curContext,this.lookAhead,t)}recoverByDelete(t,e){let i=t<=this.p.parser.maxNode;i&&this.storeNode(t,this.pos,e,4),this.storeNode(0,this.pos,e,i?8:4),this.pos=this.reducePos=e,this.score-=190}canShift(t){for(let e=new pf(this);;){let i=this.p.parser.stateSlot(e.state,4)||this.p.parser.hasAction(e.state,t);if(0==i)return!1;if(!(65536&i))return!0;e.reduce(i)}}recoverByInsert(t){if(this.stack.length>=300)return[];let e=this.p.parser.nextStates(this.state);if(e.length>8||this.stack.length>=120){let i=[];for(let n,r=0;r1&e&&t==n))||i.push(e[t],n)}e=i}let i=[];for(let t=0;t>19,n=65535&e,r=this.stack.length-3*i;if(r<0||t.getGoto(this.stack[r],n,!1)<0){let t=this.findForcedReduction();if(null==t)return!1;e=t}this.storeNode(0,this.pos,this.pos,4,!0),this.score-=100}return this.reducePos=this.pos,this.reduce(e),!0}findForcedReduction(){let{parser:t}=this.p,e=[],i=(n,r)=>{if(!e.includes(n))return e.push(n),t.allActions(n,(e=>{if(393216&e);else if(65536&e){let i=(e>>19)-r;if(i>1){let n=65535&e,r=this.stack.length-3*i;if(r>=0&&t.getGoto(this.stack[r],n,!1)>=0)return i<<19|65536|n}}else{let t=i(e,r+1);if(null!=t)return t}}))};return i(this.state,0)}forceAll(){for(;!this.p.parser.stateFlag(this.state,2);)if(!this.forceReduce()){this.storeNode(0,this.pos,this.pos,4,!0);break}return this}get deadEnd(){if(3!=this.stack.length)return!1;let{parser:t}=this.p;return 65535==t.data[t.stateSlot(this.state,1)]&&!t.stateSlot(this.state,4)}restart(){this.storeNode(0,this.pos,this.pos,4,!0),this.state=this.stack[0],this.stack.length=0}sameState(t){if(this.state!=t.state||this.stack.length!=t.stack.length)return!1;for(let e=0;ethis.lookAhead&&(this.emitLookAhead(),this.lookAhead=t)}close(){this.curContext&&this.curContext.tracker.strict&&this.emitContext(),this.lookAhead>0&&this.emitLookAhead()}}class ff{constructor(t,e){this.tracker=t,this.context=e,this.hash=t.strict?t.hash(e):0}}class pf{constructor(t){this.start=t,this.state=t.state,this.stack=t.stack,this.base=this.stack.length}reduce(t){let e=65535&t,i=t>>19;0==i?(this.stack==this.start.stack&&(this.stack=this.stack.slice()),this.stack.push(this.state,0,0),this.base+=3):this.base-=3*(i-1);let n=this.start.p.parser.getGoto(this.stack[this.base-3],e,!0);this.state=n}}class mf{constructor(t,e,i){this.stack=t,this.pos=e,this.index=i,this.buffer=t.buffer,0==this.index&&this.maybeNext()}static create(t,e=t.bufferBase+t.buffer.length){return new mf(t,e,e-t.bufferBase)}maybeNext(){let t=this.stack.parent;null!=t&&(this.index=this.stack.bufferBase-t.bufferBase,this.stack=t,this.buffer=t.buffer)}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}next(){this.index-=4,this.pos-=4,0==this.index&&this.maybeNext()}fork(){return new mf(this.stack,this.pos,this.index)}}function gf(t,e=Uint16Array){if("string"!=typeof t)return t;let i=null;for(let n=0,r=0;n=92&&e--,e>=34&&e--;let r=e-32;if(r>=46&&(r-=46,i=!0),s+=r,i)break;s*=46}i?i[r++]=s:i=new e(s)}return i}class Qf{constructor(){this.start=-1,this.value=-1,this.end=-1,this.extended=-1,this.lookAhead=0,this.mask=0,this.context=0}}const bf=new Qf;class Sf{constructor(t,e){this.input=t,this.ranges=e,this.chunk="",this.chunkOff=0,this.chunk2="",this.chunk2Pos=0,this.next=-1,this.token=bf,this.rangeIndex=0,this.pos=this.chunkPos=e[0].from,this.range=e[0],this.end=e[e.length-1].to,this.readNext()}resolveOffset(t,e){let i=this.range,n=this.rangeIndex,r=this.pos+t;for(;ri.to:r>=i.to;){if(n==this.ranges.length-1)return null;let t=this.ranges[++n];r+=t.from-i.to,i=t}return r}clipPos(t){if(t>=this.range.from&&tt)return Math.max(t,e.from);return this.end}peek(t){let e,i,n=this.chunkOff+t;if(n>=0&&n=this.chunk2Pos&&en.to&&(this.chunk2=this.chunk2.slice(0,n.to-e)),i=this.chunk2.charCodeAt(0)}}return e>=this.token.lookAhead&&(this.token.lookAhead=e+1),i}acceptToken(t,e=0){let i=e?this.resolveOffset(e,-1):this.pos;if(null==i||i=this.chunk2Pos&&this.posthis.range.to?t.slice(0,this.range.to-this.pos):t,this.chunkPos=this.pos,this.chunkOff=0}}readNext(){return this.chunkOff>=this.chunk.length&&(this.getChunk(),this.chunkOff==this.chunk.length)?this.next=-1:this.next=this.chunk.charCodeAt(this.chunkOff)}advance(t=1){for(this.chunkOff+=t;this.pos+t>=this.range.to;){if(this.rangeIndex==this.ranges.length-1)return this.setDone();t-=this.range.to-this.pos,this.range=this.ranges[++this.rangeIndex],this.pos=this.range.from}return this.pos+=t,this.pos>=this.token.lookAhead&&(this.token.lookAhead=this.pos+1),this.readNext()}setDone(){return this.pos=this.chunkPos=this.end,this.range=this.ranges[this.rangeIndex=this.ranges.length-1],this.chunk="",this.next=-1}reset(t,e){if(e?(this.token=e,e.start=t,e.lookAhead=t+1,e.value=e.extended=-1):this.token=bf,this.pos!=t){if(this.pos=t,t==this.end)return this.setDone(),this;for(;t=this.range.to;)this.range=this.ranges[++this.rangeIndex];t>=this.chunkPos&&t=this.chunkPos&&e<=this.chunkPos+this.chunk.length)return this.chunk.slice(t-this.chunkPos,e-this.chunkPos);if(t>=this.chunk2Pos&&e<=this.chunk2Pos+this.chunk2.length)return this.chunk2.slice(t-this.chunk2Pos,e-this.chunk2Pos);if(t>=this.range.from&&e<=this.range.to)return this.input.read(t,e);let i="";for(let n of this.ranges){if(n.from>=e)break;n.to>t&&(i+=this.input.read(Math.max(n.from,t),Math.min(n.to,e)))}return i}}class vf{constructor(t,e){this.data=t,this.id=e}token(t,e){let{parser:i}=e.p;xf(this.data,t,e,this.id,i.data,i.tokenPrecTable)}}vf.prototype.contextual=vf.prototype.fallback=vf.prototype.extend=!1;class wf{constructor(t,e,i){this.precTable=e,this.elseToken=i,this.data="string"==typeof t?gf(t):t}token(t,e){let i=t.pos,n=0;for(;;){let i=t.next<0,r=t.resolveOffset(1,1);if(xf(this.data,t,e,0,this.data,this.precTable),t.token.value>-1)break;if(null==this.elseToken)return;if(i||n++,null==r)break;t.reset(r,t.token)}n&&(t.reset(i,t.token),t.acceptToken(this.elseToken,n))}}wf.prototype.contextual=vf.prototype.fallback=vf.prototype.extend=!1;class yf{constructor(t,e={}){this.token=t,this.contextual=!!e.contextual,this.fallback=!!e.fallback,this.extend=!!e.extend}}function xf(t,e,i,n,r,s){let o=0,a=1<0){let i=t[n];if(l.allows(i)&&(-1==e.token.value||e.token.value==i||Pf(i,e.token.value,r,s))){e.acceptToken(i);break}}let n=e.next,h=0,c=t[o+2];if(!(e.next<0&&c>h&&65535==t[i+3*c-3])){for(;h>1,s=i+r+(r<<1),a=t[s],l=t[s+1]||65536;if(n=l)){o=t[s+2],e.advance();continue t}h=r+1}}break}o=t[i+3*c-1]}}function kf(t,e,i){for(let n,r=e;65535!=(n=t[r]);r++)if(n==i)return r-e;return-1}function Pf(t,e,i,n){let r=kf(i,n,e);return r<0||kf(i,n,t)e)&&!n.type.isError)return i<0?Math.max(0,Math.min(n.to-1,e-25)):Math.min(t.length,Math.max(n.from+1,e+25));if(i<0?n.prevSibling():n.nextSibling())break;if(!n.parent())return i<0?0:t.length}}let Rf=class{constructor(t,e){this.fragments=t,this.nodeSet=e,this.i=0,this.fragment=null,this.safeFrom=-1,this.safeTo=-1,this.trees=[],this.start=[],this.index=[],this.nextFragment()}nextFragment(){let t=this.fragment=this.i==this.fragments.length?null:this.fragments[this.i++];if(t){for(this.safeFrom=t.openStart?_f(t.tree,t.from+t.offset,1)-t.offset:t.from,this.safeTo=t.openEnd?_f(t.tree,t.to+t.offset,-1)-t.offset:t.to;this.trees.length;)this.trees.pop(),this.start.pop(),this.index.pop();this.trees.push(t.tree),this.start.push(-t.offset),this.index.push(0),this.nextStart=this.safeFrom}else this.nextStart=1e9}nodeAt(t){if(tt)return this.nextStart=s,null;if(r instanceof Bo){if(s==t){if(s=Math.max(this.safeFrom,t)&&(this.trees.push(r),this.start.push(s),this.index.push(0))}else this.index[e]++,this.nextStart=s+r.length}}};class Zf{constructor(t,e){this.stream=e,this.tokens=[],this.mainToken=null,this.actions=[],this.tokens=t.tokenizers.map((t=>new Qf))}getActions(t){let e=0,i=null,{parser:n}=t.p,{tokenizers:r}=n,s=n.stateSlot(t.state,3),o=t.curContext?t.curContext.hash:0,a=0;for(let n=0;nh.end+25&&(a=Math.max(h.lookAhead,a)),0!=h.value)){let n=e;if(h.extended>-1&&(e=this.addActions(t,h.extended,h.end,e)),e=this.addActions(t,h.value,h.end,e),!l.extend&&(i=h,e>n))break}}for(;this.actions.length>e;)this.actions.pop();return a&&t.setLookAhead(a),i||t.pos!=this.stream.end||(i=new Qf,i.value=t.p.parser.eofTerm,i.start=i.end=t.pos,e=this.addActions(t,i.value,i.end,e)),this.mainToken=i,this.actions}getMainToken(t){if(this.mainToken)return this.mainToken;let e=new Qf,{pos:i,p:n}=t;return e.start=i,e.end=Math.min(i+1,n.stream.end),e.value=i==n.stream.end?n.parser.eofTerm:0,e}updateCachedToken(t,e,i){let n=this.stream.clipPos(i.pos);if(e.token(this.stream.reset(n,t),i),t.value>-1){let{parser:e}=i.p;for(let n=0;n=0&&i.p.parser.dialect.allows(r>>1)){1&r?t.extended=r>>1:t.value=r>>1;break}}}else t.value=0,t.end=this.stream.clipPos(n+1)}putAction(t,e,i,n){for(let e=0;e4*t.bufferLength?new Rf(i,t.nodeSet):null}get parsedPos(){return this.minStackPos}advance(){let t,e,i=this.stacks,n=this.minStackPos,r=this.stacks=[];if(this.bigReductionCount>300&&1==i.length){let[t]=i;for(;t.forceReduce()&&t.stack.length&&t.stack[t.stack.length-2]>=this.lastBigReductionStart;);this.bigReductionCount=this.lastBigReductionSize=0}for(let s=0;sn)r.push(o);else{if(this.advanceStack(o,r,i))continue;{t||(t=[],e=[]),t.push(o);let i=this.tokens.getMainToken(o);e.push(i.value,i.end)}}break}}if(!r.length){let e=t&&function(t){let e=null;for(let i of t){let t=i.p.stoppedAt;(i.pos==i.p.stream.end||null!=t&&i.pos>t)&&i.p.parser.stateFlag(i.state,2)&&(!e||e.scorethis.stoppedAt?t[0]:this.runRecovery(t,e,r);if(i)return $f&&console.log("Force-finish "+this.stackID(i)),this.stackToTree(i.forceAll())}if(this.recovering){let t=1==this.recovering?1:3*this.recovering;if(r.length>t)for(r.sort(((t,e)=>e.score-t.score));r.length>t;)r.pop();r.some((t=>t.reducePos>n))&&this.recovering--}else if(r.length>1){t:for(let t=0;t500&&n.buffer.length>500){if(!((e.score-n.score||e.buffer.length-n.buffer.length)>0)){r.splice(t--,1);continue t}r.splice(i--,1)}}}r.length>12&&r.splice(12,r.length-12)}this.minStackPos=r[0].pos;for(let t=1;t ":"";if(null!=this.stoppedAt&&n>this.stoppedAt)return t.forceReduce()?t:null;if(this.fragments){let e=t.curContext&&t.curContext.tracker.strict,i=e?t.curContext.hash:0;for(let o=this.fragments.nodeAt(n);o;){let n=this.parser.nodeSet.types[o.type.id]==o.type?r.getGoto(t.state,o.type.id):-1;if(n>-1&&o.length&&(!e||(o.prop(Yo.contextHash)||0)==i))return t.useNode(o,n),$f&&console.log(s+this.stackID(t)+` (via reuse of ${r.getName(o.type.id)})`),!0;if(!(o instanceof Bo)||0==o.children.length||o.positions[0]>0)break;let a=o.children[0];if(!(a instanceof Bo&&0==o.positions[0]))break;o=a}}let o=r.stateSlot(t.state,4);if(o>0)return t.reduce(o),$f&&console.log(s+this.stackID(t)+` (via always-reduce ${r.getName(65535&o)})`),!0;if(t.stack.length>=8400)for(;t.stack.length>6e3&&t.forceReduce(););let a=this.tokens.getActions(t);for(let o=0;on?e.push(d):i.push(d)}return!1}advanceFully(t,e){let i=t.pos;for(;;){if(!this.advanceStack(t,null,null))return!1;if(t.pos>i)return Cf(t,e),!0}}runRecovery(t,e,i){let n=null,r=!1;for(let s=0;s ":"";if(o.deadEnd){if(r)continue;if(r=!0,o.restart(),$f&&console.log(h+this.stackID(o)+" (restarted)"),this.advanceFully(o,i))continue}let c=o.split(),O=h;for(let t=0;c.forceReduce()&&t<10;t++){if($f&&console.log(O+this.stackID(c)+" (via force-reduce)"),this.advanceFully(c,i))break;$f&&(O=this.stackID(c)+" -> ")}for(let t of o.recoverByInsert(a))$f&&console.log(h+this.stackID(t)+" (via recover-insert)"),this.advanceFully(t,i);this.stream.end>o.pos?(l==o.pos&&(l++,a=0),o.recoverByDelete(a,l),$f&&console.log(h+this.stackID(o)+` (via recover-delete ${this.parser.getName(a)})`),Cf(o,i)):(!n||n.scoret;class Af{constructor(t){this.start=t.start,this.shift=t.shift||Wf,this.reduce=t.reduce||Wf,this.reuse=t.reuse||Wf,this.hash=t.hash||(()=>0),this.strict=!1!==t.strict}}class zf extends pa{constructor(t){if(super(),this.wrappers=[],14!=t.version)throw new RangeError(`Parser version (${t.version}) doesn't match runtime version (14)`);let e=t.nodeNames.split(" ");this.minRepeatTerm=e.length;for(let i=0;it.topRules[e][1])),n=[];for(let t=0;t=0)r(n,t,e[i++]);else{let s=e[i+-n];for(let o=-n;o>0;o--)r(e[i++],t,s);i++}}}this.nodeSet=new Go(e.map(((e,r)=>Do.define({name:r>=this.minRepeatTerm?void 0:e,id:r,props:n[r],top:i.indexOf(r)>-1,error:0==r,skipped:t.skippedNodes&&t.skippedNodes.indexOf(r)>-1})))),t.propSources&&(this.nodeSet=this.nodeSet.extend(...t.propSources)),this.strict=!1,this.bufferLength=Vo;let s=gf(t.tokenData);this.context=t.context,this.specializerSpecs=t.specialized||[],this.specialized=new Uint16Array(this.specializerSpecs.length);for(let t=0;t"number"==typeof t?new vf(s,t):t)),this.topRules=t.topRules,this.dialects=t.dialects||{},this.dynamicPrecedences=t.dynamicPrecedences||null,this.tokenPrecTable=t.tokenPrec,this.termNames=t.termNames||null,this.maxNode=this.nodeSet.types.length-1,this.dialect=this.parseDialect(),this.top=this.topRules[Object.keys(this.topRules)[0]]}createParse(t,e,i){let n=new Xf(this,t,e,i);for(let r of this.wrappers)n=r(n,t,e,i);return n}getGoto(t,e,i=!1){let n=this.goto;if(e>=n[0])return-1;for(let r=n[e+1];;){let e=n[r++],s=1&e,o=n[r++];if(s&&i)return o;for(let i=r+(e>>1);r0}validAction(t,e){return!!this.allActions(t,(t=>t==e||null))}allActions(t,e){let i=this.stateSlot(t,4),n=i?e(i):void 0;for(let i=this.stateSlot(t,1);null==n;i+=3){if(65535==this.data[i]){if(1!=this.data[i+1])break;i=Vf(this.data,i+2)}n=e(Vf(this.data,i+1))}return n}nextStates(t){let e=[];for(let i=this.stateSlot(t,1);;i+=3){if(65535==this.data[i]){if(1!=this.data[i+1])break;i=Vf(this.data,i+2)}if(!(1&this.data[i+2])){let t=this.data[i+1];e.some(((e,i)=>1&i&&e==t))||e.push(this.data[i],t)}}return e}configure(t){let e=Object.assign(Object.create(zf.prototype),this);if(t.props&&(e.nodeSet=this.nodeSet.extend(...t.props)),t.top){let i=this.topRules[t.top];if(!i)throw new RangeError(`Invalid top rule name ${t.top}`);e.top=i}return t.tokenizers&&(e.tokenizers=this.tokenizers.map((e=>{let i=t.tokenizers.find((t=>t.from==e));return i?i.to:e}))),t.specializers&&(e.specializers=this.specializers.slice(),e.specializerSpecs=this.specializerSpecs.map(((i,n)=>{let r=t.specializers.find((t=>t.from==i.external));if(!r)return i;let s=Object.assign(Object.assign({},i),{external:r.to});return e.specializers[n]=Mf(s),s}))),t.contextTracker&&(e.context=t.contextTracker),t.dialect&&(e.dialect=this.parseDialect(t.dialect)),null!=t.strict&&(e.strict=t.strict),t.wrap&&(e.wrappers=e.wrappers.concat(t.wrap)),null!=t.bufferLength&&(e.bufferLength=t.bufferLength),e}hasWrappers(){return this.wrappers.length>0}getName(t){return this.termNames?this.termNames[t]:String(t<=this.maxNode&&this.nodeSet.types[t].name||t)}get eofTerm(){return this.maxNode+1}get topNode(){return this.nodeSet.types[this.top[1]]}dynamicPrecedence(t){let e=this.dynamicPrecedences;return null==e?0:e[t]||0}parseDialect(t){let e=Object.keys(this.dialects),i=e.map((()=>!1));if(t)for(let n of t.split(" ")){let t=e.indexOf(n);t>=0&&(i[t]=!0)}let n=null;for(let t=0;tt.external(i,n)<<1|e}return t.get}const Ef=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],Yf=new Af({start:!1,shift:(t,e)=>5==e||6==e||315==e?t:316==e,strict:!1}),Uf=new yf(((t,e)=>{let{next:i}=t;(125==i||-1==i||e.context)&&t.acceptToken(313)}),{contextual:!0,fallback:!0}),jf=new yf(((t,e)=>{let i,{next:n}=t;Ef.indexOf(n)>-1||(47!=n||47!=(i=t.peek(1))&&42!=i)&&(125==n||59==n||-1==n||e.context||t.acceptToken(312))}),{contextual:!0}),Df=new yf(((t,e)=>{let{next:i}=t;if(43==i||45==i){if(t.advance(),i==t.next){t.advance();let i=!e.context&&e.canShift(1);t.acceptToken(i?1:2)}}else 63==i&&46==t.peek(1)&&(t.advance(),t.advance(),(t.next<48||t.next>57)&&t.acceptToken(3))}),{contextual:!0});function Gf(t,e){return t>=65&&t<=90||t>=97&&t<=122||95==t||t>=192||!e&&t>=48&&t<=57}const Lf=new yf(((t,e)=>{if(60!=t.next||!e.dialectEnabled(0))return;if(t.advance(),47==t.next)return;let i=0;for(;Ef.indexOf(t.next)>-1;)t.advance(),i++;if(Gf(t.next,!0)){for(t.advance(),i++;Gf(t.next,!1);)t.advance(),i++;for(;Ef.indexOf(t.next)>-1;)t.advance(),i++;if(44==t.next)return;for(let e=0;;e++){if(7==e){if(!Gf(t.next,!0))return;break}if(t.next!="extends".charCodeAt(e))break;t.advance(),i++}}t.acceptToken(4,-i)})),Nf=Wa({"get set async static":il.modifier,"for while do if else switch try catch finally return throw break continue default case":il.controlKeyword,"in of await yield void typeof delete instanceof":il.operatorKeyword,"let var const using function class extends":il.definitionKeyword,"import export from":il.moduleKeyword,"with debugger as new":il.keyword,TemplateString:il.special(il.string),super:il.atom,BooleanLiteral:il.bool,this:il.self,null:il.null,Star:il.modifier,VariableName:il.variableName,"CallExpression/VariableName TaggedTemplateExpression/VariableName":il.function(il.variableName),VariableDefinition:il.definition(il.variableName),Label:il.labelName,PropertyName:il.propertyName,PrivatePropertyName:il.special(il.propertyName),"CallExpression/MemberExpression/PropertyName":il.function(il.propertyName),"FunctionDeclaration/VariableDefinition":il.function(il.definition(il.variableName)),"ClassDeclaration/VariableDefinition":il.definition(il.className),PropertyDefinition:il.definition(il.propertyName),PrivatePropertyDefinition:il.definition(il.special(il.propertyName)),UpdateOp:il.updateOperator,"LineComment Hashbang":il.lineComment,BlockComment:il.blockComment,Number:il.number,String:il.string,Escape:il.escape,ArithOp:il.arithmeticOperator,LogicOp:il.logicOperator,BitOp:il.bitwiseOperator,CompareOp:il.compareOperator,RegExp:il.regexp,Equals:il.definitionOperator,Arrow:il.function(il.punctuation),": Spread":il.punctuation,"( )":il.paren,"[ ]":il.squareBracket,"{ }":il.brace,"InterpolationStart InterpolationEnd":il.special(il.brace),".":il.derefOperator,", ;":il.separator,"@":il.meta,TypeName:il.typeName,TypeDefinition:il.definition(il.typeName),"type enum interface implements namespace module declare":il.definitionKeyword,"abstract global Privacy readonly override":il.modifier,"is keyof unique infer":il.operatorKeyword,JSXAttributeValue:il.attributeValue,JSXText:il.content,"JSXStartTag JSXStartCloseTag JSXSelfCloseEndTag JSXEndTag":il.angleBracket,"JSXIdentifier JSXNameSpacedName":il.tagName,"JSXAttribute/JSXIdentifier JSXAttribute/JSXNameSpacedName":il.attributeName,"JSXBuiltin/JSXIdentifier":il.standard(il.tagName)}),If={__proto__:null,export:20,as:25,from:33,default:36,async:41,function:42,extends:54,this:58,true:66,false:66,null:78,void:82,typeof:86,super:102,new:136,delete:148,yield:157,await:161,class:166,public:229,private:229,protected:229,readonly:231,instanceof:250,satisfies:253,in:254,const:256,import:290,keyof:345,unique:349,infer:355,is:391,abstract:411,implements:413,type:415,let:418,var:420,using:423,interface:429,enum:433,namespace:439,module:441,declare:445,global:449,for:468,of:477,while:480,with:484,do:488,if:492,else:494,switch:498,case:504,try:510,catch:514,finally:518,return:522,throw:526,break:530,continue:534,debugger:538},Bf={__proto__:null,async:123,get:125,set:127,declare:189,public:191,private:191,protected:191,static:193,abstract:195,override:197,readonly:203,accessor:205,new:395},Ff={__proto__:null,"<":187},Hf=zf.deserialize({version:14,states:"$@QO%TQ^OOO%[Q^OOO'_Q`OOP(lOWOOO*zQ?NdO'#CiO+RO!bO'#CjO+aO#tO'#CjO+oO!0LbO'#D^O.QQ^O'#DdO.bQ^O'#DoO%[Q^O'#DwO0fQ^O'#EPOOQ?Mr'#EX'#EXO1PQWO'#EUOOQO'#Em'#EmOOQO'#Ih'#IhO1XQWO'#GpO1dQWO'#ElO1iQWO'#ElO3hQ?NdO'#JmO6[Q?NdO'#JnO6uQWO'#F[O6zQ&jO'#FsOOQ?Mr'#Fe'#FeO7VO,YO'#FeO7eQ7[O'#FzO9RQWO'#FyOOQ?Mr'#Jn'#JnOOQ?Mp'#Jm'#JmO9WQWO'#GtOOQU'#KZ'#KZO9cQWO'#IUO9hQ?MxO'#IVOOQU'#JZ'#JZOOQU'#IZ'#IZQ`Q^OOO`Q^OOO9pQMnO'#DsO9wQ^O'#D{O:OQ^O'#D}O9^QWO'#GpO:VQ7[O'#CoO:eQWO'#EkO:pQWO'#EvO:uQ7[O'#FdO;dQWO'#GpOOQO'#K['#K[O;iQWO'#K[O;wQWO'#GxO;wQWO'#GyO;wQWO'#G{O9^QWO'#HOOVQWO'#CeO>gQWO'#H_O>oQWO'#HeO>oQWO'#HgO`Q^O'#HiO>oQWO'#HkO>oQWO'#HnO>tQWO'#HtO>yQ?MyO'#HzO%[Q^O'#H|O?UQ?MyO'#IOO?aQ?MyO'#IQO9hQ?MxO'#ISO?lQ?NdO'#CiO@nQ`O'#DiQOQWOOO%[Q^O'#D}OAUQWO'#EQO:VQ7[O'#EkOAaQWO'#EkOAlQpO'#FdOOQU'#Cg'#CgOOQ?Mp'#Dn'#DnOOQ?Mp'#Jq'#JqO%[Q^O'#JqOOQO'#Jt'#JtOOQO'#Id'#IdOBlQ`O'#EdOOQ?Mp'#Ec'#EcOOQ?Mp'#Jx'#JxOChQ?NQO'#EdOCrQ`O'#ETOOQO'#Js'#JsODWQ`O'#JtOEeQ`O'#ETOCrQ`O'#EdPErO#@ItO'#CbPOOO)CDx)CDxOOOO'#I['#I[OE}O!bO,59UOOQ?Mr,59U,59UOOOO'#I]'#I]OF]O#tO,59UO%[Q^O'#D`OOOO'#I_'#I_OFkO!0LbO,59xOOQ?Mr,59x,59xOFyQ^O'#I`OG^QWO'#JoOI]QrO'#JoO+}Q^O'#JoOIdQWO,5:OOIzQWO'#EmOJXQWO'#KOOJdQWO'#J}OJdQWO'#J}OJlQWO,5;ZOJqQWO'#J|OOQ?Mv,5:Z,5:ZOJxQ^O,5:ZOLvQ?NdO,5:cOMgQWO,5:kONQQ?MxO'#J{ONXQWO'#JzO9WQWO'#JzONmQWO'#JzONuQWO,5;YONzQWO'#JzO!#PQrO'#JnOOQ?Mr'#Ci'#CiO%[Q^O'#EPO!#oQrO,5:pOOQQ'#Ju'#JuOOQO-EpOOQU'#Jc'#JcOOQU,5>q,5>qOOQU-EtQWO'#HTO9^QWO'#HVO!DgQWO'#HVO:VQ7[O'#HXO!DlQWO'#HXOOQU,5=m,5=mO!DqQWO'#HYO!ESQWO'#CoO!EXQWO,59PO!EcQWO,59PO!GhQ^O,59POOQU,59P,59PO!GxQ?MxO,59PO%[Q^O,59PO!JTQ^O'#HaOOQU'#Hb'#HbOOQU'#Hc'#HcO`Q^O,5=yO!JkQWO,5=yO`Q^O,5>PO`Q^O,5>RO!JpQWO,5>TO`Q^O,5>VO!JuQWO,5>YO!JzQ^O,5>`OOQU,5>f,5>fO%[Q^O,5>fO9hQ?MxO,5>hOOQU,5>j,5>jO# UQWO,5>jOOQU,5>l,5>lO# UQWO,5>lOOQU,5>n,5>nO# rQ`O'#D[O%[Q^O'#JqO# |Q`O'#JqO#!kQ`O'#DjO#!|Q`O'#DjO#%_Q^O'#DjO#%fQWO'#JpO#%nQWO,5:TO#%sQWO'#EqO#&RQWO'#KPO#&ZQWO,5;[O#&`Q`O'#DjO#&mQ`O'#ESOOQ?Mr,5:l,5:lO%[Q^O,5:lO#&tQWO,5:lO>tQWO,5;VO!A}Q`O,5;VO!BVQ7[O,5;VO:VQ7[O,5;VO#&|QWO,5@]O#'RQ(CYO,5:pOOQO-EzO+}Q^O,5>zOOQO,5?Q,5?QO#*ZQ^O'#I`OOQO-E<^-E<^O#*hQWO,5@ZO#*pQrO,5@ZO#*wQWO,5@iOOQ?Mr1G/j1G/jO%[Q^O,5@jO#+PQWO'#IfOOQO-EuQ?NdO1G0|O#>|Q?NdO1G0|O#AZQ07bO'#CiO#CUQ07bO1G1_O#C]Q07bO'#JnO#CpQ?NdO,5?WOOQ?Mp-EoQWO1G3oO$3VQ^O1G3qO$7ZQ^O'#HpOOQU1G3t1G3tO$7hQWO'#HvO>tQWO'#HxOOQU1G3z1G3zO$7pQ^O1G3zO9hQ?MxO1G4QOOQU1G4S1G4SOOQ?Mp'#G]'#G]O9hQ?MxO1G4UO9hQ?MxO1G4WO$;wQWO,5@]O!(oQ^O,5;]O9WQWO,5;]O>tQWO,5:UO!(oQ^O,5:UO!A}Q`O,5:UO$;|Q07bO,5:UOOQO,5;],5;]O$tQWO1G0qO!A}Q`O1G0qO!BVQ7[O1G0qOOQ?Mp1G5w1G5wO!ArQ?MxO1G0ZOOQO1G0j1G0jO%[Q^O1G0jO$=aQ?MxO1G0jO$=lQ?MxO1G0jO!A}Q`O1G0ZOCrQ`O1G0ZO$=zQ?MxO1G0jOOQO1G0Z1G0ZO$>`Q?NdO1G0jPOOO-EjQpO,5rQrO1G4fOOQO1G4l1G4lO%[Q^O,5>zO$>|QWO1G5uO$?UQWO1G6TO$?^QrO1G6UO9WQWO,5?QO$?hQ?NdO1G6RO%[Q^O1G6RO$?xQ?MxO1G6RO$@ZQWO1G6QO$@ZQWO1G6QO9WQWO1G6QO$@cQWO,5?TO9WQWO,5?TOOQO,5?T,5?TO$@wQWO,5?TO$(PQWO,5?TOOQO-E[OOQU,5>[,5>[O%[Q^O'#HqO%8mQWO'#HsOOQU,5>b,5>bO9WQWO,5>bOOQU,5>d,5>dOOQU7+)f7+)fOOQU7+)l7+)lOOQU7+)p7+)pOOQU7+)r7+)rO%8rQ`O1G5wO%9WQ07bO1G0wO%9bQWO1G0wOOQO1G/p1G/pO%9mQ07bO1G/pO>tQWO1G/pO!(oQ^O'#DjOOQO,5>{,5>{OOQO-E<_-E<_OOQO,5?R,5?ROOQO-EtQWO7+&]O!A}Q`O7+&]OOQO7+%u7+%uO$>`Q?NdO7+&UOOQO7+&U7+&UO%[Q^O7+&UO%9wQ?MxO7+&UO!ArQ?MxO7+%uO!A}Q`O7+%uO%:SQ?MxO7+&UO%:bQ?NdO7++mO%[Q^O7++mO%:rQWO7++lO%:rQWO7++lOOQO1G4o1G4oO9WQWO1G4oO%:zQWO1G4oOOQQ7+%z7+%zO#&wQWO<|O%[Q^O,5>|OOQO-E<`-E<`O%FwQWO1G5xOOQ?Mr<]OOQU,5>_,5>_O&8uQWO1G3|O9WQWO7+&cO!(oQ^O7+&cOOQO7+%[7+%[O&8zQ07bO1G6UO>tQWO7+%[OOQ?Mr<tQWO<`Q?NdO<pQ?NdO,5?_O&@xQ?NdO7+'zO&CWQrO1G4hO&CbQ07bO7+&^O&EcQ07bO,5=UO&GgQ07bO,5=WO&GwQ07bO,5=UO&HXQ07bO,5=WO&HiQ07bO,59rO&JlQ07bO,5tQWO7+)hO'(OQWO<`Q?NdOAN?[OOQOAN>{AN>{O%[Q^OAN?[OOQO<`Q?NdOG24vO#&wQWOLD,nOOQULD,nLD,nO!&_Q7[OLD,nO'5TQrOLD,nO'5[Q07bO7+'xO'6}Q07bO,5?]O'8}Q07bO,5?_O':}Q07bO7+'zO'kOh%VOk+aO![']O%f+`O~O!d+cOa(WX![(WX'u(WX!Y(WX~Oa%lO![XO'u%lO~Oh%VO!i%cO~Oh%VO!i%cO(O%eO~O!d#vO#h(tO~Ob+nO%g+oO(O+kO(QTO(TUO!Z)TP~O!Y+pO`)SX~O[+tO~O`+uO~O![%}O(O%eO(P!lO`)SP~Oh%VO#]+zO~Oh%VOk+}O![$|O~O![,PO~O},RO![XO~O%k%tO~O!u,WO~Oe,]O~Ob,^O(O#nO(QTO(TUO!Z)RP~Oe%{O~O%g!QO(O&WO~P=RO[,cO`,bO~OPYOQYOSfOdzOeyOmkOoYOpkOqkOwkOyYO{YO!PWO!TkO!UkO!fuO!iZO!lYO!mYO!nYO!pvO!uxO!y]O%e}O(QTO(TUO([VO(j[O(yiO~O![!eO!r!gO$V!kO(O!dO~P!EkO`,bOa%lO'u%lO~OPYOQYOSfOd!jOe!iOmkOoYOpkOqkOwkOyYO{YO!PWO!TkO!UkO![!eO!fuO!iZO!lYO!mYO!nYO!pvO!u!hO$V!kO(O!dO(QTO(TUO([VO(j[O(yiO~Oa,hO!rwO#t!OO%i!OO%j!OO%k!OO~P!HTO!i&lO~O&Y,nO~O![,pO~O&k,rO&m,sOP&haQ&haS&haY&haa&had&hae&ham&hao&hap&haq&haw&hay&ha{&ha!P&ha!T&ha!U&ha![&ha!f&ha!i&ha!l&ha!m&ha!n&ha!p&ha!r&ha!u&ha!y&ha#t&ha$V&ha%e&ha%g&ha%i&ha%j&ha%k&ha%n&ha%p&ha%s&ha%t&ha%v&ha&S&ha&Y&ha&[&ha&^&ha&`&ha&c&ha&i&ha&o&ha&q&ha&s&ha&u&ha&w&ha's&ha(O&ha(Q&ha(T&ha([&ha(j&ha(y&ha!Z&ha&a&hab&ha&f&ha~O(O,xO~Oh!bX!Y!OX!Z!OX!d!OX!d!bX!i!bX#]!OX~O!Y!bX!Z!bX~P# ZO!d,}O#],|Oh(eX!Y#eX!Y(eX!Z#eX!Z(eX!d(eX!i(eX~Oh%VO!d-PO!i%cO!Y!^X!Z!^X~Op!nO!P!oO(QTO(TUO(`!mO~OP;POQ;POSfOdkOg'XX!Y'XX~P!+hO!Y.wOg(ka~OSfO![3uO$c3vO~O!Z3zO~Os3{O~P#.aOa$lq!Y$lq'u$lq's$lq!V$lq!h$lqs$lq![$lq%f$lq!d$lq~P!9mO!V3|O~P#.aO})zO!P){O(u%POk'ea(t'ea!Y'ea#]'ea~Og'ea#}'ea~P%)nO})zO!P){Ok'ga(t'ga(u'ga!Y'ga#]'ga~Og'ga#}'ga~P%*aO(m$YO~P#.aO!VfX!V$xX!YfX!Y$xX!d%PX#]fX~P!/gO(OQ#>g#@V#@e#@l#BR#Ba#C|#D[#Db#Dh#Dn#Dx#EO#EU#E`#Er#ExPPPPPPPPPP#FOPPPPPPP#Fs#Iz#KZ#Kb#KjPPP$!sP$!|$%t$,^$,a$,d$-P$-S$-Z$-cP$-i$-lP$.Y$.^$/U$0d$0i$1PPP$1U$1[$1`P$1c$1g$1k$2a$2x$3a$3e$3h$3k$3q$3t$3x$3|R!|RoqOXst!Z#d%k&o&q&r&t,k,p1|2PY!vQ']-]1a5eQ%rvQ%zyQ&R|Q&g!VS'T!e-TQ'c!iS'i!r!yU*e$|*V*jQ+i%{Q+v&TQ,[&aQ-Z'[Q-e'dQ-m'jQ0R*lQ1k,]R;v;T%QdOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%k%r&P&h&k&o&q&r&t&x'Q'_'o(P(R(X(`(t(v(z)y+R+V,h,k,p-a-i-w-}.l.s/f0a0g0v1d1t1u1w1y1|2P2R2r2x3^5b5m5}6O6R6f8R8X8h8rS#q];Q!r)Z$Z$n'U)o,|-P.}2b3u5`6]9h9y;P;S;T;W;X;Y;Z;[;];^;_;`;a;b;c;d;f;i;v;x;y;{ < TypeParamList TypeDefinition extends ThisType this LiteralType ArithOp Number BooleanLiteral TemplateType InterpolationEnd Interpolation InterpolationStart NullType null VoidType void TypeofType typeof MemberExpression . PropertyName [ TemplateString Escape Interpolation super RegExp ] ArrayExpression Spread , } { ObjectExpression Property async get set PropertyDefinition Block : NewTarget new NewExpression ) ( ArgList UnaryExpression delete LogicOp BitOp YieldExpression yield AwaitExpression await ParenthesizedExpression ClassExpression class ClassBody MethodDeclaration Decorator @ MemberExpression PrivatePropertyName CallExpression TypeArgList CompareOp < declare Privacy static abstract override PrivatePropertyDefinition PropertyDeclaration readonly accessor Optional TypeAnnotation Equals StaticBlock FunctionExpression ArrowFunction ParamList ParamList ArrayPattern ObjectPattern PatternProperty Privacy readonly Arrow MemberExpression BinaryExpression ArithOp ArithOp ArithOp ArithOp BitOp CompareOp instanceof satisfies in const CompareOp BitOp BitOp BitOp LogicOp LogicOp ConditionalExpression LogicOp LogicOp AssignmentExpression UpdateOp PostfixExpression CallExpression InstantiationExpression TaggedTemplateExpression DynamicImport import ImportMeta JSXElement JSXSelfCloseEndTag JSXSelfClosingTag JSXIdentifier JSXBuiltin JSXIdentifier JSXNamespacedName JSXMemberExpression JSXSpreadAttribute JSXAttribute JSXAttributeValue JSXEscape JSXEndTag JSXOpenTag JSXFragmentTag JSXText JSXEscape JSXStartCloseTag JSXCloseTag PrefixCast ArrowFunction TypeParamList SequenceExpression InstantiationExpression KeyofType keyof UniqueType unique ImportType InferredType infer TypeName ParenthesizedType FunctionSignature ParamList NewSignature IndexedType TupleType Label ArrayType ReadonlyType ObjectType MethodType PropertyType IndexSignature PropertyDefinition CallSignature TypePredicate is NewSignature new UnionType LogicOp IntersectionType LogicOp ConditionalType ParameterizedType ClassDeclaration abstract implements type VariableDeclaration let var using TypeAliasDeclaration InterfaceDeclaration interface EnumDeclaration enum EnumBody NamespaceDeclaration namespace module AmbientDeclaration declare GlobalDeclaration global ClassDeclaration ClassBody AmbientFunctionDeclaration ExportGroup VariableName VariableName ImportDeclaration ImportGroup ForStatement for ForSpec ForInSpec ForOfSpec of WhileStatement while WithStatement with DoStatement do IfStatement if else SwitchStatement switch SwitchBody CaseLabel case DefaultLabel TryStatement try CatchClause catch FinallyClause finally ReturnStatement return ThrowStatement throw BreakStatement break ContinueStatement continue DebuggerStatement debugger LabeledStatement ExpressionStatement SingleExpression SingleClassItem",maxTerm:376,context:Yf,nodeProps:[["isolate",-8,5,6,14,34,36,48,50,52,""],["group",-26,9,17,19,65,204,208,212,213,215,218,221,231,233,239,241,243,245,248,254,260,262,264,266,268,270,271,"Statement",-34,13,14,29,32,33,39,48,51,52,54,59,67,69,73,77,79,81,82,107,108,117,118,135,138,140,141,142,143,144,146,147,166,167,169,"Expression",-23,28,30,34,38,40,42,171,173,175,176,178,179,180,182,183,184,186,187,188,198,200,202,203,"Type",-3,85,100,106,"ClassItem"],["openedBy",23,"<",35,"InterpolationStart",53,"[",57,"{",70,"(",159,"JSXStartCloseTag"],["closedBy",24,">",37,"InterpolationEnd",47,"]",58,"}",71,")",164,"JSXEndTag"]],propSources:[Nf],skippedNodes:[0,5,6,274],repeatNodeCount:37,tokenData:"$Fq07[R!bOX%ZXY+gYZ-yZ[+g[]%Z]^.c^p%Zpq+gqr/mrs3cst:_tuEruvJSvwLkwx! Yxy!'iyz!(sz{!)}{|!,q|}!.O}!O!,q!O!P!/Y!P!Q!9j!Q!R#:O!R![#<_![!]#I_!]!^#Jk!^!_#Ku!_!`$![!`!a$$v!a!b$*T!b!c$,r!c!}Er!}#O$-|#O#P$/W#P#Q$4o#Q#R$5y#R#SEr#S#T$7W#T#o$8b#o#p$x#r#s$@U#s$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$I|Er$I|$I}$Dk$I}$JO$Dk$JO$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr(n%d_$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z&j&hT$h&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c&j&zP;=`<%l&c'|'U]$h&j(U!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!b(SU(U!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!b(iP;=`<%l'}'|(oP;=`<%l&}'[(y]$h&j(RpOY(rYZ&cZr(rrs&cs!^(r!^!_)r!_#O(r#O#P&c#P#o(r#o#p)r#p;'S(r;'S;=`*a<%lO(rp)wU(RpOY)rZr)rs#O)r#P;'S)r;'S;=`*Z<%lO)rp*^P;=`<%l)r'[*dP;=`<%l(r#S*nX(Rp(U!bOY*gZr*grs'}sw*gwx)rx#O*g#P;'S*g;'S;=`+Z<%lO*g#S+^P;=`<%l*g(n+dP;=`<%l%Z07[+rq$h&j(Rp(U!b'w0/lOX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p$f%Z$f$g+g$g#BY%Z#BY#BZ+g#BZ$IS%Z$IS$I_+g$I_$JT%Z$JT$JU+g$JU$KV%Z$KV$KW+g$KW&FU%Z&FU&FV+g&FV;'S%Z;'S;=`+a<%l?HT%Z?HT?HU+g?HUO%Z07[.ST(S#S$h&j'x0/lO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c07[.n_$h&j(Rp(U!b'x0/lOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)3p/x`$h&j!m),Q(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`0z!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW1V`#u(Ch$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`2X!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW2d_#u(Ch$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'At3l_(Q':f$h&j(U!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k(^4r_$h&j(U!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k&z5vX$h&jOr5qrs6cs!^5q!^!_6y!_#o5q#o#p6y#p;'S5q;'S;=`7h<%lO5q&z6jT$c`$h&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c`6|TOr6yrs7]s;'S6y;'S;=`7b<%lO6y`7bO$c``7eP;=`<%l6y&z7kP;=`<%l5q(^7w]$c`$h&j(U!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!r8uZ(U!bOY8pYZ6yZr8prs9hsw8pwx6yx#O8p#O#P6y#P;'S8p;'S;=`:R<%lO8p!r9oU$c`(U!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!r:UP;=`<%l8p(^:[P;=`<%l4k%9[:hh$h&j(Rp(U!bOY%ZYZ&cZq%Zqr`#P#o`x!^=^!^!_?q!_#O=^#O#P>`#P#o=^#o#p?q#p;'S=^;'S;=`@h<%lO=^&n>gXWS$h&jOY>`YZ&cZ!^>`!^!_?S!_#o>`#o#p?S#p;'S>`;'S;=`?k<%lO>`S?XSWSOY?SZ;'S?S;'S;=`?e<%lO?SS?hP;=`<%l?S&n?nP;=`<%l>`!f?xWWS(U!bOY?qZw?qwx?Sx#O?q#O#P?S#P;'S?q;'S;=`@b<%lO?q!f@eP;=`<%l?q(Q@kP;=`<%l=^'`@w]WS$h&j(RpOY@nYZ&cZr@nrs>`s!^@n!^!_Ap!_#O@n#O#P>`#P#o@n#o#pAp#p;'S@n;'S;=`Bg<%lO@ntAwWWS(RpOYApZrAprs?Ss#OAp#O#P?S#P;'SAp;'S;=`Ba<%lOAptBdP;=`<%lAp'`BjP;=`<%l@n#WBvYWS(Rp(U!bOYBmZrBmrs?qswBmwxApx#OBm#O#P?S#P;'SBm;'S;=`Cf<%lOBm#WCiP;=`<%lBm(rCoP;=`<%l^!Q^$h&j!U7`OY!=yYZ&cZ!P!=y!P!Q!>|!Q!^!=y!^!_!@c!_!}!=y!}#O!CW#O#P!Dy#P#o!=y#o#p!@c#p;'S!=y;'S;=`!Ek<%lO!=y|#X#Z&c#Z#[!>|#[#]&c#]#^!>|#^#a&c#a#b!>|#b#g&c#g#h!>|#h#i&c#i#j!>|#j#k!>|#k#m&c#m#n!>|#n#o&c#p;'S&c;'S;=`&w<%lO&c7`!@hX!U7`OY!@cZ!P!@c!P!Q!AT!Q!}!@c!}#O!Ar#O#P!Bq#P;'S!@c;'S;=`!CQ<%lO!@c7`!AYW!U7`#W#X!AT#Z#[!AT#]#^!AT#a#b!AT#g#h!AT#i#j!AT#j#k!AT#m#n!AT7`!AuVOY!ArZ#O!Ar#O#P!B[#P#Q!@c#Q;'S!Ar;'S;=`!Bk<%lO!Ar7`!B_SOY!ArZ;'S!Ar;'S;=`!Bk<%lO!Ar7`!BnP;=`<%l!Ar7`!BtSOY!@cZ;'S!@c;'S;=`!CQ<%lO!@c7`!CTP;=`<%l!@c^!Ezl$h&j(U!b!U7`OY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#W&}#W#X!Eq#X#Z&}#Z#[!Eq#[#]&}#]#^!Eq#^#a&}#a#b!Eq#b#g&}#g#h!Eq#h#i&}#i#j!Eq#j#k!Eq#k#m&}#m#n!Eq#n#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}8r!GyZ(U!b!U7`OY!GrZw!Grwx!@cx!P!Gr!P!Q!Hl!Q!}!Gr!}#O!JU#O#P!Bq#P;'S!Gr;'S;=`!J|<%lO!Gr8r!Hse(U!b!U7`OY'}Zw'}x#O'}#P#W'}#W#X!Hl#X#Z'}#Z#[!Hl#[#]'}#]#^!Hl#^#a'}#a#b!Hl#b#g'}#g#h!Hl#h#i'}#i#j!Hl#j#k!Hl#k#m'}#m#n!Hl#n;'S'};'S;=`(f<%lO'}8r!JZX(U!bOY!JUZw!JUwx!Arx#O!JU#O#P!B[#P#Q!Gr#Q;'S!JU;'S;=`!Jv<%lO!JU8r!JyP;=`<%l!JU8r!KPP;=`<%l!Gr>^!KZ^$h&j(U!bOY!KSYZ&cZw!KSwx!CWx!^!KS!^!_!JU!_#O!KS#O#P!DR#P#Q!^!LYP;=`<%l!KS>^!L`P;=`<%l!_#c#d#Bq#d#l%Z#l#m#Es#m#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#>j_$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#?rd$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#A]f$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Bzc$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Dbe$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#E|g$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Gpi$h&j(Rp(U!bp'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z*)x#Il_!d$b$h&j#})Lv(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)[#Jv_al$h&j(Rp(U!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z04f#LS^h#)`#O-If[t]||-1},{term:338,get:t=>Bf[t]||-1},{term:92,get:t=>Ff[t]||-1}],tokenPrec:14749}),Jf=[vu("function ${name}(${params}) {\n\t${}\n}",{label:"function",detail:"definition",type:"keyword"}),vu("for (let ${index} = 0; ${index} < ${bound}; ${index}++) {\n\t${}\n}",{label:"for",detail:"loop",type:"keyword"}),vu("for (let ${name} of ${collection}) {\n\t${}\n}",{label:"for",detail:"of loop",type:"keyword"}),vu("do {\n\t${}\n} while (${})",{label:"do",detail:"loop",type:"keyword"}),vu("while (${}) {\n\t${}\n}",{label:"while",detail:"loop",type:"keyword"}),vu("try {\n\t${}\n} catch (${error}) {\n\t${}\n}",{label:"try",detail:"/ catch block",type:"keyword"}),vu("if (${}) {\n\t${}\n}",{label:"if",detail:"block",type:"keyword"}),vu("if (${}) {\n\t${}\n} else {\n\t${}\n}",{label:"if",detail:"/ else block",type:"keyword"}),vu("class ${name} {\n\tconstructor(${params}) {\n\t\t${}\n\t}\n}",{label:"class",detail:"definition",type:"keyword"}),vu('import {${names}} from "${module}"\n${}',{label:"import",detail:"named",type:"keyword"}),vu('import ${name} from "${module}"\n${}',{label:"import",detail:"default",type:"keyword"})],Kf=Jf.concat([vu("interface ${name} {\n\t${}\n}",{label:"interface",detail:"definition",type:"keyword"}),vu("type ${name} = ${type}",{label:"type",detail:"definition",type:"keyword"}),vu("enum ${name} {\n\t${}\n}",{label:"enum",detail:"definition",type:"keyword"})]),tp=new ua,ep=new Set(["Script","Block","FunctionExpression","FunctionDeclaration","ArrowFunction","MethodDeclaration","ForStatement"]);function ip(t){return(e,i)=>{let n=e.node.getChild("VariableDefinition");return n&&i(n,t),!0}}const np=["FunctionDeclaration"],rp={FunctionDeclaration:ip("function"),ClassDeclaration:ip("class"),ClassExpression:()=>!0,EnumDeclaration:ip("constant"),TypeAliasDeclaration:ip("type"),NamespaceDeclaration:ip("namespace"),VariableDefinition(t,e){t.matchContext(np)||e(t,"variable")},TypeDefinition(t,e){e(t,"type")},__proto__:null};function sp(t,e){let i=tp.get(e);if(i)return i;let n=[],r=!0;function s(e,i){let r=t.sliceString(e.from,e.to);n.push({label:r,type:i})}return e.cursor(Io.IncludeAnonymous).iterate((e=>{if(r)r=!1;else if(e.name){let t=rp[e.name];if(t&&t(e,s)||ep.has(e.name))return!1}else if(e.to-e.from>8192){for(let i of sp(t,e.node))n.push(i);return!1}})),tp.set(e,n),n}const op=/^[\w$\xa1-\uffff][\w$\d\xa1-\uffff]*$/,ap=["TemplateString","String","RegExp","LineComment","BlockComment","VariableDefinition","TypeDefinition","Label","PropertyDefinition","PropertyName","PrivatePropertyDefinition","PrivatePropertyName",".","?."];function lp(t){let e=cl(t.state).resolveInner(t.pos,-1);if(ap.indexOf(e.name)>-1)return null;let i="VariableName"==e.name||e.to-e.from<20&&op.test(t.state.sliceDoc(e.from,e.to));if(!i&&!t.explicit)return null;let n=[];for(let i=e;i;i=i.parent)ep.has(i.name)&&(n=n.concat(sp(t.state.doc,i)));return{options:n,from:i?e.from:t.pos,validFor:op}}const hp=hl.define({name:"javascript",parser:Hf.configure({props:[Tl.add({IfStatement:Al({except:/^\s*({|else\b)/}),TryStatement:Al({except:/^\s*({|catch\b|finally\b)/}),LabeledStatement:t=>t.baseIndent,SwitchBody:t=>{let e=t.textAfter,i=/^\s*\}/.test(e),n=/^\s*(case|default)\b/.test(e);return t.baseIndent+(i?0:n?1:2)*t.unit},Block:ql({closing:"}"}),ArrowFunction:t=>t.baseIndent+t.unit,"TemplateString BlockComment":()=>null,"Statement Property":Al({except:/^{/}),JSXElement(t){let e=/^\s*<\//.test(t.textAfter);return t.lineIndent(t.node.from)+(e?0:t.unit)},JSXEscape(t){let e=/\s*\}/.test(t.textAfter);return t.lineIndent(t.node.from)+(e?0:t.unit)},"JSXOpenTag JSXSelfClosingTag":t=>t.column(t.node.from)+t.unit}),Vl.add({"Block ClassBody SwitchBody EnumBody ObjectExpression ArrayExpression ObjectType":Ml,BlockComment:t=>({from:t.from+2,to:t.to-2})})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"`"]},commentTokens:{line:"//",block:{open:"/*",close:"*/"}},indentOnInput:/^\s*(?:case |default:|\{|\}|<\/)$/,wordChars:"$"}}),cp={test:t=>/^JSX/.test(t.name),facet:sl({commentTokens:{block:{open:"{/*",close:"*/}"}}})},Op=hp.configure({dialect:"ts"},"typescript"),dp=hp.configure({dialect:"jsx",props:[ol.add((t=>t.isTop?[cp]:void 0))]}),up=hp.configure({dialect:"jsx ts",props:[ol.add((t=>t.isTop?[cp]:void 0))]},"typescript");let fp=t=>({label:t,type:"keyword"});const pp="break case const continue default delete export extends false finally in instanceof let new return static super switch this throw true typeof var yield".split(" ").map(fp),mp=pp.concat(["declare","implements","private","protected","public"].map(fp));function gp(t={}){let e=t.jsx?t.typescript?up:dp:t.typescript?Op:hp,i=t.typescript?Kf.concat(mp):Jf.concat(pp);return new Sl(e,[hp.data.of({autocomplete:wd(ap,vd(i))}),hp.data.of({autocomplete:lp}),t.jsx?Sp:[]])}function Qp(t,e,i=t.length){for(let n=null==e?void 0:e.firstChild;n;n=n.nextSibling)if("JSXIdentifier"==n.name||"JSXBuiltin"==n.name||"JSXNamespacedName"==n.name||"JSXMemberExpression"==n.name)return t.sliceString(n.from,Math.min(n.to,i));return""}const bp="object"==typeof navigator&&/Android\b/.test(navigator.userAgent),Sp=Ir.inputHandler.of(((t,e,i,n,r)=>{if((bp?t.composing:t.compositionStarted)||t.state.readOnly||e!=i||">"!=n&&"/"!=n||!hp.isActiveAt(t.state,e,-1))return!1;let s=r(),{state:o}=s,a=o.changeByRange((t=>{var e;let i,{head:r}=t,s=cl(o).resolveInner(r-1,-1);if("JSXStartTag"==s.name&&(s=s.parent),o.doc.sliceString(r-1,r)!=n||"JSXAttributeValue"==s.name&&s.to>r);else{if(">"==n&&"JSXFragmentTag"==s.name)return{range:t,changes:{from:r,insert:""}};if("/"==n&&"JSXStartCloseTag"==s.name){let t=s.parent,n=t.parent;if(n&&t.from==r-2&&((i=Qp(o.doc,n.firstChild,r))||"JSXFragmentTag"==(null===(e=n.firstChild)||void 0===e?void 0:e.name))){let t=`${i}>`;return{range:C.cursor(r+t.length,-1),changes:{from:r,insert:t}}}}else if(">"==n){let e=function(t){for(;;){if("JSXOpenTag"==t.name||"JSXSelfClosingTag"==t.name||"JSXFragmentTag"==t.name)return t;if("JSXEscape"==t.name||!t.parent)return null;t=t.parent}}(s);if(e&&"JSXOpenTag"==e.name&&!/^\/?>|^<\//.test(o.doc.sliceString(r,r+2))&&(i=Qp(o.doc,e,r)))return{range:t,changes:{from:r,insert:``}}}}return{range:t}}));return!a.changes.empty&&(t.dispatch([s,o.update(a,{userEvent:"input.complete",scrollIntoView:!0})]),!0)})),vp=10,wp=new Set([25,49,50,263,65,130,56,57,238,62,63,72,73,77,60,61,151,152,155,112]);function yp(t){return t==vp||13==t}function xp(t){return t>=48&&t<=57||t>=65&&t<=70||t>=97&&t<=102}const kp=new yf(((t,e)=>{let i;if(t.next<0)t.acceptToken(199);else if(e.context.flags&$p)yp(t.next)&&t.acceptToken(198,1);else if(((i=t.peek(-1))<0||yp(i))&&e.canShift(197)){let e=0;for(;32==t.next||9==t.next;)t.advance(),e++;t.next!=vp&&13!=t.next&&35!=t.next||t.acceptToken(197,-e)}else yp(t.next)&&t.acceptToken(196,1)}),{contextual:!0}),Pp=new yf(((t,e)=>{let i=e.context;if(i.flags)return;let n=t.peek(-1);if(n==vp||13==n){let e=0,n=0;for(;;){if(32==t.next)e++;else{if(9!=t.next)break;e+=8-e%8}t.advance(),n++}e!=i.indent&&t.next!=vp&&13!=t.next&&35!=t.next&&(e[t,2|e]))),Wp=new Af({start:Cp,reduce:(t,e,i,n)=>t.flags&$p&&wp.has(e)||(71==e||72==e)&&2&t.flags?t.parent:t,shift:(t,e,i,n)=>194==e?new Xp(t,function(t){let e=0;for(let i=0;it.hash}),Ap=new yf((t=>{for(let e=0;e<5;e++){if(t.next!="print".charCodeAt(e))return;t.advance()}if(!/\w/.test(String.fromCharCode(t.next)))for(let e=0;;e++){let i=t.peek(e);if(32!=i&&9!=i)return void(40!=i&&46!=i&&i!=vp&&13!=i&&35!=i&&t.acceptToken(1))}})),zp=new yf(((t,e)=>{let{flags:i}=e.context,n=i&Tp?34:39,r=(i&_p)>0,s=!(i&Rp),o=(i&Zp)>0,a=t.pos;for(;!(t.next<0);)if(o&&123==t.next){if(123!=t.peek(1)){if(t.pos==a)return void t.acceptToken(3,1);break}t.advance(2)}else{if(s&&92==t.next){if(t.pos==a){t.advance();let e=t.next;return e>=0&&(t.advance(),Vp(t,e)),void t.acceptToken(2)}break}if(t.next==n&&(!r||t.peek(1)==n&&t.peek(2)==n)){if(t.pos==a)return void t.acceptToken(201,r?3:1);break}if(t.next==vp){if(r)t.advance();else if(t.pos==a)return void t.acceptToken(201);break}t.advance()}t.pos>a&&t.acceptToken(200)}));function Vp(t,e){if(111==e)for(let e=0;e<2&&t.next>=48&&t.next<=55;e++)t.advance();else if(120==e)for(let e=0;e<2&&xp(t.next);e++)t.advance();else if(117==e)for(let e=0;e<4&&xp(t.next);e++)t.advance();else if(85==e)for(let e=0;e<8&&xp(t.next);e++)t.advance();else if(78==e&&123==t.next){for(t.advance();t.next>=0&&125!=t.next&&39!=t.next&&34!=t.next&&t.next!=vp;)t.advance();125==t.next&&t.advance()}}const Mp=Wa({'async "*" "**" FormatConversion FormatSpec':il.modifier,"for while if elif else try except finally return raise break continue with pass assert await yield match case":il.controlKeyword,"in not and or is del":il.operatorKeyword,"from def class global nonlocal lambda":il.definitionKeyword,import:il.moduleKeyword,"with as print":il.keyword,Boolean:il.bool,None:il.null,VariableName:il.variableName,"CallExpression/VariableName":il.function(il.variableName),"FunctionDefinition/VariableName":il.function(il.definition(il.variableName)),"ClassDefinition/VariableName":il.definition(il.className),PropertyName:il.propertyName,"CallExpression/MemberExpression/PropertyName":il.function(il.propertyName),Comment:il.lineComment,Number:il.number,String:il.string,FormatString:il.special(il.string),Escape:il.escape,UpdateOp:il.updateOperator,"ArithOp!":il.arithmeticOperator,BitOp:il.bitwiseOperator,CompareOp:il.compareOperator,AssignOp:il.definitionOperator,Ellipsis:il.punctuation,At:il.meta,"( )":il.paren,"[ ]":il.squareBracket,"{ }":il.brace,".":il.derefOperator,", ;":il.separator}),Ep={__proto__:null,await:44,or:54,and:56,in:60,not:62,is:64,if:70,else:72,lambda:76,yield:94,from:96,async:102,for:104,None:162,True:164,False:164,del:178,pass:182,break:186,continue:190,return:194,raise:202,import:206,as:208,global:212,nonlocal:214,assert:218,type:223,elif:236,while:240,try:246,except:248,finally:250,with:254,def:258,class:268,match:279,case:285},Yp=zf.deserialize({version:14,states:"##jO`QeOOP$}OSOOO&WQtO'#HUOOQS'#Co'#CoOOQS'#Cp'#CpO'vQdO'#CnO*UQtO'#HTOOQS'#HU'#HUOOQS'#DU'#DUOOQS'#HT'#HTO*rQdO'#D_O+VQdO'#DfO+gQdO'#DjO+zOWO'#DuO,VOWO'#DvO.[QtO'#GuOOQS'#Gu'#GuO'vQdO'#GtO0ZQtO'#GtOOQS'#Eb'#EbO0rQdO'#EcOOQS'#Gs'#GsO0|QdO'#GrOOQV'#Gr'#GrO1XQdO'#FYOOQS'#G^'#G^O1^QdO'#FXOOQV'#IS'#ISOOQV'#Gq'#GqOOQV'#Fq'#FqQ`QeOOO'vQdO'#CqO1lQdO'#C}O1sQdO'#DRO2RQdO'#HYO2cQtO'#EVO'vQdO'#EWOOQS'#EY'#EYOOQS'#E['#E[OOQS'#E^'#E^O2wQdO'#E`O3_QdO'#EdO3rQdO'#EfO3zQtO'#EfO1XQdO'#EiO0rQdO'#ElO1XQdO'#EnO0rQdO'#EtO0rQdO'#EwO4VQdO'#EyO4^QdO'#FOO4iQdO'#EzO0rQdO'#FOO1XQdO'#FQO1XQdO'#FVO4nQdO'#F[P4uOdO'#GpPOOO)CBd)CBdOOQS'#Ce'#CeOOQS'#Cf'#CfOOQS'#Cg'#CgOOQS'#Ch'#ChOOQS'#Ci'#CiOOQS'#Cj'#CjOOQS'#Cl'#ClO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO'vQdO,59OO5QQdO'#DoOOQS,5:Y,5:YO5eQdO'#HdOOQS,5:],5:]O5rQ!fO,5:]O5wQtO,59YO1lQdO,59bO1lQdO,59bO1lQdO,59bO8gQdO,59bO8lQdO,59bO8sQdO,59jO8zQdO'#HTO:QQdO'#HSOOQS'#HS'#HSOOQS'#D['#D[O:iQdO,59aO'vQdO,59aO:wQdO,59aOOQS,59y,59yO:|QdO,5:RO'vQdO,5:ROOQS,5:Q,5:QO;[QdO,5:QO;aQdO,5:XO'vQdO,5:XO'vQdO,5:VOOQS,5:U,5:UO;rQdO,5:UO;wQdO,5:WOOOW'#Fy'#FyO;|OWO,5:aOOQS,5:a,5:aOOOOQS'#Ds'#DsOOQS1G/w1G/wOOQS1G.|1G.|O!/RQtO1G.|O!/YQtO1G.|O1lQdO1G.|O!/uQdO1G/UOOQS'#DZ'#DZO0rQdO,59tOOQS1G.{1G.{O!/|QdO1G/eO!0^QdO1G/eO!0fQdO1G/fO'vQdO'#H[O!0kQdO'#H[O!0pQtO1G.{O!1QQdO,59iO!2WQdO,5=zO!2hQdO,5=zO!2pQdO1G/mO!2uQtO1G/mOOQS1G/l1G/lO!3VQdO,5=uO!3|QdO,5=uO0rQdO1G/qO!4kQdO1G/sO!4pQtO1G/sO!5QQtO1G/qOOQS1G/p1G/pOOQS1G/r1G/rOOOW-E9w-E9wOOQS1G/{1G/{O!5bQdO'#HxO0rQdO'#HxO!5sQdO,5>cOOOW-E9x-E9xOOQS1G/|1G/|OOQS-E9{-E9{O!6RQ#xO1G2zO!6rQtO1G2zO'vQdO,5kOOQS1G1`1G1`O!7xQdO1G1`OOQS'#DV'#DVO0rQdO,5=qOOQS,5=q,5=qO!7}QdO'#FrO!8YQdO,59oO!8bQdO1G/XO!8lQtO,5=uOOQS1G3`1G3`OOQS,5:m,5:mO!9]QdO'#GtOOQS,5jO!;QQdO,5>jO1XQdO,5>jO!;cQdO,5>iOOQS-E:R-E:RO!;hQdO1G0lO!;sQdO1G0lO!;xQdO,5>lO!lO!hO!<|QdO,5>hO!=_QdO'#EpO0rQdO1G0tO!=jQdO1G0tO!=oQgO1G0zO!AmQgO1G0}O!EhQdO,5>oO!ErQdO,5>oO!EzQtO,5>oO0rQdO1G1PO!FUQdO1G1PO4iQdO1G1UO!!sQdO1G1WOOQV,5;a,5;aO!FZQfO,5;aO!F`QgO1G1QO!JaQdO'#GZO4iQdO1G1QO4iQdO1G1QO!JqQdO,5>pO!KOQdO,5>pO1XQdO,5>pOOQV1G1U1G1UO!KWQdO'#FSO!KiQ!fO1G1WO!KqQdO1G1WOOQV1G1]1G1]O4iQdO1G1]O!KvQdO1G1]O!LOQdO'#F^OOQV1G1b1G1bO!#WQtO1G1bPOOO1G2v1G2vP!LTOSO1G2vOOQS,5=},5=}OOQS'#Dp'#DpO0rQdO,5=}O!LYQdO,5=|O!LmQdO,5=|OOQS1G/u1G/uO!LuQdO,5>PO!MVQdO,5>PO!M_QdO,5>PO!MrQdO,5>PO!NSQdO,5>POOQS1G3j1G3jOOQS7+$h7+$hO!8bQdO7+$pO# uQdO1G.|O# |QdO1G.|OOQS1G/`1G/`OOQS,5<`,5<`O'vQdO,5<`OOQS7+%P7+%PO#!TQdO7+%POOQS-E9r-E9rOOQS7+%Q7+%QO#!eQdO,5=vO'vQdO,5=vOOQS7+$g7+$gO#!jQdO7+%PO#!rQdO7+%QO#!wQdO1G3fOOQS7+%X7+%XO##XQdO1G3fO##aQdO7+%XOOQS,5<_,5<_O'vQdO,5<_O##fQdO1G3aOOQS-E9q-E9qO#$]QdO7+%]OOQS7+%_7+%_O#$kQdO1G3aO#%YQdO7+%_O#%_QdO1G3gO#%oQdO1G3gO#%wQdO7+%]O#%|QdO,5>dO#&gQdO,5>dO#&gQdO,5>dOOQS'#Dx'#DxO#&xO&jO'#DzO#'TO`O'#HyOOOW1G3}1G3}O#'YQdO1G3}O#'bQdO1G3}O#'mQ#xO7+(fO#(^QtO1G2UP#(wQdO'#GOOOQS,5bQdO,5gQdO1G4OOOQS-E9y-E9yO#?QQdO1G4OOe,5>eOOOW7+)i7+)iO#?nQdO7+)iO#?vQdO1G2zO#@aQdO1G2zP'vQdO'#FuO0rQdO<mO#AtQdO,5>mOOQS1G0v1G0vOOQS<rO#KZQdO,5>rOOQS,5>r,5>rO#KfQdO,5>qO#KwQdO,5>qOOQS1G1Y1G1YOOQS,5;p,5;pOOQV<VAN>VO$ WQdO<cAN>cO0rQdO1G1|O$ hQtO1G1|P$ rQdO'#FvOOQS1G2R1G2RP$!PQdO'#F{O$!^QdO7+)jO$!wQdO,5>gOOOO-E9z-E9zOOOW<tO$4dQdO,5>tO1XQdO,5vO$)VQdO,5>vOOQS1G1p1G1pO$8[QtO,5<[OOQU7+'P7+'PO$+cQdO1G/iO$)VQdO,5wO$8jQdO,5>wOOQS1G1s1G1sOOQS7+'S7+'SP$)VQdO'#GdO$8rQdO1G4bO$8|QdO1G4bO$9UQdO1G4bOOQS7+%T7+%TO$9dQdO1G1tO$9rQtO'#FaO$9yQdO,5<}OOQS,5<},5<}O$:XQdO1G4cOOQS-E:a-E:aO$)VQdO,5<|O$:`QdO,5<|O$:eQdO7+)|OOQS-E:`-E:`O$:oQdO7+)|O$)VQdO,5m>pPP'Z'ZPP?PPP'Z'ZPP'Z'Z'Z'Z'Z?T?}'ZP@QP@WD_G{HPPHSH^Hb'ZPPPHeHn'RP'R'RP'RP'RP'RP'RP'R'R'RP'RPP'RPP'RP'RPHtIQIYPIaIgPIaPIaIaPPPIaPKuPLOLYL`KuPIaLiPIaPLpLvPLzM`M}NhLzLzNnN{LzLzLzLz! a! g! j! o! r! |!!S!!`!!r!!x!#S!#Y!#v!#|!$S!$^!$d!$j!$|!%W!%^!%d!%n!%t!%z!&Q!&W!&^!&h!&n!&x!'O!'X!'_!'n!'v!(Q!(XPPPPPPPPPPP!(_!(b!(h!(q!({!)WPPPPPPPPPPPP!-z!/`!3`!6pPP!6x!7X!7b!8Z!8Q!8d!8j!8m!8p!8s!8{!9lPPPPPPPPPPPPPPPPP!9o!9s!9yP!:_!:c!:o!:x!;U!;l!;o!;r!;x!_![!]Do!]!^Es!^!_FZ!_!`Gk!`!aHX!a!b%T!b!cIf!c!dJU!d!eK^!e!hJU!h!i!#f!i!tJU!t!u!,|!u!wJU!w!x!.t!x!}JU!}#O!0S#O#P&o#P#Q!0j#Q#R!1Q#R#SJU#S#T%T#T#UJU#U#VK^#V#YJU#Y#Z!#f#Z#fJU#f#g!,|#g#iJU#i#j!.t#j#oJU#o#p!1n#p#q!1s#q#r!2a#r#s!2f#s$g%T$g;'SJU;'S;=`KW<%lOJU`%YT&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T`%lP;=`<%l%To%v]&n`%c_OX%TXY%oY[%T[]%o]p%Tpq%oq#O%T#O#P&o#P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To&tX&n`OY%TYZ%oZ]%T]^%o^#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc'f[&n`O!_%T!_!`([!`#T%T#T#U(r#U#f%T#f#g(r#g#h(r#h#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(cTmR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc(yT!mR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk)aV&n`&[ZOr%Trs)vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk){V&n`Or%Trs*bs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk*iT&n`&^ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To+PZS_&n`OY*xYZ%TZ]*x]^%T^#o*x#o#p+r#p#q*x#q#r+r#r;'S*x;'S;=`,^<%lO*x_+wTS_OY+rZ]+r^;'S+r;'S;=`,W<%lO+r_,ZP;=`<%l+ro,aP;=`<%l*xj,kV%rQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-XT!xY&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj-oV%lQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.]V&n`&ZZOw%Twx.rx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk.wV&n`Ow%Twx/^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/eT&n`&]ZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk/{ThZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc0cTgR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk0yXVZ&n`Oz%Tz{1f{!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk1mVaR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk2ZV%oZ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc2wTzR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To3_W%pZ&n`O!_%T!_!`-Q!`!a3w!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Td4OT&{S&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk4fX!fQ&n`O!O%T!O!P5R!P!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5WV&n`O!O%T!O!P5m!P#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk5tT!rZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti6[a!hX&n`O!Q%T!Q![6T![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S6T#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti7fZ&n`O{%T{|8X|}%T}!O8X!O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8^V&n`O!Q%T!Q![8s![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti8z]!hX&n`O!Q%T!Q![8s![!l%T!l!m9s!m#R%T#R#S8s#S#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti9zT!hX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk:bX%qR&n`O!P%T!P!Q:}!Q!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj;UV%sQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti;ro!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!d%T!d!e?q!e!g%T!g!h7a!h!l%T!l!m9s!m!q%T!q!rA]!r!z%T!z!{Bq!{#R%T#R#S>_#S#U%T#U#V?q#V#X%T#X#Y7a#Y#^%T#^#_9s#_#c%T#c#dA]#d#l%T#l#mBq#m#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti=xV&n`O!Q%T!Q![6T![#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti>fc!hX&n`O!O%T!O!P=s!P!Q%T!Q![>_![!g%T!g!h7a!h!l%T!l!m9s!m#R%T#R#S>_#S#X%T#X#Y7a#Y#^%T#^#_9s#_#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti?vY&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Ti@mY!hX&n`O!Q%T!Q!R@f!R!S@f!S#R%T#R#S@f#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiAbX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBUX!hX&n`O!Q%T!Q!YA}!Y#R%T#R#SA}#S#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiBv]&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TiCv]!hX&n`O!Q%T!Q![Co![!c%T!c!iCo!i#R%T#R#SCo#S#T%T#T#ZCo#Z#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToDvV{_&n`O!_%T!_!`E]!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TcEdT%{R&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkEzT#gZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkFbXmR&n`O!^%T!^!_F}!_!`([!`!a([!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjGUV%mQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkGrV%zZ&n`O!_%T!_!`([!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkH`WmR&n`O!_%T!_!`([!`!aHx!a#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TjIPV%nQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkIoV_Q#}P&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%ToJ_]&n`&YS%uZO!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoKZP;=`<%lJUoKge&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!tJU!t!uLx!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#gLx#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUoMRa&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUkN_V&n`&`ZOr%TrsNts#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%TkNyV&n`Or%Trs! `s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! gT&n`&bZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk! }V&n`&_ZOw%Twx!!dx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!!iV&n`Ow%Twx!#Ox#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!#VT&n`&aZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!#oe&n`&YS%uZOr%Trs!%Qsw%Twx!&px!Q%T!Q![JU![!c%T!c!tJU!t!u!(`!u!}JU!}#R%T#R#SJU#S#T%T#T#fJU#f#g!(`#g#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!%XV&n`&dZOr%Trs!%ns#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!%sV&n`Or%Trs!&Ys#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&aT&n`&fZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!&wV&n`&cZOw%Twx!'^x#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!'cV&n`Ow%Twx!'xx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!(PT&n`&eZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!(ia&n`&YS%uZOr%Trs!)nsw%Twx!+^x!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!)uV&n`&hZOr%Trs!*[s#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*aV&n`Or%Trs!*vs#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!*}T&n`&jZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!+eV&n`&gZOw%Twx!+zx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,PV&n`Ow%Twx!,fx#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tk!,mT&n`&iZO#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%To!-Vi&n`&YS%uZOr%TrsNWsw%Twx! vx!Q%T!Q![JU![!c%T!c!dJU!d!eLx!e!hJU!h!i!(`!i!}JU!}#R%T#R#SJU#S#T%T#T#UJU#U#VLx#V#YJU#Y#Z!(`#Z#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUo!.}a&n`&YS%uZOr%Trs)Ysw%Twx.Ux!Q%T!Q![JU![!c%T!c!}JU!}#R%T#R#SJU#S#T%T#T#oJU#p#q%T#r$g%T$g;'SJU;'S;=`KW<%lOJUk!0ZT!XZ&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tc!0qT!WR&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%Tj!1XV%kQ&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!1sO!]~k!1zV%jR&n`O!_%T!_!`-Q!`#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T~!2fO![~i!2mT%tX&n`O#o%T#p#q%T#r;'S%T;'S;=`%i<%lO%T",tokenizers:[Ap,Pp,kp,zp,0,1,2,3,4],topRules:{Script:[0,5]},specialized:[{term:221,get:t=>Ep[t]||-1}],tokenPrec:7652}),Up=new ua,jp=new Set(["Script","Body","FunctionDefinition","ClassDefinition","LambdaExpression","ForStatement","MatchClause"]);function Dp(t){return(e,i,n)=>{if(n)return!1;let r=e.node.getChild("VariableName");return r&&i(r,t),!0}}const Gp={FunctionDefinition:Dp("function"),ClassDefinition:Dp("class"),ForStatement(t,e,i){if(i)for(let i=t.node.firstChild;i;i=i.nextSibling)if("VariableName"==i.name)e(i,"variable");else if("in"==i.name)break},ImportStatement(t,e){var i,n;let{node:r}=t,s="from"==(null===(i=r.firstChild)||void 0===i?void 0:i.name);for(let t=r.getChild("import");t;t=t.nextSibling)"VariableName"==t.name&&"as"!=(null===(n=t.nextSibling)||void 0===n?void 0:n.name)&&e(t,s?"variable":"namespace")},AssignStatement(t,e){for(let i=t.node.firstChild;i;i=i.nextSibling)if("VariableName"==i.name)e(i,"variable");else if(":"==i.name||"AssignOp"==i.name)break},ParamList(t,e){for(let i=null,n=t.node.firstChild;n;n=n.nextSibling)"VariableName"!=n.name||i&&/\*|AssignOp/.test(i.name)||e(n,"variable"),i=n},CapturePattern:Dp("variable"),AsPattern:Dp("variable"),__proto__:null};function Lp(t,e){let i=Up.get(e);if(i)return i;let n=[],r=!0;function s(e,i){let r=t.sliceString(e.from,e.to);n.push({label:r,type:i})}return e.cursor(Io.IncludeAnonymous).iterate((e=>{if(e.name){let t=Gp[e.name];if(t&&t(e,s,r)||!r&&jp.has(e.name))return!1;r=!1}else if(e.to-e.from>8192){for(let i of Lp(t,e.node))n.push(i);return!1}})),Up.set(e,n),n}const Np=/^[\w\xa1-\uffff][\w\d\xa1-\uffff]*$/,Ip=["String","FormatString","Comment","PropertyName"];function Bp(t){let e=cl(t.state).resolveInner(t.pos,-1);if(Ip.indexOf(e.name)>-1)return null;let i="VariableName"==e.name||e.to-e.from<20&&Np.test(t.state.sliceDoc(e.from,e.to));if(!i&&!t.explicit)return null;let n=[];for(let i=e;i;i=i.parent)jp.has(i.name)&&(n=n.concat(Lp(t.state.doc,i)));return{options:n,from:i?e.from:t.pos,validFor:Np}}const Fp=["__annotations__","__builtins__","__debug__","__doc__","__import__","__name__","__loader__","__package__","__spec__","False","None","True"].map((t=>({label:t,type:"constant"}))).concat(["ArithmeticError","AssertionError","AttributeError","BaseException","BlockingIOError","BrokenPipeError","BufferError","BytesWarning","ChildProcessError","ConnectionAbortedError","ConnectionError","ConnectionRefusedError","ConnectionResetError","DeprecationWarning","EOFError","Ellipsis","EncodingWarning","EnvironmentError","Exception","FileExistsError","FileNotFoundError","FloatingPointError","FutureWarning","GeneratorExit","IOError","ImportError","ImportWarning","IndentationError","IndexError","InterruptedError","IsADirectoryError","KeyError","KeyboardInterrupt","LookupError","MemoryError","ModuleNotFoundError","NameError","NotADirectoryError","NotImplemented","NotImplementedError","OSError","OverflowError","PendingDeprecationWarning","PermissionError","ProcessLookupError","RecursionError","ReferenceError","ResourceWarning","RuntimeError","RuntimeWarning","StopAsyncIteration","StopIteration","SyntaxError","SyntaxWarning","SystemError","SystemExit","TabError","TimeoutError","TypeError","UnboundLocalError","UnicodeDecodeError","UnicodeEncodeError","UnicodeError","UnicodeTranslateError","UnicodeWarning","UserWarning","ValueError","Warning","ZeroDivisionError"].map((t=>({label:t,type:"type"})))).concat(["bool","bytearray","bytes","classmethod","complex","float","frozenset","int","list","map","memoryview","object","range","set","staticmethod","str","super","tuple","type"].map((t=>({label:t,type:"class"})))).concat(["abs","aiter","all","anext","any","ascii","bin","breakpoint","callable","chr","compile","delattr","dict","dir","divmod","enumerate","eval","exec","exit","filter","format","getattr","globals","hasattr","hash","help","hex","id","input","isinstance","issubclass","iter","len","license","locals","max","min","next","oct","open","ord","pow","print","property","quit","repr","reversed","round","setattr","slice","sorted","sum","vars","zip"].map((t=>({label:t,type:"function"})))),Hp=[vu("def ${name}(${params}):\n\t${}",{label:"def",detail:"function",type:"keyword"}),vu("for ${name} in ${collection}:\n\t${}",{label:"for",detail:"loop",type:"keyword"}),vu("while ${}:\n\t${}",{label:"while",detail:"loop",type:"keyword"}),vu("try:\n\t${}\nexcept ${error}:\n\t${}",{label:"try",detail:"/ except block",type:"keyword"}),vu("if ${}:\n\t\n",{label:"if",detail:"block",type:"keyword"}),vu("if ${}:\n\t${}\nelse:\n\t${}",{label:"if",detail:"/ else block",type:"keyword"}),vu("class ${name}:\n\tdef __init__(self, ${params}):\n\t\t\t${}",{label:"class",detail:"definition",type:"keyword"}),vu("import ${module}",{label:"import",detail:"statement",type:"keyword"}),vu("from ${module} import ${names}",{label:"from",detail:"import",type:"keyword"})],Jp=wd(Ip,vd(Fp.concat(Hp)));function Kp(t){let{node:e,pos:i}=t,n=t.lineIndent(i,-1),r=null;for(;;){let s=e.childBefore(i);if(!s)break;if("Comment"==s.name)i=s.from;else if("Body"==s.name)t.baseIndentFor(s)+t.unit<=n&&(r=s),e=s;else{if(!s.type.is("Statement"))break;e=s}}return r}function tm(t,e){let i=t.baseIndentFor(e),n=t.lineAt(t.pos,-1),r=n.from+n.text.length;return/^\s*($|#)/.test(n.text)&&t.node.toi?null:i+t.unit}const em=hl.define({name:"python",parser:Yp.configure({props:[Tl.add({Body:t=>{var e;return null!==(e=tm(t,Kp(t)||t.node))&&void 0!==e?e:t.continue()},IfStatement:t=>/^\s*(else:|elif )/.test(t.textAfter)?t.baseIndent:t.continue(),"ForStatement WhileStatement":t=>/^\s*else:/.test(t.textAfter)?t.baseIndent:t.continue(),TryStatement:t=>/^\s*(except |finally:|else:)/.test(t.textAfter)?t.baseIndent:t.continue(),"TupleExpression ComprehensionExpression ParamList ArgList ParenthesizedExpression":ql({closing:")"}),"DictionaryExpression DictionaryComprehensionExpression SetExpression SetComprehensionExpression":ql({closing:"}"}),"ArrayExpression ArrayComprehensionExpression":ql({closing:"]"}),"String FormatString":()=>null,Script:t=>{var e;let i=Kp(t);return null!==(e=i&&tm(t,i))&&void 0!==e?e:t.continue()}}),Vl.add({"ArrayExpression DictionaryExpression SetExpression TupleExpression":Ml,Body:(t,e)=>({from:t.from+1,to:t.to-(t.to==e.doc.length?0:1)})})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"'''",'"""'],stringPrefixes:["f","fr","rf","r","u","b","br","rb","F","FR","RF","R","U","B","BR","RB"]},commentTokens:{line:"#"},indentOnInput:/^\s*([\}\]\)]|else:|elif |except |finally:)$/}});class im{static create(t,e,i,n,r){return new im(t,e,i,n+(n<<8)+t+(e<<4)|0,r,[],[])}constructor(t,e,i,n,r,s,o){this.type=t,this.value=e,this.from=i,this.hash=n,this.end=r,this.children=s,this.positions=o,this.hashProp=[[Yo.contextHash,n]]}addChild(t,e){t.prop(Yo.contextHash)!=this.hash&&(t=new Bo(t.type,t.children,t.positions,t.length,this.hashProp)),this.children.push(t),this.positions.push(e)}toTree(t,e=this.end){let i=this.children.length-1;return i>=0&&(e=Math.max(e,this.positions[i]+this.children[i].length+this.from)),new Bo(t.types[this.type],this.children,this.positions,e-this.from).balance({makeTree:(t,e,i)=>new Bo(Do.none,t,e,i,this.hashProp)})}}var nm;!function(t){t[t.Document=1]="Document",t[t.CodeBlock=2]="CodeBlock",t[t.FencedCode=3]="FencedCode",t[t.Blockquote=4]="Blockquote",t[t.HorizontalRule=5]="HorizontalRule",t[t.BulletList=6]="BulletList",t[t.OrderedList=7]="OrderedList",t[t.ListItem=8]="ListItem",t[t.ATXHeading1=9]="ATXHeading1",t[t.ATXHeading2=10]="ATXHeading2",t[t.ATXHeading3=11]="ATXHeading3",t[t.ATXHeading4=12]="ATXHeading4",t[t.ATXHeading5=13]="ATXHeading5",t[t.ATXHeading6=14]="ATXHeading6",t[t.SetextHeading1=15]="SetextHeading1",t[t.SetextHeading2=16]="SetextHeading2",t[t.HTMLBlock=17]="HTMLBlock",t[t.LinkReference=18]="LinkReference",t[t.Paragraph=19]="Paragraph",t[t.CommentBlock=20]="CommentBlock",t[t.ProcessingInstructionBlock=21]="ProcessingInstructionBlock",t[t.Escape=22]="Escape",t[t.Entity=23]="Entity",t[t.HardBreak=24]="HardBreak",t[t.Emphasis=25]="Emphasis",t[t.StrongEmphasis=26]="StrongEmphasis",t[t.Link=27]="Link",t[t.Image=28]="Image",t[t.InlineCode=29]="InlineCode",t[t.HTMLTag=30]="HTMLTag",t[t.Comment=31]="Comment",t[t.ProcessingInstruction=32]="ProcessingInstruction",t[t.Autolink=33]="Autolink",t[t.HeaderMark=34]="HeaderMark",t[t.QuoteMark=35]="QuoteMark",t[t.ListMark=36]="ListMark",t[t.LinkMark=37]="LinkMark",t[t.EmphasisMark=38]="EmphasisMark",t[t.CodeMark=39]="CodeMark",t[t.CodeText=40]="CodeText",t[t.CodeInfo=41]="CodeInfo",t[t.LinkTitle=42]="LinkTitle",t[t.LinkLabel=43]="LinkLabel",t[t.URL=44]="URL"}(nm||(nm={}));class rm{constructor(t,e){this.start=t,this.content=e,this.marks=[],this.parsers=[]}}class sm{constructor(){this.text="",this.baseIndent=0,this.basePos=0,this.depth=0,this.markers=[],this.pos=0,this.indent=0,this.next=-1}forward(){this.basePos>this.pos&&this.forwardInner()}forwardInner(){let t=this.skipSpace(this.basePos);this.indent=this.countIndent(t,this.pos,this.indent),this.pos=t,this.next=t==this.text.length?-1:this.text.charCodeAt(t)}skipSpace(t){return hm(this.text,t)}reset(t){for(this.text=t,this.baseIndent=this.basePos=this.pos=this.indent=0,this.forwardInner(),this.depth=1;this.markers.length;)this.markers.pop()}moveBase(t){this.basePos=t,this.baseIndent=this.countIndent(t,this.pos,this.indent)}moveBaseColumn(t){this.baseIndent=t,this.basePos=this.findColumn(t)}addMarker(t){this.markers.push(t)}countIndent(t,e=0,i=0){for(let n=e;n=e.stack[i.depth+1].value+i.baseIndent)return!0;if(i.indent>=i.baseIndent+4)return!1;let n=(t.type==nm.OrderedList?mm:pm)(i,e,!1);return n>0&&(t.type!=nm.BulletList||um(i,e,!1)<0)&&i.text.charCodeAt(i.pos+n-1)==t.value}const am={[nm.Blockquote]:(t,e,i)=>62==i.next&&(i.markers.push(Dm(nm.QuoteMark,e.lineStart+i.pos,e.lineStart+i.pos+1)),i.moveBase(i.pos+(lm(i.text.charCodeAt(i.pos+1))?2:1)),t.end=e.lineStart+i.text.length,!0),[nm.ListItem]:(t,e,i)=>!(i.indent-1)&&(i.moveBaseColumn(i.baseIndent+t.value),!0),[nm.OrderedList]:om,[nm.BulletList]:om,[nm.Document]:()=>!0};function lm(t){return 32==t||9==t||10==t||13==t}function hm(t,e=0){for(;ei&&lm(t.charCodeAt(e-1));)e--;return e}function Om(t){if(96!=t.next&&126!=t.next)return-1;let e=t.pos+1;for(;e-1&&t.depth==e.stack.length||n<3?-1:1}function fm(t,e){for(let i=t.stack.length-1;i>=0;i--)if(t.stack[i].type==e)return!0;return!1}function pm(t,e,i){return 45!=t.next&&43!=t.next&&42!=t.next||t.pos!=t.text.length-1&&!lm(t.text.charCodeAt(t.pos+1))||!(!i||fm(e,nm.BulletList)||t.skipSpace(t.pos+2)=48&&r<=57;){if(n++,n==t.text.length)return-1;r=t.text.charCodeAt(n)}return n==t.pos||n>t.pos+9||46!=r&&41!=r||nt.pos+1||49!=t.next)?-1:n+1-t.pos}function gm(t){if(35!=t.next)return-1;let e=t.pos+1;for(;e6?-1:i}function Qm(t){if(45!=t.next&&61!=t.next||t.indent>=t.baseIndent+4)return-1;let e=t.pos+1;for(;e/,vm=/\?>/,wm=[[/^<(?:script|pre|style)(?:\s|>|$)/i,/<\/(?:script|pre|style)>/i],[/^\s*/i.exec(n);if(s)return t.append(Dm(nm.Comment,i,i+1+s[0].length));let o=/^\?[^]*?\?>/.exec(n);if(o)return t.append(Dm(nm.ProcessingInstruction,i,i+1+o[0].length));let a=/^(?:![A-Z][^]*?>|!\[CDATA\[[^]*?\]\]>|\/\s*[a-zA-Z][\w-]*\s*>|\s*[a-zA-Z][\w-]*(\s+[a-zA-Z:_][\w-.:]*(?:\s*=\s*(?:[^\s"'=<>`]+|'[^']*'|"[^"]*"))?)*\s*(\/\s*)?>)/.exec(n);return a?t.append(Dm(nm.HTMLTag,i,i+1+a[0].length)):-1},Emphasis(t,e,i){if(95!=e&&42!=e)return-1;let n=i+1;for(;t.char(n)==e;)n++;let r=t.slice(i-1,i),s=t.slice(n,n+1),o=Hm.test(r),a=Hm.test(s),l=/\s|^$/.test(r),h=/\s|^$/.test(s),c=!h&&(!a||l||o),O=!l&&(!o||h||a),d=c&&(42==e||!O||o),u=O&&(42==e||!c||a);return t.append(new Bm(95==e?Gm:Lm,i,n,(d?1:0)|(u?2:0)))},HardBreak(t,e,i){if(92==e&&10==t.char(i+1))return t.append(Dm(nm.HardBreak,i,i+2));if(32==e){let e=i+1;for(;32==t.char(e);)e++;if(10==t.char(e)&&e>=i+2)return t.append(Dm(nm.HardBreak,i,e+1))}return-1},Link:(t,e,i)=>91==e?t.append(new Bm(Nm,i,i+1,1)):-1,Image:(t,e,i)=>33==e&&91==t.char(i+1)?t.append(new Bm(Im,i,i+2,1)):-1,LinkEnd(t,e,i){if(93!=e)return-1;for(let e=t.parts.length-1;e>=0;e--){let n=t.parts[e];if(n instanceof Bm&&(n.type==Nm||n.type==Im)){if(!n.side||t.skipSpace(n.to)==i&&!/[(\[]/.test(t.slice(i+1,i+2)))return t.parts[e]=null,-1;let r=t.takeContent(e),s=t.parts[e]=Km(t,r,n.type==Nm?nm.Link:nm.Image,n.from,i+1);if(n.type==Nm)for(let i=0;ie?Dm(nm.URL,e+i,r+i):r==t.length&&null}}function eg(t,e,i){let n=t.charCodeAt(e);if(39!=n&&34!=n&&40!=n)return!1;let r=40==n?41:n;for(let n=e+1,s=!1;n=this.end?-1:this.text.charCodeAt(t-this.offset)}get end(){return this.offset+this.text.length}slice(t,e){return this.text.slice(t-this.offset,e-this.offset)}append(t){return this.parts.push(t),t.to}addDelimiter(t,e,i,n,r){return this.append(new Bm(t,e,i,(n?1:0)|(r?2:0)))}get hasOpenLink(){for(let t=this.parts.length-1;t>=0;t--){let e=this.parts[t];if(e instanceof Bm&&(e.type==Nm||e.type==Im))return!0}return!1}addElement(t){return this.append(t)}resolveMarkers(t){for(let e=t;e=t;o--){let t=this.parts[o];if(t instanceof Bm&&1&t.side&&t.type==i.type&&!(r&&(1&i.side||2&t.side)&&(t.to-t.from+s)%3==0&&((t.to-t.from)%3||s%3))){n=t;break}}if(!n)continue;let a=i.type.resolve,l=[],h=n.from,c=i.to;if(r){let t=Math.min(2,n.to-n.from,s);h=n.to-t,c=i.from+t,a=1==t?"Emphasis":"StrongEmphasis"}n.type.mark&&l.push(this.elt(n.type.mark,h,n.to));for(let t=o+1;t=0;e--){let i=this.parts[e];if(i instanceof Bm&&i.type==t)return e}return null}takeContent(t){let e=this.resolveMarkers(t);return this.parts.length=t,e}skipSpace(t){return hm(this.text,t-this.offset)+this.offset}elt(t,e,i,n){return"string"==typeof t?Dm(this.parser.getNodeType(t),e,i,n):new jm(t,e)}}function rg(t,e){if(!e.length)return t;if(!t.length)return e;let i=t.slice(),n=0;for(let t of e){for(;n(t?t-1:0))return!1;if(this.fragmentEnd<0){let t=this.fragment.to;for(;t>0&&"\n"!=this.input.read(t-1,t);)t--;this.fragmentEnd=t?t-1:0}let i=this.cursor;i||(i=this.cursor=this.fragment.tree.cursor(),i.firstChild());let n=t+this.fragment.offset;for(;i.to<=n;)if(!i.parent())return!1;for(;;){if(i.from>=n)return this.fragment.from<=e;if(!i.childAfter(n))return!1}}matches(t){let e=this.cursor.tree;return e&&e.prop(Yo.contextHash)==t}takeNodes(t){let e=this.cursor,i=this.fragment.offset,n=this.fragmentEnd-(this.fragment.openEnd?1:0),r=t.absoluteLineStart,s=r,o=t.block.children.length,a=s,l=o;for(;;){if(e.to-i>n){if(e.type.isAnonymous&&e.firstChild())continue;break}let r=ag(e.from-i,t.ranges);if(e.to-i<=t.ranges[t.rangeI].to)t.addNode(e.tree,r);else{let i=new Bo(t.parser.nodeSet.types[nm.Paragraph],[],[],0,t.block.hashProp);t.reusePlaceholders.set(i,e.tree),t.addNode(i,r)}if(e.type.is("Block")&&(sg.indexOf(e.type.id)<0?(s=e.to-i,o=t.block.children.length):(s=a,o=l,a=e.to-i,l=t.block.children.length)),!e.nextSibling())break}for(;t.block.children.length>o;)t.block.children.pop(),t.block.positions.pop();return s-r}}function ag(t,e){let i=t;for(let n=1;nPm[t])),Object.keys(Pm).map((t=>Rm[t])),Object.keys(Pm),Zm,am,Object.keys(Jm).map((t=>Jm[t])),Object.keys(Jm),[]);function cg(t,e,i){let n=[];for(let r=t.firstChild,s=e;;r=r.nextSibling){let t=r?r.from:i;if(t>s&&n.push({from:s,to:t}),!r)break;s=r.to}return n}const Og={resolve:"Strikethrough",mark:"StrikethroughMark"},dg={defineNodes:[{name:"Strikethrough",style:{"Strikethrough/...":il.strikethrough}},{name:"StrikethroughMark",style:il.processingInstruction}],parseInline:[{name:"Strikethrough",parse(t,e,i){if(126!=e||126!=t.char(i+1)||126==t.char(i+2))return-1;let n=t.slice(i-1,i),r=t.slice(i+2,i+3),s=/\s|^$/.test(n),o=/\s|^$/.test(r),a=Hm.test(n),l=Hm.test(r);return t.addDelimiter(Og,i,i+2,!o&&(!l||s||a),!s&&(!a||o||l))},after:"Emphasis"}]};function ug(t,e,i=0,n,r=0){let s=0,o=!0,a=-1,l=-1,h=!1,c=()=>{n.push(t.elt("TableCell",r+a,r+l,t.parser.parseInline(e.slice(a,l),r+a)))};for(let O=i;O-1)&&s++,o=!1,n&&(a>-1&&c(),n.push(t.elt("TableDelimiter",O+r,O+r+1))),a=l=-1),h=!h&&92==i}return a>-1&&(s++,n&&c()),s}function fg(t,e){for(let i=e;ifg(e.content,0)?new mg:null,endLeaf(t,e,i){if(i.parsers.some((t=>t instanceof mg))||!fg(e.text,e.basePos))return!1;let n=t.scanLine(t.absoluteLineEnd+1).text;return pg.test(n)&&ug(t,e.text,e.basePos)==ug(t,n,e.basePos)},before:"SetextHeading"}]};class Qg{nextLine(){return!1}finish(t,e){return t.addLeafElement(e,t.elt("Task",e.start,e.start+e.content.length,[t.elt("TaskMarker",e.start,e.start+3),...t.parser.parseInline(e.content.slice(3),e.start+3)])),!0}}const bg={defineNodes:[{name:"Task",block:!0,style:il.list},{name:"TaskMarker",style:il.atom}],parseBlock:[{name:"TaskList",leaf:(t,e)=>/^\[[ xX]\][ \t]/.test(e.content)&&"ListItem"==t.parentType().name?new Qg:null,after:"SetextHeading"}]},Sg=/(www\.)|(https?:\/\/)|([\w.+-]+@)|(mailto:|xmpp:)/gy,vg=/[\w-]+(\.[\w-]+)+(\/[^\s<]*)?/gy,wg=/[\w-]+\.[\w-]+($|\/)/,yg=/[\w.+-]+@[\w-]+(\.[\w.-]+)+/gy,xg=/\/[a-zA-Z\d@.]+/gy;function kg(t,e,i,n){let r=0;for(let s=e;s-1)return-1;let n=e+i[0].length;for(;;){let i,r=t[n-1];if(/[?!.,:*_~]/.test(r)||")"==r&&kg(t,e,n,")")>kg(t,e,n,"("))n--;else{if(";"!=r||!(i=/&(?:#\d+|#x[a-f\d]+|\w+);$/.exec(t.slice(e,n))))break;n=e+i.index}}return n}(t.text,n+r[0].length),s>-1&&t.hasOpenLink){s=n+/([^\[\]]|\[[^\]]*\])*/.exec(t.text.slice(n,s))[0].length}}else r[3]?s=Pg(t.text,n):(s=Pg(t.text,n+r[0].length),s>-1&&"xmpp:"==r[0]&&(xg.lastIndex=s,r=xg.exec(t.text),r&&(s=r.index+r[0].length)));return s<0?-1:(t.addElement(t.elt("URL",i,s+t.offset)),s+t.offset)}}]},Tg=[gg,bg,dg,$g];function _g(t,e,i){return(n,r,s)=>{if(r!=t||n.char(s+1)==t)return-1;let o=[n.elt(i,s,s+1)];for(let r=s+1;r=65&&s<=90||95==s||s>=97&&s<=122||s>=161;)r+=String.fromCharCode(n),n=t.peek(++e);var s;return Ig=t,Bg=i,Ng=r?r.toLowerCase():n==Hg||n==Jg?void 0:null}const Hg=63,Jg=33;function Kg(t,e){this.name=t,this.parent=e}const tQ=[6,10,7,8,9],eQ=new Af({start:null,shift:(t,e,i,n)=>tQ.indexOf(e)>-1?new Kg(Fg(n,1)||"",t):t,reduce:(t,e)=>e==Cg&&t?t.parent:t,reuse(t,e,i,n){let r=e.type.id;return 6==r||36==r?new Kg(Fg(n,1)||"",t):t},strict:!1}),iQ=new yf(((t,e)=>{if(60!=t.next)return void(t.next<0&&e.context&&t.acceptToken(57));t.advance();let i=47==t.next;i&&t.advance();let n=Fg(t,0);if(void 0===n)return;if(!n)return t.acceptToken(i?14:6);let r=e.context?e.context.name:null;if(i){if(n==r)return t.acceptToken(11);if(r&&Dg[r])return t.acceptToken(57,-2);if(e.dialectEnabled(0))return t.acceptToken(12);for(let t=e.context;t;t=t.parent)if(t.name==n)return;t.acceptToken(13)}else{if("script"==n)return t.acceptToken(7);if("style"==n)return t.acceptToken(8);if("textarea"==n)return t.acceptToken(9);if(jg.hasOwnProperty(n))return t.acceptToken(10);r&&Gg[r]&&Gg[r][n]?t.acceptToken(57,-1):t.acceptToken(6)}}),{contextual:!0}),nQ=new yf((t=>{for(let e=0,i=0;;i++){if(t.next<0){i&&t.acceptToken(58);break}if(45==t.next)e++;else{if(62==t.next&&e>=2){i>=3&&t.acceptToken(58,-2);break}e=0}t.advance()}}));const rQ=new yf(((t,e)=>{if(47==t.next&&62==t.peek(1)){let i=e.dialectEnabled(1)||function(t){for(;t;t=t.parent)if("svg"==t.name||"math"==t.name)return!0;return!1}(e.context);t.acceptToken(i?5:4,2)}else 62==t.next&&t.acceptToken(4,1)}));function sQ(t,e,i){let n=2+t.length;return new yf((r=>{for(let s=0,o=0,a=0;;a++){if(r.next<0){a&&r.acceptToken(e);break}if(0==s&&60==r.next||1==s&&47==r.next||s>=2&&so?r.acceptToken(e,-o):r.acceptToken(i,-(o-2));break}if((10==r.next||13==r.next)&&a){r.acceptToken(e,1);break}s=o=0}else o++;r.advance()}}))}const oQ=sQ("script",54,1),aQ=sQ("style",55,2),lQ=sQ("textarea",56,3),hQ=Wa({"Text RawText":il.content,"StartTag StartCloseTag SelfClosingEndTag EndTag":il.angleBracket,TagName:il.tagName,"MismatchedCloseTag/TagName":[il.tagName,il.invalid],AttributeName:il.attributeName,"AttributeValue UnquotedAttributeValue":il.attributeValue,Is:il.definitionOperator,"EntityReference CharacterReference":il.character,Comment:il.blockComment,ProcessingInst:il.processingInstruction,DoctypeDecl:il.documentMeta}),cQ=zf.deserialize({version:14,states:",xOVO!rOOO!WQ#tO'#CqO!]Q#tO'#CzO!bQ#tO'#C}O!gQ#tO'#DQO!lQ#tO'#DSO!qOaO'#CpO!|ObO'#CpO#XOdO'#CpO$eO!rO'#CpOOO`'#Cp'#CpO$lO$fO'#DTO$tQ#tO'#DVO$yQ#tO'#DWOOO`'#Dk'#DkOOO`'#DY'#DYQVO!rOOO%OQ&rO,59]O%ZQ&rO,59fO%fQ&rO,59iO%qQ&rO,59lO%|Q&rO,59nOOOa'#D^'#D^O&XOaO'#CxO&dOaO,59[OOOb'#D_'#D_O&lObO'#C{O&wObO,59[OOOd'#D`'#D`O'POdO'#DOO'[OdO,59[OOO`'#Da'#DaO'dO!rO,59[O'kQ#tO'#DROOO`,59[,59[OOOp'#Db'#DbO'pO$fO,59oOOO`,59o,59oO'xQ#|O,59qO'}Q#|O,59rOOO`-E7W-E7WO(SQ&rO'#CsOOQW'#DZ'#DZO(bQ&rO1G.wOOOa1G.w1G.wOOO`1G/Y1G/YO(mQ&rO1G/QOOOb1G/Q1G/QO(xQ&rO1G/TOOOd1G/T1G/TO)TQ&rO1G/WOOO`1G/W1G/WO)`Q&rO1G/YOOOa-E7[-E7[O)kQ#tO'#CyOOO`1G.v1G.vOOOb-E7]-E7]O)pQ#tO'#C|OOOd-E7^-E7^O)uQ#tO'#DPOOO`-E7_-E7_O)zQ#|O,59mOOOp-E7`-E7`OOO`1G/Z1G/ZOOO`1G/]1G/]OOO`1G/^1G/^O*PQ,UO,59_OOQW-E7X-E7XOOOa7+$c7+$cOOO`7+$t7+$tOOOb7+$l7+$lOOOd7+$o7+$oOOO`7+$r7+$rO*[Q#|O,59eO*aQ#|O,59hO*fQ#|O,59kOOO`1G/X1G/XO*kO7[O'#CvO*|OMhO'#CvOOQW1G.y1G.yOOO`1G/P1G/POOO`1G/S1G/SOOO`1G/V1G/VOOOO'#D['#D[O+_O7[O,59bOOQW,59b,59bOOOO'#D]'#D]O+pOMhO,59bOOOO-E7Y-E7YOOQW1G.|1G.|OOOO-E7Z-E7Z",stateData:",]~O!^OS~OUSOVPOWQOXROYTO[]O][O^^O`^Oa^Ob^Oc^Ox^O{_O!dZO~OfaO~OfbO~OfcO~OfdO~OfeO~O!WfOPlP!ZlP~O!XiOQoP!ZoP~O!YlORrP!ZrP~OUSOVPOWQOXROYTOZqO[]O][O^^O`^Oa^Ob^Oc^Ox^O!dZO~O!ZrO~P#dO![sO!euO~OfvO~OfwO~OS|OT}OhyO~OS!POT}OhyO~OS!ROT}OhyO~OS!TOT}OhyO~OS}OT}OhyO~O!WfOPlX!ZlX~OP!WO!Z!XO~O!XiOQoX!ZoX~OQ!ZO!Z!XO~O!YlORrX!ZrX~OR!]O!Z!XO~O!Z!XO~P#dOf!_O~O![sO!e!aO~OS!bO~OS!cO~Oi!dOSgXTgXhgX~OS!fOT!gOhyO~OS!hOT!gOhyO~OS!iOT!gOhyO~OS!jOT!gOhyO~OS!gOT!gOhyO~Of!kO~Of!lO~Of!mO~OS!nO~Ok!qO!`!oO!b!pO~OS!rO~OS!sO~OS!tO~Oa!uOb!uOc!uO!`!wO!a!uO~Oa!xOb!xOc!xO!b!wO!c!xO~Oa!uOb!uOc!uO!`!{O!a!uO~Oa!xOb!xOc!xO!b!{O!c!xO~OT~bac!dx{!d~",goto:"%p!`PPPPPPPPPPPPPPPPPPPP!a!gP!mPP!yP!|#P#S#Y#]#`#f#i#l#r#x!aP!a!aP$O$U$l$r$x%O%U%[%bPPPPPPPP%hX^OX`pXUOX`pezabcde{!O!Q!S!UR!q!dRhUR!XhXVOX`pRkVR!XkXWOX`pRnWR!XnXXOX`pQrXR!XpXYOX`pQ`ORx`Q{aQ!ObQ!QcQ!SdQ!UeZ!e{!O!Q!S!UQ!v!oR!z!vQ!y!pR!|!yQgUR!VgQjVR!YjQmWR![mQpXR!^pQtZR!`tS_O`ToXp",nodeNames:"⚠ StartCloseTag StartCloseTag StartCloseTag EndTag SelfClosingEndTag StartTag StartTag StartTag StartTag StartTag StartCloseTag StartCloseTag StartCloseTag IncompleteCloseTag Document Text EntityReference CharacterReference InvalidEntity Element OpenTag TagName Attribute AttributeName Is AttributeValue UnquotedAttributeValue ScriptText CloseTag OpenTag StyleText CloseTag OpenTag TextareaText CloseTag OpenTag CloseTag SelfClosingTag Comment ProcessingInst MismatchedCloseTag CloseTag DoctypeDecl",maxTerm:67,context:eQ,nodeProps:[["closedBy",-10,1,2,3,7,8,9,10,11,12,13,"EndTag",6,"EndTag SelfClosingEndTag",-4,21,30,33,36,"CloseTag"],["openedBy",4,"StartTag StartCloseTag",5,"StartTag",-4,29,32,35,37,"OpenTag"],["group",-9,14,17,18,19,20,39,40,41,42,"Entity",16,"Entity TextContent",-3,28,31,34,"TextContent Entity"],["isolate",-11,21,29,30,32,33,35,36,37,38,41,42,"ltr",-3,26,27,39,""]],propSources:[hQ],skippedNodes:[0],repeatNodeCount:9,tokenData:"!]tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^/^!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!Z5zbkWOX5uXZ7SZ[5u[^7S^p5uqr5urs7Sst+Ptw5uwx7Sx!]5u!]!^7w!^!a7S!a#S5u#S#T7S#T;'S5u;'S;=`8n<%lO5u!R7VVOp7Sqs7St!]7S!]!^7l!^;'S7S;'S;=`7q<%lO7S!R7qOa!R!R7tP;=`<%l7S!Z8OYkWa!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!Z8qP;=`<%l5u!_8{ihSkWOX5uXZ7SZ[5u[^7S^p5uqr8trs7Sst/^tw8twx7Sx!P8t!P!Q5u!Q!]8t!]!^:j!^!a7S!a#S8t#S#T;{#T#s8t#s$f5u$f;'S8t;'S;=`>V<%l?Ah8t?Ah?BY5u?BY?Mn8t?MnO5u!_:sbhSkWa!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VP<%l?Ah;{?Ah?BY7S?BY?Mn;{?MnO7S!V=dXhSa!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!V>SP;=`<%l;{!_>YP;=`<%l8t!_>dhhSkWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^/^!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!Z@TakWOX@OXZAYZ[@O[^AY^p@Oqr@OrsAYsw@OwxAYx!]@O!]!^Az!^!aAY!a#S@O#S#TAY#T;'S@O;'S;=`Bq<%lO@O!RA]UOpAYq!]AY!]!^Ao!^;'SAY;'S;=`At<%lOAY!RAtOb!R!RAwP;=`<%lAY!ZBRYkWb!ROX+PZ[+P^p+Pqr+Psw+Px!^+P!a#S+P#T;'S+P;'S;=`+t<%lO+P!ZBtP;=`<%l@O!_COhhSkWOX@OXZAYZ[@O[^AY^p@OqrBwrsAYswBwwxAYx!PBw!P!Q@O!Q!]Bw!]!^Dj!^!aAY!a#SBw#S#TE{#T#sBw#s$f@O$f;'SBw;'S;=`HS<%l?AhBw?Ah?BY@O?BY?MnBw?MnO@O!_DsbhSkWb!ROX+PZ[+P^p+Pqr/^sw/^x!P/^!P!Q+P!Q!^/^!a#S/^#S#T0m#T#s/^#s$f+P$f;'S/^;'S;=`1e<%l?Ah/^?Ah?BY+P?BY?Mn/^?MnO+P!VFQbhSOpAYqrE{rsAYswE{wxAYx!PE{!P!QAY!Q!]E{!]!^GY!^!aAY!a#sE{#s$fAY$f;'SE{;'S;=`G|<%l?AhE{?Ah?BYAY?BY?MnE{?MnOAY!VGaXhSb!Rqr0msw0mx!P0m!Q!^0m!a#s0m$f;'S0m;'S;=`1_<%l?Ah0m?BY?Mn0m!VHPP;=`<%lE{!_HVP;=`<%lBw!ZHcW!bx`P!a`Or(trs'ksv(tw!^(t!^!_)e!_;'S(t;'S;=`*P<%lO(t!aIYlhS`PkW!a`!cpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OKQ!O!P-_!P!Q$q!Q!^-_!^!_*V!_!a&X!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!aK_khS`PkW!a`!cpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx!P-_!P!Q$q!Q!^-_!^!_*V!_!`&X!`!aMS!a#S-_#S#T1k#T#s-_#s$f$q$f;'S-_;'S;=`3X<%l?Ah-_?Ah?BY$q?BY?Mn-_?MnO$q!TM_X`P!a`!cp!eQOr&Xrs&}sv&Xwx(tx!^&X!^!_*V!_;'S&X;'S;=`*y<%lO&X!aNZ!ZhSfQ`PkW!a`!cpOX$qXZ&XZ[$q[^&X^p$qpq&Xqr-_rs&}sv-_vw/^wx(tx}-_}!OMz!O!PMz!P!Q$q!Q![Mz![!]Mz!]!^-_!^!_*V!_!a&X!a!c-_!c!}Mz!}#R-_#R#SMz#S#T1k#T#oMz#o#s-_#s$f$q$f$}-_$}%OMz%O%W-_%W%oMz%o%p-_%p&aMz&a&b-_&b1pMz1p4UMz4U4dMz4d4e-_4e$ISMz$IS$I`-_$I`$IbMz$Ib$Je-_$Je$JgMz$Jg$Kh-_$Kh%#tMz%#t&/x-_&/x&EtMz&Et&FV-_&FV;'SMz;'S;:j!#|;:j;=`3X<%l?&r-_?&r?AhMz?Ah?BY$q?BY?MnMz?MnO$q!a!$PP;=`<%lMz!R!$ZY!a`!cpOq*Vqr!$yrs(Vsv*Vwx)ex!a*V!a!b!4t!b;'S*V;'S;=`*s<%lO*V!R!%Q]!a`!cpOr*Vrs(Vsv*Vwx)ex}*V}!O!%y!O!f*V!f!g!']!g#W*V#W#X!0`#X;'S*V;'S;=`*s<%lO*V!R!&QX!a`!cpOr*Vrs(Vsv*Vwx)ex}*V}!O!&m!O;'S*V;'S;=`*s<%lO*V!R!&vV!a`!cp!dPOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!'dX!a`!cpOr*Vrs(Vsv*Vwx)ex!q*V!q!r!(P!r;'S*V;'S;=`*s<%lO*V!R!(WX!a`!cpOr*Vrs(Vsv*Vwx)ex!e*V!e!f!(s!f;'S*V;'S;=`*s<%lO*V!R!(zX!a`!cpOr*Vrs(Vsv*Vwx)ex!v*V!v!w!)g!w;'S*V;'S;=`*s<%lO*V!R!)nX!a`!cpOr*Vrs(Vsv*Vwx)ex!{*V!{!|!*Z!|;'S*V;'S;=`*s<%lO*V!R!*bX!a`!cpOr*Vrs(Vsv*Vwx)ex!r*V!r!s!*}!s;'S*V;'S;=`*s<%lO*V!R!+UX!a`!cpOr*Vrs(Vsv*Vwx)ex!g*V!g!h!+q!h;'S*V;'S;=`*s<%lO*V!R!+xY!a`!cpOr!+qrs!,hsv!+qvw!-Swx!.[x!`!+q!`!a!/j!a;'S!+q;'S;=`!0Y<%lO!+qq!,mV!cpOv!,hvx!-Sx!`!,h!`!a!-q!a;'S!,h;'S;=`!.U<%lO!,hP!-VTO!`!-S!`!a!-f!a;'S!-S;'S;=`!-k<%lO!-SP!-kO{PP!-nP;=`<%l!-Sq!-xS!cp{POv(Vx;'S(V;'S;=`(h<%lO(Vq!.XP;=`<%l!,ha!.aX!a`Or!.[rs!-Ssv!.[vw!-Sw!`!.[!`!a!.|!a;'S!.[;'S;=`!/d<%lO!.[a!/TT!a`{POr)esv)ew;'S)e;'S;=`)y<%lO)ea!/gP;=`<%l!.[!R!/sV!a`!cp{POr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!0]P;=`<%l!+q!R!0gX!a`!cpOr*Vrs(Vsv*Vwx)ex#c*V#c#d!1S#d;'S*V;'S;=`*s<%lO*V!R!1ZX!a`!cpOr*Vrs(Vsv*Vwx)ex#V*V#V#W!1v#W;'S*V;'S;=`*s<%lO*V!R!1}X!a`!cpOr*Vrs(Vsv*Vwx)ex#h*V#h#i!2j#i;'S*V;'S;=`*s<%lO*V!R!2qX!a`!cpOr*Vrs(Vsv*Vwx)ex#m*V#m#n!3^#n;'S*V;'S;=`*s<%lO*V!R!3eX!a`!cpOr*Vrs(Vsv*Vwx)ex#d*V#d#e!4Q#e;'S*V;'S;=`*s<%lO*V!R!4XX!a`!cpOr*Vrs(Vsv*Vwx)ex#X*V#X#Y!+q#Y;'S*V;'S;=`*s<%lO*V!R!4{Y!a`!cpOr!4trs!5ksv!4tvw!6Vwx!8]x!a!4t!a!b!:]!b;'S!4t;'S;=`!;r<%lO!4tq!5pV!cpOv!5kvx!6Vx!a!5k!a!b!7W!b;'S!5k;'S;=`!8V<%lO!5kP!6YTO!a!6V!a!b!6i!b;'S!6V;'S;=`!7Q<%lO!6VP!6lTO!`!6V!`!a!6{!a;'S!6V;'S;=`!7Q<%lO!6VP!7QOxPP!7TP;=`<%l!6Vq!7]V!cpOv!5kvx!6Vx!`!5k!`!a!7r!a;'S!5k;'S;=`!8V<%lO!5kq!7yS!cpxPOv(Vx;'S(V;'S;=`(h<%lO(Vq!8YP;=`<%l!5ka!8bX!a`Or!8]rs!6Vsv!8]vw!6Vw!a!8]!a!b!8}!b;'S!8];'S;=`!:V<%lO!8]a!9SX!a`Or!8]rs!6Vsv!8]vw!6Vw!`!8]!`!a!9o!a;'S!8];'S;=`!:V<%lO!8]a!9vT!a`xPOr)esv)ew;'S)e;'S;=`)y<%lO)ea!:YP;=`<%l!8]!R!:dY!a`!cpOr!4trs!5ksv!4tvw!6Vwx!8]x!`!4t!`!a!;S!a;'S!4t;'S;=`!;r<%lO!4t!R!;]V!a`!cpxPOr*Vrs(Vsv*Vwx)ex;'S*V;'S;=`*s<%lO*V!R!;uP;=`<%l!4t!V!{let a=t.type.id;if(a==Mg)return uQ(t,e,i);if(a==Eg)return uQ(t,e,n);if(a==Yg)return uQ(t,e,r);if(a==Cg&&s.length){let i,n=t.node,r=n.firstChild,o=r&&dQ(r,e);if(o)for(let t of s)if(t.tag==o&&(!t.attrs||t.attrs(i||(i=OQ(r,e))))){let e=n.lastChild,i=e.type.id==Ug?e.from:n.to;if(i>r.to)return{parser:t.parser,overlay:[{from:r.to,to:i}]}}}if(o&&a==Wg){let i,n=t.node;if(i=n.firstChild){let t=o[e.read(i.from,i.to)];if(t)for(let i of t){if(i.tagName&&i.tagName!=dQ(n.parent,e))continue;let t=n.lastChild;if(t.type.id==zg){let e=t.from+1,n=t.lastChild,r=t.to-(n&&n.isError?0:1);if(r>e)return{parser:i.parser,overlay:[{from:e,to:r}]}}else if(t.type.id==Vg)return{parser:i.parser,overlay:[{from:t.from,to:t.to}]}}}}return null}))}const pQ=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288];function mQ(t){return t>=65&&t<=90||t>=97&&t<=122||t>=161}function gQ(t){return t>=48&&t<=57}const QQ=new yf(((t,e)=>{for(let i=!1,n=0,r=0;;r++){let{next:s}=t;if(mQ(s)||45==s||95==s||i&&gQ(s))!i&&(45!=s||r>0)&&(i=!0),n===r&&45==s&&n++,t.advance();else{if(92!=s||10==t.peek(1)){i&&t.acceptToken(40==s?100:2==n&&e.canShift(2)?2:101);break}t.advance(),t.next>-1&&t.advance(),i=!0}}})),bQ=new yf((t=>{if(pQ.includes(t.peek(-1))){let{next:e}=t;(mQ(e)||95==e||35==e||46==e||91==e||58==e&&mQ(t.peek(1))||45==e||38==e)&&t.acceptToken(99)}})),SQ=new yf((t=>{if(!pQ.includes(t.peek(-1))){let{next:e}=t;if(37==e&&(t.advance(),t.acceptToken(1)),mQ(e)){do{t.advance()}while(mQ(t.next)||gQ(t.next));t.acceptToken(1)}}})),vQ=Wa({"AtKeyword import charset namespace keyframes media supports":il.definitionKeyword,"from to selector":il.keyword,NamespaceName:il.namespace,KeyframeName:il.labelName,KeyframeRangeName:il.operatorKeyword,TagName:il.tagName,ClassName:il.className,PseudoClassName:il.constant(il.className),IdName:il.labelName,"FeatureName PropertyName":il.propertyName,AttributeName:il.attributeName,NumberLiteral:il.number,KeywordQuery:il.keyword,UnaryQueryOp:il.operatorKeyword,"CallTag ValueName":il.atom,VariableName:il.variableName,Callee:il.operatorKeyword,Unit:il.unit,"UniversalSelector NestingSelector":il.definitionOperator,MatchOp:il.compareOperator,"ChildOp SiblingOp, LogicOp":il.logicOperator,BinOp:il.arithmeticOperator,Important:il.modifier,Comment:il.blockComment,ColorLiteral:il.color,"ParenthesizedContent StringLiteral":il.string,":":il.punctuation,"PseudoOp #":il.derefOperator,"; ,":il.separator,"( )":il.paren,"[ ]":il.squareBracket,"{ }":il.brace}),wQ={__proto__:null,lang:32,"nth-child":32,"nth-last-child":32,"nth-of-type":32,"nth-last-of-type":32,dir:32,"host-context":32,url:60,"url-prefix":60,domain:60,regexp:60,selector:138},yQ={__proto__:null,"@import":118,"@media":142,"@charset":146,"@namespace":150,"@keyframes":156,"@supports":168},xQ={__proto__:null,not:132,only:132},kQ=zf.deserialize({version:14,states:":^QYQ[OOO#_Q[OOP#fOWOOOOQP'#Cd'#CdOOQP'#Cc'#CcO#kQ[O'#CfO$_QXO'#CaO$fQ[O'#ChO$qQ[O'#DTO$vQ[O'#DWOOQP'#Em'#EmO${QdO'#DgO%jQ[O'#DtO${QdO'#DvO%{Q[O'#DxO&WQ[O'#D{O&`Q[O'#ERO&nQ[O'#ETOOQS'#El'#ElOOQS'#EW'#EWQYQ[OOO&uQXO'#CdO'jQWO'#DcO'oQWO'#EsO'zQ[O'#EsQOQWOOP(UO#tO'#C_POOO)C@[)C@[OOQP'#Cg'#CgOOQP,59Q,59QO#kQ[O,59QO(aQ[O'#E[O({QWO,58{O)TQ[O,59SO$qQ[O,59oO$vQ[O,59rO(aQ[O,59uO(aQ[O,59wO(aQ[O,59xO)`Q[O'#DbOOQS,58{,58{OOQP'#Ck'#CkOOQO'#DR'#DROOQP,59S,59SO)gQWO,59SO)lQWO,59SOOQP'#DV'#DVOOQP,59o,59oOOQO'#DX'#DXO)qQ`O,59rOOQS'#Cp'#CpO${QdO'#CqO)yQvO'#CsO+ZQtO,5:ROOQO'#Cx'#CxO)lQWO'#CwO+oQWO'#CyO+tQ[O'#DOOOQS'#Ep'#EpOOQO'#Dj'#DjO+|Q[O'#DqO,[QWO'#EtO&`Q[O'#DoO,jQWO'#DrOOQO'#Eu'#EuO)OQWO,5:`O,oQpO,5:bOOQS'#Dz'#DzO,wQWO,5:dO,|Q[O,5:dOOQO'#D}'#D}O-UQWO,5:gO-ZQWO,5:mO-cQWO,5:oOOQS-E8U-E8UO${QdO,59}O-kQ[O'#E^O-xQWO,5;_O-xQWO,5;_POOO'#EV'#EVP.TO#tO,58yPOOO,58y,58yOOQP1G.l1G.lO.zQXO,5:vOOQO-E8Y-E8YOOQS1G.g1G.gOOQP1G.n1G.nO)gQWO1G.nO)lQWO1G.nOOQP1G/Z1G/ZO/XQ`O1G/^O/rQXO1G/aO0YQXO1G/cO0pQXO1G/dO1WQWO,59|O1]Q[O'#DSO1dQdO'#CoOOQP1G/^1G/^O${QdO1G/^O1kQpO,59]OOQS,59_,59_O${QdO,59aO1sQWO1G/mOOQS,59c,59cO1xQ!bO,59eOOQS'#DP'#DPOOQS'#EY'#EYO2QQ[O,59jOOQS,59j,59jO2YQWO'#DjO2eQWO,5:VO2jQWO,5:]O&`Q[O,5:XO&`Q[O'#E_O2rQWO,5;`O2}QWO,5:ZO(aQ[O,5:^OOQS1G/z1G/zOOQS1G/|1G/|OOQS1G0O1G0OO3`QWO1G0OO3eQdO'#EOOOQS1G0R1G0ROOQS1G0X1G0XOOQS1G0Z1G0ZO3pQtO1G/iOOQO,5:x,5:xO4WQ[O,5:xOOQO-E8[-E8[O4eQWO1G0yPOOO-E8T-E8TPOOO1G.e1G.eOOQP7+$Y7+$YOOQP7+$x7+$xO${QdO7+$xOOQS1G/h1G/hO4pQXO'#ErO4wQWO,59nO4|QtO'#EXO5tQdO'#EoO6OQWO,59ZO6TQpO7+$xOOQS1G.w1G.wOOQS1G.{1G.{OOQS7+%X7+%XO6]QWO1G/POOQS-E8W-E8WOOQS1G/U1G/UO${QdO1G/qOOQO1G/w1G/wOOQO1G/s1G/sO6bQWO,5:yOOQO-E8]-E8]O6pQXO1G/xOOQS7+%j7+%jO6wQYO'#CsOOQO'#EQ'#EQO7SQ`O'#EPOOQO'#EP'#EPO7_QWO'#E`O7gQdO,5:jOOQS,5:j,5:jO7rQtO'#E]O${QdO'#E]O8sQdO7+%TOOQO7+%T7+%TOOQO1G0d1G0dO9WQpO<OAN>OO:xQdO,5:uOOQO-E8X-E8XOOQO<T![;'S%^;'S;=`%o<%lO%^l;TUo`Oy%^z!Q%^!Q![;g![;'S%^;'S;=`%o<%lO%^l;nYo`#e[Oy%^z!Q%^!Q![;g![!g%^!g!h<^!h#X%^#X#Y<^#Y;'S%^;'S;=`%o<%lO%^l[[o`#e[Oy%^z!O%^!O!P;g!P!Q%^!Q![>T![!g%^!g!h<^!h#X%^#X#Y<^#Y;'S%^;'S;=`%o<%lO%^n?VSt^Oy%^z;'S%^;'S;=`%o<%lO%^l?hWjWOy%^z!O%^!O!P;O!P!Q%^!Q![>T![;'S%^;'S;=`%o<%lO%^n@VU#bQOy%^z!Q%^!Q![;g![;'S%^;'S;=`%o<%lO%^~@nTjWOy%^z{@}{;'S%^;'S;=`%o<%lO%^~AUSo`#[~Oy%^z;'S%^;'S;=`%o<%lO%^lAg[#e[Oy%^z!O%^!O!P;g!P!Q%^!Q![>T![!g%^!g!h<^!h#X%^#X#Y<^#Y;'S%^;'S;=`%o<%lO%^bBbU]QOy%^z![%^![!]Bt!];'S%^;'S;=`%o<%lO%^bB{S^Qo`Oy%^z;'S%^;'S;=`%o<%lO%^nC^S!Y^Oy%^z;'S%^;'S;=`%o<%lO%^dCoS|SOy%^z;'S%^;'S;=`%o<%lO%^bDQU!OQOy%^z!`%^!`!aDd!a;'S%^;'S;=`%o<%lO%^bDkS!OQo`Oy%^z;'S%^;'S;=`%o<%lO%^bDzWOy%^z!c%^!c!}Ed!}#T%^#T#oEd#o;'S%^;'S;=`%o<%lO%^bEk[![Qo`Oy%^z}%^}!OEd!O!Q%^!Q![Ed![!c%^!c!}Ed!}#T%^#T#oEd#o;'S%^;'S;=`%o<%lO%^nFfSq^Oy%^z;'S%^;'S;=`%o<%lO%^nFwSp^Oy%^z;'S%^;'S;=`%o<%lO%^bGWUOy%^z#b%^#b#cGj#c;'S%^;'S;=`%o<%lO%^bGoUo`Oy%^z#W%^#W#XHR#X;'S%^;'S;=`%o<%lO%^bHYS!bQo`Oy%^z;'S%^;'S;=`%o<%lO%^bHiUOy%^z#f%^#f#gHR#g;'S%^;'S;=`%o<%lO%^fIQS!TUOy%^z;'S%^;'S;=`%o<%lO%^nIcS!S^Oy%^z;'S%^;'S;=`%o<%lO%^fItU!RQOy%^z!_%^!_!`6y!`;'S%^;'S;=`%o<%lO%^`JZP;=`<%l$}",tokenizers:[bQ,SQ,QQ,1,2,3,4,new wf("m~RRYZ[z{a~~g~aO#^~~dP!P!Qg~lO#_~~",28,105)],topRules:{StyleSheet:[0,4],Styles:[1,86]},specialized:[{term:100,get:t=>wQ[t]||-1},{term:58,get:t=>yQ[t]||-1},{term:101,get:t=>xQ[t]||-1}],tokenPrec:1200});let PQ=null;function $Q(){if(!PQ&&"object"==typeof document&&document.body){let{style:t}=document.body,e=[],i=new Set;for(let n in t)"cssText"!=n&&"cssFloat"!=n&&"string"==typeof t[n]&&(/[A-Z]/.test(n)&&(n=n.replace(/[A-Z]/g,(t=>"-"+t.toLowerCase()))),i.has(n)||(e.push(n),i.add(n)));PQ=e.sort().map((t=>({type:"property",label:t})))}return PQ||[]}const TQ=["active","after","any-link","autofill","backdrop","before","checked","cue","default","defined","disabled","empty","enabled","file-selector-button","first","first-child","first-letter","first-line","first-of-type","focus","focus-visible","focus-within","fullscreen","has","host","host-context","hover","in-range","indeterminate","invalid","is","lang","last-child","last-of-type","left","link","marker","modal","not","nth-child","nth-last-child","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","part","placeholder","placeholder-shown","read-only","read-write","required","right","root","scope","selection","slotted","target","target-text","valid","visited","where"].map((t=>({type:"class",label:t}))),_Q=["above","absolute","activeborder","additive","activecaption","after-white-space","ahead","alias","all","all-scroll","alphabetic","alternate","always","antialiased","appworkspace","asterisks","attr","auto","auto-flow","avoid","avoid-column","avoid-page","avoid-region","axis-pan","background","backwards","baseline","below","bidi-override","blink","block","block-axis","bold","bolder","border","border-box","both","bottom","break","break-all","break-word","bullets","button","button-bevel","buttonface","buttonhighlight","buttonshadow","buttontext","calc","capitalize","caps-lock-indicator","caption","captiontext","caret","cell","center","checkbox","circle","cjk-decimal","clear","clip","close-quote","col-resize","collapse","color","color-burn","color-dodge","column","column-reverse","compact","condensed","contain","content","contents","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","darken","dashed","decimal","decimal-leading-zero","default","default-button","dense","destination-atop","destination-in","destination-out","destination-over","difference","disc","discard","disclosure-closed","disclosure-open","document","dot-dash","dot-dot-dash","dotted","double","down","e-resize","ease","ease-in","ease-in-out","ease-out","element","ellipse","ellipsis","embed","end","ethiopic-abegede-gez","ethiopic-halehame-aa-er","ethiopic-halehame-gez","ew-resize","exclusion","expanded","extends","extra-condensed","extra-expanded","fantasy","fast","fill","fill-box","fixed","flat","flex","flex-end","flex-start","footnotes","forwards","from","geometricPrecision","graytext","grid","groove","hand","hard-light","help","hidden","hide","higher","highlight","highlighttext","horizontal","hsl","hsla","hue","icon","ignore","inactiveborder","inactivecaption","inactivecaptiontext","infinite","infobackground","infotext","inherit","initial","inline","inline-axis","inline-block","inline-flex","inline-grid","inline-table","inset","inside","intrinsic","invert","italic","justify","keep-all","landscape","large","larger","left","level","lighter","lighten","line-through","linear","linear-gradient","lines","list-item","listbox","listitem","local","logical","loud","lower","lower-hexadecimal","lower-latin","lower-norwegian","lowercase","ltr","luminosity","manipulation","match","matrix","matrix3d","medium","menu","menutext","message-box","middle","min-intrinsic","mix","monospace","move","multiple","multiple_mask_images","multiply","n-resize","narrower","ne-resize","nesw-resize","no-close-quote","no-drop","no-open-quote","no-repeat","none","normal","not-allowed","nowrap","ns-resize","numbers","numeric","nw-resize","nwse-resize","oblique","opacity","open-quote","optimizeLegibility","optimizeSpeed","outset","outside","outside-shape","overlay","overline","padding","padding-box","painted","page","paused","perspective","pinch-zoom","plus-darker","plus-lighter","pointer","polygon","portrait","pre","pre-line","pre-wrap","preserve-3d","progress","push-button","radial-gradient","radio","read-only","read-write","read-write-plaintext-only","rectangle","region","relative","repeat","repeating-linear-gradient","repeating-radial-gradient","repeat-x","repeat-y","reset","reverse","rgb","rgba","ridge","right","rotate","rotate3d","rotateX","rotateY","rotateZ","round","row","row-resize","row-reverse","rtl","run-in","running","s-resize","sans-serif","saturation","scale","scale3d","scaleX","scaleY","scaleZ","screen","scroll","scrollbar","scroll-position","se-resize","self-start","self-end","semi-condensed","semi-expanded","separate","serif","show","single","skew","skewX","skewY","skip-white-space","slide","slider-horizontal","slider-vertical","sliderthumb-horizontal","sliderthumb-vertical","slow","small","small-caps","small-caption","smaller","soft-light","solid","source-atop","source-in","source-out","source-over","space","space-around","space-between","space-evenly","spell-out","square","start","static","status-bar","stretch","stroke","stroke-box","sub","subpixel-antialiased","svg_masks","super","sw-resize","symbolic","symbols","system-ui","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group","text","text-bottom","text-top","textarea","textfield","thick","thin","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","to","top","transform","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","unidirectional-pan","unset","up","upper-latin","uppercase","url","var","vertical","vertical-text","view-box","visible","visibleFill","visiblePainted","visibleStroke","visual","w-resize","wait","wave","wider","window","windowframe","windowtext","words","wrap","wrap-reverse","x-large","x-small","xor","xx-large","xx-small"].map((t=>({type:"keyword",label:t}))).concat(["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"].map((t=>({type:"constant",label:t})))),RQ=["a","abbr","address","article","aside","b","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","dd","del","details","dfn","dialog","div","dl","dt","em","figcaption","figure","footer","form","header","hgroup","h1","h2","h3","h4","h5","h6","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","main","meter","nav","ol","output","p","pre","ruby","section","select","small","source","span","strong","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","tr","u","ul"].map((t=>({type:"type",label:t}))),ZQ=/^(\w[\w-]*|-\w[\w-]*|)$/,XQ=/^-(-[\w-]*)?$/;const CQ=new ua,qQ=["Declaration"];function WQ(t){for(let e=t;;){if(e.type.isTop)return e;if(!(e=e.parent))return t}}function AQ(t,e,i){if(e.to-e.from>4096){let n=CQ.get(e);if(n)return n;let r=[],s=new Set,o=e.cursor(Io.IncludeAnonymous);if(o.firstChild())do{for(let e of AQ(t,o.node,i))s.has(e.label)||(s.add(e.label),r.push(e))}while(o.nextSibling());return CQ.set(e,r),r}{let n=[],r=new Set;return e.cursor().iterate((e=>{var s;if(i(e)&&e.matchContext(qQ)&&":"==(null===(s=e.node.nextSibling)||void 0===s?void 0:s.name)){let i=t.sliceString(e.from,e.to);r.has(i)||(r.add(i),n.push({label:i,type:"variable"}))}})),n}}const zQ=t=>e=>{let{state:i,pos:n}=e,r=cl(i).resolveInner(n,-1),s=r.type.isError&&r.from==r.to-1&&"-"==i.doc.sliceString(r.from,r.to);if("PropertyName"==r.name||(s||"TagName"==r.name)&&/^(Block|Styles)$/.test(r.resolve(r.to).name))return{from:r.from,options:$Q(),validFor:ZQ};if("ValueName"==r.name)return{from:r.from,options:_Q,validFor:ZQ};if("PseudoClassName"==r.name)return{from:r.from,options:TQ,validFor:ZQ};if(t(r)||(e.explicit||s)&&function(t,e){var i;if(("("==t.name||t.type.isError)&&(t=t.parent||t),"ArgList"!=t.name)return!1;let n=null===(i=t.parent)||void 0===i?void 0:i.firstChild;return"Callee"==(null==n?void 0:n.name)&&"var"==e.sliceString(n.from,n.to)}(r,i.doc))return{from:t(r)||s?r.from:n,options:AQ(i.doc,WQ(r),t),validFor:XQ};if("TagName"==r.name){for(let{parent:t}=r;t;t=t.parent)if("Block"==t.name)return{from:r.from,options:$Q(),validFor:ZQ};return{from:r.from,options:RQ,validFor:ZQ}}if(!e.explicit)return null;let o=r.resolve(n),a=o.childBefore(n);return a&&":"==a.name&&"PseudoClassSelector"==o.name?{from:n,options:TQ,validFor:ZQ}:a&&":"==a.name&&"Declaration"==o.name||"ArgList"==o.name?{from:n,options:_Q,validFor:ZQ}:"Block"==o.name||"Styles"==o.name?{from:n,options:$Q(),validFor:ZQ}:null},VQ=zQ((t=>"VariableName"==t.name)),MQ=hl.define({name:"css",parser:kQ.configure({props:[Tl.add({Declaration:Al()}),Vl.add({"Block KeyframeList":Ml})]}),languageData:{commentTokens:{block:{open:"/*",close:"*/"}},indentOnInput:/^\s*\}$/,wordChars:"-"}});const EQ=["_blank","_self","_top","_parent"],YQ=["ascii","utf-8","utf-16","latin1","latin1"],UQ=["get","post","put","delete"],jQ=["application/x-www-form-urlencoded","multipart/form-data","text/plain"],DQ=["true","false"],GQ={},LQ={a:{attrs:{href:null,ping:null,type:null,media:null,target:EQ,hreflang:null}},abbr:GQ,address:GQ,area:{attrs:{alt:null,coords:null,href:null,target:null,ping:null,media:null,hreflang:null,type:null,shape:["default","rect","circle","poly"]}},article:GQ,aside:GQ,audio:{attrs:{src:null,mediagroup:null,crossorigin:["anonymous","use-credentials"],preload:["none","metadata","auto"],autoplay:["autoplay"],loop:["loop"],controls:["controls"]}},b:GQ,base:{attrs:{href:null,target:EQ}},bdi:GQ,bdo:GQ,blockquote:{attrs:{cite:null}},body:GQ,br:GQ,button:{attrs:{form:null,formaction:null,name:null,value:null,autofocus:["autofocus"],disabled:["autofocus"],formenctype:jQ,formmethod:UQ,formnovalidate:["novalidate"],formtarget:EQ,type:["submit","reset","button"]}},canvas:{attrs:{width:null,height:null}},caption:GQ,center:GQ,cite:GQ,code:GQ,col:{attrs:{span:null}},colgroup:{attrs:{span:null}},command:{attrs:{type:["command","checkbox","radio"],label:null,icon:null,radiogroup:null,command:null,title:null,disabled:["disabled"],checked:["checked"]}},data:{attrs:{value:null}},datagrid:{attrs:{disabled:["disabled"],multiple:["multiple"]}},datalist:{attrs:{data:null}},dd:GQ,del:{attrs:{cite:null,datetime:null}},details:{attrs:{open:["open"]}},dfn:GQ,div:GQ,dl:GQ,dt:GQ,em:GQ,embed:{attrs:{src:null,type:null,width:null,height:null}},eventsource:{attrs:{src:null}},fieldset:{attrs:{disabled:["disabled"],form:null,name:null}},figcaption:GQ,figure:GQ,footer:GQ,form:{attrs:{action:null,name:null,"accept-charset":YQ,autocomplete:["on","off"],enctype:jQ,method:UQ,novalidate:["novalidate"],target:EQ}},h1:GQ,h2:GQ,h3:GQ,h4:GQ,h5:GQ,h6:GQ,head:{children:["title","base","link","style","meta","script","noscript","command"]},header:GQ,hgroup:GQ,hr:GQ,html:{attrs:{manifest:null}},i:GQ,iframe:{attrs:{src:null,srcdoc:null,name:null,width:null,height:null,sandbox:["allow-top-navigation","allow-same-origin","allow-forms","allow-scripts"],seamless:["seamless"]}},img:{attrs:{alt:null,src:null,ismap:null,usemap:null,width:null,height:null,crossorigin:["anonymous","use-credentials"]}},input:{attrs:{alt:null,dirname:null,form:null,formaction:null,height:null,list:null,max:null,maxlength:null,min:null,name:null,pattern:null,placeholder:null,size:null,src:null,step:null,value:null,width:null,accept:["audio/*","video/*","image/*"],autocomplete:["on","off"],autofocus:["autofocus"],checked:["checked"],disabled:["disabled"],formenctype:jQ,formmethod:UQ,formnovalidate:["novalidate"],formtarget:EQ,multiple:["multiple"],readonly:["readonly"],required:["required"],type:["hidden","text","search","tel","url","email","password","datetime","date","month","week","time","datetime-local","number","range","color","checkbox","radio","file","submit","image","reset","button"]}},ins:{attrs:{cite:null,datetime:null}},kbd:GQ,keygen:{attrs:{challenge:null,form:null,name:null,autofocus:["autofocus"],disabled:["disabled"],keytype:["RSA"]}},label:{attrs:{for:null,form:null}},legend:GQ,li:{attrs:{value:null}},link:{attrs:{href:null,type:null,hreflang:null,media:null,sizes:["all","16x16","16x16 32x32","16x16 32x32 64x64"]}},map:{attrs:{name:null}},mark:GQ,menu:{attrs:{label:null,type:["list","context","toolbar"]}},meta:{attrs:{content:null,charset:YQ,name:["viewport","application-name","author","description","generator","keywords"],"http-equiv":["content-language","content-type","default-style","refresh"]}},meter:{attrs:{value:null,min:null,low:null,high:null,max:null,optimum:null}},nav:GQ,noscript:GQ,object:{attrs:{data:null,type:null,name:null,usemap:null,form:null,width:null,height:null,typemustmatch:["typemustmatch"]}},ol:{attrs:{reversed:["reversed"],start:null,type:["1","a","A","i","I"]},children:["li","script","template","ul","ol"]},optgroup:{attrs:{disabled:["disabled"],label:null}},option:{attrs:{disabled:["disabled"],label:null,selected:["selected"],value:null}},output:{attrs:{for:null,form:null,name:null}},p:GQ,param:{attrs:{name:null,value:null}},pre:GQ,progress:{attrs:{value:null,max:null}},q:{attrs:{cite:null}},rp:GQ,rt:GQ,ruby:GQ,samp:GQ,script:{attrs:{type:["text/javascript"],src:null,async:["async"],defer:["defer"],charset:YQ}},section:GQ,select:{attrs:{form:null,name:null,size:null,autofocus:["autofocus"],disabled:["disabled"],multiple:["multiple"]}},slot:{attrs:{name:null}},small:GQ,source:{attrs:{src:null,type:null,media:null}},span:GQ,strong:GQ,style:{attrs:{type:["text/css"],media:null,scoped:null}},sub:GQ,summary:GQ,sup:GQ,table:GQ,tbody:GQ,td:{attrs:{colspan:null,rowspan:null,headers:null}},template:GQ,textarea:{attrs:{dirname:null,form:null,maxlength:null,name:null,placeholder:null,rows:null,cols:null,autofocus:["autofocus"],disabled:["disabled"],readonly:["readonly"],required:["required"],wrap:["soft","hard"]}},tfoot:GQ,th:{attrs:{colspan:null,rowspan:null,headers:null,scope:["row","col","rowgroup","colgroup"]}},thead:GQ,time:{attrs:{datetime:null}},title:GQ,tr:GQ,track:{attrs:{src:null,label:null,default:null,kind:["subtitles","captions","descriptions","chapters","metadata"],srclang:null}},ul:{children:["li","script","template","ul","ol"]},var:GQ,video:{attrs:{src:null,poster:null,width:null,height:null,crossorigin:["anonymous","use-credentials"],preload:["auto","metadata","none"],autoplay:["autoplay"],mediagroup:["movie"],muted:["muted"],controls:["controls"]}},wbr:GQ},NQ={accesskey:null,class:null,contenteditable:DQ,contextmenu:null,dir:["ltr","rtl","auto"],draggable:["true","false","auto"],dropzone:["copy","move","link","string:","file:"],hidden:["hidden"],id:null,inert:["inert"],itemid:null,itemprop:null,itemref:null,itemscope:["itemscope"],itemtype:null,lang:["ar","bn","de","en-GB","en-US","es","fr","hi","id","ja","pa","pt","ru","tr","zh"],spellcheck:DQ,autocorrect:DQ,autocapitalize:DQ,style:null,tabindex:null,title:null,translate:["yes","no"],rel:["stylesheet","alternate","author","bookmark","help","license","next","nofollow","noreferrer","prefetch","prev","search","tag"],role:"alert application article banner button cell checkbox complementary contentinfo dialog document feed figure form grid gridcell heading img list listbox listitem main navigation region row rowgroup search switch tab table tabpanel textbox timer".split(" "),"aria-activedescendant":null,"aria-atomic":DQ,"aria-autocomplete":["inline","list","both","none"],"aria-busy":DQ,"aria-checked":["true","false","mixed","undefined"],"aria-controls":null,"aria-describedby":null,"aria-disabled":DQ,"aria-dropeffect":null,"aria-expanded":["true","false","undefined"],"aria-flowto":null,"aria-grabbed":["true","false","undefined"],"aria-haspopup":DQ,"aria-hidden":DQ,"aria-invalid":["true","false","grammar","spelling"],"aria-label":null,"aria-labelledby":null,"aria-level":null,"aria-live":["off","polite","assertive"],"aria-multiline":DQ,"aria-multiselectable":DQ,"aria-owns":null,"aria-posinset":null,"aria-pressed":["true","false","mixed","undefined"],"aria-readonly":DQ,"aria-relevant":null,"aria-required":DQ,"aria-selected":["true","false","undefined"],"aria-setsize":null,"aria-sort":["ascending","descending","none","other"],"aria-valuemax":null,"aria-valuemin":null,"aria-valuenow":null,"aria-valuetext":null},IQ="beforeunload copy cut dragstart dragover dragleave dragenter dragend drag paste focus blur change click load mousedown mouseenter mouseleave mouseup keydown keyup resize scroll unload".split(" ").map((t=>"on"+t));for(let t of IQ)NQ[t]=null;class BQ{constructor(t,e){this.tags=Object.assign(Object.assign({},LQ),t),this.globalAttrs=Object.assign(Object.assign({},NQ),e),this.allTags=Object.keys(this.tags),this.globalAttrNames=Object.keys(this.globalAttrs)}}function FQ(t,e,i=t.length){if(!e)return"";let n=e.firstChild,r=n&&n.getChild("TagName");return r?t.sliceString(r.from,Math.min(r.to,i)):""}function HQ(t,e=!1){for(;t;t=t.parent)if("Element"==t.name){if(!e)return t;e=!1}return null}function JQ(t,e,i){let n=i.tags[FQ(t,HQ(e))];return(null==n?void 0:n.children)||i.allTags}function KQ(t,e){let i=[];for(let n=HQ(e);n&&!n.type.isTop;n=HQ(n.parent)){let r=FQ(t,n);if(r&&"CloseTag"==n.lastChild.name)break;r&&i.indexOf(r)<0&&("EndTag"==e.name||e.from>=n.firstChild.to)&&i.push(r)}return i}BQ.default=new BQ;const tb=/^[:\-\.\w\u00b7-\uffff]*$/;function eb(t,e,i,n,r){let s=/\s*>/.test(t.sliceDoc(r,r+5))?"":">",o=HQ(i,!0);return{from:n,to:r,options:JQ(t.doc,o,e).map((t=>({label:t,type:"type"}))).concat(KQ(t.doc,i).map(((t,e)=>({label:"/"+t,apply:"/"+t+s,type:"type",boost:99-e})))),validFor:/^\/?[:\-\.\w\u00b7-\uffff]*$/}}function ib(t,e,i,n){let r=/\s*>/.test(t.sliceDoc(n,n+5))?"":">";return{from:i,to:n,options:KQ(t.doc,e).map(((t,e)=>({label:t,apply:t+r,type:"type",boost:99-e}))),validFor:tb}}function nb(t,e){let{state:i,pos:n}=e,r=cl(i).resolveInner(n,-1),s=r.resolve(n);for(let t,e=n;s==r&&(t=r.childBefore(e));){let i=t.lastChild;if(!i||!i.type.isError||i.from({label:t,type:"property"}))),validFor:tb}}(i,t,r,"AttributeName"==r.name?r.from:n,n):"Is"==r.name||"AttributeValue"==r.name||"UnquotedAttributeValue"==r.name?function(t,e,i,n,r){var s;let o,a=null===(s=i.parent)||void 0===s?void 0:s.getChild("AttributeName"),l=[];if(a){let s=t.sliceDoc(a.from,a.to),h=e.globalAttrs[s];if(!h){let n=HQ(i),r=n?e.tags[FQ(t.doc,n)]:null;h=(null==r?void 0:r.attrs)&&r.attrs[s]}if(h){let e=t.sliceDoc(n,r).toLowerCase(),i='"',s='"';/^['"]/.test(e)?(o='"'==e[0]?/^[^"]*$/:/^[^']*$/,i="",s=t.sliceDoc(r,r+1)==e[0]?"":e[0],e=e.slice(1),n++):o=/^[^\s<>='"]*$/;for(let t of h)l.push({label:t,apply:i+t+s,type:"constant"})}}return{from:n,to:r,options:l,validFor:o}}(i,t,r,"Is"==r.name?n:r.from,n):!e.explicit||"Element"!=s.name&&"Text"!=s.name&&"Document"!=s.name?null:function(t,e,i,n){let r=[],s=0;for(let n of JQ(t.doc,i,e))r.push({label:"<"+n,type:"type"});for(let e of KQ(t.doc,i))r.push({label:"",type:"type",boost:99-s++});return{from:n,to:n,options:r,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}(i,t,r,n)}function rb(t){let{extraTags:e,extraGlobalAttributes:i}=t,n=i||e?new BQ(e,i):BQ.default;return t=>nb(n,t)}const sb=hp.parser.configure({top:"SingleExpression"}),ob=[{tag:"script",attrs:t=>"text/typescript"==t.type||"ts"==t.lang,parser:Op.parser},{tag:"script",attrs:t=>"text/babel"==t.type||"text/jsx"==t.type,parser:dp.parser},{tag:"script",attrs:t=>"text/typescript-jsx"==t.type,parser:up.parser},{tag:"script",attrs:t=>/^(importmap|speculationrules|application\/(.+\+)?json)$/i.test(t.type),parser:sb},{tag:"script",attrs:t=>!t.type||/^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i.test(t.type),parser:hp.parser},{tag:"style",attrs:t=>(!t.lang||"css"==t.lang)&&(!t.type||/^(text\/)?(x-)?(stylesheet|css)$/i.test(t.type)),parser:MQ.parser}],ab=[{name:"style",parser:MQ.parser.configure({top:"Styles"})}].concat(IQ.map((t=>({name:t,parser:hp.parser})))),lb=hl.define({name:"html",parser:cQ.configure({props:[Tl.add({Element(t){let e=/^(\s*)(<\/)?/.exec(t.textAfter);return t.node.to<=t.pos+e[0].length?t.continue():t.lineIndent(t.node.from)+(e[2]?0:t.unit)},"OpenTag CloseTag SelfClosingTag":t=>t.column(t.node.from)+t.unit,Document(t){if(t.pos+/\s*/.exec(t.textAfter)[0].lengtht.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:"\x3c!--",close:"--\x3e"}},indentOnInput:/^\s*<\/\w+\W$/,wordChars:"-._"}}),hb=lb.configure({wrap:fQ(ob,ab)});function cb(t={}){let e,i="";!1===t.matchClosingTags&&(i="noMatch"),!0===t.selfClosingTags&&(i=(i?i+" ":"")+"selfClosing"),(t.nestedLanguages&&t.nestedLanguages.length||t.nestedAttributes&&t.nestedAttributes.length)&&(e=fQ((t.nestedLanguages||[]).concat(ob),(t.nestedAttributes||[]).concat(ab)));let n=e?lb.configure({wrap:e,dialect:i}):i?hb.configure({dialect:i}):hb;return new Sl(n,[hb.data.of({autocomplete:rb(t)}),!1!==t.autoCloseTags?db:[],gp().support,new Sl(MQ,MQ.data.of({autocomplete:VQ})).support])}const Ob=new Set("area base br col command embed frame hr img input keygen link meta param source track wbr menuitem".split(" ")),db=Ir.inputHandler.of(((t,e,i,n,r)=>{if(t.composing||t.state.readOnly||e!=i||">"!=n&&"/"!=n||!hb.isActiveAt(t.state,e,-1))return!1;let s=r(),{state:o}=s,a=o.changeByRange((t=>{var e,i,r;let s,a=o.doc.sliceString(t.from-1,t.to)==n,{head:l}=t,h=cl(o).resolveInner(l,-1);if(a&&">"==n&&"EndTag"==h.name){let n=h.parent;if("CloseTag"!=(null===(i=null===(e=n.parent)||void 0===e?void 0:e.lastChild)||void 0===i?void 0:i.name)&&(s=FQ(o.doc,n.parent,l))&&!Ob.has(s)){return{range:t,changes:{from:l,to:l+(">"===o.doc.sliceString(l,l+1)?1:0),insert:``}}}}else if(a&&"/"==n&&"IncompleteCloseTag"==h.name){let t=h.parent;if(h.from==l-2&&"CloseTag"!=(null===(r=t.lastChild)||void 0===r?void 0:r.name)&&(s=FQ(o.doc,t,l))&&!Ob.has(s)){let t=l+(">"===o.doc.sliceString(l,l+1)?1:0),e=`${s}>`;return{range:C.cursor(l+e.length,-1),changes:{from:l,to:t,insert:e}}}}return{range:t}}));return!a.changes.empty&&(t.dispatch([s,o.update(a,{userEvent:"input.complete",scrollIntoView:!0})]),!0)})),ub=sl({commentTokens:{block:{open:"\x3c!--",close:"--\x3e"}}}),fb=new Yo,pb=hg.configure({props:[Vl.add((t=>!t.is("Block")||t.is("Document")||null!=mb(t)||function(t){return"OrderedList"==t.name||"BulletList"==t.name}(t)?void 0:(t,e)=>({from:e.doc.lineAt(t.from).to,to:t.to}))),fb.add(mb),Tl.add({Document:()=>null}),rl.add({Document:ub})]});function mb(t){let e=/^(?:ATX|Setext)Heading(\d)$/.exec(t.name);return e?+e[1]:void 0}function gb(t,e){let i=t;for(;;){let t,n=i.nextSibling;if(!n||null!=(t=mb(n.type))&&t<=e)break;i=n}return i.to}const Qb=zl.of(((t,e,i)=>{for(let n=cl(t).resolveInner(i,-1);n&&!(n.fromi)return{from:i,to:e}}return null}));function bb(t){return new al(ub,t,[Qb],"markdown")}const Sb=bb(pb),vb=bb(pb.configure([Tg,Zg,Rg,Xg,{props:[Vl.add({Table:(t,e)=>({from:e.doc.lineAt(t.from).to,to:t.to})})]}]));class wb{constructor(t,e,i,n,r,s,o){this.node=t,this.from=e,this.to=i,this.spaceBefore=n,this.spaceAfter=r,this.type=s,this.item=o}blank(t,e=!0){let i=this.spaceBefore+("Blockquote"==this.node.name?">":"");if(null!=t){for(;i.length0;t--)i+=" ";return i+(e?this.spaceAfter:"")}marker(t,e){let i="OrderedList"==this.node.name?String(+xb(this.item,t)[2]+e):"";return this.spaceBefore+i+this.type+this.spaceAfter}}function yb(t,e){let i=[];for(let e=t;e&&"Document"!=e.name;e=e.parent)"ListItem"!=e.name&&"Blockquote"!=e.name&&"FencedCode"!=e.name||i.push(e);let n=[];for(let t=i.length-1;t>=0;t--){let r,s=i[t],o=e.lineAt(s.from),a=s.from-o.from;if("FencedCode"==s.name)n.push(new wb(s,a,a,"","","",null));else if("Blockquote"==s.name&&(r=/^ *>( ?)/.exec(o.text.slice(a))))n.push(new wb(s,a,a+r[0].length,"",r[1],">",null));else if("ListItem"==s.name&&"OrderedList"==s.parent.name&&(r=/^( *)\d+([.)])( *)/.exec(o.text.slice(a)))){let t=r[3],e=r[0].length;t.length>=4&&(t=t.slice(0,t.length-4),e-=4),n.push(new wb(s.parent,a,a+e,r[1],t,r[2],s))}else if("ListItem"==s.name&&"BulletList"==s.parent.name&&(r=/^( *)([-+*])( {1,4}\[[ xX]\])?( +)/.exec(o.text.slice(a)))){let t=r[4],e=r[0].length;t.length>4&&(t=t.slice(0,t.length-4),e-=4);let i=r[2];r[3]&&(i+=r[3].replace(/[xX]/," ")),n.push(new wb(s.parent,a,a+e,r[1],t,i,s))}}return n}function xb(t,e){return/^(\s*)(\d+)(?=[.)])/.exec(e.sliceString(t.from,t.from+10))}function kb(t,e,i,n=0){for(let r=-1,s=t;;){if("ListItem"==s.name){let t=xb(s,e),o=+t[2];if(r>=0){if(o!=r+1)return;i.push({from:s.from+t[1].length,to:s.from+t[0].length,insert:String(r+2+n)})}r=o}let t=s.nextSibling;if(!t)break;s=t}}function Pb(t,e){let i=/^[ \t]*/.exec(t)[0].length;if(!i||"\t"!=e.facet(yl))return t;let n="";for(let e=Ut(t,4,i);e>0;)e>=4?(n+="\t",e-=4):(n+=" ",e--);return n+t.slice(i)}function $b(t){return"QuoteMark"==t.name||"ListMark"==t.name}function Tb(t,e,i){let n="";for(let e=0,r=t.length-2;e<=r;e++)n+=t[e].blank(e{let i=cl(t),{doc:n}=t,r=null,s=t.changeByRange((e=>{if(!e.empty||!vb.isActiveAt(t,e.from))return r={range:e};let s=e.from,o=n.lineAt(s),a=yb(i.resolveInner(s,-1),n);for(;a.length&&a[a.length-1].from>s-o.from;)a.pop();if(!a.length)return r={range:e};let l=a[a.length-1];if(l.to-l.spaceAfter.length>s-o.from)return r={range:e};let h=s>=l.to-l.spaceAfter.length&&!/\S/.test(o.text.slice(l.to));if(l.item&&h){let e=l.node.firstChild,i=l.node.getChild("ListItem","ListItem");if(e.to>=s||i&&i.to0&&!/[^\s>]/.test(n.lineAt(o.from-1).text)){let t,e=a.length>1?a[a.length-2]:null,i="";e&&e.item?(t=o.from+e.from,i=e.marker(n,1)):t=o.from+(e?e.to:0);let r=[{from:t,to:s,insert:i}];return"OrderedList"==l.node.name&&kb(l.item,n,r,-2),e&&"OrderedList"==e.node.name&&kb(e.item,n,r),{range:C.cursor(t+i.length),changes:r}}{let e=Tb(a,t,o);return{range:C.cursor(s+e.length+1),changes:{from:o.from,insert:e+t.lineBreak}}}}if("Blockquote"==l.node.name&&h&&o.from){let i=n.lineAt(o.from-1),r=/>\s*$/.exec(i.text);if(r&&r.index==l.from){let n=t.changes([{from:i.from+r.index,to:i.to},{from:o.from+l.from,to:o.to}]);return{range:e.map(n),changes:n}}}let c=[];"OrderedList"==l.node.name&&kb(l.item,n,c);let O=l.item&&l.item.from]*/.exec(o.text)[0].length>=l.to)for(let t=0,e=a.length-1;t<=e;t++)d+=t!=e||O?a[t].blank(to.from&&/\s/.test(o.text.charAt(u-o.from-1));)u--;return d=Pb(d,t),function(t,e){if("OrderedList"!=t.name&&"BulletList"!=t.name)return!1;let i=t.firstChild,n=t.getChild("ListItem","ListItem");if(!n)return!1;let r=e.lineAt(i.to),s=e.lineAt(n.from),o=/^[\s>]*$/.test(r.text);return r.number+(o?0:1){let i=cl(t),n=null,r=t.changeByRange((e=>{let r=e.from,{doc:s}=t;if(e.empty&&vb.isActiveAt(t,e.from)){let e=s.lineAt(r),n=yb(function(t,e){let i=t.resolveInner(e,-1),n=e;$b(i)&&(n=i.from,i=i.parent);for(let t;t=i.childBefore(n);)if($b(t))n=t.from;else{if("OrderedList"!=t.name&&"BulletList"!=t.name)break;i=t.lastChild,n=i.to}return i}(i,r),s);if(n.length){let i=n[n.length-1],s=i.to-i.spaceAfter.length+(i.spaceAfter?1:0);if(r-e.from>s&&!/\S/.test(e.text.slice(s,r-e.from)))return{range:C.cursor(e.from+s),changes:{from:e.from+s,to:r}};if(r-e.from==s&&(!i.item||e.from<=i.item.from||!/\S/.test(e.text.slice(0,i.to)))){let n=e.from+i.from;if(i.item&&i.node.from{if(t&&c){let e=null;if(t=/\S*/.exec(t)[0],e="function"==typeof c?c(t):vl.matchLanguageName(c,t,!0),e instanceof vl)return e.support?e.support.language.parser:ul.getSkippingParser(e.load());if(e)return e.parser}return O?O.parser:null}):void 0;var c,O;a.push(function(t){let{codeParser:e,htmlParser:i}=t,n=ga(((t,n)=>{let r=t.type.id;if(!e||r!=nm.CodeBlock&&r!=nm.FencedCode){if(i&&(r==nm.HTMLBlock||r==nm.HTMLTag))return{parser:i,overlay:cg(t.node,t.from,t.to)}}else{let i="";if(r==nm.FencedCode){let e=t.node.getChild(nm.CodeInfo);e&&(i=n.read(e.from,e.to))}let s=e(i);if(s)return{parser:s,overlay:t=>t.type.id==nm.CodeText}}return null}));return{wrap:n}}({codeParser:h,htmlParser:Rb.language.parser})),n&&l.push(B.high(is.of(_b)));let d=bb(r.configure(a));return s&&l.push(d.data.of({autocomplete:Xb})),new Sl(d,l)}function Xb(t){let{state:e,pos:i}=t,n=/<[:\-\.\w\u00b7-\uffff]*$/.exec(e.sliceDoc(i-25,i));if(!n)return null;let r=cl(e).resolveInner(i,-1);for(;r&&!r.type.isTop;){if("CodeBlock"==r.name||"FencedCode"==r.name||"ProcessingInstructionBlock"==r.name||"CommentBlock"==r.name||"Link"==r.name||"Image"==r.name)return null;r=r.parent}return{from:i-n[0].length,to:i,options:qb(),validFor:/^<[:\-\.\w\u00b7-\uffff]*$/}}let Cb=null;function qb(){if(Cb)return Cb;let t=(e=new bd(xt.create({extensions:Rb}),0,!0),nb(BQ.default,e));var e;return Cb=t?t.options:[]}var Wb,Ab,zb,Vb,Mb,Eb,Yb,Ub,jb,Db,Gb={},Lb=[],Nb=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,Ib=Array.isArray;function Bb(t,e){for(var i in e)t[i]=e[i];return t}function Fb(t){var e=t.parentNode;e&&e.removeChild(t)}function Hb(t,e,i){var n,r,s,o={};for(s in e)"key"==s?n=e[s]:"ref"==s?r=e[s]:o[s]=e[s];if(arguments.length>2&&(o.children=arguments.length>3?Wb.call(arguments,2):i),"function"==typeof t&&null!=t.defaultProps)for(s in t.defaultProps)void 0===o[s]&&(o[s]=t.defaultProps[s]);return Jb(t,o,n,r,null)}function Jb(t,e,i,n,r){var s={type:t,props:e,key:i,ref:n,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:null==r?++zb:r,__i:-1,__u:0};return null==r&&null!=Ab.vnode&&Ab.vnode(s),s}function Kb(t){return t.children}function tS(t,e){this.props=t,this.context=e}function eS(t,e){if(null==e)return t.__?eS(t.__,t.__i+1):null;for(var i;ee&&Vb.sort(Yb));rS.__r=0}function sS(t,e,i,n,r,s,o,a,l,h,c){var O,d,u,f,p,m=n&&n.__k||Lb,g=e.length;for(i.__d=l,oS(i,e,m),l=i.__d,O=0;O0?Jb(r.type,r.props,r.key,r.ref?r.ref:null,r.__v):r)?(r.__=t,r.__b=t.__b+1,a=lS(r,i,o,c),r.__i=a,s=null,-1!==a&&(c--,(s=i[a])&&(s.__u|=131072)),null==s||null===s.__v?(-1==a&&O--,"function"!=typeof r.type&&(r.__u|=65536)):a!==o&&(a==o-1?O=a-o:a==o+1?O++:a>o?c>l-o?O+=a-o:O--:a(null==l||131072&l.__u?0:1))for(;o>=0||a=0){if((l=e[o])&&!(131072&l.__u)&&r==l.key&&s===l.type)return o;o--}if(a=i.__.length&&i.__.push({}),i.__[t]}function XS(t){return wS=1,function(t,e,i){var n=ZS(QS++,2);if(n.t=t,!n.__c&&(n.__=[VS(void 0,e),function(t){var e=n.__N?n.__N[0]:n.__[0],i=n.t(e,t);e!==i&&(n.__N=[i,n.__[1]],n.__c.setState({}))}],n.__c=bS,!bS.u)){var r=function(t,e,i){if(!n.__c.__H)return!0;var r=n.__c.__H.__.filter((function(t){return!!t.__c}));if(r.every((function(t){return!t.__N})))return!s||s.call(this,t,e,i);var o=!1;return r.forEach((function(t){if(t.__N){var e=t.__[0];t.__=t.__N,t.__N=void 0,e!==t.__[0]&&(o=!0)}})),!(!o&&n.__c.props===t)&&(!s||s.call(this,t,e,i))};bS.u=!0;var s=bS.shouldComponentUpdate,o=bS.componentWillUpdate;bS.componentWillUpdate=function(t,e,i){if(this.__e){var n=s;s=void 0,r(t,e,i),s=n}o&&o.call(this,t,e,i)},bS.shouldComponentUpdate=r}return n.__N||n.__}(VS,t)}function CS(){for(var t;t=yS.shift();)if(t.__P&&t.__H)try{t.__H.__h.forEach(AS),t.__H.__h.forEach(zS),t.__H.__h=[]}catch(e){t.__H.__h=[],xS.__e(e,t.__v)}}xS.__b=function(t){bS=null,kS&&kS(t)},xS.__=function(t,e){t&&e.__k&&e.__k.__m&&(t.__m=e.__k.__m),RS&&RS(t,e)},xS.__r=function(t){PS&&PS(t),QS=0;var e=(bS=t.__c).__H;e&&(SS===bS?(e.__h=[],bS.__h=[],e.__.forEach((function(t){t.__N&&(t.__=t.__N),t.i=t.__N=void 0}))):(e.__h.forEach(AS),e.__h.forEach(zS),e.__h=[],QS=0)),SS=bS},xS.diffed=function(t){$S&&$S(t);var e=t.__c;e&&e.__H&&(e.__H.__h.length&&(1!==yS.push(e)&&vS===xS.requestAnimationFrame||((vS=xS.requestAnimationFrame)||WS)(CS)),e.__H.__.forEach((function(t){t.i&&(t.__H=t.i),t.i=void 0}))),SS=bS=null},xS.__c=function(t,e){e.some((function(t){try{t.__h.forEach(AS),t.__h=t.__h.filter((function(t){return!t.__||zS(t)}))}catch(i){e.some((function(t){t.__h&&(t.__h=[])})),e=[],xS.__e(i,t.__v)}})),TS&&TS(t,e)},xS.unmount=function(t){_S&&_S(t);var e,i=t.__c;i&&i.__H&&(i.__H.__.forEach((function(t){try{AS(t)}catch(t){e=t}})),i.__H=void 0,e&&xS.__e(e,i.__v))};var qS="function"==typeof requestAnimationFrame;function WS(t){var e,i=function(){clearTimeout(n),qS&&cancelAnimationFrame(e),setTimeout(t)},n=setTimeout(i,100);qS&&(e=requestAnimationFrame(i))}function AS(t){var e=bS,i=t.__c;"function"==typeof i&&(t.__c=void 0,i()),bS=e}function zS(t){var e=bS;t.__c=t.__(),bS=e}function VS(t,e){return"function"==typeof e?e(t):e}const MS="ftd_is_frozen_now";function ES(t,e,i){if(void 0!==i.ftd_globals)throw new Error(`ftd is already initialized on ${node.id}`);i.ftd_globals={FROZEN:!1},function(t,e,i){var n,r,s,o;Ab.__&&Ab.__(t,e),r=(n="function"==typeof i)?null:e.__k,s=[],o=[],dS(e,t=(!n&&i||e).__k=Hb(Kb,null,[t]),r||Gb,Gb,e.namespaceURI,!n&&i?[i]:r?null:e.firstChild?Wb.call(e.childNodes):null,s,!n&&i?i:r?r.__e:e.firstChild,n,o),uS(s,t,o)}(Hb(t,{...e,ftd_root:i}),i),i.ftd_globals[MS]=!0}const YS=(t,e,i)=>{let n=document.getElementById(t);if(void 0===n.ftd_globals)throw new Error(`ftd is already initialized on ${t}`);n.ftd_globals[e].set(i)};class US{#t;#e;constructor(t,e,i){if([this.#t,this.#e]=XS(t),void 0===i)return;if(!e||void 0===e.ftd_globals)throw console.log(e),new Error("ftd is not initialized on this node");let n=e.ftd_globals;if(n[MS]){if(void 0===n[i])throw new Error(`global_key ${i} not found`)}else if(void 0!==n[i])throw new Error(`global_key ${i} already exists`);n[i]=this}get(){return this.#t}set(t){this.set_key([],t)}notify_preact(){structuredClone?this.#e(structuredClone(this.#t)):this.#e(JSON.parse(JSON.stringify(this.#t)))}set_key(t,e){if(0===t.length)return this.#t=e,this.notify_preact();let i=this.#t,n=0;for(;n{let i=document.getElementById(t);if(void 0===i.ftd_globals)throw new Error(`ftd is already initialized on ${t}`);return i.ftd_globals[e].get()})(DS,GS);if(null!=t)for(;;){let[i,n]=KS(t);if(console.log(i,n),null===i)break;let r=tv(e.folders,i);if(console.log(r),null===r)throw new Error(`folder ${i} not found`);r.open=!0,t=n,e=r}else console.log("current_file is null")}function KS(t){let e=t.indexOf("/");return-1===e?[null,t]:[t.slice(0,e),t.slice(e+1)]}function tv(t,e){for(let i=0;i18*(t-1)+8+"px",nv=(t,e)=>{if(e)return"blue";switch(t.status){case"Normal":return"black";case"Deleted":return"red";case"New":return"green";case"Modified":return"blue";default:return console.error("unreachable state. File status must be in [Normal, Deleted, New, Modified]"),"black"}};function rv(t,e,i){return t.get()?function(t,{right:e,onClick:i}){let n=new US(!1);return sv(t,{right:e,onClick:i,variant:n.get()?"regular":"thin",onmouseenter:()=>n.set(!0),onmouseleave:()=>n.set(!1)})}("dots-three-circle-vertical",{right:"5px",onClick:t=>{let n=t.target.getBoundingClientRect();return ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-visible",e?"file":"folder"),ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-left",n.left+16),ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-top",n.top+16),console.log("ui.fifthtry.com/components/editor/vars#context-menu-path",i),ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-path",i),HS(i),t.preventDefault(),t.stopPropagation(),!1}}):null}function sv(t,{variant:e,right:i,onClick:n,...r}){e=e||"light";let s={width:"16px",height:"16px",right:i||"auto"};i&&(s.right=i,s.position="absolute");let o={src:"regular"===e?`//raw.githubusercontent.com/phosphor-icons/core/main/raw/regular/${t}.svg`:`//raw.githubusercontent.com/phosphor-icons/core/main/raw/${e}/${t}-${e}.svg`,style:{...s,...r.style},onClick:n,...r};return n&&(o.onClick=n,o.style.cursor="pointer"),Hb("img",o)}const ov=({file:t,level:e,current_file:i,context_menu_path:n,modified_files:r,only_modified_files:s})=>{let o=r.indexOf(t.full_name)>=0,a=o||["Deleted","New"].includes(t.status);if(s&&!a)return null;let l=new US(!1),h="white";return t.full_name===n?h="#f5f5f5":t.full_name===i&&""===n&&(h="#f0f0f0"),Hb("a",{style:{"padding-top":"2px","padding-bottom":"2px","padding-left":iv(e),color:nv(t,o),display:"flex",flexDirection:"row",width:"100%",gap:"3px",background:h,position:"relative"},onmouseenter:()=>l.set(!0),onmouseleave:()=>l.set(!1),href:t.url},sv("file-text",{}),t.name,rv(l,!0,t.full_name))},av=({folder:t,parent_full_name:e,level:i,hide_name:n,current_file:r,context_menu_path:s,modified_files:o,only_modified_files:a})=>{i||(i=0);let l=""===e?t.get().name:`${e}${t.get().name}`;l="root"===l?"":`${l}/`;let h=t.index("open");if(a){let e=!1;for(let t=0;th.set(!h.get()),onmouseenter:()=>c.set(!0),onmouseleave:()=>c.set(!1),style:{display:"flex","flex-direction":"row",gap:"5px",width:"100%",cursor:"pointer","padding-left":iv(i),color:t.get().modified?"blue":"black",position:"relative"}},sv(h.get()?"folder-open":"folder",{}),t.get().name,rv(c,!1,t.get().full_name)),h.get()?t.index("folders").map((t=>Hb(av,{folder:t,level:i+1,current_file:r,context_menu_path:s,modified_files:o,only_modified_files:a,parent_full_name:l}))).concat(t.index("files").map((t=>Hb(ov,{file:t.get(),level:i+1,current_file:r,context_menu_path:s,modified_files:o,only_modified_files:a})))):[]))};function lv(t){const e=t.selection.main.head;return t.doc.lineAt(e)}function hv(t,e){let i=0;t:for(let n=0;nkt(t,{highlightActiveBlock:!0,hideFirstIndent:!1,markerType:"fullScope",thickness:1})});class Ov{constructor(t,e,i,n){this.lines=t,this.state=e,this.map=new Map,this.unitWidth=i,this.markerType=n;for(const t of this.lines)this.add(t);this.state.facet(cv).highlightActiveBlock&&this.findAndSetActiveLines()}has(t){return this.map.has("number"==typeof t?t:t.number)}get(t){const e=this.map.get("number"==typeof t?t:t.number);if(!e)throw new Error("Line not found in indentation map");return e}set(t,e,i){const n=!t.text.trim().length,r={line:t,col:e,level:i,empty:n};return this.map.set(r.line.number,r),r}add(t){if(this.has(t))return this.get(t);if(!t.length||!t.text.trim().length){if(1===t.number)return this.set(t,0,0);if(t.number===this.state.doc.lines){const e=this.closestNonEmpty(t,-1);return this.set(t,0,e.level)}const e=this.closestNonEmpty(t,-1),i=this.closestNonEmpty(t,1);return e.level>=i.level&&"codeOnly"!==this.markerType?this.set(t,0,e.level):e.empty&&0===e.level&&0!==i.level?this.set(t,0,0):i.level>e.level?this.set(t,0,e.level+1):this.set(t,0,i.level)}const e=hv(t.text,this.state.tabSize),i=Math.floor(e/this.unitWidth);return this.set(t,e,i)}closestNonEmpty(t,e){let i=t.number+e;for(;-1===e?i>=1:i<=this.state.doc.lines;){if(this.has(i)){const t=this.get(i);if(!t.empty)return t}const t=this.state.doc.line(i);if(t.text.trim().length){const e=hv(t.text,this.state.tabSize),i=Math.floor(e/this.unitWidth);return this.set(t,e,i)}i+=e}const n=this.state.doc.line(-1===e?1:this.state.doc.lines);return this.set(n,0,0)}findAndSetActiveLines(){const t=lv(this.state);if(!this.has(t))return;let e,i,n=this.get(t);if(this.has(n.line.number+1)){const t=this.get(n.line.number+1);t.level>n.level&&(n=t)}if(this.has(n.line.number-1)){const t=this.get(n.line.number-1);t.level>n.level&&(n=t)}if(0!==n.level){for(n.active=n.level,e=n.line.number;e>1;e--){if(!this.has(e-1))continue;const t=this.get(e-1);if(t.level0&&l.push(uv("--indent-marker-bg-color",n,e,a,t)),l.push(uv("--indent-marker-active-bg-color",r,e,o-1,1)),o!==s&&l.push(uv("--indent-marker-bg-color",n,e,o,s-o))}else l.push(uv("--indent-marker-bg-color",n,e,a,s-a));return l.join(",")}class pv{constructor(t){this.view=t,this.unitWidth=xl(t.state),this.currentLineNumber=lv(t.state).number,this.generate(t.state)}update(t){const e=xl(t.state),i=e!==this.unitWidth;i&&(this.unitWidth=e);const n=lv(t.state).number,r=n!==this.currentLineNumber;this.currentLineNumber=n;const s=t.state.facet(cv).highlightActiveBlock&&r;(t.docChanged||t.viewportChanged||i||s)&&this.generate(t.state)}generate(t){const e=new Zt,i=function(t,e=t.state){const i=new Set;for(const{from:n,to:r}of t.visibleRanges){let t=n;for(;t<=r;){const n=e.doc.lineAt(t);i.has(n)||i.add(n),t=n.to+1}}return i}(this.view,t),{hideFirstIndent:n,markerType:r,thickness:s,activeThickness:o}=t.facet(cv),a=new Ov(i,t,this.unitWidth,r);for(const t of i){const i=a.get(t.number);if(!(null==i?void 0:i.level))continue;const r=fv(i,this.unitWidth,n,s,o);e.add(t.from,t.from,si.line({class:"cm-indent-markers",attributes:{style:`--indent-markers: ${r}`}}))}this.decorations=e.finish()}}function mv(t={}){return[cv.of(t),dv(t.colors),Fi.fromClass(pv,{decorations:t=>t.decorations})]}const gv=zf.deserialize({version:14,states:"$[OVQPOOOhQPO'#C_OOQO'#Ca'#CaOhQPO'#CbOhQPO'#CcOOQO'#Cd'#CdQOQPOOOOQO'#Ce'#CeOmQQO,58yOmQQO,58|OmQQO,58}OOQO-E6c-E6cOuQPO'#CfO}QQO'#C`OOQO1G.e1G.eOOQO1G.h1G.hOOQO1G.i1G.iOOQO,59Q,59QO!SQQO,58zO!XQPO,58zOOQO-E6d-E6dOOQO1G.f1G.fO!aQQO1G.fP!fQPO'#CfOOQO7+$Q7+$Q",stateData:"!k~OPOS~O]PObQOcROdSOeTO~O^VO~O^VO_[O~O`aOabO~O_cO~O_eO~O`aOafO~O_hO~O`aO~O",goto:"!OZPPP[_[[[[hvRUOQ^WQ_XR`YQWPQXRQYSVZWXYU]WXYRd]",nodeNames:"⚠ LineComment command AddFile FileName ClearOPFS PushFile DeleteFile UpdatePreview",maxTerm:21,skippedNodes:[0,1],repeatNodeCount:2,tokenData:"?r~Rapq!W}!O!]!O!P!q!P!Q!v!Q![!]!]!^!{!c!}!]#R#S!]#T#U#j#U#V!]#V#W'x#W#X-Z#X#d!]#d#e3Z#e#i!]#i#j8T#j#o!]~!]O^~Q!bT_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]~!vOa~~!{O`~~#OP!]!^#R~#WSP~OY#RZ;'S#R;'S;=`#d<%lO#R~#gP;=`<%l#RR#oV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#W!]#W#X$U#X#o!]R$ZV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#W!]#W#X$p#X#o!]R$uT_Q}!O%U!Q![!]!c!}!]#R#S!]#T#o!]R%ZV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#Y!]#Y#Z%p#Z#o!]R%uV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#]!]#]#^&[#^#o!]R&aV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a&v#a#o!]R&{V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y'b#Y#o!]R'iT]P_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]R'}V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a(d#a#o!]R(iV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y)O#Y#o!]R)TU_Q}!O!]!Q![!]!c!}!]#R#S!]#T#U)g#U#o!]R)lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#f!]#f#g*R#g#o!]R*WT_Q}!O*g!Q![!]!c!}!]#R#S!]#T#o!]R*lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#c!]#c#d+R#d#o!]R+WV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#d!]#d#e+m#e#o!]R+rV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#Y!]#Y#Z,X#Z#o!]R,^V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#g!]#g#h,s#h#o!]R,zTbP_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]R-`V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y-u#Y#o!]R-zV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a.a#a#o!]R.fV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y.{#Y#o!]R/QV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#h!]#h#i/g#i#o!]R/lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y0R#Y#o!]R0WT_Q}!O0g!Q![!]!c!}!]#R#S!]#T#o!]R0lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#Y!]#Y#Z1R#Z#o!]R1WV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#]!]#]#^1m#^#o!]R1rV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a2X#a#o!]R2^V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y2s#Y#o!]R2zTdP_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]R3`V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#i!]#i#j3u#j#o!]R3zV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#g!]#g#h4a#h#o!]R4fV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#[!]#[#]4{#]#o!]R5QT_Q}!O5a!Q![!]!c!}!]#R#S!]#T#o!]R5fV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#Y!]#Y#Z5{#Z#o!]R6QV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#]!]#]#^6g#^#o!]R6lV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#`!]#`#a7R#a#o!]R7WV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y7m#Y#o!]R7tTcP_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]R8YV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#d!]#d#e8o#e#o!]R8tV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#W!]#W#X9Z#X#o!]R9`U_Q}!O!]!Q![!]!c!}!]#R#S!]#T#U9r#U#o!]R9wV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#h!]#h#i:^#i#o!]R:cV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y:x#Y#o!]R:}T_Q}!O;^!Q![!]!c!}!]#R#S!]#T#o!]R;cV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#d!]#d#e;x#e#o!]R;}V_Q}!O!]!Q![!]!c!}!]#R#S!]#T#f!]#f#gU#^#o!]R>ZV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#X!]#X#Y>p#Y#o!]R>uV_Q}!O!]!Q![!]!c!}!]#R#S!]#T#k!]#k#l?[#l#o!]R?cTeP_Q}!O!]!Q![!]!c!}!]#R#S!]#T#o!]",tokenizers:[0,1],topRules:{command:[0,2]},tokenPrec:0}),Qv=hl.define({name:"fifthtry_ide_repl",parser:gv.configure({props:[Wa({FileName:il.literal,AddFile:il.keyword,DeleteFile:il.keyword,PushFile:il.keyword,LineComment:il.lineComment})]}),languageData:{autocomplete:t=>window.ide_autocomplete_command_prompt&&window.ide_autocomplete_command_prompt(t),commentTokens:{line:";;"}}});const bv=gv;class Sv extends HTMLElement{constructor(){super(),this.style.width="100%",this.style.height="100%"}connectedCallback(){window.command_editor=new Ir({extensions:[vv(["Alt-Enter","Cmd-Enter","Ctrl-Enter","Shift-Enter"]),is.of([{key:"Enter",run:yv},...Yu]),df,Eu(),new Sl(Qv,[Eu({icons:!1,addToOptions:[{render:(t,e,i)=>window.ide_autocomplete_command_prompt_extra&&window.ide_autocomplete_command_prompt_extra(t,e,i),position:90}]})]),Ir.updateListener.of(wv)],parent:this}),window.command_editor.focus()}}function vv(t){return t.map((t=>is.of([{key:t,run:sO}])))}function wv(t){if(!t.docChanged)return;ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-error",null);let e=window.command_editor.state.doc.toString().trim();try{bv.configure({strict:!0}).parse(window.command_editor.state.doc.toString()),ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-valid",!0),ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-error","Press `Enter` to execute command.")}catch(t){ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-valid",!1)}0===e.indexOf("add-file")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","add-file"):0===e.indexOf("push-file")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","push-file"):0===e.indexOf("delete-file")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","delete-file"):0===e.indexOf("clear-opfs")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","clear-opfs"):0===e.indexOf("update-preview")?ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","update-preview"):ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-help","available-commands")}function yv(){let t;try{t=bv.configure({strict:!0}).parse(window.command_editor.state.doc.toString())}catch(t){return ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k-error",t.toString()),!0}return window.ide_parse_command&&window.ide_parse_command(window.command_editor.state.doc,t),!0}window.ide_open_command_k_s=t=>{ide_open_command_k(t+" ")},window.ide_open_command_k=t=>{ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k",!0),window.command_editor.dispatch({changes:{from:0,to:window.command_editor.state.doc.length,insert:t},selection:{anchor:t.length,head:t.length}}),window.command_editor.focus(),ide_clear_context_menu()},window.ide_run_command_parser=yv,document.addEventListener("keydown",(t=>{"Escape"===t.key?(ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k",!1),ide_clear_context_menu()):"Enter"===t.key&&(t.metaKey||t.ctrlKey)?(ide_open_command_k("update-preview"),t.shiftKey&&yv(),t.preventDefault()):"s"===t.key&&(t.metaKey||t.ctrlKey)?(ide_open_command_k("push-file "+ftd.get_value("ui.fifthtry.com/components/editor/vars#current-file")),t.shiftKey&&yv(),t.preventDefault()):"k"===t.key&&(t.metaKey||t.ctrlKey)&&(t.preventDefault(),ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k",!0),window.command_editor.focus())})),window.ide_clear_context_menu=()=>{ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-path",""),ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-visible","hidden"),HS("")};class xv extends HTMLElement{constructor(){super(),this.style.width="100%",this.style.height="100%",this.classList.add("fastn-ignore-global-keyboard"),this.currentDocument="current",this.documents={}}saveCurrentFile(){kv(ftd.get_value("ui.fifthtry.com/components/editor/vars#current-file"),this.documents[this.currentDocument].doc.toString())}connectedCallback(){!function(){let t=document.getElementById(DS);t.addEventListener("scroll",window.ide_clear_context_menu),ES(ev,{folders:[],files:[],ftd_root:t},t)}();let t=window.ftd.component_data(this),e=this,i=fastn_utils.getFlattenStaticValue(t.doc.get().get("content")),n=fastn_utils.getFlattenStaticValue(t.doc.get().get("language"));function r(t){e.documents[e.currentDocument]=t.state,t.docChanged&&e.saveCurrentFile()}function s(t,e){let i=[Of,mv(),xt.tabSize.of(4),is.of([fO]),Ir.updateListener.of(e)];switch(t){case"JavaScript":i.push(gp());break;case"Python":i.push(new Sl(em,[em.data.of({autocomplete:Bp}),em.data.of({autocomplete:Jp})]));break;case"Markdown":i.push(Zb());break;case"Html":i.push(cb())}return i}this.currentDocument=fastn_utils.getFlattenStaticValue(t.doc.get().get("file_name")),this.documents[this.currentDocument]=xt.create({doc:i,extensions:s(n,r)}),window.ide_cm_editor=new Ir({state:this.documents[e.currentDocument],parent:this}),t.doc.on_change((()=>{let e=fastn_utils.getFlattenStaticValue(t.doc.get().get("content")),i=fastn_utils.getFlattenStaticValue(t.doc.get().get("language"));this.currentDocument=fastn_utils.getFlattenStaticValue(t.doc.get().get("file_name")),this.documents[this.currentDocument]=xt.create({doc:e,extensions:s(i,r)}),window.ide_cm_editor.setState(this.documents[this.currentDocument])}))}}const kv=function(t,e){let i=null;return(...n)=>{window.clearTimeout(i),i=window.setTimeout((()=>{t.apply(null,n)}),e)}}(((t,e)=>{window.ide_dispatch_event("save-unsaved-file",{file_path:t,content:e})}),1e3);function Pv(t){return`ui.fifthtry.com/components/editor/vars#${t[0]}`}customElements.define("cm-editor",xv),customElements.define("command-editor",Sv),window.ide_dispatch_event=function(t,e){console.log("ide_dispatch_event",e),window.dispatchEvent(new CustomEvent("ide-event",{detail:{name:t,data:e}}))};const $v=Pv`package-data`,Tv=Pv`current-file`,_v=Pv`context-menu-path`,Rv=Pv`modified-files`,Zv=Pv`only-show-modified-files`;window.ide_update_ftd_var=function(t,e){var i,n;e=JSON.parse(e),t===$v&&(i=e.folders,n=e.files,YS(DS,GS,{folders:i,files:n,name:"root",open:!0})),t===Tv&&JS(e),t===Rv&&function(t){YS(DS,IS,t)}(e),t===_v&&HS(e),ftd.set_value(t,e);const r=ftd.get_value;r(Zv)&&0===r(Rv).length&&0===r(VAR_DELETED_FILES).length&&0===r(VAR_ADDED_FILES).length&&(ftd.set_value(Zv,!1),FS(!1))},window.ide_toggle_only_show_modified_files=()=>{let t="ui.fifthtry.com/components/editor/vars#only-show-modified-files",e=ftd.get_value(t);ftd.set_value(t,!e),FS(!e)},window.ide_get_ftd_var=function(t){const e=ftd.get_value(t);return console.log("ide_get_ftd_var",t,e),JSON.stringify(e)}}(); //# sourceMappingURL=editor-bundle.js.map diff --git a/-/ui.fifthtry.com/components/editor/editor-bundle.js.map b/-/ui.fifthtry.com/components/editor/editor-bundle.js.map index 1b107b8e..3e07f9fb 100644 --- a/-/ui.fifthtry.com/components/editor/editor-bundle.js.map +++ b/-/ui.fifthtry.com/components/editor/editor-bundle.js.map @@ -1 +1 @@ -{"version":3,"file":"editor-bundle.js","sources":["node_modules/@codemirror/state/dist/index.js","node_modules/style-mod/src/style-mod.js","node_modules/w3c-keyname/index.js","node_modules/@codemirror/view/dist/index.js","node_modules/@lezer/common/dist/index.js","node_modules/@lezer/highlight/dist/index.js","node_modules/@codemirror/language/dist/index.js","node_modules/@codemirror/commands/dist/index.js","node_modules/crelt/index.js","node_modules/@codemirror/search/dist/index.js","node_modules/@codemirror/autocomplete/dist/index.js","node_modules/@codemirror/lint/dist/index.js","node_modules/codemirror/dist/index.js","node_modules/@lezer/lr/dist/index.js","node_modules/@lezer/javascript/dist/index.js","node_modules/@codemirror/lang-javascript/dist/index.js","node_modules/@lezer/python/dist/index.js","node_modules/@codemirror/lang-python/dist/index.js","node_modules/@lezer/markdown/dist/index.js","node_modules/@lezer/html/dist/index.js","node_modules/@lezer/css/dist/index.js","node_modules/@codemirror/lang-css/dist/index.js","node_modules/@codemirror/lang-html/dist/index.js","node_modules/@codemirror/lang-markdown/dist/index.js","node_modules/preact/dist/preact.mjs","node_modules/preact/hooks/dist/hooks.mjs","ftd2.mjs","panels/package/package-content.mjs","node_modules/@replit/codemirror-indentation-markers/dist/index.js","command-k/command.grammar","command-k/language.js","command-k/command-editor.mjs","editor.mjs","debounce.js"],"sourcesContent":["/**\nThe data structure for documents. @nonabstract\n*/\nclass Text {\n /**\n Get the line description around the given position.\n */\n lineAt(pos) {\n if (pos < 0 || pos > this.length)\n throw new RangeError(`Invalid position ${pos} in document of length ${this.length}`);\n return this.lineInner(pos, false, 1, 0);\n }\n /**\n Get the description for the given (1-based) line number.\n */\n line(n) {\n if (n < 1 || n > this.lines)\n throw new RangeError(`Invalid line number ${n} in ${this.lines}-line document`);\n return this.lineInner(n, true, 1, 0);\n }\n /**\n Replace a range of the text with the given content.\n */\n replace(from, to, text) {\n [from, to] = clip(this, from, to);\n let parts = [];\n this.decompose(0, from, parts, 2 /* Open.To */);\n if (text.length)\n text.decompose(0, text.length, parts, 1 /* Open.From */ | 2 /* Open.To */);\n this.decompose(to, this.length, parts, 1 /* Open.From */);\n return TextNode.from(parts, this.length - (to - from) + text.length);\n }\n /**\n Append another document to this one.\n */\n append(other) {\n return this.replace(this.length, this.length, other);\n }\n /**\n Retrieve the text between the given points.\n */\n slice(from, to = this.length) {\n [from, to] = clip(this, from, to);\n let parts = [];\n this.decompose(from, to, parts, 0);\n return TextNode.from(parts, to - from);\n }\n /**\n Test whether this text is equal to another instance.\n */\n eq(other) {\n if (other == this)\n return true;\n if (other.length != this.length || other.lines != this.lines)\n return false;\n let start = this.scanIdentical(other, 1), end = this.length - this.scanIdentical(other, -1);\n let a = new RawTextCursor(this), b = new RawTextCursor(other);\n for (let skip = start, pos = start;;) {\n a.next(skip);\n b.next(skip);\n skip = 0;\n if (a.lineBreak != b.lineBreak || a.done != b.done || a.value != b.value)\n return false;\n pos += a.value.length;\n if (a.done || pos >= end)\n return true;\n }\n }\n /**\n Iterate over the text. When `dir` is `-1`, iteration happens\n from end to start. This will return lines and the breaks between\n them as separate strings.\n */\n iter(dir = 1) { return new RawTextCursor(this, dir); }\n /**\n Iterate over a range of the text. When `from` > `to`, the\n iterator will run in reverse.\n */\n iterRange(from, to = this.length) { return new PartialTextCursor(this, from, to); }\n /**\n Return a cursor that iterates over the given range of lines,\n _without_ returning the line breaks between, and yielding empty\n strings for empty lines.\n \n When `from` and `to` are given, they should be 1-based line numbers.\n */\n iterLines(from, to) {\n let inner;\n if (from == null) {\n inner = this.iter();\n }\n else {\n if (to == null)\n to = this.lines + 1;\n let start = this.line(from).from;\n inner = this.iterRange(start, Math.max(start, to == this.lines + 1 ? this.length : to <= 1 ? 0 : this.line(to - 1).to));\n }\n return new LineCursor(inner);\n }\n /**\n Return the document as a string, using newline characters to\n separate lines.\n */\n toString() { return this.sliceString(0); }\n /**\n Convert the document to an array of lines (which can be\n deserialized again via [`Text.of`](https://codemirror.net/6/docs/ref/#state.Text^of)).\n */\n toJSON() {\n let lines = [];\n this.flatten(lines);\n return lines;\n }\n /**\n @internal\n */\n constructor() { }\n /**\n Create a `Text` instance for the given array of lines.\n */\n static of(text) {\n if (text.length == 0)\n throw new RangeError(\"A document must have at least one line\");\n if (text.length == 1 && !text[0])\n return Text.empty;\n return text.length <= 32 /* Tree.Branch */ ? new TextLeaf(text) : TextNode.from(TextLeaf.split(text, []));\n }\n}\n// Leaves store an array of line strings. There are always line breaks\n// between these strings. Leaves are limited in size and have to be\n// contained in TextNode instances for bigger documents.\nclass TextLeaf extends Text {\n constructor(text, length = textLength(text)) {\n super();\n this.text = text;\n this.length = length;\n }\n get lines() { return this.text.length; }\n get children() { return null; }\n lineInner(target, isLine, line, offset) {\n for (let i = 0;; i++) {\n let string = this.text[i], end = offset + string.length;\n if ((isLine ? line : end) >= target)\n return new Line(offset, end, line, string);\n offset = end + 1;\n line++;\n }\n }\n decompose(from, to, target, open) {\n let text = from <= 0 && to >= this.length ? this\n : new TextLeaf(sliceText(this.text, from, to), Math.min(to, this.length) - Math.max(0, from));\n if (open & 1 /* Open.From */) {\n let prev = target.pop();\n let joined = appendText(text.text, prev.text.slice(), 0, text.length);\n if (joined.length <= 32 /* Tree.Branch */) {\n target.push(new TextLeaf(joined, prev.length + text.length));\n }\n else {\n let mid = joined.length >> 1;\n target.push(new TextLeaf(joined.slice(0, mid)), new TextLeaf(joined.slice(mid)));\n }\n }\n else {\n target.push(text);\n }\n }\n replace(from, to, text) {\n if (!(text instanceof TextLeaf))\n return super.replace(from, to, text);\n [from, to] = clip(this, from, to);\n let lines = appendText(this.text, appendText(text.text, sliceText(this.text, 0, from)), to);\n let newLen = this.length + text.length - (to - from);\n if (lines.length <= 32 /* Tree.Branch */)\n return new TextLeaf(lines, newLen);\n return TextNode.from(TextLeaf.split(lines, []), newLen);\n }\n sliceString(from, to = this.length, lineSep = \"\\n\") {\n [from, to] = clip(this, from, to);\n let result = \"\";\n for (let pos = 0, i = 0; pos <= to && i < this.text.length; i++) {\n let line = this.text[i], end = pos + line.length;\n if (pos > from && i)\n result += lineSep;\n if (from < end && to > pos)\n result += line.slice(Math.max(0, from - pos), to - pos);\n pos = end + 1;\n }\n return result;\n }\n flatten(target) {\n for (let line of this.text)\n target.push(line);\n }\n scanIdentical() { return 0; }\n static split(text, target) {\n let part = [], len = -1;\n for (let line of text) {\n part.push(line);\n len += line.length + 1;\n if (part.length == 32 /* Tree.Branch */) {\n target.push(new TextLeaf(part, len));\n part = [];\n len = -1;\n }\n }\n if (len > -1)\n target.push(new TextLeaf(part, len));\n return target;\n }\n}\n// Nodes provide the tree structure of the `Text` type. They store a\n// number of other nodes or leaves, taking care to balance themselves\n// on changes. There are implied line breaks _between_ the children of\n// a node (but not before the first or after the last child).\nclass TextNode extends Text {\n constructor(children, length) {\n super();\n this.children = children;\n this.length = length;\n this.lines = 0;\n for (let child of children)\n this.lines += child.lines;\n }\n lineInner(target, isLine, line, offset) {\n for (let i = 0;; i++) {\n let child = this.children[i], end = offset + child.length, endLine = line + child.lines - 1;\n if ((isLine ? endLine : end) >= target)\n return child.lineInner(target, isLine, line, offset);\n offset = end + 1;\n line = endLine + 1;\n }\n }\n decompose(from, to, target, open) {\n for (let i = 0, pos = 0; pos <= to && i < this.children.length; i++) {\n let child = this.children[i], end = pos + child.length;\n if (from <= end && to >= pos) {\n let childOpen = open & ((pos <= from ? 1 /* Open.From */ : 0) | (end >= to ? 2 /* Open.To */ : 0));\n if (pos >= from && end <= to && !childOpen)\n target.push(child);\n else\n child.decompose(from - pos, to - pos, target, childOpen);\n }\n pos = end + 1;\n }\n }\n replace(from, to, text) {\n [from, to] = clip(this, from, to);\n if (text.lines < this.lines)\n for (let i = 0, pos = 0; i < this.children.length; i++) {\n let child = this.children[i], end = pos + child.length;\n // Fast path: if the change only affects one child and the\n // child's size remains in the acceptable range, only update\n // that child\n if (from >= pos && to <= end) {\n let updated = child.replace(from - pos, to - pos, text);\n let totalLines = this.lines - child.lines + updated.lines;\n if (updated.lines < (totalLines >> (5 /* Tree.BranchShift */ - 1)) &&\n updated.lines > (totalLines >> (5 /* Tree.BranchShift */ + 1))) {\n let copy = this.children.slice();\n copy[i] = updated;\n return new TextNode(copy, this.length - (to - from) + text.length);\n }\n return super.replace(pos, end, updated);\n }\n pos = end + 1;\n }\n return super.replace(from, to, text);\n }\n sliceString(from, to = this.length, lineSep = \"\\n\") {\n [from, to] = clip(this, from, to);\n let result = \"\";\n for (let i = 0, pos = 0; i < this.children.length && pos <= to; i++) {\n let child = this.children[i], end = pos + child.length;\n if (pos > from && i)\n result += lineSep;\n if (from < end && to > pos)\n result += child.sliceString(from - pos, to - pos, lineSep);\n pos = end + 1;\n }\n return result;\n }\n flatten(target) {\n for (let child of this.children)\n child.flatten(target);\n }\n scanIdentical(other, dir) {\n if (!(other instanceof TextNode))\n return 0;\n let length = 0;\n let [iA, iB, eA, eB] = dir > 0 ? [0, 0, this.children.length, other.children.length]\n : [this.children.length - 1, other.children.length - 1, -1, -1];\n for (;; iA += dir, iB += dir) {\n if (iA == eA || iB == eB)\n return length;\n let chA = this.children[iA], chB = other.children[iB];\n if (chA != chB)\n return length + chA.scanIdentical(chB, dir);\n length += chA.length + 1;\n }\n }\n static from(children, length = children.reduce((l, ch) => l + ch.length + 1, -1)) {\n let lines = 0;\n for (let ch of children)\n lines += ch.lines;\n if (lines < 32 /* Tree.Branch */) {\n let flat = [];\n for (let ch of children)\n ch.flatten(flat);\n return new TextLeaf(flat, length);\n }\n let chunk = Math.max(32 /* Tree.Branch */, lines >> 5 /* Tree.BranchShift */), maxChunk = chunk << 1, minChunk = chunk >> 1;\n let chunked = [], currentLines = 0, currentLen = -1, currentChunk = [];\n function add(child) {\n let last;\n if (child.lines > maxChunk && child instanceof TextNode) {\n for (let node of child.children)\n add(node);\n }\n else if (child.lines > minChunk && (currentLines > minChunk || !currentLines)) {\n flush();\n chunked.push(child);\n }\n else if (child instanceof TextLeaf && currentLines &&\n (last = currentChunk[currentChunk.length - 1]) instanceof TextLeaf &&\n child.lines + last.lines <= 32 /* Tree.Branch */) {\n currentLines += child.lines;\n currentLen += child.length + 1;\n currentChunk[currentChunk.length - 1] = new TextLeaf(last.text.concat(child.text), last.length + 1 + child.length);\n }\n else {\n if (currentLines + child.lines > chunk)\n flush();\n currentLines += child.lines;\n currentLen += child.length + 1;\n currentChunk.push(child);\n }\n }\n function flush() {\n if (currentLines == 0)\n return;\n chunked.push(currentChunk.length == 1 ? currentChunk[0] : TextNode.from(currentChunk, currentLen));\n currentLen = -1;\n currentLines = currentChunk.length = 0;\n }\n for (let child of children)\n add(child);\n flush();\n return chunked.length == 1 ? chunked[0] : new TextNode(chunked, length);\n }\n}\nText.empty = /*@__PURE__*/new TextLeaf([\"\"], 0);\nfunction textLength(text) {\n let length = -1;\n for (let line of text)\n length += line.length + 1;\n return length;\n}\nfunction appendText(text, target, from = 0, to = 1e9) {\n for (let pos = 0, i = 0, first = true; i < text.length && pos <= to; i++) {\n let line = text[i], end = pos + line.length;\n if (end >= from) {\n if (end > to)\n line = line.slice(0, to - pos);\n if (pos < from)\n line = line.slice(from - pos);\n if (first) {\n target[target.length - 1] += line;\n first = false;\n }\n else\n target.push(line);\n }\n pos = end + 1;\n }\n return target;\n}\nfunction sliceText(text, from, to) {\n return appendText(text, [\"\"], from, to);\n}\nclass RawTextCursor {\n constructor(text, dir = 1) {\n this.dir = dir;\n this.done = false;\n this.lineBreak = false;\n this.value = \"\";\n this.nodes = [text];\n this.offsets = [dir > 0 ? 1 : (text instanceof TextLeaf ? text.text.length : text.children.length) << 1];\n }\n nextInner(skip, dir) {\n this.done = this.lineBreak = false;\n for (;;) {\n let last = this.nodes.length - 1;\n let top = this.nodes[last], offsetValue = this.offsets[last], offset = offsetValue >> 1;\n let size = top instanceof TextLeaf ? top.text.length : top.children.length;\n if (offset == (dir > 0 ? size : 0)) {\n if (last == 0) {\n this.done = true;\n this.value = \"\";\n return this;\n }\n if (dir > 0)\n this.offsets[last - 1]++;\n this.nodes.pop();\n this.offsets.pop();\n }\n else if ((offsetValue & 1) == (dir > 0 ? 0 : 1)) {\n this.offsets[last] += dir;\n if (skip == 0) {\n this.lineBreak = true;\n this.value = \"\\n\";\n return this;\n }\n skip--;\n }\n else if (top instanceof TextLeaf) {\n // Move to the next string\n let next = top.text[offset + (dir < 0 ? -1 : 0)];\n this.offsets[last] += dir;\n if (next.length > Math.max(0, skip)) {\n this.value = skip == 0 ? next : dir > 0 ? next.slice(skip) : next.slice(0, next.length - skip);\n return this;\n }\n skip -= next.length;\n }\n else {\n let next = top.children[offset + (dir < 0 ? -1 : 0)];\n if (skip > next.length) {\n skip -= next.length;\n this.offsets[last] += dir;\n }\n else {\n if (dir < 0)\n this.offsets[last]--;\n this.nodes.push(next);\n this.offsets.push(dir > 0 ? 1 : (next instanceof TextLeaf ? next.text.length : next.children.length) << 1);\n }\n }\n }\n }\n next(skip = 0) {\n if (skip < 0) {\n this.nextInner(-skip, (-this.dir));\n skip = this.value.length;\n }\n return this.nextInner(skip, this.dir);\n }\n}\nclass PartialTextCursor {\n constructor(text, start, end) {\n this.value = \"\";\n this.done = false;\n this.cursor = new RawTextCursor(text, start > end ? -1 : 1);\n this.pos = start > end ? text.length : 0;\n this.from = Math.min(start, end);\n this.to = Math.max(start, end);\n }\n nextInner(skip, dir) {\n if (dir < 0 ? this.pos <= this.from : this.pos >= this.to) {\n this.value = \"\";\n this.done = true;\n return this;\n }\n skip += Math.max(0, dir < 0 ? this.pos - this.to : this.from - this.pos);\n let limit = dir < 0 ? this.pos - this.from : this.to - this.pos;\n if (skip > limit)\n skip = limit;\n limit -= skip;\n let { value } = this.cursor.next(skip);\n this.pos += (value.length + skip) * dir;\n this.value = value.length <= limit ? value : dir < 0 ? value.slice(value.length - limit) : value.slice(0, limit);\n this.done = !this.value;\n return this;\n }\n next(skip = 0) {\n if (skip < 0)\n skip = Math.max(skip, this.from - this.pos);\n else if (skip > 0)\n skip = Math.min(skip, this.to - this.pos);\n return this.nextInner(skip, this.cursor.dir);\n }\n get lineBreak() { return this.cursor.lineBreak && this.value != \"\"; }\n}\nclass LineCursor {\n constructor(inner) {\n this.inner = inner;\n this.afterBreak = true;\n this.value = \"\";\n this.done = false;\n }\n next(skip = 0) {\n let { done, lineBreak, value } = this.inner.next(skip);\n if (done && this.afterBreak) {\n this.value = \"\";\n this.afterBreak = false;\n }\n else if (done) {\n this.done = true;\n this.value = \"\";\n }\n else if (lineBreak) {\n if (this.afterBreak) {\n this.value = \"\";\n }\n else {\n this.afterBreak = true;\n this.next();\n }\n }\n else {\n this.value = value;\n this.afterBreak = false;\n }\n return this;\n }\n get lineBreak() { return false; }\n}\nif (typeof Symbol != \"undefined\") {\n Text.prototype[Symbol.iterator] = function () { return this.iter(); };\n RawTextCursor.prototype[Symbol.iterator] = PartialTextCursor.prototype[Symbol.iterator] =\n LineCursor.prototype[Symbol.iterator] = function () { return this; };\n}\n/**\nThis type describes a line in the document. It is created\non-demand when lines are [queried](https://codemirror.net/6/docs/ref/#state.Text.lineAt).\n*/\nclass Line {\n /**\n @internal\n */\n constructor(\n /**\n The position of the start of the line.\n */\n from, \n /**\n The position at the end of the line (_before_ the line break,\n or at the end of document for the last line).\n */\n to, \n /**\n This line's line number (1-based).\n */\n number, \n /**\n The line's content.\n */\n text) {\n this.from = from;\n this.to = to;\n this.number = number;\n this.text = text;\n }\n /**\n The length of the line (not including any line break after it).\n */\n get length() { return this.to - this.from; }\n}\nfunction clip(text, from, to) {\n from = Math.max(0, Math.min(text.length, from));\n return [from, Math.max(from, Math.min(text.length, to))];\n}\n\n// Compressed representation of the Grapheme_Cluster_Break=Extend\n// information from\n// http://www.unicode.org/Public/13.0.0/ucd/auxiliary/GraphemeBreakProperty.txt.\n// Each pair of elements represents a range, as an offet from the\n// previous range and a length. Numbers are in base-36, with the empty\n// string being a shorthand for 1.\nlet extend = /*@__PURE__*/\"lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o\".split(\",\").map(s => s ? parseInt(s, 36) : 1);\n// Convert offsets into absolute values\nfor (let i = 1; i < extend.length; i++)\n extend[i] += extend[i - 1];\nfunction isExtendingChar(code) {\n for (let i = 1; i < extend.length; i += 2)\n if (extend[i] > code)\n return extend[i - 1] <= code;\n return false;\n}\nfunction isRegionalIndicator(code) {\n return code >= 0x1F1E6 && code <= 0x1F1FF;\n}\nconst ZWJ = 0x200d;\n/**\nReturns a next grapheme cluster break _after_ (not equal to)\n`pos`, if `forward` is true, or before otherwise. Returns `pos`\nitself if no further cluster break is available in the string.\nMoves across surrogate pairs, extending characters (when\n`includeExtending` is true), characters joined with zero-width\njoiners, and flag emoji.\n*/\nfunction findClusterBreak(str, pos, forward = true, includeExtending = true) {\n return (forward ? nextClusterBreak : prevClusterBreak)(str, pos, includeExtending);\n}\nfunction nextClusterBreak(str, pos, includeExtending) {\n if (pos == str.length)\n return pos;\n // If pos is in the middle of a surrogate pair, move to its start\n if (pos && surrogateLow(str.charCodeAt(pos)) && surrogateHigh(str.charCodeAt(pos - 1)))\n pos--;\n let prev = codePointAt(str, pos);\n pos += codePointSize(prev);\n while (pos < str.length) {\n let next = codePointAt(str, pos);\n if (prev == ZWJ || next == ZWJ || includeExtending && isExtendingChar(next)) {\n pos += codePointSize(next);\n prev = next;\n }\n else if (isRegionalIndicator(next)) {\n let countBefore = 0, i = pos - 2;\n while (i >= 0 && isRegionalIndicator(codePointAt(str, i))) {\n countBefore++;\n i -= 2;\n }\n if (countBefore % 2 == 0)\n break;\n else\n pos += 2;\n }\n else {\n break;\n }\n }\n return pos;\n}\nfunction prevClusterBreak(str, pos, includeExtending) {\n while (pos > 0) {\n let found = nextClusterBreak(str, pos - 2, includeExtending);\n if (found < pos)\n return found;\n pos--;\n }\n return 0;\n}\nfunction surrogateLow(ch) { return ch >= 0xDC00 && ch < 0xE000; }\nfunction surrogateHigh(ch) { return ch >= 0xD800 && ch < 0xDC00; }\n/**\nFind the code point at the given position in a string (like the\n[`codePointAt`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/codePointAt)\nstring method).\n*/\nfunction codePointAt(str, pos) {\n let code0 = str.charCodeAt(pos);\n if (!surrogateHigh(code0) || pos + 1 == str.length)\n return code0;\n let code1 = str.charCodeAt(pos + 1);\n if (!surrogateLow(code1))\n return code0;\n return ((code0 - 0xd800) << 10) + (code1 - 0xdc00) + 0x10000;\n}\n/**\nGiven a Unicode codepoint, return the JavaScript string that\nrespresents it (like\n[`String.fromCodePoint`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCodePoint)).\n*/\nfunction fromCodePoint(code) {\n if (code <= 0xffff)\n return String.fromCharCode(code);\n code -= 0x10000;\n return String.fromCharCode((code >> 10) + 0xd800, (code & 1023) + 0xdc00);\n}\n/**\nThe amount of positions a character takes up a JavaScript string.\n*/\nfunction codePointSize(code) { return code < 0x10000 ? 1 : 2; }\n\nconst DefaultSplit = /\\r\\n?|\\n/;\n/**\nDistinguishes different ways in which positions can be mapped.\n*/\nvar MapMode = /*@__PURE__*/(function (MapMode) {\n /**\n Map a position to a valid new position, even when its context\n was deleted.\n */\n MapMode[MapMode[\"Simple\"] = 0] = \"Simple\";\n /**\n Return null if deletion happens across the position.\n */\n MapMode[MapMode[\"TrackDel\"] = 1] = \"TrackDel\";\n /**\n Return null if the character _before_ the position is deleted.\n */\n MapMode[MapMode[\"TrackBefore\"] = 2] = \"TrackBefore\";\n /**\n Return null if the character _after_ the position is deleted.\n */\n MapMode[MapMode[\"TrackAfter\"] = 3] = \"TrackAfter\";\nreturn MapMode})(MapMode || (MapMode = {}));\n/**\nA change description is a variant of [change set](https://codemirror.net/6/docs/ref/#state.ChangeSet)\nthat doesn't store the inserted text. As such, it can't be\napplied, but is cheaper to store and manipulate.\n*/\nclass ChangeDesc {\n // Sections are encoded as pairs of integers. The first is the\n // length in the current document, and the second is -1 for\n // unaffected sections, and the length of the replacement content\n // otherwise. So an insertion would be (0, n>0), a deletion (n>0,\n // 0), and a replacement two positive numbers.\n /**\n @internal\n */\n constructor(\n /**\n @internal\n */\n sections) {\n this.sections = sections;\n }\n /**\n The length of the document before the change.\n */\n get length() {\n let result = 0;\n for (let i = 0; i < this.sections.length; i += 2)\n result += this.sections[i];\n return result;\n }\n /**\n The length of the document after the change.\n */\n get newLength() {\n let result = 0;\n for (let i = 0; i < this.sections.length; i += 2) {\n let ins = this.sections[i + 1];\n result += ins < 0 ? this.sections[i] : ins;\n }\n return result;\n }\n /**\n False when there are actual changes in this set.\n */\n get empty() { return this.sections.length == 0 || this.sections.length == 2 && this.sections[1] < 0; }\n /**\n Iterate over the unchanged parts left by these changes. `posA`\n provides the position of the range in the old document, `posB`\n the new position in the changed document.\n */\n iterGaps(f) {\n for (let i = 0, posA = 0, posB = 0; i < this.sections.length;) {\n let len = this.sections[i++], ins = this.sections[i++];\n if (ins < 0) {\n f(posA, posB, len);\n posB += len;\n }\n else {\n posB += ins;\n }\n posA += len;\n }\n }\n /**\n Iterate over the ranges changed by these changes. (See\n [`ChangeSet.iterChanges`](https://codemirror.net/6/docs/ref/#state.ChangeSet.iterChanges) for a\n variant that also provides you with the inserted text.)\n `fromA`/`toA` provides the extent of the change in the starting\n document, `fromB`/`toB` the extent of the replacement in the\n changed document.\n \n When `individual` is true, adjacent changes (which are kept\n separate for [position mapping](https://codemirror.net/6/docs/ref/#state.ChangeDesc.mapPos)) are\n reported separately.\n */\n iterChangedRanges(f, individual = false) {\n iterChanges(this, f, individual);\n }\n /**\n Get a description of the inverted form of these changes.\n */\n get invertedDesc() {\n let sections = [];\n for (let i = 0; i < this.sections.length;) {\n let len = this.sections[i++], ins = this.sections[i++];\n if (ins < 0)\n sections.push(len, ins);\n else\n sections.push(ins, len);\n }\n return new ChangeDesc(sections);\n }\n /**\n Compute the combined effect of applying another set of changes\n after this one. The length of the document after this set should\n match the length before `other`.\n */\n composeDesc(other) { return this.empty ? other : other.empty ? this : composeSets(this, other); }\n /**\n Map this description, which should start with the same document\n as `other`, over another set of changes, so that it can be\n applied after it. When `before` is true, map as if the changes\n in `other` happened before the ones in `this`.\n */\n mapDesc(other, before = false) { return other.empty ? this : mapSet(this, other, before); }\n mapPos(pos, assoc = -1, mode = MapMode.Simple) {\n let posA = 0, posB = 0;\n for (let i = 0; i < this.sections.length;) {\n let len = this.sections[i++], ins = this.sections[i++], endA = posA + len;\n if (ins < 0) {\n if (endA > pos)\n return posB + (pos - posA);\n posB += len;\n }\n else {\n if (mode != MapMode.Simple && endA >= pos &&\n (mode == MapMode.TrackDel && posA < pos && endA > pos ||\n mode == MapMode.TrackBefore && posA < pos ||\n mode == MapMode.TrackAfter && endA > pos))\n return null;\n if (endA > pos || endA == pos && assoc < 0 && !len)\n return pos == posA || assoc < 0 ? posB : posB + ins;\n posB += ins;\n }\n posA = endA;\n }\n if (pos > posA)\n throw new RangeError(`Position ${pos} is out of range for changeset of length ${posA}`);\n return posB;\n }\n /**\n Check whether these changes touch a given range. When one of the\n changes entirely covers the range, the string `\"cover\"` is\n returned.\n */\n touchesRange(from, to = from) {\n for (let i = 0, pos = 0; i < this.sections.length && pos <= to;) {\n let len = this.sections[i++], ins = this.sections[i++], end = pos + len;\n if (ins >= 0 && pos <= to && end >= from)\n return pos < from && end > to ? \"cover\" : true;\n pos = end;\n }\n return false;\n }\n /**\n @internal\n */\n toString() {\n let result = \"\";\n for (let i = 0; i < this.sections.length;) {\n let len = this.sections[i++], ins = this.sections[i++];\n result += (result ? \" \" : \"\") + len + (ins >= 0 ? \":\" + ins : \"\");\n }\n return result;\n }\n /**\n Serialize this change desc to a JSON-representable value.\n */\n toJSON() { return this.sections; }\n /**\n Create a change desc from its JSON representation (as produced\n by [`toJSON`](https://codemirror.net/6/docs/ref/#state.ChangeDesc.toJSON).\n */\n static fromJSON(json) {\n if (!Array.isArray(json) || json.length % 2 || json.some(a => typeof a != \"number\"))\n throw new RangeError(\"Invalid JSON representation of ChangeDesc\");\n return new ChangeDesc(json);\n }\n /**\n @internal\n */\n static create(sections) { return new ChangeDesc(sections); }\n}\n/**\nA change set represents a group of modifications to a document. It\nstores the document length, and can only be applied to documents\nwith exactly that length.\n*/\nclass ChangeSet extends ChangeDesc {\n constructor(sections, \n /**\n @internal\n */\n inserted) {\n super(sections);\n this.inserted = inserted;\n }\n /**\n Apply the changes to a document, returning the modified\n document.\n */\n apply(doc) {\n if (this.length != doc.length)\n throw new RangeError(\"Applying change set to a document with the wrong length\");\n iterChanges(this, (fromA, toA, fromB, _toB, text) => doc = doc.replace(fromB, fromB + (toA - fromA), text), false);\n return doc;\n }\n mapDesc(other, before = false) { return mapSet(this, other, before, true); }\n /**\n Given the document as it existed _before_ the changes, return a\n change set that represents the inverse of this set, which could\n be used to go from the document created by the changes back to\n the document as it existed before the changes.\n */\n invert(doc) {\n let sections = this.sections.slice(), inserted = [];\n for (let i = 0, pos = 0; i < sections.length; i += 2) {\n let len = sections[i], ins = sections[i + 1];\n if (ins >= 0) {\n sections[i] = ins;\n sections[i + 1] = len;\n let index = i >> 1;\n while (inserted.length < index)\n inserted.push(Text.empty);\n inserted.push(len ? doc.slice(pos, pos + len) : Text.empty);\n }\n pos += len;\n }\n return new ChangeSet(sections, inserted);\n }\n /**\n Combine two subsequent change sets into a single set. `other`\n must start in the document produced by `this`. If `this` goes\n `docA` → `docB` and `other` represents `docB` → `docC`, the\n returned value will represent the change `docA` → `docC`.\n */\n compose(other) { return this.empty ? other : other.empty ? this : composeSets(this, other, true); }\n /**\n Given another change set starting in the same document, maps this\n change set over the other, producing a new change set that can be\n applied to the document produced by applying `other`. When\n `before` is `true`, order changes as if `this` comes before\n `other`, otherwise (the default) treat `other` as coming first.\n \n Given two changes `A` and `B`, `A.compose(B.map(A))` and\n `B.compose(A.map(B, true))` will produce the same document. This\n provides a basic form of [operational\n transformation](https://en.wikipedia.org/wiki/Operational_transformation),\n and can be used for collaborative editing.\n */\n map(other, before = false) { return other.empty ? this : mapSet(this, other, before, true); }\n /**\n Iterate over the changed ranges in the document, calling `f` for\n each, with the range in the original document (`fromA`-`toA`)\n and the range that replaces it in the new document\n (`fromB`-`toB`).\n \n When `individual` is true, adjacent changes are reported\n separately.\n */\n iterChanges(f, individual = false) {\n iterChanges(this, f, individual);\n }\n /**\n Get a [change description](https://codemirror.net/6/docs/ref/#state.ChangeDesc) for this change\n set.\n */\n get desc() { return ChangeDesc.create(this.sections); }\n /**\n @internal\n */\n filter(ranges) {\n let resultSections = [], resultInserted = [], filteredSections = [];\n let iter = new SectionIter(this);\n done: for (let i = 0, pos = 0;;) {\n let next = i == ranges.length ? 1e9 : ranges[i++];\n while (pos < next || pos == next && iter.len == 0) {\n if (iter.done)\n break done;\n let len = Math.min(iter.len, next - pos);\n addSection(filteredSections, len, -1);\n let ins = iter.ins == -1 ? -1 : iter.off == 0 ? iter.ins : 0;\n addSection(resultSections, len, ins);\n if (ins > 0)\n addInsert(resultInserted, resultSections, iter.text);\n iter.forward(len);\n pos += len;\n }\n let end = ranges[i++];\n while (pos < end) {\n if (iter.done)\n break done;\n let len = Math.min(iter.len, end - pos);\n addSection(resultSections, len, -1);\n addSection(filteredSections, len, iter.ins == -1 ? -1 : iter.off == 0 ? iter.ins : 0);\n iter.forward(len);\n pos += len;\n }\n }\n return { changes: new ChangeSet(resultSections, resultInserted),\n filtered: ChangeDesc.create(filteredSections) };\n }\n /**\n Serialize this change set to a JSON-representable value.\n */\n toJSON() {\n let parts = [];\n for (let i = 0; i < this.sections.length; i += 2) {\n let len = this.sections[i], ins = this.sections[i + 1];\n if (ins < 0)\n parts.push(len);\n else if (ins == 0)\n parts.push([len]);\n else\n parts.push([len].concat(this.inserted[i >> 1].toJSON()));\n }\n return parts;\n }\n /**\n Create a change set for the given changes, for a document of the\n given length, using `lineSep` as line separator.\n */\n static of(changes, length, lineSep) {\n let sections = [], inserted = [], pos = 0;\n let total = null;\n function flush(force = false) {\n if (!force && !sections.length)\n return;\n if (pos < length)\n addSection(sections, length - pos, -1);\n let set = new ChangeSet(sections, inserted);\n total = total ? total.compose(set.map(total)) : set;\n sections = [];\n inserted = [];\n pos = 0;\n }\n function process(spec) {\n if (Array.isArray(spec)) {\n for (let sub of spec)\n process(sub);\n }\n else if (spec instanceof ChangeSet) {\n if (spec.length != length)\n throw new RangeError(`Mismatched change set length (got ${spec.length}, expected ${length})`);\n flush();\n total = total ? total.compose(spec.map(total)) : spec;\n }\n else {\n let { from, to = from, insert } = spec;\n if (from > to || from < 0 || to > length)\n throw new RangeError(`Invalid change range ${from} to ${to} (in doc of length ${length})`);\n let insText = !insert ? Text.empty : typeof insert == \"string\" ? Text.of(insert.split(lineSep || DefaultSplit)) : insert;\n let insLen = insText.length;\n if (from == to && insLen == 0)\n return;\n if (from < pos)\n flush();\n if (from > pos)\n addSection(sections, from - pos, -1);\n addSection(sections, to - from, insLen);\n addInsert(inserted, sections, insText);\n pos = to;\n }\n }\n process(changes);\n flush(!total);\n return total;\n }\n /**\n Create an empty changeset of the given length.\n */\n static empty(length) {\n return new ChangeSet(length ? [length, -1] : [], []);\n }\n /**\n Create a changeset from its JSON representation (as produced by\n [`toJSON`](https://codemirror.net/6/docs/ref/#state.ChangeSet.toJSON).\n */\n static fromJSON(json) {\n if (!Array.isArray(json))\n throw new RangeError(\"Invalid JSON representation of ChangeSet\");\n let sections = [], inserted = [];\n for (let i = 0; i < json.length; i++) {\n let part = json[i];\n if (typeof part == \"number\") {\n sections.push(part, -1);\n }\n else if (!Array.isArray(part) || typeof part[0] != \"number\" || part.some((e, i) => i && typeof e != \"string\")) {\n throw new RangeError(\"Invalid JSON representation of ChangeSet\");\n }\n else if (part.length == 1) {\n sections.push(part[0], 0);\n }\n else {\n while (inserted.length < i)\n inserted.push(Text.empty);\n inserted[i] = Text.of(part.slice(1));\n sections.push(part[0], inserted[i].length);\n }\n }\n return new ChangeSet(sections, inserted);\n }\n /**\n @internal\n */\n static createSet(sections, inserted) {\n return new ChangeSet(sections, inserted);\n }\n}\nfunction addSection(sections, len, ins, forceJoin = false) {\n if (len == 0 && ins <= 0)\n return;\n let last = sections.length - 2;\n if (last >= 0 && ins <= 0 && ins == sections[last + 1])\n sections[last] += len;\n else if (len == 0 && sections[last] == 0)\n sections[last + 1] += ins;\n else if (forceJoin) {\n sections[last] += len;\n sections[last + 1] += ins;\n }\n else\n sections.push(len, ins);\n}\nfunction addInsert(values, sections, value) {\n if (value.length == 0)\n return;\n let index = (sections.length - 2) >> 1;\n if (index < values.length) {\n values[values.length - 1] = values[values.length - 1].append(value);\n }\n else {\n while (values.length < index)\n values.push(Text.empty);\n values.push(value);\n }\n}\nfunction iterChanges(desc, f, individual) {\n let inserted = desc.inserted;\n for (let posA = 0, posB = 0, i = 0; i < desc.sections.length;) {\n let len = desc.sections[i++], ins = desc.sections[i++];\n if (ins < 0) {\n posA += len;\n posB += len;\n }\n else {\n let endA = posA, endB = posB, text = Text.empty;\n for (;;) {\n endA += len;\n endB += ins;\n if (ins && inserted)\n text = text.append(inserted[(i - 2) >> 1]);\n if (individual || i == desc.sections.length || desc.sections[i + 1] < 0)\n break;\n len = desc.sections[i++];\n ins = desc.sections[i++];\n }\n f(posA, endA, posB, endB, text);\n posA = endA;\n posB = endB;\n }\n }\n}\nfunction mapSet(setA, setB, before, mkSet = false) {\n // Produce a copy of setA that applies to the document after setB\n // has been applied (assuming both start at the same document).\n let sections = [], insert = mkSet ? [] : null;\n let a = new SectionIter(setA), b = new SectionIter(setB);\n // Iterate over both sets in parallel. inserted tracks, for changes\n // in A that have to be processed piece-by-piece, whether their\n // content has been inserted already, and refers to the section\n // index.\n for (let inserted = -1;;) {\n if (a.ins == -1 && b.ins == -1) {\n // Move across ranges skipped by both sets.\n let len = Math.min(a.len, b.len);\n addSection(sections, len, -1);\n a.forward(len);\n b.forward(len);\n }\n else if (b.ins >= 0 && (a.ins < 0 || inserted == a.i || a.off == 0 && (b.len < a.len || b.len == a.len && !before))) {\n // If there's a change in B that comes before the next change in\n // A (ordered by start pos, then len, then before flag), skip\n // that (and process any changes in A it covers).\n let len = b.len;\n addSection(sections, b.ins, -1);\n while (len) {\n let piece = Math.min(a.len, len);\n if (a.ins >= 0 && inserted < a.i && a.len <= piece) {\n addSection(sections, 0, a.ins);\n if (insert)\n addInsert(insert, sections, a.text);\n inserted = a.i;\n }\n a.forward(piece);\n len -= piece;\n }\n b.next();\n }\n else if (a.ins >= 0) {\n // Process the part of a change in A up to the start of the next\n // non-deletion change in B (if overlapping).\n let len = 0, left = a.len;\n while (left) {\n if (b.ins == -1) {\n let piece = Math.min(left, b.len);\n len += piece;\n left -= piece;\n b.forward(piece);\n }\n else if (b.ins == 0 && b.len < left) {\n left -= b.len;\n b.next();\n }\n else {\n break;\n }\n }\n addSection(sections, len, inserted < a.i ? a.ins : 0);\n if (insert && inserted < a.i)\n addInsert(insert, sections, a.text);\n inserted = a.i;\n a.forward(a.len - left);\n }\n else if (a.done && b.done) {\n return insert ? ChangeSet.createSet(sections, insert) : ChangeDesc.create(sections);\n }\n else {\n throw new Error(\"Mismatched change set lengths\");\n }\n }\n}\nfunction composeSets(setA, setB, mkSet = false) {\n let sections = [];\n let insert = mkSet ? [] : null;\n let a = new SectionIter(setA), b = new SectionIter(setB);\n for (let open = false;;) {\n if (a.done && b.done) {\n return insert ? ChangeSet.createSet(sections, insert) : ChangeDesc.create(sections);\n }\n else if (a.ins == 0) { // Deletion in A\n addSection(sections, a.len, 0, open);\n a.next();\n }\n else if (b.len == 0 && !b.done) { // Insertion in B\n addSection(sections, 0, b.ins, open);\n if (insert)\n addInsert(insert, sections, b.text);\n b.next();\n }\n else if (a.done || b.done) {\n throw new Error(\"Mismatched change set lengths\");\n }\n else {\n let len = Math.min(a.len2, b.len), sectionLen = sections.length;\n if (a.ins == -1) {\n let insB = b.ins == -1 ? -1 : b.off ? 0 : b.ins;\n addSection(sections, len, insB, open);\n if (insert && insB)\n addInsert(insert, sections, b.text);\n }\n else if (b.ins == -1) {\n addSection(sections, a.off ? 0 : a.len, len, open);\n if (insert)\n addInsert(insert, sections, a.textBit(len));\n }\n else {\n addSection(sections, a.off ? 0 : a.len, b.off ? 0 : b.ins, open);\n if (insert && !b.off)\n addInsert(insert, sections, b.text);\n }\n open = (a.ins > len || b.ins >= 0 && b.len > len) && (open || sections.length > sectionLen);\n a.forward2(len);\n b.forward(len);\n }\n }\n}\nclass SectionIter {\n constructor(set) {\n this.set = set;\n this.i = 0;\n this.next();\n }\n next() {\n let { sections } = this.set;\n if (this.i < sections.length) {\n this.len = sections[this.i++];\n this.ins = sections[this.i++];\n }\n else {\n this.len = 0;\n this.ins = -2;\n }\n this.off = 0;\n }\n get done() { return this.ins == -2; }\n get len2() { return this.ins < 0 ? this.len : this.ins; }\n get text() {\n let { inserted } = this.set, index = (this.i - 2) >> 1;\n return index >= inserted.length ? Text.empty : inserted[index];\n }\n textBit(len) {\n let { inserted } = this.set, index = (this.i - 2) >> 1;\n return index >= inserted.length && !len ? Text.empty\n : inserted[index].slice(this.off, len == null ? undefined : this.off + len);\n }\n forward(len) {\n if (len == this.len)\n this.next();\n else {\n this.len -= len;\n this.off += len;\n }\n }\n forward2(len) {\n if (this.ins == -1)\n this.forward(len);\n else if (len == this.ins)\n this.next();\n else {\n this.ins -= len;\n this.off += len;\n }\n }\n}\n\n/**\nA single selection range. When\n[`allowMultipleSelections`](https://codemirror.net/6/docs/ref/#state.EditorState^allowMultipleSelections)\nis enabled, a [selection](https://codemirror.net/6/docs/ref/#state.EditorSelection) may hold\nmultiple ranges. By default, selections hold exactly one range.\n*/\nclass SelectionRange {\n constructor(\n /**\n The lower boundary of the range.\n */\n from, \n /**\n The upper boundary of the range.\n */\n to, flags) {\n this.from = from;\n this.to = to;\n this.flags = flags;\n }\n /**\n The anchor of the range—the side that doesn't move when you\n extend it.\n */\n get anchor() { return this.flags & 32 /* RangeFlag.Inverted */ ? this.to : this.from; }\n /**\n The head of the range, which is moved when the range is\n [extended](https://codemirror.net/6/docs/ref/#state.SelectionRange.extend).\n */\n get head() { return this.flags & 32 /* RangeFlag.Inverted */ ? this.from : this.to; }\n /**\n True when `anchor` and `head` are at the same position.\n */\n get empty() { return this.from == this.to; }\n /**\n If this is a cursor that is explicitly associated with the\n character on one of its sides, this returns the side. -1 means\n the character before its position, 1 the character after, and 0\n means no association.\n */\n get assoc() { return this.flags & 8 /* RangeFlag.AssocBefore */ ? -1 : this.flags & 16 /* RangeFlag.AssocAfter */ ? 1 : 0; }\n /**\n The bidirectional text level associated with this cursor, if\n any.\n */\n get bidiLevel() {\n let level = this.flags & 7 /* RangeFlag.BidiLevelMask */;\n return level == 7 ? null : level;\n }\n /**\n The goal column (stored vertical offset) associated with a\n cursor. This is used to preserve the vertical position when\n [moving](https://codemirror.net/6/docs/ref/#view.EditorView.moveVertically) across\n lines of different length.\n */\n get goalColumn() {\n let value = this.flags >> 6 /* RangeFlag.GoalColumnOffset */;\n return value == 16777215 /* RangeFlag.NoGoalColumn */ ? undefined : value;\n }\n /**\n Map this range through a change, producing a valid range in the\n updated document.\n */\n map(change, assoc = -1) {\n let from, to;\n if (this.empty) {\n from = to = change.mapPos(this.from, assoc);\n }\n else {\n from = change.mapPos(this.from, 1);\n to = change.mapPos(this.to, -1);\n }\n return from == this.from && to == this.to ? this : new SelectionRange(from, to, this.flags);\n }\n /**\n Extend this range to cover at least `from` to `to`.\n */\n extend(from, to = from) {\n if (from <= this.anchor && to >= this.anchor)\n return EditorSelection.range(from, to);\n let head = Math.abs(from - this.anchor) > Math.abs(to - this.anchor) ? from : to;\n return EditorSelection.range(this.anchor, head);\n }\n /**\n Compare this range to another range.\n */\n eq(other, includeAssoc = false) {\n return this.anchor == other.anchor && this.head == other.head &&\n (!includeAssoc || !this.empty || this.assoc == other.assoc);\n }\n /**\n Return a JSON-serializable object representing the range.\n */\n toJSON() { return { anchor: this.anchor, head: this.head }; }\n /**\n Convert a JSON representation of a range to a `SelectionRange`\n instance.\n */\n static fromJSON(json) {\n if (!json || typeof json.anchor != \"number\" || typeof json.head != \"number\")\n throw new RangeError(\"Invalid JSON representation for SelectionRange\");\n return EditorSelection.range(json.anchor, json.head);\n }\n /**\n @internal\n */\n static create(from, to, flags) {\n return new SelectionRange(from, to, flags);\n }\n}\n/**\nAn editor selection holds one or more selection ranges.\n*/\nclass EditorSelection {\n constructor(\n /**\n The ranges in the selection, sorted by position. Ranges cannot\n overlap (but they may touch, if they aren't empty).\n */\n ranges, \n /**\n The index of the _main_ range in the selection (which is\n usually the range that was added last).\n */\n mainIndex) {\n this.ranges = ranges;\n this.mainIndex = mainIndex;\n }\n /**\n Map a selection through a change. Used to adjust the selection\n position for changes.\n */\n map(change, assoc = -1) {\n if (change.empty)\n return this;\n return EditorSelection.create(this.ranges.map(r => r.map(change, assoc)), this.mainIndex);\n }\n /**\n Compare this selection to another selection. By default, ranges\n are compared only by position. When `includeAssoc` is true,\n cursor ranges must also have the same\n [`assoc`](https://codemirror.net/6/docs/ref/#state.SelectionRange.assoc) value.\n */\n eq(other, includeAssoc = false) {\n if (this.ranges.length != other.ranges.length ||\n this.mainIndex != other.mainIndex)\n return false;\n for (let i = 0; i < this.ranges.length; i++)\n if (!this.ranges[i].eq(other.ranges[i], includeAssoc))\n return false;\n return true;\n }\n /**\n Get the primary selection range. Usually, you should make sure\n your code applies to _all_ ranges, by using methods like\n [`changeByRange`](https://codemirror.net/6/docs/ref/#state.EditorState.changeByRange).\n */\n get main() { return this.ranges[this.mainIndex]; }\n /**\n Make sure the selection only has one range. Returns a selection\n holding only the main range from this selection.\n */\n asSingle() {\n return this.ranges.length == 1 ? this : new EditorSelection([this.main], 0);\n }\n /**\n Extend this selection with an extra range.\n */\n addRange(range, main = true) {\n return EditorSelection.create([range].concat(this.ranges), main ? 0 : this.mainIndex + 1);\n }\n /**\n Replace a given range with another range, and then normalize the\n selection to merge and sort ranges if necessary.\n */\n replaceRange(range, which = this.mainIndex) {\n let ranges = this.ranges.slice();\n ranges[which] = range;\n return EditorSelection.create(ranges, this.mainIndex);\n }\n /**\n Convert this selection to an object that can be serialized to\n JSON.\n */\n toJSON() {\n return { ranges: this.ranges.map(r => r.toJSON()), main: this.mainIndex };\n }\n /**\n Create a selection from a JSON representation.\n */\n static fromJSON(json) {\n if (!json || !Array.isArray(json.ranges) || typeof json.main != \"number\" || json.main >= json.ranges.length)\n throw new RangeError(\"Invalid JSON representation for EditorSelection\");\n return new EditorSelection(json.ranges.map((r) => SelectionRange.fromJSON(r)), json.main);\n }\n /**\n Create a selection holding a single range.\n */\n static single(anchor, head = anchor) {\n return new EditorSelection([EditorSelection.range(anchor, head)], 0);\n }\n /**\n Sort and merge the given set of ranges, creating a valid\n selection.\n */\n static create(ranges, mainIndex = 0) {\n if (ranges.length == 0)\n throw new RangeError(\"A selection needs at least one range\");\n for (let pos = 0, i = 0; i < ranges.length; i++) {\n let range = ranges[i];\n if (range.empty ? range.from <= pos : range.from < pos)\n return EditorSelection.normalized(ranges.slice(), mainIndex);\n pos = range.to;\n }\n return new EditorSelection(ranges, mainIndex);\n }\n /**\n Create a cursor selection range at the given position. You can\n safely ignore the optional arguments in most situations.\n */\n static cursor(pos, assoc = 0, bidiLevel, goalColumn) {\n return SelectionRange.create(pos, pos, (assoc == 0 ? 0 : assoc < 0 ? 8 /* RangeFlag.AssocBefore */ : 16 /* RangeFlag.AssocAfter */) |\n (bidiLevel == null ? 7 : Math.min(6, bidiLevel)) |\n ((goalColumn !== null && goalColumn !== void 0 ? goalColumn : 16777215 /* RangeFlag.NoGoalColumn */) << 6 /* RangeFlag.GoalColumnOffset */));\n }\n /**\n Create a selection range.\n */\n static range(anchor, head, goalColumn, bidiLevel) {\n let flags = ((goalColumn !== null && goalColumn !== void 0 ? goalColumn : 16777215 /* RangeFlag.NoGoalColumn */) << 6 /* RangeFlag.GoalColumnOffset */) |\n (bidiLevel == null ? 7 : Math.min(6, bidiLevel));\n return head < anchor ? SelectionRange.create(head, anchor, 32 /* RangeFlag.Inverted */ | 16 /* RangeFlag.AssocAfter */ | flags)\n : SelectionRange.create(anchor, head, (head > anchor ? 8 /* RangeFlag.AssocBefore */ : 0) | flags);\n }\n /**\n @internal\n */\n static normalized(ranges, mainIndex = 0) {\n let main = ranges[mainIndex];\n ranges.sort((a, b) => a.from - b.from);\n mainIndex = ranges.indexOf(main);\n for (let i = 1; i < ranges.length; i++) {\n let range = ranges[i], prev = ranges[i - 1];\n if (range.empty ? range.from <= prev.to : range.from < prev.to) {\n let from = prev.from, to = Math.max(range.to, prev.to);\n if (i <= mainIndex)\n mainIndex--;\n ranges.splice(--i, 2, range.anchor > range.head ? EditorSelection.range(to, from) : EditorSelection.range(from, to));\n }\n }\n return new EditorSelection(ranges, mainIndex);\n }\n}\nfunction checkSelection(selection, docLength) {\n for (let range of selection.ranges)\n if (range.to > docLength)\n throw new RangeError(\"Selection points outside of document\");\n}\n\nlet nextID = 0;\n/**\nA facet is a labeled value that is associated with an editor\nstate. It takes inputs from any number of extensions, and combines\nthose into a single output value.\n\nExamples of uses of facets are the [tab\nsize](https://codemirror.net/6/docs/ref/#state.EditorState^tabSize), [editor\nattributes](https://codemirror.net/6/docs/ref/#view.EditorView^editorAttributes), and [update\nlisteners](https://codemirror.net/6/docs/ref/#view.EditorView^updateListener).\n\nNote that `Facet` instances can be used anywhere where\n[`FacetReader`](https://codemirror.net/6/docs/ref/#state.FacetReader) is expected.\n*/\nclass Facet {\n constructor(\n /**\n @internal\n */\n combine, \n /**\n @internal\n */\n compareInput, \n /**\n @internal\n */\n compare, isStatic, enables) {\n this.combine = combine;\n this.compareInput = compareInput;\n this.compare = compare;\n this.isStatic = isStatic;\n /**\n @internal\n */\n this.id = nextID++;\n this.default = combine([]);\n this.extensions = typeof enables == \"function\" ? enables(this) : enables;\n }\n /**\n Returns a facet reader for this facet, which can be used to\n [read](https://codemirror.net/6/docs/ref/#state.EditorState.facet) it but not to define values for it.\n */\n get reader() { return this; }\n /**\n Define a new facet.\n */\n static define(config = {}) {\n return new Facet(config.combine || ((a) => a), config.compareInput || ((a, b) => a === b), config.compare || (!config.combine ? sameArray : (a, b) => a === b), !!config.static, config.enables);\n }\n /**\n Returns an extension that adds the given value to this facet.\n */\n of(value) {\n return new FacetProvider([], this, 0 /* Provider.Static */, value);\n }\n /**\n Create an extension that computes a value for the facet from a\n state. You must take care to declare the parts of the state that\n this value depends on, since your function is only called again\n for a new state when one of those parts changed.\n \n In cases where your value depends only on a single field, you'll\n want to use the [`from`](https://codemirror.net/6/docs/ref/#state.Facet.from) method instead.\n */\n compute(deps, get) {\n if (this.isStatic)\n throw new Error(\"Can't compute a static facet\");\n return new FacetProvider(deps, this, 1 /* Provider.Single */, get);\n }\n /**\n Create an extension that computes zero or more values for this\n facet from a state.\n */\n computeN(deps, get) {\n if (this.isStatic)\n throw new Error(\"Can't compute a static facet\");\n return new FacetProvider(deps, this, 2 /* Provider.Multi */, get);\n }\n from(field, get) {\n if (!get)\n get = x => x;\n return this.compute([field], state => get(state.field(field)));\n }\n}\nfunction sameArray(a, b) {\n return a == b || a.length == b.length && a.every((e, i) => e === b[i]);\n}\nclass FacetProvider {\n constructor(dependencies, facet, type, value) {\n this.dependencies = dependencies;\n this.facet = facet;\n this.type = type;\n this.value = value;\n this.id = nextID++;\n }\n dynamicSlot(addresses) {\n var _a;\n let getter = this.value;\n let compare = this.facet.compareInput;\n let id = this.id, idx = addresses[id] >> 1, multi = this.type == 2 /* Provider.Multi */;\n let depDoc = false, depSel = false, depAddrs = [];\n for (let dep of this.dependencies) {\n if (dep == \"doc\")\n depDoc = true;\n else if (dep == \"selection\")\n depSel = true;\n else if ((((_a = addresses[dep.id]) !== null && _a !== void 0 ? _a : 1) & 1) == 0)\n depAddrs.push(addresses[dep.id]);\n }\n return {\n create(state) {\n state.values[idx] = getter(state);\n return 1 /* SlotStatus.Changed */;\n },\n update(state, tr) {\n if ((depDoc && tr.docChanged) || (depSel && (tr.docChanged || tr.selection)) || ensureAll(state, depAddrs)) {\n let newVal = getter(state);\n if (multi ? !compareArray(newVal, state.values[idx], compare) : !compare(newVal, state.values[idx])) {\n state.values[idx] = newVal;\n return 1 /* SlotStatus.Changed */;\n }\n }\n return 0;\n },\n reconfigure: (state, oldState) => {\n let newVal, oldAddr = oldState.config.address[id];\n if (oldAddr != null) {\n let oldVal = getAddr(oldState, oldAddr);\n if (this.dependencies.every(dep => {\n return dep instanceof Facet ? oldState.facet(dep) === state.facet(dep) :\n dep instanceof StateField ? oldState.field(dep, false) == state.field(dep, false) : true;\n }) || (multi ? compareArray(newVal = getter(state), oldVal, compare) : compare(newVal = getter(state), oldVal))) {\n state.values[idx] = oldVal;\n return 0;\n }\n }\n else {\n newVal = getter(state);\n }\n state.values[idx] = newVal;\n return 1 /* SlotStatus.Changed */;\n }\n };\n }\n}\nfunction compareArray(a, b, compare) {\n if (a.length != b.length)\n return false;\n for (let i = 0; i < a.length; i++)\n if (!compare(a[i], b[i]))\n return false;\n return true;\n}\nfunction ensureAll(state, addrs) {\n let changed = false;\n for (let addr of addrs)\n if (ensureAddr(state, addr) & 1 /* SlotStatus.Changed */)\n changed = true;\n return changed;\n}\nfunction dynamicFacetSlot(addresses, facet, providers) {\n let providerAddrs = providers.map(p => addresses[p.id]);\n let providerTypes = providers.map(p => p.type);\n let dynamic = providerAddrs.filter(p => !(p & 1));\n let idx = addresses[facet.id] >> 1;\n function get(state) {\n let values = [];\n for (let i = 0; i < providerAddrs.length; i++) {\n let value = getAddr(state, providerAddrs[i]);\n if (providerTypes[i] == 2 /* Provider.Multi */)\n for (let val of value)\n values.push(val);\n else\n values.push(value);\n }\n return facet.combine(values);\n }\n return {\n create(state) {\n for (let addr of providerAddrs)\n ensureAddr(state, addr);\n state.values[idx] = get(state);\n return 1 /* SlotStatus.Changed */;\n },\n update(state, tr) {\n if (!ensureAll(state, dynamic))\n return 0;\n let value = get(state);\n if (facet.compare(value, state.values[idx]))\n return 0;\n state.values[idx] = value;\n return 1 /* SlotStatus.Changed */;\n },\n reconfigure(state, oldState) {\n let depChanged = ensureAll(state, providerAddrs);\n let oldProviders = oldState.config.facets[facet.id], oldValue = oldState.facet(facet);\n if (oldProviders && !depChanged && sameArray(providers, oldProviders)) {\n state.values[idx] = oldValue;\n return 0;\n }\n let value = get(state);\n if (facet.compare(value, oldValue)) {\n state.values[idx] = oldValue;\n return 0;\n }\n state.values[idx] = value;\n return 1 /* SlotStatus.Changed */;\n }\n };\n}\nconst initField = /*@__PURE__*/Facet.define({ static: true });\n/**\nFields can store additional information in an editor state, and\nkeep it in sync with the rest of the state.\n*/\nclass StateField {\n constructor(\n /**\n @internal\n */\n id, createF, updateF, compareF, \n /**\n @internal\n */\n spec) {\n this.id = id;\n this.createF = createF;\n this.updateF = updateF;\n this.compareF = compareF;\n this.spec = spec;\n /**\n @internal\n */\n this.provides = undefined;\n }\n /**\n Define a state field.\n */\n static define(config) {\n let field = new StateField(nextID++, config.create, config.update, config.compare || ((a, b) => a === b), config);\n if (config.provide)\n field.provides = config.provide(field);\n return field;\n }\n create(state) {\n let init = state.facet(initField).find(i => i.field == this);\n return ((init === null || init === void 0 ? void 0 : init.create) || this.createF)(state);\n }\n /**\n @internal\n */\n slot(addresses) {\n let idx = addresses[this.id] >> 1;\n return {\n create: (state) => {\n state.values[idx] = this.create(state);\n return 1 /* SlotStatus.Changed */;\n },\n update: (state, tr) => {\n let oldVal = state.values[idx];\n let value = this.updateF(oldVal, tr);\n if (this.compareF(oldVal, value))\n return 0;\n state.values[idx] = value;\n return 1 /* SlotStatus.Changed */;\n },\n reconfigure: (state, oldState) => {\n if (oldState.config.address[this.id] != null) {\n state.values[idx] = oldState.field(this);\n return 0;\n }\n state.values[idx] = this.create(state);\n return 1 /* SlotStatus.Changed */;\n }\n };\n }\n /**\n Returns an extension that enables this field and overrides the\n way it is initialized. Can be useful when you need to provide a\n non-default starting value for the field.\n */\n init(create) {\n return [this, initField.of({ field: this, create })];\n }\n /**\n State field instances can be used as\n [`Extension`](https://codemirror.net/6/docs/ref/#state.Extension) values to enable the field in a\n given state.\n */\n get extension() { return this; }\n}\nconst Prec_ = { lowest: 4, low: 3, default: 2, high: 1, highest: 0 };\nfunction prec(value) {\n return (ext) => new PrecExtension(ext, value);\n}\n/**\nBy default extensions are registered in the order they are found\nin the flattened form of nested array that was provided.\nIndividual extension values can be assigned a precedence to\noverride this. Extensions that do not have a precedence set get\nthe precedence of the nearest parent with a precedence, or\n[`default`](https://codemirror.net/6/docs/ref/#state.Prec.default) if there is no such parent. The\nfinal ordering of extensions is determined by first sorting by\nprecedence and then by order within each precedence.\n*/\nconst Prec = {\n /**\n The highest precedence level, for extensions that should end up\n near the start of the precedence ordering.\n */\n highest: /*@__PURE__*/prec(Prec_.highest),\n /**\n A higher-than-default precedence, for extensions that should\n come before those with default precedence.\n */\n high: /*@__PURE__*/prec(Prec_.high),\n /**\n The default precedence, which is also used for extensions\n without an explicit precedence.\n */\n default: /*@__PURE__*/prec(Prec_.default),\n /**\n A lower-than-default precedence.\n */\n low: /*@__PURE__*/prec(Prec_.low),\n /**\n The lowest precedence level. Meant for things that should end up\n near the end of the extension order.\n */\n lowest: /*@__PURE__*/prec(Prec_.lowest)\n};\nclass PrecExtension {\n constructor(inner, prec) {\n this.inner = inner;\n this.prec = prec;\n }\n}\n/**\nExtension compartments can be used to make a configuration\ndynamic. By [wrapping](https://codemirror.net/6/docs/ref/#state.Compartment.of) part of your\nconfiguration in a compartment, you can later\n[replace](https://codemirror.net/6/docs/ref/#state.Compartment.reconfigure) that part through a\ntransaction.\n*/\nclass Compartment {\n /**\n Create an instance of this compartment to add to your [state\n configuration](https://codemirror.net/6/docs/ref/#state.EditorStateConfig.extensions).\n */\n of(ext) { return new CompartmentInstance(this, ext); }\n /**\n Create an [effect](https://codemirror.net/6/docs/ref/#state.TransactionSpec.effects) that\n reconfigures this compartment.\n */\n reconfigure(content) {\n return Compartment.reconfigure.of({ compartment: this, extension: content });\n }\n /**\n Get the current content of the compartment in the state, or\n `undefined` if it isn't present.\n */\n get(state) {\n return state.config.compartments.get(this);\n }\n}\nclass CompartmentInstance {\n constructor(compartment, inner) {\n this.compartment = compartment;\n this.inner = inner;\n }\n}\nclass Configuration {\n constructor(base, compartments, dynamicSlots, address, staticValues, facets) {\n this.base = base;\n this.compartments = compartments;\n this.dynamicSlots = dynamicSlots;\n this.address = address;\n this.staticValues = staticValues;\n this.facets = facets;\n this.statusTemplate = [];\n while (this.statusTemplate.length < dynamicSlots.length)\n this.statusTemplate.push(0 /* SlotStatus.Unresolved */);\n }\n staticFacet(facet) {\n let addr = this.address[facet.id];\n return addr == null ? facet.default : this.staticValues[addr >> 1];\n }\n static resolve(base, compartments, oldState) {\n let fields = [];\n let facets = Object.create(null);\n let newCompartments = new Map();\n for (let ext of flatten(base, compartments, newCompartments)) {\n if (ext instanceof StateField)\n fields.push(ext);\n else\n (facets[ext.facet.id] || (facets[ext.facet.id] = [])).push(ext);\n }\n let address = Object.create(null);\n let staticValues = [];\n let dynamicSlots = [];\n for (let field of fields) {\n address[field.id] = dynamicSlots.length << 1;\n dynamicSlots.push(a => field.slot(a));\n }\n let oldFacets = oldState === null || oldState === void 0 ? void 0 : oldState.config.facets;\n for (let id in facets) {\n let providers = facets[id], facet = providers[0].facet;\n let oldProviders = oldFacets && oldFacets[id] || [];\n if (providers.every(p => p.type == 0 /* Provider.Static */)) {\n address[facet.id] = (staticValues.length << 1) | 1;\n if (sameArray(oldProviders, providers)) {\n staticValues.push(oldState.facet(facet));\n }\n else {\n let value = facet.combine(providers.map(p => p.value));\n staticValues.push(oldState && facet.compare(value, oldState.facet(facet)) ? oldState.facet(facet) : value);\n }\n }\n else {\n for (let p of providers) {\n if (p.type == 0 /* Provider.Static */) {\n address[p.id] = (staticValues.length << 1) | 1;\n staticValues.push(p.value);\n }\n else {\n address[p.id] = dynamicSlots.length << 1;\n dynamicSlots.push(a => p.dynamicSlot(a));\n }\n }\n address[facet.id] = dynamicSlots.length << 1;\n dynamicSlots.push(a => dynamicFacetSlot(a, facet, providers));\n }\n }\n let dynamic = dynamicSlots.map(f => f(address));\n return new Configuration(base, newCompartments, dynamic, address, staticValues, facets);\n }\n}\nfunction flatten(extension, compartments, newCompartments) {\n let result = [[], [], [], [], []];\n let seen = new Map();\n function inner(ext, prec) {\n let known = seen.get(ext);\n if (known != null) {\n if (known <= prec)\n return;\n let found = result[known].indexOf(ext);\n if (found > -1)\n result[known].splice(found, 1);\n if (ext instanceof CompartmentInstance)\n newCompartments.delete(ext.compartment);\n }\n seen.set(ext, prec);\n if (Array.isArray(ext)) {\n for (let e of ext)\n inner(e, prec);\n }\n else if (ext instanceof CompartmentInstance) {\n if (newCompartments.has(ext.compartment))\n throw new RangeError(`Duplicate use of compartment in extensions`);\n let content = compartments.get(ext.compartment) || ext.inner;\n newCompartments.set(ext.compartment, content);\n inner(content, prec);\n }\n else if (ext instanceof PrecExtension) {\n inner(ext.inner, ext.prec);\n }\n else if (ext instanceof StateField) {\n result[prec].push(ext);\n if (ext.provides)\n inner(ext.provides, prec);\n }\n else if (ext instanceof FacetProvider) {\n result[prec].push(ext);\n if (ext.facet.extensions)\n inner(ext.facet.extensions, Prec_.default);\n }\n else {\n let content = ext.extension;\n if (!content)\n throw new Error(`Unrecognized extension value in extension set (${ext}). This sometimes happens because multiple instances of @codemirror/state are loaded, breaking instanceof checks.`);\n inner(content, prec);\n }\n }\n inner(extension, Prec_.default);\n return result.reduce((a, b) => a.concat(b));\n}\nfunction ensureAddr(state, addr) {\n if (addr & 1)\n return 2 /* SlotStatus.Computed */;\n let idx = addr >> 1;\n let status = state.status[idx];\n if (status == 4 /* SlotStatus.Computing */)\n throw new Error(\"Cyclic dependency between fields and/or facets\");\n if (status & 2 /* SlotStatus.Computed */)\n return status;\n state.status[idx] = 4 /* SlotStatus.Computing */;\n let changed = state.computeSlot(state, state.config.dynamicSlots[idx]);\n return state.status[idx] = 2 /* SlotStatus.Computed */ | changed;\n}\nfunction getAddr(state, addr) {\n return addr & 1 ? state.config.staticValues[addr >> 1] : state.values[addr >> 1];\n}\n\nconst languageData = /*@__PURE__*/Facet.define();\nconst allowMultipleSelections = /*@__PURE__*/Facet.define({\n combine: values => values.some(v => v),\n static: true\n});\nconst lineSeparator = /*@__PURE__*/Facet.define({\n combine: values => values.length ? values[0] : undefined,\n static: true\n});\nconst changeFilter = /*@__PURE__*/Facet.define();\nconst transactionFilter = /*@__PURE__*/Facet.define();\nconst transactionExtender = /*@__PURE__*/Facet.define();\nconst readOnly = /*@__PURE__*/Facet.define({\n combine: values => values.length ? values[0] : false\n});\n\n/**\nAnnotations are tagged values that are used to add metadata to\ntransactions in an extensible way. They should be used to model\nthings that effect the entire transaction (such as its [time\nstamp](https://codemirror.net/6/docs/ref/#state.Transaction^time) or information about its\n[origin](https://codemirror.net/6/docs/ref/#state.Transaction^userEvent)). For effects that happen\n_alongside_ the other changes made by the transaction, [state\neffects](https://codemirror.net/6/docs/ref/#state.StateEffect) are more appropriate.\n*/\nclass Annotation {\n /**\n @internal\n */\n constructor(\n /**\n The annotation type.\n */\n type, \n /**\n The value of this annotation.\n */\n value) {\n this.type = type;\n this.value = value;\n }\n /**\n Define a new type of annotation.\n */\n static define() { return new AnnotationType(); }\n}\n/**\nMarker that identifies a type of [annotation](https://codemirror.net/6/docs/ref/#state.Annotation).\n*/\nclass AnnotationType {\n /**\n Create an instance of this annotation.\n */\n of(value) { return new Annotation(this, value); }\n}\n/**\nRepresentation of a type of state effect. Defined with\n[`StateEffect.define`](https://codemirror.net/6/docs/ref/#state.StateEffect^define).\n*/\nclass StateEffectType {\n /**\n @internal\n */\n constructor(\n // The `any` types in these function types are there to work\n // around TypeScript issue #37631, where the type guard on\n // `StateEffect.is` mysteriously stops working when these properly\n // have type `Value`.\n /**\n @internal\n */\n map) {\n this.map = map;\n }\n /**\n Create a [state effect](https://codemirror.net/6/docs/ref/#state.StateEffect) instance of this\n type.\n */\n of(value) { return new StateEffect(this, value); }\n}\n/**\nState effects can be used to represent additional effects\nassociated with a [transaction](https://codemirror.net/6/docs/ref/#state.Transaction.effects). They\nare often useful to model changes to custom [state\nfields](https://codemirror.net/6/docs/ref/#state.StateField), when those changes aren't implicit in\ndocument or selection changes.\n*/\nclass StateEffect {\n /**\n @internal\n */\n constructor(\n /**\n @internal\n */\n type, \n /**\n The value of this effect.\n */\n value) {\n this.type = type;\n this.value = value;\n }\n /**\n Map this effect through a position mapping. Will return\n `undefined` when that ends up deleting the effect.\n */\n map(mapping) {\n let mapped = this.type.map(this.value, mapping);\n return mapped === undefined ? undefined : mapped == this.value ? this : new StateEffect(this.type, mapped);\n }\n /**\n Tells you whether this effect object is of a given\n [type](https://codemirror.net/6/docs/ref/#state.StateEffectType).\n */\n is(type) { return this.type == type; }\n /**\n Define a new effect type. The type parameter indicates the type\n of values that his effect holds. It should be a type that\n doesn't include `undefined`, since that is used in\n [mapping](https://codemirror.net/6/docs/ref/#state.StateEffect.map) to indicate that an effect is\n removed.\n */\n static define(spec = {}) {\n return new StateEffectType(spec.map || (v => v));\n }\n /**\n Map an array of effects through a change set.\n */\n static mapEffects(effects, mapping) {\n if (!effects.length)\n return effects;\n let result = [];\n for (let effect of effects) {\n let mapped = effect.map(mapping);\n if (mapped)\n result.push(mapped);\n }\n return result;\n }\n}\n/**\nThis effect can be used to reconfigure the root extensions of\nthe editor. Doing this will discard any extensions\n[appended](https://codemirror.net/6/docs/ref/#state.StateEffect^appendConfig), but does not reset\nthe content of [reconfigured](https://codemirror.net/6/docs/ref/#state.Compartment.reconfigure)\ncompartments.\n*/\nStateEffect.reconfigure = /*@__PURE__*/StateEffect.define();\n/**\nAppend extensions to the top-level configuration of the editor.\n*/\nStateEffect.appendConfig = /*@__PURE__*/StateEffect.define();\n/**\nChanges to the editor state are grouped into transactions.\nTypically, a user action creates a single transaction, which may\ncontain any number of document changes, may change the selection,\nor have other effects. Create a transaction by calling\n[`EditorState.update`](https://codemirror.net/6/docs/ref/#state.EditorState.update), or immediately\ndispatch one by calling\n[`EditorView.dispatch`](https://codemirror.net/6/docs/ref/#view.EditorView.dispatch).\n*/\nclass Transaction {\n constructor(\n /**\n The state from which the transaction starts.\n */\n startState, \n /**\n The document changes made by this transaction.\n */\n changes, \n /**\n The selection set by this transaction, or undefined if it\n doesn't explicitly set a selection.\n */\n selection, \n /**\n The effects added to the transaction.\n */\n effects, \n /**\n @internal\n */\n annotations, \n /**\n Whether the selection should be scrolled into view after this\n transaction is dispatched.\n */\n scrollIntoView) {\n this.startState = startState;\n this.changes = changes;\n this.selection = selection;\n this.effects = effects;\n this.annotations = annotations;\n this.scrollIntoView = scrollIntoView;\n /**\n @internal\n */\n this._doc = null;\n /**\n @internal\n */\n this._state = null;\n if (selection)\n checkSelection(selection, changes.newLength);\n if (!annotations.some((a) => a.type == Transaction.time))\n this.annotations = annotations.concat(Transaction.time.of(Date.now()));\n }\n /**\n @internal\n */\n static create(startState, changes, selection, effects, annotations, scrollIntoView) {\n return new Transaction(startState, changes, selection, effects, annotations, scrollIntoView);\n }\n /**\n The new document produced by the transaction. Contrary to\n [`.state`](https://codemirror.net/6/docs/ref/#state.Transaction.state)`.doc`, accessing this won't\n force the entire new state to be computed right away, so it is\n recommended that [transaction\n filters](https://codemirror.net/6/docs/ref/#state.EditorState^transactionFilter) use this getter\n when they need to look at the new document.\n */\n get newDoc() {\n return this._doc || (this._doc = this.changes.apply(this.startState.doc));\n }\n /**\n The new selection produced by the transaction. If\n [`this.selection`](https://codemirror.net/6/docs/ref/#state.Transaction.selection) is undefined,\n this will [map](https://codemirror.net/6/docs/ref/#state.EditorSelection.map) the start state's\n current selection through the changes made by the transaction.\n */\n get newSelection() {\n return this.selection || this.startState.selection.map(this.changes);\n }\n /**\n The new state created by the transaction. Computed on demand\n (but retained for subsequent access), so it is recommended not to\n access it in [transaction\n filters](https://codemirror.net/6/docs/ref/#state.EditorState^transactionFilter) when possible.\n */\n get state() {\n if (!this._state)\n this.startState.applyTransaction(this);\n return this._state;\n }\n /**\n Get the value of the given annotation type, if any.\n */\n annotation(type) {\n for (let ann of this.annotations)\n if (ann.type == type)\n return ann.value;\n return undefined;\n }\n /**\n Indicates whether the transaction changed the document.\n */\n get docChanged() { return !this.changes.empty; }\n /**\n Indicates whether this transaction reconfigures the state\n (through a [configuration compartment](https://codemirror.net/6/docs/ref/#state.Compartment) or\n with a top-level configuration\n [effect](https://codemirror.net/6/docs/ref/#state.StateEffect^reconfigure).\n */\n get reconfigured() { return this.startState.config != this.state.config; }\n /**\n Returns true if the transaction has a [user\n event](https://codemirror.net/6/docs/ref/#state.Transaction^userEvent) annotation that is equal to\n or more specific than `event`. For example, if the transaction\n has `\"select.pointer\"` as user event, `\"select\"` and\n `\"select.pointer\"` will match it.\n */\n isUserEvent(event) {\n let e = this.annotation(Transaction.userEvent);\n return !!(e && (e == event || e.length > event.length && e.slice(0, event.length) == event && e[event.length] == \".\"));\n }\n}\n/**\nAnnotation used to store transaction timestamps. Automatically\nadded to every transaction, holding `Date.now()`.\n*/\nTransaction.time = /*@__PURE__*/Annotation.define();\n/**\nAnnotation used to associate a transaction with a user interface\nevent. Holds a string identifying the event, using a\ndot-separated format to support attaching more specific\ninformation. The events used by the core libraries are:\n\n - `\"input\"` when content is entered\n - `\"input.type\"` for typed input\n - `\"input.type.compose\"` for composition\n - `\"input.paste\"` for pasted input\n - `\"input.drop\"` when adding content with drag-and-drop\n - `\"input.complete\"` when autocompleting\n - `\"delete\"` when the user deletes content\n - `\"delete.selection\"` when deleting the selection\n - `\"delete.forward\"` when deleting forward from the selection\n - `\"delete.backward\"` when deleting backward from the selection\n - `\"delete.cut\"` when cutting to the clipboard\n - `\"move\"` when content is moved\n - `\"move.drop\"` when content is moved within the editor through drag-and-drop\n - `\"select\"` when explicitly changing the selection\n - `\"select.pointer\"` when selecting with a mouse or other pointing device\n - `\"undo\"` and `\"redo\"` for history actions\n\nUse [`isUserEvent`](https://codemirror.net/6/docs/ref/#state.Transaction.isUserEvent) to check\nwhether the annotation matches a given event.\n*/\nTransaction.userEvent = /*@__PURE__*/Annotation.define();\n/**\nAnnotation indicating whether a transaction should be added to\nthe undo history or not.\n*/\nTransaction.addToHistory = /*@__PURE__*/Annotation.define();\n/**\nAnnotation indicating (when present and true) that a transaction\nrepresents a change made by some other actor, not the user. This\nis used, for example, to tag other people's changes in\ncollaborative editing.\n*/\nTransaction.remote = /*@__PURE__*/Annotation.define();\nfunction joinRanges(a, b) {\n let result = [];\n for (let iA = 0, iB = 0;;) {\n let from, to;\n if (iA < a.length && (iB == b.length || b[iB] >= a[iA])) {\n from = a[iA++];\n to = a[iA++];\n }\n else if (iB < b.length) {\n from = b[iB++];\n to = b[iB++];\n }\n else\n return result;\n if (!result.length || result[result.length - 1] < from)\n result.push(from, to);\n else if (result[result.length - 1] < to)\n result[result.length - 1] = to;\n }\n}\nfunction mergeTransaction(a, b, sequential) {\n var _a;\n let mapForA, mapForB, changes;\n if (sequential) {\n mapForA = b.changes;\n mapForB = ChangeSet.empty(b.changes.length);\n changes = a.changes.compose(b.changes);\n }\n else {\n mapForA = b.changes.map(a.changes);\n mapForB = a.changes.mapDesc(b.changes, true);\n changes = a.changes.compose(mapForA);\n }\n return {\n changes,\n selection: b.selection ? b.selection.map(mapForB) : (_a = a.selection) === null || _a === void 0 ? void 0 : _a.map(mapForA),\n effects: StateEffect.mapEffects(a.effects, mapForA).concat(StateEffect.mapEffects(b.effects, mapForB)),\n annotations: a.annotations.length ? a.annotations.concat(b.annotations) : b.annotations,\n scrollIntoView: a.scrollIntoView || b.scrollIntoView\n };\n}\nfunction resolveTransactionInner(state, spec, docSize) {\n let sel = spec.selection, annotations = asArray(spec.annotations);\n if (spec.userEvent)\n annotations = annotations.concat(Transaction.userEvent.of(spec.userEvent));\n return {\n changes: spec.changes instanceof ChangeSet ? spec.changes\n : ChangeSet.of(spec.changes || [], docSize, state.facet(lineSeparator)),\n selection: sel && (sel instanceof EditorSelection ? sel : EditorSelection.single(sel.anchor, sel.head)),\n effects: asArray(spec.effects),\n annotations,\n scrollIntoView: !!spec.scrollIntoView\n };\n}\nfunction resolveTransaction(state, specs, filter) {\n let s = resolveTransactionInner(state, specs.length ? specs[0] : {}, state.doc.length);\n if (specs.length && specs[0].filter === false)\n filter = false;\n for (let i = 1; i < specs.length; i++) {\n if (specs[i].filter === false)\n filter = false;\n let seq = !!specs[i].sequential;\n s = mergeTransaction(s, resolveTransactionInner(state, specs[i], seq ? s.changes.newLength : state.doc.length), seq);\n }\n let tr = Transaction.create(state, s.changes, s.selection, s.effects, s.annotations, s.scrollIntoView);\n return extendTransaction(filter ? filterTransaction(tr) : tr);\n}\n// Finish a transaction by applying filters if necessary.\nfunction filterTransaction(tr) {\n let state = tr.startState;\n // Change filters\n let result = true;\n for (let filter of state.facet(changeFilter)) {\n let value = filter(tr);\n if (value === false) {\n result = false;\n break;\n }\n if (Array.isArray(value))\n result = result === true ? value : joinRanges(result, value);\n }\n if (result !== true) {\n let changes, back;\n if (result === false) {\n back = tr.changes.invertedDesc;\n changes = ChangeSet.empty(state.doc.length);\n }\n else {\n let filtered = tr.changes.filter(result);\n changes = filtered.changes;\n back = filtered.filtered.mapDesc(filtered.changes).invertedDesc;\n }\n tr = Transaction.create(state, changes, tr.selection && tr.selection.map(back), StateEffect.mapEffects(tr.effects, back), tr.annotations, tr.scrollIntoView);\n }\n // Transaction filters\n let filters = state.facet(transactionFilter);\n for (let i = filters.length - 1; i >= 0; i--) {\n let filtered = filters[i](tr);\n if (filtered instanceof Transaction)\n tr = filtered;\n else if (Array.isArray(filtered) && filtered.length == 1 && filtered[0] instanceof Transaction)\n tr = filtered[0];\n else\n tr = resolveTransaction(state, asArray(filtered), false);\n }\n return tr;\n}\nfunction extendTransaction(tr) {\n let state = tr.startState, extenders = state.facet(transactionExtender), spec = tr;\n for (let i = extenders.length - 1; i >= 0; i--) {\n let extension = extenders[i](tr);\n if (extension && Object.keys(extension).length)\n spec = mergeTransaction(spec, resolveTransactionInner(state, extension, tr.changes.newLength), true);\n }\n return spec == tr ? tr : Transaction.create(state, tr.changes, tr.selection, spec.effects, spec.annotations, spec.scrollIntoView);\n}\nconst none = [];\nfunction asArray(value) {\n return value == null ? none : Array.isArray(value) ? value : [value];\n}\n\n/**\nThe categories produced by a [character\ncategorizer](https://codemirror.net/6/docs/ref/#state.EditorState.charCategorizer). These are used\ndo things like selecting by word.\n*/\nvar CharCategory = /*@__PURE__*/(function (CharCategory) {\n /**\n Word characters.\n */\n CharCategory[CharCategory[\"Word\"] = 0] = \"Word\";\n /**\n Whitespace.\n */\n CharCategory[CharCategory[\"Space\"] = 1] = \"Space\";\n /**\n Anything else.\n */\n CharCategory[CharCategory[\"Other\"] = 2] = \"Other\";\nreturn CharCategory})(CharCategory || (CharCategory = {}));\nconst nonASCIISingleCaseWordChar = /[\\u00df\\u0587\\u0590-\\u05f4\\u0600-\\u06ff\\u3040-\\u309f\\u30a0-\\u30ff\\u3400-\\u4db5\\u4e00-\\u9fcc\\uac00-\\ud7af]/;\nlet wordChar;\ntry {\n wordChar = /*@__PURE__*/new RegExp(\"[\\\\p{Alphabetic}\\\\p{Number}_]\", \"u\");\n}\ncatch (_) { }\nfunction hasWordChar(str) {\n if (wordChar)\n return wordChar.test(str);\n for (let i = 0; i < str.length; i++) {\n let ch = str[i];\n if (/\\w/.test(ch) || ch > \"\\x80\" && (ch.toUpperCase() != ch.toLowerCase() || nonASCIISingleCaseWordChar.test(ch)))\n return true;\n }\n return false;\n}\nfunction makeCategorizer(wordChars) {\n return (char) => {\n if (!/\\S/.test(char))\n return CharCategory.Space;\n if (hasWordChar(char))\n return CharCategory.Word;\n for (let i = 0; i < wordChars.length; i++)\n if (char.indexOf(wordChars[i]) > -1)\n return CharCategory.Word;\n return CharCategory.Other;\n };\n}\n\n/**\nThe editor state class is a persistent (immutable) data structure.\nTo update a state, you [create](https://codemirror.net/6/docs/ref/#state.EditorState.update) a\n[transaction](https://codemirror.net/6/docs/ref/#state.Transaction), which produces a _new_ state\ninstance, without modifying the original object.\n\nAs such, _never_ mutate properties of a state directly. That'll\njust break things.\n*/\nclass EditorState {\n constructor(\n /**\n @internal\n */\n config, \n /**\n The current document.\n */\n doc, \n /**\n The current selection.\n */\n selection, \n /**\n @internal\n */\n values, computeSlot, tr) {\n this.config = config;\n this.doc = doc;\n this.selection = selection;\n this.values = values;\n this.status = config.statusTemplate.slice();\n this.computeSlot = computeSlot;\n // Fill in the computed state immediately, so that further queries\n // for it made during the update return this state\n if (tr)\n tr._state = this;\n for (let i = 0; i < this.config.dynamicSlots.length; i++)\n ensureAddr(this, i << 1);\n this.computeSlot = null;\n }\n field(field, require = true) {\n let addr = this.config.address[field.id];\n if (addr == null) {\n if (require)\n throw new RangeError(\"Field is not present in this state\");\n return undefined;\n }\n ensureAddr(this, addr);\n return getAddr(this, addr);\n }\n /**\n Create a [transaction](https://codemirror.net/6/docs/ref/#state.Transaction) that updates this\n state. Any number of [transaction specs](https://codemirror.net/6/docs/ref/#state.TransactionSpec)\n can be passed. Unless\n [`sequential`](https://codemirror.net/6/docs/ref/#state.TransactionSpec.sequential) is set, the\n [changes](https://codemirror.net/6/docs/ref/#state.TransactionSpec.changes) (if any) of each spec\n are assumed to start in the _current_ document (not the document\n produced by previous specs), and its\n [selection](https://codemirror.net/6/docs/ref/#state.TransactionSpec.selection) and\n [effects](https://codemirror.net/6/docs/ref/#state.TransactionSpec.effects) are assumed to refer\n to the document created by its _own_ changes. The resulting\n transaction contains the combined effect of all the different\n specs. For [selection](https://codemirror.net/6/docs/ref/#state.TransactionSpec.selection), later\n specs take precedence over earlier ones.\n */\n update(...specs) {\n return resolveTransaction(this, specs, true);\n }\n /**\n @internal\n */\n applyTransaction(tr) {\n let conf = this.config, { base, compartments } = conf;\n for (let effect of tr.effects) {\n if (effect.is(Compartment.reconfigure)) {\n if (conf) {\n compartments = new Map;\n conf.compartments.forEach((val, key) => compartments.set(key, val));\n conf = null;\n }\n compartments.set(effect.value.compartment, effect.value.extension);\n }\n else if (effect.is(StateEffect.reconfigure)) {\n conf = null;\n base = effect.value;\n }\n else if (effect.is(StateEffect.appendConfig)) {\n conf = null;\n base = asArray(base).concat(effect.value);\n }\n }\n let startValues;\n if (!conf) {\n conf = Configuration.resolve(base, compartments, this);\n let intermediateState = new EditorState(conf, this.doc, this.selection, conf.dynamicSlots.map(() => null), (state, slot) => slot.reconfigure(state, this), null);\n startValues = intermediateState.values;\n }\n else {\n startValues = tr.startState.values.slice();\n }\n let selection = tr.startState.facet(allowMultipleSelections) ? tr.newSelection : tr.newSelection.asSingle();\n new EditorState(conf, tr.newDoc, selection, startValues, (state, slot) => slot.update(state, tr), tr);\n }\n /**\n Create a [transaction spec](https://codemirror.net/6/docs/ref/#state.TransactionSpec) that\n replaces every selection range with the given content.\n */\n replaceSelection(text) {\n if (typeof text == \"string\")\n text = this.toText(text);\n return this.changeByRange(range => ({ changes: { from: range.from, to: range.to, insert: text },\n range: EditorSelection.cursor(range.from + text.length) }));\n }\n /**\n Create a set of changes and a new selection by running the given\n function for each range in the active selection. The function\n can return an optional set of changes (in the coordinate space\n of the start document), plus an updated range (in the coordinate\n space of the document produced by the call's own changes). This\n method will merge all the changes and ranges into a single\n changeset and selection, and return it as a [transaction\n spec](https://codemirror.net/6/docs/ref/#state.TransactionSpec), which can be passed to\n [`update`](https://codemirror.net/6/docs/ref/#state.EditorState.update).\n */\n changeByRange(f) {\n let sel = this.selection;\n let result1 = f(sel.ranges[0]);\n let changes = this.changes(result1.changes), ranges = [result1.range];\n let effects = asArray(result1.effects);\n for (let i = 1; i < sel.ranges.length; i++) {\n let result = f(sel.ranges[i]);\n let newChanges = this.changes(result.changes), newMapped = newChanges.map(changes);\n for (let j = 0; j < i; j++)\n ranges[j] = ranges[j].map(newMapped);\n let mapBy = changes.mapDesc(newChanges, true);\n ranges.push(result.range.map(mapBy));\n changes = changes.compose(newMapped);\n effects = StateEffect.mapEffects(effects, newMapped).concat(StateEffect.mapEffects(asArray(result.effects), mapBy));\n }\n return {\n changes,\n selection: EditorSelection.create(ranges, sel.mainIndex),\n effects\n };\n }\n /**\n Create a [change set](https://codemirror.net/6/docs/ref/#state.ChangeSet) from the given change\n description, taking the state's document length and line\n separator into account.\n */\n changes(spec = []) {\n if (spec instanceof ChangeSet)\n return spec;\n return ChangeSet.of(spec, this.doc.length, this.facet(EditorState.lineSeparator));\n }\n /**\n Using the state's [line\n separator](https://codemirror.net/6/docs/ref/#state.EditorState^lineSeparator), create a\n [`Text`](https://codemirror.net/6/docs/ref/#state.Text) instance from the given string.\n */\n toText(string) {\n return Text.of(string.split(this.facet(EditorState.lineSeparator) || DefaultSplit));\n }\n /**\n Return the given range of the document as a string.\n */\n sliceDoc(from = 0, to = this.doc.length) {\n return this.doc.sliceString(from, to, this.lineBreak);\n }\n /**\n Get the value of a state [facet](https://codemirror.net/6/docs/ref/#state.Facet).\n */\n facet(facet) {\n let addr = this.config.address[facet.id];\n if (addr == null)\n return facet.default;\n ensureAddr(this, addr);\n return getAddr(this, addr);\n }\n /**\n Convert this state to a JSON-serializable object. When custom\n fields should be serialized, you can pass them in as an object\n mapping property names (in the resulting object, which should\n not use `doc` or `selection`) to fields.\n */\n toJSON(fields) {\n let result = {\n doc: this.sliceDoc(),\n selection: this.selection.toJSON()\n };\n if (fields)\n for (let prop in fields) {\n let value = fields[prop];\n if (value instanceof StateField && this.config.address[value.id] != null)\n result[prop] = value.spec.toJSON(this.field(fields[prop]), this);\n }\n return result;\n }\n /**\n Deserialize a state from its JSON representation. When custom\n fields should be deserialized, pass the same object you passed\n to [`toJSON`](https://codemirror.net/6/docs/ref/#state.EditorState.toJSON) when serializing as\n third argument.\n */\n static fromJSON(json, config = {}, fields) {\n if (!json || typeof json.doc != \"string\")\n throw new RangeError(\"Invalid JSON representation for EditorState\");\n let fieldInit = [];\n if (fields)\n for (let prop in fields) {\n if (Object.prototype.hasOwnProperty.call(json, prop)) {\n let field = fields[prop], value = json[prop];\n fieldInit.push(field.init(state => field.spec.fromJSON(value, state)));\n }\n }\n return EditorState.create({\n doc: json.doc,\n selection: EditorSelection.fromJSON(json.selection),\n extensions: config.extensions ? fieldInit.concat([config.extensions]) : fieldInit\n });\n }\n /**\n Create a new state. You'll usually only need this when\n initializing an editor—updated states are created by applying\n transactions.\n */\n static create(config = {}) {\n let configuration = Configuration.resolve(config.extensions || [], new Map);\n let doc = config.doc instanceof Text ? config.doc\n : Text.of((config.doc || \"\").split(configuration.staticFacet(EditorState.lineSeparator) || DefaultSplit));\n let selection = !config.selection ? EditorSelection.single(0)\n : config.selection instanceof EditorSelection ? config.selection\n : EditorSelection.single(config.selection.anchor, config.selection.head);\n checkSelection(selection, doc.length);\n if (!configuration.staticFacet(allowMultipleSelections))\n selection = selection.asSingle();\n return new EditorState(configuration, doc, selection, configuration.dynamicSlots.map(() => null), (state, slot) => slot.create(state), null);\n }\n /**\n The size (in columns) of a tab in the document, determined by\n the [`tabSize`](https://codemirror.net/6/docs/ref/#state.EditorState^tabSize) facet.\n */\n get tabSize() { return this.facet(EditorState.tabSize); }\n /**\n Get the proper [line-break](https://codemirror.net/6/docs/ref/#state.EditorState^lineSeparator)\n string for this state.\n */\n get lineBreak() { return this.facet(EditorState.lineSeparator) || \"\\n\"; }\n /**\n Returns true when the editor is\n [configured](https://codemirror.net/6/docs/ref/#state.EditorState^readOnly) to be read-only.\n */\n get readOnly() { return this.facet(readOnly); }\n /**\n Look up a translation for the given phrase (via the\n [`phrases`](https://codemirror.net/6/docs/ref/#state.EditorState^phrases) facet), or return the\n original string if no translation is found.\n \n If additional arguments are passed, they will be inserted in\n place of markers like `$1` (for the first value) and `$2`, etc.\n A single `$` is equivalent to `$1`, and `$$` will produce a\n literal dollar sign.\n */\n phrase(phrase, ...insert) {\n for (let map of this.facet(EditorState.phrases))\n if (Object.prototype.hasOwnProperty.call(map, phrase)) {\n phrase = map[phrase];\n break;\n }\n if (insert.length)\n phrase = phrase.replace(/\\$(\\$|\\d*)/g, (m, i) => {\n if (i == \"$\")\n return \"$\";\n let n = +(i || 1);\n return !n || n > insert.length ? m : insert[n - 1];\n });\n return phrase;\n }\n /**\n Find the values for a given language data field, provided by the\n the [`languageData`](https://codemirror.net/6/docs/ref/#state.EditorState^languageData) facet.\n \n Examples of language data fields are...\n \n - [`\"commentTokens\"`](https://codemirror.net/6/docs/ref/#commands.CommentTokens) for specifying\n comment syntax.\n - [`\"autocomplete\"`](https://codemirror.net/6/docs/ref/#autocomplete.autocompletion^config.override)\n for providing language-specific completion sources.\n - [`\"wordChars\"`](https://codemirror.net/6/docs/ref/#state.EditorState.charCategorizer) for adding\n characters that should be considered part of words in this\n language.\n - [`\"closeBrackets\"`](https://codemirror.net/6/docs/ref/#autocomplete.CloseBracketConfig) controls\n bracket closing behavior.\n */\n languageDataAt(name, pos, side = -1) {\n let values = [];\n for (let provider of this.facet(languageData)) {\n for (let result of provider(this, pos, side)) {\n if (Object.prototype.hasOwnProperty.call(result, name))\n values.push(result[name]);\n }\n }\n return values;\n }\n /**\n Return a function that can categorize strings (expected to\n represent a single [grapheme cluster](https://codemirror.net/6/docs/ref/#state.findClusterBreak))\n into one of:\n \n - Word (contains an alphanumeric character or a character\n explicitly listed in the local language's `\"wordChars\"`\n language data, which should be a string)\n - Space (contains only whitespace)\n - Other (anything else)\n */\n charCategorizer(at) {\n return makeCategorizer(this.languageDataAt(\"wordChars\", at).join(\"\"));\n }\n /**\n Find the word at the given position, meaning the range\n containing all [word](https://codemirror.net/6/docs/ref/#state.CharCategory.Word) characters\n around it. If no word characters are adjacent to the position,\n this returns null.\n */\n wordAt(pos) {\n let { text, from, length } = this.doc.lineAt(pos);\n let cat = this.charCategorizer(pos);\n let start = pos - from, end = pos - from;\n while (start > 0) {\n let prev = findClusterBreak(text, start, false);\n if (cat(text.slice(prev, start)) != CharCategory.Word)\n break;\n start = prev;\n }\n while (end < length) {\n let next = findClusterBreak(text, end);\n if (cat(text.slice(end, next)) != CharCategory.Word)\n break;\n end = next;\n }\n return start == end ? null : EditorSelection.range(start + from, end + from);\n }\n}\n/**\nA facet that, when enabled, causes the editor to allow multiple\nranges to be selected. Be careful though, because by default the\neditor relies on the native DOM selection, which cannot handle\nmultiple selections. An extension like\n[`drawSelection`](https://codemirror.net/6/docs/ref/#view.drawSelection) can be used to make\nsecondary selections visible to the user.\n*/\nEditorState.allowMultipleSelections = allowMultipleSelections;\n/**\nConfigures the tab size to use in this state. The first\n(highest-precedence) value of the facet is used. If no value is\ngiven, this defaults to 4.\n*/\nEditorState.tabSize = /*@__PURE__*/Facet.define({\n combine: values => values.length ? values[0] : 4\n});\n/**\nThe line separator to use. By default, any of `\"\\n\"`, `\"\\r\\n\"`\nand `\"\\r\"` is treated as a separator when splitting lines, and\nlines are joined with `\"\\n\"`.\n\nWhen you configure a value here, only that precise separator\nwill be used, allowing you to round-trip documents through the\neditor without normalizing line separators.\n*/\nEditorState.lineSeparator = lineSeparator;\n/**\nThis facet controls the value of the\n[`readOnly`](https://codemirror.net/6/docs/ref/#state.EditorState.readOnly) getter, which is\nconsulted by commands and extensions that implement editing\nfunctionality to determine whether they should apply. It\ndefaults to false, but when its highest-precedence value is\n`true`, such functionality disables itself.\n\nNot to be confused with\n[`EditorView.editable`](https://codemirror.net/6/docs/ref/#view.EditorView^editable), which\ncontrols whether the editor's DOM is set to be editable (and\nthus focusable).\n*/\nEditorState.readOnly = readOnly;\n/**\nRegisters translation phrases. The\n[`phrase`](https://codemirror.net/6/docs/ref/#state.EditorState.phrase) method will look through\nall objects registered with this facet to find translations for\nits argument.\n*/\nEditorState.phrases = /*@__PURE__*/Facet.define({\n compare(a, b) {\n let kA = Object.keys(a), kB = Object.keys(b);\n return kA.length == kB.length && kA.every(k => a[k] == b[k]);\n }\n});\n/**\nA facet used to register [language\ndata](https://codemirror.net/6/docs/ref/#state.EditorState.languageDataAt) providers.\n*/\nEditorState.languageData = languageData;\n/**\nFacet used to register change filters, which are called for each\ntransaction (unless explicitly\n[disabled](https://codemirror.net/6/docs/ref/#state.TransactionSpec.filter)), and can suppress\npart of the transaction's changes.\n\nSuch a function can return `true` to indicate that it doesn't\nwant to do anything, `false` to completely stop the changes in\nthe transaction, or a set of ranges in which changes should be\nsuppressed. Such ranges are represented as an array of numbers,\nwith each pair of two numbers indicating the start and end of a\nrange. So for example `[10, 20, 100, 110]` suppresses changes\nbetween 10 and 20, and between 100 and 110.\n*/\nEditorState.changeFilter = changeFilter;\n/**\nFacet used to register a hook that gets a chance to update or\nreplace transaction specs before they are applied. This will\nonly be applied for transactions that don't have\n[`filter`](https://codemirror.net/6/docs/ref/#state.TransactionSpec.filter) set to `false`. You\ncan either return a single transaction spec (possibly the input\ntransaction), or an array of specs (which will be combined in\nthe same way as the arguments to\n[`EditorState.update`](https://codemirror.net/6/docs/ref/#state.EditorState.update)).\n\nWhen possible, it is recommended to avoid accessing\n[`Transaction.state`](https://codemirror.net/6/docs/ref/#state.Transaction.state) in a filter,\nsince it will force creation of a state that will then be\ndiscarded again, if the transaction is actually filtered.\n\n(This functionality should be used with care. Indiscriminately\nmodifying transaction is likely to break something or degrade\nthe user experience.)\n*/\nEditorState.transactionFilter = transactionFilter;\n/**\nThis is a more limited form of\n[`transactionFilter`](https://codemirror.net/6/docs/ref/#state.EditorState^transactionFilter),\nwhich can only add\n[annotations](https://codemirror.net/6/docs/ref/#state.TransactionSpec.annotations) and\n[effects](https://codemirror.net/6/docs/ref/#state.TransactionSpec.effects). _But_, this type\nof filter runs even if the transaction has disabled regular\n[filtering](https://codemirror.net/6/docs/ref/#state.TransactionSpec.filter), making it suitable\nfor effects that don't need to touch the changes or selection,\nbut do want to process every transaction.\n\nExtenders run _after_ filters, when both are present.\n*/\nEditorState.transactionExtender = transactionExtender;\nCompartment.reconfigure = /*@__PURE__*/StateEffect.define();\n\n/**\nUtility function for combining behaviors to fill in a config\nobject from an array of provided configs. `defaults` should hold\ndefault values for all optional fields in `Config`.\n\nThe function will, by default, error\nwhen a field gets two values that aren't `===`-equal, but you can\nprovide combine functions per field to do something else.\n*/\nfunction combineConfig(configs, defaults, // Should hold only the optional properties of Config, but I haven't managed to express that\ncombine = {}) {\n let result = {};\n for (let config of configs)\n for (let key of Object.keys(config)) {\n let value = config[key], current = result[key];\n if (current === undefined)\n result[key] = value;\n else if (current === value || value === undefined) ; // No conflict\n else if (Object.hasOwnProperty.call(combine, key))\n result[key] = combine[key](current, value);\n else\n throw new Error(\"Config merge conflict for field \" + key);\n }\n for (let key in defaults)\n if (result[key] === undefined)\n result[key] = defaults[key];\n return result;\n}\n\n/**\nEach range is associated with a value, which must inherit from\nthis class.\n*/\nclass RangeValue {\n /**\n Compare this value with another value. Used when comparing\n rangesets. The default implementation compares by identity.\n Unless you are only creating a fixed number of unique instances\n of your value type, it is a good idea to implement this\n properly.\n */\n eq(other) { return this == other; }\n /**\n Create a [range](https://codemirror.net/6/docs/ref/#state.Range) with this value.\n */\n range(from, to = from) { return Range.create(from, to, this); }\n}\nRangeValue.prototype.startSide = RangeValue.prototype.endSide = 0;\nRangeValue.prototype.point = false;\nRangeValue.prototype.mapMode = MapMode.TrackDel;\n/**\nA range associates a value with a range of positions.\n*/\nclass Range {\n constructor(\n /**\n The range's start position.\n */\n from, \n /**\n Its end position.\n */\n to, \n /**\n The value associated with this range.\n */\n value) {\n this.from = from;\n this.to = to;\n this.value = value;\n }\n /**\n @internal\n */\n static create(from, to, value) {\n return new Range(from, to, value);\n }\n}\nfunction cmpRange(a, b) {\n return a.from - b.from || a.value.startSide - b.value.startSide;\n}\nclass Chunk {\n constructor(from, to, value, \n // Chunks are marked with the largest point that occurs\n // in them (or -1 for no points), so that scans that are\n // only interested in points (such as the\n // heightmap-related logic) can skip range-only chunks.\n maxPoint) {\n this.from = from;\n this.to = to;\n this.value = value;\n this.maxPoint = maxPoint;\n }\n get length() { return this.to[this.to.length - 1]; }\n // Find the index of the given position and side. Use the ranges'\n // `from` pos when `end == false`, `to` when `end == true`.\n findIndex(pos, side, end, startAt = 0) {\n let arr = end ? this.to : this.from;\n for (let lo = startAt, hi = arr.length;;) {\n if (lo == hi)\n return lo;\n let mid = (lo + hi) >> 1;\n let diff = arr[mid] - pos || (end ? this.value[mid].endSide : this.value[mid].startSide) - side;\n if (mid == lo)\n return diff >= 0 ? lo : hi;\n if (diff >= 0)\n hi = mid;\n else\n lo = mid + 1;\n }\n }\n between(offset, from, to, f) {\n for (let i = this.findIndex(from, -1000000000 /* C.Far */, true), e = this.findIndex(to, 1000000000 /* C.Far */, false, i); i < e; i++)\n if (f(this.from[i] + offset, this.to[i] + offset, this.value[i]) === false)\n return false;\n }\n map(offset, changes) {\n let value = [], from = [], to = [], newPos = -1, maxPoint = -1;\n for (let i = 0; i < this.value.length; i++) {\n let val = this.value[i], curFrom = this.from[i] + offset, curTo = this.to[i] + offset, newFrom, newTo;\n if (curFrom == curTo) {\n let mapped = changes.mapPos(curFrom, val.startSide, val.mapMode);\n if (mapped == null)\n continue;\n newFrom = newTo = mapped;\n if (val.startSide != val.endSide) {\n newTo = changes.mapPos(curFrom, val.endSide);\n if (newTo < newFrom)\n continue;\n }\n }\n else {\n newFrom = changes.mapPos(curFrom, val.startSide);\n newTo = changes.mapPos(curTo, val.endSide);\n if (newFrom > newTo || newFrom == newTo && val.startSide > 0 && val.endSide <= 0)\n continue;\n }\n if ((newTo - newFrom || val.endSide - val.startSide) < 0)\n continue;\n if (newPos < 0)\n newPos = newFrom;\n if (val.point)\n maxPoint = Math.max(maxPoint, newTo - newFrom);\n value.push(val);\n from.push(newFrom - newPos);\n to.push(newTo - newPos);\n }\n return { mapped: value.length ? new Chunk(from, to, value, maxPoint) : null, pos: newPos };\n }\n}\n/**\nA range set stores a collection of [ranges](https://codemirror.net/6/docs/ref/#state.Range) in a\nway that makes them efficient to [map](https://codemirror.net/6/docs/ref/#state.RangeSet.map) and\n[update](https://codemirror.net/6/docs/ref/#state.RangeSet.update). This is an immutable data\nstructure.\n*/\nclass RangeSet {\n constructor(\n /**\n @internal\n */\n chunkPos, \n /**\n @internal\n */\n chunk, \n /**\n @internal\n */\n nextLayer, \n /**\n @internal\n */\n maxPoint) {\n this.chunkPos = chunkPos;\n this.chunk = chunk;\n this.nextLayer = nextLayer;\n this.maxPoint = maxPoint;\n }\n /**\n @internal\n */\n static create(chunkPos, chunk, nextLayer, maxPoint) {\n return new RangeSet(chunkPos, chunk, nextLayer, maxPoint);\n }\n /**\n @internal\n */\n get length() {\n let last = this.chunk.length - 1;\n return last < 0 ? 0 : Math.max(this.chunkEnd(last), this.nextLayer.length);\n }\n /**\n The number of ranges in the set.\n */\n get size() {\n if (this.isEmpty)\n return 0;\n let size = this.nextLayer.size;\n for (let chunk of this.chunk)\n size += chunk.value.length;\n return size;\n }\n /**\n @internal\n */\n chunkEnd(index) {\n return this.chunkPos[index] + this.chunk[index].length;\n }\n /**\n Update the range set, optionally adding new ranges or filtering\n out existing ones.\n \n (Note: The type parameter is just there as a kludge to work\n around TypeScript variance issues that prevented `RangeSet`\n from being a subtype of `RangeSet` when `X` is a subtype of\n `Y`.)\n */\n update(updateSpec) {\n let { add = [], sort = false, filterFrom = 0, filterTo = this.length } = updateSpec;\n let filter = updateSpec.filter;\n if (add.length == 0 && !filter)\n return this;\n if (sort)\n add = add.slice().sort(cmpRange);\n if (this.isEmpty)\n return add.length ? RangeSet.of(add) : this;\n let cur = new LayerCursor(this, null, -1).goto(0), i = 0, spill = [];\n let builder = new RangeSetBuilder();\n while (cur.value || i < add.length) {\n if (i < add.length && (cur.from - add[i].from || cur.startSide - add[i].value.startSide) >= 0) {\n let range = add[i++];\n if (!builder.addInner(range.from, range.to, range.value))\n spill.push(range);\n }\n else if (cur.rangeIndex == 1 && cur.chunkIndex < this.chunk.length &&\n (i == add.length || this.chunkEnd(cur.chunkIndex) < add[i].from) &&\n (!filter || filterFrom > this.chunkEnd(cur.chunkIndex) || filterTo < this.chunkPos[cur.chunkIndex]) &&\n builder.addChunk(this.chunkPos[cur.chunkIndex], this.chunk[cur.chunkIndex])) {\n cur.nextChunk();\n }\n else {\n if (!filter || filterFrom > cur.to || filterTo < cur.from || filter(cur.from, cur.to, cur.value)) {\n if (!builder.addInner(cur.from, cur.to, cur.value))\n spill.push(Range.create(cur.from, cur.to, cur.value));\n }\n cur.next();\n }\n }\n return builder.finishInner(this.nextLayer.isEmpty && !spill.length ? RangeSet.empty\n : this.nextLayer.update({ add: spill, filter, filterFrom, filterTo }));\n }\n /**\n Map this range set through a set of changes, return the new set.\n */\n map(changes) {\n if (changes.empty || this.isEmpty)\n return this;\n let chunks = [], chunkPos = [], maxPoint = -1;\n for (let i = 0; i < this.chunk.length; i++) {\n let start = this.chunkPos[i], chunk = this.chunk[i];\n let touch = changes.touchesRange(start, start + chunk.length);\n if (touch === false) {\n maxPoint = Math.max(maxPoint, chunk.maxPoint);\n chunks.push(chunk);\n chunkPos.push(changes.mapPos(start));\n }\n else if (touch === true) {\n let { mapped, pos } = chunk.map(start, changes);\n if (mapped) {\n maxPoint = Math.max(maxPoint, mapped.maxPoint);\n chunks.push(mapped);\n chunkPos.push(pos);\n }\n }\n }\n let next = this.nextLayer.map(changes);\n return chunks.length == 0 ? next : new RangeSet(chunkPos, chunks, next || RangeSet.empty, maxPoint);\n }\n /**\n Iterate over the ranges that touch the region `from` to `to`,\n calling `f` for each. There is no guarantee that the ranges will\n be reported in any specific order. When the callback returns\n `false`, iteration stops.\n */\n between(from, to, f) {\n if (this.isEmpty)\n return;\n for (let i = 0; i < this.chunk.length; i++) {\n let start = this.chunkPos[i], chunk = this.chunk[i];\n if (to >= start && from <= start + chunk.length &&\n chunk.between(start, from - start, to - start, f) === false)\n return;\n }\n this.nextLayer.between(from, to, f);\n }\n /**\n Iterate over the ranges in this set, in order, including all\n ranges that end at or after `from`.\n */\n iter(from = 0) {\n return HeapCursor.from([this]).goto(from);\n }\n /**\n @internal\n */\n get isEmpty() { return this.nextLayer == this; }\n /**\n Iterate over the ranges in a collection of sets, in order,\n starting from `from`.\n */\n static iter(sets, from = 0) {\n return HeapCursor.from(sets).goto(from);\n }\n /**\n Iterate over two groups of sets, calling methods on `comparator`\n to notify it of possible differences.\n */\n static compare(oldSets, newSets, \n /**\n This indicates how the underlying data changed between these\n ranges, and is needed to synchronize the iteration.\n */\n textDiff, comparator, \n /**\n Can be used to ignore all non-point ranges, and points below\n the given size. When -1, all ranges are compared.\n */\n minPointSize = -1) {\n let a = oldSets.filter(set => set.maxPoint > 0 || !set.isEmpty && set.maxPoint >= minPointSize);\n let b = newSets.filter(set => set.maxPoint > 0 || !set.isEmpty && set.maxPoint >= minPointSize);\n let sharedChunks = findSharedChunks(a, b, textDiff);\n let sideA = new SpanCursor(a, sharedChunks, minPointSize);\n let sideB = new SpanCursor(b, sharedChunks, minPointSize);\n textDiff.iterGaps((fromA, fromB, length) => compare(sideA, fromA, sideB, fromB, length, comparator));\n if (textDiff.empty && textDiff.length == 0)\n compare(sideA, 0, sideB, 0, 0, comparator);\n }\n /**\n Compare the contents of two groups of range sets, returning true\n if they are equivalent in the given range.\n */\n static eq(oldSets, newSets, from = 0, to) {\n if (to == null)\n to = 1000000000 /* C.Far */ - 1;\n let a = oldSets.filter(set => !set.isEmpty && newSets.indexOf(set) < 0);\n let b = newSets.filter(set => !set.isEmpty && oldSets.indexOf(set) < 0);\n if (a.length != b.length)\n return false;\n if (!a.length)\n return true;\n let sharedChunks = findSharedChunks(a, b);\n let sideA = new SpanCursor(a, sharedChunks, 0).goto(from), sideB = new SpanCursor(b, sharedChunks, 0).goto(from);\n for (;;) {\n if (sideA.to != sideB.to ||\n !sameValues(sideA.active, sideB.active) ||\n sideA.point && (!sideB.point || !sideA.point.eq(sideB.point)))\n return false;\n if (sideA.to > to)\n return true;\n sideA.next();\n sideB.next();\n }\n }\n /**\n Iterate over a group of range sets at the same time, notifying\n the iterator about the ranges covering every given piece of\n content. Returns the open count (see\n [`SpanIterator.span`](https://codemirror.net/6/docs/ref/#state.SpanIterator.span)) at the end\n of the iteration.\n */\n static spans(sets, from, to, iterator, \n /**\n When given and greater than -1, only points of at least this\n size are taken into account.\n */\n minPointSize = -1) {\n let cursor = new SpanCursor(sets, null, minPointSize).goto(from), pos = from;\n let openRanges = cursor.openStart;\n for (;;) {\n let curTo = Math.min(cursor.to, to);\n if (cursor.point) {\n let active = cursor.activeForPoint(cursor.to);\n let openCount = cursor.pointFrom < from ? active.length + 1\n : cursor.point.startSide < 0 ? active.length\n : Math.min(active.length, openRanges);\n iterator.point(pos, curTo, cursor.point, active, openCount, cursor.pointRank);\n openRanges = Math.min(cursor.openEnd(curTo), active.length);\n }\n else if (curTo > pos) {\n iterator.span(pos, curTo, cursor.active, openRanges);\n openRanges = cursor.openEnd(curTo);\n }\n if (cursor.to > to)\n return openRanges + (cursor.point && cursor.to > to ? 1 : 0);\n pos = cursor.to;\n cursor.next();\n }\n }\n /**\n Create a range set for the given range or array of ranges. By\n default, this expects the ranges to be _sorted_ (by start\n position and, if two start at the same position,\n `value.startSide`). You can pass `true` as second argument to\n cause the method to sort them.\n */\n static of(ranges, sort = false) {\n let build = new RangeSetBuilder();\n for (let range of ranges instanceof Range ? [ranges] : sort ? lazySort(ranges) : ranges)\n build.add(range.from, range.to, range.value);\n return build.finish();\n }\n /**\n Join an array of range sets into a single set.\n */\n static join(sets) {\n if (!sets.length)\n return RangeSet.empty;\n let result = sets[sets.length - 1];\n for (let i = sets.length - 2; i >= 0; i--) {\n for (let layer = sets[i]; layer != RangeSet.empty; layer = layer.nextLayer)\n result = new RangeSet(layer.chunkPos, layer.chunk, result, Math.max(layer.maxPoint, result.maxPoint));\n }\n return result;\n }\n}\n/**\nThe empty set of ranges.\n*/\nRangeSet.empty = /*@__PURE__*/new RangeSet([], [], null, -1);\nfunction lazySort(ranges) {\n if (ranges.length > 1)\n for (let prev = ranges[0], i = 1; i < ranges.length; i++) {\n let cur = ranges[i];\n if (cmpRange(prev, cur) > 0)\n return ranges.slice().sort(cmpRange);\n prev = cur;\n }\n return ranges;\n}\nRangeSet.empty.nextLayer = RangeSet.empty;\n/**\nA range set builder is a data structure that helps build up a\n[range set](https://codemirror.net/6/docs/ref/#state.RangeSet) directly, without first allocating\nan array of [`Range`](https://codemirror.net/6/docs/ref/#state.Range) objects.\n*/\nclass RangeSetBuilder {\n finishChunk(newArrays) {\n this.chunks.push(new Chunk(this.from, this.to, this.value, this.maxPoint));\n this.chunkPos.push(this.chunkStart);\n this.chunkStart = -1;\n this.setMaxPoint = Math.max(this.setMaxPoint, this.maxPoint);\n this.maxPoint = -1;\n if (newArrays) {\n this.from = [];\n this.to = [];\n this.value = [];\n }\n }\n /**\n Create an empty builder.\n */\n constructor() {\n this.chunks = [];\n this.chunkPos = [];\n this.chunkStart = -1;\n this.last = null;\n this.lastFrom = -1000000000 /* C.Far */;\n this.lastTo = -1000000000 /* C.Far */;\n this.from = [];\n this.to = [];\n this.value = [];\n this.maxPoint = -1;\n this.setMaxPoint = -1;\n this.nextLayer = null;\n }\n /**\n Add a range. Ranges should be added in sorted (by `from` and\n `value.startSide`) order.\n */\n add(from, to, value) {\n if (!this.addInner(from, to, value))\n (this.nextLayer || (this.nextLayer = new RangeSetBuilder)).add(from, to, value);\n }\n /**\n @internal\n */\n addInner(from, to, value) {\n let diff = from - this.lastTo || value.startSide - this.last.endSide;\n if (diff <= 0 && (from - this.lastFrom || value.startSide - this.last.startSide) < 0)\n throw new Error(\"Ranges must be added sorted by `from` position and `startSide`\");\n if (diff < 0)\n return false;\n if (this.from.length == 250 /* C.ChunkSize */)\n this.finishChunk(true);\n if (this.chunkStart < 0)\n this.chunkStart = from;\n this.from.push(from - this.chunkStart);\n this.to.push(to - this.chunkStart);\n this.last = value;\n this.lastFrom = from;\n this.lastTo = to;\n this.value.push(value);\n if (value.point)\n this.maxPoint = Math.max(this.maxPoint, to - from);\n return true;\n }\n /**\n @internal\n */\n addChunk(from, chunk) {\n if ((from - this.lastTo || chunk.value[0].startSide - this.last.endSide) < 0)\n return false;\n if (this.from.length)\n this.finishChunk(true);\n this.setMaxPoint = Math.max(this.setMaxPoint, chunk.maxPoint);\n this.chunks.push(chunk);\n this.chunkPos.push(from);\n let last = chunk.value.length - 1;\n this.last = chunk.value[last];\n this.lastFrom = chunk.from[last] + from;\n this.lastTo = chunk.to[last] + from;\n return true;\n }\n /**\n Finish the range set. Returns the new set. The builder can't be\n used anymore after this has been called.\n */\n finish() { return this.finishInner(RangeSet.empty); }\n /**\n @internal\n */\n finishInner(next) {\n if (this.from.length)\n this.finishChunk(false);\n if (this.chunks.length == 0)\n return next;\n let result = RangeSet.create(this.chunkPos, this.chunks, this.nextLayer ? this.nextLayer.finishInner(next) : next, this.setMaxPoint);\n this.from = null; // Make sure further `add` calls produce errors\n return result;\n }\n}\nfunction findSharedChunks(a, b, textDiff) {\n let inA = new Map();\n for (let set of a)\n for (let i = 0; i < set.chunk.length; i++)\n if (set.chunk[i].maxPoint <= 0)\n inA.set(set.chunk[i], set.chunkPos[i]);\n let shared = new Set();\n for (let set of b)\n for (let i = 0; i < set.chunk.length; i++) {\n let known = inA.get(set.chunk[i]);\n if (known != null && (textDiff ? textDiff.mapPos(known) : known) == set.chunkPos[i] &&\n !(textDiff === null || textDiff === void 0 ? void 0 : textDiff.touchesRange(known, known + set.chunk[i].length)))\n shared.add(set.chunk[i]);\n }\n return shared;\n}\nclass LayerCursor {\n constructor(layer, skip, minPoint, rank = 0) {\n this.layer = layer;\n this.skip = skip;\n this.minPoint = minPoint;\n this.rank = rank;\n }\n get startSide() { return this.value ? this.value.startSide : 0; }\n get endSide() { return this.value ? this.value.endSide : 0; }\n goto(pos, side = -1000000000 /* C.Far */) {\n this.chunkIndex = this.rangeIndex = 0;\n this.gotoInner(pos, side, false);\n return this;\n }\n gotoInner(pos, side, forward) {\n while (this.chunkIndex < this.layer.chunk.length) {\n let next = this.layer.chunk[this.chunkIndex];\n if (!(this.skip && this.skip.has(next) ||\n this.layer.chunkEnd(this.chunkIndex) < pos ||\n next.maxPoint < this.minPoint))\n break;\n this.chunkIndex++;\n forward = false;\n }\n if (this.chunkIndex < this.layer.chunk.length) {\n let rangeIndex = this.layer.chunk[this.chunkIndex].findIndex(pos - this.layer.chunkPos[this.chunkIndex], side, true);\n if (!forward || this.rangeIndex < rangeIndex)\n this.setRangeIndex(rangeIndex);\n }\n this.next();\n }\n forward(pos, side) {\n if ((this.to - pos || this.endSide - side) < 0)\n this.gotoInner(pos, side, true);\n }\n next() {\n for (;;) {\n if (this.chunkIndex == this.layer.chunk.length) {\n this.from = this.to = 1000000000 /* C.Far */;\n this.value = null;\n break;\n }\n else {\n let chunkPos = this.layer.chunkPos[this.chunkIndex], chunk = this.layer.chunk[this.chunkIndex];\n let from = chunkPos + chunk.from[this.rangeIndex];\n this.from = from;\n this.to = chunkPos + chunk.to[this.rangeIndex];\n this.value = chunk.value[this.rangeIndex];\n this.setRangeIndex(this.rangeIndex + 1);\n if (this.minPoint < 0 || this.value.point && this.to - this.from >= this.minPoint)\n break;\n }\n }\n }\n setRangeIndex(index) {\n if (index == this.layer.chunk[this.chunkIndex].value.length) {\n this.chunkIndex++;\n if (this.skip) {\n while (this.chunkIndex < this.layer.chunk.length && this.skip.has(this.layer.chunk[this.chunkIndex]))\n this.chunkIndex++;\n }\n this.rangeIndex = 0;\n }\n else {\n this.rangeIndex = index;\n }\n }\n nextChunk() {\n this.chunkIndex++;\n this.rangeIndex = 0;\n this.next();\n }\n compare(other) {\n return this.from - other.from || this.startSide - other.startSide || this.rank - other.rank ||\n this.to - other.to || this.endSide - other.endSide;\n }\n}\nclass HeapCursor {\n constructor(heap) {\n this.heap = heap;\n }\n static from(sets, skip = null, minPoint = -1) {\n let heap = [];\n for (let i = 0; i < sets.length; i++) {\n for (let cur = sets[i]; !cur.isEmpty; cur = cur.nextLayer) {\n if (cur.maxPoint >= minPoint)\n heap.push(new LayerCursor(cur, skip, minPoint, i));\n }\n }\n return heap.length == 1 ? heap[0] : new HeapCursor(heap);\n }\n get startSide() { return this.value ? this.value.startSide : 0; }\n goto(pos, side = -1000000000 /* C.Far */) {\n for (let cur of this.heap)\n cur.goto(pos, side);\n for (let i = this.heap.length >> 1; i >= 0; i--)\n heapBubble(this.heap, i);\n this.next();\n return this;\n }\n forward(pos, side) {\n for (let cur of this.heap)\n cur.forward(pos, side);\n for (let i = this.heap.length >> 1; i >= 0; i--)\n heapBubble(this.heap, i);\n if ((this.to - pos || this.value.endSide - side) < 0)\n this.next();\n }\n next() {\n if (this.heap.length == 0) {\n this.from = this.to = 1000000000 /* C.Far */;\n this.value = null;\n this.rank = -1;\n }\n else {\n let top = this.heap[0];\n this.from = top.from;\n this.to = top.to;\n this.value = top.value;\n this.rank = top.rank;\n if (top.value)\n top.next();\n heapBubble(this.heap, 0);\n }\n }\n}\nfunction heapBubble(heap, index) {\n for (let cur = heap[index];;) {\n let childIndex = (index << 1) + 1;\n if (childIndex >= heap.length)\n break;\n let child = heap[childIndex];\n if (childIndex + 1 < heap.length && child.compare(heap[childIndex + 1]) >= 0) {\n child = heap[childIndex + 1];\n childIndex++;\n }\n if (cur.compare(child) < 0)\n break;\n heap[childIndex] = cur;\n heap[index] = child;\n index = childIndex;\n }\n}\nclass SpanCursor {\n constructor(sets, skip, minPoint) {\n this.minPoint = minPoint;\n this.active = [];\n this.activeTo = [];\n this.activeRank = [];\n this.minActive = -1;\n // A currently active point range, if any\n this.point = null;\n this.pointFrom = 0;\n this.pointRank = 0;\n this.to = -1000000000 /* C.Far */;\n this.endSide = 0;\n // The amount of open active ranges at the start of the iterator.\n // Not including points.\n this.openStart = -1;\n this.cursor = HeapCursor.from(sets, skip, minPoint);\n }\n goto(pos, side = -1000000000 /* C.Far */) {\n this.cursor.goto(pos, side);\n this.active.length = this.activeTo.length = this.activeRank.length = 0;\n this.minActive = -1;\n this.to = pos;\n this.endSide = side;\n this.openStart = -1;\n this.next();\n return this;\n }\n forward(pos, side) {\n while (this.minActive > -1 && (this.activeTo[this.minActive] - pos || this.active[this.minActive].endSide - side) < 0)\n this.removeActive(this.minActive);\n this.cursor.forward(pos, side);\n }\n removeActive(index) {\n remove(this.active, index);\n remove(this.activeTo, index);\n remove(this.activeRank, index);\n this.minActive = findMinIndex(this.active, this.activeTo);\n }\n addActive(trackOpen) {\n let i = 0, { value, to, rank } = this.cursor;\n // Organize active marks by rank first, then by size\n while (i < this.activeRank.length && (rank - this.activeRank[i] || to - this.activeTo[i]) > 0)\n i++;\n insert(this.active, i, value);\n insert(this.activeTo, i, to);\n insert(this.activeRank, i, rank);\n if (trackOpen)\n insert(trackOpen, i, this.cursor.from);\n this.minActive = findMinIndex(this.active, this.activeTo);\n }\n // After calling this, if `this.point` != null, the next range is a\n // point. Otherwise, it's a regular range, covered by `this.active`.\n next() {\n let from = this.to, wasPoint = this.point;\n this.point = null;\n let trackOpen = this.openStart < 0 ? [] : null;\n for (;;) {\n let a = this.minActive;\n if (a > -1 && (this.activeTo[a] - this.cursor.from || this.active[a].endSide - this.cursor.startSide) < 0) {\n if (this.activeTo[a] > from) {\n this.to = this.activeTo[a];\n this.endSide = this.active[a].endSide;\n break;\n }\n this.removeActive(a);\n if (trackOpen)\n remove(trackOpen, a);\n }\n else if (!this.cursor.value) {\n this.to = this.endSide = 1000000000 /* C.Far */;\n break;\n }\n else if (this.cursor.from > from) {\n this.to = this.cursor.from;\n this.endSide = this.cursor.startSide;\n break;\n }\n else {\n let nextVal = this.cursor.value;\n if (!nextVal.point) { // Opening a range\n this.addActive(trackOpen);\n this.cursor.next();\n }\n else if (wasPoint && this.cursor.to == this.to && this.cursor.from < this.cursor.to) {\n // Ignore any non-empty points that end precisely at the end of the prev point\n this.cursor.next();\n }\n else { // New point\n this.point = nextVal;\n this.pointFrom = this.cursor.from;\n this.pointRank = this.cursor.rank;\n this.to = this.cursor.to;\n this.endSide = nextVal.endSide;\n this.cursor.next();\n this.forward(this.to, this.endSide);\n break;\n }\n }\n }\n if (trackOpen) {\n this.openStart = 0;\n for (let i = trackOpen.length - 1; i >= 0 && trackOpen[i] < from; i--)\n this.openStart++;\n }\n }\n activeForPoint(to) {\n if (!this.active.length)\n return this.active;\n let active = [];\n for (let i = this.active.length - 1; i >= 0; i--) {\n if (this.activeRank[i] < this.pointRank)\n break;\n if (this.activeTo[i] > to || this.activeTo[i] == to && this.active[i].endSide >= this.point.endSide)\n active.push(this.active[i]);\n }\n return active.reverse();\n }\n openEnd(to) {\n let open = 0;\n for (let i = this.activeTo.length - 1; i >= 0 && this.activeTo[i] > to; i--)\n open++;\n return open;\n }\n}\nfunction compare(a, startA, b, startB, length, comparator) {\n a.goto(startA);\n b.goto(startB);\n let endB = startB + length;\n let pos = startB, dPos = startB - startA;\n for (;;) {\n let diff = (a.to + dPos) - b.to || a.endSide - b.endSide;\n let end = diff < 0 ? a.to + dPos : b.to, clipEnd = Math.min(end, endB);\n if (a.point || b.point) {\n if (!(a.point && b.point && (a.point == b.point || a.point.eq(b.point)) &&\n sameValues(a.activeForPoint(a.to), b.activeForPoint(b.to))))\n comparator.comparePoint(pos, clipEnd, a.point, b.point);\n }\n else {\n if (clipEnd > pos && !sameValues(a.active, b.active))\n comparator.compareRange(pos, clipEnd, a.active, b.active);\n }\n if (end > endB)\n break;\n pos = end;\n if (diff <= 0)\n a.next();\n if (diff >= 0)\n b.next();\n }\n}\nfunction sameValues(a, b) {\n if (a.length != b.length)\n return false;\n for (let i = 0; i < a.length; i++)\n if (a[i] != b[i] && !a[i].eq(b[i]))\n return false;\n return true;\n}\nfunction remove(array, index) {\n for (let i = index, e = array.length - 1; i < e; i++)\n array[i] = array[i + 1];\n array.pop();\n}\nfunction insert(array, index, value) {\n for (let i = array.length - 1; i >= index; i--)\n array[i + 1] = array[i];\n array[index] = value;\n}\nfunction findMinIndex(value, array) {\n let found = -1, foundPos = 1000000000 /* C.Far */;\n for (let i = 0; i < array.length; i++)\n if ((array[i] - foundPos || value[i].endSide - value[found].endSide) < 0) {\n found = i;\n foundPos = array[i];\n }\n return found;\n}\n\n/**\nCount the column position at the given offset into the string,\ntaking extending characters and tab size into account.\n*/\nfunction countColumn(string, tabSize, to = string.length) {\n let n = 0;\n for (let i = 0; i < to;) {\n if (string.charCodeAt(i) == 9) {\n n += tabSize - (n % tabSize);\n i++;\n }\n else {\n n++;\n i = findClusterBreak(string, i);\n }\n }\n return n;\n}\n/**\nFind the offset that corresponds to the given column position in a\nstring, taking extending characters and tab size into account. By\ndefault, the string length is returned when it is too short to\nreach the column. Pass `strict` true to make it return -1 in that\nsituation.\n*/\nfunction findColumn(string, col, tabSize, strict) {\n for (let i = 0, n = 0;;) {\n if (n >= col)\n return i;\n if (i == string.length)\n break;\n n += string.charCodeAt(i) == 9 ? tabSize - (n % tabSize) : 1;\n i = findClusterBreak(string, i);\n }\n return strict === true ? -1 : string.length;\n}\n\nexport { Annotation, AnnotationType, ChangeDesc, ChangeSet, CharCategory, Compartment, EditorSelection, EditorState, Facet, Line, MapMode, Prec, Range, RangeSet, RangeSetBuilder, RangeValue, SelectionRange, StateEffect, StateEffectType, StateField, Text, Transaction, codePointAt, codePointSize, combineConfig, countColumn, findClusterBreak, findColumn, fromCodePoint };\n","const C = \"\\u037c\"\nconst COUNT = typeof Symbol == \"undefined\" ? \"__\" + C : Symbol.for(C)\nconst SET = typeof Symbol == \"undefined\" ? \"__styleSet\" + Math.floor(Math.random() * 1e8) : Symbol(\"styleSet\")\nconst top = typeof globalThis != \"undefined\" ? globalThis : typeof window != \"undefined\" ? window : {}\n\n// :: - Style modules encapsulate a set of CSS rules defined from\n// JavaScript. Their definitions are only available in a given DOM\n// root after it has been _mounted_ there with `StyleModule.mount`.\n//\n// Style modules should be created once and stored somewhere, as\n// opposed to re-creating them every time you need them. The amount of\n// CSS rules generated for a given DOM root is bounded by the amount\n// of style modules that were used. So to avoid leaking rules, don't\n// create these dynamically, but treat them as one-time allocations.\nexport class StyleModule {\n // :: (Object - + @@ -5432,1646 +5432,1796 @@ - - - - - -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } - - - +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } + + + + + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } - - +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } + + + + + + + + + + + + + + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 800; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } + + + + +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } - - +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @@ -7641,156 +7791,6 @@ -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } - - - - - - - - - - - - - -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } - - - - - - - - - - - - - + @@ -571,1646 +571,1796 @@ - - - - - -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } - - - +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } + + + + + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } - - +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } + + + + + + + + + + + + + + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 800; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } + + + + +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } - - +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @@ -2780,156 +2930,6 @@ -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } - - - - - - - - - - - - - -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } - - - - - - - - - - - - - + @@ -1562,1646 +1562,1796 @@ - - - - - -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } - - - +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } + + + + + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } - - +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } + + + + + + + + + + + + + + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 800; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } + + + + +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } - - +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @@ -3771,156 +3921,6 @@ -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } - - - - - - - - - - - - - -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } - - - - - - - - - - - - - + @@ -1344,1646 +1344,1796 @@ - - - - - -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } - - - +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } + + + + + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } - - +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } + + + + + + + + + + + + + + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 800; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } + + + + +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } - - +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @@ -3553,156 +3703,6 @@ -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } - - - - - - - - - - - - - -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } - - - - - - - - - - - - - + @@ -571,1646 +571,1796 @@ - - - - - -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } - - - +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } + + + + + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } - - +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } + + + + + + + + + + + + + + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 800; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } + + + + +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } - - +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @@ -2780,156 +2930,6 @@ -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } - - - - - - - - - - - - - -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } - - - - - - - - - - - - - + @@ -1811,1646 +1811,1796 @@ - - - - - -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } - - - +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } + + + + + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } - - +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } + + + + + + + + + + + + + + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 800; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } + + + + +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } - - +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @@ -4020,156 +4170,6 @@ -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } - - - - - - - - - - - - - -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } - - - - - - - - - - - - - + @@ -1886,1646 +1886,1796 @@ - - - - - -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 300; -src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 400; -src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 500; -src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 600; -src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 700; -src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: italic; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; +font-style: italic; font-weight: 800; -src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-inter-font-Inter } - - - +font-weight: 300; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 200; -src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-weight: 400; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 500; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 600; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +font-style: normal; +font-weight: 700; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 800; +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 800; -src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-stretch: 100%; +src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-opensans-font-Open-Sans } + + + + + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); -font-family: fifthtry-github-io-inter-font-Inter } - - +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: italic; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 500; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 700; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-roboto-font-Roboto } + + + + + + + + + + + + + + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 100; +src: url(-/fastn-community.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fastn-community.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 300; +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 300; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 400; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 500; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 600; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-600-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; -font-style: normal; -font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-hebrew.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 800; +src: url(-/fastn-community.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fastn-community.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-inter-font-Inter } + +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 800; -font-stretch: 100%; -src: url(-/fastn-community.github.io/opensans-font/static/Open-Sans-800-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-opensans-font-Open-Sans } +font-weight: 400; +src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lobster-font-Lobster } + + + + + + + @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-100-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+1F00-1FFF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0370-03FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 200; +src: url(-/fifthtry.github.io/inter-font/static/Inter-200-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-300-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-400-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; +font-style: normal; font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: normal; +font-weight: 500; +src: url(-/fifthtry.github.io/inter-font/static/Inter-500-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 600; +src: url(-/fifthtry.github.io/inter-font/static/Inter-600-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 700; +src: url(-/fifthtry.github.io/inter-font/static/Inter-700-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 800; +src: url(-/fifthtry.github.io/inter-font/static/Inter-800-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-cyrillic.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+1F00-1FFF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0370-03FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-greek.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } @font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-vietnamese.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin-ext.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: normal; +font-weight: 900; +src: url(-/fifthtry.github.io/inter-font/static/Inter-900-normal-latin.woff2) format('woff2'); +font-family: fifthtry-github-io-inter-font-Inter } + + + + +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 700; +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; +font-style: italic; +font-weight: 900; +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 500; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-500-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; +font-weight: 100; +src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; +font-weight: 300; +src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } +@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +font-weight: 400; +src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 700; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+1F00-1FFF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0370-03FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-greek.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; font-style: normal; font-weight: 900; -src: url(-/fastn-community.github.io/roboto-font/static/Roboto-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-roboto-font-Roboto } - - +src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); +font-family: fastn-community-github-io-lato-font-Lato } @@ -4095,156 +4245,6 @@ -@font-face { unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-cyrillic.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-vietnamese.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lobster-font/static/Lobster-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lobster-font-Lobster } - - - - - - - - - - - - - -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: italic; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-italic-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 100; -src: url(-/fastn-community.github.io/lato-font/static/Lato-100-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 300; -src: url(-/fastn-community.github.io/lato-font/static/Lato-300-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 400; -src: url(-/fastn-community.github.io/lato-font/static/Lato-400-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 700; -src: url(-/fastn-community.github.io/lato-font/static/Lato-700-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin-ext.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } -@font-face { unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; -font-style: normal; -font-weight: 900; -src: url(-/fastn-community.github.io/lato-font/static/Lato-900-normal-latin.woff2) format('woff2'); -font-family: fastn-community-github-io-lato-font-Lato } - - - - - - - - - - - -