pdf-factory 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/comparison/visualCompare.d.ts +26 -0
- package/dist/comparison/visualCompare.d.ts.map +1 -0
- package/dist/composition/editorTypes.d.ts +80 -0
- package/dist/composition/editorTypes.d.ts.map +1 -0
- package/dist/composition/footerLayouts.d.ts +5 -0
- package/dist/composition/footerLayouts.d.ts.map +1 -0
- package/dist/composition/headerLayouts.d.ts +4 -0
- package/dist/composition/headerLayouts.d.ts.map +1 -0
- package/dist/composition/page.d.ts +11 -0
- package/dist/composition/page.d.ts.map +1 -0
- package/dist/composition/printDispatcher.d.ts +31 -0
- package/dist/composition/printDispatcher.d.ts.map +1 -0
- package/dist/composition/printModalTypes.d.ts +66 -0
- package/dist/composition/printModalTypes.d.ts.map +1 -0
- package/dist/composition/seedingsFooter.d.ts +6 -0
- package/dist/composition/seedingsFooter.d.ts.map +1 -0
- package/dist/config/compositionCatalog.d.ts +20 -0
- package/dist/config/compositionCatalog.d.ts.map +1 -0
- package/dist/config/formatPresets.d.ts +5 -0
- package/dist/config/formatPresets.d.ts.map +1 -0
- package/dist/config/types.d.ts +99 -0
- package/dist/config/types.d.ts.map +1 -0
- package/dist/core/drawsDataToDrawData.d.ts +6 -0
- package/dist/core/drawsDataToDrawData.d.ts.map +1 -0
- package/dist/core/extractCompassData.d.ts +19 -0
- package/dist/core/extractCompassData.d.ts.map +1 -0
- package/dist/core/extractCourtCardData.d.ts +25 -0
- package/dist/core/extractCourtCardData.d.ts.map +1 -0
- package/dist/core/extractDrawData.d.ts +39 -0
- package/dist/core/extractDrawData.d.ts.map +1 -0
- package/dist/core/extractParticipantData.d.ts +17 -0
- package/dist/core/extractParticipantData.d.ts.map +1 -0
- package/dist/core/extractRoundRobinData.d.ts +30 -0
- package/dist/core/extractRoundRobinData.d.ts.map +1 -0
- package/dist/core/extractScheduleData.d.ts +34 -0
- package/dist/core/extractScheduleData.d.ts.map +1 -0
- package/dist/generators/courtCard.d.ts +9 -0
- package/dist/generators/courtCard.d.ts.map +1 -0
- package/dist/generators/drawPDF.d.ts +36 -0
- package/dist/generators/drawPDF.d.ts.map +1 -0
- package/dist/generators/drawSheet.d.ts +10 -0
- package/dist/generators/drawSheet.d.ts.map +1 -0
- package/dist/generators/generateFromEventData.d.ts +13 -0
- package/dist/generators/generateFromEventData.d.ts.map +1 -0
- package/dist/generators/matchCard.d.ts +25 -0
- package/dist/generators/matchCard.d.ts.map +1 -0
- package/dist/generators/playerList.d.ts +11 -0
- package/dist/generators/playerList.d.ts.map +1 -0
- package/dist/generators/schedule.d.ts +11 -0
- package/dist/generators/schedule.d.ts.map +1 -0
- package/dist/generators/scheduleV2.d.ts +18 -0
- package/dist/generators/scheduleV2.d.ts.map +1 -0
- package/dist/generators/sequentialOOP.d.ts +16 -0
- package/dist/generators/sequentialOOP.d.ts.map +1 -0
- package/dist/generators/signInSheet.d.ts +11 -0
- package/dist/generators/signInSheet.d.ts.map +1 -0
- package/dist/index.d.ts +77 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/layout/brackets.d.ts +26 -0
- package/dist/layout/brackets.d.ts.map +1 -0
- package/dist/layout/fonts.d.ts +20 -0
- package/dist/layout/fonts.d.ts.map +1 -0
- package/dist/layout/headers.d.ts +12 -0
- package/dist/layout/headers.d.ts.map +1 -0
- package/dist/layout/tables.d.ts +3 -0
- package/dist/layout/tables.d.ts.map +1 -0
- package/dist/parser/coordinateClustering.d.ts +16 -0
- package/dist/parser/coordinateClustering.d.ts.map +1 -0
- package/dist/parser/drawExtractor.d.ts +32 -0
- package/dist/parser/drawExtractor.d.ts.map +1 -0
- package/dist/parser/pdfExtractor.d.ts +37 -0
- package/dist/parser/pdfExtractor.d.ts.map +1 -0
- package/dist/parser/regionDetector.d.ts +16 -0
- package/dist/parser/regionDetector.d.ts.map +1 -0
- package/dist/parser/textAnalyzer.d.ts +23 -0
- package/dist/parser/textAnalyzer.d.ts.map +1 -0
- package/dist/parser/textMerger.d.ts +25 -0
- package/dist/parser/textMerger.d.ts.map +1 -0
- package/dist/pdf-factory.cjs +23 -0
- package/dist/pdf-factory.cjs.map +1 -0
- package/dist/pdf-factory.mjs +121901 -0
- package/dist/pdf-factory.mjs.map +1 -0
- package/dist/renderers/backdrawDraw.d.ts +9 -0
- package/dist/renderers/backdrawDraw.d.ts.map +1 -0
- package/dist/renderers/compassDraw.d.ts +5 -0
- package/dist/renderers/compassDraw.d.ts.map +1 -0
- package/dist/renderers/consolationDraw.d.ts +15 -0
- package/dist/renderers/consolationDraw.d.ts.map +1 -0
- package/dist/renderers/doubleEliminationDraw.d.ts +10 -0
- package/dist/renderers/doubleEliminationDraw.d.ts.map +1 -0
- package/dist/renderers/drawSplitter.d.ts +16 -0
- package/dist/renderers/drawSplitter.d.ts.map +1 -0
- package/dist/renderers/formatEntry.d.ts +10 -0
- package/dist/renderers/formatEntry.d.ts.map +1 -0
- package/dist/renderers/luckyDraw.d.ts +5 -0
- package/dist/renderers/luckyDraw.d.ts.map +1 -0
- package/dist/renderers/mirroredDraw.d.ts +5 -0
- package/dist/renderers/mirroredDraw.d.ts.map +1 -0
- package/dist/renderers/roundRobinDraw.d.ts +5 -0
- package/dist/renderers/roundRobinDraw.d.ts.map +1 -0
- package/dist/renderers/traditionalDraw.d.ts +15 -0
- package/dist/renderers/traditionalDraw.d.ts.map +1 -0
- package/dist/utils/primitives.d.ts +10 -0
- package/dist/utils/primitives.d.ts.map +1 -0
- package/package.json +111 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),s=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},c=(n,r,a)=>(a=n==null?{}:e(i(n)),s(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));let l=require(`jspdf`);l=c(l);let u=require(`jspdf-autotable`);u=c(u);var d={F:`Final`,SF:`Semi-Finals`,QF:`Quarter-Finals`,R16:`Round of 16`,R32:`Round of 32`,R64:`Round of 64`,R128:`Round of 128`},f={F:`Final`,SF:`Semi-Finals`,QF:`Quarter-Finals`,R16:`Fourth Round`,R32:`Third Round`,R64:`Second Round`,R128:`First Round`},p={F:`Final`,SF:`Semifinals`,QF:`Quarterfinals`,R16:`Round 4`,R32:`Round 3`,R64:`Round 2`,R128:`Round 1`},m={F:`FINALE`,SF:`1/2 FINALE`,QF:`1/4 FINALE`,R16:`1/8 FINALE`,R32:`3eme TOUR`,R64:`2eme TOUR`,R128:`1er TOUR`},h={pageSize:`a4`,orientation:`auto`,margins:{top:15,right:10,bottom:15,left:10}},g=`LAST, First`,_=`bare`,v=`before-position`,y=`brackets`,b=`-`,x=`traditional-lines`,S={wimbledon:{nameFormat:g,nationalityFormat:_,seedPosition:v,seedFormat:y,entryFormat:`parens`,gameScoreSeparator:b,setScoreSeparator:` `,retirementLabel:`Ret.`,walkoverLabel:`w/o`,roundLabels:f,renderStyle:x,page:{...h}},usOpen:{nameFormat:g,nationalityFormat:_,seedPosition:v,seedFormat:y,entryFormat:`parens`,gameScoreSeparator:b,setScoreSeparator:` | `,retirementLabel:`Ret.`,walkoverLabel:`w/o`,roundLabels:p,renderStyle:x,page:{...h}},rolandGarros:{nameFormat:`LAST First`,nationalityFormat:_,seedPosition:`after-country`,seedFormat:y,entryFormat:`parens`,gameScoreSeparator:`/`,setScoreSeparator:` `,retirementLabel:`Ab`,walkoverLabel:`w/o`,roundLabels:m,renderStyle:x,page:{...h}},australianOpen:{nameFormat:g,nationalityFormat:`parens`,seedPosition:`after-name`,seedFormat:y,entryFormat:`hyphen`,gameScoreSeparator:`/`,setScoreSeparator:` `,retirementLabel:`Ret.`,walkoverLabel:`w/o`,roundLabels:d,renderStyle:x,page:{...h,pageSize:`letter`,orientation:`portrait`}},itfJunior:{nameFormat:g,nationalityFormat:_,seedPosition:v,seedFormat:y,entryFormat:`bare`,gameScoreSeparator:b,setScoreSeparator:` `,retirementLabel:`Ret.`,walkoverLabel:`w/o`,roundLabels:d,renderStyle:x,page:{...h}},usta:{nameFormat:g,nationalityFormat:_,seedPosition:v,seedFormat:y,entryFormat:`bare`,gameScoreSeparator:b,setScoreSeparator:` `,retirementLabel:`Ret.`,walkoverLabel:`W/O`,roundLabels:d,renderStyle:x,page:{...h}}};function C(e){return S[e]||S.itfJunior}function w(e,t){return{...C(e),...t}}var T=`itfJunior`,E=`combined-tour`,D={"grand-slam":{id:`grand-slam`,name:`Grand Slam`,description:`Minimal chrome — large tournament name, timestamp footer`,category:`grand-slam`,tier:1,header:{layout:`grand-slam`},footer:{layout:`standard`,showPageNumbers:!0,showTimestamp:!0},drawFormatPreset:`wimbledon`},wimbledon:{id:`wimbledon`,name:`Wimbledon`,description:`Green/purple Grand Slam style with crest`,category:`grand-slam`,tier:1,header:{layout:`grand-slam`},footer:{layout:`standard`,showPageNumbers:!0,showTimestamp:!0},drawFormatPreset:`wimbledon`},"australian-open":{id:`australian-open`,name:`Australian Open`,description:`Grand Slam with seedings + prize money footer`,category:`grand-slam`,tier:2,header:{layout:`grand-slam`},footer:{layout:E,showPageNumbers:!0,showTimestamp:!0},drawFormatPreset:`australianOpen`},"wta-500":{id:`wta-500`,name:`WTA 500`,description:`Tour header with logos, seedings + prize money footer`,category:`tour`,tier:2,header:{layout:`wta-tour`},footer:{layout:E,showPageNumbers:!1,showTimestamp:!0},drawFormatPreset:T},"wta-1000":{id:`wta-1000`,name:`WTA 1000`,description:`Tour header with logos, full footer with officials`,category:`tour`,tier:2,header:{layout:`wta-tour`},footer:{layout:E,showPageNumbers:!1,showTimestamp:!0},drawFormatPreset:T},"atp-250":{id:`atp-250`,name:`ATP 250`,description:`ATP tour header, seedings + prize money footer with sign-off`,category:`tour`,tier:2,header:{layout:`wta-tour`},footer:{layout:E,showPageNumbers:!1,showTimestamp:!0},drawFormatPreset:T},"atp-finals":{id:`atp-finals`,name:`ATP Finals`,description:`Full official sign-off with signature lines`,category:`tour`,tier:3,header:{layout:`grand-slam`},footer:{layout:`officials-signoff`,showTimestamp:!0},drawFormatPreset:T},"itf-junior":{id:`itf-junior`,name:`ITF Junior`,description:`ITF header with metadata row, officials sign-off footer`,category:`itf`,tier:3,header:{layout:`itf`},footer:{layout:`officials-signoff`,showPageNumbers:!0,showTimestamp:!0},drawFormatPreset:T},"itf-pro-circuit":{id:`itf-pro-circuit`,name:`ITF Pro Circuit`,description:`ITF header, seedings + officials footer`,category:`itf`,tier:2,header:{layout:`itf`},footer:{layout:E,showPageNumbers:!0,showTimestamp:!0},drawFormatPreset:T},"national-federation":{id:`national-federation`,name:`National Federation`,description:`Detailed metadata header, full sign-off footer with ceremony date`,category:`national`,tier:3,header:{layout:`national-federation`},footer:{layout:`officials-signoff`,showPageNumbers:!0,showTimestamp:!0},drawFormatPreset:`usta`},"collegiate-ncaa":{id:`collegiate-ncaa`,name:`NCAA Collegiate`,description:`Mirrored bracket layout, team logos, minimal footer`,category:`collegiate`,tier:1,header:{layout:`grand-slam`},footer:{layout:`standard`,showPageNumbers:!0,showTimestamp:!0},drawFormatPreset:T},"club-basic":{id:`club-basic`,name:`Club Basic`,description:`Minimal header, standard footer — clean and simple`,category:`club`,tier:1,header:{layout:`minimal`},footer:{layout:`standard`,showPageNumbers:!0,showTimestamp:!0},drawFormatPreset:T}};function O(e){return D[e]}function k(e){let t=Object.values(D);return e?t.filter(t=>t.category===e):t}function A(e,t,n){let r=D[e]||D[`club-basic`];return{header:{...r.header,...t},footer:{...r.footer,...n}}}function j(e){let t=e.roundMatchUps||{},n=e.roundProfile||{},r=Object.keys(t).map(Number).sort((e,t)=>e-t),i=new Map;for(let e of r)for(let n of t[e]||[])for(let e of n.sides||[])if(e?.drawPosition&&!i.has(e.drawPosition)){let t=e.entryStatus||e.participant?.entryStatus,n=t&&t!==`DIRECT_ACCEPTANCE`?t:void 0;i.set(e.drawPosition,{drawPosition:e.drawPosition,participantName:e.participant?.participantName||``,nationality:e.participant?.nationalityCode||``,seedValue:e.seedValue,entryStatus:n,isBye:e.bye===!0})}let a=[];for(let e of r)for(let n of t[e]||[])a.push({roundNumber:n.roundNumber,roundPosition:n.roundPosition,drawPositions:n.drawPositions||[],score:n.score?.scoreStringSide1||``,winningSide:n.winningSide,matchUpStatus:n.matchUpStatus});let o={};for(let e of r){let t=n[e];o[e]=t?.abbreviatedRoundName||t?.roundName||`R${e}`}let s=r.length>0?Math.max(...r):0,c=[...i.values()].sort((e,t)=>e.drawPosition-t.drawPosition);return{drawName:e.structureName||``,drawSize:c.length,drawType:`SINGLE_ELIMINATION`,totalRounds:s,slots:c,matchUps:a,seedAssignments:(e.seedAssignments||[]).filter(e=>e.participantName).map(e=>({seedValue:e.seedValue,participantName:e.participantName||``,nationality:e.nationalityCode||``})),roundLabelMap:o}}function M(e,t){return e?.[0]?.structures?.find(e=>e.stage===t)}function N(e,t){let n=e.orientation;return n===`auto`&&(n=t&&t>=32?`landscape`:`portrait`),new l.default({orientation:n,format:e.pageSize,unit:`mm`})}function P(e,t,n,r){let i=e.internal.pageSize.getWidth(),a=e.internal.pageSize.getHeight(),{margins:o}=t;return{headerHeight:n,footerHeight:r,contentY:o.top+n,contentHeight:a-o.top-o.bottom-n-r,contentWidth:i-o.left-o.right,pageWidth:i,pageHeight:a}}function F(){return{pageSize:`a4`,orientation:`auto`,margins:{top:15,right:10,bottom:15,left:10}}}var ee={REGULAR:`helvetica`,BOLD:`helvetica`},I={NORMAL:`normal`,BOLD:`bold`,ITALIC:`italic`},L={TITLE:16,SUBTITLE:12,HEADING:10,BODY:8,SMALL:7,TINY:6};function R(e,t,n=I.NORMAL){e.setFont(ee.REGULAR,n),e.setFontSize(t)}function te(e,t,n){switch(t.layout){case`grand-slam`:return ne(e,t,n);case`itf`:return re(e,t,n);case`minimal`:return ie(e,t,n);case`wta-tour`:return ae(e,t,n);case`national-federation`:return oe(e,t,n);case`none`:return 0}}function ne(e,t,n){let{margins:r}=n,i=e.internal.pageSize.getWidth(),a=i-r.right,o=r.top;R(e,18,I.BOLD),e.text(t.tournamentName.toUpperCase(),i/2,o,{align:`center`}),o+=7,t.subtitle&&(R(e,12,I.BOLD),e.text(t.subtitle.toUpperCase(),i/2,o,{align:`center`}),o+=6),R(e,L.BODY,I.NORMAL);let s=[];if(t.startDate){let e=t.endDate?`${t.startDate} - ${t.endDate}`:t.startDate;s.push(e)}return t.location&&s.push(t.location),s.forEach((t,n)=>{e.text(t,a,r.top+n*4,{align:`right`})}),o+=2,e.setDrawColor(0),e.setLineWidth(.5),e.line(r.left,o,a,o),o+=3,o-r.top}function re(e,t,n){let{margins:r}=n,i=e.internal.pageSize.getWidth()-r.right,a=r.top;R(e,L.TITLE,I.BOLD),e.text(t.tournamentName,r.left,a),a+=6,t.subtitle&&(R(e,L.SUBTITLE,I.BOLD),e.text(t.subtitle,r.left,a),a+=5),R(e,L.SMALL,I.NORMAL);let o=[];t.grade&&o.push(`Grade: ${t.grade}`),t.surface&&o.push(`Surface: ${t.surface}`),t.supervisor&&o.push(`Supervisor: ${t.supervisor}`),o.forEach((t,n)=>{e.text(t,i,r.top+n*3.5,{align:`right`})}),R(e,L.BODY,I.NORMAL);let s=[];return t.startDate&&s.push(t.startDate),t.location&&s.push(t.location),t.organizer&&s.push(t.organizer),s.length&&(e.text(s.join(` | `),r.left,a),a+=4),a+=1,e.setDrawColor(0),e.setLineWidth(.3),e.line(r.left,a,i,a),a+=3,a-r.top}function ie(e,t,n){let{margins:r}=n,i=r.top;R(e,L.SUBTITLE,I.BOLD),e.text(t.tournamentName,r.left,i);let a=e.getTextWidth(t.tournamentName);return t.subtitle&&(R(e,L.BODY,I.NORMAL),e.text(` - ${t.subtitle}`,r.left+a,i)),i+=6,i-r.top}function ae(e,t,n){let{margins:r}=n,i=e.internal.pageSize.getWidth(),a=i-r.right,o=i/2,s=r.top;if(t.leftLogoBase64)try{e.addImage(t.leftLogoBase64,`PNG`,r.left,s-2,12,12)}catch{}if(t.rightLogoBase64)try{e.addImage(t.rightLogoBase64,`PNG`,a-12,s-2,12,12)}catch{}R(e,14,I.BOLD),e.text(t.tournamentName,o,s,{align:`center`}),s+=5;let c=[t.city,t.country].filter(Boolean).join(`, `);c&&(R(e,L.BODY,I.NORMAL),e.setTextColor(80),e.text(c.toUpperCase(),o,s,{align:`center`}),e.setTextColor(0),s+=4);let l=[];if(t.startDate){let e=t.endDate?`${t.startDate} - ${t.endDate}`:t.startDate;l.push(e)}if(t.prizeMoney){let e=t.currency?`${t.currency} ${t.prizeMoney}`:t.prizeMoney;l.push(e)}return t.surface&&l.push(t.surface),l.length&&(R(e,L.SMALL,I.NORMAL),e.text(l.join(` | `),o,s,{align:`center`}),s+=4),t.sectionLabel&&(R(e,L.SMALL,I.BOLD),e.text(t.sectionLabel.toUpperCase(),a,s,{align:`right`}),s+=3),s+=1,e.setDrawColor(0),e.setLineWidth(.3),e.line(r.left,s,a,s),s+=3,s-r.top}function oe(e,t,n){let{margins:r}=n,i=e.internal.pageSize.getWidth()-r.right,a=r.top;if(t.rightLogoBase64)try{e.addImage(t.rightLogoBase64,`PNG`,i-14,a-2,14,14)}catch{}R(e,L.TITLE,I.BOLD),e.text(t.tournamentName,r.left,a),a+=6,t.subtitle&&(R(e,L.HEADING,I.BOLD),e.text(t.subtitle,r.left,a),a+=4),R(e,L.TINY,I.NORMAL),e.setTextColor(80);let o=[];return t.startDate&&o.push(t.startDate),t.organizer&&o.push(t.organizer),(t.city||t.country)&&o.push([t.city,t.country].filter(Boolean).join(`, `)),t.tournamentId&&o.push(`ID: ${t.tournamentId}`),t.grade&&o.push(`Grade: ${t.grade}`),t.chiefUmpire&&o.push(`Umpire: ${t.chiefUmpire}`),o.length&&(e.text(o.join(` | `),r.left,a),a+=3),e.setTextColor(0),a+=1,e.setDrawColor(0),e.setLineWidth(.3),e.line(r.left,a,i,a),a+=3,a-r.top}function se(e,t,n,r){switch(t.layout){case`standard`:return le(e,t,n,r);case`seedings`:case`seedings-table`:return ue(e,t,n,r);case`prize-money`:return de(e,t,n,r);case`officials`:case`officials-signoff`:return fe(e,t,n,r);case`combined-tour`:return pe(e,t,n,r);case`none`:return 0}}function ce(e){switch(e.layout){case`standard`:return 8+(e.notes?.length||0)*3;case`seedings`:case`seedings-table`:return 12+Math.ceil((e.seedAssignments?.length||0)/2)*3;case`prize-money`:return 12+(e.prizeMoney?.length||0)*2.5;case`officials`:case`officials-signoff`:return 12+(e.signatureLines?.length||e.officials?.length||0)*5;case`combined-tour`:{let t=Math.ceil((e.seedAssignments?.length||0)/2),n=e.prizeMoney?.length||0;return 16+Math.max(t*3,n*2.5)+(e.withdrawals?.length?6:0)}case`none`:return 0}}function le(e,t,n,r){let i=e.internal.pageSize.getWidth(),a=e.internal.pageSize.getHeight(),{margins:o}=n,s=i-o.right,c=a-o.bottom;if(R(e,L.TINY,I.NORMAL),e.setTextColor(120),t.showTimestamp&&e.text(`Generated ${new Date().toLocaleDateString()}`,o.left,c),t.showPageNumbers&&r!==void 0&&e.text(`Page ${r}`,s,c,{align:`right`}),e.setTextColor(0),c-=3,e.setDrawColor(180),e.setLineWidth(.2),e.line(o.left,c,s,c),c-=2,t.notes?.length){R(e,L.TINY,I.ITALIC),e.setTextColor(100);for(let n=t.notes.length-1;n>=0;n--)e.text(t.notes[n],o.left,c),c-=3;e.setTextColor(0)}return ce(t)}function ue(e,t,n,r){let i=e.internal.pageSize.getWidth(),a=e.internal.pageSize.getHeight(),{margins:o}=n,s=i-o.right,c=ce(t),l=a-o.bottom-c+4;e.setDrawColor(180),e.setLineWidth(.2),e.line(o.left,l,s,l),l+=3,R(e,L.SMALL,I.BOLD),e.text(`Seeded Players`,o.left,l),l+=3;let u=t.seedAssignments||[],d=(s-o.left)/2;R(e,L.TINY,I.NORMAL);for(let t=0;t<u.length;t++){let n=t<Math.ceil(u.length/2)?0:1,r=n===0?t:t-Math.ceil(u.length/2),i=o.left+n*d,a=l+r*3,s=u[t],c=s.ranking?` (${s.ranking})`:``;e.text(`${s.seedValue}. ${s.participantName}${c}`,i,a)}let f=Math.ceil(u.length/2);return l+=f*3+2,me(e,t,n,r,l),c}function de(e,t,n,r){let i=e.internal.pageSize.getWidth(),a=e.internal.pageSize.getHeight(),{margins:o}=n,s=i-o.right,c=ce(t),l=a-o.bottom-c+4;e.setDrawColor(180),e.setLineWidth(.2),e.line(o.left,l,s,l),l+=3,R(e,L.SMALL,I.BOLD),e.text(`Prize Money`,o.left,l),l+=3;let u=t.prizeMoney||[];R(e,L.TINY,I.NORMAL);for(let t of u){let n=[t.round];t.amount&&n.push(t.amount),t.points&&n.push(`${t.points} pts`),e.text(n.join(` — `),o.left,l),l+=2.5}return l+=2,me(e,t,n,r,l),c}function fe(e,t,n,r){let i=e.internal.pageSize.getWidth(),a=e.internal.pageSize.getHeight(),{margins:o}=n,s=i-o.right,c=ce(t),l=a-o.bottom-c+4;e.setDrawColor(180),e.setLineWidth(.2),e.line(o.left,l,s,l),l+=4,t.drawCeremonyDate&&(R(e,L.TINY,I.ITALIC),e.setTextColor(80),e.text(`Draw ceremony: ${t.drawCeremonyDate}`,o.left,l),e.setTextColor(0),l+=3),t.releaseDate&&(R(e,L.TINY,I.ITALIC),e.setTextColor(80),e.text(`Released: ${t.releaseDate}`,o.left,l),e.setTextColor(0),l+=3);let u=t.signatureLines||(t.officials||[]).map(e=>({role:e})),d=(s-o.left)/Math.min(u.length,3);for(let t=0;t<u.length;t++){let n=t%3,r=Math.floor(t/3),i=o.left+n*d,a=l+r*10;R(e,L.TINY,I.ITALIC),e.setTextColor(100),e.text(u[t].role,i,a),e.setTextColor(0),u[t].name&&(R(e,L.TINY,I.BOLD),e.text(u[t].name,i,a+3)),e.setDrawColor(150),e.setLineWidth(.15),e.line(i,a+5,i+d-8,a+5)}let f=Math.ceil(u.length/3);return l+=f*10+2,me(e,t,n,r,l),c}function pe(e,t,n,r){let i=e.internal.pageSize.getWidth(),a=e.internal.pageSize.getHeight(),{margins:o}=n,s=i-o.right,c=ce(t),l=a-o.bottom-c+4;e.setDrawColor(180),e.setLineWidth(.2),e.line(o.left,l,s,l),l+=3;let u=s-o.left,d=o.left,f=o.left+u*.55,p=l,m=l,h=t.seedAssignments||[];if(h.length){R(e,L.SMALL,I.BOLD),e.text(`Seeded Players`,d,p),p+=3,R(e,L.TINY,I.NORMAL);for(let t of h){let n=t.ranking?` (${t.ranking})`:``;e.text(`${t.seedValue}. ${t.participantName}${n}`,d,p),p+=2.5}}let g=t.prizeMoney||[];if(g.length){R(e,L.SMALL,I.BOLD),e.text(`Prize Money`,f,m),m+=3,R(e,L.TINY,I.NORMAL);for(let t of g){let n=[t.round];t.amount&&n.push(t.amount),t.points&&n.push(`${t.points} pts`),e.text(n.join(` — `),f,m),m+=2.5}}if(l=Math.max(p,m)+2,t.withdrawals?.length){R(e,L.TINY,I.ITALIC),e.setTextColor(80);let n=t.withdrawals.map(e=>e.reason?`${e.name} (${e.reason})`:e.name).join(`, `);e.text(`Withdrawals: ${n}`,o.left,l,{maxWidth:u}),e.setTextColor(0),l+=3}return t.luckyLosers?.length&&(R(e,L.TINY,I.ITALIC),e.setTextColor(80),e.text(`Lucky Losers: ${t.luckyLosers.join(`, `)}`,o.left,l,{maxWidth:u}),e.setTextColor(0),l+=3),t.officials?.length&&(R(e,L.TINY,I.NORMAL),e.setTextColor(80),e.text(t.officials.join(` | `),o.left,l),e.setTextColor(0),l+=3),me(e,t,n,r,l),c}function me(e,t,n,r,i){let a=e.internal.pageSize.getWidth(),o=e.internal.pageSize.getHeight(),{margins:s}=n,c=a-s.right,l=o-s.bottom+2;if(R(e,L.TINY,I.NORMAL),e.setTextColor(120),t.showTimestamp&&e.text(`Generated ${new Date().toLocaleDateString()}`,s.left,l),t.releaseDate){let n=t.showTimestamp?s.left+50:s.left;e.text(`Released: ${t.releaseDate}`,n,l)}t.showPageNumbers&&r!==void 0&&e.text(`Page ${r}`,c,l,{align:`right`}),e.setTextColor(0)}var he=5,ge=2.5;function _e(e,t,n,r){let i=t.seedAssignments;if(!i.length)return r;let a=n.page.margins,o=e.internal.pageSize.getWidth()-a.left-a.right;R(e,he+1,I.BOLD),e.text(`Seeded players`,a.left,r),e.setDrawColor(150),e.setLineWidth(.15),e.line(a.left,r+1,a.left+o*.5,r+1),r+=3;let s=Math.ceil(i.length/2),c=i.slice(0,s),l=i.slice(s),u=o*.25,d=r;for(let t=0;t<Math.max(c.length,l.length);t++)c[t]&&ve(e,c[t],a.left,d,u),l[t]&&ve(e,l[t],a.left+u+4,d,u),d+=ge;return d}function ve(e,t,n,r,i){R(e,he,I.BOLD),e.text(`${t.seedValue}`,n+4,r,{align:`right`}),R(e,he,I.NORMAL),e.text(t.participantName,n+6,r),e.setTextColor(100),e.text(t.nationality,n+45,r),e.setTextColor(0)}function ye(e){return e===0?0:4+Math.ceil(e/2)*ge}function be(e,t){return e.type?e.composition?{success:!0,filename:xe(e)}:{success:!1,error:`Missing composition config`}:{success:!1,error:`Missing request type`}}function xe(e){let t=new Date().toISOString().slice(0,10);switch(e.type){case`draw`:return`draw-${t}.pdf`;case`schedule`:return`order-of-play-${e.scheduledDate||t}.pdf`;case`playerList`:return`player-list-${t}.pdf`;case`courtCards`:return`court-cards-${t}.pdf`;case`signInSheet`:return`sign-in-sheet-${t}.pdf`;case`matchCard`:return`match-cards-${t}.pdf`}}var Se=[{value:`grand-slam`,label:`Grand Slam`,description:`Centered tournament name, uppercase, date/location right`},{value:`itf`,label:`ITF/Professional`,description:`Left-aligned name, grade/supervisor on right, separator line`},{value:`minimal`,label:`Minimal`,description:`Single line with tournament name and subtitle`},{value:`none`,label:`No Header`,description:`Skip header entirely`}],Ce=[{value:`standard`,label:`Standard`,description:`Timestamp, page number, optional notes`},{value:`seedings`,label:`Seedings Table`,description:`Seeded players list in compact columns`},{value:`officials`,label:`Officials`,description:`Tournament officials with roles`},{value:`none`,label:`No Footer`,description:`Skip footer entirely`}],we=[{value:`a4`,label:`A4 (210 × 297mm)`},{value:`letter`,label:`US Letter (216 × 279mm)`}],Te=[{value:`auto`,label:`Auto (landscape for large draws)`},{value:`landscape`,label:`Landscape`},{value:`portrait`,label:`Portrait`}],Ee=[{value:`single-page`,label:`Single Page (dense)`},{value:`halves`,label:`Two Halves (64+64)`},{value:`quarters`,label:`Four Quarters (32×4)`}],De=[{id:`content`,label:`Content`,fields:[{id:`includeSeedings`,label:`Include seedings`,type:`checkbox`,defaultValue:!0,configPath:`content.draw.includeSeedings`},{id:`includeScores`,label:`Include scores`,type:`checkbox`,defaultValue:!0,configPath:`content.draw.includeScores`},{id:`showDrawPositions`,label:`Show draw positions`,type:`checkbox`,defaultValue:!0,configPath:`content.draw.showDrawPositions`},{id:`showByes`,label:`Show byes`,type:`checkbox`,defaultValue:!0,configPath:`content.draw.showByes`},{id:`splitStrategy`,label:`Split strategy`,type:`select`,options:[{value:`single-page`,label:`Single page`},{value:`halves`,label:`Split in halves`},{value:`quarters`,label:`Split in quarters`}],defaultValue:`single-page`,configPath:`content.draw.splitStrategy`}]},{id:`layout`,label:`Layout`,fields:[{id:`headerLayout`,label:`Header style`,type:`select`,options:[{value:`itf`,label:`ITF`},{value:`minimal`,label:`Minimal`},{value:`branded`,label:`Branded`}],defaultValue:`itf`,configPath:`header.layout`},{id:`orientation`,label:`Orientation`,type:`select`,options:[{value:`landscape`,label:`Landscape`},{value:`portrait`,label:`Portrait`}],defaultValue:`landscape`,configPath:`page.orientation`}]}],Oe=[{id:`content`,label:`Content`,fields:[{id:`cellStyle`,label:`Cell style`,type:`select`,options:[{value:`detailed`,label:`Detailed`},{value:`compact`,label:`Compact`}],defaultValue:`detailed`,configPath:`content.schedule.cellStyle`},{id:`showMatchNumbers`,label:`Show match numbers`,type:`checkbox`,defaultValue:!1,configPath:`content.schedule.showMatchNumbers`},{id:`alertBanner`,label:`Alert banner text`,type:`text`,configPath:`content.schedule.alertBanner`}]},{id:`layout`,label:`Layout`,fields:[{id:`headerLayout`,label:`Header style`,type:`select`,options:[{value:`itf`,label:`ITF`},{value:`minimal`,label:`Minimal`},{value:`branded`,label:`Branded`}],defaultValue:`itf`,configPath:`header.layout`}]}];function ke(e){if(!e)return``;if(e.person){let{standardFamilyName:t,standardGivenName:n}=e.person;if(t)return`${t.toUpperCase()}, ${n||``}`.trim()}return e.participantName||``}function Ae(e){return e&&e.person?.nationalityCode||``}function je(e){return e?`[${e}]`:``}function Me(e){return e?{DIRECT_ACCEPTANCE:`DA`,WILDCARD:`WC`,LUCKY_LOSER:`LL`,QUALIFIER:`Q`,ALTERNATE:`A`,SPECIAL_EXEMPT:`SE`}[e]||e:``}function Ne(e){return e?typeof e==`string`?e:e.scoreStringSide1?e.scoreStringSide1:``:``}function Pe(e){return e?new Date(e+`T00:00:00`).toLocaleDateString(`en-US`,{day:`2-digit`,month:`short`,year:`numeric`}):``}function Fe(e){if(!e)return``;let[t,n]=e.split(`:`),r=parseInt(t),i=r>=12?`PM`:`AM`,a=r;return r===0?a=12:r>12&&(a=r-12),`${a}:${n} ${i}`}function Ie(e){return e?e.split(/\s+/).map(e=>e[0]).join(``).toUpperCase():``}function Le(e,t){let n=t-e+1;return n===1?`F`:n===2?`SF`:n===3?`QF`:`R${2**n}`}function Re(e){let{drawDefinition:t,participants:n=[]}=e;if(!t)return Ve();let r=e.structureId?t.structures?.find(t=>t.structureId===e.structureId):t.structures?.[0];if(!r)return Ve();let i=new Map;n.forEach(e=>i.set(e.participantId,e));let a=r.positionAssignments||[],o=(r.matchUps||[]).reduce((e,t)=>Math.max(e,t.roundNumber||0),0),s=e.structureId?a.length:t.drawSize||a.length,c=e.structureId?o:Math.log2(s),l=r.seedAssignments||[],u=a.map(e=>{let t=e.participantId?i.get(e.participantId):void 0,n=l.find(t=>t.participantId===e.participantId);return{drawPosition:e.drawPosition,participantName:t?ke(t):``,nationality:t?Ae(t):``,seedValue:n?.seedValue,entryStatus:e.entryStatus,isBye:e.bye===!0}}),d=(r.matchUps||[]).map(e=>({roundNumber:e.roundNumber,roundPosition:e.roundPosition,drawPositions:e.drawPositions||[],score:Ne(e.score),winningSide:e.winningSide,matchUpStatus:e.matchUpStatus})),f=l.filter(e=>e.participantId).map(e=>{let t=i.get(e.participantId);return{seedValue:e.seedValue,participantName:t?ke(t):``,nationality:t?Ae(t):``}}).sort((e,t)=>e.seedValue-t.seedValue),p=Be(d,c,e.processedMatchUps);return{drawName:t.drawName||``,drawSize:s,drawType:t.drawType||`SINGLE_ELIMINATION`,totalRounds:c,slots:u,matchUps:d,seedAssignments:f,roundLabelMap:p}}function ze(e,t){return Le(e,t)}function Be(e,t,n){if(n?.length){let e={};for(let t of n)t.roundNumber&&!e[t.roundNumber]&&(e[t.roundNumber]=t.abbreviatedRoundName||t.roundName||`R${t.roundNumber}`);if(Object.keys(e).length>0)return e}let r=new Map;for(let t of e)r.set(t.roundNumber,(r.get(t.roundNumber)||0)+1);let i=[...r.keys()].sort((e,t)=>e-t);if(i.length>0&&i.every((e,t)=>{if(t===0)return!0;let n=r.get(i[t-1])||0;return(r.get(e)||0)<=Math.ceil(n/2)})){let e={};for(let n of i)e[n]=Le(n,t);return e}let a={};for(let e of i)a[e]=`R${e}`;return a}function Ve(){return{drawName:``,drawSize:0,drawType:``,totalRounds:0,slots:[],matchUps:[],seedAssignments:[]}}function He(e){let{matchUps:t=[],venues:n=[],scheduledDate:r=``}=e,i=new Set;n.forEach(e=>{(e.courts||[]).forEach(e=>{i.add(e.courtName||`Court ${e.courtId}`)})});let a=new Map;n.forEach(e=>{(e.courts||[]).forEach(e=>{a.set(e.courtId,e.courtName||`Court ${e.courtId}`)})});let o=t.filter(e=>e.schedule?.scheduledDate===r||!r),s=new Map;for(let e of o){let t=e.schedule||{},n=t.scheduledTime||`00:00`,r=t.venueCourtId||t.courtId||``,o=a.get(r)||r;o&&i.add(o);let c=e.sides||[],l=Ue(c[0]),u=Ue(c[1]),d={courtName:o,scheduledTime:Fe(n),eventName:e.eventName||e.event?.eventName||``,eventAbbr:Ie(e.eventName||e.event?.eventName||``),roundName:e.roundName||``,side1:l,side2:u,score:Ne(e.score),matchUpStatus:e.matchUpStatus,notBeforeTime:t.notBeforeTime?Fe(t.notBeforeTime):void 0},f=t.notBeforeTime||n;s.has(f)||s.set(f,[]),s.get(f).push(d)}let c=[...s.keys()].sort().map(e=>({time:e,label:Fe(e)||`TBD`,matches:s.get(e)||[]}));return{scheduledDate:r,courts:[...i].sort(),timeSlots:c}}function Ue(e){if(!e)return{name:``,nationality:``};let t=e.participant;return t?{name:ke(t),nationality:Ae(t)}:{name:``,nationality:``}}function We(e){let{participants:t=[],eventEntries:n=[]}=e,r=new Map;for(let{eventName:e,entries:t}of n)for(let n of t){let t=n.participantId;r.has(t)||r.set(t,{events:[],entryStatus:``,seedValue:void 0});let i=r.get(t);i.events.push(e),n.entryStatus&&(i.entryStatus=n.entryStatus)}return t.filter(e=>e.participantType===`INDIVIDUAL`).map(e=>{let t=r.get(e.participantId);return{name:ke(e),nationality:Ae(e),ranking:e.rankings?.[0]?.ranking?.toString()||``,seedValue:t?.seedValue,entryStatus:Me(t?.entryStatus||``),events:t?.events||[],signedIn:e.signInStatus===`SIGNED_IN`}}).sort((e,t)=>e.name.localeCompare(t.name))}function Ge(e){let{matchUps:t=[],venues:n=[]}=e,r=new Map;n.forEach(e=>{(e.courts||[]).forEach(t=>{r.set(t.courtId,{courtName:t.courtName||`Court ${t.courtId}`,venueName:e.venueName||``})})});let i=new Map;for(let e of t){let t=e.schedule?.venueCourtId||e.schedule?.courtId;t&&(i.has(t)||i.set(t,[]),i.get(t).push(e))}let a=[];for(let[e,t]of i){let n=r.get(e)||{courtName:e,venueName:``};t.sort((e,t)=>{let n=e.schedule?.scheduledTime||``,r=t.schedule?.scheduledTime||``;return n.localeCompare(r)});let i=t.find(e=>e.matchUpStatus===`IN_PROGRESS`),o=t.filter(e=>![`COMPLETED`,`RETIRED`,`WALKOVER`,`DEFAULTED`,`ABANDONED`].includes(e.matchUpStatus)),s=i||o[0],c=i?o.find(e=>e!==i):o[1];a.push({courtName:n.courtName,venueName:n.venueName,currentMatch:s?Ke(s):void 0,nextMatch:c?Ke(c):void 0})}return a.sort((e,t)=>e.courtName.localeCompare(t.courtName))}function Ke(e){let t=e.sides||[];return{eventName:e.eventName||e.event?.eventName||``,roundName:e.roundName||``,scheduledTime:e.schedule?.scheduledTime?Fe(e.schedule.scheduledTime):void 0,side1:qe(t[0]),side2:qe(t[1])}}function qe(e){return e?.participant?{name:ke(e.participant),nationality:Ae(e.participant)}:{name:`TBD`,nationality:``}}function Je(e){let{structure:t,participants:n=[]}=e;if(!t)return[];let r=new Map;n.forEach(e=>r.set(e.participantId,e));let i=t.structures||[];return i.length?i.map((e,t)=>{let n=e.positionAssignments||[],i=e.seedAssignments||[],a=n.filter(e=>e.participantId).map(e=>{let t=r.get(e.participantId),n=i.find(t=>t.participantId===e.participantId);return{participantName:t?ke(t):``,nationality:t?Ae(t):``,seedValue:n?.seedValue,groupPosition:e.drawPosition}}).sort((e,t)=>e.groupPosition-t.groupPosition),o=[];for(let t of e.matchUps||[]){if(!t.drawPositions||t.drawPositions.length<2)continue;let[e,n]=t.drawPositions,r=Ne(t.score);r&&o.push({rowPosition:e,colPosition:n,score:r,winningSide:t.winningSide})}return{groupName:e.structureName||`Group ${t+1}`,participants:a,results:o}}):[]}function Ye(e,t){if(e.isBye)return`Bye`;if(!e.participantName)return``;let n=Ze(e.participantName,t),r=Qe(e.nationality,t),i=e.seedValue?$e(e.seedValue,t):``,a=e.entryStatus?tt(e.entryStatus,t):``,o=[];return t.seedPosition===`before-position`&&i&&o.push(i),o.push(n),t.seedPosition===`after-name`&&i&&o.push(i),r&&o.push(r),t.seedPosition===`after-country`&&i&&o.push(i),a&&o.push(a),o.join(` `)}function Xe(e,t){if(e.isBye)return{name:`Bye`,nationality:``};if(!e.participantName)return{name:``,nationality:``};let n=Ze(e.participantName,t),r=e.seedValue?$e(e.seedValue,t):``,i=e.entryStatus?tt(e.entryStatus,t):``,a=[];return t.seedPosition===`before-position`&&r&&a.push(r),a.push(n),t.seedPosition===`after-name`&&r&&a.push(r),t.seedPosition===`after-country`&&r&&a.push(r),i&&a.push(i),{name:a.join(` `),nationality:e.nationality||``}}function Ze(e,t){if(t.nameFormat===`LAST First`)return e.replace(`,`,``);if(t.nameFormat===`F. LAST`){let t=e.match(/^([^,]+),\s*(.+)/);if(t)return`${t[2][0]}. ${t[1]}`}return e}function Qe(e,t){if(!e)return``;switch(t.nationalityFormat){case`parens`:return`(${e})`;case`hyphen`:return`-${e}`;default:return e}}function $e(e,t){return t.seedFormat===`parens`?`(${e})`:`[${e}]`}var et={DIRECT_ACCEPTANCE:``,WILDCARD:`WC`,QUALIFIER:`Q`,LUCKY_LOSER:`LL`,SPECIAL_EXEMPT:`SE`,ALTERNATE:`ALT`,PROTECTED_RANKING:`PR`,JUNIOR_EXEMPT:`JE`,ORGANISER_ACCEPTANCE:`OA`};function tt(e,t){if(!e)return``;let n=et[e];if(n===void 0)return e;if(!n)return``;switch(t.entryFormat){case`parens`:return`(${n})`;case`hyphen`:return`-${n}`;default:return n}}function nt(e,t){return e?t.gameScoreSeparator===`/`?e.replace(/(\d)-(\d)/g,`$1/$2`):e:``}function rt(e,t){let n=Math.log2(e),r=(t.contentHeight-9)/e,i=r<3.5,a=i?.8:1.5,o=n,s=a*(o+1),c=r<2,l=i?.18:.3,u=Math.min(i?38:65,t.contentWidth*l),d=t.contentWidth-u-s,f=c?8:0,p=d-f,m=Math.min(65,Math.max(8,p/Math.max(1,o))),h=m+f,g=L.SMALL;return r<2.5?g=5:r<3.5&&(g=L.TINY),{lineHeight:r,roundColumnWidth:m,firstRoundWidth:u,secondRoundWidth:h,connectorGap:a,fontSize:g,scoreFontSize:i?5:L.TINY}}function it(e,t,n,r,i=0,a){at(t.matchUps)?ot(e,t,n,r):ct(e,t,n,r,i,a)}function at(e){let t=new Map;for(let n of e)t.set(n.roundNumber,(t.get(n.roundNumber)||0)+1);let n=[...t.keys()].sort((e,t)=>e-t);for(let e=1;e<n.length;e++){let r=t.get(n[e-1])||0;if((t.get(n[e])||0)>=r)return!0}return!1}function ot(e,t,n,r){let i=n.page.margins,a=r.contentY+9,o=r.contentHeight-9,s=new Map;for(let e of t.matchUps)s.has(e.roundNumber)||s.set(e.roundNumber,[]),s.get(e.roundNumber).push(e);for(let[,e]of s)e.sort((e,t)=>e.roundPosition-t.roundPosition);let c=[...s.keys()].sort((e,t)=>e-t),l=c.length,u=new Map(t.slots.map(e=>[e.drawPosition,e])),d=new Set;for(let e=1;e<c.length;e++){let t=s.get(c[e-1])?.length||0;(s.get(c[e])?.length||0)>=t&&d.add(c[e])}let f=1.5,p=o/((s.get(c[0])?.length||1)*2),m=p<3.5,h=Math.min(m?50:60,r.contentWidth*.25),g=r.contentWidth-h-f*(l+1),_=Math.max(8,g/Math.max(1,l)),v=L.SMALL;p<2.5?v=5:p<3.5&&(v=L.TINY);let y=m?5:L.TINY,b={lineHeight:p,roundColumnWidth:_,firstRoundWidth:h,secondRoundWidth:_,connectorGap:f,fontSize:v,scoreFontSize:y},x=e=>e===0?i.left:i.left+h+f+(e-1)*(_+f);st(e,c,t,b,n,r,x,l,_);let S=new Map;for(let e=0;e<l;e++){let t=c[e],n=s.get(t)?.length||0;if(d.has(t)){let r=c[e-1],i=(S.get(r)||[]).slice(0,n).map(e=>e.bottomY-e.topY>p*2?{topY:e.midY-p,bottomY:e.midY+p,midY:e.midY}:{topY:e.topY,bottomY:e.bottomY,midY:e.midY});S.set(t,i)}else if(e===0){let e=o/(n*2+1),r=[];for(let t=0;t<n;t++){let n=a+e*(t*2+1),i=a+e*(t*2+2);r.push({topY:n,bottomY:i,midY:(n+i)/2})}S.set(t,r)}else{let r=c[e-1],i=S.get(r)||[],a=[];for(let e=0;e<n;e++){let t=i[e*2],n=i[e*2+1];if(t&&n){let e=t.midY,r=n.midY;a.push({topY:e,bottomY:r,midY:(e+r)/2})}}S.set(t,a)}}for(let t=0;t<l;t++){let r=c[t],i=s.get(r)||[],a=S.get(r)||[],o=x(t),p=t===0?h:_,m=d.has(r),g=o+p;for(let r=0;r<i.length;r++){let p=i[r],v=a[r];if(!v)continue;e.setDrawColor(40),e.setLineWidth(.25);let S=t<l-1&&d.has(c[t+1]);if(t===0)p.drawPositions[0]&&ft(e,u.get(p.drawPositions[0]),p.drawPositions[0],n,b,o,v.topY,h),p.drawPositions[1]&&ft(e,u.get(p.drawPositions[1]),p.drawPositions[1],n,b,o,v.bottomY,h),S?e.line(g,v.topY,g,v.bottomY):(e.line(g+f,v.topY,g+f,v.bottomY),e.line(g,v.topY,g+f,v.topY),e.line(g,v.bottomY,g+f,v.bottomY));else if(m){let r=c[t-1],i=s.get(r)||[],a=new Set;for(let e of i)e.winningSide&&a.add(e.drawPositions[e.winningSide-1]);let l=p.drawPositions.find(e=>e&&a.has(e)),d=p.drawPositions.find(e=>e&&e!==l);if(e.line(o,v.midY,o,v.bottomY),d?ft(e,u.get(d),d,n,b,o,v.topY,_):e.line(o,v.topY,o+_,v.topY),e.line(o,v.bottomY,o+_,v.bottomY),l){let t=u.get(l);t?.participantName&&pt(e,t,n,b,o,v.bottomY)}S?e.line(g,v.topY,g,v.bottomY):(e.line(g+f,v.topY,g+f,v.bottomY),e.line(g,v.topY,g+f,v.topY),e.line(g,v.bottomY,g+f,v.bottomY))}else{if(e.line(o,v.topY,o+_,v.topY),e.line(o,v.bottomY,o+_,v.bottomY),p.drawPositions[0]){let t=u.get(p.drawPositions[0]);t?.participantName&&pt(e,t,n,b,o,v.topY)}if(p.drawPositions[1]){let t=u.get(p.drawPositions[1]);t?.participantName&&pt(e,t,n,b,o,v.bottomY)}S?e.line(g,v.topY,g,v.bottomY):(e.line(g+f,v.topY,g+f,v.bottomY),e.line(g,v.topY,g+f,v.topY),e.line(g,v.bottomY,g+f,v.bottomY))}if(t<l-1){let n=x(t+1);S?e.line(g,v.midY,n,v.midY):e.line(g+f,v.midY,n,v.midY)}if(p.score){let t=nt(p.score,n);R(e,y,I.NORMAL),e.setTextColor(60,60,160);let r=v.midY+y*.12;e.text(t,g-1,r,{align:`right`}),e.setTextColor(0)}}}if(!t.noWinnerColumn){let t=x(l),r=c[l-1],i=(S.get(r)||[])[0]?.midY||a+o/2;e.setDrawColor(40),e.setLineWidth(.25),e.line(t,i,t+Math.min(65,_),i);let d=(s.get(r)||[])[0];if(d?.winningSide){let r=d.drawPositions[d.winningSide-1],a=u.get(r);if(a){R(e,v+1,I.BOLD);let{name:r}=Xe(a,n);if(e.text(r,t+1,i-.5),d.score){let r=nt(d.score,n);R(e,y,I.NORMAL),e.setTextColor(60,60,160),e.text(r,t+1,i+y*.4),e.setTextColor(0)}}}}}function st(e,t,n,r,i,a,o,s,c){R(e,r.fontSize<=L.TINY?5.5:L.SMALL,I.BOLD),e.setTextColor(40);for(let l=0;l<s;l++){let s=t[l],u=ze(s,n.totalRounds),d=n.roundLabelMap?.[s]||i.roundLabels[u]||u,f=o(l),p=l===0?r.firstRoundWidth:c;e.text(d,f+p/2,a.contentY+2,{align:`center`}),e.setDrawColor(160),e.setLineWidth(.15),e.line(f+2,a.contentY+3.5,f+p-2,a.contentY+3.5)}let l=o(s);e.text(`Winner`,l+c/2,a.contentY+2,{align:`center`}),e.setDrawColor(160),e.line(l+2,a.contentY+3.5,l+c-2,a.contentY+3.5),e.setTextColor(0)}function ct(e,t,n,r,i=0,a){let o=a||t.drawSize,s=Math.log2(o),c=rt(o,r),l=n.page.margins.left,u=r.contentY+9;lt(e,s,t.totalRounds,c,n,l,r.contentY+2,t.roundLabelMap,t.noWinnerColumn);for(let r=0;r<s;r++){let a=o/2**(r+1),d=c.lineHeight*2**r,f=dt(r,c,l),p=(2**r-1)*c.lineHeight/2,m=2**(r+1)*c.lineHeight;for(let o=0;o<a;o++){let a=u+p+o*m,h=a+d,g=(a+h)/2;if(r===0){let r=i+o*2+1,s=i+o*2+2,l=ht(t.slots,r),u=ht(t.slots,s);ft(e,l,r,n,c,f,a),ft(e,u,s,n,c,f,h)}else{let t=ut(r,c);e.setDrawColor(40),e.setLineWidth(.25),e.line(f,a,f+t,a),e.line(f,h,f+t,h)}let _=f+ut(r,c),v=dt(r+1,c,l);e.setDrawColor(40),e.setLineWidth(.25),e.line(_+c.connectorGap,a,_+c.connectorGap,h),e.line(_,a,_+c.connectorGap,a),e.line(_,h,_+c.connectorGap,h),e.line(_+c.connectorGap,g,v,g);let y=gt(t.matchUps,r+1,o+1);if(r<s-1&&y?.winningSide){let r=y.drawPositions[y.winningSide-1],i=ht(t.slots,r);i&&pt(e,i,n,c,v,g)}if(y?.score&&r<s-1){let t=nt(y.score,n);if(R(e,c.scoreFontSize,I.NORMAL),e.setTextColor(60,60,160),d*2<c.scoreFontSize*1.2){let n=v+ut(r+1,c)-1;e.text(t,n,g-.5,{align:`right`})}else{let n=c.scoreFontSize*.4;e.text(t,v+1,g-.5+n)}e.setTextColor(0)}}}if(t.noWinnerColumn)return;let d=dt(s,c,l),f=(2**(s-1)-1)*c.lineHeight/2,p=c.lineHeight*2**(s-1),m=u+f+p/2;e.setDrawColor(40),e.setLineWidth(.25),e.line(d,m,d+c.roundColumnWidth,m);let h=gt(t.matchUps,s,1);if(h?.winningSide){let r=h.drawPositions[h.winningSide-1],i=ht(t.slots,r);if(i){R(e,c.fontSize+1,I.BOLD);let{name:t}=Xe(i,n);if(e.text(t,d+1,m-.5),h.score){let t=nt(h.score,n);R(e,c.scoreFontSize,I.NORMAL),e.setTextColor(60,60,160),e.text(t,d+1,m+c.scoreFontSize*.4),e.setTextColor(0)}}}}function lt(e,t,n,r,i,a,o,s,c){R(e,r.fontSize<=L.TINY?5.5:L.SMALL,I.BOLD),e.setTextColor(40);for(let c=0;c<t;c++){let l=n-t+c+1,u=ze(l,n),d=s?.[l]||i.roundLabels[u]||u,f=dt(c,r,a),p=ut(c,r),m=f+p/2;e.text(d,m,o,{align:`center`}),e.setDrawColor(160),e.setLineWidth(.15),e.line(f+2,o+1.5,f+p-2,o+1.5)}if(!c){let n=dt(t,r,a);e.text(`Winner`,n+r.roundColumnWidth/2,o,{align:`center`}),e.setDrawColor(160),e.setLineWidth(.15),e.line(n+2,o+1.5,n+r.roundColumnWidth-2,o+1.5)}e.setTextColor(0)}function ut(e,t){return e===0?t.firstRoundWidth:e===1?t.secondRoundWidth:t.roundColumnWidth}function dt(e,t,n){if(e===0)return n;let r=n+t.firstRoundWidth+t.connectorGap;for(let n=1;n<e;n++)r+=ut(n,t)+t.connectorGap;return r}function ft(e,t,n,r,i,a,o,s){let c=i.fontSize<=5?4:5,l=i.fontSize<=5?5:6,u=s||i.firstRoundWidth,d=i.lineHeight<2?.15:.3;R(e,i.scoreFontSize,I.NORMAL),e.setTextColor(120),e.text(`${n}`,a,o-d,{align:`left`}),e.setTextColor(0),t?.nationality&&(R(e,i.scoreFontSize,I.NORMAL),e.setTextColor(100),e.text(t.nationality,a+c+l-1,o-d,{align:`right`}),e.setTextColor(0));let f=a+c+l,p=a+u;if(e.setDrawColor(40),e.setLineWidth(.25),e.line(f,o,p,o),!t)return;let{name:m}=Xe(t,r);if(!m)return;R(e,i.fontSize,t.isBye?I.ITALIC:I.NORMAL),t.isBye&&e.setTextColor(150);let h=p-f-2,g=m;e.getTextWidth(m)>h&&(g=mt(t.participantName));let _=i.lineHeight<2?.2:.5;e.text(g,f+1,o-_),t.isBye&&e.setTextColor(0)}function pt(e,t,n,r,i,a){let o=mt(t.participantName),s=``;t.seedValue&&(s=n.seedFormat===`parens`?`(${t.seedValue})`:`[${t.seedValue}]`);let c=s?`${o} ${s}`:o;R(e,r.fontSize,I.BOLD),e.text(c,i+1,a-.5)}function mt(e){let t=e.match(/^([^,]+),\s*(.+)/);if(t)return`${t[2][0]}. ${t[1]}`;let n=e.match(/^(\S+)\s+(.+)/);return n?`${n[1][0]}. ${n[2]}`:e}function ht(e,t){return e.find(e=>e.drawPosition===t)}function gt(e,t,n){return e.find(e=>e.roundNumber===t&&e.roundPosition===n)}var _t=[200,200,200],vt=[20,80,20],yt=[160,40,40],bt=[50,50,50];function xt(e,t,n,r,i){let a=n.page.margins,o=t.participants.length;R(e,L.HEADING,I.BOLD),e.text(t.groupName,a.left,i),i+=5;let s=[`#`,`Player`,`Nat.`];for(let e=0;e<o;e++)s.push(`${e+1}`);s.push(`W`,`L`);let c=St(t,n),l=t.participants.map((e,t)=>{let n=[{content:`${t+1}`,styles:{fontStyle:`bold`,halign:`center`}},{content:e.participantName+(e.seedValue?` [${e.seedValue}]`:``),styles:{fontStyle:`bold`}},{content:e.nationality,styles:{halign:`center`}}];for(let e=0;e<o;e++)if(t===e)n.push({content:``,styles:{fillColor:_t}});else{let r=c[t]?.[e];if(r){let e=r.isWin?vt:yt;n.push({content:r.score,styles:{halign:`center`,textColor:e}})}else n.push({content:``,styles:{halign:`center`}})}let r=c[t]?.filter(e=>e?.isWin).length||0,i=c[t]?.filter(e=>e&&!e.isWin).length||0;return n.push({content:`${r}`,styles:{halign:`center`,fontStyle:`bold`}}),n.push({content:`${i}`,styles:{halign:`center`}}),n});return(0,u.default)(e,{startY:i,head:[s],body:l,styles:{fontSize:7,cellPadding:1.5,lineWidth:.2,lineColor:[150,150,150]},headStyles:{fillColor:bt,textColor:[255,255,255],fontStyle:`bold`,halign:`center`,fontSize:7},columnStyles:{0:{cellWidth:8},1:{cellWidth:`auto`},2:{cellWidth:12}},margin:{left:a.left,right:a.right}}),e.lastAutoTable?.finalY||i+40}function St(e,t){let n=e.participants.length,r=Array.from({length:n},()=>Array(n).fill(null)),i=new Map;e.participants.forEach((e,t)=>i.set(e.groupPosition,t));for(let n of e.results){let e=i.get(n.rowPosition),a=i.get(n.colPosition);if(e===void 0||a===void 0)continue;let o=nt(n.score,t),s=n.winningSide===1;r[e][a]={score:o,isWin:s},r[a][e]={score:Ct(o),isWin:!s}}return r}function Ct(e){return e.split(/\s+/).map(e=>{let t=e.match(/^(\d+)([/-])(\d+)(\(\d+\))?$/);return t?`${t[3]}${t[2]}${t[1]}${t[4]||``}`:e}).join(` `)}var wt=1,Tt=16,Et=1;function Dt(e,t,n,r){let i=n.page.margins,a=new Map;for(let e of t.matchUps)a.has(e.roundNumber)||a.set(e.roundNumber,[]),a.get(e.roundNumber).push(e);let o=new Map(t.slots.map(e=>[e.drawPosition,e])),s=[...a.keys()].sort((e,t)=>e-t),c=s.length,l=r.contentY+7,u=r.contentHeight-7,d=Math.min(55,(r.contentWidth-(c-1)*6)/c),f=a.get(s[0])?.length||1,p=Math.min(Tt,(u-(f+1)*Et)/f);R(e,L.SMALL,I.BOLD),e.setTextColor(30,60,120);for(let a=0;a<c;a++){let o=s[a],c=n.roundLabels[ze(o,t.totalRounds)]||ze(o,t.totalRounds),l=i.left+a*(d+6);e.text(c,l+d/2,r.contentY+3,{align:`center`})}e.setTextColor(0);for(let t=0;t<c;t++){let r=s[t],c=a.get(r)||[],f=c.length,m=i.left+t*(d+6),h=f*p,g=f>1?(u-h)/(f+1):(u-p)/2;for(let t=0;t<f;t++){let r=l+g+t*(p+g);Ot(e,c[t],o,n,m,r,d,p)}}}function Ot(e,t,n,r,i,a,o,s){let c=s<10?5:L.TINY;e.setDrawColor(100),e.setLineWidth(.3),e.rect(i,a,o,s);let l=a+s/2;e.setLineWidth(.15),e.line(i,l,i+o,l);let u=t.drawPositions[0]?n.get(t.drawPositions[0]):void 0;if(u){let n=Ye(u,r);R(e,c,t.winningSide===1?I.BOLD:I.NORMAL),e.text(n,i+wt,l-c*.15,{maxWidth:o-2*wt})}let d=t.drawPositions[1]?n.get(t.drawPositions[1]):void 0;if(d){let n=Ye(d,r);R(e,c,t.winningSide===2?I.BOLD:I.NORMAL),e.text(n,i+wt,l+c*.55,{maxWidth:o-2*wt})}if(t.score){let n=nt(t.score,r);R(e,c,I.NORMAL),e.setTextColor(60,60,160),e.text(n,i+o-wt,a+c*.5,{align:`right`}),e.setTextColor(0)}}var kt={maxPositionsPerPage:64,includeOverlapRounds:!0,summaryPage:!0};function At(e,t=kt){let{drawSize:n,slots:r,matchUps:i,totalRounds:a,roundLabelMap:o}=e;if(n<=t.maxPositionsPerPage)return[{label:`Full Draw`,startPosition:1,endPosition:n,slots:r,matchUps:i,segmentRounds:a}];let s=t.maxPositionsPerPage,c=Math.ceil(n/s),l=Math.log2(s),u=[];for(let e=0;e<c;e++){let t=e*s+1,a=Math.min((e+1)*s,n),o=`Section ${e+1}`;c===2&&(o=e===0?`Top Half`:`Bottom Half`);let d=r.filter(e=>e.drawPosition>=t&&e.drawPosition<=a),f=i.filter(e=>e.roundNumber>l?!1:e.drawPositions.every(e=>e>=t&&e<=a)),p=new Map;for(let e of f)p.has(e.roundNumber)||p.set(e.roundNumber,[]),p.get(e.roundNumber).push(e);let m=[];for(let[,e]of p)e.sort((e,t)=>e.roundPosition-t.roundPosition),e.forEach((e,t)=>{m.push({...e,roundPosition:t+1})});u.push({label:o,startPosition:t,endPosition:a,slots:d,matchUps:m,segmentRounds:l,noWinnerColumn:!0})}if(t.summaryPage&&c>1){let e=Math.max(1,a-5+1),t=i.filter(t=>t.roundNumber>=e),n=a-e+1,s=e-1,c=i.filter(t=>t.roundNumber===e).sort((e,t)=>e.roundPosition-t.roundPosition),l=c.length*2,d=new Map,f=1;for(let e of c)for(let t of e.drawPositions)t&&!d.has(t)&&d.set(t,f++);let p=t.map(t=>({...t,roundNumber:t.roundNumber-s,roundPosition:t.roundNumber===e?c.findIndex(e=>e.roundPosition===t.roundPosition)+1:t.roundPosition,drawPositions:t.drawPositions.map(e=>d.get(e)||e)})),m=new Map;for(let e of p)m.has(e.roundNumber)||m.set(e.roundNumber,[]),m.get(e.roundNumber).push(e);let h=[];for(let[,e]of m)e.sort((e,t)=>e.roundPosition-t.roundPosition),e.forEach((e,t)=>{h.push({...e,roundPosition:t+1})});let g=[];for(let[e,t]of d){let n=r.find(t=>t.drawPosition===e);n&&g.push({...n,drawPosition:t})}g.sort((e,t)=>e.drawPosition-t.drawPosition);let _=o?Object.fromEntries(Object.entries(o).filter(([t])=>Number(t)>=e).map(([e,t])=>[Number(e)-s,t])):void 0;u.push({label:`Final Rounds`,startPosition:1,endPosition:l,slots:g,matchUps:h,segmentRounds:n,roundLabelMap:_})}return u}var jt=[`E`,`W`,`N`,`S`,`NE`,`NW`,`SE`,`SW`];function Mt(e,t,n,r){let i=n.page.margins,a=[...t.structures].sort((e,t)=>jt.indexOf(e.abbreviation)-jt.indexOf(t.abbreviation)),o=r.contentY+3;for(let s of a){if(s.drawSize===0)continue;let a=Nt(s,r);o+a>r.contentY+r.contentHeight&&(e.addPage(),o=r.contentY);let c=s.abbreviation===`E`;R(e,c?L.HEADING:L.BODY,I.BOLD),c||e.setTextColor(30,60,120);let l=c?`Main Draw (${s.name})`:`${s.name} Draw`;e.text(l,i.left,o),c||e.setTextColor(0),o+=c?5:4;let u={...r,contentY:o,contentHeight:a-6};it(e,Pt(s,t.drawName),n,u),o+=a+3}}function Nt(e,t){let n=t.contentHeight*.7,r=Math.max(5,Math.min(8,n/e.drawSize));return e.drawSize*r+10}function Pt(e,t){return{drawName:`${t} - ${e.name}`,drawSize:e.drawSize,drawType:`SINGLE_ELIMINATION`,totalRounds:e.totalRounds,slots:e.slots,matchUps:e.matchUps,seedAssignments:[]}}function Ft(e){let{drawDefinition:t,participants:n=[]}=e;if(!t?.structures)return[];let r=new Map;return n.forEach(e=>r.set(e.participantId,e)),t.structures.map(t=>{let n=t.positionAssignments||[],i=t.seedAssignments||[],a=n.length,o=n.map(e=>{let t=e.participantId?r.get(e.participantId):void 0,n=i.find(t=>t.participantId===e.participantId);return{drawPosition:e.drawPosition,participantName:t?ke(t):``,nationality:t?Ae(t):``,seedValue:n?.seedValue,isBye:e.bye===!0}}),s=(t.matchUps||[]).map(e=>({roundNumber:e.roundNumber,roundPosition:e.roundPosition,drawPositions:e.drawPositions||[],score:e.score?.scoreStringSide1||``,winningSide:e.winningSide,matchUpStatus:e.matchUpStatus})),c=t.stage||`MAIN`,l=c===`MAIN`,u=t.structureName||(l?`Main Draw`:`Consolation`),d=s.reduce((e,t)=>Math.max(e,t.roundNumber||0),0),f=(e.processedMatchUps||[]).filter(e=>e.structureId===t.structureId),p;if(f.length){p={};for(let e of f)e.roundNumber&&!p[e.roundNumber]&&(p[e.roundNumber]=e.abbreviatedRoundName||e.roundName||`R${e.roundNumber}`)}return{name:u,stage:c,drawData:{drawName:u,drawSize:a,drawType:`SINGLE_ELIMINATION`,totalRounds:d,slots:o,matchUps:s,seedAssignments:i.filter(e=>e.participantId).map(e=>{let t=r.get(e.participantId);return{seedValue:e.seedValue,participantName:t?ke(t):``,nationality:t?Ae(t):``}}),roundLabelMap:p}}})}function It(e,t,n,r){let i=n.page.margins,a=r.contentY,o={MAIN:0,CONSOLATION:1,PLAY_OFF:2},s=[...t].filter(e=>e.drawData.drawSize>0).sort((e,t)=>(o[e.stage]??9)-(o[t.stage]??9));for(let t of s){let o=t.stage===`MAIN`,s=t.drawData.drawSize*3.5+8;a+s>r.contentY+r.contentHeight&&a>r.contentY+10&&(e.addPage(),a=r.contentY),a+=3,R(e,o?L.HEADING:L.BODY,I.BOLD),o||e.setTextColor(120,40,40),e.text(t.name,i.left,a),o||e.setTextColor(0),a+=o?4:3;let c={...r,contentY:a,contentHeight:Math.min(s,r.contentY+r.contentHeight-a)};it(e,t.drawData,n,c),a+=s+4}}function Lt(e,t,n,r){let i=n.page.margins,a=r.contentHeight,o=a*.44,s=a*.44,c=r.contentWidth-30-8,l=Rt(t.winnersBracket),u=r.contentY+3;R(e,L.BODY,I.BOLD),e.setTextColor(30,80,30),e.text(`Winner's Bracket`,i.left,u),e.setTextColor(0),u+=3,it(e,l,n,{...r,contentY:u,contentHeight:o-6,contentWidth:c}),u=r.contentY+o+6,R(e,L.BODY,I.BOLD),e.setTextColor(140,40,40),e.text(`Loser's Bracket (Backdraw)`,i.left,u),e.setTextColor(0),u+=3;let d={...r,contentY:u,contentHeight:s-6,contentWidth:c};it(e,t.losersBracket,n,d);let f=i.left+c+8,p=r.contentY+a/2;if(R(e,L.SMALL,I.BOLD),e.text(`Decider`,f+28/2,p-14-4,{align:`center`}),e.setDrawColor(60),e.setLineWidth(.5),e.rect(f,p-14-1,28,14),e.setLineWidth(.2),e.line(f,p-14/2-1,f+28,p-14/2-1),t.deciderMatch?.matchUps?.length){let n=t.deciderMatch.matchUps[0],r=new Map(t.deciderMatch.slots.map(e=>[e.drawPosition,e]));if(n.drawPositions[0]){let t=r.get(n.drawPositions[0]);if(t?.participantName){let r=n.winningSide===1;R(e,L.TINY,r?I.BOLD:I.NORMAL),e.text(t.participantName,f+1,p-14/2-3,{maxWidth:26})}}if(n.drawPositions[1]){let t=r.get(n.drawPositions[1]);if(t?.participantName){let r=n.winningSide===2;R(e,L.TINY,r?I.BOLD:I.NORMAL),e.text(t.participantName,f+1,p-3,{maxWidth:26})}}n.score&&(R(e,L.TINY,I.NORMAL),e.setTextColor(60,60,160),e.text(n.score,f+28-1,p-14+2,{align:`right`}),e.setTextColor(0))}}function Rt(e){let t={...e.roundLabelMap||{}};for(let e of Object.keys(t))t[Number(e)]===`F-Q`&&(t[Number(e)]=`SF`);return{...e,roundLabelMap:t}}var zt={East:{name:`East`,abbreviation:`E`},West:{name:`West`,abbreviation:`W`},North:{name:`North`,abbreviation:`N`},South:{name:`South`,abbreviation:`S`},Northeast:{name:`Northeast`,abbreviation:`NE`},Northwest:{name:`Northwest`,abbreviation:`NW`},Southeast:{name:`Southeast`,abbreviation:`SE`},Southwest:{name:`Southwest`,abbreviation:`SW`}};function Bt(e){let{drawDefinition:t,participants:n=[]}=e;if(!t)return{drawName:``,structures:[]};let r=new Map;n.forEach(e=>r.set(e.participantId,e));let i=[];for(let e of t.structures||[]){let t=e.structureName||``,n=zt[t]||{name:t,abbreviation:t},a=e.positionAssignments||[],o=e.seedAssignments||[],s=a.length||0,c=a.map(e=>{let t=e.participantId?r.get(e.participantId):void 0,n=o.find(t=>t.participantId===e.participantId);return{drawPosition:e.drawPosition,participantName:t?ke(t):``,nationality:t?Ae(t):``,seedValue:n?.seedValue,isBye:e.bye===!0}}),l=(e.matchUps||[]).map(e=>({roundNumber:e.roundNumber,roundPosition:e.roundPosition,drawPositions:e.drawPositions||[],score:e.score?.scoreStringSide1||``,winningSide:e.winningSide,matchUpStatus:e.matchUpStatus}));i.push({name:n.name,abbreviation:n.abbreviation,drawSize:s,slots:c,matchUps:l,totalRounds:s>0?Math.log2(s):0})}let a=i.find(e=>e.abbreviation===`E`);return{drawName:t.drawName||``,structures:i,mainStructure:a}}function Vt(e,t=.2){if(!e.length)return[];let n=[...new Set(e)].sort((e,t)=>e-t),r=[],i=[n[0]];for(let e=1;e<n.length;e++)n[e]-n[e-1]<=t?i.push(n[e]):(r.push(Ht(r.length,i)),i=[n[e]]);return r.push(Ht(r.length,i)),r}function Ht(e,t){return{index:e,values:t,min:Math.min(...t),max:Math.max(...t),center:t.reduce((e,t)=>e+t,0)/t.length}}function Ut(e,t){for(let n of e)if(n.values.includes(t)||t>=n.min&&t<=n.max)return n.index;let n=0,r=1/0;for(let i of e){let e=Math.abs(t-i.center);e<r&&(r=e,n=i.index)}return n}function Wt(e,t=.3,n=2.5){if(!e.length)return[];let r=Vt(e.map(e=>e.y),t),i=new Map;for(let t of e){let e=Ut(r,t.y);i.has(e)||i.set(e,[]),i.get(e).push(t)}let a=[];for(let[e,t]of i){let r=[...t].sort((e,t)=>e.x-t.x),i=null;for(let t of r){if(!i){i=Gt(t,e);continue}let r=.22,o=i.x+i.text.length*r,s=t.x-o,c=t.x-i.x,l=i.fragments[i.fragments.length-1],u=l.x+l.text.length*r,d=t.x-u,f=d<n&&s<n,p=t.isBold!==i.isBold;f&&!(c>6)&&(!p||d<.5)?(i.text+=t.text,i.width=t.x+(t.width||0)-i.x,i.fragments.push(t)):(a.push(i),i=Gt(t,e))}i&&a.push(i)}return a}function Gt(e,t){return{text:e.text,x:e.x,y:e.y,width:e.width||0,fontSize:e.fontSize,isBold:e.isBold,isItalic:e.isItalic,row:t,fragments:[e]}}function Kt(e){let t=e.trim(),n,r;if(/^\d{1,2}[A-Z]/.test(t)){let e=t.search(/[A-Z]/);n=parseInt(t.slice(0,e)),t=t.slice(e)}/^(?:WC|LL|SE|PR)[A-Z]{2}/.test(t)&&(r=t.slice(0,2),t=t.slice(2));let i=t.match(/^(.+[a-z])([A-Z]{3})$/);return i&&i[1].length>3&&(t=i[1]),{cleanText:t,seedValue:n,entryCode:r}}function qt(e,t=.3){let{texts:n,hLines:r}=e;if(!n.length)return Xt();let i=Vt(n.map(e=>e.y),t),a=Vt(n.map(e=>e.x),t),o=r.filter(t=>t.length>e.width*.3).sort((e,t)=>e.y-t.y),s=Jt(i,o,e.height),c=Yt(i,o,e.height),l={yMin:0,yMax:s,items:n.filter(e=>e.y<=s)},u={yMin:c,yMax:e.height,items:n.filter(e=>e.y>=c)};return{header:l,content:{yMin:s,yMax:c,items:n.filter(e=>e.y>s&&e.y<c)},footer:u,rowClusters:i,columnClusters:a}}function Jt(e,t,n){let r=t.find(e=>e.y<n*.25&&e.y>n*.05);if(r)return r.y;let i=e.filter(e=>e.center<n*.2);if(i.length>=2){let e=0,t=n*.15;for(let n=1;n<i.length;n++){let r=i[n].min-i[n-1].max;r>e&&(e=r,t=(i[n-1].max+i[n].min)/2)}if(e>.5)return t}return n*.12}function Yt(e,t,n){let r=[...t].reverse().find(e=>e.y>n*.75&&e.y<n*.95);if(r)return r.y;let i=e.filter(e=>e.center>n*.8);if(i.length>=2){let e=0,t=n*.88;for(let n=1;n<i.length;n++){let r=i[n].min-i[n-1].max;r>e&&(e=r,t=(i[n-1].max+i[n].min)/2)}if(e>.5)return t}return n*.88}function Xt(){let e={yMin:0,yMax:0,items:[]};return{header:e,content:e,footer:e,rowClusters:[],columnClusters:[]}}var Zt=/^[A-Z]{3}$/,Qt=/^\d[/-]\d(\(\d+\))?\s+\d[/-]\d(\(\d+\))?(\s+\d[/-]\d(\(\d+\))?)?$/,$t=/^\d[/-]\d(\(\d+\))?$/,en=/^\[(\d{1,2})\]$/,tn=/^\((\d{1,2})\)$/,nn=/^\(?([A-Z]{1,3})\)?$|^-([A-Z]{1,3})$/,rn=/^\d{1,3}\.?$/,an=/^[A-Z][A-Z'-]+[,\s]+[A-Za-z][A-Za-z'-]+/,on=/^[A-Z]{2,}[,\s]+[A-Z][a-z]+/,sn=new Set(`First Round.Second Round.Third Round.Fourth Round.Round 1.Round 2.Round 3.Round 4.Round of 16.Round of 32.Round of 64.Round of 128.Quarter-Finals.Quarter-finals.Quarterfinals.QF.Semi-Finals.Semi-finals.Semifinals.SF.Final.Finals.F.1er TOUR.2eme TOUR.3eme TOUR.1/8 FINALE.1/4 FINALE.1/2 FINALE.FINALE.R16.R32.R64.R128`.split(`.`)),cn=new Set([`WC`,`Q`,`LL`,`SE`,`A`,`ALT`,`W`,`L`,`DA`,`PR`]),ln=new Set([`Ret.`,`RET`,`Ab`,`Ab.`,`ret.`,`Retired`]),un=new Set([`w/o`,`W/O`,`w.o.`,`WO`]);function dn(e,t,n){let r=e.trim();return r?sn.has(r)?{text:r,type:`round-label`,x:t,y:n,confidence:.95}:Qt.test(r)||fn(r)?{text:r,type:`score`,x:t,y:n,confidence:.9}:ln.has(r)||un.has(r)?{text:r,type:`score`,x:t,y:n,confidence:.85}:en.test(r)||tn.test(r)?{text:r,type:`seed`,x:t,y:n,confidence:.9}:Zt.test(r)?cn.has(r)?{text:r,type:`entry-code`,x:t,y:n,confidence:.8}:{text:r,type:`country-code`,x:t,y:n,confidence:.85}:nn.test(r)?{text:r,type:`entry-code`,x:t,y:n,confidence:.8}:rn.test(r)&&parseInt(r)<=256?{text:r,type:`draw-position`,x:t,y:n,confidence:.7}:an.test(r)&&r.length>5?{text:r,type:`player-name`,x:t,y:n,confidence:.8}:on.test(r)&&r.length>4?{text:r,type:`player-name`,x:t,y:n,confidence:.7}:r.includes(`(`)&&/^[A-Z]{2,}/.test(r)&&/\([A-Z]{3}\)$/.test(r)?{text:r,type:`player-name`,x:t,y:n,confidence:.85}:/^[A-Z]\.\s+[A-Z][A-Za-z'-]+/.test(r)&&r.length>4?{text:r,type:`player-name`,x:t,y:n,confidence:.65}:{text:r,type:`unknown`,x:t,y:n,confidence:.1}:{text:r,type:`unknown`,x:t,y:n,confidence:0}}function fn(e){let t=e.split(/\s+/);return t.length<2||t.length>5?!1:t.every(e=>$t.test(e)||ln.has(e)||un.has(e))}function pn(e){let t=e.trim();if(t.endsWith(`)`)){let e=t.lastIndexOf(`(`);e>0&&t.length-e===4&&(t=t.slice(0,e).trim())}let n=t.match(/^([A-Z][A-Z'-]+),\s*([A-Za-z][A-Za-z'-]+(?:\s+[A-Za-z][A-Za-z'-]+)?)/);if(n)return{familyName:n[1],givenName:n[2]};let r=t.match(/^([A-Z][A-Z'-]+)\s+([A-Za-z][A-Za-z'-]+(?:\s+[A-Za-z][A-Za-z'-]+)?)/);if(r)return{familyName:r[1],givenName:r[2]};let i=t.match(/^([A-Z])\.\s+([A-Z][A-Za-z'-]+)/);return i?{familyName:i[2],givenName:`${i[1]}.`}:null}function mn(e){let t=e.match(/\[(\d+)\]/);if(t)return parseInt(t[1]);let n=e.match(/\((\d+)\)/);return n?parseInt(n[1]):null}function hn(e,t=.3){let n=qt(e,t),r=gn(n.header.items),i=n.content.items.map(e=>dn(e.text,e.x,e.y)),a=n.content.items,o=a.map(e=>e.y),s=a.map(e=>e.x),c=Vt(o,t),l=Vt(s,t),u=a.map((e,t)=>({...e,row:Ut(c,e.y),column:Ut(l,e.x),classification:i[t]})),d=_n(u),f=vn(u,l),p=bn(u,d);return{tournamentName:r.tournamentName,eventName:r.eventName,participants:f,matchUps:p,roundLabels:d.map(e=>e.text),metadata:r.raw}}function gn(e){let t={},n,r,i=[...e].sort((e,t)=>t.fontSize-e.fontSize);return i.length>0&&(n=i[0].text,t.tournamentName=n),i.length>1&&(r=i[1].text,t.eventName=r),e.forEach((e,n)=>{t[`header_${n}`]=e.text}),{tournamentName:n,eventName:r,raw:t}}function _n(e){return e.filter(e=>e.classification.type===`round-label`)}function vn(e,t){let n=[],r=new Map;for(let t of e)r.has(t.row)||r.set(t.row,[]),r.get(t.row).push(t);for(let[,e]of r){let t=e.sort((e,t)=>e.x-t.x),r,i=``,a=``,o,s,c,l=!1;for(let e of t){if(e.classification.type===`unknown`&&!l){let t=yn(e.text);if(t){t.drawPosition&&(r=t.drawPosition),i=t.familyName,a=t.givenName,o=t.nationalityCode,s=t.seedValue,c=t.entryStatus,l=!0;continue}}switch(e.classification.type){case`draw-position`:r=parseInt(e.text);break;case`player-name`:if(!l&&e.classification.confidence>=.7){let t=pn(e.text);if(t&&t.givenName.length>2){i=t.familyName,a=t.givenName,l=!0;let n=mn(e.text);n&&(s=n)}}break;case`country-code`:o=e.text;break;case`seed`:s=mn(e.text)??void 0;break;case`entry-code`:c=e.text.replace(/[()]/g,``);break}}l&&n.push({familyName:i,givenName:a,nationalityCode:o,seedValue:s,drawPosition:r,entryStatus:c})}return n.sort((e,t)=>(e.drawPosition||999)-(t.drawPosition||999))}function yn(e){let t=e.indexOf(`. `);if(t<0||t>3)return null;let n=[e,e.slice(0,t),e.slice(t+2)],r=parseInt(n[1]);if(isNaN(r)||r>256)return null;let i=n[2],a;for(let e of[`-ALT`,`-WC`,`-LL`,`-SE`,`-Q`,`-A`])if(i.endsWith(e)){a=e.slice(1),i=i.slice(0,-e.length).trim();break}let o;if(i.endsWith(`]`)){let e=i.lastIndexOf(`[`);if(e>0){let t=i.slice(e+1,-1),n=parseInt(t);isNaN(n)||(o=n,i=i.slice(0,e).trim())}}let s;if(i.endsWith(`)`)){let e=i.lastIndexOf(`(`);e>0&&i.length-e===4&&(s=i.slice(e+1,-1),i=i.slice(0,e).trim())}let c=i.indexOf(`,`);if(c<1)return null;let l=i.slice(0,c),u=i.slice(c+1).trim();return!/^[A-Z]{2}/.test(l)||!u?null:{familyName:l,givenName:u,drawPosition:r,nationalityCode:s,seedValue:o,entryStatus:a}}function bn(e,t){return e.filter(e=>e.classification.type===`score`).map((e,t)=>({roundNumber:0,roundPosition:t+1,score:e.text}))}function xn(e,t=.3){let n=qt(e,t),r=Wt(n.content.items,t),i=Wt(n.header.items,t),a={},o,s,c=[...i].sort((e,t)=>t.fontSize-e.fontSize);c.length>0&&(o=c[0].text,a.tournamentName=o),c.length>1&&(s=c[1].text,a.eventName=s);let l=[],u=[];for(let e of r){let{cleanText:t,seedValue:n,entryCode:r}=Kt(e.text),i=dn(t,e.x,e.y);if(i.type===`player-name`||t.length>5&&pn(t)){let i=pn(t);i&&l.push({familyName:i.familyName,givenName:i.givenName,seedValue:n??mn(e.text)??void 0,entryStatus:r})}else i.type===`score`&&u.push(t)}let d=r.filter(e=>dn(e.text,e.x,e.y).type===`round-label`).map(e=>e.text);return{tournamentName:o,eventName:s,participants:l,matchUps:u.map((e,t)=>({roundNumber:0,roundPosition:t+1,score:e})),roundLabels:d,metadata:a}}function Sn(e,t,n=15){let r=e.internal.pageSize.getWidth(),i=n;R(e,L.TITLE,I.BOLD),e.text(t.tournamentName,15,i),i+=7,t.subtitle&&(R(e,L.SUBTITLE,I.BOLD),e.text(t.subtitle,15,i),i+=6),R(e,L.BODY,I.NORMAL);let a=[];if(t.startDate){let e=t.endDate?`${t.startDate} - ${t.endDate}`:t.startDate;a.push(e)}return t.location&&a.push(t.location),t.organizer&&a.push(t.organizer),a.forEach((t,i)=>{e.text(t,r-15,n+i*4,{align:`right`})}),i+=2,e.setDrawColor(0),e.setLineWidth(.5),e.line(15,i,r-15,i),i+=5,i}function Cn(e,t,n){let r=e.internal.pageSize.getWidth(),i=e.internal.pageSize.getHeight();R(e,L.SMALL,I.ITALIC),e.setTextColor(120),e.text(t,15,i-10),n!==void 0&&e.text(`Page ${n}`,r-15,i-10,{align:`right`}),e.setTextColor(0)}var wn={compact:{styles:{fontSize:7,cellPadding:1.5,lineWidth:.1,lineColor:[200,200,200]},headStyles:{fillColor:[50,50,50],textColor:[255,255,255],fontStyle:`bold`,fontSize:7},alternateRowStyles:{fillColor:[245,245,245]}},schedule:{styles:{fontSize:7,cellPadding:2,lineWidth:.2,lineColor:[180,180,180],valign:`top`},headStyles:{fillColor:[30,60,120],textColor:[255,255,255],fontStyle:`bold`,fontSize:8,halign:`center`},alternateRowStyles:{fillColor:[240,244,250]}},playerList:{styles:{fontSize:8,cellPadding:2,lineWidth:.1,lineColor:[200,200,200]},headStyles:{fillColor:[40,80,40],textColor:[255,255,255],fontStyle:`bold`,fontSize:8},alternateRowStyles:{fillColor:[242,248,242]}},courtCard:{styles:{fontSize:14,cellPadding:6,lineWidth:.3,lineColor:[100,100,100],halign:`center`},headStyles:{fillColor:[20,20,80],textColor:[255,255,255],fontStyle:`bold`,fontSize:16}}},Tn={slotWidth:90,slotHeight:14,roundGap:20,verticalGap:4,startX:15,startY:10};function En(e,t=Tn,n){let r=Math.log2(e),i=[],a=e,o=t.slotHeight+t.verticalGap;n&&a*o>n&&(o=n/a);let s=Math.max(o*.7,5);for(let n=0;n<r;n++){let r=e/2**(n+1),a=[];for(let e=0;e<r;e++){let r=2**n*o,i=t.startY+r/2-o/2+e*r*2,c=i+r,l=t.startX+n*(t.slotWidth+t.roundGap);a.push({x:l,y:i,width:t.slotWidth,height:s},{x:l,y:c,width:t.slotWidth,height:s})}i.push(a)}return i}function Dn(e,t){if(e.setDrawColor(150),e.setLineWidth(.3),e.rect(t.x,t.y,t.width,t.height),t.isBye){R(e,L.SMALL,I.ITALIC),e.setTextColor(150),e.text(`Bye`,t.x+2,t.y+t.height/2+1.5),e.setTextColor(0);return}t.participantName&&(t.seed?(R(e,L.TINY,I.BOLD),e.text(`[${t.seed}]`,t.x+1,t.y+t.height/2+1),R(e,L.SMALL,I.NORMAL),e.text(t.participantName,t.x+9,t.y+t.height/2+1)):(R(e,L.SMALL,I.NORMAL),e.text(t.participantName,t.x+2,t.y+t.height/2+1)),t.nationality&&(R(e,L.TINY,I.NORMAL),e.setTextColor(100),e.text(t.nationality,t.x+t.width-2,t.y+t.height/2+1,{align:`right`}),e.setTextColor(0)))}function On(e,t,n){e.setDrawColor(100),e.setLineWidth(.3);for(let r=0;r<t.length-1;r++){let i=t[r],a=t[r+1];for(let t=0;t<i.length;t+=2){let r=i[t],o=i[t+1],s=a[Math.floor(t/2)];if(!r||!o||!s)continue;let c=r.x+r.width,l=c+n.roundGap/2,u=r.y+r.height/2,d=o.y+o.height/2,f=s.y+s.height/2;e.line(c,u,l,u),e.line(c,d,l,d),e.line(l,u,l,d),e.line(l,f,s.x,f)}}}function kn(e,t,n,r){R(e,L.TINY,I.NORMAL),e.setTextColor(60,60,180),e.text(t,n,r),e.setTextColor(0)}function An(e,t={}){let{header:n,includeSeedings:r=!0,includeScores:i=!0}=t,a=new l.default({orientation:e.drawSize>=32?`landscape`:`portrait`,format:`a4`}),o=15;if(n){let t=`${e.drawName} - ${e.drawType.replace(/_/g,` `)} (${e.drawSize})`;o=Sn(a,{...n,subtitle:t})}return o=e.drawSize<=64&&e.drawSize>0?jn(a,e,o,i):Mn(a,e,o),r&&e.seedAssignments.length>0&&Nn(a,e,o+8),Cn(a,`Generated ${new Date().toLocaleDateString()}`),a}function jn(e,t,n,r){let i=e.internal.pageSize.getWidth(),a=e.internal.pageSize.getHeight(),o=i-30,s=a-n-30,c=t.totalRounds,l=Math.min(90,(o-c*10)/c),u=Math.min(14,s/t.drawSize),d={...Tn,slotWidth:l,slotHeight:u,verticalGap:Math.max(1,u*.3),startX:15,startY:n},f=En(t.drawSize,d,s),p=new Map(t.slots.map(e=>[e.drawPosition,e]));R(e,L.SMALL,I.BOLD);for(let t=0;t<c;t++){let r=d.startX+t*(d.slotWidth+d.roundGap),i=ze(t+1,c);e.text(i,r+d.slotWidth/2,n-2,{align:`center`})}if(f.length>0){let n=f[0];for(let e=0;e<n.length;e++){let t=e+1,r=p.get(t);r&&(n[e].participantName=r.participantName,n[e].nationality=r.nationality,n[e].seed=r.seedValue,n[e].isBye=r.isBye)}for(let t of f)for(let n of t)Dn(e,n);if(On(e,f,d),r)for(let n of t.matchUps){if(!n.score)continue;let t=n.roundNumber-1;if(t<f.length){let r=(n.roundPosition-1)*2,i=f[t]?.[r];i&&kn(e,n.score,i.x+i.width+2,i.y+i.height+3)}}let i=f[0][f[0].length-1];return i.y+i.height+5}return n}function Mn(e,t,n){let r=[{header:`Pos`,dataKey:`pos`},{header:`Seed`,dataKey:`seed`},{header:`Player`,dataKey:`name`},{header:`Nat.`,dataKey:`nat`},{header:`Entry`,dataKey:`entry`}],i=t.slots.map(e=>({pos:e.drawPosition,seed:e.seedValue?.toString()||``,name:e.isBye?`Bye`:e.participantName,nat:e.nationality,entry:e.entryStatus||``}));return(0,u.default)(e,{...wn.compact,startY:n,columns:r,body:i,columnStyles:{pos:{cellWidth:12,halign:`center`},seed:{cellWidth:12,halign:`center`},name:{cellWidth:`auto`},nat:{cellWidth:15,halign:`center`},entry:{cellWidth:15,halign:`center`}}}),e.lastAutoTable?.finalY||n+20}function Nn(e,t,n){R(e,L.HEADING,I.BOLD),e.text(`Seeded Players`,15,n),n+=4;let r=[{header:`Seed`,dataKey:`seed`},{header:`Player`,dataKey:`name`},{header:`Nat.`,dataKey:`nat`}],i=t.seedAssignments.map(e=>({seed:e.seedValue,name:e.participantName,nat:e.nationality}));return(0,u.default)(e,{...wn.compact,startY:n,columns:r,body:i,tableWidth:120,columnStyles:{seed:{cellWidth:15,halign:`center`,fontStyle:`bold`},name:{cellWidth:`auto`},nat:{cellWidth:20,halign:`center`}}}),e.lastAutoTable?.finalY||n+20}function Pn(e,t={}){let{header:n,fullCourtNames:r=!0,notes:i}=t,a=new l.default({orientation:(t.landscape===`auto`?e.courts.length>=5:t.landscape)?`landscape`:`portrait`,format:`a4`}),o=15;if(n){let t=e.scheduledDate?`Order of Play - ${e.scheduledDate}`:`Order of Play`;o=Sn(a,{...n,subtitle:t})}let s=e.courts,c=r?s:s.map(In);for(let t of e.timeSlots){R(a,L.BODY,I.BOLD),a.setTextColor(30,60,120),a.text(t.label,15,o),a.setTextColor(0),o+=4;let e=c.map(e=>({header:e,dataKey:e})),i=new Map;s.forEach(e=>i.set(e,[]));for(let e of t.matches){let t=Fn(e),n=i.get(e.courtName)||[];n.push(t),i.set(e.courtName,n)}let l=Math.max(1,...Array.from(i.values()).map(e=>e.length)),d=[];for(let e=0;e<l;e++){let t={};s.forEach((n,a)=>{let o=i.get(n)||[],s=r?n:c[a];t[s]=o[e]||``}),d.push(t)}(0,u.default)(a,{...wn.schedule,startY:o,columns:e,body:d,tableWidth:`auto`,didDrawPage:e=>{Cn(a,n?.tournamentName||``,e.pageNumber)}}),o=a.lastAutoTable?.finalY+6||o+20}if(i?.length){o+=4,R(a,L.SMALL,I.ITALIC),a.setTextColor(80);for(let e of i)a.text(e,15,o),o+=4;a.setTextColor(0)}return a}function Fn(e){let t=[];return t.push(`${e.eventAbbr} ${e.roundName}`),t.push(`${e.side1.name} (${e.side1.nationality})`),t.push(`vs ${e.side2.name} (${e.side2.nationality})`),e.score&&t.push(e.score),t.join(`
|
|
2
|
+
`)}function In(e){return e.replace(/^Court\s*/i,`Ct `)}function Ln(e,t={}){let{header:n,includeRanking:r=!0,includeEvents:i=!0}=t,a=new l.default({orientation:`portrait`,format:`a4`}),o=15;n&&(o=Sn(a,{...n,subtitle:n.subtitle||`Player List`}));let s=[{header:`#`,dataKey:`index`},{header:`Name`,dataKey:`name`},{header:`Nat.`,dataKey:`nationality`}];r&&s.push({header:`Rank`,dataKey:`ranking`}),s.push({header:`Seed`,dataKey:`seed`}),s.push({header:`Entry`,dataKey:`entryStatus`}),i&&s.push({header:`Events`,dataKey:`events`});let c=e.map((e,t)=>({index:t+1,name:e.name,nationality:e.nationality,ranking:e.ranking||``,seed:e.seedValue?.toString()||``,entryStatus:e.entryStatus,events:e.events.join(`, `)}));return(0,u.default)(a,{...wn.playerList,startY:o,columns:s,body:c,columnStyles:{index:{cellWidth:10,halign:`center`},name:{cellWidth:`auto`,fontStyle:`bold`},nationality:{cellWidth:15,halign:`center`},ranking:{cellWidth:15,halign:`center`},seed:{cellWidth:12,halign:`center`},entryStatus:{cellWidth:15,halign:`center`},events:{cellWidth:`auto`}},didDrawPage:e=>{Cn(a,`Generated ${new Date().toLocaleDateString()}`,e.pageNumber)}}),a}function Rn(e,t={}){let{tournamentName:n=``,pageSize:r=`a5`,cardsPerPage:i=1}=t,a=new l.default({orientation:`landscape`,format:r});return e.forEach((e,t)=>{t>0&&a.addPage(),zn(a,e,n,i)}),a}function zn(e,t,n,r){let i=e.internal.pageSize.getWidth(),a=i/2,o=15;if(n&&(R(e,L.BODY,I.NORMAL),e.setTextColor(100),e.text(n,a,o,{align:`center`}),e.setTextColor(0),o+=8),R(e,28,I.BOLD),e.text(t.courtName,a,o,{align:`center`}),o+=5,t.venueName&&(R(e,L.HEADING,I.NORMAL),e.setTextColor(100),e.text(t.venueName,a,o,{align:`center`}),e.setTextColor(0)),o+=8,e.setDrawColor(0),e.setLineWidth(1),e.line(30,o,i-30,o),o+=8,t.currentMatch&&(R(e,L.HEADING,I.BOLD),e.setTextColor(30,60,120),e.text(`NOW PLAYING`,a,o,{align:`center`}),e.setTextColor(0),o+=6,R(e,L.BODY,I.ITALIC),e.text(`${t.currentMatch.eventName} - ${t.currentMatch.roundName}`,a,o,{align:`center`}),o+=8,(0,u.default)(e,{startY:o,margin:{left:25,right:25},theme:`plain`,styles:{halign:`center`,fontSize:16,cellPadding:4},body:[[{content:`${t.currentMatch.side1.name} (${t.currentMatch.side1.nationality})`,styles:{fontStyle:`bold`}}],[{content:`vs.`,styles:{fontSize:12,textColor:[120,120,120]}}],[{content:`${t.currentMatch.side2.name} (${t.currentMatch.side2.nationality})`,styles:{fontStyle:`bold`}}]]}),o=e.lastAutoTable?.finalY||o+40,o+=8),t.nextMatch){e.setDrawColor(180),e.setLineWidth(.3),e.line(50,o,i-50,o),o+=6,R(e,L.BODY,I.BOLD),e.setTextColor(100);let n=t.nextMatch.scheduledTime?`UP NEXT (${t.nextMatch.scheduledTime})`:`UP NEXT`;e.text(n,a,o,{align:`center`}),e.setTextColor(0),o+=5,R(e,L.BODY,I.NORMAL),e.text(`${t.nextMatch.eventName} - ${t.nextMatch.roundName}`,a,o,{align:`center`}),o+=5,R(e,L.HEADING,I.NORMAL),e.text(`${t.nextMatch.side1.name} vs. ${t.nextMatch.side2.name}`,a,o,{align:`center`})}}function Bn(e,t={}){let{header:n,eventName:r,signInDate:i,signInTime:a}=t,o=new l.default({orientation:`portrait`,format:`a4`}),s=15;if(n&&(s=Sn(o,{...n,subtitle:n.subtitle||`Player Sign-In Sheet`})),r||i){R(o,L.BODY,I.NORMAL);let e=[];r&&e.push(`Event: ${r}`),i&&e.push(`Date: ${i}`),a&&e.push(`Time: ${a}`),o.text(e.join(` | `),15,s),s+=6}let c=[{header:`#`,dataKey:`index`},{header:`Player Name`,dataKey:`name`},{header:`Nat.`,dataKey:`nationality`},{header:`Rank`,dataKey:`ranking`},{header:`Seed`,dataKey:`seed`},{header:`Entry`,dataKey:`entry`},{header:`Signature`,dataKey:`signature`},{header:`Time`,dataKey:`time`}],d=e.map((e,t)=>({index:t+1,name:e.name,nationality:e.nationality,ranking:e.ranking||``,seed:e.seedValue?.toString()||``,entry:e.entryStatus,signature:``,time:``}));return(0,u.default)(o,{startY:s,columns:c,body:d,styles:{fontSize:8,cellPadding:1.5,lineWidth:.2,lineColor:[150,150,150]},headStyles:{fillColor:[40,60,100],textColor:[255,255,255],fontStyle:`bold`,fontSize:7,cellPadding:2},alternateRowStyles:{fillColor:[245,247,250]},columnStyles:{index:{cellWidth:10,halign:`center`},name:{cellWidth:`auto`,fontStyle:`bold`},nationality:{cellWidth:14,halign:`center`},ranking:{cellWidth:14,halign:`center`},seed:{cellWidth:14,halign:`center`},entry:{cellWidth:14,halign:`center`},signature:{cellWidth:35},time:{cellWidth:15}}}),o}function Vn(e,t={}){let n=e.courts.length>=4,r={pageSize:t.page?.pageSize||`a4`,orientation:t.page?.orientation||(n?`landscape`:`portrait`),margins:t.page?.margins||{top:12,right:8,bottom:10,left:8}},i=N(r),a=t.footer||{layout:`standard`,showTimestamp:!0,showPageNumbers:!0},o=ce(a)+(t.notes?.length?t.notes.length*3:0),s=r.margins.top;if(t.header){let e=te(i,t.header,r);s=r.margins.top+e}t.alertBanner&&(s=Hn(i,t.alertBanner,r,s)),Un(i,e,r,s,t);let c=i.internal.pageSize.getHeight();if(t.notes?.length){let e=c-r.margins.bottom-o+2;R(i,L.TINY,I.ITALIC),i.setTextColor(80);for(let n of t.notes)i.text(n,r.margins.left,e),e+=3;i.setTextColor(0)}if(t.officials?.length){let e=c-r.margins.bottom-6;qn(i,t.officials,r,e)}return se(i,a,r,1),i}function Hn(e,t,n,r){let{margins:i}=n,a=e.internal.pageSize.getWidth(),o=a-i.left-i.right;return e.setFillColor(200,30,30),e.rect(i.left,r,o,7,`F`),R(e,L.SMALL,I.BOLD),e.setTextColor(255,255,255),e.text(t,a/2,r+4.5,{align:`center`}),e.setTextColor(0),r+9}function Un(e,t,n,r,i){let{margins:a}=n,o=t.courts,s=i.cellStyle===`compact`,c=[{header:``,dataKey:`slot`}];for(let e of o)c.push({header:e,dataKey:e});let l=[];t.timeSlots.forEach((e,t)=>{let n=[],r=Wn(e,t);n.push({content:r,styles:{fontStyle:`bold`,valign:`top`,cellWidth:12}});for(let t of o){let r=e.matches.filter(e=>e.courtName===t),i=r.length>0?r.map(e=>Gn(e,s)).join(`
|
|
3
|
+
---
|
|
4
|
+
`):``;n.push(i)}l.push(n)}),(0,u.default)(e,{startY:r,head:[c.map(e=>e.header)],body:l,styles:{fontSize:s?6:6.5,cellPadding:s?1.5:2,lineWidth:.3,lineColor:[80,80,80],valign:`top`,overflow:`linebreak`},headStyles:{fillColor:[255,255,255],textColor:[0,0,0],fontStyle:`bold`,fontSize:7,halign:`center`,lineWidth:.5,lineColor:[0,0,0]},columnStyles:{0:{cellWidth:14,fontStyle:`bold`}},alternateRowStyles:{fillColor:[252,252,252]},margin:{left:a.left,right:a.right},tableWidth:`auto`,didParseCell:t=>{if(t.column.index>0&&t.section===`body`){let n=e.internal.pageSize.getWidth()-a.left-a.right-14;t.cell.styles.cellWidth=n/o.length,t.cell.styles.halign=`center`,t.cell.styles.valign=`middle`}}})}function Wn(e,t){return`${t+1}`}function Gn(e,t){let n=[];e.notBeforeTime?n.push(`NB ${e.notBeforeTime}`):e.scheduledTime&&n.push(e.scheduledTime),(e.eventAbbr||e.roundName)&&n.push(`${e.eventAbbr} ${e.roundName}`.trim());let r=Kn(e.side1,t);r&&n.push(r),n.push(`vs.`);let i=Kn(e.side2,t);return i&&n.push(i),e.score?n.push(e.score):e.matchUpStatus===`IN_PROGRESS`&&n.push(`In progress`),n.join(`
|
|
5
|
+
`)}function Kn(e,t){return e.name?t||e.nationality?`${e.name} (${e.nationality})`:e.name:`TBD`}function qn(e,t,n,r){let{margins:i}=n,a=e.internal.pageSize.getWidth();e.setDrawColor(120),e.setLineWidth(.2),e.line(i.left,r-2,a-i.right,r-2),R(e,L.TINY,I.NORMAL);let o=(a-i.left-i.right)/t.length;t.forEach((t,n)=>{let a=i.left+n*o;R(e,L.TINY,I.ITALIC),e.setTextColor(100),e.text(t.role,a,r),R(e,L.TINY,I.BOLD),e.setTextColor(0),e.text(t.name,a,r+3)})}var Jn=[120,50,140];function Yn(e,t={}){let n={pageSize:t.page?.pageSize||`a4`,orientation:t.page?.orientation||`portrait`,margins:t.page?.margins||{top:12,right:15,bottom:12,left:15}},r=N(n),{margins:i}=n,a=r.internal.pageSize.getWidth(),o=r.internal.pageSize.getHeight(),s=a-i.left-i.right,c=t.accentColor||Jn,l=t.footer||{layout:`none`},u=ce(l),d=i.top;t.header&&(d=i.top+te(r,t.header,n)+3);let f=er(e);for(let[e,a]of f){d+30>o-i.bottom-u&&(tr(r,t,n,l),r.addPage(),d=i.top),d=Xn(r,e,i.left,d,s);let f=``;for(let e of a){let a=e.scheduledTime||e.notBeforeTime||``;a&&a!==f&&(d+25>o-i.bottom-u&&(tr(r,t,n,l),r.addPage(),d=i.top),d=Zn(r,a,!!e.notBeforeTime,i.left,d,s,c),f=a),d+22>o-i.bottom-u&&(tr(r,t,n,l),r.addPage(),d=i.top),d=Qn(r,e,i.left,d,s)}d+=4}return t.disclaimer&&(d+=2,R(r,L.TINY,I.ITALIC),r.setTextColor(100),r.text(t.disclaimer,a/2,d,{align:`center`}),r.setTextColor(0)),tr(r,t,n,l),r}function Xn(e,t,n,r,i){return R(e,L.HEADING,I.BOLD),e.setTextColor(40),e.text(t.toUpperCase(),n+i/2,r,{align:`center`}),e.setTextColor(0),r+7}function Zn(e,t,n,r,i,a,o){let s=n?`Not before ${t}`:`Starting at ${t}`;return e.setFillColor(o[0],o[1],o[2]),e.rect(r+20,i,a-40,5,`F`),R(e,L.SMALL,I.ITALIC),e.setTextColor(255,255,255),e.text(s,r+a/2,i+3.5,{align:`center`}),e.setTextColor(0),i+7}function Qn(e,t,n,r,i){let a=n+15,o=i-30,s=r;R(e,L.TINY,I.ITALIC),e.setTextColor(100);let c=t.eventAbbr?`${t.eventAbbr} ${t.roundName}`:t.roundName;e.text(c,a+o-2,r+3,{align:`right`}),e.setTextColor(0),t.score&&(R(e,L.SMALL,I.BOLD),e.setTextColor(120,50,140),e.text(t.score,a+o/2,r+3,{align:`center`}),e.setTextColor(0),r+=4),r+=2,r=$n(e,t.side1,a,r,o),R(e,L.TINY,I.ITALIC),e.setTextColor(120),e.text(`vs`,a+o/2,r+2.5,{align:`center`}),e.setTextColor(0),r+=4,r=$n(e,t.side2,a,r,o),r+=2;let l=r-s;return e.setDrawColor(180),e.setLineWidth(.3),e.rect(a,s,o,l),r+2}function $n(e,t,n,r,i){if(!t.name||t.name===`TBD`)return R(e,L.BODY,I.ITALIC),e.setTextColor(150),e.text(`TBD`,n+10,r+3),e.setTextColor(0),r+4;R(e,L.BODY,I.NORMAL);let a=t.nationality?`${t.name} ${t.nationality}`:t.name;return e.text(a,n+10,r+3),r+4}function er(e){let t=new Map;for(let n of e.courts)t.set(n,[]);for(let n of e.timeSlots)for(let e of n.matches)t.has(e.courtName)||t.set(e.courtName,[]),t.get(e.courtName).push(e);for(let[e,n]of t)n.length===0&&t.delete(e);return t}function tr(e,t,n,r){let{margins:i}=n,a=e.internal.pageSize.getWidth(),o=e.internal.pageSize.getHeight();if(t.officials?.length){let n=o-i.bottom-10;e.setDrawColor(120),e.setLineWidth(.2),e.line(i.left,n-2,a-i.right,n-2);let r=(a-i.left-i.right)/t.officials.length;t.officials.forEach((t,a)=>{let o=i.left+a*r;R(e,L.TINY,I.BOLD),e.text(t.role,o,n),R(e,L.TINY,I.NORMAL),e.text(t.name,o,n+3)})}se(e,r,n)}function nr(e,t={}){let{cardsPerPage:n=2,includeScoreBoxes:r=!0}=t,i=new l.default({orientation:`landscape`,format:`a5`});return e.forEach((e,t)=>{t>0&&(n===1||t%n===0)&&i.addPage(),rr(i,e,n===2&&t%2==1?i.internal.pageSize.getHeight()/2:5,r)}),i}function rr(e,t,n,r){let i=e.internal.pageSize.getWidth(),a=i/2,o=n;if(t.tournamentName&&(R(e,L.BODY,I.NORMAL),e.setTextColor(100),e.text(t.tournamentName,a,o,{align:`center`}),e.setTextColor(0),o+=5),R(e,L.HEADING,I.BOLD),e.text(`${t.eventName} - ${t.roundName}`,a,o,{align:`center`}),o+=5,t.courtName||t.scheduledTime){R(e,L.BODY,I.NORMAL);let n=[];t.courtName&&n.push(`Court: ${t.courtName}`),t.scheduledTime&&n.push(`Time: ${t.scheduledTime}`),e.text(n.join(` `),a,o,{align:`center`}),o+=5}if(e.setDrawColor(0),e.setLineWidth(.5),e.line(10,o,i-10,o),o+=6,ir(e,t.side1,10,o,i),o+=8,R(e,L.BODY,I.ITALIC),e.setTextColor(120),e.text(`vs.`,a,o,{align:`center`}),e.setTextColor(0),o+=6,ir(e,t.side2,10,o,i),o+=8,r){e.setDrawColor(0),e.setLineWidth(.5),e.line(10,o,i-10,o),o+=4,R(e,L.SMALL,I.BOLD),e.text(`Score:`,10,o);for(let t=0;t<5;t++){let n=28+t*15;e.rect(n,o-4,12,8),R(e,L.TINY,I.NORMAL),e.setTextColor(150),e.text(`Set ${t+1}`,n+12/2,o-5,{align:`center`}),e.setTextColor(0)}o+=14,R(e,L.SMALL,I.NORMAL),e.text(`Umpire:`,10,o),e.setDrawColor(150),e.setLineWidth(.3),e.line(30,o,90,o),e.text(`Signature:`,i-10-70,o),e.line(i-10-40,o,i-10,o)}}function ir(e,t,n,r,i){R(e,14,I.BOLD);let a=t.seedValue?`[${t.seedValue}] `:``;e.text(`${a}${t.name}`,n,r),R(e,L.HEADING,I.NORMAL),e.setTextColor(80),e.text(t.nationality,i-n,r,{align:`right`}),e.setTextColor(0)}function ar(e,t,n,r){let i=n.page.margins,a=r.contentY+9,o=r.contentHeight-9,s=t.drawSize/2,c=Math.log2(s),l=r.contentWidth,u=Math.min(30,l*.08),d=(l-u)/2,f=i.left+d,p=o/s,m=p<3.5,h=m?.8:1.5,g=Math.min(m?30:50,d*.22),_=c,v=d-g-h*(_+1),y=Math.max(8,v/Math.max(1,_)),b=L.SMALL;p<2.5?b=5:m&&(b=L.TINY);let x=m?5:L.TINY,S={lineHeight:p,roundColumnWidth:y,firstRoundWidth:g,connectorGap:h,fontSize:b,scoreFontSize:x},C=t.slots.filter(e=>e.drawPosition<=s),w=t.slots.filter(e=>e.drawPosition>s),T=t.matchUps.filter(e=>e.drawPositions.every(e=>e<=s)),E=t.matchUps.filter(e=>e.drawPositions.every(e=>e>s)),D=w.map(e=>({...e,drawPosition:e.drawPosition-s})),O=new Map;for(let e of E)O.has(e.roundNumber)||O.set(e.roundNumber,[]),O.get(e.roundNumber).push(e);let k=[];for(let[,e]of O)e.sort((e,t)=>e.roundPosition-t.roundPosition),e.forEach((e,t)=>{k.push({...e,drawPositions:e.drawPositions.map(e=>e-s),roundPosition:t+1})});let A=new Map;for(let e of T)A.has(e.roundNumber)||A.set(e.roundNumber,[]),A.get(e.roundNumber).push(e);let j=[];for(let[,e]of A)e.sort((e,t)=>e.roundPosition-t.roundPosition),e.forEach((e,t)=>{j.push({...e,roundPosition:t+1})});cr(e,c,t.totalRounds,S,n,i.left,i.left+l,r.contentY+2,t.roundLabelMap),R(e,m?5.5:L.SMALL,I.BOLD),e.setTextColor(40),e.text(`Winner`,f+u/2,r.contentY+2,{align:`center`}),e.setDrawColor(160),e.setLineWidth(.15),e.line(f+2,r.contentY+3.5,f+u-2,r.contentY+3.5),e.setTextColor(0),or(e,C,j,c,S,n,i.left,a,t.totalRounds),sr(e,D,k,c,S,n,i.left+l,a,t.totalRounds);let M=t.matchUps.find(e=>e.roundNumber===t.totalRounds);if(M){let r=a+o/2;if(e.setDrawColor(40),e.setLineWidth(.25),e.line(f+2,r,f+u-2,r),M.winningSide){let i=M.drawPositions[M.winningSide-1],a=t.slots.find(e=>e.drawPosition===i);if(a){let{name:t}=Xe(a,n);R(e,b+1,I.BOLD),e.text(t,f+u/2,r-1,{align:`center`})}}M.score&&(R(e,x,I.NORMAL),e.setTextColor(60,60,160),e.text(nt(M.score,n),f+u/2,r+x*.4,{align:`center`}),e.setTextColor(0))}}function or(e,t,n,r,i,a,o,s,c){let l=new Map(t.map(e=>[e.drawPosition,e])),u=t.length;for(let t=0;t<r;t++){let c=u/2**(t+1),d=i.lineHeight*2**t,f=(2**t-1)*i.lineHeight/2,p=2**(t+1)*i.lineHeight,m=lr(t,i,o),h=t===0?i.firstRoundWidth:i.roundColumnWidth;for(let u=0;u<c;u++){let c=s+f+u*p,g=c+d,_=(c+g)/2;if(t===0){let t=u*2+1,n=u*2+2;dr(e,l.get(t),i,m,c,h,`ltr`),dr(e,l.get(n),i,m,g,h,`ltr`)}else e.setDrawColor(40),e.setLineWidth(.25),e.line(m,c,m+h,c),e.line(m,g,m+h,g);let v=m+h,y=lr(t+1,i,o);e.setDrawColor(40),e.setLineWidth(.25),e.line(v+i.connectorGap,c,v+i.connectorGap,g),e.line(v,c,v+i.connectorGap,c),e.line(v,g,v+i.connectorGap,g),e.line(v+i.connectorGap,_,y,_);let b=pr(n,t+1,u+1);if(t<r-1&&b?.winningSide){let t=b.drawPositions[b.winningSide-1],n=l.get(t);if(n){R(e,i.fontSize,I.BOLD);let t=n.participantName;e.getTextWidth(t)>i.roundColumnWidth-2&&(t=fr(t)),e.text(t,y+1,_-.5)}}b?.score&&t<r-1&&(R(e,i.scoreFontSize,I.NORMAL),e.setTextColor(60,60,160),e.text(nt(b.score,a),y+1,_-.5+i.scoreFontSize*.4),e.setTextColor(0))}}}function sr(e,t,n,r,i,a,o,s,c){let l=new Map(t.map(e=>[e.drawPosition,e])),u=t.length;for(let t=0;t<r;t++){let c=u/2**(t+1),d=i.lineHeight*2**t,f=(2**t-1)*i.lineHeight/2,p=2**(t+1)*i.lineHeight,m=ur(t,i,o),h=t===0?i.firstRoundWidth:i.roundColumnWidth;for(let u=0;u<c;u++){let c=s+f+u*p,g=c+d,_=(c+g)/2;if(t===0){let t=u*2+1,n=u*2+2;dr(e,l.get(t),i,m,c,h,`rtl`),dr(e,l.get(n),i,m,g,h,`rtl`)}else e.setDrawColor(40),e.setLineWidth(.25),e.line(m,c,m+h,c),e.line(m,g,m+h,g);let v=m,y=ur(t+1,i,o);e.setDrawColor(40),e.setLineWidth(.25),e.line(v-i.connectorGap,c,v-i.connectorGap,g),e.line(v,c,v-i.connectorGap,c),e.line(v,g,v-i.connectorGap,g),e.line(v-i.connectorGap,_,y+i.roundColumnWidth,_);let b=pr(n,t+1,u+1);if(t<r-1&&b?.winningSide){let t=b.drawPositions[b.winningSide-1],n=l.get(t);if(n){R(e,i.fontSize,I.BOLD);let t=n.participantName;e.getTextWidth(t)>i.roundColumnWidth-2&&(t=fr(t));let r=y;e.text(t,r+i.roundColumnWidth-1,_-.5,{align:`right`})}}if(b?.score&&t<r-1){let t=y;R(e,i.scoreFontSize,I.NORMAL),e.setTextColor(60,60,160),e.text(nt(b.score,a),t+i.roundColumnWidth-1,_-.5+i.scoreFontSize*.4,{align:`right`}),e.setTextColor(0)}}}}function cr(e,t,n,r,i,a,o,s,c){R(e,r.fontSize<=L.TINY?5.5:L.SMALL,I.BOLD),e.setTextColor(40);for(let l=0;l<t;l++){let u=n-t+l+1,d=ze(u,n),f=c?.[u]||i.roundLabels[d]||d,p=l===0?r.firstRoundWidth:r.roundColumnWidth,m=lr(l,r,a);e.text(f,m+p/2,s,{align:`center`}),e.setDrawColor(160),e.setLineWidth(.15),e.line(m+2,s+1.5,m+p-2,s+1.5);let h=ur(l,r,o);e.text(f,h+p/2,s,{align:`center`}),e.line(h+2,s+1.5,h+p-2,s+1.5)}e.setTextColor(0)}function lr(e,t,n){return e===0?n:n+t.firstRoundWidth+t.connectorGap+(e-1)*(t.roundColumnWidth+t.connectorGap)}function ur(e,t,n){return e===0?n-t.firstRoundWidth:n-t.firstRoundWidth-t.connectorGap-(e-1)*(t.roundColumnWidth+t.connectorGap)-t.roundColumnWidth}function dr(e,t,n,r,i,a,o){if(e.setDrawColor(40),e.setLineWidth(.25),e.line(r,i,r+a,i),!t||t.isBye){t?.isBye&&(R(e,n.fontSize,I.ITALIC),e.setTextColor(150),o===`ltr`?e.text(`Bye`,r+1,i-.3):e.text(`Bye`,r+a-1,i-.3,{align:`right`}),e.setTextColor(0));return}let s=t.seedValue?`[${t.seedValue}]`:``;R(e,n.fontSize,I.NORMAL);let c=t.participantName,l=s?`${s} ${c}`:c;e.getTextWidth(l)>a-2&&(c=fr(t.participantName),l=s?`${s} ${c}`:c),o===`ltr`?e.text(l,r+1,i-.3):e.text(l,r+a-1,i-.3,{align:`right`})}function fr(e){let t=e.match(/^([^,]+),\s*(.+)/);if(t)return`${t[2][0]}. ${t[1]}`;let n=e.match(/^(\S+)\s+(.+)/);return n?`${n[1][0]}. ${n[2]}`:e}function pr(e,t,n){return e.find(e=>e.roundNumber===t&&e.roundPosition===n)}function mr(e,t,n,r){let i=n.page.margins,a=r.contentY+9,o=r.contentHeight-9,s=r.contentWidth,c=t.mainDraw.matchUps,l=t.mainDraw.slots,u=t.consolation.matchUps,d=t.consolation.slots,f=new Map(l.map(e=>[e.drawPosition,e])),p=new Map(d.map(e=>[e.drawPosition,e])),m=c.filter(e=>e.roundNumber===1).sort((e,t)=>e.roundPosition-t.roundPosition),h=m.length,g=h*2,_=Math.max(...c.map(e=>e.roundNumber)),v=_-1,y=u.length>0?Math.max(...u.map(e=>e.roundNumber)):0,b=1.5,x=s-28-b*4,S=v+1,C=Math.max(y+1,1),w=x*(S/(S+C)),T=x-w,E=i.left+T+b,D=S>0?(w-b*S)/S:0,O=E+28+b,k=C>0?(T-b*C)/C:0,A=i.left+T,j=o/g,M=j<3.5,N=L.SMALL;j<2.5?N=5:M&&(N=L.TINY);let P=M?5:L.TINY;vr(e,_,y,t,n,E,28,O,D,A,k,b,r.contentY+2,N);for(let t=0;t<h;t++){let n=m[t],r=a+t*j*2,i=r+j,o=(r+i)/2,s=n.drawPositions[0],c=n.drawPositions[1],l=j*.9;e.setDrawColor(40),e.setLineWidth(.3),e.rect(E,r,28,l),e.rect(E,i,28,l);let u=s?f.get(s):void 0,d=c?f.get(c):void 0;if(R(e,N,I.NORMAL),s&&(e.setTextColor(120),e.text(`${s}`,E+1,r+l/2+N*.12),e.setTextColor(0),u?.participantName)){let t=yr(u.participantName);R(e,N,n.winningSide===1?I.BOLD:I.NORMAL),e.text(t,E+5,r+l/2+N*.12,{maxWidth:22})}if(c&&(e.setTextColor(120),R(e,N,I.NORMAL),e.text(`${c}`,E+1,i+l/2+N*.12),e.setTextColor(0),d?.participantName)){let t=yr(d.participantName);R(e,N,n.winningSide===2?I.BOLD:I.NORMAL),e.text(t,E+5,i+l/2+N*.12,{maxWidth:22})}e.setDrawColor(40),e.setLineWidth(.25),e.line(E+28,r+l/2,E+28+b,r+l/2),e.line(E+28,i+l/2,E+28+b,i+l/2),e.line(E+28+b,r+l/2,E+28+b,i+l/2),e.line(E+28+b,o,O,o),y>0&&(e.line(E,r+l/2,E-b,r+l/2),e.line(E,i+l/2,E-b,i+l/2),e.line(E-b,r+l/2,E-b,i+l/2),e.line(E-b,o,A,o))}hr(e,c,f,_,h,O,D,b,a,j,N,P,n,t.mainDraw.roundLabelMap),gr(e,u,p,y,A,k,b,a,j,h,N,P,n,t.consolation.roundLabelMap)}function hr(e,t,n,r,i,a,o,s,c,l,u,d,f,p){for(let i=0;i<r-1;i++){let p=i+2,m=t.filter(e=>e.roundNumber===p).sort((e,t)=>e.roundPosition-t.roundPosition),h=l*2**(i+1),g=(2**(i+1)-1)*l/2,_=a+i*(o+s);for(let t=0;t<m.length;t++){let l=m[t],p=c+g+t*h*2,v=p+h,y=(p+v)/2;if(e.setDrawColor(40),e.setLineWidth(.25),e.line(_,p,_+o,p),e.line(_,v,_+o,v),_r(e,l,n,_,p,v,o,u,f),i<r-2){let t=_+o;e.line(t+s,p,t+s,v),e.line(t,p,t+s,p),e.line(t,v,t+s,v),e.line(t+s,y,_+o+s+o+s>0?a+(i+1)*(o+s):t+s+5,y)}l.score&&(R(e,d,I.NORMAL),e.setTextColor(60,60,160),e.text(nt(l.score,f),_+o-1,y+d*.12,{align:`right`}),e.setTextColor(0))}}let m=a+(r-2)*(o+s)+o+s,h=c+(2**(r-1)-1)*l/2+l*2**(r-2);e.setDrawColor(40),e.setLineWidth(.25),e.line(m,h,m+o,h);let g=t.find(e=>e.roundNumber===r);if(g?.winningSide){let t=n.get(g.drawPositions[g.winningSide-1]);if(t){let{name:n}=Xe(t,f);R(e,u+1,I.BOLD),e.text(n,m+1,h-.5)}}}function gr(e,t,n,r,i,a,o,s,c,l,u,d,f,p){for(let l=0;l<r;l++){let p=l+1,m=t.filter(e=>e.roundNumber===p).sort((e,t)=>e.roundPosition-t.roundPosition),h=c*2**(l+1),g=(2**(l+1)-1)*c/2,_=i-(l+1)*(a+o);for(let t=0;t<m.length;t++){let c=m[t],p=s+g+t*h*2,v=p+h,y=(p+v)/2;if(e.setDrawColor(40),e.setLineWidth(.25),e.line(_,p,_+a,p),e.line(_,v,_+a,v),c.drawPositions[0]){let t=n.get(c.drawPositions[0]);if(t?.participantName){R(e,u,I.BOLD);let n=t.participantName;e.getTextWidth(n)>a-2&&(n=yr(n)),e.text(n,_+a-1,p-.3,{align:`right`})}}if(c.drawPositions[1]){let t=n.get(c.drawPositions[1]);if(t?.participantName){R(e,u,I.BOLD);let n=t.participantName;e.getTextWidth(n)>a-2&&(n=yr(n)),e.text(n,_+a-1,v-.3,{align:`right`})}}if(l<r-1){e.line(_-o,p,_-o,v),e.line(_,p,_-o,p),e.line(_,v,_-o,v);let t=i-(l+2)*(a+o);e.line(_-o,y,t+a,y)}c.score&&(R(e,d,I.NORMAL),e.setTextColor(60,60,160),e.text(nt(c.score,f),_+1,y+d*.12),e.setTextColor(0))}}if(r>0){let l=i-(r+1)*(a+o),d=s+(2**r-1)*c/2+c*2**(r-1);e.setDrawColor(40),e.setLineWidth(.25),e.line(l,d,l+a,d);let p=t.find(e=>e.roundNumber===r);if(p?.winningSide){let t=n.get(p.drawPositions[p.winningSide-1]);if(t){let{name:n}=Xe(t,f);R(e,u+1,I.BOLD),e.text(n,l+a-1,d-.5,{align:`right`})}}}}function _r(e,t,n,r,i,a,o,s,c){if(t.drawPositions[0]){let a=n.get(t.drawPositions[0]);if(a?.participantName){R(e,s,I.BOLD);let t=a.participantName;e.getTextWidth(t)>o-2&&(t=yr(t)),e.text(t,r+1,i-.3)}}if(t.drawPositions[1]){let i=n.get(t.drawPositions[1]);if(i?.participantName){R(e,s,I.BOLD);let t=i.participantName;e.getTextWidth(t)>o-2&&(t=yr(t)),e.text(t,r+1,a-.3)}}}function vr(e,t,n,r,i,a,o,s,c,l,u,d,f,p){R(e,p<=L.TINY?5.5:L.SMALL,I.BOLD),e.setTextColor(40);let m=r.mainDraw.roundLabelMap?.[1]||`R1`;e.text(m,a+o/2,f,{align:`center`});for(let n=0;n<t-1;n++){let t=n+2,i=r.mainDraw.roundLabelMap?.[t]||`R${t}`,a=s+n*(c+d);e.text(i,a+c/2,f,{align:`center`})}for(let t=0;t<n;t++){let n=t+1,i=r.consolation.roundLabelMap?.[n]||`C-R${n}`,a=l-(t+1)*(u+d);e.text(i,a+u/2,f,{align:`center`})}e.setTextColor(0)}function yr(e){let t=e.match(/^([^,]+),\s*(.+)/);if(t)return`${t[2][0]}. ${t[1]}`;let n=e.match(/^(\S+)\s+(.+)/);return n?`${n[1][0]}. ${n[2]}`:e}function br(e,t={}){return xr(e.matchUps)?wr(e,t):Sr(e,t)}function xr(e){let t=new Map;for(let n of e)t.set(n.roundNumber,(t.get(n.roundNumber)||0)+1);let n=[...t.keys()].sort((e,t)=>e-t);for(let e=1;e<n.length;e++){let r=t.get(n[e-1])||0;if((t.get(n[e])||0)>=r)return!0}return!1}function Sr(e,t={}){if(e.drawSize>=256)return Cr(e,{...t,maxPositionsPerPage:64});let n=jr(e.drawSize,t),r=P(n.doc,n.pageConfig,n.headerH,n.footerH);return it(n.doc,e,n.format,r),Nr(n),n.doc}function Cr(e,t={}){let n=jr(e.drawSize,t),r=At(e,{maxPositionsPerPage:t.maxPositionsPerPage||32,includeOverlapRounds:!0,summaryPage:!0});for(let t=0;t<r.length;t++){t>0&&n.doc.addPage();let i=te(n.doc,{...n.headerConfig,subtitle:r[t].label},n.pageConfig),a=P(n.doc,n.pageConfig,i,n.footerH);if(r[t].slots.length>0||r[t].matchUps.length>0){let i=r[t],o=i.endPosition-i.startPosition+1,s={...e,slots:i.slots,matchUps:i.matchUps,noWinnerColumn:i.noWinnerColumn,roundLabelMap:i.roundLabelMap||e.roundLabelMap,drawSize:o,totalRounds:i.segmentRounds};it(n.doc,s,n.format,a,i.startPosition-1,o)}}return Nr(n),n.doc}function wr(e,t={}){let n=e.totalRounds>=5||e.slots.length>=12,r=jr(e.drawSize,t,n),i=P(r.doc,r.pageConfig,r.headerH,r.footerH);return it(r.doc,e,r.format,i),Nr(r),r.doc}function Tr(e,t={}){let n=jr(Math.max(...e.map(e=>e.drawData.drawSize),8),t),r=P(n.doc,n.pageConfig,n.headerH,n.footerH);return It(n.doc,e,n.format,r),Mr(n,1),Nr(n),n.doc}function Er(e,t={}){let n=jr(e.mainStructure?.drawSize||8,t),r=P(n.doc,n.pageConfig,n.headerH,n.footerH);return Mt(n.doc,e,n.format,r),Mr(n,1),Nr(n),n.doc}function Dr(e,t={}){let n=jr(e.drawSize,t,!0),r=P(n.doc,n.pageConfig,n.headerH,n.footerH);return ar(n.doc,e,n.format,r),Nr(n),n.doc}function Or(e,t={}){let n=jr(e.mainDraw.drawSize,t,!0),r=P(n.doc,n.pageConfig,n.headerH,n.footerH);return mr(n.doc,e,n.format,r),Nr(n),n.doc}function kr(e,t={}){let n=jr(Math.max(e.winnersBracket.drawSize,e.losersBracket.drawSize,8),t,!0),r=P(n.doc,n.pageConfig,n.headerH,n.footerH);return Lt(n.doc,e,n.format,r),Nr(n),n.doc}function Ar(e,t={}){let n=jr(e.drawSize,t),r=P(n.doc,n.pageConfig,n.headerH,n.footerH);return Dt(n.doc,e,n.format,r),Nr(n),n.doc}function jr(e,t,n){let r=t.format||C(t.preset||`itfJunior`),i={...r.page,...t.page,orientation:n?`landscape`:t.page?.orientation||r.page.orientation},a=t.header||{layout:`none`,tournamentName:``},o=t.footer||{layout:`standard`,showPageNumbers:!0,showTimestamp:!0},s=N(i,e),c=ce(o);return{doc:s,pageConfig:i,headerConfig:a,footerConfig:o,format:r,headerH:te(s,a,i),footerH:c}}function Mr(e,t){let n=e.doc.getNumberOfPages();for(let r=t+1;r<=n;r++)e.doc.setPage(r),te(e.doc,e.headerConfig,e.pageConfig)}function Nr(e){let t=e.doc.getNumberOfPages();for(let n=1;n<=t;n++)e.doc.setPage(n),se(e.doc,e.footerConfig,e.pageConfig,n);e.doc.setPage(t)}function Pr(e,t={}){let n=e?.drawsData||[],r=e?.tournamentInfo||{},i=e?.eventInfo||{},a=O(t.catalogPreset||`club-basic`),o=C(a?.drawFormatPreset||`itfJunior`),s={layout:`itf`,tournamentName:r.tournamentName||`Tournament`,...a?.header,subtitle:i.eventName||a?.header?.subtitle,startDate:r.startDate,endDate:r.endDate,location:r.venues?.[0]?.venueName,city:r.venues?.[0]?.city,country:r.hostCountryCode,surface:i.surfaceCategory,...t.headerOverrides},c={layout:`standard`,showPageNumbers:!0,showTimestamp:!0,...a?.footer,...t.footerOverrides},l=n?.[0]?.structures||[],u=l.some(e=>e.stage===`CONSOLATION`),d=l.some(e=>e.stage===`PLAY_OFF`),f=l.find(e=>e.stage===`MAIN`),p={header:s,footer:c,format:o};if(u&&d)return kr({winnersBracket:f?j(f):Fr(),losersBracket:M(n,`CONSOLATION`)?j(M(n,`CONSOLATION`)):Fr(),deciderMatch:M(n,`PLAY_OFF`)?j(M(n,`PLAY_OFF`)):void 0},p);if(u)return Tr(l.map(e=>({name:e.structureName,stage:e.stage,drawData:j(e)})),p);let m=t.structureId&&l.find(e=>e.structureId===t.structureId)||f;if(!m)return N({pageSize:`a4`,orientation:`portrait`,margins:{top:12,right:15,bottom:12,left:15}});let h=j(m);return t.mirrored?Dr(h,p):t.splitPages||h.drawSize>=256?Cr(h,{...p,maxPositionsPerPage:t.maxPositionsPerPage||32}):Sr(h,p)}function Fr(){return{drawName:``,drawSize:0,drawType:``,totalRounds:0,slots:[],matchUps:[],seedAssignments:[]}}var Ir=o(((e,t)=>{t.exports={}})),z=c(Ir(),1),Lr=class e{constructor(e){this.nodeName=e,this.childNodes=[],this.attributes={},this.textContent=``}getAttribute(e){return this.attributes[e]||null}getElementsByTagName(t){let n=[];this.nodeName===t&&n.push(this);for(let r of this.childNodes)if(r instanceof e){t!==`*`&&r.nodeName!==t||n.push(r);let e=r.getElementsByTagName(t);n=n.concat(e)}return n}},Rr=class{constructor(){this.documentElement=null}},zr=class{parseFromString(e){let t=new Rr;return e=e.replace(/<\?xml[^?]*\?>/,``).trim(),t.documentElement=this.parseElement(e),t}parseElement(e){let t=/<([^\s/>]+)([^>]*)>/,n=/([^\s=]+)=(?:"([^"]*)"|'([^']*)')/g,r=e.match(t);if(!r)return null;let i=r[1],a=r[2],o=new Lr(i),s;for(;(s=n.exec(a))!==null;){let e=s[1],t=s[2]||s[3];o.attributes[e]=t}let c=r[0].length,l=RegExp(`</${i}>`),u=e.slice(c).search(l);if(u===-1)return o;let d=e.slice(c,c+u).trim();for(;d.length>0;){if(d.startsWith(`<`)&&!d.startsWith(`</`)){let e=d.match(t);if(e){let t=e[1],n=RegExp(`</${t}>`),r=d.search(n);if(r!==-1){let e=t.length+3,n=d.slice(0,r+e),i=this.parseElement(n);i&&o.childNodes.push(i),d=d.slice(n.length).trim();continue}}}let e=d.indexOf(`<`);if(e===-1){o.textContent+=d.trim();break}if(!(e>0))break;o.textContent+=d.slice(0,e).trim(),d=d.slice(e).trim()}return o}},B={log:z.default.log.bind(z.default),info:z.default.info.bind(z.default),warn:z.default.warn.bind(z.default),error(e){throw Error(e)},verbosity(){},LogManager:{addLogger(){},notify(){}},ERRORS:0,WARNINGS:1,INFOS:5};function Br(e,t){let n=e.get(`AA`);if(!n)return;let r=n.get(`F`);(r||(r=n.get(`K`),r))&&r.forEach((e,n)=>{e===`JS`&&function(e,t){if(Object.prototype.hasOwnProperty.call(t,`TName`)||!e.split)return;let n=e.split(`(`);if(n.length!==2)return;let r=n[0],i=n[1].split(`)`)[0];switch(r){case`AFSpecial_Format`:t.TName=Vr[Number(i)];break;case`AFNumber_Format`:t.TName=`number`;break;case`AFDate_FormatEx`:t.TName=`date`,t.MV=i.replace(/^'+|^"+|'+$|"+$/g,``);break;case`AFSpecial_KeystrokeEx`:{let e=i.replace(/^'+|^"+|'+$|"+$/g,``);e&&e.length>0&&e.length<64&&(t.TName=`mask`,t.MV=e)}break;case`AFPercent_Format`:t.TName=`percent`}}(n,t)})}var Vr=[`zip`,`zip`,`phone`,`ssn`,``],Hr=class{static processAnnotation(e,t){t.fieldType===`Btn`?32768&t.fieldFlags?function(e,t){let n=e.get(`Parent`);n&&n.forEach((e,n)=>{e===`DV`||(e===`TU`?t.alternativeText=n:e===`TM`&&(t.alternativeID=n))}),e.get(`AP`).get(`N`).forEach((e,n)=>{e.toLowerCase()!==`off`&&(t.value=e,t.checked=t.fieldValue===t.value)}),t.value||=`off`}(e,t):65536&t.fieldFlags?function(e,t){let n=e.get(`MK`);n&&(t.value=n.get(`CA`)||``),t.FL=``;let r=e.get(`A`);if(r){let e=r.get(`S`);t.FL=r.get(e.name)}}(e,t):function(e,t){let n=e.get(`AP`).get(`N`),r=0;n.forEach((e,n)=>{r++,r===1&&(t.value=e)})}(e,t):t.fieldType===`Ch`?function(e,t){t.value=e.get(`Opt`)||[]}(e,t):t.fieldType===`Tx`?Br(e,t):t.fieldType===`Sig`?function(e,t){let n=e.get(`V`);if(!n)return;t.Sig={};let r=n.get(`Name`);r&&(t.Sig.Name=r);let i=n.get(`M`);i&&(t.Sig.M=i);let a=n.get(`Location`);a&&(t.Sig.Location=a);let o=n.get(`Reason`);o&&(t.Sig.Reason=o);let s=n.get(`ContactInfo`);s&&(t.Sig.ContactInfo=s)}(e,t):B.warn(`Unknown fieldType: `,t)}},Ur=class{#e=``;#t=null;set onload(e){this.#t=typeof e==`function`?e:null}get onload(){return this.#t}set src(e){this.#e=e,this.#t&&this.#t()}get src(){return this.#e}btoa(e){return new z.Buffer.from(e,`binary`).toString(`base64`)}},Wr=`#000000.#ffffff.#4c4c4c.#808080.#999999.#c0c0c0.#cccccc.#e5e5e5.#f2f2f2.#008000.#00ff00.#bfffa0.#ffd629.#ff99cc.#004080.#9fc0e1.#5580ff.#a9c9fa.#ff0080.#800080.#ffbfff.#e45b21.#ffbfaa.#008080.#ff0000.#fdc59f.#808000.#bfbf00.#824100.#007256.#008000.#000080.#008080.#800080.#ff0000.#0000ff.#008000`.split(`.`),Gr=[`quicktype,arial,helvetica,sans-serif`,`quicktype condensed,arial narrow,arial,helvetica,sans-serif`,`quicktypepi,quicktypeiipi`,`quicktype mono,courier new,courier,monospace`,`ocr-a,courier new,courier,monospace`,`ocr b mt,courier new,courier,monospace`],Kr=[[0,6,0,0],[0,8,0,0],[0,10,0,0],[0,12,0,0],[0,14,0,0],[0,18,0,0],[0,6,1,0],[0,8,1,0],[0,10,1,0],[0,12,1,0],[0,14,1,0],[0,18,1,0],[0,6,0,1],[0,8,0,1],[0,10,0,1],[0,12,0,1],[0,14,0,1],[0,18,0,1],[0,6,1,1],[0,8,1,1],[0,10,1,1],[0,12,1,1],[0,14,1,1],[0,18,1,1],[1,6,0,0],[1,8,0,0],[1,10,0,0],[1,12,0,0],[1,14,0,0],[1,18,0,0],[1,6,1,0],[1,8,1,0],[1,10,1,0],[1,12,1,0],[1,14,1,0],[1,18,1,0],[1,6,0,1],[1,8,0,1],[1,10,0,1],[1,12,0,1],[1,14,0,1],[1,18,0,1],[2,8,0,0],[2,10,0,0],[2,12,0,0],[2,14,0,0],[2,18,0,0],[3,8,0,0],[3,10,0,0],[3,12,0,0],[4,12,0,0],[0,9,0,0],[0,9,1,0],[0,9,0,1],[0,9,1,1],[1,9,0,0],[1,9,1,0],[1,9,1,1],[4,10,0,0],[5,10,0,0],[5,12,0,0]],qr=96/72,Jr=class e{static toFixedFloat(e){return parseFloat(e.toFixed(3))}static colorCount(){return Wr.length}static toPixelX(e){return Math.round(24*e)}static toPixelY(e){return Math.round(24*e)}static pointToPixel(e){return e*qr}static getColorByIndex(e){return Wr[e]}static toFormPoint(e,t){return[e/24,t/24]}static toFormX(t){return e.toFixedFloat(t/24)}static toFormY(t){return e.toFixedFloat(t/24)}static findColorIndex(e){return e.length===4&&(e+=`000`),Wr.indexOf(e)}static dateToIso8601(e){e.slice(0,2)===`D:`&&(e=e.slice(2));let t=`Z`,n=e.search(/[Z+-]/);return n>=0&&(t=e.slice(n),t!==`Z`&&(t=`${t.slice(0,3)}:${t.slice(4,6)}`),e=e.slice(0,n)),`${e.slice(0,4)}-${e.slice(4,6)||`01`}-${e.slice(6,8)||`01`}T${e.slice(8,10)||`00`}:${e.slice(10,12)||`00`}:${e.slice(12,14)||`00`}${t}`}},Yr=class{constructor(e,t,n,r,i,a,o){this.x1=e,this.y1=t,this.x2=n,this.y2=r,this.lineWidth=i||1,this.color=a,this.dashed=o}#e(e,t,n){e.x=Jr.toFormX(t),e.y=Jr.toFormY(n)}processLine(e){let t=Math.abs(this.x2-this.x1),n=Math.abs(this.y2-this.y1),r=this.lineWidth,i={x:0,y:0,w:Jr.toFixedFloat(this.lineWidth),l:0},a=Jr.findColorIndex(this.color),o=a>0&&a<Jr.colorCount()?{clr:a}:{oc:this.color};if(i={...i,...o},this.dashed&&(i={...i,dsh:1}),n<this.lineWidth&&t>r){if(this.lineWidth<4&&t/this.lineWidth<4)return void B.info(`Skipped: short thick HLine: lineWidth = ${this.lineWidth}, xDelta = ${t}`);i.l=Jr.toFormX(t),this.x1>this.x2?this.#e(i,this.x2,this.y2):this.#e(i,this.x1,this.y1),e.HLines.push(i)}else if(t<this.lineWidth&&n>r){if(this.lineWidth<4&&n/this.lineWidth<4)return void B.info(`Skipped: short thick VLine: lineWidth = ${this.lineWidth}, yDelta = ${n}`);i.l=Jr.toFormY(n),this.y1>this.y2?this.#e(i,this.x2,this.y2):this.#e(i,this.x1,this.y1),e.VLines.push(i)}}},Xr=class{constructor(e,t,n,r,i){this.x=e,this.y=t,this.width=n,this.height=r,this.color=i}processFill(e){let t=Jr.findColorIndex(this.color),n=t>0&&t<Jr.colorCount()?{clr:t}:{oc:this.color},r={x:Jr.toFormX(this.x),y:Jr.toFormY(this.y),w:Jr.toFormX(this.width),h:Jr.toFormY(this.height),...n};r.w<2&&r.h<2?B.info(`Skipped: tiny fill: ${r.w} x ${r.h}`):e.Fills.push(r)}},Zr=[`bd`,`bold`,`demi`,`black`,`medi`],Qr=[`arial`,`helvetica`,`sans-serif `,`courier `,`monospace `,`ocr `],$r=.1,ei=class e{#e(){let e=this.fontObj.name||this.fontObj.fallbackName;return e||=Gr[0],e=e.toLowerCase(),e}#t(){let e=this.typeName,t=!1,n=this.typeName.split(`+`);if(Array.isArray(n)&&n.length>1&&(e=n[1].split(`-`),Array.isArray(e)&&e.length>1)){let n=e[1].toLowerCase();t=Zr.indexOf(n)>=0,e=e[0]}return{subType:e,bold:t}}#n(){let e=this.typeName.indexOf(`symbol`)>0||Gr[2].indexOf(this.subType)>=0;return this.fontObj.isSymbolicFont?Qr.filter(e=>this.typeName.indexOf(e)>=0).length>0&&(this.fontObj.isSymbolicFont=!1,B.info(`Reset: isSymbolicFont (false) for ${this.fontObj.name}`)):e&&(this.fontObj.isSymbolicFont=!0,B.info(`Reset: isSymbolicFont (true) for ${this.fontObj.name}`)),e}#r(){let{spaceWidth:e}=this.fontObj;if(!e){var t=Array.isArray(this.fontObj.toFontChar)?this.fontObj.toFontChar.indexOf(32):-1;e=t>=0&&Array.isArray(this.fontObj.widths)?this.fontObj.widths[t]:250}return e=Jr.toFormX(e)/32,e}constructor(e){this.fontObj=e,this.typeName=this.#e();let{subType:t,bold:n}=this.#t();this.subType=t,this.bold=n,this.isSymbol=this.#n(),this.spaceWidth=this.#r(),this.fontSize=1,this.faceIdx=0,this.italic=!1,this.fontStyleId=-1}static compareBlockPos(e,t){if(e.y<t.y-$r)return-1;if(Math.abs(e.y-t.y)<=$r){if(e.x<t.x-$r)return-1;if(Math.abs(e.x-t.x)<=$r)return 0}return 1}static haveSameStyle(e,t){let n=e.R[0].S===t.R[0].S;if(n&&e.R[0].S<0){for(let r=0;r<e.R[0].TS.length;r++)if(e.R[0].TS[r]!==t.R[0].TS[r]){n=!1;break}}return n&&=e.R[0].RA===void 0&&t.R[0].RA===void 0,n}static getSpaceThreshHold(t){return e.getFontSize(t)/12*t.sw}static areAdjacentBlocks(t,n){let r=Math.abs(t.y-n.y)<=$r,i=n.x-t.x-t.w<e.getSpaceThreshHold(t);return r&&i}static getFontSize(e){let t=e.R[0].S;return t<0?e.R[0].TS[1]:Kr[t][1]}static areDuplicateBlocks(t,n){return t.x===n.x&&t.y===n.y&&t.R[0].T===n.R[0].T&&e.haveSameStyle(t,n)}#i(){let{fontObj:e}=this;this.bold=e.bold,this.bold||=this.typeName.indexOf(`bold`)>=0||this.typeName.indexOf(`black`)>=0,this.italic=e.italic,this.italic||=this.typeName.indexOf(`italic`)>=0||this.typeName.indexOf(`oblique`)>=0,this.bold&&this.italic||!(this.typeName.indexOf(`boldobl`)>=0)||(this.bold=!0,this.italic=!0);let t=this.subType;e.isSerifFont?Gr[1].indexOf(t)>=0&&(this.faceIdx=1):Gr[2].indexOf(this.subType)>=0?this.faceIdx=2:e.isMonospace?(this.faceIdx=3,Gr[4].indexOf(t)>=0?this.faceIdx=4:Gr[5].indexOf(t)>=0&&(this.faceIdx=5)):e.isSymbolicFont&&(this.faceIdx=2),this.faceIdx===0&&this.typeName.indexOf(`narrow`)>0&&(this.faceIdx=1),B.info(`typeName = ${t} => faceIdx = ${this.faceIdx}`)}#a(e){this.#i(),this.fontSize=this.bold&&e>12?e+1:e;let t=[this.faceIdx,this.fontSize,this.bold?1:0,this.italic?1:0],n=-1;return Kr.forEach((e,r,i)=>{n===-1&&e[0]===t[0]&&e[1]===t[1]&&e[2]===t[2]&&e[3]===t[3]&&(n=r)}),n}#o(e){let t=e;if(!e||e.length!==1)return t;if(!this.fontObj.isSymbolicFont||!this.isSymbol)return t!==`C`&&t!==`G`||(t=` ${t} `),t;switch(e.charCodeAt(0)){case 20:t=`✓`;break;case 70:t=this.fontObj.type===`CIDFontType0`?`⚠`:`}`;break;case 71:case 97:t=`▶`;break;case 99:t=this.isSymbol?`•`:`▲`;break;case 100:t=`▼`;break;case 103:t=`➨`;break;case 106:t=``;break;case 114:case 116:case 118:t=`•`;break;case 115:t=`▲`;break;default:B.info(`${this.fontObj.type} - SymbolicFont - (${this.fontObj.name}) : ${e.charCodeAt(0)}::${e.charCodeAt(1)} => ${t}`)}return t}#s(e){if(!e||e.length!==1||this.fontObj.type!==`Type3`)return e;if(B.info(`Processing Type3 font: char code = ${e.charCodeAt(0)}, char = '${e}'`),this.fontObj.charProcMapping)B.info(`charProcMapping available with ${Object.keys(this.fontObj.charProcMapping).length} entries`);else if(B.info(`No charProcMapping available for this Type3 font`),e&&e.length===1){let t=e.charCodeAt(0);if(t>=65&&t<=90)return B.info(`Using direct uppercase letter: ${e}`),e;if(t>=97&&t<=122)return B.info(`Using direct lowercase letter: ${e}`),e;if(t>=48&&t<=57)return B.info(`Using direct digit: ${e}`),e}if(this.fontObj.charProcMapping){let t=e.charCodeAt(0),n=this.fontObj.charProcMapping[t];if(n){B.info(`Found glyph name in mapping: ${n}`);let e={bullet:`•`,checkbox:`☐`,checkmark:`✓`,check:`✓`,circle:`○`,square:`□`,triangle:`▲`,triangledown:`▼`,triangleleft:`◀`,triangleright:`▶`,star:`★`,diamond:`◆`,heart:`♥`,club:`♣`,spade:`♠`,filledcircle:`●`,filledsquare:`■`,filledtriangle:`▲`,filledtriangledown:`▼`,filledtriangleright:`▶`,filledtriangleleft:`◀`,arrowleft:`←`,arrowright:`→`,arrowup:`↑`,arrowdown:`↓`,cross:`✗`},t=typeof n==`string`?n.toLowerCase():``;if(t in e){let n=e[t];return B.info(`Mapped ${t} to Unicode ${n}`),n}if(typeof n==`string`&&n.length>1){let e=n.match(/[A-Za-z]/g);if(e&&e.length===1){let t=e[0].toUpperCase();return B.info(`Extracted letter ${t} from glyph name ${n}`),t}}for(let n in e)if(t.indexOf(n)>=0){let r=e[n];return B.info(`Partial match: ${t} contains ${n}, mapped to ${r}`),r}if(typeof n==`string`){let e=n.match(/[A-Za-z]/g);if(e&&e.length===1){let t=e[0].toUpperCase();return B.info(`Extracted letter ${t} from glyph name ${n}`),t}let t=n.match(/\d+/);if(t&&t.length===1){let e=parseInt(t[0],10);if(e>=1&&e<=26){let t=String.fromCharCode(64+e);return B.info(`Mapped number ${e} in glyph name ${n} to letter ${t}`),t}}}if(typeof n==`string`&&n.startsWith(`uni`)){let e=n.substring(3);if(/^[0-9A-F]{4,6}$/i.test(e))return B.info(`Mapped uni${e} to Unicode character`),String.fromCharCode(parseInt(e,16))}}}let t=e.charCodeAt(0);B.info(`No direct mapping for character code ${t}, checking general mappings`);let n=e;switch(t){case 18:n=`✓`;break;case 19:n=`☐`;break;case 20:n=`☑`;break;case 108:n=`•`;break;case 109:n=`●`;break;case 110:n=`○`;break;case 111:n=`■`;break;case 112:n=`□`;break;case 113:n=`▲`;break;case 114:n=`▼`;break;case 117:n=`←`;break;case 118:n=`→`;break;case 119:n=`↑`;break;case 120:n=`↓`;break;case 128:n=`∞`;break;case 129:n=`≠`;break;case 130:n=`≤`;break;case 131:n=`≥`}return n===e?B.info(`No mapping found for char code ${t}, returning original character`):B.info(`Mapped char code ${t} to Unicode ${n}`),n}#c(e){let t=0;if(e[0][0]===0&&e[1][1]===0)e[0][1]!==0&&e[1][0]!==0&&e[0][1]/e[1][0]+1<1e-4&&(t=90);else if(e[0][0]!==0&&e[1][1]!==0){let n=Math.atan(-e[0][1]/e[0][0]),r=Math.atan(e[1][0]/e[1][1]);Math.abs(n)>1e-4&&n-r<1e-4&&(t=180*n/Math.PI)}return t}processText(e,t,n,r,i,a,o){B.info(`Processing text: '${t}', font type: ${this.fontObj.type||`unknown`}, char code: ${t?t.charCodeAt(0):`none`}`);let s=t,c=this.fontObj.type===`Type3`?this.#s(t):this.#o(t);c||=(B.info(`Text processing returned null or empty, falling back to original text`),s),B.info(`Processed text: '${t}' -> '${c}'`),this.fontStyleId=this.#a(i);let l=[this.faceIdx,this.fontSize,this.bold?1:0,this.italic?1:0],u=Jr.findColorIndex(r),d=u>=0&&u<Jr.colorCount()?{clr:u}:{oc:r},f={T:this.flashEncode(c),S:this.fontStyleId,TS:l},p=this.#c(o);p!==0&&(B.info(`${t}: rotated ${p} degree.`),f=Object.assign({},f,{RA:p}));let m={x:Jr.toFormX(e.x)-.25,y:Jr.toFormY(e.y)-.75,w:Jr.toFixedFloat(n),...d,sw:this.spaceWidth,A:`left`,R:[f]};B.info(`Adding text to output: '${c}'`),a.Texts.push(m)}flashEncode(e){if(!e)return e;let t=e;return t=t.replace(/\u0096/g,`-`),t=t.replace(/\u0091/g,`'`),t=t.replace(/\u0092/g,`'`),t=t.replace(/\u0082/g,`'`),t=t.replace(/\u0093/g,`"`),t=t.replace(/\u0094/g,`"`),t=t.replace(/\u0084/g,`"`),t=t.replace(/\u008B/g,`«`),t=t.replace(/\u009B/g,`»`),t}clean(){this.fontObj=null,delete this.fontObj}},{round:ti,sin:ni,cos:ri,abs:ii,sqrt:ai}=Math,oi=[];for(let e=0;e<16;e++)for(let t=0;t<16;t++)oi[16*e+t]=e.toString(16)+t.toString(16);function si(e,t){let n=[[1,0,0],[0,1,0],[0,0,1]];for(let r=0;r<3;r++)for(let i=0;i<3;i++){let a=0;for(let n=0;n<3;n++)a+=e[r][n]*t[n][i];n[r][i]=a}return n}function ci(e,t){t.fillStyle=e.fillStyle,t.lineCap=e.lineCap,t.lineJoin=e.lineJoin,t.lineWidth=e.lineWidth,t.miterLimit=e.miterLimit,t.shadowBlur=e.shadowBlur,t.shadowColor=e.shadowColor,t.shadowOffsetX=e.shadowOffsetX,t.shadowOffsetY=e.shadowOffsetY,t.strokeStyle=e.strokeStyle,t.globalAlpha=e.globalAlpha,t.arcScaleX_=e.arcScaleX_,t.arcScaleY_=e.arcScaleY_,t.lineScale_=e.lineScale_,t.dashArray=e.dashArray}function li(e){let t,n=1;if((e=String(e)).substring(0,3)===`rgb`){let r=e.indexOf(`(`,3),i=e.indexOf(`)`,r+1),a=e.substring(r+1,i).split(`,`);t=`#`;for(let e=0;e<3;e++)t+=oi[Number(a[e])];a.length===4&&e.substring(3,4)===`a`&&(n=a[3])}else t=e;return{color:t,alpha:n}}function ui(e,t,n,r){e.currentPath_.push({type:`bezierCurveTo`,cp1x:t.x,cp1y:t.y,cp2x:n.x,cp2y:n.y,x:r.x,y:r.y}),e.currentX_=r.x,e.currentY_=r.y}function di(e,t,n){(function(e){for(let t=0;t<3;t++)for(let n=0;n<2;n++)if(!isFinite(e[t][n])||isNaN(e[t][n]))return!1;return!0})(t)&&(e.m_=t,n)&&(e.lineScale_=ai(ii(t[0][0]*t[1][1]-t[0][1]*t[1][0])))}var fi=class{constructor(){}},pi=class{constructor(e){this.type_=e,this.x0_=0,this.y0_=0,this.r0_=0,this.x1_=0,this.y1_=0,this.r1_=0,this.colors_=[]}addColorStop(e,t){t=li(t),this.colors_.push({offset:e,color:t.color,alpha:t.alpha})}},mi=class{constructor(e,t,n){this.m_=[[1,0,0],[0,1,0],[0,0,1]],this.mStack_=[],this.aStack_=[],this.currentPath_=[],this.strokeStyle=`#000`,this.fillStyle=`#000`,this.lineWidth=1,this.lineJoin=`miter`,this.lineCap=`butt`,this.dashArray=[],this.miterLimit=1,this.globalAlpha=1,`HLines`in e&&Array.isArray(e.HLines)||(e.HLines=[]),`VLines`in e&&Array.isArray(e.VLines)||(e.VLines=[]),`Fills`in e&&Array.isArray(e.Fills)||(e.Fills=[]),`Texts`in e&&Array.isArray(e.Texts)||(e.Texts=[]),this.canvas=e,this.width=t,this.height=n,this.arcScaleX_=1,this.arcScaleY_=1,this.lineScale_=1,this.currentFont=null}#e(e,t,n,r){let i=Array.isArray(this.dashArray)&&this.dashArray.length>1;new Yr(e.x,e.y,t.x,t.y,n,r,i).processLine(this.canvas)}#t(e,t,n,r){let i=n.x-t.x,a=n.y-t.y;new Xr(e.x,e.y,i,a,r).processFill(this.canvas)}#n(e,t,n,r){let i=Math.abs(n-Math.abs(r))<1&&n<13;return i&&B.info(`Skipped: tiny rect: w=${n}, h=${r}`),i}getContext(e){return e===`2d`?this:null}setLineDash(e){this.dashArray=e}getLineDash(){return this.dashArray}fillText(e,t,n,r,i){if(!e||!e.length===1&&e.trim().length<1)return;let a=this.getCoords_(t,n),o=li(this.fillStyle||this.strokeStyle),s=o?o.color:`#000000`;this.currentFont.processText(a,e,r,s,i,this.canvas,this.m_)}strokeText(e,t,n,r){this.fillText(e,t,n,r)}measureText(e){return B.warn(`to be implemented: contextPrototype.measureText - `,e),{width:(e.length||1)*(this.currentFont.spaceWidth||5)}}setFont(e){this.currentFont&&typeof this.currentFont.clean==`function`&&(this.currentFont.clean(),this.currentFont=null),this.currentFont=new ei(e)}clearRect(){B.warn(`to be implemented: contextPrototype.clearRect`)}beginPath(){this.currentPath_=[]}moveTo(e,t){let n=this.getCoords_(e,t);this.currentPath_.push({type:`moveTo`,x:n.x,y:n.y}),this.currentX_=n.x,this.currentY_=n.y}lineTo(e,t){let n=this.getCoords_(e,t);this.currentPath_.push({type:`lineTo`,x:n.x,y:n.y}),this.currentX_=n.x,this.currentY_=n.y}bezierCurveTo(e,t,n,r,i,a){let o=this.getCoords_(i,a);ui(this,this.getCoords_(e,t),this.getCoords_(n,r),o)}quadraticCurveTo(e,t,n,r){let i=this.getCoords_(e,t),a=this.getCoords_(n,r),o={x:this.currentX_+2/3*(i.x-this.currentX_),y:this.currentY_+2/3*(i.y-this.currentY_)};ui(this,o,{x:o.x+(a.x-this.currentX_)/3,y:o.y+(a.y-this.currentY_)/3},a)}arc(e,t,n,r,i,a){let o=a?`at`:`wa`,s=e+ri(r)*n,c=t+ni(r)*n,l=e+ri(i)*n,u=t+ni(i)*n;s!==l||a||(s+=.125);let d=this.getCoords_(e,t),f=this.getCoords_(s,c),p=this.getCoords_(l,u);this.currentPath_.push({type:o,x:d.x,y:d.y,radius:n,xStart:f.x,yStart:f.y,xEnd:p.x,yEnd:p.y})}rect(e,t,n,r){this.#n(e,t,n,r)||(this.moveTo(e,t),this.lineTo(e+n,t),this.lineTo(e+n,t+r),this.lineTo(e,t+r),this.closePath())}strokeRect(e,t,n,r){if(this.#n(e,t,n,r))return;let i=this.currentPath_;this.beginPath(),this.moveTo(e,t),this.lineTo(e+n,t),this.lineTo(e+n,t+r),this.lineTo(e,t+r),this.closePath(),this.stroke(),this.currentPath_=i}fillRect(e,t,n,r){if(this.#n(e,t,n,r))return;let i=this.currentPath_;this.beginPath(),this.moveTo(e,t),this.lineTo(e+n,t),this.lineTo(e+n,t+r),this.lineTo(e,t+r),this.closePath(),this.fill(),this.currentPath_=i}createLinearGradient(e,t,n,r){let i=new pi(`gradient`);return i.x0_=e,i.y0_=t,i.x1_=n,i.y1_=r,i}createRadialGradient(e,t,n,r,i,a){let o=new pi(`gradientradial`);return o.x0_=e,o.y0_=t,o.r0_=n,o.x1_=r,o.y1_=i,o.r1_=a,o}drawImage(e,t){e&&typeof e==`object`&&(e.Texts&&Array.isArray(e.Texts)&&e.Texts.length>0&&(this.canvas.Texts.push(...e.Texts),e.Texts=[]),e.HLines&&Array.isArray(e.HLines)&&e.HLines.length>0&&(this.canvas.HLines.push(...e.HLines),e.HLines=[]),e.VLines&&Array.isArray(e.VLines)&&e.VLines.length>0&&(this.canvas.VLines.push(...e.VLines),e.VLines=[]),e.Fills&&Array.isArray(e.Fills)&&e.Fills.length>0&&(this.canvas.Fills.push(...e.Fills),e.Fills=[]))}getImageData(e,t,n,r){return{width:n,height:r,data:new Uint8Array(n*r*4)}}stroke(e){if(this.currentPath_.length<2)return;let{color:t}=li(e?this.fillStyle:this.strokeStyle),n=this.lineScale_*this.lineWidth,r={x:null,y:null},i={x:null,y:null};for(let a=0;a<this.currentPath_.length;a++){let o=this.currentPath_[a];switch(o.type){case`moveTo`:case`bezierCurveTo`:case`at`:case`wa`:break;case`lineTo`:e||a>0&&this.#e(this.currentPath_[a-1],o,n,t);break;case`close`:e||a>0&&this.#e(this.currentPath_[a-1],this.currentPath_[0],n,t),o=null}e&&o&&((r.x===null||o.x<r.x)&&(r.x=o.x),(i.x===null||o.x>i.x)&&(i.x=o.x),(r.y===null||o.y<r.y)&&(r.y=o.y),(i.y===null||o.y>i.y)&&(i.y=o.y))}e&&this.#t(r,r,i,t)}fill(){this.stroke(!0)}closePath(){this.currentPath_.push({type:`close`})}getCoords_(e,t){let n=this.m_;return{x:e*n[0][0]+t*n[1][0]+n[2][0],y:e*n[0][1]+t*n[1][1]+n[2][1]}}save(){let e={};ci(this,e),this.aStack_.push(e),this.mStack_.push(this.m_),this.m_=si([[1,0,0],[0,1,0],[0,0,1]],this.m_)}restore(){ci(this.aStack_.pop(),this),this.m_=this.mStack_.pop()}translate(e,t){di(this,si([[1,0,0],[0,1,0],[e,t,1]],this.m_),!1)}rotate(e){let t=ri(e),n=ni(e);di(this,si([[t,n,0],[-n,t,0],[0,0,1]],this.m_),!1)}scale(e,t){this.arcScaleX_*=e,this.arcScaleY_*=t,di(this,si([[e,0,0],[0,t,0],[0,0,1]],this.m_),!0)}transform(e,t,n,r,i,a){di(this,si([[e,t,0],[n,r,0],[i,a,1]],this.m_),!0)}setTransform(e,t,n,r,i,a){di(this,[[e,t,0],[n,r,0],[i,a,1]],!0)}clip(){}arcTo(){}createPattern(){return new fi}};function hi(e,t){return new mi({},e,t)}var V={disableWorker:!0},gi={console,PDFJS:V},_i=typeof window>`u`,vi=1,yi=[.001,0,0,.001,0,0],bi=0,xi=1,Si=2,Ci=3,wi=4;gi.PDFJS||={},gi.PDFJS.pdfBug=!1;var H=V.OPS={dependency:1,setLineWidth:2,setLineCap:3,setLineJoin:4,setMiterLimit:5,setDash:6,setRenderingIntent:7,setFlatness:8,setGState:9,save:10,restore:11,transform:12,moveTo:13,lineTo:14,curveTo:15,curveTo2:16,curveTo3:17,closePath:18,rectangle:19,stroke:20,closeStroke:21,fill:22,eoFill:23,fillStroke:24,eoFillStroke:25,closeFillStroke:26,closeEOFillStroke:27,endPath:28,clip:29,eoClip:30,beginText:31,endText:32,setCharSpacing:33,setWordSpacing:34,setHScale:35,setLeading:36,setFont:37,setTextRenderingMode:38,setTextRise:39,moveText:40,setLeadingMoveText:41,setTextMatrix:42,nextLine:43,showText:44,showSpacedText:45,nextLineShowText:46,nextLineSetSpacingShowText:47,setCharWidth:48,setCharWidthAndBounds:49,setStrokeColorSpace:50,setFillColorSpace:51,setStrokeColor:52,setStrokeColorN:53,setFillColor:54,setFillColorN:55,setStrokeGray:56,setFillGray:57,setStrokeRGBColor:58,setFillRGBColor:59,setStrokeCMYKColor:60,setFillCMYKColor:61,shadingFill:62,beginInlineImage:63,beginImageData:64,endInlineImage:65,paintXObject:66,markPoint:67,markPointProps:68,beginMarkedContent:69,beginMarkedContentProps:70,endMarkedContent:71,beginCompat:72,endCompat:73,paintFormXObjectBegin:74,paintFormXObjectEnd:75,beginGroup:76,endGroup:77,beginAnnotations:78,endAnnotations:79,beginAnnotation:80,endAnnotation:81,paintJpegXObject:82,paintImageMaskXObject:83,paintImageMaskXObjectGroup:84,paintImageXObject:85,paintInlineImageXObject:86,paintInlineImageXObjectGroup:87},Ti=V.NO_OPS=[82,83,84,85,86,87],Ei=V.NO_OPS_RANGE=[78,79,80,81],Di=!Number(process?.env?.PDF2JSON_DISABLE_LOGS??`0`)&&`console`in gi&&`log`in gi.console?gi.console.log.bind(gi.console):function(){};function U(e){vi>=5&&(Di(`Info: `+e),V.LogManager.notify(`info`,e))}function W(e){vi>=1&&(Di(`Warning: `+e),V.LogManager.notify(`warn`,e))}function G(e){if(arguments.length>1){var t=[`Error:`];t.push.apply(t,arguments),Di.apply(null,t),e=[].join.call(arguments,` `)}throw V.LogManager.notify(`error`,e),Error(e)}function Oi(e){W(`TODO: `+e)}function ki(e,t){e||G(t)}function Ai(e,t){if(!t)return e;if(t.indexOf(`:`)>=0)return t;if(t.charAt(0)==`/`){var n=e.indexOf(`://`);return n=e.indexOf(`/`,n+3),e.substring(0,n)+t}var r=e.length;r=(n=e.lastIndexOf(`#`))>=0?n:r,r=(n=e.lastIndexOf(`?`,r))>=0?n:r;var i=e.lastIndexOf(`/`,r);return e.substring(0,i+1)+t}function ji(e,t){if(!e)return!1;var n=e.indexOf(`:`);if(n<0)return t;switch(e.substring(0,n)){case`http`:case`https`:case`ftp`:case`mailto`:return!0;default:return!1}}function Mi(e,t){e||G(t)}V.isValidUrl=ji;var Ni;V.LogManager=(Ni=[],{addLogger:function(e){Ni.push(e)},notify:function(e,t){for(var n=0,r=Ni.length;n<r;n++){var i=Ni[n];i[e]&&i[e](t)}}});function Pi(e,t,n){return Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!1}),n}var Fi=V.PasswordResponses={NEED_PASSWORD:1,INCORRECT_PASSWORD:2},Ii=function(){function e(e,t){this.name=`PasswordException`,this.message=e,this.code=t}return e.prototype=Error(),e.constructor=e,e}(),Li=function(){function e(e,t){this.name=`UnknownErrorException`,this.message=e,this.details=t}return e.prototype=Error(),e.constructor=e,e}(),Ri=function(){function e(e){this.name=`InvalidPDFException`,this.message=e}return e.prototype=Error(),e.constructor=e,e}(),zi=function(){function e(e){this.name=`MissingPDFException`,this.message=e}return e.prototype=Error(),e.constructor=e,e}(),Bi=function(){function e(e){this.message=e}return e.prototype=Error(),e.prototype.name=`NotImplementedException`,e.constructor=e,e}(),Vi=function(){function e(e,t){this.begin=e,this.end=t,this.message=`Missing data [`+e+`, `+t+`)`}return e.prototype=Error(),e.prototype.name=`MissingDataException`,e.constructor=e,e}(),Hi=function(){function e(e){this.message=e}return e.prototype=Error(),e.prototype.name=`XRefParseException`,e.constructor=e,e}();function Ui(e){for(var t=``,n=e.length,r=0;r<n;++r)t+=String.fromCharCode(e[r]);return t}function Wi(e){for(var t=e.length,n=new Uint8Array(t),r=0;r<t;++r)n[r]=255&e.charCodeAt(r);return n}var Gi=[1,0,0,1,0,0],K=V.Util=function(){function e(){}return e.makeCssRgb=function(e){return`rgb(`+e[0]+`,`+e[1]+`,`+e[2]+`)`},e.makeCssCmyk=function(t){var n=la.singletons.cmyk.getRgb(t,0);return e.makeCssRgb(n)},e.transform=function(e,t){return[e[0]*t[0]+e[2]*t[1],e[1]*t[0]+e[3]*t[1],e[0]*t[2]+e[2]*t[3],e[1]*t[2]+e[3]*t[3],e[0]*t[4]+e[2]*t[5]+e[4],e[1]*t[4]+e[3]*t[5]+e[5]]},e.applyTransform=function(e,t){return[e[0]*t[0]+e[1]*t[2]+t[4],e[0]*t[1]+e[1]*t[3]+t[5]]},e.applyInverseTransform=function(e,t){var n=t[0]*t[3]-t[1]*t[2];return[(e[0]*t[3]-e[1]*t[2]+t[2]*t[5]-t[4]*t[3])/n,(-e[0]*t[1]+e[1]*t[0]+t[4]*t[1]-t[5]*t[0])/n]},e.getAxialAlignedBoundingBox=function(t,n){var r=e.applyTransform(t,n),i=e.applyTransform(t.slice(2,4),n),a=e.applyTransform([t[0],t[3]],n),o=e.applyTransform([t[2],t[1]],n);return[Math.min(r[0],i[0],a[0],o[0]),Math.min(r[1],i[1],a[1],o[1]),Math.max(r[0],i[0],a[0],o[0]),Math.max(r[1],i[1],a[1],o[1])]},e.inverseTransform=function(e){var t=e[0]*e[3]-e[1]*e[2];return[e[3]/t,-e[1]/t,-e[2]/t,e[0]/t,(e[2]*e[5]-e[4]*e[3])/t,(e[4]*e[1]-e[5]*e[0])/t]},e.apply3dTransform=function(e,t){return[e[0]*t[0]+e[1]*t[1]+e[2]*t[2],e[3]*t[0]+e[4]*t[1]+e[5]*t[2],e[6]*t[0]+e[7]*t[1]+e[8]*t[2]]},e.singularValueDecompose2dScale=function(e){var t=[e[0],e[2],e[1],e[3]],n=e[0]*t[0]+e[1]*t[2],r=e[0]*t[1]+e[1]*t[3],i=e[2]*t[0]+e[3]*t[2],a=e[2]*t[1]+e[3]*t[3],o=(n+a)/2,s=Math.sqrt((n+a)*(n+a)-4*(n*a-i*r))/2,c=o+s||1,l=o-s||1;return[Math.sqrt(c),Math.sqrt(l)]},e.normalizeRect=function(e){var t=e.slice(0);return e[0]>e[2]&&(t[0]=e[2],t[2]=e[0]),e[1]>e[3]&&(t[1]=e[3],t[3]=e[1]),t},e.intersect=function(e,t){let n=Math.max(Math.min(e[0],e[2]),Math.min(t[0],t[2])),r=Math.min(Math.max(e[0],e[2]),Math.max(t[0],t[2]));if(n>r)return null;let i=Math.max(Math.min(e[1],e[3]),Math.min(t[1],t[3])),a=Math.min(Math.max(e[1],e[3]),Math.max(t[1],t[3]));return i>a?null:[n,i,r,a]},e.sign=function(e){return e<0?-1:1},e.concatenateToArray=function(e,t){Array.prototype.push.apply(e,t)},e.prependToArray=function(e,t){Array.prototype.unshift.apply(e,t)},e.extendObj=function(e,t){for(var n in t)e[n]=t[n]},e.getInheritableProperty=function(e,t){for(;e&&!e.has(t);)e=e.get(`Parent`);return e?e.get(t):null},e.inherit=function(e,t,n){for(var r in e.prototype=Object.create(t.prototype),e.prototype.constructor=e,n)e.prototype[r]=n[r]},e.loadScript=function(e,t){var n=document.createElement(`script`),r=!1;n.setAttribute(`src`,e),t&&(n.onload=function(){r||t(),r=!0}),document.getElementsByTagName(`head`)[0].appendChild(n)},e}(),Ki=(V.PageViewport=function(){function e(e,t,n,r,i,a){this.viewBox=e,this.scale=t,this.rotation=n,this.offsetX=r,this.offsetY=i;var o,s,c,l,u,d,f,p,m=(e[2]+e[0])/2,h=(e[3]+e[1])/2;switch(n=(n%=360)<0?n+360:n){case 180:o=-1,s=0,c=0,l=1;break;case 90:o=0,s=1,c=1,l=0;break;case 270:o=0,s=-1,c=-1,l=0;break;default:o=1,s=0,c=0,l=-1}a&&(c=-c,l=-l),o===0?(u=Math.abs(h-e[1])*t+r,d=Math.abs(m-e[0])*t+i,f=Math.abs(e[3]-e[1])*t,p=Math.abs(e[2]-e[0])*t):(u=Math.abs(m-e[0])*t+r,d=Math.abs(h-e[1])*t+i,f=Math.abs(e[2]-e[0])*t,p=Math.abs(e[3]-e[1])*t),this.transform=[o*t,s*t,c*t,l*t,u-o*t*m-c*t*h,d-s*t*m-l*t*h],this.width=f,this.height=p,this.fontScale=t}return e.prototype={clone:function(t){var n=`scale`in(t||={})?t.scale:this.scale,r=`rotation`in t?t.rotation:this.rotation;return new e(this.viewBox.slice(),n,r,this.offsetX,this.offsetY,t.dontFlip)},convertToViewportPoint:function(e,t){return K.applyTransform([e,t],this.transform)},convertToViewportRectangle:function(e){var t=K.applyTransform([e[0],e[1]],this.transform),n=K.applyTransform([e[2],e[3]],this.transform);return[t[0],t[1],n[0],n[1]]},convertToPdfPoint:function(e,t){return K.applyInverseTransform([e,t],this.transform)}},e}(),[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,711,710,729,733,731,730,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8226,8224,8225,8230,8212,8211,402,8260,8249,8250,8722,8240,8222,8220,8221,8216,8217,8218,8482,64257,64258,321,338,352,376,381,305,322,339,353,382,0,8364]);function qi(e){var t,n=e.length,r=``;if(e[0]===`þ`&&e[1]===`ÿ`)for(t=2;t<n;t+=2)r+=String.fromCharCode(e.charCodeAt(t)<<8|e.charCodeAt(t+1));else for(t=0;t<n;++t){var i=Ki[e.charCodeAt(t)];r+=i?String.fromCharCode(i):e.charAt(t)}return r}function Ji(e){for(var t in e)return!1;return!0}function Yi(e){return typeof e==`boolean`}function Xi(e){return typeof e==`number`&&(0|e)==e}function Zi(e){return typeof e==`number`}function Qi(e){return typeof e==`string`}function $i(e){return e instanceof Va}function ea(e,t){return e instanceof Ha&&(!t||e.cmd==t)}function ta(e,t){if(!(e instanceof Ua))return!1;if(!t)return!0;var n=e.get(`Type`);return $i(n)&&n.name==t}function na(e){return e instanceof Array}function ra(e){return typeof e==`object`&&!!e&&`getBytes`in e}function ia(e){return typeof e==`object`&&!!e&&`byteLength`in e}function aa(e){return e instanceof Wa}function oa(e){var t;if(typeof e!=`object`)return!1;if(ta(e))t=e;else{if(!ra(e))return!1;t=e.dict}return t.has(`FunctionType`)}var q=V.Promise=function(){var e={handlers:[],running:!1,unhandledRejections:[],pendingRejectionCheck:!1,scheduleHandlers:function(e){e._status!=0&&(this.handlers=this.handlers.concat(e._handlers),e._handlers=[],this.running||(this.running=!0,setTimeout(this.runHandlers.bind(this),0)))},runHandlers:function(){for(;this.handlers.length>0;){var e=this.handlers.shift(),t=e.thisPromise._status,n=e.thisPromise._value;try{t===1?typeof e.onResolve==`function`&&(n=e.onResolve(n)):typeof e.onReject==`function`&&(n=e.onReject(n),t=1,e.thisPromise._unhandledRejection&&this.removeUnhandeledRejection(e.thisPromise))}catch(e){t=2,n=e}e.nextPromise._updateStatus(t,n)}this.running=!1},addUnhandledRejection:function(e){this.unhandledRejections.push({promise:e,time:Date.now()}),this.scheduleRejectionCheck()},removeUnhandeledRejection:function(e){e._unhandledRejection=!1;for(var t=0;t<this.unhandledRejections.length;t++)this.unhandledRejections[t].promise===e&&(this.unhandledRejections.splice(t),t--)},scheduleRejectionCheck:function(){this.pendingRejectionCheck||(this.pendingRejectionCheck=!0,setTimeout(function(){this.pendingRejectionCheck=!1;for(var e=Date.now(),t=0;t<this.unhandledRejections.length;t++)if(e-this.unhandledRejections[t].time>500){var n=this.unhandledRejections[t].promise._value,r=`Unhandled rejection: `+n;n.stack&&(r+=`
|
|
6
|
+
`+n.stack),W(r),this.unhandledRejections.splice(t),t--}this.unhandledRejections.length&&this.scheduleRejectionCheck()}.bind(this),500))}};function t(){this._status=0,this._handlers=[]}return t.all=function(e){var n=new t,r=e.length,i=[];if(r===0)return n.resolve(i),n;function a(e){n._status!==2&&(i=[],n.reject(e))}for(var o=0,s=e.length;o<s;++o){var c=e[o],l=function(e){return function(t){n._status!==2&&(i[e]=t,--r===0&&n.resolve(i))}}(o);t.isPromise(c)?c.then(l,a):l(c)}return n},t.isPromise=function(e){return e&&typeof e.then==`function`},t.prototype={_status:null,_value:null,_handlers:null,_unhandledRejection:null,_updateStatus:function(n,r){this._status!==1&&this._status!==2&&(n==1&&t.isPromise(r)?r.then(this._updateStatus.bind(this,1),this._updateStatus.bind(this,2)):(this._status=n,this._value=r,n===2&&this._handlers.length===0&&(this._unhandledRejection=!0,e.addUnhandledRejection(this)),e.scheduleHandlers(this)))},get isResolved(){return this._status===1},get isRejected(){return this._status===2},resolve:function(e){this._updateStatus(1,e)},reject:function(e){this._updateStatus(2,e)},then:function(n,r){var i=new t;return this._handlers.push({thisPromise:this,onResolve:n,onReject:r,nextPromise:i}),e.scheduleHandlers(this),i}},t}(),sa=function(){function e(e,t,n){for(;e.length<n;)e+=t;return e}function t(){this.started={},this.times=[],this.enabled=!0}return t.prototype={time:function(e){this.enabled&&(e in this.started&&W(`Timer is already running for `+e),this.started[e]=Date.now())},timeEnd:function(e){this.enabled&&(e in this.started||W(`Timer has not been started for `+e),this.times.push({name:e,start:this.started[e],end:Date.now()}),delete this.started[e])},toString:function(){for(var t=this.times,n=``,r=0,i=0,a=t.length;i<a;++i){var o=t[i].name;o.length>r&&(r=o.length)}for(i=0,a=t.length;i<a;++i){var s=t[i],c=s.end-s.start;n+=e(s.name,` `,r)+` `+c+`ms
|
|
7
|
+
`}return n}},t}();function ca(e,t){this.name=e,this.comObj=t,this.callbackIndex=1,this.postMessageTransfers=!0;var n=this.callbacks={},r=this.actionHandler={};r.console_log=[function(e){Di.apply(null,e)}],r.console_error=`console`in gi?[function(e){gi.console.error.apply(null,e)}]:[function(e){Di.apply(null,e)}],r._warn=[function(e){W(e)}],typeof t==`object`&&(t.onmessage=function(e){var i=e.data;if(i.isReply){var a=i.callbackId;if(i.callbackId in n){var o=n[a];delete n[a],o(i.data)}else G(`Cannot resolve callback `+a)}else if(i.action in r){var s=r[i.action];if(i.callbackId){var c=new q;c.then(function(e){t.postMessage({isReply:!0,callbackId:i.callbackId,data:e})}),s[0].call(s[1],i.data,c)}else s[0].call(s[1],i.data)}else G(`Unkown action from worker: `+i.action)})}V.createBlob=function(e,t){return new z.Blob([e],{type:t})},V.createObjectURL=function(){if(typeof URL<`u`&&URL.createObjectURL)return function(e,t){var n=V.createBlob(e,t);return URL.createObjectURL(n)};var e=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=`;return function(t,n){for(var r=`data:`+n+`;base64,`,i=0,a=t.length;i<a;i+=3){var o=255&t[i],s=255&t[i+1],c=255&t[i+2];r+=e[o>>2]+e[(3&o)<<4|s>>4]+e[i+1<a?(15&s)<<2|c>>6:64]+e[i+2<a?63&c:64]}return r}}(),ca.prototype={on:function(e,t,n){var r=this.actionHandler;r[e]&&G(`There is already an actionName called "`+e+`"`),r[e]=[t,n]},send:function(e,t,n,r){var i={action:e,data:t};if(n){var a=this.callbackIndex++;this.callbacks[a]=n,i.callbackId=a}r&&this.postMessageTransfers?this.comObj.postMessage(i,r):this.comObj.postMessage(i)}},V.log=Di,V.info=U,V.warn=W,V.error=G,V.verbosity=function(e){vi=isNaN(e)?1:e<=0?0:e>=5?5:e},V.verbosity();var la=function(){function e(){G(`should not call ColorSpace constructor`)}return e.prototype={getRgb:function(e,t){G(`Should not call ColorSpace.getRgb`)},getRgbItem:function(e,t,n,r){G(`Should not call ColorSpace.getRgbItem`)},getRgbBuffer:function(e,t,n,r,i,a){G(`Should not call ColorSpace.getRgbBuffer`)},getOutputLength:function(e){G(`Should not call ColorSpace.getOutputLength`)},isPassthrough:function(e){return!1},createRgbBuffer:function(e,t,n,r){if(this.isPassthrough(r))return e.subarray(t);var i=new Uint8Array(3*n),a=1<<r;if(this.numComps===1&&n>a&&this.name!==`DeviceGray`&&this.name!==`DeviceRGB`){for(var o=r<=8?new Uint8Array(a):new Uint16Array(a),s=0;s<a;s++)o[s]=s;var c=new Uint8Array(3*a);this.getRgbBuffer(o,0,a,c,0,r);var l=0;for(s=0;s<n;++s){var u=3*e[t++];i[l++]=c[u],i[l++]=c[u+1],i[l++]=c[u+2]}return i}return this.getRgbBuffer(e,t,n,i,0,r),i},usesZeroToOneRange:!0},e.parse=function(t,n,r){var i=e.parseToIR(t,n,r);return i instanceof ua?i:e.fromIR(i)},e.fromIR=function(t){var n=na(t)?t[0]:t;switch(n){case`DeviceGrayCS`:return this.singletons.gray;case`DeviceRgbCS`:return this.singletons.rgb;case`DeviceCmykCS`:return this.singletons.cmyk;case`CalGrayCS`:var r=t[1].WhitePoint,i=t[1].BlackPoint,a=t[1].Gamma;return new ga(r,i,a);case`PatternCS`:var o=t[1];return o&&=e.fromIR(o),new da(o);case`IndexedCS`:var s=t[1],c=t[2],l=t[3];return new fa(e.fromIR(s),c,l);case`AlternateCS`:var u=t[1],d=t[2],f=t[3];return new ua(u,e.fromIR(d),Ca.fromIR(f));case`LabCS`:r=t[1].WhitePoint,i=t[1].BlackPoint;var p=t[1].Range;return new _a(r,i,p);default:G(`Unkown name `+n)}return null},e.parseToIR=function(t,n,r){if($i(t)){var i=r.get(`ColorSpace`);if(ta(i)){var a=i.get(t.name);a&&(t=a)}}var o;if($i(t=n.fetchIfRef(t)))switch(o=t.name,this.mode=o,o){case`DeviceGray`:case`G`:return`DeviceGrayCS`;case`DeviceRGB`:case`RGB`:return`DeviceRgbCS`;case`DeviceCMYK`:case`CMYK`:return`DeviceCmykCS`;case`Pattern`:return[`PatternCS`,null];default:G(`unrecognized colorspace `+o)}else if(na(t))switch(o=t[0].name,this.mode=o,o){case`DeviceGray`:case`G`:return`DeviceGrayCS`;case`DeviceRGB`:case`RGB`:case`CalRGB`:return`DeviceRgbCS`;case`DeviceCMYK`:case`CMYK`:return`DeviceCmykCS`;case`CalGray`:return ta(p=n.fetchIfRef(t[1]))&&(p=p.getAll()),[`CalGrayCS`,p];case`ICCBased`:if((f=n.fetchIfRef(t[1]).dict.get(`N`))==1)return`DeviceGrayCS`;if(f==3)return`DeviceRgbCS`;if(f==4)return`DeviceCmykCS`;break;case`Pattern`:var s=t[1];return s&&=e.parseToIR(s,n,r),[`PatternCS`,s];case`Indexed`:case`I`:var c=e.parseToIR(t[1],n,r),l=t[2]+1,u=n.fetchIfRef(t[3]);return ra(u)&&(u=u.getBytes()),[`IndexedCS`,c,l,u];case`Separation`:case`DeviceN`:var d=t[1],f=1;return $i(d)?f=1:na(d)&&(f=d.length),[`AlternateCS`,f,e.parseToIR(t[2],n,r),Ca.getIR(n,n.fetchIfRef(t[3]))];case`Lab`:var p;return ta(p=n.fetchIfRef(t[1]))&&(p=p.getAll()),[`LabCS`,p];default:G(`unimplemented color space object "`+o+`"`)}else G(`unrecognized color space object: "`+t+`"`);return null},e.isDefaultDecode=function(e,t){if(!e)return!0;if(2*t!==e.length)return W(`The decode map is not the correct length`),!0;for(var n=0,r=e.length;n<r;n+=2)if(e[n]!==0||e[n+1]!=1)return!1;return!0},e.singletons={get gray(){return Pi(this,`gray`,new pa)},get rgb(){return Pi(this,`rgb`,new ma)},get cmyk(){return Pi(this,`cmyk`,new ha)}},e}(),ua=function(){function e(e,t,n){this.name=`Alternate`,this.numComps=e,this.defaultColor=new Float32Array(e);for(var r=0;r<e;++r)this.defaultColor[r]=1;this.base=t,this.tintFn=n}return e.prototype={getRgb:function(e,t){var n=new Uint8Array(3);return this.getRgbItem(e,t,n,0),n},getRgbItem:function(e,t,n,r){this.base.numComps;var i=`subarray`in e?e.subarray(t,t+this.numComps):Array.prototype.slice.call(e,t,t+this.numComps),a=this.tintFn(i);this.base.getRgbItem(a,0,n,r)},getRgbBuffer:function(e,t,n,r,i,a){for(var o=this.tintFn,s=this.base,c=1/((1<<a)-1),l=s.numComps,u=s.usesZeroToOneRange,d=s.isPassthrough(8)||!u,f=d?i:0,p=d?r:new Uint8Array(l*n),m=this.numComps,h=new Float32Array(m),g=0;g<n;g++){for(var _=0;_<m;_++)h[_]=e[t++]*c;var v=o(h);if(u)for(_=0;_<l;_++)p[f++]=255*v[_];else s.getRgbItem(v,0,p,f),f+=l}d||s.getRgbBuffer(p,0,n,r,i,8)},getOutputLength:function(e){return this.base.getOutputLength(e*this.base.numComps/this.numComps)},isPassthrough:la.prototype.isPassthrough,createRgbBuffer:la.prototype.createRgbBuffer,isDefaultDecode:function(e){return la.isDefaultDecode(e,this.numComps)},usesZeroToOneRange:!0},e}(),da=function(){function e(e){this.name=`Pattern`,this.base=e}return e.prototype={},e}(),fa=function(){function e(e,t,n){this.name=`Indexed`,this.numComps=1,this.defaultColor=new Uint8Array([0]),this.base=e,this.highVal=t;var r,i=e.numComps*t;if(ra(n)){r=new Uint8Array(i);var a=n.getBytes(i);r.set(a)}else if(Qi(n)){r=new Uint8Array(i);for(var o=0;o<i;++o)r[o]=n.charCodeAt(o)}else n instanceof Uint8Array||n instanceof Array?r=n:G(`Unrecognized lookup table: `+n);this.lookup=r}return e.prototype={getRgb:function(e,t){var n=this.base.numComps,r=e[t]*n;return this.base.getRgb(this.lookup,r)},getRgbItem:function(e,t,n,r){var i=this.base.numComps,a=e[t]*i;this.base.getRgbItem(this.lookup,a,n,r)},getRgbBuffer:function(e,t,n,r,i){for(var a=this.base,o=a.numComps,s=a.getOutputLength(o),c=this.lookup,l=0;l<n;++l){var u=e[t++]*o;a.getRgbBuffer(c,u,1,r,i,8),i+=s}},getOutputLength:function(e){return this.base.getOutputLength(e*this.base.numComps)},isPassthrough:la.prototype.isPassthrough,createRgbBuffer:la.prototype.createRgbBuffer,isDefaultDecode:function(e){return!0},usesZeroToOneRange:!0},e}(),pa=function(){function e(){this.name=`DeviceGray`,this.numComps=1,this.defaultColor=new Float32Array([0])}return e.prototype={getRgb:function(e,t){var n=new Uint8Array(3);return this.getRgbItem(e,t,n,0),n},getRgbItem:function(e,t,n,r){var i=255*e[t]|0;i=i<0?0:i>255?255:i,n[r]=n[r+1]=n[r+2]=i},getRgbBuffer:function(e,t,n,r,i,a){for(var o=255/((1<<a)-1),s=t,c=i,l=0;l<n;++l){var u=o*e[s++]|0;r[c++]=u,r[c++]=u,r[c++]=u}},getOutputLength:function(e){return 3*e},isPassthrough:la.prototype.isPassthrough,createRgbBuffer:la.prototype.createRgbBuffer,isDefaultDecode:function(e){return la.isDefaultDecode(e,this.numComps)},usesZeroToOneRange:!0},e}(),ma=function(){function e(){this.name=`DeviceRGB`,this.numComps=3,this.defaultColor=new Float32Array([0,0,0])}return e.prototype={getRgb:function(e,t){var n=new Uint8Array(3);return this.getRgbItem(e,t,n,0),n},getRgbItem:function(e,t,n,r){var i=255*e[t]|0,a=255*e[t+1]|0,o=255*e[t+2]|0;n[r]=i<0?0:i>255?255:i,n[r+1]=a<0?0:a>255?255:a,n[r+2]=o<0?0:o>255?255:o},getRgbBuffer:function(e,t,n,r,i,a){var o=3*n;if(a!=8)for(var s=255/((1<<a)-1),c=t,l=i,u=0;u<o;++u)r[l++]=s*e[c++]|0;else r.set(e.subarray(t,t+o),i)},getOutputLength:function(e){return e},isPassthrough:function(e){return e==8},createRgbBuffer:la.prototype.createRgbBuffer,isDefaultDecode:function(e){return la.isDefaultDecode(e,this.numComps)},usesZeroToOneRange:!0},e}(),ha=function(){function e(e,t,n,r,i){var a=e[t+0]*n,o=e[t+1]*n,s=e[t+2]*n,c=e[t+3]*n,l=a*(-4.387332384609988*a+54.48615194189176*o+18.82290502165302*s+212.25662451639585*c-285.2331026137004)+o*(1.7149763477362134*o-5.6096736904047315*s+-17.873870861415444*c-5.497006427196366)+s*(-2.5217340131683033*s-21.248923337353073*c+17.5119270841813)+c*(-21.86122147463605*c-189.48180835922747)+255,u=a*(8.841041422036149*a+60.118027045597366*o+6.871425592049007*s+31.159100130055922*c-79.2970844816548)+o*(-15.310361306967817*o+17.575251261109482*s+131.35250912493976*c-190.9453302588951)+s*(4.444339102852739*s+9.8632861493405*c-24.86741582555878)+c*(-20.737325471181034*c-187.80453709719578)+255,d=a*(.8842522430003296*a+8.078677503112928*o+30.89978309703729*s-.23883238689178934*c-14.183576799673286)+o*(10.49593273432072*o+63.02378494754052*s+50.606957656360734*c-112.23884253719248)+s*(.03296041114873217*s+115.60384449646641*c-193.58209356861505)+c*(-22.33816807309886*c-180.12613974708367)+255;r[i]=l>255?255:l<0?0:l,r[i+1]=u>255?255:u<0?0:u,r[i+2]=d>255?255:d<0?0:d}function t(){this.name=`DeviceCMYK`,this.numComps=4,this.defaultColor=new Float32Array([0,0,0,1])}return t.prototype={getRgb:function(t,n){var r=new Uint8Array(3);return e(t,n,1,r,0),r},getRgbItem:function(t,n,r,i){e(t,n,1,r,i)},getRgbBuffer:function(t,n,r,i,a,o){for(var s=1/((1<<o)-1),c=0;c<r;c++)e(t,n,s,i,a),n+=4,a+=3},getOutputLength:function(e){return 3*(e>>2)},isPassthrough:la.prototype.isPassthrough,createRgbBuffer:la.prototype.createRgbBuffer,isDefaultDecode:function(e){return la.isDefaultDecode(e,this.numComps)},usesZeroToOneRange:!0},t}(),ga=function(){function e(e,t,n){this.name=`CalGray`,this.numComps=3,this.defaultColor=new Float32Array([0,0,0]),e||G(`WhitePoint missing - required for color space CalGray`),t||=[0,0,0],n||=1,this.XW=e[0],this.YW=e[1],this.ZW=e[2],this.XB=t[0],this.YB=t[1],this.ZB=t[2],this.G=n,(this.XW<0||this.ZW<0||this.YW!==1)&&G(`Invalid WhitePoint components for `+this.name+`, no fallback available`),(this.XB<0||this.YB<0||this.ZB<0)&&(U(`Invalid BlackPoint for `+this.name+`, falling back to default`),this.XB=this.YB=this.ZB=0),this.XB===0&&this.YB===0&&this.ZB===0||Oi(this.name+`, BlackPoint: XB: `+this.XB+`, YB: `+this.YB+`, ZB: `+this.ZB+`, only default values are supported.`),this.G<1&&(U(`Invalid Gamma: `+this.G+` for `+this.name+`, falling back to default`),this.G=1)}return e.prototype={getRgb:function(e,t){var n=new Uint8Array(3);return this.getRgbItem(e,t,n,0),n},getRgbItem:function(e,t,n,r){var i=e[t]**+this.G,a=(this.XW,this.YW*i),o=(this.ZW,Math.max(116*a**(1/3)-16,0));n[r]=255*o/100,n[r+1]=255*o/100,n[r+2]=255*o/100},getRgbBuffer:function(e,t,n,r,i,a){for(var o=255/((1<<a)-1),s=t,c=i,l=0;l<n;++l){var u=o*e[s++]|0;r[c++]=u,r[c++]=u,r[c++]=u}},getOutputLength:function(e){return 3*e},isPassthrough:la.prototype.isPassthrough,createRgbBuffer:la.prototype.createRgbBuffer,isDefaultDecode:function(e){return la.isDefaultDecode(e,this.numComps)},usesZeroToOneRange:!0},e}(),_a=function(){function e(e,t,n){this.name=`Lab`,this.numComps=3,this.defaultColor=new Float32Array([0,0,0]),e||G(`WhitePoint missing - required for color space Lab`),t||=[0,0,0],n||=[-100,100,-100,100],this.XW=e[0],this.YW=e[1],this.ZW=e[2],this.amin=n[0],this.amax=n[1],this.bmin=n[2],this.bmax=n[3],this.XB=t[0],this.YB=t[1],this.ZB=t[2],(this.XW<0||this.ZW<0||this.YW!==1)&&G(`Invalid WhitePoint components, no fallback available`),(this.XB<0||this.YB<0||this.ZB<0)&&(U(`Invalid BlackPoint, falling back to default`),this.XB=this.YB=this.ZB=0),(this.amin>this.amax||this.bmin>this.bmax)&&(U(`Invalid Range, falling back to defaults`),this.amin=-100,this.amax=100,this.bmin=-100,this.bmax=100)}function t(e){return e>=6/29?e*e*e:108/841*(e-4/29)}function n(e,t,n,r){return n+e*(r-n)/t}function r(e,r,i,a,o,s){var c=r[i],l=r[i+1],u=r[i+2];!1!==a&&(c=n(c,a,0,100),l=n(l,a,e.amin,e.amax),u=n(u,a,e.bmin,e.bmax));var d,f,p,m=(c+16)/116,h=m+(l=l>e.amax?e.amax:l<e.amin?e.amin:l)/500,g=m-(u=u>e.bmax?e.bmax:u<e.bmin?e.bmin:u)/200,_=e.XW*t(h),v=e.YW*t(m),y=e.ZW*t(g);e.ZW<1?(d=3.1339*_+-1.617*v+-.4906*y,f=-.9785*_+1.916*v+.0333*y,p=.072*_+-.229*v+1.4057*y):(d=3.2406*_+-1.5372*v+-.4986*y,f=-.9689*_+1.8758*v+.0415*y,p=.0557*_+-.204*v+1.057*y),o[s]=255*Math.sqrt(d<0?0:d>1?1:d),o[s+1]=255*Math.sqrt(f<0?0:f>1?1:f),o[s+2]=255*Math.sqrt(p<0?0:p>1?1:p)}return e.prototype={getRgb:function(e,t){var n=new Uint8Array(3);return r(this,e,t,!1,n,0),n},getRgbItem:function(e,t,n,i){r(this,e,t,!1,n,i)},getRgbBuffer:function(e,t,n,i,a,o){for(var s=(1<<o)-1,c=0;c<n;c++)r(this,e,t,s,i,a),t+=3,a+=3},getOutputLength:function(e){return e},createRgbBuffer:la.prototype.createRgbBuffer,isPassthrough:la.prototype.isPassthrough,isDefaultDecode:function(e){return!0},usesZeroToOneRange:!1},e}(),va=2,ya=3,ba=function(){function e(){G(`should not call Pattern constructor`)}return e.prototype={getPattern:function(e){G(`Should not call Pattern.getStyle: `+e)}},e.shadingFromIR=function(e){return xa[e[0]].fromIR(e)},e.parseShading=function(e,t,n,r){var i=ra(e)?e.dict:e,a=i.get(`ShadingType`);switch(a){case va:case ya:return new xa.RadialAxial(i,t,n,r);default:return Oi(`Unsupported shading type: `+a),new xa.Dummy}},e}(),xa={SMALL_NUMBER:.01};xa.RadialAxial=function(){function e(e,t,n,r,i){this.matrix=t,this.coordsArr=e.get(`Coords`),this.shadingType=e.get(`ShadingType`),this.type=`Pattern`,this.ctx=i;var a=e.get(`ColorSpace`,`CS`);a=la.parse(a,n,r),this.cs=a;var o=0,s=1;if(e.has(`Domain`)){var c=e.get(`Domain`);o=c[0],s=c[1]}var l=!1,u=!1;if(e.has(`Extend`)){var d=e.get(`Extend`);l=d[0],u=d[1]}if(!(this.shadingType!==ya||l&&u)){var f=this.coordsArr[0],p=this.coordsArr[1],m=this.coordsArr[2],h=this.coordsArr[3],g=this.coordsArr[4],_=this.coordsArr[5],v=Math.sqrt((f-h)*(f-h)+(p-g)*(p-g));m<=_+v&&_<=m+v&&W(`Unsupported radial gradient.`)}this.extendStart=l,this.extendEnd=u;var y,b=e.get(`Function`);if(na(b)){for(var x=[],S=0,C=b.length;S<C;S++){var w=n.fetchIfRef(b[S]);oa(w)||G(`Invalid function`),x.push(Ca.parse(n,w))}y=function(e){for(var t=[],n=0,r=x.length;n<r;n++)t.push(x[n](e)[0]);return t}}else oa(b)||G(`Invalid function`),y=Ca.parse(n,b);var T=s-o,E=T/10,D=this.colorStops=[];if(o>=s||E<=0)U(`Bad shading domain.`);else{for(var O=o;O<=s;O+=E){var k=a.getRgb(y([O]),0),A=K.makeCssRgb(k);D.push([(O-o)/T,A])}var j=`transparent`;e.has(`Background`)&&(k=a.getRgb(e.get(`Background`),0),j=K.makeCssRgb(k)),l||(D.unshift([0,j]),D[1][0]+=xa.SMALL_NUMBER),u||(D[D.length-1][0]-=xa.SMALL_NUMBER,D.push([1,j])),this.colorStops=D}}return e.fromIR=function(e){var t=e[1],n=e[2],r=e[3],i=e[4],a=e[5],o=e[6];return{type:`Pattern`,getPattern:function(e){var s;t==va?s=e.createLinearGradient(r[0],r[1],i[0],i[1]):t==ya&&(s=e.createRadialGradient(r[0],r[1],a,i[0],i[1],o));for(var c=0,l=n.length;c<l;++c){var u=n[c];s.addColorStop(u[0],u[1])}return s}}},e.prototype={getIR:function(){var e=this.coordsArr,t=this.shadingType;if(t==va)var n=[e[0],e[1]],r=[e[2],e[3]],i=null,a=null;else t==ya?(n=[e[0],e[1]],r=[e[3],e[4]],i=e[2],a=e[5]):G(`getPattern type unknown: `+t);var o=this.matrix;return o&&(n=K.applyTransform(n,o),r=K.applyTransform(r,o)),[`RadialAxial`,t,this.colorStops,n,r,i,a]}},e}(),xa.Dummy=function(){function e(){this.type=`Pattern`}return e.fromIR=function(){return{type:`Pattern`,getPattern:function(){return`hotpink`}}},e.prototype={getIR:function(){return[`Dummy`]}},e}();var Sa=function(){var e=1,t=2;function n(e,t,n,r,i,a){this.name=e[1][0].name,this.operatorList=e[2],this.matrix=e[3]||[1,0,0,1,0,0],this.bbox=e[4],this.xstep=e[5],this.ystep=e[6],this.paintType=e[7],this.tilingType=e[8],this.color=t,this.objs=r,this.commonObjs=i,this.baseTransform=a,this.type=`Pattern`,this.ctx=n}return n.getIR=function(e,t,n){return[`TilingPattern`,n,e,t.get(`Matrix`),t.get(`BBox`),t.get(`XStep`),t.get(`YStep`),t.get(`PaintType`),t.get(`TilingType`)]},n.prototype={createPatternCanvas:function(e){var t=this.operatorList,n=this.bbox,r=this.xstep,i=this.ystep,a=this.paintType,o=this.tilingType,s=this.color,c=this.objs,l=this.commonObjs;this.ctx,Oi(`TilingType: `+o);var u=n[0],d=n[1],f=n[2],p=n[3],m=[u,d],h=[u+r,d+i],g=h[0]-m[0],_=h[1]-m[1],v=K.singularValueDecompose2dScale(this.matrix),y=K.singularValueDecompose2dScale(this.baseTransform),b=[v[0]*y[0],v[1]*y[1]];g=Math.min(Math.ceil(Math.abs(g*b[0])),3e3),_=Math.min(Math.ceil(Math.abs(_*b[1])),3e3);var x=Us.getCanvas(`pattern`,g,_,!0),S=x.context,C=new Gs(S,l,c);C.groupLevel=e.groupLevel,this.setFillAndStrokeStyleToContext(S,a,s),this.setScale(g,_,r,i),this.transformToScale(C);var w=[1,0,0,1,-m[0],-m[1]];return C.transform.apply(C,w),this.clipBbox(C,n,u,d,f,p),C.executeOperatorList(t),x.canvas},setScale:function(e,t,n,r){this.scale=[e/n,t/r]},transformToScale:function(e){var t=this.scale,n=[t[0],0,0,t[1],0,0];e.transform.apply(e,n)},scaleToContext:function(){var e=this.scale;this.ctx.scale(1/e[0],1/e[1])},clipBbox:function(e,t,n,r,i,a){if(t&&na(t)&&t.length==4){var o=i-n,s=a-r;e.rectangle(n,r,o,s),e.clip(),e.endPath()}},setFillAndStrokeStyleToContext:function(n,r,i){switch(r){case e:var a=this.ctx;n.fillStyle=a.fillStyle,n.strokeStyle=a.strokeStyle;break;case t:var o=la.singletons.rgb.getRgb(i,0),s=K.makeCssRgb(o);n.fillStyle=s,n.strokeStyle=s;break;default:G(`Unsupported paint type: `+r)}},getPattern:function(e,t){var n=this.createPatternCanvas(t);return(e=this.ctx).setTransform.apply(e,this.baseTransform),e.transform.apply(e,this.matrix),this.scaleToContext(),e.createPattern(n,`repeat`)}},n}(),Ca={getSampleArray:function(e,t,n,r){for(var i=1,a=0,o=e.length;a<o;a++)i*=e[a];i*=t;var s=[],c=0,l=0,u=1/(2**n-1),d=r.getBytes((i*n+7)/8),f=0;for(a=0;a<i;a++){for(;c<n;)l<<=8,l|=d[f++],c+=8;c-=n,s.push((l>>c)*u),l&=(1<<c)-1}return s},getIR:function(e,t){var n=t.dict;n||=t;var r=[this.constructSampled,null,this.constructInterpolated,this.constructStiched,this.constructPostScript][n.get(`FunctionType`)];return r||G(`Unknown type of function`),r.call(this,t,n,e)},fromIR:function(e){switch(e[0]){case 0:return this.constructSampledFromIR(e);case 2:return this.constructInterpolatedFromIR(e);case 3:return this.constructStichedFromIR(e);default:return this.constructPostScriptFromIR(e)}},parse:function(e,t){var n=this.getIR(e,t);return this.fromIR(n)},constructSampled:function(e,t){function n(e){for(var t=e.length,n=(e.length,[]),r=0,i=0;i<t;i+=2)n[r]=[e[i],e[i+1]],++r;return n}var r=t.get(`Domain`),i=t.get(`Range`);r&&i||G(`No domain or range`);var a=r.length/2,o=i.length/2;r=n(r),i=n(i);var s=t.get(`Size`),c=t.get(`BitsPerSample`),l=t.get(`Order`)||1;l!==1&&Oi(`No support for cubic spline interpolation: `+l);var u=t.get(`Encode`);if(!u){u=[];for(var d=0;d<a;++d)u.push(0),u.push(s[d]-1)}u=n(u);var f=t.get(`Decode`);return[0,a,r,u,f=f?n(f):i,this.getSampleArray(s,o,c,e),s,o,2**c-1,i]},constructSampledFromIR:function(e){function t(e,t,n,r,i){return r+(i-r)/(n-t)*(e-t)}return function(n){var r=e[1],i=e[2],a=e[3],o=e[4],s=e[5],c=e[6],l=e[7],u=(e[8],e[9]);r!=n.length&&G(`Incorrect number of arguments: `+r+` != `+n.length);for(var d=n,f=1<<r,p=new Float64Array(f),m=new Uint32Array(f),h=0;h<f;h++)p[h]=1;for(var g=l,_=1,v=0;v<r;++v){var y=i[v][0],b=i[v][1],x=t(Math.min(Math.max(d[v],y),b),y,b,a[v][0],a[v][1]),S=c[v],C=(x=Math.min(Math.max(x,0),S-1))<S-1?Math.floor(x):x-1,w=C+1-x,T=x-C,E=C*g,D=E+g;for(h=0;h<f;h++)h&_?(p[h]*=T,m[h]+=D):(p[h]*=w,m[h]+=E);g*=S,_<<=1}var O=new Float64Array(l);for(h=0;h<l;++h){var k=0;for(v=0;v<f;v++)k+=s[m[v]+h]*p[v];k=t(k,0,1,o[h][0],o[h][1]),O[h]=Math.min(Math.max(k,u[h][0]),u[h][1])}return O}},constructInterpolated:function(e,t){var n=t.get(`C0`)||[0],r=t.get(`C1`)||[1],i=t.get(`N`);na(n)&&na(r)||G(`Illegal dictionary for interpolated function`);for(var a=n.length,o=[],s=0;s<a;++s)o.push(r[s]-n[s]);return[2,n,o,i]},constructInterpolatedFromIR:function(e){var t=e[1],n=e[2],r=e[3],i=n.length;return function(e){for(var a=r==1?e[0]:e[0]**+r,o=[],s=0;s<i;++s)o.push(t[s]+a*n[s]);return o}},constructStiched:function(e,t,n){var r=t.get(`Domain`);r||G(`No domain`),r.length/2!=1&&G(`Bad domain for stiched function`);for(var i=t.get(`Functions`),a=[],o=0,s=i.length;o<s;++o)a.push(Ca.getIR(n,n.fetchIfRef(i[o])));return[3,r,t.get(`Bounds`),t.get(`Encode`),a]},constructStichedFromIR:function(e){for(var t=e[1],n=e[2],r=e[3],i=e[4],a=[],o=0,s=i.length;o<s;o++)a.push(Ca.fromIR(i[o]));return function(e){for(var i=function(e,t,n){return e>n?e=n:e<t&&(e=t),e}(e[0],t[0],t[1]),o=0,s=n.length;o<s&&!(i<n[o]);++o);var c=t[0];o>0&&(c=n[o-1]);var l=t[1];o<n.length&&(l=n[o]);var u=r[2*o],d=u+(i-c)*(r[2*o+1]-u)/(l-c);return a[o]([d])}},constructPostScript:function(e,t,n){var r=t.get(`Domain`),i=t.get(`Range`);return r||G(`No domain.`),i||G(`No range.`),[4,r,i,new Da(new Aa(e)).parse()]},constructPostScriptFromIR:function(e){var t=e[1],n=e[2],r=e[3],i=n.length/2,a=new Ea(r),o=new wa;return function(e){for(var r=[],s=0,c=t.length/2;s<c;++s)r.push(e[s]);var l=r.join(`_`);if(o.has(l))return o.get(l);var u=a.execute(r),d=[];for(s=i-1;s>=0;--s){var f=u.pop(),p=2*s;f<n[p]?f=n[p]:f>n[p+1]&&(f=n[p+1]),d[s]=f}return o.set(l,d),d}}},wa=function(){function e(){this.cache={},this.total=0}return e.prototype={has:function(e){return e in this.cache},get:function(e){return this.cache[e]},set:function(e,t){this.total<1024&&(this.cache[e]=t,this.total++)}},e}(),Ta=function(){function e(e){this.stack=e||[]}return e.prototype={push:function(e){this.stack.length>=100&&G(`PostScript function stack overflow.`),this.stack.push(e)},pop:function(){return this.stack.length<=0&&G(`PostScript function stack underflow.`),this.stack.pop()},copy:function(e){this.stack.length+e>=100&&G(`PostScript function stack overflow.`);for(var t=this.stack,n=t.length-e,r=e-1;r>=0;r--,n++)t.push(t[n])},index:function(e){this.push(this.stack[this.stack.length-e-1])},roll:function(e,t){var n,r,i,a=this.stack,o=a.length-e,s=a.length-1,c=o+(t-Math.floor(t/e)*e);for(n=o,r=s;n<r;n++,r--)i=a[n],a[n]=a[r],a[r]=i;for(n=o,r=c-1;n<r;n++,r--)i=a[n],a[n]=a[r],a[r]=i;for(n=c,r=s;n<r;n++,r--)i=a[n],a[n]=a[r],a[r]=i}},e}(),Ea=function(){function e(e,t){this.operators=e,this.operands=t}return e.prototype={execute:function(e){for(var t,n,r,i=new Ta(e),a=0,o=this.operators,s=o.length;a<s;)if(typeof(t=o[a++])!=`number`)switch(t){case`jz`:r=i.pop(),(n=i.pop())||(a=r);break;case`j`:a=n=i.pop();break;case`abs`:n=i.pop(),i.push(Math.abs(n));break;case`add`:r=i.pop(),n=i.pop(),i.push(n+r);break;case`and`:r=i.pop(),Yi(n=i.pop())&&Yi(r)?i.push(n&&r):i.push(n&r);break;case`atan`:n=i.pop(),i.push(Math.atan(n));break;case`bitshift`:r=i.pop(),(n=i.pop())>0?i.push(n<<r):i.push(n>>r);break;case`ceiling`:n=i.pop(),i.push(Math.ceil(n));break;case`copy`:n=i.pop(),i.copy(n);break;case`cos`:n=i.pop(),i.push(Math.cos(n));break;case`cvi`:n=0|i.pop(),i.push(n);break;case`cvr`:break;case`div`:r=i.pop(),n=i.pop(),i.push(n/r);break;case`dup`:i.copy(1);break;case`eq`:r=i.pop(),n=i.pop(),i.push(n==r);break;case`exch`:i.roll(2,1);break;case`exp`:r=i.pop(),n=i.pop(),i.push(n**+r);break;case`false`:i.push(!1);break;case`floor`:n=i.pop(),i.push(Math.floor(n));break;case`ge`:r=i.pop(),n=i.pop(),i.push(n>=r);break;case`gt`:r=i.pop(),n=i.pop(),i.push(n>r);break;case`idiv`:r=i.pop(),n=i.pop(),i.push(n/r|0);break;case`index`:n=i.pop(),i.index(n);break;case`le`:r=i.pop(),n=i.pop(),i.push(n<=r);break;case`ln`:n=i.pop(),i.push(Math.log(n));break;case`log`:n=i.pop(),i.push(Math.log(n)/Math.LN10);break;case`lt`:r=i.pop(),n=i.pop(),i.push(n<r);break;case`mod`:r=i.pop(),n=i.pop(),i.push(n%r);break;case`mul`:r=i.pop(),n=i.pop(),i.push(n*r);break;case`ne`:r=i.pop(),n=i.pop(),i.push(n!=r);break;case`neg`:n=i.pop(),i.push(-r);break;case`not`:Yi(n=i.pop())&&Yi(r)?i.push(n&&r):i.push(n&r);break;case`or`:r=i.pop(),Yi(n=i.pop())&&Yi(r)?i.push(n||r):i.push(n|r);break;case`pop`:i.pop();break;case`roll`:r=i.pop(),n=i.pop(),i.roll(n,r);break;case`round`:n=i.pop(),i.push(Math.round(n));break;case`sin`:n=i.pop(),i.push(Math.sin(n));break;case`sqrt`:n=i.pop(),i.push(Math.sqrt(n));break;case`sub`:r=i.pop(),n=i.pop(),i.push(n-r);break;case`true`:i.push(!0);break;case`truncate`:n=(n=i.pop())<0?Math.ceil(n):Math.floor(n),i.push(n);break;case`xor`:r=i.pop(),Yi(n=i.pop())&&Yi(r)?i.push(n!=r):i.push(n^r);break;default:G(`Unknown operator `+t)}else i.push(t);return i.stack}},e}(),Da=function(){function e(e){this.lexer=e,this.operators=[],this.token=null,this.prev=null}return e.prototype={nextToken:function(){this.prev=this.token,this.token=this.lexer.getToken()},accept:function(e){return this.token.type==e&&(this.nextToken(),!0)},expect:function(e){if(this.accept(e))return!0;G(`Unexpected symbol: found `+this.token.type+` expected `+e+`.`)},parse:function(){return this.nextToken(),this.expect(Oa.LBRACE),this.parseBlock(),this.expect(Oa.RBRACE),this.operators},parseBlock:function(){for(;;)if(this.accept(Oa.NUMBER))this.operators.push(this.prev.value);else if(this.accept(Oa.OPERATOR))this.operators.push(this.prev.value);else{if(!this.accept(Oa.LBRACE))return;this.parseCondition()}},parseCondition:function(){var e=this.operators.length;if(this.operators.push(null,null),this.parseBlock(),this.expect(Oa.RBRACE),this.accept(Oa.IF))this.operators[e]=this.operators.length,this.operators[e+1]=`jz`;else if(this.accept(Oa.LBRACE)){var t=this.operators.length;this.operators.push(null,null);var n=this.operators.length;this.parseBlock(),this.expect(Oa.RBRACE),this.expect(Oa.IFELSE),this.operators[t]=this.operators.length,this.operators[t+1]=`j`,this.operators[e]=n,this.operators[e+1]=`jz`}else G(`PS Function: error parsing conditional.`)}},e}(),Oa={LBRACE:0,RBRACE:1,NUMBER:2,OPERATOR:3,IF:4,IFELSE:5},ka=function(){function e(e,t){this.type=e,this.value=t}var t={};return e.getOperator=function(n){return t[n]||(t[n]=new e(Oa.OPERATOR,n))},e.LBRACE=new e(Oa.LBRACE,`{`),e.RBRACE=new e(Oa.RBRACE,`}`),e.IF=new e(Oa.IF,`IF`),e.IFELSE=new e(Oa.IFELSE,`IFELSE`),e}(),Aa=function(){function e(e){this.stream=e,this.nextChar()}return e.prototype={nextChar:function(){return this.currentChar=this.stream.getByte()},getToken:function(){for(var e=!1,t=this.currentChar;;){if(t<0)return is;if(e)t!==10&&t!==13||(e=!1);else if(t==37)e=!0;else if(!ss.isSpace(t))break;t=this.nextChar()}switch(0|t){case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:case 43:case 45:case 46:return new ka(Oa.NUMBER,this.getNumber());case 123:return this.nextChar(),ka.LBRACE;case 125:return this.nextChar(),ka.RBRACE}for(var n=String.fromCharCode(t);(t=this.nextChar())>=0&&(t>=65&&t<=90||t>=97&&t<=122);)n+=String.fromCharCode(t);switch(n.toLowerCase()){case`if`:return ka.IF;case`ifelse`:return ka.IFELSE;default:return ka.getOperator(n)}},getNumber:function(){for(var e=this.currentChar,t=String.fromCharCode(e);(e=this.nextChar())>=0&&(e>=48&&e<=57||e===45||e===46);)t+=String.fromCharCode(e);var n=parseFloat(t);return isNaN(n)&&G(`Invalid floating point number: `+n),n}},e}(),ja=function(){function e(e){if(e.data)this.data=e.data;else{var t=e.dict,n=this.data={};n.subtype=t.get(`Subtype`).name,n.annotationFlags=t.get(`F`),this.getAndSetRectangle(t),n.rect=this.rectangle;var r=t.get(`C`);if(na(r)&&r.length===3?n.color=r:n.color=[0,0,0],t.has(`BS`)){var i=t.get(`BS`);n.borderWidth=i.has(`W`)?i.get(`W`):1}else n.borderWidth=(t.get(`Border`)||[0,0,1])[2]||0;this.appearance=function(e){var t=e.get(`AP`);if(ta(t)){var n,r=t.get(`N`);if(ta(r)){var i=e.get(`AS`);i&&r.has(i.name)&&(n=r.get(i.name))}else n=r;return n}}(t),n.hasAppearance=!!this.appearance}}return e.prototype={setRectangle:function(e){na(e)&&e.length===4?this.rectangle=K.normalizeRect(e):this.rectangle=[0,0,0,0]},getAndSetRectangle:function(e){var t=e.get(`Rect`),n=e.xref;if(na(t)&&t.length===4){for(var r=0;r<4;r++)t[r]=typeof t[r]==`object`?n.fetchIfRef(t[r]):t[r];this.setRectangle(t)}else this.rectangle=[0,0,0,0]},getData:function(){return this.data},hasHtml:function(){return!1},getHtmlElement:function(e){throw new Bi(`getHtmlElement() should be implemented in subclass`)},getEmptyContainer:function(e,t){ki(!_i,`getEmptyContainer() should be called from main thread`),t||=this.data.rect;var n=document.createElement(e);return n.style.width=Math.ceil(t[2]-t[0])+`px`,n.style.height=Math.ceil(t[3]-t[1])+`px`,n},isViewable:function(){var e=this.data;return!(!e||e.annotationFlags&&34&e.annotationFlags||!e.rect)},loadResources:function(e){var t=new q;return this.appearance.dict.getAsync(`Resources`).then(function(n){n?new Xa(n.map,e,n.xref).load().then(function(){t.resolve(n)}):t.resolve()}.bind(this)),t},getOperatorList:function(e){var t=new q;if(!this.appearance)return t.resolve(new so),t;var n=this.data,r=this.appearance.dict,i=this.loadResources([`ExtGState`,`ColorSpace`,`Pattern`,`Shading`,`XObject`,`Font`]),a=r.get(`BBox`)||[0,0,1,1],o=r.get(`Matrix`)||[1,0,0,1,0,0],s=function(e,t,n){var r=K.getAxialAlignedBoundingBox(t,n),i=r[0],a=r[1],o=r[2],s=r[3];if(i===o||a===s)return[1,0,0,1,e[0],e[1]];var c=(e[2]-e[0])/(o-i),l=(e[3]-e[1])/(s-a);return[c,0,0,l,e[0]-i*c,e[1]-a*l]}(n.rect,a,o);return n.border,i.then(function(r){var i=new so;i.addOp(H.beginAnnotation,[n.rect,s,o]),e.getOperatorList(this.appearance,r,i),i.addOp(H.endAnnotation,[]),t.resolve(i)}.bind(this)),t}},e.getConstructor=function(t,n){if(t)return t===`Link`?Ra:t===`Text`?La:t===`Widget`?n?n===`Tx`?Ia:Fa:void 0:e},e.fromData=function(t){var n=t.subtype,r=t.fieldType,i=e.getConstructor(n,r);if(i)return new i({data:t})},e.fromRef=function(t,n){var r=t.fetchIfRef(n);if(ta(r)){var i=r.get(`Subtype`);if(i=$i(i)?i.name:``){var a=K.getInheritableProperty(r,`FT`);a=$i(a)?a.name:``;var o=e.getConstructor(i,a);if(o){var s=new o({dict:r,ref:n});if(s.isViewable())return s;Oi(`unimplemented/notViewable annotation type: `+i)}}}},e.appendToOperatorList=function(e,t,n,r){for(var i=new q,a=[],o=0,s=e.length;o<s;++o)a.push(e[o].getOperatorList(r));return q.all(a).then(function(e){t.addOp(H.beginAnnotations,[]);for(var n=0,r=e.length;n<r;++n){var a=e[n];t.addOpList(a)}t.addOp(H.endAnnotations,[]),i.resolve()},function(e){i.reject(e)}),i},e}();V.Annotation=ja;var Ma,Na,Pa,Fa=function(){function e(e){if(ja.call(this,e),!e.data){var t=e.dict,n=this.data,r=K.getInheritableProperty(t,`V`)||``;n.fieldValue=qi((r.name?r.name:r)||``),n.alternativeText=qi(t.get(`TU`)||``),n.alternativeID=qi(t.get(`TM`)||``),n.defaultAppearance=K.getInheritableProperty(t,`DA`)||``;var i=K.getInheritableProperty(t,`FT`);n.fieldType=$i(i)?i.name:``,n.fieldFlags=K.getInheritableProperty(t,`Ff`)||0,this.fieldResources=K.getInheritableProperty(t,`DR`)||new Ua;var a=qi(K.getInheritableProperty(t,`T`)||``);a=a.replace(/[.\s\W]+/g,`_`),n.fullName=a.replace(/^[\s_,:.;\/\\]+/,``),Hr.processAnnotation(t,n)}}var t=ja.prototype;return K.inherit(e,ja,{isViewable:function(){return t.isViewable.call(this)}}),e}(),Ia=function(){function e(e){Fa.call(this,e),e.data||(this.data.textAlignment=K.getInheritableProperty(e.dict,`Q`))}return Fa.prototype,K.inherit(e,Fa,{hasHtml:function(){return!this.data.hasAppearance&&!!this.data.fieldValue},getHtmlElement:function(e){ki(!_i,`getHtmlElement() shall be called from main thread`);var t=this.data,n=this.getEmptyContainer(`div`);n.style.display=`table`;var r=document.createElement(`div`);r.textContent=t.fieldValue;var i=t.textAlignment;return r.style.textAlign=[`left`,`center`,`right`][i],r.style.verticalAlign=`middle`,r.style.display=`table-cell`,(function(e,t,n){var r=e.style;if(r.fontSize=t.fontSize+`px`,r.direction=t.fontDirection<0?`rtl`:`ltr`,n){r.fontWeight=n.black?n.bold?`bolder`:`bold`:n.bold?`bold`:`normal`,r.fontStyle=n.italic?`italic`:`normal`;var i=n.loadedName;r.fontFamily=(i?`"`+i+`", `:``)+(n.fallbackName||`Helvetica, sans-serif`)}})(r,t,t.fontRefName?e.getData(t.fontRefName):null),n.appendChild(r),n},getOperatorList:function(e){if(this.appearance)return ja.prototype.getOperatorList.call(this,e);var t=new q,n=new so,r=this.data,i=r.defaultAppearance;if(!i)return t.resolve(n),t;var a=new ls(Wi(i));e.getOperatorList(a,this.fieldResources,n);var o=n.fnArray,s=n.argsArray;r.rgb=[0,0,0];for(var c=0;c<0;++c){var l=o[c],u=s[c];if(l===H.setFont){r.fontRefName=u[0];var d=u[1];d<0?(r.fontDirection=-1,r.fontSize=-d):(r.fontDirection=1,r.fontSize=d)}else if(l===H.setFillRGBColor)r.rgb=u;else if(l===H.setFillGray){var f=255*u[0];r.rgb=[f,f,f]}}return t.resolve(n),t}}),e}(),La=function(){function e(e){if(ja.call(this,e),!e.data){var t=e.dict,n=this.data,r=t.get(`Contents`),i=t.get(`T`);n.content=qi(r||``),n.title=qi(i||``),n.name=t.has(`Name`)?t.get(`Name`).name:`Note`}}return K.inherit(e,ja,{getOperatorList:function(e){var t=new q;return t.resolve(new so),t},hasHtml:function(){return!0},getHtmlElement:function(e){ki(!_i,`getHtmlElement() shall be called from main thread`);var t=this.data,n=t.rect;n[3]-n[1]<10&&(n[3]=n[1]+10),n[2]-n[0]<10&&(n[2]=n[0]+(n[3]-n[1]));var r=this.getEmptyContainer(`section`,n);r.className=`annotText`;var i=document.createElement(`img`);i.style.height=r.style.height;var a=t.name;i.src=V.imageResourcesPath+`annotation-`+a.toLowerCase()+`.svg`,i.alt=`[{{type}} Annotation]`,i.dataset.l10nId=`text_annotation_type`,i.dataset.l10nArgs=JSON.stringify({type:a});var o=document.createElement(`div`);o.setAttribute(`hidden`,!0);var s=document.createElement(`h1`),c=document.createElement(`p`);if(o.style.left=Math.floor(n[2]-n[0])+`px`,o.style.top=`0px`,s.textContent=t.title,t.content||t.title){for(var l=document.createElement(`span`),u=t.content.split(/(?:\r\n?|\n)/),d=0,f=u.length;d<f;++d){var p=u[d];l.appendChild(document.createTextNode(p)),d<f-1&&l.appendChild(document.createElement(`br`))}c.appendChild(l);var m=function(){r.style.zIndex+=1,o.removeAttribute(`hidden`)},h=function(e){(e.toElement||e.relatedTarget)&&(--r.style.zIndex,o.setAttribute(`hidden`,!0))};o.addEventListener(`mouseover`,m,!1),o.addEventListener(`mouseout`,h,!1),i.addEventListener(`mouseover`,m,!1),i.addEventListener(`mouseout`,h,!1)}else o.setAttribute(`hidden`,!0);return o.appendChild(s),o.appendChild(c),r.appendChild(i),r.appendChild(o),r}}),e}(),Ra=function(){function e(e){if(ja.call(this,e),!e.data){var t=e.dict,n=this.data,r=t.get(`A`);if(r){var i=r.get(`S`).name;if(i===`URI`){var a=function(e){return e&&e.indexOf(`www.`)===0?`http://`+e:e}(r.get(`URI`));ji(a,!1)||(a=``),n.url=a}else if(i===`GoTo`)n.dest=r.get(`D`);else if(i===`GoToR`){var o=r.get(`F`);ta(o)&&(a=o.get(`F`)||``),ji(a,!1)||(a=``),n.url=a,n.dest=r.get(`D`)}else i===`Named`?n.action=r.get(`N`).name:Oi(`unrecognized link type: `+i)}else if(t.has(`Dest`)){var s=t.get(`Dest`);n.dest=$i(s)?s.name:s}}}return K.inherit(e,ja,{hasOperatorList:function(){return!1},hasHtml:function(){return!0},getHtmlElement:function(e){var t=this.data.rect,n=document.createElement(`a`),r=this.data.borderWidth;n.style.borderWidth=r+`px`;for(var i=this.data.color,a=[],o=0;o<3;++o)a[o]=Math.round(255*i[o]);n.style.borderColor=K.makeCssRgb(a),n.style.borderStyle=`solid`;var s=t[2]-t[0]-2*r,c=t[3]-t[1]-2*r;return n.style.width=s+`px`,n.style.height=c+`px`,n.href=this.data.url||``,n}}),e}(),za=function(){function e(e,t,n,r,i,a){this.pdfManager=e,this.pageIndex=n,this.pageDict=r,this.xref=t,this.ref=i,this.fontCache=a,this.idCounters={obj:0},this.resourcesPromise=null}return e.prototype={getPageProp:function(e){return this.pageDict.get(e)},inheritPageProp:function(e){for(var t=this.pageDict,n=t.get(e);n===void 0&&(t=t.get(`Parent`));)n=t.get(e);return n},get content(){return this.getPageProp(`Contents`)},get resources(){return Pi(this,`resources`,this.inheritPageProp(`Resources`))},get mediaBox(){var e=this.inheritPageProp(`MediaBox`);return na(e)&&e.length===4||(e=[0,0,612,792]),Pi(this,`mediaBox`,e)},get view(){var e=this.mediaBox,t=this.inheritPageProp(`CropBox`);return na(t)&&t.length===4?Pi(this,`view`,(t=K.intersect(t,e))||e):Pi(this,`view`,e)},get annotationRefs(){return Pi(this,`annotationRefs`,this.inheritPageProp(`Annots`))},get rotate(){var e=this.inheritPageProp(`Rotate`)||0;return e%90==0?e>=360?e%=360:e<0&&(e=(e%360+360)%360):e=0,Pi(this,`rotate`,e)},getContentStream:function(){var e,t=this.content;if(na(t)){var n,r=this.xref,i=t.length,a=[];for(n=0;n<i;++n)a.push(r.fetchIfRef(t[n]));e=new ds(a)}else e=ra(t)?t:new Cs;return e},loadResources:function(e){this.resourcesPromise||=this.pdfManager.ensure(this,`resources`);var t=new q;return this.resources?this.resourcesPromise.then(function(){new Xa(this.resources.map,e,this.xref).load().then(function(){t.resolve()})}.bind(this)):t.resolve(),t},getOperatorList:function(e){var t=new q;function n(e){t.reject(e)}var r=new q,i=this.pdfManager,a=i.ensure(this,`getContentStream`,[]),o=this.loadResources([`ExtGState`,`ColorSpace`,`Pattern`,`Shading`,`XObject`,`Font`]),s=new oo(i,this.xref,e,this.pageIndex,`p`+this.pageIndex+`_`,this.idCounters,this.fontCache);q.all([a,o]).then(function(t){var i=t[0];try{var a=new so(e,this.pageIndex);s.getOperatorList(i,this.resources,a),r.resolve(a),e.send(`StartRenderPage`,{transparency:s.hasBlendModes(this.resources),pageIndex:this.pageIndex})}catch(e){n(e)}}.bind(this),n);var c=i.ensure(this,`annotations`);return q.all([r,c]).then(function(e){var r=e[0],a=e[1];if(a.length===0)return r.flush(!0),t.resolve(r),t;ja.appendToOperatorList(a,r,i,s).then(function(){r.flush(!0),t.resolve(r)},n)},n),t},extractTextContent:function(){var e={on:function(){},send:function(){}},t=this,n=new q,r=this.pdfManager,i=r.ensure(this,`getContentStream`,[]),a=this.loadResources([`ExtGState`,`XObject`,`Font`]);return q.all([i,a]).then(function(i){var a=i[0],o=new oo(r,t.xref,e,t.pageIndex,`p`+t.pageIndex+`_`,t.idCounters,t.fontCache).getTextContent(a,t.resources);n.resolve(o)}),n},getAnnotationsData:function(){for(var e=this.annotations,t=[],n=0,r=e.length;n<r;++n)t.push(e[n].getData());return t},get annotations(){for(var e=[],t=this.annotationRefs||[],n=0,r=t.length;n<r;++n){var i=t[n],a=ja.fromRef(this.xref,i);a&&e.push(a)}return Pi(this,`annotations`,e)}},e}(),Ba=function(){function e(e,n,r){ra(n)?t.call(this,e,n,r):ia(n)?t.call(this,e,new ls(n),r):G(`PDFDocument: Unknown argument type`)}function t(e,t,n){Mi(t.length>0,`stream must have data`),this.pdfManager=e,this.stream=t,this.xref=new Ja(this.stream,n,e)}function n(e,t,n,r){var i=e.pos,a=e.end,o=``;i+n>a&&(n=a-i);for(var s=0;s<n;++s)o+=String.fromCharCode(e.getByte());e.pos=i;var c=r?o.lastIndexOf(t):o.indexOf(t);return c!=-1&&(e.pos+=c,!0)}var r={get entries(){return Pi(this,`entries`,{Title:Qi,Author:Qi,Subject:Qi,Keywords:Qi,Creator:Qi,Producer:Qi,CreationDate:Qi,ModDate:Qi,Trapped:$i})}};return e.prototype={parse:function(e){try{if(this.setup(e),this.acroForm=this.catalog.catDict.get(`AcroForm`),this.acroForm){this.xfa=this.acroForm.get(`XFA`);var t=this.acroForm.get(`Fields`);t&&na(t)&&t.length!==0||this.xfa||(this.acroForm=null)}}catch(e){G(e),this.acroForm=null}},get linearization(){var e=this.stream.length,t=!1;if(e)try{(t=new cs(this.stream)).length!=e&&(t=!1)}catch(e){if(e instanceof Vi)throw e;U(`The linearization data is not available or unreadable PDF data is found`),t=!1}return Pi(this,`linearization`,t)},get startXRef(){var e=this.stream,t=0;if(this.linearization)e.reset(),n(e,`endobj`,1024)&&(t=e.pos+6);else{for(var r=!1,i=e.end;!r&&i>0;)(i-=1015)<0&&(i=0),e.pos=i,r=n(e,`startxref`,1024,!0);if(r){var a;e.skip(9);do a=e.getByte();while(ss.isSpace(a));for(var o=``;a>=32&&a<=57;)o+=String.fromCharCode(a),a=e.getByte();t=parseInt(o,10),isNaN(t)&&(t=0)}}return Pi(this,`startXRef`,t)},get mainXRefEntriesOffset(){var e=0,t=this.linearization;return t&&(e=t.mainXRefEntriesOffset),Pi(this,`mainXRefEntriesOffset`,e)},checkHeader:function(){var e=this.stream;if(e.reset(),n(e,`%PDF-`,1024)){e.moveStart();for(var t,r=``;(t=e.getByte())>32&&!(r.length>=12);)r+=String.fromCharCode(t);this.pdfFormatVersion=r.substring(5)}},parseStartXRef:function(){var e=this.startXRef;this.xref.setStartXRef(e)},setup:function(e){this.xref.parse(e),this.catalog=new qa(this.pdfManager,this.xref)},get numPages(){var e=this.linearization;return Pi(this,`numPages`,e?e.numPages:this.catalog.numPages)},get documentInfo(){var e,t={PDFFormatVersion:this.pdfFormatVersion,IsAcroFormPresent:!!this.acroForm,IsXFAPresent:!!this.xfa};try{e=this.xref.trailer.get(`Info`)}catch{U(`The document information dictionary is invalid.`)}if(e){var n=r.entries;for(var i in n)if(e.has(i)){var a=e.get(i);n[i](a)?t[i]=typeof a==`string`?qi(a):a:U(`Bad value in document info for "`+i+`"`)}}return Pi(this,`documentInfo`,t)},get fingerprint(){for(var e,t=this.xref,n=``,r=0,i=(e=t.trailer.has(`ID`)?Wi(t.trailer.get(`ID`)[0]):to(this.stream.bytes.subarray(0,100),0,100)).length;r<i;r++)n+=e[r].toString(16);return Pi(this,`fingerprint`,n)},getPage:function(e){return this.catalog.getPage(e)},cleanup:function(){return this.catalog.cleanup()}},e}(),Va=function(){function e(e){this.name=e}return e.prototype={},e}(),Ha=function(){function e(e){this.cmd=e}e.prototype={};var t={};return e.get=function(n){return t[n]||(t[n]=new e(n))},e}(),Ua=function(){var e=function(){return e};function t(t){this.map=Object.create(null),this.xref=t,this.__nonSerializable__=e}return t.prototype={assignXref:function(e){this.xref=e},get:function(e,t,n){var r,i=this.xref;return(r=this.map[e])!==void 0||e in this.map||t===void 0||(r=this.map[t])!==void 0||t in this.map||n===void 0||(r=this.map[n]||null),i?i.fetchIfRef(r):r},getAsync:function(e,t,n){var r,i,a=this.xref;return a?a.fetchIfRefAsync(r):((i=new q).resolve(r),i)},getRaw:function(e){return this.map[e]},getAll:function(){var e={};for(var n in this.map){var r=this.get(n);e[n]=r instanceof t?r.getAll():r}return e},set:function(e,t){this.map[e]=t},has:function(e){return e in this.map},forEach:function(e){for(var t in this.map)e(t,this.get(t))}},t}(),Wa=function(){function e(e,t){this.num=e,this.gen=t}return e.prototype={},e}(),Ga=function(){function e(){this.dict={}}return e.prototype={has:function(e){return`R`+e.num+`.`+e.gen in this.dict},put:function(e){this.dict[`R`+e.num+`.`+e.gen]=!0},remove:function(e){delete this.dict[`R`+e.num+`.`+e.gen]}},e}(),Ka=function(){function e(){this.dict=Object.create(null)}return e.prototype={get:function(e){return this.dict[`R`+e.num+`.`+e.gen]},has:function(e){return!!e&&`R`+e.num+`.`+e.gen in this.dict},put:function(e,t){this.dict[`R`+e.num+`.`+e.gen]=t},forEach:function(e,t){for(var n in this.dict)e.call(t,this.dict[n])},clear:function(){this.dict=Object.create(null)}},e}(),qa=function(){function e(e,t){this.pdfManager=e,this.xref=t,this.catDict=t.getCatalogObj(),this.fontCache=new Ka,Mi(ta(this.catDict),`catalog object is not a dictionary`),this.pagePromises=[]}return e.prototype={get metadata(){var e=this.catDict.getRaw(`Metadata`);if(!aa(e))return Pi(this,`metadata`,null);var t,n,r=!!this.xref.encrypt&&this.xref.encrypt.encryptMetadata,i=this.xref.fetch(e,!r);if(i&&ta(i.dict)){var a=i.dict.get(`Type`),o=i.dict.get(`Subtype`);if($i(a)&&$i(o)&&a.name===`Metadata`&&o.name===`XML`)try{n=Ui(i.getBytes()),t=decodeURIComponent(escape(n))}catch{U(`Skipping invalid metadata.`)}}return Pi(this,`metadata`,t)},get toplevelPagesDict(){var e=this.catDict.get(`Pages`);return Mi(ta(e),`invalid top-level pages dictionary`),Pi(this,`toplevelPagesDict`,e)},get documentOutline(){var e=null;try{e=this.readDocumentOutline()}catch(e){if(e instanceof Vi)throw e;W(`Unable to read document outline`)}return Pi(this,`documentOutline`,e)},readDocumentOutline:function(){var e=this.xref,t=this.catDict.get(`Outlines`),n={items:[]};if(ta(t)){t=t.getRaw(`First`);var r=new Ga;if(aa(t)){var i=[{obj:t,parent:n}];for(r.put(t);i.length>0;){var a=i.shift(),o=e.fetchIfRef(a.obj);if(o!==null){o.has(`Title`)||G(`Invalid outline item`);var s=o.get(`A`);s?s=s.get(`D`):o.has(`Dest`)&&$i(s=o.getRaw(`Dest`))&&(s=s.name);var c={dest:s,title:qi(o.get(`Title`)),color:o.get(`C`)||[0,0,0],count:o.get(`Count`),bold:!!(2&o.get(`F`)),italic:!!(1&o.get(`F`)),items:[]};a.parent.items.push(c),aa(t=o.getRaw(`First`))&&!r.has(t)&&(i.push({obj:t,parent:c}),r.put(t)),aa(t=o.getRaw(`Next`))&&!r.has(t)&&(i.push({obj:t,parent:a.parent}),r.put(t))}}}}return n.items.length>0?n.items:null},get numPages(){var e=this.toplevelPagesDict.get(`Count`);return Mi(Xi(e),`page count in top level pages object is not an integer`),Pi(this,`num`,e)},get destinations(){function e(e){return ta(e)?e.get(`D`):e}var t,n,r=this.xref,i={},a=this.catDict.get(`Names`);if(a?t=a.getRaw(`Dests`):this.catDict.has(`Dests`)&&(n=this.catDict.get(`Dests`)),n&&(a=n).forEach(function(t,n){n&&(i[t]=e(n))}),t){var o=new Ya(t,r).getAll();for(var s in o)o.hasOwnProperty(s)&&(i[s]=e(o[s]))}return Pi(this,`destinations`,i)},get javaScript(){var e=this.xref,t=this.catDict.get(`Names`),n=[];if(t&&t.has(`JavaScript`)){var r=new Ya(t.getRaw(`JavaScript`),e).getAll();for(var i in r)if(r.hasOwnProperty(i)){var a=r[i];if(ta(a)){var o=a.get(`S`);if($i(o)&&o.name===`JavaScript`){var s=a.get(`JS`);(Qi(s)||ra(s))&&(ra(s)&&(s=Ui(s.getBytes())),n.push(qi(s)))}}}}return Pi(this,`javaScript`,n)},cleanup:function(){this.fontCache.forEach(function(e){delete e.sent,delete e.translated}),this.fontCache.clear()},getPage:function(e){return e in this.pagePromises||(this.pagePromises[e]=this.getPageDict(e).then(function(t){var n=t[0],r=t[1];return new za(this.pdfManager,this.xref,e,n,r,this.fontCache)}.bind(this))),this.pagePromises[e]},getPageDict:function(e){var t=new q,n=[this.catDict.getRaw(`Pages`)],r=0,i=this.xref;return function a(){for(;n.length;){var o=n.pop();if(aa(o))return void i.fetchAsync(o).then(function(i){ta(i,`Page`)||ta(i)&&!i.has(`Kids`)?e===r?t.resolve([i,o]):(r++,a()):(n.push(i),a())}.bind(this),t.reject.bind(t));ki(ta(o),`page dictionary kid reference points to wrong type of object`);var s=o.get(`Count`);if(r+s<=e)r+=s;else{var c=o.get(`Kids`);if(ki(na(c),`page dictionary kids object is not an array`),s!==c.length)for(var l=c.length-1;l>=0;l--)n.push(c[l]);else n=[c[e-r]],r=e}}t.reject(`Page index `+e+` not found.`)}(),t},getPageIndex:function(e){var t=this.xref,n=0;return function e(r){return function(e){var n,r=0;return t.fetchAsync(e).then(function(e){return e?(n=e.getRaw(`Parent`),e.getAsync(`Parent`)):null}).then(function(e){return e?e.getAsync(`Kids`):null}).then(function(i){if(!i)return null;for(var a=[],o=!1,s=0;s<i.length;s++){var c=i[s];if(ki(aa(c),`kids must be an ref`),c.num==e.num){o=!0;break}a.push(t.fetchAsync(c).then(function(e){if(e.has(`Count`)){var t=e.get(`Count`);r+=t}else r++}))}return o||G(`kid ref not found in parents kids`),q.all(a).then(function(){return[r,n]})})}(r).then(function(t){if(!t)return n;var r=t[0],i=t[1];return n+=r,e(i)})}(e)}},e}(),Ja=function(){function e(e,t){this.stream=e,this.entries=[],this.xrefstms={},this.cache=[],this.password=t}return e.prototype={setStartXRef:function(e){this.startXRefQueue=[e]},parse:function(e){var t;e?(W(`Indexing all PDF objects`),t=this.indexObjects()):t=this.readXRef(),t.assignXref(this),this.trailer=t;var n=t.get(`Encrypt`);if(n){var r=t.get(`ID`);this.encrypt=new ao(n,r&&r.length?r[0]:``,this.password)}(this.root=t.get(`Root`))||G(`Invalid root reference`)},processXRefTable:function(e){`tableState`in this||(this.tableState={entryNum:0,streamPos:e.lexer.stream.pos,parserBuf1:e.buf1,parserBuf2:e.buf2}),ea(this.readXRefTable(e),`trailer`)||G(`Invalid XRef table: could not find trailer dictionary`);var t=e.getObj();return ta(t)||G(`Invalid XRef table: could not parse trailer dictionary`),delete this.tableState,t},readXRefTable:function(e){var t,n=e.lexer.stream,r=this.tableState;for(n.pos=r.streamPos,e.buf1=r.parserBuf1,e.buf2=r.parserBuf2;;){if(!(`firstEntryNum`in r)||!(`entryCount`in r)){if(ea(t=e.getObj(),`trailer`))break;r.firstEntryNum=t,r.entryCount=e.getObj()}var i=r.firstEntryNum,a=r.entryCount;Xi(i)&&Xi(a)||G(`Invalid XRef table: wrong types in subsection header`);for(var o=r.entryNum;o<a;o++){r.streamPos=n.pos,r.entryNum=o,r.parserBuf1=e.buf1,r.parserBuf2=e.buf2;var s={};s.offset=e.getObj(),s.gen=e.getObj();var c=e.getObj();ea(c,`f`)?s.free=!0:ea(c,`n`)&&(s.uncompressed=!0),Xi(s.offset)&&Xi(s.gen)&&(s.free||s.uncompressed)||(console.log(s.offset,s.gen,s.free,s.uncompressed),G(`Invalid entry in XRef subsection: `+i+`, `+a)),this.entries[o+i]||(this.entries[o+i]=s)}r.entryNum=0,r.streamPos=n.pos,r.parserBuf1=e.buf1,r.parserBuf2=e.buf2,delete r.firstEntryNum,delete r.entryCount}return i===1&&this.entries[1]&&this.entries[1].free&&this.entries.shift(),this.entries[0]&&!this.entries[0].free&&G(`Invalid XRef table: unexpected first object`),t},processXRefStream:function(e){if(!(`streamState`in this)){var t=e.dict,n=t.get(`W`),r=t.get(`Index`);r||=[0,t.get(`Size`)],this.streamState={entryRanges:r,byteWidths:n,entryNum:0,streamPos:e.pos}}return this.readXRefStream(e),delete this.streamState,e.dict},readXRefStream:function(e){var t,n,r=this.streamState;e.pos=r.streamPos;for(var i=r.byteWidths,a=i[0],o=i[1],s=i[2],c=r.entryRanges;c.length>0;){var l=c[0],u=c[1];for(Xi(l)&&Xi(u)||G(`Invalid XRef range fields: `+l+`, `+u),Xi(a)&&Xi(o)&&Xi(s)||G(`Invalid XRef entry fields length: `+l+`, `+u),t=r.entryNum;t<u;++t){r.entryNum=t,r.streamPos=e.pos;var d=0,f=0,p=0;for(n=0;n<a;++n)d=d<<8|e.getByte();for(a===0&&(d=1),n=0;n<o;++n)f=f<<8|e.getByte();for(n=0;n<s;++n)p=p<<8|e.getByte();var m={};switch(m.offset=f,m.gen=p,d){case 0:m.free=!0;break;case 1:m.uncompressed=!0;break;case 2:break;default:G(`Invalid XRef entry type: `+d)}this.entries[l+t]||(this.entries[l+t]=m)}r.entryNum=0,r.streamPos=e.pos,c.splice(0,2)}},indexObjects:function(){function e(e,t){for(var n=``,r=e[t];r!==13&&r!==10&&!(++t>=e.length);)n+=String.fromCharCode(r),r=e[t];return n}function t(e,t,n){for(var r=n.length,i=e.length,a=0;t<i;){for(var o=0;o<r&&e[t+o]==n[o];)++o;if(o>=r)break;t++,a++}return a}var n=new Uint8Array([116,114,97,105,108,101,114]),r=new Uint8Array([115,116,97,114,116,120,114,101,102]),i=new Uint8Array([101,110,100,111,98,106]),a=new Uint8Array([47,88,82,101,102]),o=this.stream;o.pos=0;for(var s,c=o.getBytes(),l=o.start,u=c.length,d=[],f=[];l<u;){var p=c[l];if(p!==32&&p!==9&&p!==13&&p!==10)if(p!==37){var m,h=e(c,l);if(h===`xref`)l+=t(c,l,n),d.push(l),l+=t(c,l,r);else if(m=/^(\d+)\s+(\d+)\s+obj\b/.exec(h)){this.entries[m[1]]={offset:l,gen:0|m[2],uncompressed:!0};var g=t(c,l,i)+7,_=c.subarray(l,l+g),v=t(_,0,a);v<g&&_[v+5]<64&&(f.push(l),this.xrefstms[l]=1),l+=g}else l+=h.length+1}else do{if(++l>=u)break;p=c[l]}while(p!==13&&p!==10);else ++l}for(var y=0,b=f.length;y<b;++y)this.startXRefQueue.push(f[y]),this.readXRef(!0);for(y=0,b=d.length;y<b;++y){o.pos=d[y];var x=new os(new ss(o),!0,null);if(ea(x.getObj(),`trailer`)&&ta(s=x.getObj())&&s.has(`ID`))return s}if(s)return s;throw new Ri(`Invalid PDF structure`)},readXRef:function(e){var t=this.stream;try{for(;this.startXRefQueue.length;){t.pos=this.startXRefQueue[0];var n,r=new os(new ss(t),!0,null),i=r.getObj();if(ea(i,`xref`)){if(n=this.processXRefTable(r),this.topDict||=n,Xi(i=n.get(`XRefStm`))){var a=i;a in this.xrefstms||(this.xrefstms[a]=1,this.startXRefQueue.push(a))}}else Xi(i)?(Xi(r.getObj())&&ea(r.getObj(),`obj`)&&ra(i=r.getObj())||G(`Invalid XRef stream`),n=this.processXRefStream(i),this.topDict||=n,n||G(`Failed to read XRef stream`)):G(`Invalid XRef stream header`);Xi(i=n.get(`Prev`))?this.startXRefQueue.push(i):aa(i)&&this.startXRefQueue.push(i.num),this.startXRefQueue.shift()}return this.topDict}catch(e){if(e instanceof Vi)throw e;Di(`(while reading XRef): `+e),G(e)}if(!e)throw new Hi},getEntry:function(e){var t=this.entries[e];return t===null||t.free||!t.offset?null:t},fetchIfRef:function(e){return aa(e)?this.fetch(e):e},fetch:function(e,t){Mi(aa(e),`ref object is not a reference`);var n,r=e.num;if(r in this.cache)return(n=this.cache[r])instanceof ls?n.makeSubStream(n.start,n.length,n.dict):n;if((n=this.getEntry(r))===null)return this.cache[r]=n;var i,a,o=e.gen;if(n.uncompressed){n.gen!=o&&G(`inconsistent generation in XRef`),i=this.stream.makeSubStream(n.offset);var s=(a=new os(new ss(i),!0,this)).getObj(),c=a.getObj(),l=a.getObj();if(Xi(s)&&s==r&&Xi(c)&&c==o&&ea(l)||G(`bad XRef entry`),!ea(l,`obj`)){if(l.cmd.indexOf(`obj`)===0&&(r=parseInt(l.cmd.substring(3),10),!isNaN(r)))return r;G(`bad XRef entry`)}if(this.encrypt&&!t)try{n=a.getObj(this.encrypt.createCipherTransform(r,o))}catch{return this.fetch(e,!0)}else n=a.getObj();return ra(n)||(this.cache[r]=n),n}var u=n.offset;ra(i=this.fetch(new Wa(u,0)))||G(`bad ObjStm stream`);var d=i.dict.get(`First`),f=i.dict.get(`N`);Xi(d)&&Xi(f)||G(`invalid first and n parameters for ObjStm stream`),(a=new os(new ss(i),!1,this)).allowStreams=!0;var p,m=[],h=[];for(p=0;p<f;++p){Xi(r=a.getObj())||G(`invalid object number in the ObjStm stream: `+r),h.push(r);var g=a.getObj();Xi(g)||G(`invalid object offset in the ObjStm stream: `+g)}for(p=0;p<f;++p){m.push(a.getObj()),r=h[p];var _=this.entries[r];_&&_.offset===u&&_.gen===p&&(this.cache[r]=m[p])}return(n=m[n.gen])===void 0&&G(`bad XRef entry for compressed object`),n},fetchIfRefAsync:function(e){if(!aa(e)){var t=new q;return t.resolve(e),t}return this.fetchAsync(e)},fetchAsync:function(e,t){var n=new q,r=function(n){try{n.resolve(this.fetch(e,t))}catch(e){if(e instanceof Vi)return void this.stream.manager.requestRange(e.begin,e.end,r);n.reject(e)}}.bind(this,n);return r(),n},getCatalogObj:function(){return this.root}},e}(),Ya=function(){function e(e,t){this.root=e,this.xref=t}return e.prototype={getAll:function(){var e={};if(!this.root)return e;var t=this.xref,n=new Ga;n.put(this.root);for(var r=[this.root];r.length>0;){var i,a,o=t.fetchIfRef(r.shift());if(ta(o))if(o.has(`Kids`)){var s=o.get(`Kids`);for(i=0,a=s.length;i<a;i++){var c=s[i];n.has(c)&&G(`invalid destinations`),r.push(c),n.put(c)}}else{var l=o.get(`Names`);if(l)for(i=0,a=l.length;i<a;i+=2)e[l[i]]=t.fetchIfRef(l[i+1])}}return e}},e}(),Xa=function(){function e(e){return aa(e)||ta(e)||na(e)||ra(e)}function t(t,n){var r;if(ta(t)||ra(t))for(var i in r=ta(t)?t.map:t.dict.map)e(s=r[i])&&n.push(s);else if(na(t))for(var a=0,o=t.length;a<o;a++){var s;e(s=t[a])&&n.push(s)}}function n(e,t,n){this.obj=e,this.keys=t,this.xref=n,this.refSet=null}return n.prototype={load:function(){var e=this.keys;if(this.promise=new q,!(this.xref.stream instanceof js)||this.xref.stream.getMissingChunks().length===0)return this.promise.resolve(),this.promise;this.refSet=new Ga;for(var t=[],n=0;n<e.length;n++)t.push(this.obj[e[n]]);return this.walk(t),this.promise},walk:function(e){for(var n=[],r=[];e.length;){var i=e.pop();if(aa(i)){if(this.refSet.has(i))continue;try{var a=i;this.refSet.put(a),i=this.xref.fetch(i)}catch(e){if(!(e instanceof Vi))throw e;n.push(i),r.push({begin:e.begin,end:e.end})}}if(i&&i.getBaseStreams){for(var o=i.getBaseStreams(),s=!1,c=0;c<o.length;c++){var l=o[c];l.getMissingChunks&&l.getMissingChunks().length&&(s=!0,r.push({begin:l.start,end:l.end}))}s&&n.push(i)}t(i,e)}r.length?this.xref.stream.manager.requestRanges(r,function(){e=n;for(var t=0;t<n.length;t++){var r=n[t];aa(r)&&this.refSet.remove(r)}this.walk(e)}.bind(this)):(this.refSet=null,this.promise.resolve())}},n}(),Za=`.notdef,space,exclam,quotedbl,numbersign,dollar,percent,ampersand,quoteright,parenleft,parenright,asterisk,plus,comma,hyphen,period,slash,zero,one,two,three,four,five,six,seven,eight,nine,colon,semicolon,less,equal,greater,question,at,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,bracketleft,backslash,bracketright,asciicircum,underscore,quoteleft,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,braceleft,bar,braceright,asciitilde,exclamdown,cent,sterling,fraction,yen,florin,section,currency,quotesingle,quotedblleft,guillemotleft,guilsinglleft,guilsinglright,fi,fl,endash,dagger,daggerdbl,periodcentered,paragraph,bullet,quotesinglbase,quotedblbase,quotedblright,guillemotright,ellipsis,perthousand,questiondown,grave,acute,circumflex,tilde,macron,breve,dotaccent,dieresis,ring,cedilla,hungarumlaut,ogonek,caron,emdash,AE,ordfeminine,Lslash,Oslash,OE,ordmasculine,ae,dotlessi,lslash,oslash,oe,germandbls,onesuperior,logicalnot,mu,trademark,Eth,onehalf,plusminus,Thorn,onequarter,divide,brokenbar,degree,thorn,threequarters,twosuperior,registered,minus,eth,multiply,threesuperior,copyright,Aacute,Acircumflex,Adieresis,Agrave,Aring,Atilde,Ccedilla,Eacute,Ecircumflex,Edieresis,Egrave,Iacute,Icircumflex,Idieresis,Igrave,Ntilde,Oacute,Ocircumflex,Odieresis,Ograve,Otilde,Scaron,Uacute,Ucircumflex,Udieresis,Ugrave,Yacute,Ydieresis,Zcaron,aacute,acircumflex,adieresis,agrave,aring,atilde,ccedilla,eacute,ecircumflex,edieresis,egrave,iacute,icircumflex,idieresis,igrave,ntilde,oacute,ocircumflex,odieresis,ograve,otilde,scaron,uacute,ucircumflex,udieresis,ugrave,yacute,ydieresis,zcaron`.split(`,`),Qa=`.notdef,space,exclamsmall,Hungarumlautsmall,dollaroldstyle,dollarsuperior,ampersandsmall,Acutesmall,parenleftsuperior,parenrightsuperior,twodotenleader,onedotenleader,comma,hyphen,period,fraction,zerooldstyle,oneoldstyle,twooldstyle,threeoldstyle,fouroldstyle,fiveoldstyle,sixoldstyle,sevenoldstyle,eightoldstyle,nineoldstyle,colon,semicolon,commasuperior,threequartersemdash,periodsuperior,questionsmall,asuperior,bsuperior,centsuperior,dsuperior,esuperior,isuperior,lsuperior,msuperior,nsuperior,osuperior,rsuperior,ssuperior,tsuperior,ff,fi,fl,ffi,ffl,parenleftinferior,parenrightinferior,Circumflexsmall,hyphensuperior,Gravesmall,Asmall,Bsmall,Csmall,Dsmall,Esmall,Fsmall,Gsmall,Hsmall,Ismall,Jsmall,Ksmall,Lsmall,Msmall,Nsmall,Osmall,Psmall,Qsmall,Rsmall,Ssmall,Tsmall,Usmall,Vsmall,Wsmall,Xsmall,Ysmall,Zsmall,colonmonetary,onefitted,rupiah,Tildesmall,exclamdownsmall,centoldstyle,Lslashsmall,Scaronsmall,Zcaronsmall,Dieresissmall,Brevesmall,Caronsmall,Dotaccentsmall,Macronsmall,figuredash,hypheninferior,Ogoneksmall,Ringsmall,Cedillasmall,onequarter,onehalf,threequarters,questiondownsmall,oneeighth,threeeighths,fiveeighths,seveneighths,onethird,twothirds,zerosuperior,onesuperior,twosuperior,threesuperior,foursuperior,fivesuperior,sixsuperior,sevensuperior,eightsuperior,ninesuperior,zeroinferior,oneinferior,twoinferior,threeinferior,fourinferior,fiveinferior,sixinferior,seveninferior,eightinferior,nineinferior,centinferior,dollarinferior,periodinferior,commainferior,Agravesmall,Aacutesmall,Acircumflexsmall,Atildesmall,Adieresissmall,Aringsmall,AEsmall,Ccedillasmall,Egravesmall,Eacutesmall,Ecircumflexsmall,Edieresissmall,Igravesmall,Iacutesmall,Icircumflexsmall,Idieresissmall,Ethsmall,Ntildesmall,Ogravesmall,Oacutesmall,Ocircumflexsmall,Otildesmall,Odieresissmall,OEsmall,Oslashsmall,Ugravesmall,Uacutesmall,Ucircumflexsmall,Udieresissmall,Yacutesmall,Thornsmall,Ydieresissmall`.split(`,`),$a=`.notdef,space,dollaroldstyle,dollarsuperior,parenleftsuperior,parenrightsuperior,twodotenleader,onedotenleader,comma,hyphen,period,fraction,zerooldstyle,oneoldstyle,twooldstyle,threeoldstyle,fouroldstyle,fiveoldstyle,sixoldstyle,sevenoldstyle,eightoldstyle,nineoldstyle,colon,semicolon,commasuperior,threequartersemdash,periodsuperior,asuperior,bsuperior,centsuperior,dsuperior,esuperior,isuperior,lsuperior,msuperior,nsuperior,osuperior,rsuperior,ssuperior,tsuperior,ff,fi,fl,ffi,ffl,parenleftinferior,parenrightinferior,hyphensuperior,colonmonetary,onefitted,rupiah,centoldstyle,figuredash,hypheninferior,onequarter,onehalf,threequarters,oneeighth,threeeighths,fiveeighths,seveneighths,onethird,twothirds,zerosuperior,onesuperior,twosuperior,threesuperior,foursuperior,fivesuperior,sixsuperior,sevensuperior,eightsuperior,ninesuperior,zeroinferior,oneinferior,twoinferior,threeinferior,fourinferior,fiveinferior,sixinferior,seveninferior,eightinferior,nineinferior,centinferior,dollarinferior,periodinferior,commainferior`.split(`,`),eo=function(){function e(e){this.a=0,this.b=0;var t,n,r=new Uint8Array(256),i=0,a=e.length;for(t=0;t<256;++t)r[t]=t;for(t=0;t<256;++t)i=i+(n=r[t])+e[t%a]&255,r[t]=r[i],r[i]=n;this.s=r}return e.prototype={encryptBlock:function(e){var t,n,r,i=e.length,a=this.a,o=this.b,s=this.s,c=new Uint8Array(i);for(t=0;t<i;++t)r=s[o=o+(n=s[a=a+1&255])&255],s[a]=r,s[o]=n,c[t]=e[t]^s[n+r&255];return this.a=a,this.b=o,c}},e.prototype.decryptBlock=e.prototype.encryptBlock,e}(),to=(Ma=new Uint8Array([7,12,17,22,7,12,17,22,7,12,17,22,7,12,17,22,5,9,14,20,5,9,14,20,5,9,14,20,5,9,14,20,4,11,16,23,4,11,16,23,4,11,16,23,4,11,16,23,6,10,15,21,6,10,15,21,6,10,15,21,6,10,15,21]),Na=new Int32Array([-680876936,-389564586,606105819,-1044525330,-176418897,1200080426,-1473231341,-45705983,1770035416,-1958414417,-42063,-1990404162,1804603682,-40341101,-1502002290,1236535329,-165796510,-1069501632,643717713,-373897302,-701558691,38016083,-660478335,-405537848,568446438,-1019803690,-187363961,1163531501,-1444681467,-51403784,1735328473,-1926607734,-378558,-2022574463,1839030562,-35309556,-1530992060,1272893353,-155497632,-1094730640,681279174,-358537222,-722521979,76029189,-640364487,-421815835,530742520,-995338651,-198630844,1126891415,-1416354905,-57434055,1700485571,-1894986606,-1051523,-2054922799,1873313359,-30611744,-1560198380,1309151649,-145523070,-1120210379,718787259,-343485551]),function(e,t,n){var r,i,a,o=1732584193,s=-271733879,c=-1732584194,l=271733878,u=n+72&-64,d=new Uint8Array(u);for(r=0;r<n;++r)d[r]=e[t++];for(d[r++]=128,a=u-8;r<a;)d[r++]=0;d[r++]=n<<3&255,d[r++]=n>>5&255,d[r++]=n>>13&255,d[r++]=n>>21&255,d[r++]=n>>>29&255,d[r++]=0,d[r++]=0,d[r++]=0;var f=new Int32Array(16);for(r=0;r<u;){for(i=0;i<16;++i,r+=4)f[i]=d[r]|d[r+1]<<8|d[r+2]<<16|d[r+3]<<24;var p,m,h=o,g=s,_=c,v=l;for(i=0;i<64;++i){i<16?(p=g&_|~g&v,m=i):i<32?(p=v&g|~v&_,m=5*i+1&15):i<48?(p=g^_^v,m=3*i+5&15):(p=_^(g|~v),m=7*i&15);var y=v,b=h+p+Na[i]+f[m]|0,x=Ma[i];v=_,_=g,g=g+(b<<x|b>>>32-x)|0,h=y}o=o+h|0,s=s+g|0,c=c+_|0,l=l+v|0}return new Uint8Array([255&o,o>>8&255,o>>16&255,o>>>24&255,255&s,s>>8&255,s>>16&255,s>>>24&255,255&c,c>>8&255,c>>16&255,c>>>24&255,255&l,l>>8&255,l>>16&255,l>>>24&255])}),no=function(){function e(){}return e.prototype={decryptBlock:function(e){return e}},e}(),ro=function(){var e=new Uint8Array([141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141,1,2,4,8,16,32,64,128,27,54,108,216,171,77,154,47,94,188,99,198,151,53,106,212,179,125,250,239,197,145,57,114,228,211,189,97,194,159,37,74,148,51,102,204,131,29,58,116,232,203,141]),t=new Uint8Array([99,124,119,123,242,107,111,197,48,1,103,43,254,215,171,118,202,130,201,125,250,89,71,240,173,212,162,175,156,164,114,192,183,253,147,38,54,63,247,204,52,165,229,241,113,216,49,21,4,199,35,195,24,150,5,154,7,18,128,226,235,39,178,117,9,131,44,26,27,110,90,160,82,59,214,179,41,227,47,132,83,209,0,237,32,252,177,91,106,203,190,57,74,76,88,207,208,239,170,251,67,77,51,133,69,249,2,127,80,60,159,168,81,163,64,143,146,157,56,245,188,182,218,33,16,255,243,210,205,12,19,236,95,151,68,23,196,167,126,61,100,93,25,115,96,129,79,220,34,42,144,136,70,238,184,20,222,94,11,219,224,50,58,10,73,6,36,92,194,211,172,98,145,149,228,121,231,200,55,109,141,213,78,169,108,86,244,234,101,122,174,8,186,120,37,46,28,166,180,198,232,221,116,31,75,189,139,138,112,62,181,102,72,3,246,14,97,53,87,185,134,193,29,158,225,248,152,17,105,217,142,148,155,30,135,233,206,85,40,223,140,161,137,13,191,230,66,104,65,153,45,15,176,84,187,22]),n=new Uint8Array([82,9,106,213,48,54,165,56,191,64,163,158,129,243,215,251,124,227,57,130,155,47,255,135,52,142,67,68,196,222,233,203,84,123,148,50,166,194,35,61,238,76,149,11,66,250,195,78,8,46,161,102,40,217,36,178,118,91,162,73,109,139,209,37,114,248,246,100,134,104,152,22,212,164,92,204,93,101,182,146,108,112,72,80,253,237,185,218,94,21,70,87,167,141,157,132,144,216,171,0,140,188,211,10,247,228,88,5,184,179,69,6,208,44,30,143,202,63,15,2,193,175,189,3,1,19,138,107,58,145,17,65,79,103,220,234,151,242,207,206,240,180,230,115,150,172,116,34,231,173,53,133,226,249,55,232,28,117,223,110,71,241,26,113,29,41,197,137,111,183,98,14,170,24,190,27,252,86,62,75,198,210,121,32,154,219,192,254,120,205,90,244,31,221,168,51,136,7,199,49,177,18,16,89,39,128,236,95,96,81,127,169,25,181,74,13,45,229,122,159,147,201,156,239,160,224,59,77,174,42,245,176,200,235,187,60,131,83,153,97,23,43,4,126,186,119,214,38,225,105,20,99,85,33,12,125]),r=new Uint32Array([0,235474187,470948374,303765277,941896748,908933415,607530554,708780849,1883793496,2118214995,1817866830,1649639237,1215061108,1181045119,1417561698,1517767529,3767586992,4003061179,4236429990,4069246893,3635733660,3602770327,3299278474,3400528769,2430122216,2664543715,2362090238,2193862645,2835123396,2801107407,3035535058,3135740889,3678124923,3576870512,3341394285,3374361702,3810496343,3977675356,4279080257,4043610186,2876494627,2776292904,3076639029,3110650942,2472011535,2640243204,2403728665,2169303058,1001089995,899835584,666464733,699432150,59727847,226906860,530400753,294930682,1273168787,1172967064,1475418501,1509430414,1942435775,2110667444,1876241833,1641816226,2910219766,2743034109,2976151520,3211623147,2505202138,2606453969,2302690252,2269728455,3711829422,3543599269,3240894392,3475313331,3843699074,3943906441,4178062228,4144047775,1306967366,1139781709,1374988112,1610459739,1975683434,2076935265,1775276924,1742315127,1034867998,866637845,566021896,800440835,92987698,193195065,429456164,395441711,1984812685,2017778566,1784663195,1683407248,1315562145,1080094634,1383856311,1551037884,101039829,135050206,437757123,337553864,1042385657,807962610,573804783,742039012,2531067453,2564033334,2328828971,2227573024,2935566865,2700099354,3001755655,3168937228,3868552805,3902563182,4203181171,4102977912,3736164937,3501741890,3265478751,3433712980,1106041591,1340463100,1576976609,1408749034,2043211483,2009195472,1708848333,1809054150,832877231,1068351396,766945465,599762354,159417987,126454664,361929877,463180190,2709260871,2943682380,3178106961,3009879386,2572697195,2538681184,2236228733,2336434550,3509871135,3745345300,3441850377,3274667266,3910161971,3877198648,4110568485,4211818798,2597806476,2497604743,2261089178,2295101073,2733856160,2902087851,3202437046,2968011453,3936291284,3835036895,4136440770,4169408201,3535486456,3702665459,3467192302,3231722213,2051518780,1951317047,1716890410,1750902305,1113818384,1282050075,1584504582,1350078989,168810852,67556463,371049330,404016761,841739592,1008918595,775550814,540080725,3969562369,3801332234,4035489047,4269907996,3569255213,3669462566,3366754619,3332740144,2631065433,2463879762,2160117071,2395588676,2767645557,2868897406,3102011747,3069049960,202008497,33778362,270040487,504459436,875451293,975658646,675039627,641025152,2084704233,1917518562,1615861247,1851332852,1147550661,1248802510,1484005843,1451044056,933301370,967311729,733156972,632953703,260388950,25965917,328671808,496906059,1206477858,1239443753,1543208500,1441952575,2144161806,1908694277,1675577880,1842759443,3610369226,3644379585,3408119516,3307916247,4011190502,3776767469,4077384432,4245618683,2809771154,2842737049,3144396420,3043140495,2673705150,2438237621,2203032232,2370213795]);function i(e,t){var i,a,o,s,c,l,u=new Uint8Array(16);for(u.set(e),a=0,o=160;a<16;++a,++o)u[a]^=t[o];for(i=9;i>=1;--i){for(s=u[13],u[13]=u[9],u[9]=u[5],u[5]=u[1],u[1]=s,s=u[14],c=u[10],u[14]=u[6],u[10]=u[2],u[6]=s,u[2]=c,s=u[15],c=u[11],l=u[7],u[15]=u[3],u[11]=s,u[7]=c,u[3]=l,a=0;a<16;++a)u[a]=n[u[a]];for(a=0,o=16*i;a<16;++a,++o)u[a]^=t[o];for(a=0;a<16;a+=4){var d=r[u[a]],f=r[u[a+1]],p=r[u[a+2]],m=r[u[a+3]];s=d^f>>>8^f<<24^p>>>16^p<<16^m>>>24^m<<8,u[a]=s>>>24&255,u[a+1]=s>>16&255,u[a+2]=s>>8&255,u[a+3]=255&s}}for(s=u[13],u[13]=u[9],u[9]=u[5],u[5]=u[1],u[1]=s,s=u[14],c=u[10],u[14]=u[6],u[10]=u[2],u[6]=s,u[2]=c,s=u[15],c=u[11],l=u[7],u[15]=u[3],u[11]=s,u[7]=c,u[3]=l,a=0;a<16;++a)u[a]=n[u[a]],u[a]^=t[a];return u}function a(n){this.key=function(n){var r=new Uint8Array(176);r.set(n);for(var i=16,a=1;i<176;++a){var o=r[i-3],s=r[i-2],c=r[i-1],l=r[i-4];o=t[o],s=t[s],c=t[c],l=t[l],o^=e[a];for(var u=0;u<4;++u)r[i]=o^=r[i-16],r[++i]=s^=r[i-16],r[++i]=c^=r[i-16],r[++i]=l^=r[i-16],i++}return r}(n),this.buffer=new Uint8Array(16),this.bufferPosition=0}function o(e,t){var n,r,a,o=e.length,s=this.buffer,c=this.bufferPosition,l=[],u=this.iv;for(n=0;n<o;++n)if(s[c]=e[n],!(++c<16)){var d=i(s,this.key);for(r=0;r<16;++r)d[r]^=u[r];u=s,l.push(d),s=new Uint8Array(16),c=0}if(this.buffer=s,this.bufferLength=c,this.iv=u,l.length===0)return new Uint8Array([]);var f=16*l.length;if(t){var p=l[l.length-1];f-=p[15],l[l.length-1]=p.subarray(0,16-p[15])}var m=new Uint8Array(f);for(n=0,r=0,a=l.length;n<a;++n,r+=16)m.set(l[n],r);return m}return a.prototype={decryptBlock:function(e,t){var n,r=e.length,i=this.buffer,a=this.bufferPosition;for(n=0;a<16&&n<r;++n,++a)i[a]=e[n];return a<16?(this.bufferLength=a,new Uint8Array([])):(this.iv=i,this.buffer=new Uint8Array(16),this.bufferLength=0,this.decryptBlock=o,this.decryptBlock(e.subarray(16),t))}},a}(),io=function(){function e(e,t){this.stringCipherConstructor=e,this.streamCipherConstructor=t}return e.prototype={createStream:function(e){var t=new this.streamCipherConstructor;return new _s(e,function(e,n){return t.decryptBlock(e,n)})},decryptString:function(e){var t=new this.stringCipherConstructor,n=Wi(e);return Ui(n=t.decryptBlock(n,!0))}},e}(),ao=function(){var e=new Uint8Array([40,191,78,94,78,117,138,65,100,0,78,86,255,250,1,8,46,46,0,182,208,104,62,128,47,12,169,254,100,83,105,122]);function t(t,n,r,i,a,o,s,c){var l,u,d=40+r.length+t.length,f=new Uint8Array(d),p=0;if(n)for(u=Math.min(32,n.length);p<u;++p)f[p]=n[p];for(l=0;p<32;)f[p++]=e[l++];for(l=0,u=r.length;l<u;++l)f[p++]=r[l];for(f[p++]=255&a,f[p++]=a>>8&255,f[p++]=a>>16&255,f[p++]=a>>>24&255,l=0,u=t.length;l<u;++l)f[p++]=t[l];o>=4&&!c&&(f[p++]=255,f[p++]=255,f[p++]=255,f[p++]=255);var m=to(f,0,p),h=s>>3;if(o>=3)for(l=0;l<50;++l)m=to(m,0,h);var g=m.subarray(0,h);if(o>=3){for(p=0;p<32;++p)f[p]=e[p];for(l=0,u=t.length;l<u;++l)f[p++]=t[l];var _=new eo(g).encryptBlock(to(f,0,p));u=g.length;var v,y=new Uint8Array(u);for(l=1;l<=19;++l){for(v=0;v<u;++v)y[v]=g[v]^l;_=new eo(y).encryptBlock(_)}for(l=0,u=_.length;l<u;++l)if(i[l]!=_[l])return null}else for(l=0,u=(_=new eo(g).encryptBlock(e)).length;l<u;++l)if(i[l]!=_[l])return null;return g}var n=new Va(`Identity`);function r(r,i,a){var o=r.get(`Filter`);$i(o)&&o.name==`Standard`||G(`Error: unknown encryption method`),this.dict=r;var s=r.get(`V`);(!Xi(s)||s!=1&&s!=2&&s!=4)&&G(`Error: unsupported encryption algorithm`),this.algorithm=s;var c=r.get(`Length`)||40;(!Xi(c)||c<40||c%8!=0)&&G(`Error: invalid key length`);var l=Wi(r.get(`O`)).subarray(0,32),u=Wi(r.get(`U`)).subarray(0,32),d=r.get(`P`),f=r.get(`R`),p=s==4&&!1!==r.get(`EncryptMetadata`);this.encryptMetadata=p;var m,h=Wi(i);a&&(m=Wi(a));var g=t(h,m,l,u,d,f,c,p);if(!g&&!a)throw new Ii(`No password given`,Fi.NEED_PASSWORD);if(!g&&a&&(g=t(h,function(t,n,r,i){var a,o,s=new Uint8Array(32),c=0;for(o=Math.min(32,t.length);c<o;++c)s[c]=t[c];for(a=0;c<32;)s[c++]=e[a++];var l,u=to(s,0,c),d=i>>3;if(r>=3)for(a=0;a<50;++a)u=to(u,0,u.length);if(r>=3){l=n;var f,p=new Uint8Array(d);for(a=19;a>=0;a--){for(f=0;f<d;++f)p[f]=u[f]^a;l=new eo(p).encryptBlock(l)}}else l=new eo(u.subarray(0,d)).encryptBlock(n);return l}(m,l,f,c),l,u,d,f,c,p)),!g)throw new Ii(`Incorrect Password`,Fi.INCORRECT_PASSWORD);this.encryptionKey=g,s==4&&(this.cf=r.get(`CF`),this.stmf=r.get(`StmF`)||n,this.strf=r.get(`StrF`)||n,this.eff=r.get(`EFF`)||this.strf)}function i(e,t,n,r){var i,a,o=new Uint8Array(n.length+9);for(i=0,a=n.length;i<a;++i)o[i]=n[i];return o[i++]=255&e,o[i++]=e>>8&255,o[i++]=e>>16&255,o[i++]=255&t,o[i++]=t>>8&255,r&&(o[i++]=115,o[i++]=65,o[i++]=108,o[i++]=84),to(o,0,i).subarray(0,Math.min(n.length+5,16))}function a(e,t,n,r,a){var o,s=e.get(t.name);return s!=null&&(o=s.get(`CFM`)),o&&o.name!=`None`?o.name==`V2`?function(){return new eo(i(n,r,a,!1))}:o.name==`AESV2`?function(){return new ro(i(n,r,a,!0))}:void G(`Unknown crypto method`):function(){return new no}}return r.prototype={createCipherTransform:function(e,t){if(this.algorithm==4)return new io(a(this.cf,this.stmf,e,t,this.encryptionKey),a(this.cf,this.strf,e,t,this.encryptionKey));var n=i(e,t,this.encryptionKey,!1),r=function(){return new eo(n)};return new io(r,r)}},r}(),oo=function(){function e(e,t,n,r,i,a,o){this.state=new lo,this.stateStack=[],this.pdfManager=e,this.xref=t,this.handler=n,this.pageIndex=r,this.uniquePrefix=i,this.idCounters=a,this.fontCache=o}var t={w:{id:H.setLineWidth,numArgs:1,variableArgs:!1},J:{id:H.setLineCap,numArgs:1,variableArgs:!1},j:{id:H.setLineJoin,numArgs:1,variableArgs:!1},M:{id:H.setMiterLimit,numArgs:1,variableArgs:!1},d:{id:H.setDash,numArgs:2,variableArgs:!1},ri:{id:H.setRenderingIntent,numArgs:1,variableArgs:!1},i:{id:H.setFlatness,numArgs:1,variableArgs:!1},gs:{id:H.setGState,numArgs:1,variableArgs:!1},q:{id:H.save,numArgs:0,variableArgs:!1},Q:{id:H.restore,numArgs:0,variableArgs:!1},cm:{id:H.transform,numArgs:6,variableArgs:!1},m:{id:H.moveTo,numArgs:2,variableArgs:!1},l:{id:H.lineTo,numArgs:2,variableArgs:!1},c:{id:H.curveTo,numArgs:6,variableArgs:!1},v:{id:H.curveTo2,numArgs:4,variableArgs:!1},y:{id:H.curveTo3,numArgs:4,variableArgs:!1},h:{id:H.closePath,numArgs:0,variableArgs:!1},re:{id:H.rectangle,numArgs:4,variableArgs:!1},S:{id:H.stroke,numArgs:0,variableArgs:!1},s:{id:H.closeStroke,numArgs:0,variableArgs:!1},f:{id:H.fill,numArgs:0,variableArgs:!1},F:{id:H.fill,numArgs:0,variableArgs:!1},"f*":{id:H.eoFill,numArgs:0,variableArgs:!1},B:{id:H.fillStroke,numArgs:0,variableArgs:!1},"B*":{id:H.eoFillStroke,numArgs:0,variableArgs:!1},b:{id:H.closeFillStroke,numArgs:0,variableArgs:!1},"b*":{id:H.closeEOFillStroke,numArgs:0,variableArgs:!1},n:{id:H.endPath,numArgs:0,variableArgs:!1},W:{id:H.clip,numArgs:0,variableArgs:!1},"W*":{id:H.eoClip,numArgs:0,variableArgs:!1},BT:{id:H.beginText,numArgs:0,variableArgs:!1},ET:{id:H.endText,numArgs:0,variableArgs:!1},Tc:{id:H.setCharSpacing,numArgs:1,variableArgs:!1},Tw:{id:H.setWordSpacing,numArgs:1,variableArgs:!1},Tz:{id:H.setHScale,numArgs:1,variableArgs:!1},TL:{id:H.setLeading,numArgs:1,variableArgs:!1},Tf:{id:H.setFont,numArgs:2,variableArgs:!1},Tr:{id:H.setTextRenderingMode,numArgs:1,variableArgs:!1},Ts:{id:H.setTextRise,numArgs:1,variableArgs:!1},Td:{id:H.moveText,numArgs:2,variableArgs:!1},TD:{id:H.setLeadingMoveText,numArgs:2,variableArgs:!1},Tm:{id:H.setTextMatrix,numArgs:6,variableArgs:!1},"T*":{id:H.nextLine,numArgs:0,variableArgs:!1},Tj:{id:H.showText,numArgs:1,variableArgs:!1},TJ:{id:H.showSpacedText,numArgs:1,variableArgs:!1},"'":{id:H.nextLineShowText,numArgs:1,variableArgs:!1},'"':{id:H.nextLineSetSpacingShowText,numArgs:3,variableArgs:!1},d0:{id:H.setCharWidth,numArgs:2,variableArgs:!1},d1:{id:H.setCharWidthAndBounds,numArgs:6,variableArgs:!1},CS:{id:H.setStrokeColorSpace,numArgs:1,variableArgs:!1},cs:{id:H.setFillColorSpace,numArgs:1,variableArgs:!1},SC:{id:H.setStrokeColor,numArgs:4,variableArgs:!0},SCN:{id:H.setStrokeColorN,numArgs:33,variableArgs:!0},sc:{id:H.setFillColor,numArgs:4,variableArgs:!0},scn:{id:H.setFillColorN,numArgs:33,variableArgs:!0},G:{id:H.setStrokeGray,numArgs:1,variableArgs:!1},g:{id:H.setFillGray,numArgs:1,variableArgs:!1},RG:{id:H.setStrokeRGBColor,numArgs:3,variableArgs:!1},rg:{id:H.setFillRGBColor,numArgs:3,variableArgs:!1},K:{id:H.setStrokeCMYKColor,numArgs:4,variableArgs:!1},k:{id:H.setFillCMYKColor,numArgs:4,variableArgs:!1},sh:{id:H.shadingFill,numArgs:1,variableArgs:!1},BI:{id:H.beginInlineImage,numArgs:0,variableArgs:!1},ID:{id:H.beginImageData,numArgs:0,variableArgs:!1},EI:{id:H.endInlineImage,numArgs:1,variableArgs:!1},Do:{id:H.paintXObject,numArgs:1,variableArgs:!1},MP:{id:H.markPoint,numArgs:1,variableArgs:!1},DP:{id:H.markPointProps,numArgs:2,variableArgs:!1},BMC:{id:H.beginMarkedContent,numArgs:1,variableArgs:!1},BDC:{id:H.beginMarkedContentProps,numArgs:2,variableArgs:!1},EMC:{id:H.endMarkedContent,numArgs:0,variableArgs:!1},BX:{id:H.beginCompat,numArgs:0,variableArgs:!1},EX:{id:H.endCompat,numArgs:0,variableArgs:!1},BM:null,BD:null,true:null,fa:null,fal:null,fals:null,false:null,nu:null,nul:null,null:null};return e.prototype={hasBlendModes:function(e){if(!ta(e))return!1;for(var t=[e];t.length;){var n=t.shift(),r=n.get(`ExtGState`);if(ta(r))for(var i in r=r.getAll()){var a=r[i].BM;if($i(a)&&a.name!==`Normal`)return!0}var o=n.get(`XObject`);if(ta(o))for(var i in o=o.getAll()){var s=o[i];if(ra(s)){var c=s.dict.get(`Resources`);ta(c)&&c!==n&&t.indexOf(c)<0&&t.push(c)}}}return!1},buildFormXObject:function(e,t,n,r){var i=t.dict.get(`Matrix`),a=t.dict.get(`BBox`),o=t.dict.get(`Group`);if(o){var s={matrix:i,bbox:a,smask:!!n,isolated:!1,knockout:!1},c=o.get(`S`);$i(c)&&c.name===`Transparency`&&(s.isolated=o.get(`I`)||!1,s.knockout=o.get(`K`)||!1),r.addOp(H.beginGroup,[s])}r.addOp(H.paintFormXObjectBegin,[i,a]),this.getOperatorList(t,t.dict.get(`Resources`)||e,r),r.addOp(H.paintFormXObjectEnd,[]),o&&r.addOp(H.endGroup,[s])},buildPaintImageXObject:function(e,t,n,r){var i=this,a=t.dict,o=a.get(`Width`,`W`),s=a.get(`Height`,`H`);if(V.maxImageSize!==-1&&o*s>V.maxImageSize)W(`Image exceeded maximum allowed size and was removed.`);else if(a.get(`ImageMask`,`IM`)){var c=a.get(`Width`,`W`),l=a.get(`Height`,`H`),u=c+7>>3,d=t.getBytes(u*l),f=a.get(`Decode`,`D`),p=!!f&&f[0]>0;r.addOp(H.paintImageMaskXObject,[ns.createMask(d,c,l,p)])}else{var m=a.get(`SMask`,`SM`)||!1,h=a.get(`Mask`)||!1;if(!n||m||h||t instanceof ms||!(o+s<200)){var g=`img_`+(this.uniquePrefix||``)+ ++this.idCounters.obj;r.addDependency(g);var _=[g,o,s];if(!m&&!h&&t instanceof ms&&t.isNativelySupported(this.xref,e))return r.addOp(H.paintJpegXObject,_),void this.handler.send(`obj`,[g,this.pageIndex,`JpegStream`,t.getIR()]);ns.buildImage(function(e){var t=e.getImageData();i.handler.send(`obj`,[g,i.pageIndex,`Image`,t],null,[t.data.buffer])},i.handler,i.xref,e,t,n),r.addOp(H.paintImageXObject,_)}else{var v=new ns(this.xref,e,t,n,null,null).getImageData();r.addOp(H.paintInlineImageXObject,[v])}}},handleTilingType:function(e,t,n,r,i,a){var o=this.getOperatorList(r,i.get(`Resources`)||n);a.addDependencies(o.dependencies),a.addOp(e,Sa.getIR({fnArray:o.fnArray,argsArray:o.argsArray},i,t))},handleSetFont:function(e,t,n,r){var i;t&&(i=(t=t.slice())[0].name);var a=this.loadFont(i,n,this.xref,e,r);this.state.font=a;var o=a.loadedName;if(!a.sent){var s=a.translated.exportData();this.handler.send(`commonobj`,[o,`Font`,s]),a.sent=!0}return o},handleText:function(e){var t=this.state.font.translated,n=t.charsToGlyphs(e),r=!!(this.state.textRenderingMode&wi);if(t.data&&(r||V.disableFontFace)){for(var i=0;i<n.length;i++)if(n[i]!==null){var a=n[i].fontChar;if(!t.renderer.hasBuiltPath(a)){var o=t.renderer.getPathJs(a);this.handler.send(`commonobj`,[t.loadedName+`_path_`+a,`FontPath`,o])}}}return n},setGState:function(e,t,n){var r=this;function i(t,i,a){switch(i){case`Type`:break;case`LW`:case`LC`:case`LJ`:case`ML`:case`D`:case`RI`:case`FL`:case`CA`:case`ca`:case`BM`:t.push([i,a]);break;case`Font`:var o=r.handleSetFont(e,null,a[0],n);n.addDependency(o),t.push([i,[o,a[1]]]);break;case`SMask`:$i(a)&&a.name==`None`||Oi(`graphic state operator `+i);break;case`OP`:case`op`:case`OPM`:case`BG`:case`BG2`:case`UCR`:case`UCR2`:case`TR`:case`TR2`:case`HT`:case`SM`:case`SA`:case`AIS`:case`TK`:U(`graphic state operator `+i);break;default:U(`Unknown graphic state operator `+i)}}var a=[],o=t.map;for(var s in o)i(a,s,o[s]);n.addOp(H.setGState,[a])},loadFont:function(e,t,n,r,i){function a(){return{translated:new Po(`Font `+e+` is not available`),loadedName:`g_font_error`}}var o;if(t)ki(aa(t)),o=t;else{var s=r.get(`Font`);if(!s)return a();o=s.getRaw(e)}if(this.fontCache.has(o))return this.fontCache.get(o);if(!ta(t=n.fetchIfRef(o)))return a();if(this.fontCache.put(o,t),t.loadedName=`g_font_`+o.num+`_`+o.gen,!t.translated){var c;try{c=this.translateFont(t,n)}catch(e){c=new Po(e instanceof Error?e.message:e)}t.translated=c}if(t.translated.loadCharProcs){var l=t.get(`CharProcs`).getAll(),u=t.get(`Resources`)||r,d=Object.keys(l),f={};U(`Processing Type3 font: ${e}, found ${d.length} CharProcs`);var p={},m=t.get(`Encoding`);if(m){U(`Type3 font has encoding: ${m.name||`custom`}`);var h=m.get(`Differences`),g=m.get(`BaseEncoding`);if(h){U(`Processing Differences array of length ${h.length}`);for(var _=0,v=0;v<h.length;v++){var y=h[v];if(typeof y==`number`)U(`Setting current code to ${_=y}`);else{var b,x=typeof y;x===`object`&&y.name?b=y.name:x===`object`?U(`Warning: Non-name object in Differences array: ${b=JSON.stringify(y)}`):b=y.toString(),p[_]=b,_++}}}if(g&&g.name){U(`Using BaseEncoding: ${g.name}`);var S=mo[g.name];if(S)for(var C=0;C<256;C++)!p[C]&&S[C]&&(p[C]=S[C])}}t.translated.charProcMapping=p,v=0;for(var w=d.length;v<w;++v){var T=d[v],E=l[T],D=this.getOperatorList(E,u);f[T]=D.getIR(),i&&i.addDependencies(D.dependencies)}t.translated.charProcOperatorList=f,t.translated.charProcMapping=p,t.loaded=!0}else t.loaded=!0;return t},getOperatorList:function(e,n,r){var i=this,a=this.xref;this.handler,r||=new so;for(var o=(n||=new Ua).get(`XObject`)||new Ua,s=n.get(`Pattern`)||new Ua,c=new os(new ss(e,t),!1,a),l=(new q,[]);;){var u=c.getObj();if(as(u))break;if(ea(u)){var d=u.cmd,f=t[d];if(!f){W(`Unknown command "`+d+`"`);continue}var p=f.id;if(f.variableArgs)l.length>f.numArgs&&U(`Command `+p+`: expected [0,`+f.numArgs+`] args, but received `+l.length+` args`);else{if(l.length<f.numArgs){U(`Command `+p+`: because expected `+f.numArgs+` args, but received `+l.length+` args; skipping`),l=[];continue}l.length>f.numArgs&&U(`Command `+p+`: expected `+f.numArgs+` args, but received `+l.length+` args`)}switch(p){case H.setStrokeColorN:case H.setFillColorN:if(l[l.length-1].code)break;var m=l[l.length-1];if($i(m)&&(_=s.get(m.name))){var h=ra(_)?_.dict:_,g=h.get(`PatternType`);if(g==1){i.handleTilingType(p,l,n,_,h,r),l=[];continue}if(g==2){var _,v=h.get(`Shading`),y=h.get(`Matrix`);l=(_=ba.parseShading(v,y,a,n)).getIR()}else G(`Unkown PatternType `+g)}break;case H.paintXObject:if(l[0].code)break;var b=l[0].name,x=o.get(b);if(x){Mi(ra(x),`XObject should be a stream`);var S=x.dict.get(`Subtype`);if(Mi($i(S),`XObject should have a Name subtype`),S.name==`Form`){i.buildFormXObject(n,x,null,r),l=[];continue}if(S.name==`Image`){i.buildPaintImageXObject(n,x,!1,r),l=[];continue}G(`Unhandled XObject subtype `+S.name)}break;case H.setFont:var C=i.handleSetFont(n,l,null,r);r.addDependency(C),l[0]=C;break;case H.endInlineImage:i.buildPaintImageXObject(n,l[0],!0,r),l=[];continue;case H.save:var w=this.state;this.stateStack.push(this.state),this.state=w.clone();break;case H.restore:var T=this.stateStack.pop();T&&(this.state=T);break;case H.showText:l[0]=this.handleText(l[0]);break;case H.showSpacedText:for(var E=l[0],D=E.length,O=0;O<D;++O)Qi(E[O])&&(E[O]=this.handleText(E[O]));break;case H.nextLineShowText:l[0]=this.handleText(l[0]);break;case H.nextLineSetSpacingShowText:l[2]=this.handleText(l[2]);break;case H.setTextRenderingMode:this.state.textRenderingMode=l[0];break;case H.setFillColorSpace:case H.setStrokeColorSpace:l=[la.parseToIR(l[0],a,n)];break;case H.shadingFill:var k=n.get(`Shading`);k||G(`No shading resource found`),(v=k.get(l[0].name))||G(`No shading object found`),l=[ba.parseShading(v,null,a,n).getIR()],p=H.shadingFill;break;case H.setGState:var A=l[0],j=n.get(`ExtGState`);if(!ta(j)||!j.has(A.name))break;var M=j.get(A.name);i.setGState(n,M,r),l=[];continue}r.addOp(p,l),l=[],c.saveState()}else u!=null&&(l.push(u instanceof Ua?u.getAll():u),Mi(l.length<=33,`Too many arguments`))}return r},getTextContent:function(e,t,n){var r,i;n?(r=n.bidiTexts,i=n.textState):n={textState:i=new co,bidiTexts:r=[]};var a=this,o=this.xref;function s(e,n){return a.loadFont(e,n,o,t,null)}t=o.fetchIfRef(t)||new Ua;for(var c,l=null,u=new os(new ss(e),!1),d=[],f=``,p=null,m=0,h=0;!as(c=u.getObj());)if(ea(c)){switch(c.cmd){case`Tf`:p=s(d[0].name).translated,i.fontSize=d[1];break;case`Ts`:i.textRise=d[0];break;case`Tz`:i.textHScale=d[0]/100;break;case`TL`:i.leading=d[0];break;case`Td`:i.translateTextMatrix(d[0],d[1]);break;case`TD`:i.leading=-d[1],i.translateTextMatrix(d[0],d[1]);break;case`T*`:i.translateTextMatrix(0,-i.leading);break;case`Tm`:i.setTextMatrix(d[0],d[1],d[2],d[3],d[4],d[5]);break;case`Tc`:m=d[0];break;case`Tw`:h=d[0];break;case`q`:i.push();break;case`Q`:i.pop();break;case`BT`:i.initialiseTextObj();break;case`cm`:i.transformCTM(d[0],d[1],d[2],d[3],d[4],d[5]);break;case`TJ`:for(var g=d[0],_=0,v=g.length;_<v;_++)if(typeof g[_]==`string`)f+=Mo(g[_],p);else if(g[_]<0&&p.spaceWidth>0){var y=-g[_]/p.spaceWidth;if(y>1.5)for(y=Math.round(y);y--;)f+=` `;else y>.35&&(f+=` `)}break;case`Tj`:case`'`:f+=Mo(d[0],p);break;case`"`:f+=Mo(d[2],p);break;case`Do`:if(f=``,d[0].code)break;l||=t.get(`XObject`)||new Ua;var b=d[0].name,x=l.get(b);if(!x)break;Mi(ra(x),`XObject should be a stream`);var S=x.dict.get(`Subtype`);if(Mi($i(S),`XObject should have a Name subtype`),S.name!==`Form`)break;n=this.getTextContent(x,x.dict.get(`Resources`)||t,n);break;case`gs`:var C=d[0],w=t.get(`ExtGState`);if(!ta(w)||!w.has(C.name))break;for(var T=w.get(C.name),E=0;E<T.length;E++)T[E]===`Font`&&(p=s(d[0].name).translated)}if(f!==``){var D=V.bidi(f,-1,p.vertical),O=i.calcRenderParams();D.x=O.renderMatrix[4]-i.fontSize*O.vScale*Math.sin(O.angle),D.y=O.renderMatrix[5]+i.fontSize*O.vScale*Math.cos(O.angle),D.dir==`ttb`&&(D.x+=O.vScale/2,D.y-=O.vScale),D.fontName=p.loadedName||p.name,D.fontSize=i.fontSize;var k=p.fontMatrix||yi,A=i.fontDirection||1;D.spaceWidth=p.spaceWidth*i.fontSize*k[0],D.charSpace=m,D.wordSpace=h,D.textHScale=i.textHScale;for(var j=0,M=p.charsToGlyphs(f),N=(E=0,M.length);E<N;E++){var P=M[E];j+=(P&&P.width||p.defaultWidth||0)*i.fontSize*k[0]+m*A}D.width=j,r.push(D),f=``}d=[]}else c!=null&&(Mi(d.length<=33,`Too many arguments`),d.push(c));return n},extractDataStructures:function(e,t,n,r){var i=e.get(`ToUnicode`)||t.get(`ToUnicode`);if(i&&(r.toUnicode=this.readToUnicode(i,n,r)),r.composite){var a=e.get(`CIDSystemInfo`);ta(a)&&(r.cidSystemInfo={registry:a.get(`Registry`),ordering:a.get(`Ordering`),supplement:a.get(`Supplement`)});var o=e.get(`CIDToGIDMap`);ra(o)&&(r.cidToGidMap=this.readCidToGidMap(o))}var s=!0,c=!1,l=r.flags,u=[],d=r.type===`TrueType`?mo.WinAnsiEncoding:mo.StandardEncoding;if(l&po.Symbolic&&(d=r.file?mo.MacRomanEncoding:mo.SymbolSetEncoding),e.has(`Encoding`)){var f=e.get(`Encoding`);if(ta(f)){var p=f.get(`BaseEncoding`);if(p&&(s=!1,c=!0,d=mo[p.name]),f.has(`Differences`)){c=!0;for(var m=f.get(`Differences`),h=0,g=0,_=m.length;g<_;g++){var v=m[g];Zi(v)?h=v:u[h++]=v.name}}}else $i(f)?(s=!1,c=!0,d=mo[f.name]):G(`Encoding is not a Name nor a Dict`)}r.differences=u,r.baseEncoding=d,r.hasEncoding=c,r.overridableEncoding=s},readToUnicode:function(e,t,n){var r=e;if($i(r))r.name.substring(0,9)==`Identity-`||G(`ToUnicode file cmap translation not implemented`);else if(ra(r)){var i=zs.create(r).map;for(var a in i){for(var o=i[a],s=[],c=0;c<o.length;c+=2){var l=o.charCodeAt(c)<<8|o.charCodeAt(c+1);if((63488&l)==55296){c+=2;var u=o.charCodeAt(c)<<8|o.charCodeAt(c+1);s.push(((1023&l)<<10)+(1023&u)+65536)}else s.push(l)}i[a]=String.fromCharCode.apply(String,s)}return i}return[]},readCidToGidMap:function(e){for(var t=e.getBytes(),n=[],r=0,i=t.length;r<i;r++){var a=t[r++]<<8|t[r];a!==0&&(n[r>>1]=a)}return n},extractWidths:function(e,t,n,r){var i,a=[],o=0,s=[];if(r.composite){if(o=e.get(`DW`)||1e3,_=e.get(`W`))for(var c=0,l=_.length;c<l;c++){var u=_[c++];if(na(h=t.fetchIfRef(_[c])))for(var d=0,f=h.length;d<f;d++)a[u++]=h[d];else{var p=_[++c];for(d=u;d<=h;d++)a[d]=p}}if(r.vertical){var m=e.get(`DW2`)||[880,-1e3];if(i=[m[1],.5*o,m[0]],m=e.get(`W2`))for(c=0,l=m.length;c<l;c++){var h;if(u=m[c++],na(h=t.fetchIfRef(m[c])))for(d=0,f=h.length;d<f;d++)s[u++]=[h[d++],h[d++],h[d]];else{var g=[m[++c],m[++c],m[++c]];for(d=u;d<=h;d++)s[d]=g}}}}else{var _,v=r.firstChar;if(_=e.get(`Widths`)){for(d=v,c=0,l=_.length;c<l;c++)a[d++]=_[c];o=parseFloat(n.get(`MissingWidth`))||0}else{var y=e.get(`BaseFont`);if($i(y)){var b=this.getBaseFontMetrics(y.name);a=b.widths,o=b.defaultWidth}}}var x=!0,S=o;for(var C in a){var w=a[C];if(w)if(S){if(S!=w){x=!1;break}}else S=w}x&&(r.flags|=po.FixedPitch),r.defaultWidth=o,r.widths=a,r.defaultVMetrics=i,r.vmetrics=s},isSerifFont:function(e){var t=e.split(`-`)[0];return t in _o||t.search(/serif/gi)!==-1},getBaseFontMetrics:function(e){var t=0,n=[],r=!1,i=ho[e]||e;i in rs||(i=this.isSerifFont(e)?`Times-Roman`:`Helvetica`);var a=rs[i];return Zi(a)?(t=a,r=!0):n=a,{defaultWidth:t,monospace:r,widths:n}},translateFont:function(e,t){var n=e,r=e.get(`Subtype`);Mi($i(r),`invalid font Subtype`);var i=!1;if(r.name==`Type0`){var a=e.get(`DescendantFonts`);a||G(`Descendant fonts are not specified`),Mi($i(r=(e=na(a)?t.fetchIfRef(a[0]):a).get(`Subtype`)),`invalid font Subtype`),i=!0}var o=i?65535:255,s=e.get(`FontDescriptor`);if(!s){if(r.name!=`Type3`){var c=e.get(`BaseFont`);$i(c)||G(`Base font is not specified`),c=c.name.replace(/[,_]/g,`-`);var l=this.getBaseFontMetrics(c),u=c.split(`-`)[0],d=(this.isSerifFont(u)?po.Serif:0)|(l.monospace?po.FixedPitch:0)|(vo[u]?po.Symbolic:po.Nonsymbolic),f={type:r.name,widths:l.widths,defaultWidth:l.defaultWidth,flags:d,firstChar:0,lastChar:o};return this.extractDataStructures(e,e,t,f),new No(c,null,f)}(s=new Ua).set(`FontName`,new Va(r.name))}var p=e.get(`FirstChar`)||0,m=e.get(`LastChar`)||o,h=s.get(`FontName`),g=e.get(`BaseFont`);if(Qi(h)&&(h=new Va(h)),Qi(g)&&(g=new Va(g)),r.name!==`Type3`){var _=h&&h.name,v=g&&g.name;_!==v&&U(`The FontDescriptor's FontName is "`+_+`" but should be the same as the Font's BaseFont "`+v+`"`)}Mi($i(h||=g),`invalid font name`);var y=s.get(`FontFile`,`FontFile2`,`FontFile3`);if(y&&y.dict){var b=y.dict.get(`Subtype`);b&&=b.name;var x=y.dict.get(`Length1`),S=y.dict.get(`Length2`)}if(f={type:r.name,subtype:b,file:y,length1:x,length2:S,loadedName:n.loadedName,composite:i,wideChars:i,fixedPitch:!1,fontMatrix:e.get(`FontMatrix`)||yi,firstChar:p||0,lastChar:m||o,bbox:s.get(`FontBBox`),ascent:s.get(`Ascent`),descent:s.get(`Descent`),xHeight:s.get(`XHeight`),capHeight:s.get(`CapHeight`),flags:s.get(`Flags`),italicAngle:s.get(`ItalicAngle`),coded:!1},i){var C=n.get(`Encoding`);$i(C)&&(f.cidEncoding=C.name,f.vertical=/-V$/.test(C.name)),f.cmap=zs.create(C)}return this.extractWidths(e,t,s,f),this.extractDataStructures(e,n,t,f),r.name===`Type3`&&(f.coded=!0),new No(h.name,y,f)}},e.optimizeQueue=function(e){function t(e,t,n,r){if(na(e))e.splice(t,n,r);else{e[t]=r;var i=e.subarray(t+n);e.set(i,t+1)}}for(var n=e.fnArray,r=e.argsArray,i=0,a=r.length;i<a;i++)if(n[i]===H.paintInlineImageXObject&&n[i-2]===H.save&&n[i-1]===H.transform&&n[i+1]===H.restore){var o=i-2;for(i+=2;i<a&&n[i-4]===n[i];i++);if((T=Math.min(i-o>>2,200))<10)continue;for(var s=0,c=[],l=0,u=1,d=1,f=0;f<T;f++){var p=r[o+(f<<2)+1],m=r[o+(f<<2)+2][0];u+m.width>1e3&&(s=Math.max(s,u),d+=l+2,u=0,l=0),c.push({transform:p,x:u,y:d,w:m.width,h:m.height}),u+=m.width+2,l=Math.max(l,m.height)}var h=Math.max(s,u)+1,g=d+l+1,_=new Uint8Array(h*g*4),v=h<<2;for(f=0;f<T;f++){var y=r[o+(f<<2)+2][0].data,b=c[f].w<<2,x=0,S=c[f].x+c[f].y*h<<2;_.set(y.subarray(0,b),S-v);for(var C=0,w=c[f].h;C<w;C++)_.set(y.subarray(x,x+b),S),x+=b,S+=v;for(_.set(y.subarray(x-b,x),S);S>=0;)y[S-4]=y[S],y[S-3]=y[S+1],y[S-2]=y[S+2],y[S-1]=y[S+3],y[S+b]=y[S+b-4],y[S+b+1]=y[S+b-3],y[S+b+2]=y[S+b-2],y[S+b+3]=y[S+b-1],S-=v}t(n,o,4*T,H.paintInlineImageXObjectGroup),r.splice(o,4*T,[{width:h,height:g,data:_},c]),i=o,a=r.length}for(i=0,a=r.length;i<a;i++)if(n[i]===H.paintImageMaskXObject&&n[i-2]===H.save&&n[i-1]===H.transform&&n[i+1]===H.restore){var T;for(o=i-2,i+=2;i<a&&n[i-4]===n[i];i++);if((T=Math.min(i-o>>2,100))<10)continue;var E=[];for(f=0;f<T;f++){p=r[o+(f<<2)+1];var D=r[o+(f<<2)+2][0];E.push({data:D.data,width:D.width,height:D.height,transform:p})}t(n,o,4*T,H.paintImageMaskXObjectGroup),r.splice(o,4*T,[E]),i=o,a=r.length}},e}(),so=function(){function e(e,t){this.messageHandler=e,this.fnArray=e?new Uint8Array(100):[],this.argsArray=[],this.dependencies={},this.pageIndex=t,this.fnIndex=0}return e.prototype={get length(){return this.argsArray.length},addOp:function(e,t){this.messageHandler?(this.fnArray[this.fnIndex++]=e,this.argsArray.push(t),this.fnIndex>=100&&this.flush()):(this.fnArray.push(e),this.argsArray.push(t))},addDependency:function(e){e in this.dependencies||(this.dependencies[e]=!0,this.addOp(H.dependency,[e]))},addDependencies:function(e){for(var t in e)this.addDependency(t)},addOpList:function(e){K.extendObj(this.dependencies,e.dependencies);for(var t=0,n=e.length;t<n;t++)this.addOp(e.fnArray[t],e.argsArray[t])},getIR:function(){return{fnArray:this.fnArray,argsArray:this.argsArray,length:this.length}},flush:function(e){oo.optimizeQueue(this);var t=function(e){for(var t=[],n=e.fnArray,r=e.argsArray,i=0,a=e.length;i<a;i++)switch(n[i]){case H.paintInlineImageXObject:case H.paintInlineImageXObjectGroup:case H.paintImageMaskXObject:var o=r[i][0];t.push(o.data.buffer)}return t}(this);this.messageHandler.send(`RenderPageChunk`,{operatorList:{fnArray:this.fnArray,argsArray:this.argsArray,lastChunk:e,length:this.length},pageIndex:this.pageIndex},null,t),this.dependencies=[],this.fnIndex=0,this.argsArray=[]}},e}(),co=function(){function e(){this.fontSize=0,this.ctm=[1,0,0,1,0,0],this.textMatrix=[1,0,0,1,0,0],this.stateStack=[],this.leading=0,this.textHScale=1,this.textRise=0}return e.prototype={push:function(){this.stateStack.push(this.ctm.slice())},pop:function(){var e=this.stateStack.pop();e&&(this.ctm=e)},initialiseTextObj:function(){var e=this.textMatrix;e[0]=1,e[1]=0,e[2]=0,e[3]=1,e[4]=0,e[5]=0},setTextMatrix:function(e,t,n,r,i,a){var o=this.textMatrix;o[0]=e,o[1]=t,o[2]=n,o[3]=r,o[4]=i,o[5]=a},transformCTM:function(e,t,n,r,i,a){var o=this.ctm,s=o[0],c=o[1],l=o[2],u=o[3],d=o[4],f=o[5];o[0]=s*e+l*t,o[1]=c*e+u*t,o[2]=s*n+l*r,o[3]=c*n+u*r,o[4]=s*i+l*a+d,o[5]=c*i+u*a+f},translateTextMatrix:function(e,t){var n=this.textMatrix;n[4]=n[0]*e+n[2]*t+n[4],n[5]=n[1]*e+n[3]*t+n[5]},calcRenderParams:function(){var e=this.textMatrix,t=this.ctm,n=this.fontSize,r=n*this.textHScale,i=this.textRise,a=Math.sqrt(e[2]*e[2]+e[3]*e[3]),o=Math.atan2(e[1],e[0]),s=e[0]*t[0]+e[1]*t[2],c=e[0]*t[1]+e[1]*t[3],l=e[2]*t[0]+e[3]*t[2],u=e[2]*t[1]+e[3]*t[3];return{renderMatrix:[r*s,r*c,n*l,n*u,i*l+(e[4]*t[0]+e[5]*t[2]+t[4]),i*u+(e[4]*t[1]+e[5]*t[3]+t[5])],vScale:a,angle:o}}},e}(),lo=function(){function e(){this.font=null,this.textRenderingMode=bi}return e.prototype={clone:function(){return Object.create(this)}},e}(),uo=57344,fo=6400,po={FixedPitch:1,Serif:2,Symbolic:4,Script:8,Nonsymbolic:32,Italic:64,AllCap:65536,SmallCap:131072,ForceBold:262144},mo={ExpertEncoding:`................................space.exclamsmall.Hungarumlautsmall..dollaroldstyle.dollarsuperior.ampersandsmall.Acutesmall.parenleftsuperior.parenrightsuperior.twodotenleader.onedotenleader.comma.hyphen.period.fraction.zerooldstyle.oneoldstyle.twooldstyle.threeoldstyle.fouroldstyle.fiveoldstyle.sixoldstyle.sevenoldstyle.eightoldstyle.nineoldstyle.colon.semicolon.commasuperior.threequartersemdash.periodsuperior.questionsmall..asuperior.bsuperior.centsuperior.dsuperior.esuperior...isuperior...lsuperior.msuperior.nsuperior.osuperior...rsuperior.ssuperior.tsuperior..ff.fi.fl.ffi.ffl.parenleftinferior..parenrightinferior.Circumflexsmall.hyphensuperior.Gravesmall.Asmall.Bsmall.Csmall.Dsmall.Esmall.Fsmall.Gsmall.Hsmall.Ismall.Jsmall.Ksmall.Lsmall.Msmall.Nsmall.Osmall.Psmall.Qsmall.Rsmall.Ssmall.Tsmall.Usmall.Vsmall.Wsmall.Xsmall.Ysmall.Zsmall.colonmonetary.onefitted.rupiah.Tildesmall...................................exclamdownsmall.centoldstyle.Lslashsmall...Scaronsmall.Zcaronsmall.Dieresissmall.Brevesmall.Caronsmall..Dotaccentsmall...Macronsmall...figuredash.hypheninferior...Ogoneksmall.Ringsmall.Cedillasmall....onequarter.onehalf.threequarters.questiondownsmall.oneeighth.threeeighths.fiveeighths.seveneighths.onethird.twothirds...zerosuperior.onesuperior.twosuperior.threesuperior.foursuperior.fivesuperior.sixsuperior.sevensuperior.eightsuperior.ninesuperior.zeroinferior.oneinferior.twoinferior.threeinferior.fourinferior.fiveinferior.sixinferior.seveninferior.eightinferior.nineinferior.centinferior.dollarinferior.periodinferior.commainferior.Agravesmall.Aacutesmall.Acircumflexsmall.Atildesmall.Adieresissmall.Aringsmall.AEsmall.Ccedillasmall.Egravesmall.Eacutesmall.Ecircumflexsmall.Edieresissmall.Igravesmall.Iacutesmall.Icircumflexsmall.Idieresissmall.Ethsmall.Ntildesmall.Ogravesmall.Oacutesmall.Ocircumflexsmall.Otildesmall.Odieresissmall.OEsmall.Oslashsmall.Ugravesmall.Uacutesmall.Ucircumflexsmall.Udieresissmall.Yacutesmall.Thornsmall.Ydieresissmall`.split(`.`),MacExpertEncoding:`................................space.exclamsmall.Hungarumlautsmall.centoldstyle.dollaroldstyle.dollarsuperior.ampersandsmall.Acutesmall.parenleftsuperior.parenrightsuperior.twodotenleader.onedotenleader.comma.hyphen.period.fraction.zerooldstyle.oneoldstyle.twooldstyle.threeoldstyle.fouroldstyle.fiveoldstyle.sixoldstyle.sevenoldstyle.eightoldstyle.nineoldstyle.colon.semicolon..threequartersemdash..questionsmall.....Ethsmall...onequarter.onehalf.threequarters.oneeighth.threeeighths.fiveeighths.seveneighths.onethird.twothirds.......ff.fi.fl.ffi.ffl.parenleftinferior..parenrightinferior.Circumflexsmall.hypheninferior.Gravesmall.Asmall.Bsmall.Csmall.Dsmall.Esmall.Fsmall.Gsmall.Hsmall.Ismall.Jsmall.Ksmall.Lsmall.Msmall.Nsmall.Osmall.Psmall.Qsmall.Rsmall.Ssmall.Tsmall.Usmall.Vsmall.Wsmall.Xsmall.Ysmall.Zsmall.colonmonetary.onefitted.rupiah.Tildesmall...asuperior.centsuperior.....Aacutesmall.Agravesmall.Acircumflexsmall.Adieresissmall.Atildesmall.Aringsmall.Ccedillasmall.Eacutesmall.Egravesmall.Ecircumflexsmall.Edieresissmall.Iacutesmall.Igravesmall.Icircumflexsmall.Idieresissmall.Ntildesmall.Oacutesmall.Ogravesmall.Ocircumflexsmall.Odieresissmall.Otildesmall.Uacutesmall.Ugravesmall.Ucircumflexsmall.Udieresissmall..eightsuperior.fourinferior.threeinferior.sixinferior.eightinferior.seveninferior.Scaronsmall..centinferior.twoinferior..Dieresissmall..Caronsmall.osuperior.fiveinferior..commainferior.periodinferior.Yacutesmall..dollarinferior..Thornsmall..nineinferior.zeroinferior.Zcaronsmall.AEsmall.Oslashsmall.questiondownsmall.oneinferior.Lslashsmall.......Cedillasmall......OEsmall.figuredash.hyphensuperior.....exclamdownsmall..Ydieresissmall..onesuperior.twosuperior.threesuperior.foursuperior.fivesuperior.sixsuperior.sevensuperior.ninesuperior.zerosuperior..esuperior.rsuperior.tsuperior...isuperior.ssuperior.dsuperior......lsuperior.Ogoneksmall.Brevesmall.Macronsmall.bsuperior.nsuperior.msuperior.commasuperior.periodsuperior.Dotaccentsmall.Ringsmall`.split(`.`),MacRomanEncoding:`................................space.exclam.quotedbl.numbersign.dollar.percent.ampersand.quotesingle.parenleft.parenright.asterisk.plus.comma.hyphen.period.slash.zero.one.two.three.four.five.six.seven.eight.nine.colon.semicolon.less.equal.greater.question.at.A.B.C.D.E.F.G.H.I.J.K.L.M.N.O.P.Q.R.S.T.U.V.W.X.Y.Z.bracketleft.backslash.bracketright.asciicircum.underscore.grave.a.b.c.d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.x.y.z.braceleft.bar.braceright.asciitilde..Adieresis.Aring.Ccedilla.Eacute.Ntilde.Odieresis.Udieresis.aacute.agrave.acircumflex.adieresis.atilde.aring.ccedilla.eacute.egrave.ecircumflex.edieresis.iacute.igrave.icircumflex.idieresis.ntilde.oacute.ograve.ocircumflex.odieresis.otilde.uacute.ugrave.ucircumflex.udieresis.dagger.degree.cent.sterling.section.bullet.paragraph.germandbls.registered.copyright.trademark.acute.dieresis.notequal.AE.Oslash.infinity.plusminus.lessequal.greaterequal.yen.mu.partialdiff.summation.product.pi.integral.ordfeminine.ordmasculine.Omega.ae.oslash.questiondown.exclamdown.logicalnot.radical.florin.approxequal.Delta.guillemotleft.guillemotright.ellipsis..Agrave.Atilde.Otilde.OE.oe.endash.emdash.quotedblleft.quotedblright.quoteleft.quoteright.divide.lozenge.ydieresis.Ydieresis.fraction.currency.guilsinglleft.guilsinglright.fi.fl.daggerdbl.periodcentered.quotesinglbase.quotedblbase.perthousand.Acircumflex.Ecircumflex.Aacute.Edieresis.Egrave.Iacute.Icircumflex.Idieresis.Igrave.Oacute.Ocircumflex.apple.Ograve.Uacute.Ucircumflex.Ugrave.dotlessi.circumflex.tilde.macron.breve.dotaccent.ring.cedilla.hungarumlaut.ogonek.caron`.split(`.`),StandardEncoding:`................................space.exclam.quotedbl.numbersign.dollar.percent.ampersand.quoteright.parenleft.parenright.asterisk.plus.comma.hyphen.period.slash.zero.one.two.three.four.five.six.seven.eight.nine.colon.semicolon.less.equal.greater.question.at.A.B.C.D.E.F.G.H.I.J.K.L.M.N.O.P.Q.R.S.T.U.V.W.X.Y.Z.bracketleft.backslash.bracketright.asciicircum.underscore.quoteleft.a.b.c.d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.x.y.z.braceleft.bar.braceright.asciitilde...................................exclamdown.cent.sterling.fraction.yen.florin.section.currency.quotesingle.quotedblleft.guillemotleft.guilsinglleft.guilsinglright.fi.fl..endash.dagger.daggerdbl.periodcentered..paragraph.bullet.quotesinglbase.quotedblbase.quotedblright.guillemotright.ellipsis.perthousand..questiondown..grave.acute.circumflex.tilde.macron.breve.dotaccent.dieresis..ring.cedilla..hungarumlaut.ogonek.caron.emdash.................AE..ordfeminine.....Lslash.Oslash.OE.ordmasculine......ae....dotlessi...lslash.oslash.oe.germandbls`.split(`.`),WinAnsiEncoding:`................................space.exclam.quotedbl.numbersign.dollar.percent.ampersand.quotesingle.parenleft.parenright.asterisk.plus.comma.hyphen.period.slash.zero.one.two.three.four.five.six.seven.eight.nine.colon.semicolon.less.equal.greater.question.at.A.B.C.D.E.F.G.H.I.J.K.L.M.N.O.P.Q.R.S.T.U.V.W.X.Y.Z.bracketleft.backslash.bracketright.asciicircum.underscore.grave.a.b.c.d.e.f.g.h.i.j.k.l.m.n.o.p.q.r.s.t.u.v.w.x.y.z.braceleft.bar.braceright.asciitilde.bullet.Euro.bullet.quotesinglbase.florin.quotedblbase.ellipsis.dagger.daggerdbl.circumflex.perthousand.Scaron.guilsinglleft.OE.bullet.Zcaron.bullet.bullet.quoteleft.quoteright.quotedblleft.quotedblright.bullet.endash.emdash.tilde.trademark.scaron.guilsinglright.oe.bullet.zcaron.Ydieresis..exclamdown.cent.sterling.currency.yen.brokenbar.section.dieresis.copyright.ordfeminine.guillemotleft.logicalnot.hyphen.registered.macron.degree.plusminus.twosuperior.threesuperior.acute.mu.paragraph.periodcentered.cedilla.onesuperior.ordmasculine.guillemotright.onequarter.onehalf.threequarters.questiondown.Agrave.Aacute.Acircumflex.Atilde.Adieresis.Aring.AE.Ccedilla.Egrave.Eacute.Ecircumflex.Edieresis.Igrave.Iacute.Icircumflex.Idieresis.Eth.Ntilde.Ograve.Oacute.Ocircumflex.Otilde.Odieresis.multiply.Oslash.Ugrave.Uacute.Ucircumflex.Udieresis.Yacute.Thorn.germandbls.agrave.aacute.acircumflex.atilde.adieresis.aring.ae.ccedilla.egrave.eacute.ecircumflex.edieresis.igrave.iacute.icircumflex.idieresis.eth.ntilde.ograve.oacute.ocircumflex.otilde.odieresis.divide.oslash.ugrave.uacute.ucircumflex.udieresis.yacute.thorn.ydieresis`.split(`.`),SymbolSetEncoding:`................................space.exclam.universal.numbersign.existential.percent.ampersand.suchthat.parenleft.parenright.asteriskmath.plus.comma.minus.period.slash.zero.one.two.three.four.five.six.seven.eight.nine.colon.semicolon.less.equal.greater.question.congruent.Alpha.Beta.Chi.Delta.Epsilon.Phi.Gamma.Eta.Iota.theta1.Kappa.Lambda.Mu.Nu.Omicron.Pi.Theta.Rho.Sigma.Tau.Upsilon.sigma1.Omega.Xi.Psi.Zeta.bracketleft.therefore.bracketright.perpendicular.underscore.radicalex.alpha.beta.chi.delta.epsilon.phi.gamma.eta.iota.phi1.kappa.lambda.mu.nu.omicron.pi.theta.rho.sigma.tau.upsilon.omega1.omega.xi.psi.zeta.braceleft.bar.braceright.similar..................................Euro.Upsilon1.minute.lessequal.fraction.infinity.florin.club.diamond.heart.spade.arrowboth.arrowleft.arrowup.arrowright.arrowdown.degree.plusminus.second.greaterequal.multiply.proportional.partialdiff.bullet.divide.notequal.equivalence.approxequal.ellipsis.arrowvertex.arrowhorizex.carriagereturn.aleph.Ifraktur.Rfraktur.weierstrass.circlemultiply.circleplus.emptyset.intersection.union.propersuperset.reflexsuperset.notsubset.propersubset.reflexsubset.element.notelement.angle.gradient.registerserif.copyrightserif.trademarkserif.product.radical.dotmath.logicalnot.logicaland.logicalor.arrowdblboth.arrowdblleft.arrowdblup.arrowdblright.arrowdbldown.lozenge.angleleft.registersans.copyrightsans.trademarksans.summation.parenlefttp.parenleftex.parenleftbt.bracketlefttp.bracketleftex.bracketleftbt.bracelefttp.braceleftmid.braceleftbt.braceex..angleright.integral.integraltp.integralex.integralbt.parenrighttp.parenrightex.parenrightbt.bracketrighttp.bracketrightex.bracketrightbt.bracerighttp.bracerightmid.bracerightbt`.split(`.`),zapfDingbatsEncoding:`................................space.a1.a2.a202.a3.a4.a5.a119.a118.a117.a11.a12.a13.a14.a15.a16.a105.a17.a18.a19.a20.a21.a22.a23.a24.a25.a26.a27.a28.a6.a7.a8.a9.a10.a29.a30.a31.a32.a33.a34.a35.a36.a37.a38.a39.a40.a41.a42.a43.a44.a45.a46.a47.a48.a49.a50.a51.a52.a53.a54.a55.a56.a57.a58.a59.a60.a61.a62.a63.a64.a65.a66.a67.a68.a69.a70.a71.a72.a73.a74.a203.a75.a204.a76.a77.a78.a79.a81.a82.a83.a84.a97.a98.a99.a100...................................a101.a102.a103.a104.a106.a107.a108.a112.a111.a110.a109.a120.a121.a122.a123.a124.a125.a126.a127.a128.a129.a130.a131.a132.a133.a134.a135.a136.a137.a138.a139.a140.a141.a142.a143.a144.a145.a146.a147.a148.a149.a150.a151.a152.a153.a154.a155.a156.a157.a158.a159.a160.a161.a163.a164.a196.a165.a192.a166.a167.a168.a169.a170.a171.a172.a173.a162.a174.a175.a176.a177.a178.a179.a193.a180.a199.a181.a200.a182..a201.a183.a184.a197.a185.a194.a198.a186.a195.a187.a188.a189.a190.a191`.split(`.`)},ho={ArialNarrow:`Helvetica`,"ArialNarrow-Bold":`Helvetica-Bold`,"ArialNarrow-BoldItalic":`Helvetica-BoldOblique`,"ArialNarrow-Italic":`Helvetica-Oblique`,ArialBlack:`Helvetica`,"ArialBlack-Bold":`Helvetica-Bold`,"ArialBlack-BoldItalic":`Helvetica-BoldOblique`,"ArialBlack-Italic":`Helvetica-Oblique`,Arial:`Helvetica`,"Arial-Bold":`Helvetica-Bold`,"Arial-BoldItalic":`Helvetica-BoldOblique`,"Arial-Italic":`Helvetica-Oblique`,"Arial-BoldItalicMT":`Helvetica-BoldOblique`,"Arial-BoldMT":`Helvetica-Bold`,"Arial-ItalicMT":`Helvetica-Oblique`,ArialMT:`Helvetica`,"Courier-Bold":`Courier-Bold`,"Courier-BoldItalic":`Courier-BoldOblique`,"Courier-Italic":`Courier-Oblique`,CourierNew:`Courier`,"CourierNew-Bold":`Courier-Bold`,"CourierNew-BoldItalic":`Courier-BoldOblique`,"CourierNew-Italic":`Courier-Oblique`,"CourierNewPS-BoldItalicMT":`Courier-BoldOblique`,"CourierNewPS-BoldMT":`Courier-Bold`,"CourierNewPS-ItalicMT":`Courier-Oblique`,CourierNewPSMT:`Courier`,"Helvetica-Bold":`Helvetica-Bold`,"Helvetica-BoldItalic":`Helvetica-BoldOblique`,"Helvetica-Italic":`Helvetica-Oblique`,"Symbol-Bold":`Symbol`,"Symbol-BoldItalic":`Symbol`,"Symbol-Italic":`Symbol`,TimesNewRoman:`Times-Roman`,"TimesNewRoman-Bold":`Times-Bold`,"TimesNewRoman-BoldItalic":`Times-BoldItalic`,"TimesNewRoman-Italic":`Times-Italic`,TimesNewRomanPS:`Times-Roman`,"TimesNewRomanPS-Bold":`Times-Bold`,"TimesNewRomanPS-BoldItalic":`Times-BoldItalic`,"TimesNewRomanPS-BoldItalicMT":`Times-BoldItalic`,"TimesNewRomanPS-BoldMT":`Times-Bold`,"TimesNewRomanPS-Italic":`Times-Italic`,"TimesNewRomanPS-ItalicMT":`Times-Italic`,TimesNewRomanPSMT:`Times-Roman`,"TimesNewRomanPSMT-Bold":`Times-Bold`,"TimesNewRomanPSMT-BoldItalic":`Times-BoldItalic`,"TimesNewRomanPSMT-Italic":`Times-Italic`},go={ComicSansMS:`Comic Sans MS`,"ComicSansMS-Bold":`Comic Sans MS-Bold`,"ComicSansMS-BoldItalic":`Comic Sans MS-BoldItalic`,"ComicSansMS-Italic":`Comic Sans MS-Italic`,LucidaConsole:`Courier`,"LucidaConsole-Bold":`Courier-Bold`,"LucidaConsole-BoldItalic":`Courier-BoldOblique`,"LucidaConsole-Italic":`Courier-Oblique`,"MS-Gothic":`MS Gothic`,"MS-Gothic-Bold":`MS Gothic-Bold`,"MS-Gothic-BoldItalic":`MS Gothic-BoldItalic`,"MS-Gothic-Italic":`MS Gothic-Italic`,"MS-Mincho":`MS Mincho`,"MS-Mincho-Bold":`MS Mincho-Bold`,"MS-Mincho-BoldItalic":`MS Mincho-BoldItalic`,"MS-Mincho-Italic":`MS Mincho-Italic`,"MS-PGothic":`MS PGothic`,"MS-PGothic-Bold":`MS PGothic-Bold`,"MS-PGothic-BoldItalic":`MS PGothic-BoldItalic`,"MS-PGothic-Italic":`MS PGothic-Italic`,"MS-PMincho":`MS PMincho`,"MS-PMincho-Bold":`MS PMincho-Bold`,"MS-PMincho-BoldItalic":`MS PMincho-BoldItalic`,"MS-PMincho-Italic":`MS PMincho-Italic`},_o={"Adobe Jenson":!0,"Adobe Text":!0,Albertus:!0,Aldus:!0,Alexandria:!0,Algerian:!0,"American Typewriter":!0,Antiqua:!0,Apex:!0,Arno:!0,Aster:!0,Aurora:!0,Baskerville:!0,Bell:!0,Bembo:!0,"Bembo Schoolbook":!0,Benguiat:!0,"Berkeley Old Style":!0,"Bernhard Modern":!0,"Berthold City":!0,Bodoni:!0,"Bauer Bodoni":!0,"Book Antiqua":!0,Bookman:!0,"Bordeaux Roman":!0,"Californian FB":!0,Calisto:!0,Calvert:!0,Capitals:!0,Cambria:!0,Cartier:!0,Caslon:!0,Catull:!0,Centaur:!0,"Century Old Style":!0,"Century Schoolbook":!0,Chaparral:!0,"Charis SIL":!0,Cheltenham:!0,"Cholla Slab":!0,Clarendon:!0,Clearface:!0,Cochin:!0,Colonna:!0,"Computer Modern":!0,"Concrete Roman":!0,Constantia:!0,"Cooper Black":!0,Corona:!0,Ecotype:!0,Egyptienne:!0,Elephant:!0,Excelsior:!0,Fairfield:!0,"FF Scala":!0,Folkard:!0,Footlight:!0,FreeSerif:!0,"Friz Quadrata":!0,Garamond:!0,Gentium:!0,Georgia:!0,Gloucester:!0,"Goudy Old Style":!0,"Goudy Schoolbook":!0,"Goudy Pro Font":!0,Granjon:!0,"Guardian Egyptian":!0,Heather:!0,Hercules:!0,"High Tower Text":!0,Hiroshige:!0,"Hoefler Text":!0,"Humana Serif":!0,Imprint:!0,"Ionic No. 5":!0,Janson:!0,Joanna:!0,Korinna:!0,Lexicon:!0,"Liberation Serif":!0,"Linux Libertine":!0,Literaturnaya:!0,Lucida:!0,"Lucida Bright":!0,Melior:!0,Memphis:!0,Miller:!0,Minion:!0,Modern:!0,"Mona Lisa":!0,"Mrs Eaves":!0,"MS Serif":!0,"Museo Slab":!0,"New York":!0,"Nimbus Roman":!0,"NPS Rawlinson Roadway":!0,Palatino:!0,Perpetua:!0,Plantin:!0,"Plantin Schoolbook":!0,Playbill:!0,"Poor Richard":!0,"Rawlinson Roadway":!0,Renault:!0,Requiem:!0,Rockwell:!0,Roman:!0,"Rotis Serif":!0,Sabon:!0,Scala:!0,Seagull:!0,Sistina:!0,Souvenir:!0,STIX:!0,"Stone Informal":!0,"Stone Serif":!0,Sylfaen:!0,Times:!0,Trajan:!0,Trinité:!0,"Trump Mediaeval":!0,Utopia:!0,"Vale Type":!0,"Bitstream Vera":!0,"Vera Serif":!0,Versailles:!0,Wanted:!0,Weiss:!0,"Wide Latin":!0,Windsor:!0,XITS:!0},vo={Dingbats:!0,Symbol:!0,ZapfDingbats:!0},yo={H:xo,V:xo,"EUC-H":So,"EUC-V":So,"83pv-RKSJ-H":function(e){var t=Wi(e);try{return Pa(t,`shift_jis`,!0)}catch{return Oi(`Unsupported 83pv character found`),Pa(t,`shift_jis`)}},"90pv-RKSJ-H":function(e){var t=Wi(e);try{return Pa(t,`shift_jis`,!0)}catch{return Oi(`Unsupported 90pv character found`),Pa(t,`shift_jis`)}},"90ms-RKSJ-H":Co,"90ms-RKSJ-V":Co,"90msp-RKSJ-H":Co,"90msp-RKSJ-V":Co,"GBK-EUC-H":wo,"GBKp-EUC-H":wo,"B5pc-H":To,"ETenms-B5-H":To,"ETenms-B5-V":To},bo={H:!0,V:!0,"EUC-H":!0,"EUC-V":!0,"90ms-RKSJ-H":!0,"90ms-RKSJ-V":!0,"UniJIS-UCS2-HW-H":!0,"UniJIS-UCS2-HW-V":!0};function xo(e){for(var t=Wi(e),n=t.length,r=0;r<n;++r)t[r]|=128;return Pa(t,`euc-jp`)}function So(e){return Pa(Wi(e),`euc-jp`)}function Co(e){return Pa(Wi(e),`shift_jis`)}function wo(e){return Pa(Wi(e),`gbk`)}function To(e){return Pa(Wi(e),`big5`)}typeof TextDecoder<`u`?Pa=function(e,t,n){return new TextDecoder(t,{fatal:!!n}).decode(e)}:typeof FileReaderSync<`u`?Pa=function(e,t){return new FileReaderSync().readAsText(new z.Blob([e]),t)}:yo={};var Eo=[{begin:0,end:127},{begin:128,end:255},{begin:256,end:383},{begin:384,end:591},{begin:592,end:687},{begin:688,end:767},{begin:768,end:879},{begin:880,end:1023},{begin:11392,end:11519},{begin:1024,end:1279},{begin:1328,end:1423},{begin:1424,end:1535},{begin:42240,end:42559},{begin:1536,end:1791},{begin:1984,end:2047},{begin:2304,end:2431},{begin:2432,end:2559},{begin:2560,end:2687},{begin:2688,end:2815},{begin:2816,end:2943},{begin:2944,end:3071},{begin:3072,end:3199},{begin:3200,end:3327},{begin:3328,end:3455},{begin:3584,end:3711},{begin:3712,end:3839},{begin:4256,end:4351},{begin:6912,end:7039},{begin:4352,end:4607},{begin:7680,end:7935},{begin:7936,end:8191},{begin:8192,end:8303},{begin:8304,end:8351},{begin:8352,end:8399},{begin:8400,end:8447},{begin:8448,end:8527},{begin:8528,end:8591},{begin:8592,end:8703},{begin:8704,end:8959},{begin:8960,end:9215},{begin:9216,end:9279},{begin:9280,end:9311},{begin:9312,end:9471},{begin:9472,end:9599},{begin:9600,end:9631},{begin:9632,end:9727},{begin:9728,end:9983},{begin:9984,end:10175},{begin:12288,end:12351},{begin:12352,end:12447},{begin:12448,end:12543},{begin:12544,end:12591},{begin:12592,end:12687},{begin:43072,end:43135},{begin:12800,end:13055},{begin:13056,end:13311},{begin:44032,end:55215},{begin:55296,end:57343},{begin:67840,end:67871},{begin:19968,end:40959},{begin:57344,end:63743},{begin:12736,end:12783},{begin:64256,end:64335},{begin:64336,end:65023},{begin:65056,end:65071},{begin:65040,end:65055},{begin:65104,end:65135},{begin:65136,end:65279},{begin:65280,end:65519},{begin:65520,end:65535},{begin:3840,end:4095},{begin:1792,end:1871},{begin:1920,end:1983},{begin:3456,end:3583},{begin:4096,end:4255},{begin:4608,end:4991},{begin:5024,end:5119},{begin:5120,end:5759},{begin:5760,end:5791},{begin:5792,end:5887},{begin:6016,end:6143},{begin:6144,end:6319},{begin:10240,end:10495},{begin:40960,end:42127},{begin:5888,end:5919},{begin:66304,end:66351},{begin:66352,end:66383},{begin:66560,end:66639},{begin:118784,end:119039},{begin:119808,end:120831},{begin:1044480,end:1048573},{begin:65024,end:65039},{begin:917504,end:917631},{begin:6400,end:6479},{begin:6480,end:6527},{begin:6528,end:6623},{begin:6656,end:6687},{begin:11264,end:11359},{begin:11568,end:11647},{begin:19904,end:19967},{begin:43008,end:43055},{begin:65536,end:65663},{begin:65856,end:65935},{begin:66432,end:66463},{begin:66464,end:66527},{begin:66640,end:66687},{begin:66688,end:66735},{begin:67584,end:67647},{begin:68096,end:68191},{begin:119552,end:119647},{begin:73728,end:74751},{begin:119648,end:119679},{begin:7040,end:7103},{begin:7168,end:7247},{begin:7248,end:7295},{begin:43136,end:43231},{begin:43264,end:43311},{begin:43312,end:43359},{begin:43520,end:43615},{begin:65936,end:65999},{begin:66e3,end:66047},{begin:66208,end:66271},{begin:127024,end:127135}],Do=`.notdef,.null,nonmarkingreturn,space,exclam,quotedbl,numbersign,dollar,percent,ampersand,quotesingle,parenleft,parenright,asterisk,plus,comma,hyphen,period,slash,zero,one,two,three,four,five,six,seven,eight,nine,colon,semicolon,less,equal,greater,question,at,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,bracketleft,backslash,bracketright,asciicircum,underscore,grave,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,braceleft,bar,braceright,asciitilde,Adieresis,Aring,Ccedilla,Eacute,Ntilde,Odieresis,Udieresis,aacute,agrave,acircumflex,adieresis,atilde,aring,ccedilla,eacute,egrave,ecircumflex,edieresis,iacute,igrave,icircumflex,idieresis,ntilde,oacute,ograve,ocircumflex,odieresis,otilde,uacute,ugrave,ucircumflex,udieresis,dagger,degree,cent,sterling,section,bullet,paragraph,germandbls,registered,copyright,trademark,acute,dieresis,notequal,AE,Oslash,infinity,plusminus,lessequal,greaterequal,yen,mu,partialdiff,summation,product,pi,integral,ordfeminine,ordmasculine,Omega,ae,oslash,questiondown,exclamdown,logicalnot,radical,florin,approxequal,Delta,guillemotleft,guillemotright,ellipsis,nonbreakingspace,Agrave,Atilde,Otilde,OE,oe,endash,emdash,quotedblleft,quotedblright,quoteleft,quoteright,divide,lozenge,ydieresis,Ydieresis,fraction,currency,guilsinglleft,guilsinglright,fi,fl,daggerdbl,periodcentered,quotesinglbase,quotedblbase,perthousand,Acircumflex,Ecircumflex,Aacute,Edieresis,Egrave,Iacute,Icircumflex,Idieresis,Igrave,Oacute,Ocircumflex,apple,Ograve,Uacute,Ucircumflex,Ugrave,dotlessi,circumflex,tilde,macron,breve,dotaccent,ring,cedilla,hungarumlaut,ogonek,caron,Lslash,lslash,Scaron,scaron,Zcaron,zcaron,brokenbar,Eth,eth,Yacute,yacute,Thorn,thorn,minus,multiply,onesuperior,twosuperior,threesuperior,onehalf,onequarter,threequarters,franc,Gbreve,gbreve,Idotaccent,Scedilla,scedilla,Cacute,cacute,Ccaron,ccaron,dcroat`.split(`,`);function Oo(e){for(var t=0,n=Eo.length;t<n;t++){var r=Eo[t];if(e>=r.begin&&e<r.end)return t}return-1}function ko(e){return e<=31||e>=127&&e<fo||e>=uo&&e<63744}var Ao={"¨":` ̈`,"¯":` ̄`,"´":` ́`,µ:`μ`,"¸":` ̧`,IJ:`IJ`,ij:`ij`,Ŀ:`L·`,ŀ:`l·`,ʼn:`ʼn`,ſ:`s`,DŽ:`DŽ`,Dž:`Dž`,dž:`dž`,LJ:`LJ`,Lj:`Lj`,lj:`lj`,NJ:`NJ`,Nj:`Nj`,nj:`nj`,DZ:`DZ`,Dz:`Dz`,dz:`dz`,"˘":` ̆`,"˙":` ̇`,"˚":` ̊`,"˛":` ̨`,"˜":` ̃`,"˝":` ̋`,ͺ:` ͅ`,"΄":` ́`,ϐ:`β`,ϑ:`θ`,ϒ:`Υ`,ϕ:`φ`,ϖ:`π`,ϰ:`κ`,ϱ:`ρ`,ϲ:`ς`,ϴ:`Θ`,ϵ:`ε`,Ϲ:`Σ`,և:`եւ`,ٵ:`اٴ`,ٶ:`وٴ`,ٷ:`ۇٴ`,ٸ:`يٴ`,ำ:`ํา`,ຳ:`ໍາ`,ໜ:`ຫນ`,ໝ:`ຫມ`,"ཷ":`ྲཱྀ`,"ཹ":`ླཱྀ`,ẚ:`aʾ`,"᾽":` ̓`,"᾿":` ̓`,"῀":` ͂`,"῾":` ̔`," ":` `," ":` `," ":` `," ":` `," ":` `," ":` `," ":` `," ":` `,"‗":` ̳`,"․":`.`,"‥":`..`,"…":`...`,"″":`′′`,"‴":`′′′`,"‶":`‵‵`,"‷":`‵‵‵`,"‼":`!!`,"‾":` ̅`,"⁇":`??`,"⁈":`?!`,"⁉":`!?`,"⁗":`′′′′`," ":` `,"₨":`Rs`,"℀":`a/c`,"℁":`a/s`,"℃":`°C`,"℅":`c/o`,"℆":`c/u`,ℇ:`Ɛ`,"℉":`°F`,"№":`No`,"℡":`TEL`,ℵ:`א`,ℶ:`ב`,ℷ:`ג`,ℸ:`ד`,"℻":`FAX`,Ⅰ:`I`,Ⅱ:`II`,Ⅲ:`III`,Ⅳ:`IV`,Ⅴ:`V`,Ⅵ:`VI`,Ⅶ:`VII`,Ⅷ:`VIII`,Ⅸ:`IX`,Ⅹ:`X`,Ⅺ:`XI`,Ⅻ:`XII`,Ⅼ:`L`,Ⅽ:`C`,Ⅾ:`D`,Ⅿ:`M`,ⅰ:`i`,ⅱ:`ii`,ⅲ:`iii`,ⅳ:`iv`,ⅴ:`v`,ⅵ:`vi`,ⅶ:`vii`,ⅷ:`viii`,ⅸ:`ix`,ⅹ:`x`,ⅺ:`xi`,ⅻ:`xii`,ⅼ:`l`,ⅽ:`c`,ⅾ:`d`,ⅿ:`m`,"∬":`∫∫`,"∭":`∫∫∫`,"∯":`∮∮`,"∰":`∮∮∮`,"⑴":`(1)`,"⑵":`(2)`,"⑶":`(3)`,"⑷":`(4)`,"⑸":`(5)`,"⑹":`(6)`,"⑺":`(7)`,"⑻":`(8)`,"⑼":`(9)`,"⑽":`(10)`,"⑾":`(11)`,"⑿":`(12)`,"⒀":`(13)`,"⒁":`(14)`,"⒂":`(15)`,"⒃":`(16)`,"⒄":`(17)`,"⒅":`(18)`,"⒆":`(19)`,"⒇":`(20)`,"⒈":`1.`,"⒉":`2.`,"⒊":`3.`,"⒋":`4.`,"⒌":`5.`,"⒍":`6.`,"⒎":`7.`,"⒏":`8.`,"⒐":`9.`,"⒑":`10.`,"⒒":`11.`,"⒓":`12.`,"⒔":`13.`,"⒕":`14.`,"⒖":`15.`,"⒗":`16.`,"⒘":`17.`,"⒙":`18.`,"⒚":`19.`,"⒛":`20.`,"⒜":`(a)`,"⒝":`(b)`,"⒞":`(c)`,"⒟":`(d)`,"⒠":`(e)`,"⒡":`(f)`,"⒢":`(g)`,"⒣":`(h)`,"⒤":`(i)`,"⒥":`(j)`,"⒦":`(k)`,"⒧":`(l)`,"⒨":`(m)`,"⒩":`(n)`,"⒪":`(o)`,"⒫":`(p)`,"⒬":`(q)`,"⒭":`(r)`,"⒮":`(s)`,"⒯":`(t)`,"⒰":`(u)`,"⒱":`(v)`,"⒲":`(w)`,"⒳":`(x)`,"⒴":`(y)`,"⒵":`(z)`,"⨌":`∫∫∫∫`,"⩴":`::=`,"⩵":`==`,"⩶":`===`,"⺟":`母`,"⻳":`龟`,"⼀":`一`,"⼁":`丨`,"⼂":`丶`,"⼃":`丿`,"⼄":`乙`,"⼅":`亅`,"⼆":`二`,"⼇":`亠`,"⼈":`人`,"⼉":`儿`,"⼊":`入`,"⼋":`八`,"⼌":`冂`,"⼍":`冖`,"⼎":`冫`,"⼏":`几`,"⼐":`凵`,"⼑":`刀`,"⼒":`力`,"⼓":`勹`,"⼔":`匕`,"⼕":`匚`,"⼖":`匸`,"⼗":`十`,"⼘":`卜`,"⼙":`卩`,"⼚":`厂`,"⼛":`厶`,"⼜":`又`,"⼝":`口`,"⼞":`囗`,"⼟":`土`,"⼠":`士`,"⼡":`夂`,"⼢":`夊`,"⼣":`夕`,"⼤":`大`,"⼥":`女`,"⼦":`子`,"⼧":`宀`,"⼨":`寸`,"⼩":`小`,"⼪":`尢`,"⼫":`尸`,"⼬":`屮`,"⼭":`山`,"⼮":`巛`,"⼯":`工`,"⼰":`己`,"⼱":`巾`,"⼲":`干`,"⼳":`幺`,"⼴":`广`,"⼵":`廴`,"⼶":`廾`,"⼷":`弋`,"⼸":`弓`,"⼹":`彐`,"⼺":`彡`,"⼻":`彳`,"⼼":`心`,"⼽":`戈`,"⼾":`戶`,"⼿":`手`,"⽀":`支`,"⽁":`攴`,"⽂":`文`,"⽃":`斗`,"⽄":`斤`,"⽅":`方`,"⽆":`无`,"⽇":`日`,"⽈":`曰`,"⽉":`月`,"⽊":`木`,"⽋":`欠`,"⽌":`止`,"⽍":`歹`,"⽎":`殳`,"⽏":`毋`,"⽐":`比`,"⽑":`毛`,"⽒":`氏`,"⽓":`气`,"⽔":`水`,"⽕":`火`,"⽖":`爪`,"⽗":`父`,"⽘":`爻`,"⽙":`爿`,"⽚":`片`,"⽛":`牙`,"⽜":`牛`,"⽝":`犬`,"⽞":`玄`,"⽟":`玉`,"⽠":`瓜`,"⽡":`瓦`,"⽢":`甘`,"⽣":`生`,"⽤":`用`,"⽥":`田`,"⽦":`疋`,"⽧":`疒`,"⽨":`癶`,"⽩":`白`,"⽪":`皮`,"⽫":`皿`,"⽬":`目`,"⽭":`矛`,"⽮":`矢`,"⽯":`石`,"⽰":`示`,"⽱":`禸`,"⽲":`禾`,"⽳":`穴`,"⽴":`立`,"⽵":`竹`,"⽶":`米`,"⽷":`糸`,"⽸":`缶`,"⽹":`网`,"⽺":`羊`,"⽻":`羽`,"⽼":`老`,"⽽":`而`,"⽾":`耒`,"⽿":`耳`,"⾀":`聿`,"⾁":`肉`,"⾂":`臣`,"⾃":`自`,"⾄":`至`,"⾅":`臼`,"⾆":`舌`,"⾇":`舛`,"⾈":`舟`,"⾉":`艮`,"⾊":`色`,"⾋":`艸`,"⾌":`虍`,"⾍":`虫`,"⾎":`血`,"⾏":`行`,"⾐":`衣`,"⾑":`襾`,"⾒":`見`,"⾓":`角`,"⾔":`言`,"⾕":`谷`,"⾖":`豆`,"⾗":`豕`,"⾘":`豸`,"⾙":`貝`,"⾚":`赤`,"⾛":`走`,"⾜":`足`,"⾝":`身`,"⾞":`車`,"⾟":`辛`,"⾠":`辰`,"⾡":`辵`,"⾢":`邑`,"⾣":`酉`,"⾤":`釆`,"⾥":`里`,"⾦":`金`,"⾧":`長`,"⾨":`門`,"⾩":`阜`,"⾪":`隶`,"⾫":`隹`,"⾬":`雨`,"⾭":`靑`,"⾮":`非`,"⾯":`面`,"⾰":`革`,"⾱":`韋`,"⾲":`韭`,"⾳":`音`,"⾴":`頁`,"⾵":`風`,"⾶":`飛`,"⾷":`食`,"⾸":`首`,"⾹":`香`,"⾺":`馬`,"⾻":`骨`,"⾼":`高`,"⾽":`髟`,"⾾":`鬥`,"⾿":`鬯`,"⿀":`鬲`,"⿁":`鬼`,"⿂":`魚`,"⿃":`鳥`,"⿄":`鹵`,"⿅":`鹿`,"⿆":`麥`,"⿇":`麻`,"⿈":`黃`,"⿉":`黍`,"⿊":`黑`,"⿋":`黹`,"⿌":`黽`,"⿍":`鼎`,"⿎":`鼓`,"⿏":`鼠`,"⿐":`鼻`,"⿑":`齊`,"⿒":`齒`,"⿓":`龍`,"⿔":`龜`,"⿕":`龠`,"〶":`〒`,〸:`十`,〹:`卄`,〺:`卅`,゛:` ゙`,゜:` ゚`,ㄱ:`ᄀ`,ㄲ:`ᄁ`,ㄳ:`ᆪ`,ㄴ:`ᄂ`,ㄵ:`ᆬ`,ㄶ:`ᆭ`,ㄷ:`ᄃ`,ㄸ:`ᄄ`,ㄹ:`ᄅ`,ㄺ:`ᆰ`,ㄻ:`ᆱ`,ㄼ:`ᆲ`,ㄽ:`ᆳ`,ㄾ:`ᆴ`,ㄿ:`ᆵ`,ㅀ:`ᄚ`,ㅁ:`ᄆ`,ㅂ:`ᄇ`,ㅃ:`ᄈ`,ㅄ:`ᄡ`,ㅅ:`ᄉ`,ㅆ:`ᄊ`,ㅇ:`ᄋ`,ㅈ:`ᄌ`,ㅉ:`ᄍ`,ㅊ:`ᄎ`,ㅋ:`ᄏ`,ㅌ:`ᄐ`,ㅍ:`ᄑ`,ㅎ:`ᄒ`,ㅏ:`ᅡ`,ㅐ:`ᅢ`,ㅑ:`ᅣ`,ㅒ:`ᅤ`,ㅓ:`ᅥ`,ㅔ:`ᅦ`,ㅕ:`ᅧ`,ㅖ:`ᅨ`,ㅗ:`ᅩ`,ㅘ:`ᅪ`,ㅙ:`ᅫ`,ㅚ:`ᅬ`,ㅛ:`ᅭ`,ㅜ:`ᅮ`,ㅝ:`ᅯ`,ㅞ:`ᅰ`,ㅟ:`ᅱ`,ㅠ:`ᅲ`,ㅡ:`ᅳ`,ㅢ:`ᅴ`,ㅣ:`ᅵ`,ㅤ:`ᅠ`,ㅥ:`ᄔ`,ㅦ:`ᄕ`,ㅧ:`ᇇ`,ㅨ:`ᇈ`,ㅩ:`ᇌ`,ㅪ:`ᇎ`,ㅫ:`ᇓ`,ㅬ:`ᇗ`,ㅭ:`ᇙ`,ㅮ:`ᄜ`,ㅯ:`ᇝ`,ㅰ:`ᇟ`,ㅱ:`ᄝ`,ㅲ:`ᄞ`,ㅳ:`ᄠ`,ㅴ:`ᄢ`,ㅵ:`ᄣ`,ㅶ:`ᄧ`,ㅷ:`ᄩ`,ㅸ:`ᄫ`,ㅹ:`ᄬ`,ㅺ:`ᄭ`,ㅻ:`ᄮ`,ㅼ:`ᄯ`,ㅽ:`ᄲ`,ㅾ:`ᄶ`,ㅿ:`ᅀ`,ㆀ:`ᅇ`,ㆁ:`ᅌ`,ㆂ:`ᇱ`,ㆃ:`ᇲ`,ㆄ:`ᅗ`,ㆅ:`ᅘ`,ㆆ:`ᅙ`,ㆇ:`ᆄ`,ㆈ:`ᆅ`,ㆉ:`ᆈ`,ㆊ:`ᆑ`,ㆋ:`ᆒ`,ㆌ:`ᆔ`,ㆍ:`ᆞ`,ㆎ:`ᆡ`,"㈀":`(ᄀ)`,"㈁":`(ᄂ)`,"㈂":`(ᄃ)`,"㈃":`(ᄅ)`,"㈄":`(ᄆ)`,"㈅":`(ᄇ)`,"㈆":`(ᄉ)`,"㈇":`(ᄋ)`,"㈈":`(ᄌ)`,"㈉":`(ᄎ)`,"㈊":`(ᄏ)`,"㈋":`(ᄐ)`,"㈌":`(ᄑ)`,"㈍":`(ᄒ)`,"㈎":`(가)`,"㈏":`(나)`,"㈐":`(다)`,"㈑":`(라)`,"㈒":`(마)`,"㈓":`(바)`,"㈔":`(사)`,"㈕":`(아)`,"㈖":`(자)`,"㈗":`(차)`,"㈘":`(카)`,"㈙":`(타)`,"㈚":`(파)`,"㈛":`(하)`,"㈜":`(주)`,"㈝":`(오전)`,"㈞":`(오후)`,"㈠":`(一)`,"㈡":`(二)`,"㈢":`(三)`,"㈣":`(四)`,"㈤":`(五)`,"㈥":`(六)`,"㈦":`(七)`,"㈧":`(八)`,"㈨":`(九)`,"㈩":`(十)`,"㈪":`(月)`,"㈫":`(火)`,"㈬":`(水)`,"㈭":`(木)`,"㈮":`(金)`,"㈯":`(土)`,"㈰":`(日)`,"㈱":`(株)`,"㈲":`(有)`,"㈳":`(社)`,"㈴":`(名)`,"㈵":`(特)`,"㈶":`(財)`,"㈷":`(祝)`,"㈸":`(労)`,"㈹":`(代)`,"㈺":`(呼)`,"㈻":`(学)`,"㈼":`(監)`,"㈽":`(企)`,"㈾":`(資)`,"㈿":`(協)`,"㉀":`(祭)`,"㉁":`(休)`,"㉂":`(自)`,"㉃":`(至)`,"㋀":`1月`,"㋁":`2月`,"㋂":`3月`,"㋃":`4月`,"㋄":`5月`,"㋅":`6月`,"㋆":`7月`,"㋇":`8月`,"㋈":`9月`,"㋉":`10月`,"㋊":`11月`,"㋋":`12月`,"㍘":`0点`,"㍙":`1点`,"㍚":`2点`,"㍛":`3点`,"㍜":`4点`,"㍝":`5点`,"㍞":`6点`,"㍟":`7点`,"㍠":`8点`,"㍡":`9点`,"㍢":`10点`,"㍣":`11点`,"㍤":`12点`,"㍥":`13点`,"㍦":`14点`,"㍧":`15点`,"㍨":`16点`,"㍩":`17点`,"㍪":`18点`,"㍫":`19点`,"㍬":`20点`,"㍭":`21点`,"㍮":`22点`,"㍯":`23点`,"㍰":`24点`,"㏠":`1日`,"㏡":`2日`,"㏢":`3日`,"㏣":`4日`,"㏤":`5日`,"㏥":`6日`,"㏦":`7日`,"㏧":`8日`,"㏨":`9日`,"㏩":`10日`,"㏪":`11日`,"㏫":`12日`,"㏬":`13日`,"㏭":`14日`,"㏮":`15日`,"㏯":`16日`,"㏰":`17日`,"㏱":`18日`,"㏲":`19日`,"㏳":`20日`,"㏴":`21日`,"㏵":`22日`,"㏶":`23日`,"㏷":`24日`,"㏸":`25日`,"㏹":`26日`,"㏺":`27日`,"㏻":`28日`,"㏼":`29日`,"㏽":`30日`,"㏾":`31日`,ff:`ff`,fi:`fi`,fl:`fl`,ffi:`ffi`,ffl:`ffl`,ſt:`ſt`,st:`st`,ﬓ:`մն`,ﬔ:`մե`,ﬕ:`մի`,ﬖ:`վն`,ﬗ:`մխ`,ﭏ:`אל`,ﭐ:`ٱ`,ﭑ:`ٱ`,ﭒ:`ٻ`,ﭓ:`ٻ`,ﭔ:`ٻ`,ﭕ:`ٻ`,ﭖ:`پ`,ﭗ:`پ`,ﭘ:`پ`,ﭙ:`پ`,ﭚ:`ڀ`,ﭛ:`ڀ`,ﭜ:`ڀ`,ﭝ:`ڀ`,ﭞ:`ٺ`,ﭟ:`ٺ`,ﭠ:`ٺ`,ﭡ:`ٺ`,ﭢ:`ٿ`,ﭣ:`ٿ`,ﭤ:`ٿ`,ﭥ:`ٿ`,ﭦ:`ٹ`,ﭧ:`ٹ`,ﭨ:`ٹ`,ﭩ:`ٹ`,ﭪ:`ڤ`,ﭫ:`ڤ`,ﭬ:`ڤ`,ﭭ:`ڤ`,ﭮ:`ڦ`,ﭯ:`ڦ`,ﭰ:`ڦ`,ﭱ:`ڦ`,ﭲ:`ڄ`,ﭳ:`ڄ`,ﭴ:`ڄ`,ﭵ:`ڄ`,ﭶ:`ڃ`,ﭷ:`ڃ`,ﭸ:`ڃ`,ﭹ:`ڃ`,ﭺ:`چ`,ﭻ:`چ`,ﭼ:`چ`,ﭽ:`چ`,ﭾ:`ڇ`,ﭿ:`ڇ`,ﮀ:`ڇ`,ﮁ:`ڇ`,ﮂ:`ڍ`,ﮃ:`ڍ`,ﮄ:`ڌ`,ﮅ:`ڌ`,ﮆ:`ڎ`,ﮇ:`ڎ`,ﮈ:`ڈ`,ﮉ:`ڈ`,ﮊ:`ژ`,ﮋ:`ژ`,ﮌ:`ڑ`,ﮍ:`ڑ`,ﮎ:`ک`,ﮏ:`ک`,ﮐ:`ک`,ﮑ:`ک`,ﮒ:`گ`,ﮓ:`گ`,ﮔ:`گ`,ﮕ:`گ`,ﮖ:`ڳ`,ﮗ:`ڳ`,ﮘ:`ڳ`,ﮙ:`ڳ`,ﮚ:`ڱ`,ﮛ:`ڱ`,ﮜ:`ڱ`,ﮝ:`ڱ`,ﮞ:`ں`,ﮟ:`ں`,ﮠ:`ڻ`,ﮡ:`ڻ`,ﮢ:`ڻ`,ﮣ:`ڻ`,ﮤ:`ۀ`,ﮥ:`ۀ`,ﮦ:`ہ`,ﮧ:`ہ`,ﮨ:`ہ`,ﮩ:`ہ`,ﮪ:`ھ`,ﮫ:`ھ`,ﮬ:`ھ`,ﮭ:`ھ`,ﮮ:`ے`,ﮯ:`ے`,ﮰ:`ۓ`,ﮱ:`ۓ`,ﯓ:`ڭ`,ﯔ:`ڭ`,ﯕ:`ڭ`,ﯖ:`ڭ`,ﯗ:`ۇ`,ﯘ:`ۇ`,ﯙ:`ۆ`,ﯚ:`ۆ`,ﯛ:`ۈ`,ﯜ:`ۈ`,ﯝ:`ٷ`,ﯞ:`ۋ`,ﯟ:`ۋ`,ﯠ:`ۅ`,ﯡ:`ۅ`,ﯢ:`ۉ`,ﯣ:`ۉ`,ﯤ:`ې`,ﯥ:`ې`,ﯦ:`ې`,ﯧ:`ې`,ﯨ:`ى`,ﯩ:`ى`,ﯪ:`ئا`,ﯫ:`ئا`,ﯬ:`ئە`,ﯭ:`ئە`,ﯮ:`ئو`,ﯯ:`ئو`,ﯰ:`ئۇ`,ﯱ:`ئۇ`,ﯲ:`ئۆ`,ﯳ:`ئۆ`,ﯴ:`ئۈ`,ﯵ:`ئۈ`,ﯶ:`ئې`,ﯷ:`ئې`,ﯸ:`ئې`,ﯹ:`ئى`,ﯺ:`ئى`,ﯻ:`ئى`,ﯼ:`ی`,ﯽ:`ی`,ﯾ:`ی`,ﯿ:`ی`,ﰀ:`ئج`,ﰁ:`ئح`,ﰂ:`ئم`,ﰃ:`ئى`,ﰄ:`ئي`,ﰅ:`بج`,ﰆ:`بح`,ﰇ:`بخ`,ﰈ:`بم`,ﰉ:`بى`,ﰊ:`بي`,ﰋ:`تج`,ﰌ:`تح`,ﰍ:`تخ`,ﰎ:`تم`,ﰏ:`تى`,ﰐ:`تي`,ﰑ:`ثج`,ﰒ:`ثم`,ﰓ:`ثى`,ﰔ:`ثي`,ﰕ:`جح`,ﰖ:`جم`,ﰗ:`حج`,ﰘ:`حم`,ﰙ:`خج`,ﰚ:`خح`,ﰛ:`خم`,ﰜ:`سج`,ﰝ:`سح`,ﰞ:`سخ`,ﰟ:`سم`,ﰠ:`صح`,ﰡ:`صم`,ﰢ:`ضج`,ﰣ:`ضح`,ﰤ:`ضخ`,ﰥ:`ضم`,ﰦ:`طح`,ﰧ:`طم`,ﰨ:`ظم`,ﰩ:`عج`,ﰪ:`عم`,ﰫ:`غج`,ﰬ:`غم`,ﰭ:`فج`,ﰮ:`فح`,ﰯ:`فخ`,ﰰ:`فم`,ﰱ:`فى`,ﰲ:`في`,ﰳ:`قح`,ﰴ:`قم`,ﰵ:`قى`,ﰶ:`قي`,ﰷ:`كا`,ﰸ:`كج`,ﰹ:`كح`,ﰺ:`كخ`,ﰻ:`كل`,ﰼ:`كم`,ﰽ:`كى`,ﰾ:`كي`,ﰿ:`لج`,ﱀ:`لح`,ﱁ:`لخ`,ﱂ:`لم`,ﱃ:`لى`,ﱄ:`لي`,ﱅ:`مج`,ﱆ:`مح`,ﱇ:`مخ`,ﱈ:`مم`,ﱉ:`مى`,ﱊ:`مي`,ﱋ:`نج`,ﱌ:`نح`,ﱍ:`نخ`,ﱎ:`نم`,ﱏ:`نى`,ﱐ:`ني`,ﱑ:`هج`,ﱒ:`هم`,ﱓ:`هى`,ﱔ:`هي`,ﱕ:`يج`,ﱖ:`يح`,ﱗ:`يخ`,ﱘ:`يم`,ﱙ:`يى`,ﱚ:`يي`,ﱛ:`ذٰ`,ﱜ:`رٰ`,ﱝ:`ىٰ`,ﱞ:` ٌّ`,ﱟ:` ٍّ`,ﱠ:` َّ`,ﱡ:` ُّ`,ﱢ:` ِّ`,ﱣ:` ّٰ`,ﱤ:`ئر`,ﱥ:`ئز`,ﱦ:`ئم`,ﱧ:`ئن`,ﱨ:`ئى`,ﱩ:`ئي`,ﱪ:`بر`,ﱫ:`بز`,ﱬ:`بم`,ﱭ:`بن`,ﱮ:`بى`,ﱯ:`بي`,ﱰ:`تر`,ﱱ:`تز`,ﱲ:`تم`,ﱳ:`تن`,ﱴ:`تى`,ﱵ:`تي`,ﱶ:`ثر`,ﱷ:`ثز`,ﱸ:`ثم`,ﱹ:`ثن`,ﱺ:`ثى`,ﱻ:`ثي`,ﱼ:`فى`,ﱽ:`في`,ﱾ:`قى`,ﱿ:`قي`,ﲀ:`كا`,ﲁ:`كل`,ﲂ:`كم`,ﲃ:`كى`,ﲄ:`كي`,ﲅ:`لم`,ﲆ:`لى`,ﲇ:`لي`,ﲈ:`ما`,ﲉ:`مم`,ﲊ:`نر`,ﲋ:`نز`,ﲌ:`نم`,ﲍ:`نن`,ﲎ:`نى`,ﲏ:`ني`,ﲐ:`ىٰ`,ﲑ:`ير`,ﲒ:`يز`,ﲓ:`يم`,ﲔ:`ين`,ﲕ:`يى`,ﲖ:`يي`,ﲗ:`ئج`,ﲘ:`ئح`,ﲙ:`ئخ`,ﲚ:`ئم`,ﲛ:`ئه`,ﲜ:`بج`,ﲝ:`بح`,ﲞ:`بخ`,ﲟ:`بم`,ﲠ:`به`,ﲡ:`تج`,ﲢ:`تح`,ﲣ:`تخ`,ﲤ:`تم`,ﲥ:`ته`,ﲦ:`ثم`,ﲧ:`جح`,ﲨ:`جم`,ﲩ:`حج`,ﲪ:`حم`,ﲫ:`خج`,ﲬ:`خم`,ﲭ:`سج`,ﲮ:`سح`,ﲯ:`سخ`,ﲰ:`سم`,ﲱ:`صح`,ﲲ:`صخ`,ﲳ:`صم`,ﲴ:`ضج`,ﲵ:`ضح`,ﲶ:`ضخ`,ﲷ:`ضم`,ﲸ:`طح`,ﲹ:`ظم`,ﲺ:`عج`,ﲻ:`عم`,ﲼ:`غج`,ﲽ:`غم`,ﲾ:`فج`,ﲿ:`فح`,ﳀ:`فخ`,ﳁ:`فم`,ﳂ:`قح`,ﳃ:`قم`,ﳄ:`كج`,ﳅ:`كح`,ﳆ:`كخ`,ﳇ:`كل`,ﳈ:`كم`,ﳉ:`لج`,ﳊ:`لح`,ﳋ:`لخ`,ﳌ:`لم`,ﳍ:`له`,ﳎ:`مج`,ﳏ:`مح`,ﳐ:`مخ`,ﳑ:`مم`,ﳒ:`نج`,ﳓ:`نح`,ﳔ:`نخ`,ﳕ:`نم`,ﳖ:`نه`,ﳗ:`هج`,ﳘ:`هم`,ﳙ:`هٰ`,ﳚ:`يج`,ﳛ:`يح`,ﳜ:`يخ`,ﳝ:`يم`,ﳞ:`يه`,ﳟ:`ئم`,ﳠ:`ئه`,ﳡ:`بم`,ﳢ:`به`,ﳣ:`تم`,ﳤ:`ته`,ﳥ:`ثم`,ﳦ:`ثه`,ﳧ:`سم`,ﳨ:`سه`,ﳩ:`شم`,ﳪ:`شه`,ﳫ:`كل`,ﳬ:`كم`,ﳭ:`لم`,ﳮ:`نم`,ﳯ:`نه`,ﳰ:`يم`,ﳱ:`يه`,ﳲ:`ـَّ`,ﳳ:`ـُّ`,ﳴ:`ـِّ`,ﳵ:`طى`,ﳶ:`طي`,ﳷ:`عى`,ﳸ:`عي`,ﳹ:`غى`,ﳺ:`غي`,ﳻ:`سى`,ﳼ:`سي`,ﳽ:`شى`,ﳾ:`شي`,ﳿ:`حى`,ﴀ:`حي`,ﴁ:`جى`,ﴂ:`جي`,ﴃ:`خى`,ﴄ:`خي`,ﴅ:`صى`,ﴆ:`صي`,ﴇ:`ضى`,ﴈ:`ضي`,ﴉ:`شج`,ﴊ:`شح`,ﴋ:`شخ`,ﴌ:`شم`,ﴍ:`شر`,ﴎ:`سر`,ﴏ:`صر`,ﴐ:`ضر`,ﴑ:`طى`,ﴒ:`طي`,ﴓ:`عى`,ﴔ:`عي`,ﴕ:`غى`,ﴖ:`غي`,ﴗ:`سى`,ﴘ:`سي`,ﴙ:`شى`,ﴚ:`شي`,ﴛ:`حى`,ﴜ:`حي`,ﴝ:`جى`,ﴞ:`جي`,ﴟ:`خى`,ﴠ:`خي`,ﴡ:`صى`,ﴢ:`صي`,ﴣ:`ضى`,ﴤ:`ضي`,ﴥ:`شج`,ﴦ:`شح`,ﴧ:`شخ`,ﴨ:`شم`,ﴩ:`شر`,ﴪ:`سر`,ﴫ:`صر`,ﴬ:`ضر`,ﴭ:`شج`,ﴮ:`شح`,ﴯ:`شخ`,ﴰ:`شم`,ﴱ:`سه`,ﴲ:`شه`,ﴳ:`طم`,ﴴ:`سج`,ﴵ:`سح`,ﴶ:`سخ`,ﴷ:`شج`,ﴸ:`شح`,ﴹ:`شخ`,ﴺ:`طم`,ﴻ:`ظم`,ﴼ:`اً`,ﴽ:`اً`,ﵐ:`تجم`,ﵑ:`تحج`,ﵒ:`تحج`,ﵓ:`تحم`,ﵔ:`تخم`,ﵕ:`تمج`,ﵖ:`تمح`,ﵗ:`تمخ`,ﵘ:`جمح`,ﵙ:`جمح`,ﵚ:`حمي`,ﵛ:`حمى`,ﵜ:`سحج`,ﵝ:`سجح`,ﵞ:`سجى`,ﵟ:`سمح`,ﵠ:`سمح`,ﵡ:`سمج`,ﵢ:`سمم`,ﵣ:`سمم`,ﵤ:`صحح`,ﵥ:`صحح`,ﵦ:`صمم`,ﵧ:`شحم`,ﵨ:`شحم`,ﵩ:`شجي`,ﵪ:`شمخ`,ﵫ:`شمخ`,ﵬ:`شمم`,ﵭ:`شمم`,ﵮ:`ضحى`,ﵯ:`ضخم`,ﵰ:`ضخم`,ﵱ:`طمح`,ﵲ:`طمح`,ﵳ:`طمم`,ﵴ:`طمي`,ﵵ:`عجم`,ﵶ:`عمم`,ﵷ:`عمم`,ﵸ:`عمى`,ﵹ:`غمم`,ﵺ:`غمي`,ﵻ:`غمى`,ﵼ:`فخم`,ﵽ:`فخم`,ﵾ:`قمح`,ﵿ:`قمم`,ﶀ:`لحم`,ﶁ:`لحي`,ﶂ:`لحى`,ﶃ:`لجج`,ﶄ:`لجج`,ﶅ:`لخم`,ﶆ:`لخم`,ﶇ:`لمح`,ﶈ:`لمح`,ﶉ:`محج`,ﶊ:`محم`,ﶋ:`محي`,ﶌ:`مجح`,ﶍ:`مجم`,ﶎ:`مخج`,ﶏ:`مخم`,ﶒ:`مجخ`,ﶓ:`همج`,ﶔ:`همم`,ﶕ:`نحم`,ﶖ:`نحى`,ﶗ:`نجم`,ﶘ:`نجم`,ﶙ:`نجى`,ﶚ:`نمي`,ﶛ:`نمى`,ﶜ:`يمم`,ﶝ:`يمم`,ﶞ:`بخي`,ﶟ:`تجي`,ﶠ:`تجى`,ﶡ:`تخي`,ﶢ:`تخى`,ﶣ:`تمي`,ﶤ:`تمى`,ﶥ:`جمي`,ﶦ:`جحى`,ﶧ:`جمى`,ﶨ:`سخى`,ﶩ:`صحي`,ﶪ:`شحي`,ﶫ:`ضحي`,ﶬ:`لجي`,ﶭ:`لمي`,ﶮ:`يحي`,ﶯ:`يجي`,ﶰ:`يمي`,ﶱ:`ممي`,ﶲ:`قمي`,ﶳ:`نحي`,ﶴ:`قمح`,ﶵ:`لحم`,ﶶ:`عمي`,ﶷ:`كمي`,ﶸ:`نجح`,ﶹ:`مخي`,ﶺ:`لجم`,ﶻ:`كمم`,ﶼ:`لجم`,ﶽ:`نجح`,ﶾ:`جحي`,ﶿ:`حجي`,ﷀ:`مجي`,ﷁ:`فمي`,ﷂ:`بحي`,ﷃ:`كمم`,ﷄ:`عجم`,ﷅ:`صمم`,ﷆ:`سخي`,ﷇ:`نجي`,"﹉":`‾`,"﹊":`‾`,"﹋":`‾`,"﹌":`‾`,"﹍":`_`,"﹎":`_`,"﹏":`_`,ﺀ:`ء`,ﺁ:`آ`,ﺂ:`آ`,ﺃ:`أ`,ﺄ:`أ`,ﺅ:`ؤ`,ﺆ:`ؤ`,ﺇ:`إ`,ﺈ:`إ`,ﺉ:`ئ`,ﺊ:`ئ`,ﺋ:`ئ`,ﺌ:`ئ`,ﺍ:`ا`,ﺎ:`ا`,ﺏ:`ب`,ﺐ:`ب`,ﺑ:`ب`,ﺒ:`ب`,ﺓ:`ة`,ﺔ:`ة`,ﺕ:`ت`,ﺖ:`ت`,ﺗ:`ت`,ﺘ:`ت`,ﺙ:`ث`,ﺚ:`ث`,ﺛ:`ث`,ﺜ:`ث`,ﺝ:`ج`,ﺞ:`ج`,ﺟ:`ج`,ﺠ:`ج`,ﺡ:`ح`,ﺢ:`ح`,ﺣ:`ح`,ﺤ:`ح`,ﺥ:`خ`,ﺦ:`خ`,ﺧ:`خ`,ﺨ:`خ`,ﺩ:`د`,ﺪ:`د`,ﺫ:`ذ`,ﺬ:`ذ`,ﺭ:`ر`,ﺮ:`ر`,ﺯ:`ز`,ﺰ:`ز`,ﺱ:`س`,ﺲ:`س`,ﺳ:`س`,ﺴ:`س`,ﺵ:`ش`,ﺶ:`ش`,ﺷ:`ش`,ﺸ:`ش`,ﺹ:`ص`,ﺺ:`ص`,ﺻ:`ص`,ﺼ:`ص`,ﺽ:`ض`,ﺾ:`ض`,ﺿ:`ض`,ﻀ:`ض`,ﻁ:`ط`,ﻂ:`ط`,ﻃ:`ط`,ﻄ:`ط`,ﻅ:`ظ`,ﻆ:`ظ`,ﻇ:`ظ`,ﻈ:`ظ`,ﻉ:`ع`,ﻊ:`ع`,ﻋ:`ع`,ﻌ:`ع`,ﻍ:`غ`,ﻎ:`غ`,ﻏ:`غ`,ﻐ:`غ`,ﻑ:`ف`,ﻒ:`ف`,ﻓ:`ف`,ﻔ:`ف`,ﻕ:`ق`,ﻖ:`ق`,ﻗ:`ق`,ﻘ:`ق`,ﻙ:`ك`,ﻚ:`ك`,ﻛ:`ك`,ﻜ:`ك`,ﻝ:`ل`,ﻞ:`ل`,ﻟ:`ل`,ﻠ:`ل`,ﻡ:`م`,ﻢ:`م`,ﻣ:`م`,ﻤ:`م`,ﻥ:`ن`,ﻦ:`ن`,ﻧ:`ن`,ﻨ:`ن`,ﻩ:`ه`,ﻪ:`ه`,ﻫ:`ه`,ﻬ:`ه`,ﻭ:`و`,ﻮ:`و`,ﻯ:`ى`,ﻰ:`ى`,ﻱ:`ي`,ﻲ:`ي`,ﻳ:`ي`,ﻴ:`ي`,ﻵ:`لآ`,ﻶ:`لآ`,ﻷ:`لأ`,ﻸ:`لأ`,ﻹ:`لإ`,ﻺ:`لإ`,ﻻ:`لا`,ﻼ:`لا`};function jo(e){var t,n,r=e.length;if(r<=1||(t=e.charCodeAt(0),n=Eo[13],!(t>=n.begin&&t<n.end||t>=(n=Eo[11]).begin&&t<n.end)))return e;for(var i=``,a=r-1;a>=0;a--)i+=e[a];return i}function Mo(e,t){for(var n=t.charsToGlyphs(e),r=``,i=0,a=n.length;i<a;i++){var o=n[i];if(o){var s=o.unicode;s in Ao&&(s=Ao[s]),r+=jo(s)}}return r}var No=function(){function e(e,t,n){this.name=e,this.loadedName=n.loadedName,this.coded=n.coded,this.loadCharProcs=n.coded,this.sizes=[];var r=e.split(`+`);r=(r=r.length>1?r[1]:r[0]).split(/[-,_]/g)[0],this.isSerifFont=!!(n.flags&po.Serif),this.isSymbolicFont=!!(n.flags&po.Symbolic),this.isMonospace=!!(n.flags&po.FixedPitch);var i=n.type;if(this.type=i,this.fallbackName=this.isMonospace?`monospace`:this.isSerifFont?`serif`:`sans-serif`,this.differences=n.differences,this.widths=n.widths,this.defaultWidth=n.defaultWidth,this.composite=n.composite,this.wideChars=n.wideChars,this.hasEncoding=n.hasEncoding,this.cmap=n.cmap,this.fontMatrix=n.fontMatrix,n.type!=`Type3`){if(this.loadCidToUnicode(n),this.cidEncoding=n.cidEncoding,this.vertical=n.vertical,this.vertical&&(this.vmetrics=n.vmetrics,this.defaultVMetrics=n.defaultVMetrics),n.toUnicode&&n.toUnicode.length>0?this.toUnicode=n.toUnicode:this.rebuildToUnicode(n),this.toFontChar=this.buildToFontChar(this.toUnicode),!t){var a=e.replace(/[,_]/g,`-`);a=ho[a]||go[a]||a,this.bold=a.search(/bold/gi)!=-1,this.italic=a.search(/oblique/gi)!=-1||a.search(/italic/gi)!=-1,this.black=e.search(/Black/g)!=-1,this.encoding=n.baseEncoding,this.noUnicodeAdaptation=!0,this.loadedName=a.split(`-`)[0],this.loading=!1;return}var o,s=n.subtype;switch(s==`Type1C`&&i!=`Type1`&&i!=`MMType1`&&(i=`Type1`),s==`CIDFontType0C`&&i!=`CIDFontType0`&&(i=`CIDFontType0`),s===`OpenType`&&(i=`OpenType`),i){case`Type1`:case`CIDFontType0`:this.mimetype=`font/opentype`;var c=s==`Type1C`||s==`CIDFontType0C`?new zo(t,n):new Ro(e,t,n);(function(e){if(e.fontMatrix[0]!==yi[0]){var t=.001/e.fontMatrix[0],n=e.widths;for(var r in n)n[r]*=t;e.defaultWidth*=t}})(n),o=this.convert(e,c,n);break;case`OpenType`:case`TrueType`:case`CIDFontType2`:this.mimetype=`font/opentype`,o=this.checkAndRepair(e,t,n);break;default:G(`Font `+i+` is not supported`)}this.data=o,this.fontMatrix=n.fontMatrix,this.widths=n.widths,this.defaultWidth=n.defaultWidth,this.encoding=n.baseEncoding,this.seacMap=n.seacMap,this.loading=!0}else if(this.encoding=n.baseEncoding,this.disableFontFace=!0,this.loadedName=this.loadedName||`Type3Font`,n.toUnicode)this.toUnicode=n.toUnicode;else{let e={},t=n.baseEncoding||[];for(let n=0;n<t.length;n++){let r=t[n];r&&ts[r]&&(e[n]=String.fromCharCode(ts[r]))}if(n.differences&&n.differences.length){for(let t=0;t<256;t++)if(n.differences[t]){let r=n.differences[t];typeof r==`string`&&ts[r]&&(e[t]=String.fromCharCode(ts[r]))}}this.toUnicode=e}}function t(e){for(var t=[],n=0,r=e.length;n<r;++n)t[n]=e.charCodeAt(n);return t}function n(e){for(var t=``,n=0,r=e.length;n<r;++n)t+=String.fromCharCode(e[n]);return t}function r(e){return(e[0]<<8)+(255&e[1])}function i(e){return(e[0]<<24)+(e[1]<<16)+(e[2]<<8)+(255&e[3])}function a(e){for(var t=0,n=e;n>=2;)n/=2,t++;n=2;for(var r=1;r<t;r++)n*=2;return n}function o(e){return String.fromCharCode(e>>8&255)+String.fromCharCode(255&e)}function s(e){return e=e>32767?32767:e<-32768?-32768:e,String.fromCharCode(e>>8&255)+String.fromCharCode(255&e)}function c(e){return String.fromCharCode(e>>24&255)+String.fromCharCode(e>>16&255)+String.fromCharCode(e>>8&255)+String.fromCharCode(255&e)}function l(e,t,n){e==`true`&&(e=c(65536));var r=e;r+=o(n);var i=a(n),s=16*i;r+=o(s),r+=o(Math.log(i)/Math.log(2)),r+=o(16*n-s),t.file+=r,t.virtualOffset+=r.length}function u(e,t,n){for(var r=e.virtualOffset,a=n.length;3&n.length;)n.push(0);for(;3&e.virtualOffset;)e.virtualOffset++;for(var o=0,s=n.length,l=0;l<s;l+=4)o=o+i([n[l],n[l+1],n[l+2],n[l+3]])|0;var u=t+c(o)+c(r)+c(a);e.file+=u,e.virtualOffset+=n.length}function d(e,n){for(var r=function(e,t){for(var n=[],r=e.length,i=0;i<r;++i)n.push({unicode:e[i].unicode,code:i});n.sort(function(e,t){return e.unicode-t.unicode});var a=[];for(i=0;i<r;){var o=n[i].unicode,s=[t?t[n[i].code]:n[i].code+1];++i;for(var c=o;i<r&&c+1==n[i].unicode&&(s.push(t?t[n[i].code]:n[i].code+1),++i,++c!==65535););a.push([o,c,s])}return a}(e,n),i=r[r.length-1][1]>65535?2:1,s=`\0\0`+o(i)+`\0\0`+c(4+8*i),l=r.length-1;l>=0&&!(r[l][0]<=65535);--l);var u=l+1;r[l][0]<65535&&r[l][1]===65535&&(r[l][1]=65534);for(var d=r[l][1]<65535?1:0,f=u+d,p=2*f,m=2*a(f),h=Math.log(f)/Math.log(2),g=2*f-m,_=``,v=``,y=``,b=``,x=``,S=0,C=(l=0,u);l<C;l++){var w=(N=r[l])[0],T=N[1];_+=o(w),v+=o(T);for(var E=!0,D=1,O=(P=N[2]).length;D<O;++D)if(P[D]!==P[D-1]+1){E=!1;break}if(E)y+=o(P[0]-w&65535),b+=o(0);else{var k=2*(f-l)+2*S;for(S+=T-w+1,y+=o(0),b+=o(k),D=0,O=P.length;D<O;++D)x+=o(P[D])}}d>0&&(v+=`ÿÿ`,_+=`ÿÿ`,y+=`\0`,b+=`\0\0`);var A=`\0\0`+o(p)+o(m)+o(h)+o(g)+v+`\0\0`+_+y+b+x,j=``,M=``;if(i>1){for(s+=`\0\0
|
|
8
|
+
`+c(4+8*i+4+A.length),j=``,l=0,C=r.length;l<C;l++){w=(N=r[l])[0];var N,P,F=(P=N[2])[0];for(D=1,O=P.length;D<O;++D)P[D]!==P[D-1]+1&&(T=N[0]+D-1,j+=c(w)+c(T)+c(F),w=T+1,F=P[D]);j+=c(w)+c(N[1])+c(F)}M=`\0\f\0\0`+c(j.length+16)+`\0\0\0\0`+c(j.length/12)}return t(s+`\0`+o(A.length+4)+A+M+j)}function f(e,t,n){n||={unitsPerEm:0,yMax:0,yMin:0,ascent:0,descent:0};var r=0,i=0,a=0,s=0,l=null,u=0;if(t)for(var d=0;d<t.length;++d){var f=t[d].unicode;(l>f||!l)&&(l=f),u<f&&(u=f);var p=Oo(f);p<32?r|=1<<p:p<64?i|=1<<p-32:p<96?a|=1<<p-64:p<123?s|=1<<p-96:G(`Unicode ranges Bits > 123 are reserved for internal usage`)}else l=0,u=255;var m=e.bbox||[0,0,0,0],h=n.unitsPerEm||1/(e.fontMatrix||yi)[0],g=e.ascentScaled?1:h/1e3,_=n.ascent||Math.round(g*(e.ascent||m[3])),v=n.descent||Math.round(g*(e.descent||m[1]));v>0&&e.descent>0&&m[1]<0&&(v=-v);var y=n.yMax||_,b=-n.yMin||-v;return`\0$ô\0\0\0»\0\0\0»\0\0ß\x001\0\0\0\0`+String.fromCharCode(e.fixedPitch?9:0)+`\0\0\0\0\0\0`+c(r)+c(i)+c(a)+c(s)+`*21*`+o(e.italicAngle?1:0)+o(l||e.firstChar)+o(u||e.lastChar)+o(_)+o(v)+`\0d`+o(y)+o(b)+`\0\0\0\0\0\0\0\0`+o(e.xHeight)+o(e.capHeight)+o(0)+o(l||e.firstChar)+`\0`}function p(e){return`\0\0\0`+c(Math.floor(e.italicAngle*2**16))+`\0\0\0\0`+c(e.fixedPitch)+`\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`}function m(e,t){t||=[[],[]];for(var n=[t[0][0]||`Original licence`,t[0][1]||e,t[0][2]||`Unknown`,t[0][3]||`uniqueID`,t[0][4]||e,t[0][5]||`Version 0.11`,t[0][6]||``,t[0][7]||`Unknown`,t[0][8]||`Unknown`,t[0][9]||`Unknown`],r=[],i=0,a=n.length;i<a;i++){for(var s=``,c=0,l=(v=t[1][i]||n[i]).length;c<l;c++)s+=o(v.charCodeAt(c));r.push(s)}var u=[n,r],d=[`\0`,`\0`],f=[`\0\0`,`\0`],p=[`\0\0`,` `],m=n.length*d.length,h=`\0\0`+o(m)+o(12*m+6),g=0;for(i=0,a=d.length;i<a;i++){var _=u[i];for(c=0,l=_.length;c<l;c++){var v=_[c];h+=d[i]+f[i]+p[i]+o(c)+o(v.length)+o(g),g+=v.length}}return h+=n.join(``)+r.join(``)}function h(e,t,n,r){var i;if(t)(n===3&&r===0||n===1&&r===0)&&(i=61440|255&e);else if(n===3&&r===1)i=e;else if(n===1&&r===0){var a=mo.MacRomanEncoding[e];a&&(i=ts[a])}return i}return e.prototype={name:null,font:null,mimetype:null,encoding:null,get renderer(){return Pi(this,`renderer`,es.create(this))},exportData:function(){var e={};for(var t in this)this.hasOwnProperty(t)&&(e[t]=this[t]);return e},checkAndRepair:function(e,a,o){function s(e){var t=e.getBytes(4);t=String.fromCharCode(t[0])+String.fromCharCode(t[1])+String.fromCharCode(t[2])+String.fromCharCode(t[3]);var n=i(e.getBytes(4)),r=i(e.getBytes(4)),a=i(e.getBytes(4)),o=e.pos;e.pos=e.start?e.start:0,e.skip(r);var s=e.getBytes(a);return e.pos=o,t==`head`&&(s[8]=s[9]=s[10]=s[11]=0,s[17]|=32),{tag:t,checksum:n,length:a,offset:r,data:s}}function c(e,t,n,r,i,a){if(n-t<=12)return 0;var o=e.subarray(t,n),s=o[0]<<8|o[1];if(32768&s)return r.set(o,i),o.length;for(var c=10,l=0,u=0;u<s;u++)l=(o[c]<<8|o[c+1])+1,c+=2;var d=c,f=o[c]<<8|o[c+1],p=c+=2+f,m=0;for(u=0;u<l;u++){var h=o[c++];192&h&&(o[c-1]=63&h);var g=(2&h?1:16&h?0:2)+(4&h?1:32&h?0:2);if(m+=g,8&h){var _=o[c++];u+=_,m+=_*g}}if(m===0)return 0;var v=c+m;return v>o.length?0:!a&&f>0?(r.set(o.subarray(0,d),i),r.set([0,0],i+d),r.set(o.subarray(p,v),i+d+2),v-=f,o.length-v>3&&(v=v+3&-4),v):o.length-v>3?(v=v+3&-4,r.set(o.subarray(0,v),i),v):(r.set(o,i),o.length)}var g=[0,0,0,0,0,0,0,0,-2,-2,-2,-2,0,0,-2,-5,-1,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,-1,-1,-1,-1,1,-1,-999,0,1,0,-1,-2,0,-1,-2,-1,-1,0,-1,-1,0,0,-999,-999,-1,-1,-1,-1,-2,-999,-2,-2,-999,0,-2,-2,0,0,-2,0,-2,0,0,0,-2,-1,-1,1,1,0,0,-1,-1,-1,-1,-1,-1,-1,0,0,-1,0,-1,-1,0,-999,-1,-1,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-999,-999,-999,-999,-999,-1,-1,-2,-2,0,0,0,0,-1,-1,-999,-2,-2,0,0,-1,-2,-2,0,0,0,-1,-1,-1,-2];function _(e,t){for(var n,r=e.data,i=0,a=0,o=0,s=[],c=[],l=[],u=t.tooComplexToFollowFunctions,d=!1,f=0,p=0,m=r.length;i<m;){var h=r[i++];if(h===64)if(n=r[i++],d||p)i+=n;else for(var _=0;_<n;_++)s.push(r[i++]);else if(h===65)if(n=r[i++],d||p)i+=2*n;else for(_=0;_<n;_++){var v=r[i++];s.push(v<<8|r[i++])}else if((248&h)==176)if(n=h-176+1,d||p)i+=n;else for(_=0;_<n;_++)s.push(r[i++]);else if((248&h)==184)if(n=h-184+1,d||p)i+=2*n;else for(_=0;_<n;_++)v=r[i++],s.push(v<<8|r[i++]);else if(h!==43||u)if(h!==44||u){if(h===45)if(d)d=!1,a=i;else{if(!(x=c.pop()))return W(`TT: ENDF bad stack`),void(t.hintsValid=!1);b=l.pop(),r=x.data,i=x.i,t.functionsStackDeltas[b]=s.length-x.stackTop}else if(h===137)(d||p)&&(W(`TT: nested IDEFs not allowed`),u=!0),d=!0,o=i;else if(h===88)++f;else if(h===27)p=f;else if(h===89)p===f&&(p=0),--f;else if(h===28){var y=s[s.length-1];y>0&&(i+=y-1)}}else{(d||p)&&(W(`TT: nested FDEFs not allowed`),u=!0),d=!0,o=i;var b=s.pop();t.functionsDefined[b]={data:r,i}}else if(!d&&!p){var b=s[s.length-1];if(t.functionsUsed[b]=!0,b in t.functionsStackDeltas)s.length+=t.functionsStackDeltas[b];else if(b in t.functionsDefined&&l.indexOf(b)<0){var x;if(c.push({data:r,i,stackTop:s.length-1}),l.push(b),!(x=t.functionsDefined[b]))return W(`TT: CALL non-existent function`),void(t.hintsValid=!1);r=x.data,i=x.i}}if(!d&&!p){var S=h<=142?g[h]:h>=192&&h<=223?-1:h>=224?-2:0;for(h>=113&&h<=117&&(n=s.pop())==n&&(S=2*-n);S<0&&s.length>0;)s.pop(),S++;for(;S>0;)s.push(NaN),S--}}t.tooComplexToFollowFunctions=u;var C=[r];i>r.length&&C.push(new Uint8Array(i-r.length)),o>a&&(W(`TT: complementing a missing function tail`),C.push(new Uint8Array([34,45]))),function(e,t){if(t.length>1){for(var n=0,r=0,i=t.length;r<i;r++)n+=t[r].length;n=n+3&-4;var a=new Uint8Array(n),o=0;for(r=0,i=t.length;r<i;r++)a.set(t[r],o),o+=t[r].length;e.data=a,e.length=n}}(e,C)}for(var v=[`OS/2`,`cmap`,`head`,`hhea`,`hmtx`,`maxp`,`name`,`post`,`loca`,`glyf`,`fpgm`,`prep`,`cvt `,`CFF `],y=function(e){return{version:n(e.getBytes(4)),numTables:r(e.getBytes(2)),searchRange:r(e.getBytes(2)),entrySelector:r(e.getBytes(2)),rangeShift:r(e.getBytes(2))}}(a=new ls(new Uint8Array(a.getBytes()))),b=y.numTables,x={"OS/2":null,cmap:null,head:null,hhea:null,hmtx:null,maxp:null,name:null,post:null},S=0;S<b;S++){var C=s(a);v.indexOf(C.tag)<0||C.length!==0&&(x[C.tag]=C)}var w=!x[`CFF `];if(w)x.glyf&&x.loca||G(`Required "glyf" or "loca" tables are not found`);else{if(!(x.head&&x.hhea&&x.maxp&&x.post)){var T=new ls(x[`CFF `].data),E=new zo(T,o);return this.convert(e,E,o)}delete x.glyf,delete x.loca,delete x.fpgm,delete x.prep,delete x[`cvt `]}x.maxp||G(`Required "maxp" table is not found`),a.pos=(a.start||0)+x.maxp.offset;var D=i(a.getBytes(4)),O=r(a.getBytes(2)),k=0;D>=65536&&x.maxp.length>=22&&(a.pos+=8,r(a.getBytes(2))>2&&(x.maxp.data[14]=0,x.maxp.data[15]=2),a.pos+=4,k=r(a.getBytes(2)));var A=!1;o.type==`CIDFontType2`&&o.toUnicode&&o.toUnicode[0]>`\0`&&(A=!0,O++,x.maxp.data[4]=O>>8,x.maxp.data[5]=255&O);var j=function(e,t,n){var r={functionsDefined:[],functionsUsed:[],functionsStackDeltas:[],tooComplexToFollowFunctions:!1,hintsValid:!0};if(e&&_(e,r),t&&_(t,r),e&&function(e,t){if(!e.tooComplexToFollowFunctions)for(var n=0,r=e.functionsUsed.length;n<r;n++){if(n>t)return W(`TT: invalid function id: `+n),void(e.hintsValid=!1);if(e.functionsUsed[n]&&!e.functionsDefined[n])return W(`TT: undefined function: `+n),void(e.hintsValid=!1)}}(r,k),n&&1&n.length){var i=new Uint8Array(n.length+1);i.set(n.data),n.data=i}return r.hintsValid}(x.fpgm,x.prep,x[`cvt `]);j||(delete x.fpgm,delete x.prep,delete x[`cvt `]);var M=Object.keys(x);M.sort();var N={file:``,virtualOffset:16*(b=M.length)};if(l(y.version,N,b),function(e,n,i,a){if(n){e.pos=(e.start?e.start:0)+n.offset,e.pos+=n.length-2;var o=r(e.getBytes(2));o>a&&(U(`The numOfMetrics (`+o+`) should not be greater than the numGlyphs (`+a+`)`),o=a,n.data[34]=(65280&o)>>8,n.data[35]=255&o);var s=a-o-(i.length-4*o>>1);if(s>0){e.pos=(e.start?e.start:0)+i.offset;for(var c=``,l=0,u=i.length;l<u;l++)c+=String.fromCharCode(e.getByte());for(l=0;l<s;l++)c+=`\0\0`;i.data=t(c)}}else i&&(i.data=null)}(a,x.hhea,x.hmtx,O),x.head||G(`Required "head" table is not found`),function(e,t,n){var a=e.data,o=i([a[0],a[1],a[2],a[3]]);o>>16!=1&&(U(`Attempting to fix invalid version in head table: `+o),a[0]=0,a[1]=1,a[2]=0,a[3]=0);var s=r([a[50],a[51]]);if(s<0||s>1){U(`Attempting to fix invalid indexToLocFormat in head table: `+s);var c=t+1;n===c<<1?(a[50]=0,a[51]=0):n===c<<2?(a[50]=0,a[51]=1):W(`Could not fix indexToLocFormat: `+s)}}(x.head,O,w?x.loca.length:0),w){var P=r([x.head.data[50],x.head.data[51]]);(function(e,t,n,r,i,a){var o,s,l;r?(o=4,s=function(e,t){return e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3]},l=function(e,t,n){e[t]=n>>>24&255,e[t+1]=n>>16&255,e[t+2]=n>>8&255,e[t+3]=255&n}):(o=2,s=function(e,t){return e[t]<<9|e[t+1]<<1},l=function(e,t,n){e[t]=n>>9&255,e[t+1]=n>>1&255});var u=e.data,d=o*(1+n);u.length!==d&&((u=new Uint8Array(d)).set(e.data.subarray(0,d)),e.data=u);var f=t.data,p=f.length,m=new Uint8Array(p),h=s(u,0),g=0;l(u,0,g);for(var _=0,v=o;_<n;_++,v+=o){var y=s(u,v);y>p?(l(u,v,g),h=y):(l(u,v,g+=c(f,h,y,m,g,i)),h=y)}if(g!==0)if(a){var b=s(u,o);m.length>b+g?t.data=m.subarray(0,b+g):(t.data=new Uint8Array(b+g),t.data.set(m.subarray(0,g))),t.data.set(m.subarray(0,b),g),l(e.data,u.length-o,g+b)}else t.data=m.subarray(0,g);else{var x=new Uint8Array([0,1,0,0,0,0,0,0,0,0,0,0,0,0,49,0]);for(_=0,v=o;_<n;_++,v+=o)l(u,v,x.length);t.data=x}})(x.loca,x.glyf,O,P,j,A)}if(x.hhea||G(`Required "hhea" table is not found`),x.hhea.data[10]===0&&x.hhea.data[11]===0&&(x.hhea.data[10]=255,x.hhea.data[11]=255),x.post&&((function(e,t,n){var o=(a.start?a.start:0)+e.offset;a.pos=o;var s,c=o+e.length,l=i(a.getBytes(4));a.getBytes(28);var u=!0;switch(l){case 65536:s=Do;break;case 131072:var d=r(a.getBytes(2));if(d!=n){u=!1;break}for(var f=[],p=0;p<d;++p){var m=r(a.getBytes(2));if(m>=32768){u=!1;break}f.push(m)}if(!u)break;for(var h=[];a.pos<c;){var g=a.getByte(),_=``;for(p=0;p<g;++p)_+=String.fromCharCode(a.getByte());h.push(_)}for(s=[],p=0;p<d;++p){var v=f[p];v<258?s.push(Do[v]):s.push(h[v-258])}break;case 196608:break;default:W(`Unknown/unsupported post table version `+l),u=!1}return t.glyphNames=s,u})(x.post,o,O)||(x.post=null)),o.type==`CIDFontType2`){x.cmap||={tag:`cmap`,data:null};var F=o.cidToGidMap||[],ee=[0];if(F.length>0){for(var I=F.length-1;I>=0;I--){var L=F[I];L&&(ee[L]=I)}var R=F.length;for(S=1;S<O;S++)ee[S]||(ee[S]=R++)}else{for(S=1;S<O;S++)ee[S]=S;A&&(ee[O-1]=0)}pe=[],me=[];var te=[],ne=[],re=this.cidToFontChar||this.toFontChar;for(S=1;S<O;S++)!(se=re[oe=ee[S]])||typeof se!=`number`||ko(se)||se in te?ne.push(S):(te[se]=!0,pe.push({unicode:se,code:oe}),me.push(S));if(!this.cidToFontChar)for(var ie=uo,ae=(I=0,ne.length);I<ae;I++){for(var oe=ee[S=ne[I]];ie in te;)ie++;if(ie>=63744)break;var se=ie++;this.toFontChar[oe]=se,te[se]=!0,pe.push({unicode:se,code:oe}),me.push(S)}}else{this.useToFontChar=!0;var ce=function(e,t,n,a){var o=(t.start?t.start:0)+e.offset;t.pos=o,r(t.getBytes(2));for(var s,c,l=r(t.getBytes(2)),u=0;u<l;u++){var d=r(t.getBytes(2)),f=r(t.getBytes(2)),p=i(t.getBytes(4)),m=!1,h=!1;if(a&&d===3&&f===0?(m=!0,h=!0,c=!0):n&&d===3&&f===1?(m=!0,h=!0,c=!0,a=!1):d!==1||f!==0||c?s||(m=!0):(m=!0,c=!0),m&&(s={platformId:d,encodingId:f,offset:p,isSymbolicFont:a}),h)break}if(s){c||(W(`Did not find a cmap of suitable format. Interpreting (`+s.platformId+`, `+s.encodingId+`) as (3, 1) table`),s.platformId=3,s.encodingId=1),t.pos=o+s.offset;var g=r(t.getBytes(2)),_=(r(t.getBytes(2)),r(t.getBytes(2)),!1),v=[];if(g===0){for(var y=0;y<256;y++){var b=t.getByte();b&&v.push({charcode:y,glyphId:b})}_=!0}else if(g===4){var x=r(t.getBytes(2))>>1;t.getBytes(6);var S,C=[];for(S=0;S<x;S++)C.push({end:r(t.getBytes(2))});for(t.getBytes(2),S=0;S<x;S++)C[S].start=r(t.getBytes(2));for(S=0;S<x;S++)C[S].delta=r(t.getBytes(2));var w=0;for(S=0;S<x;S++){var T=C[S],E=r(t.getBytes(2));if(E){var D=(E>>1)-(x-S);T.offsetIndex=D,w=Math.max(w,D+T.end-T.start+1)}else T.offsetIndex=-1}var O=[];for(y=0;y<w;y++)O.push(r(t.getBytes(2)));for(S=0;S<x;S++){o=(T=C[S]).start;var k=T.end,A=T.delta;for(D=T.offsetIndex,y=o;y<=k;y++)y!=65535&&(N=(N=D<0?y:O[D+y-o])+A&65535)!=0&&v.push({charcode:y,glyphId:N})}}else if(g==6){var j=r(t.getBytes(2)),M=r(t.getBytes(2));for(y=0;y<M;y++){var N=r(t.getBytes(2)),P=j+y;v.push({charcode:P,glyphId:N})}}else G(`cmap table has unsupported format: `+g);for(v.sort(function(e,t){return e.charcode-t.charcode}),u=1;u<v.length;u++)v[u-1].charcode===v[u].charcode&&(v.splice(u,1),u--);return{platformId:s.platformId,encodingId:s.encodingId,isSymbolicFont:s.isSymbolicFont,mappings:v,hasShortCmap:_}}G(`Could not find a cmap table`)}(x.cmap,a,this.hasEncoding,this.isSymbolicFont);this.isSymbolicFont=ce.isSymbolicFont;var le=ce.platformId,ue=ce.encodingId,de=ce.mappings,fe=de.length,pe=[],me=[];for(S=0;S<fe;++S){var he=de[S];(se=h(Se=he.charcode,this.isSymbolicFont,le,ue))&&(pe.push({code:Se,unicode:se}),me.push(he.glyphId))}var ge=ce.hasShortCmap;if(re=this.toFontChar,ge&&me.length==O){S=0;for(var _e=me.length;S<_e;S++)me[S]=S}var ve=[];if(this.isSymbolicFont)for(S=0,_e=pe.length;S<_e;S++){var ye=pe[S];ve[255&ye.code]=ye.unicode}else for(var be=o.baseEncoding,xe=o.differences,Se=(ce.glyphCodeMapping,0);Se<be.length;++Se)if(be.hasOwnProperty(Se)){var Ce=be[Se];Se in xe&&(Ce=xe[Se]),Ce||=mo.StandardEncoding[Se],se=ts[Ce||=`.notdef`],ve[Se]=se}this.toFontChar=re=ve,function(e,t,n){var r=n.glyphNames;if(r){for(var i=e.length,a={},o=[],s=0;s<i;++s){var c=r[t[s]];c&&(a[c]=e[s].unicode,o[e[s].code]=c)}n.glyphNameMap=a,n.overridableEncoding&&(n.baseEncoding=o)}else n.glyphNameMap={}}(pe,me,o),this.glyphNameMap=o.glyphNameMap}pe.length===0&&(pe.push({unicode:61440,code:61440,glyph:`.notdef`}),me.push(0)),x.cmap.data=d(pe,me);var we=[];for(S=0,_e=pe.length;S<_e;S++)we[pe[S].unicode]=!0;if(this.unicodeIsEnabled=we,!x[`OS/2`]||!function(e){var t=new ls(e.data),n=r(t.getBytes(2));t.getBytes(60);var i=r(t.getBytes(2));return!(n<4&&768&i||r(t.getBytes(2))>r(t.getBytes(2))||(t.getBytes(6),r(t.getBytes(2))===0||(e.data[8]=e.data[9]=0,0)))}(x[`OS/2`])){var Te={unitsPerEm:r([x.head.data[18],x.head.data[19]]),yMax:r([x.head.data[42],x.head.data[43]]),yMin:r([x.head.data[38],x.head.data[39]])-65536,ascent:r([x.hhea.data[4],x.hhea.data[5]]),descent:r([x.hhea.data[6],x.hhea.data[7]])-65536};x[`OS/2`]={tag:`OS/2`,data:t(f(o,pe,Te))}}if(x.post||={tag:`post`,data:t(p(o))},!w)try{T=new ls(x[`CFF `].data),E=new Bo(T,o).parse();var Ee=new $o(E);x[`CFF `].data=Ee.compile()}catch{W(`Failed to compile font `+o.loadedName)}if(x.name){var De=function(e){var t=(a.start?a.start:0)+e.offset;a.pos=t;var n=[[],[]],i=e.length,o=t+i;if(r(a.getBytes(2))!==0||i<6)return n;for(var s=r(a.getBytes(2)),c=r(a.getBytes(2)),l=[],u=0;u<s&&a.pos+12<=o;u++){var d={platform:r(a.getBytes(2)),encoding:r(a.getBytes(2)),language:r(a.getBytes(2)),name:r(a.getBytes(2)),length:r(a.getBytes(2)),offset:r(a.getBytes(2))};(d.platform==1&&d.encoding===0&&d.language===0||d.platform==3&&d.encoding==1&&d.language==1033)&&l.push(d)}u=0;for(var f=l.length;u<f;u++){var p=l[u],m=t+c+p.offset;if(!(m+p.length>o)){a.pos=m;var h=p.name;if(p.encoding,p.encoding){for(var g=``,_=0,v=p.length;_<v;_+=2)g+=String.fromCharCode(r(a.getBytes(2)));n[1][h]=g}else n[0][h]=Ui(a.getBytes(p.length))}}return n}(x.name);x.name.data=t(m(e,De))}else x.name={tag:`name`,data:t(m(this.name))};for(S=0;S<b;S++){var Oe=[];for(I=0,ae=(ke=(C=x[M[S]]).data).length;I<ae;I++)Oe.push(ke[I]);u(N,C.tag,Oe)}for(S=0;S<b;S++){var ke=(C=x[M[S]]).data;for(N.file+=n(ke);3&N.file.length;)N.file+=`\0`}return t(N.file)},convert:function(e,r,i){var a={file:``,virtualOffset:144};l(`OTTO`,a,9);var c=r.charstrings;i.fixedPitch=function(e){for(var t=0,n=e.length-1;t<n;t++)if(e[t]!=e[t+1])return!1;return!0}(c);for(var h={},g=0;g<c.length;++g)h[(y=c[g]).glyph]=y.unicode;if(this.glyphNameMap=h,r.seacs,i.overridableEncoding&&(i.subtype==`Type1C`||i.subtype==`CIDFontType0C`)){var _=[];for(g=0;g<c.length;++g)_[(y=c[g]).code]=y.glyph;i.baseEncoding=_}if(i.subtype==`CIDFontType0C`){var v=[];for(g=0;g<c.length;++g){var y;v[(y=c[g]).code]=y.unicode}this.toFontChar=v}var b=1/(i.fontMatrix||yi)[0],x={"CFF ":r.data,"OS/2":t(f(i,c)),cmap:d(c.slice(),`glyphIds`in r?r.glyphIds:null),head:t(`\0\0\0\0\0\0\0\0\0\0_<õ\0\0`+s(b)+`\0\0\0\0\v~'\0\0\0\0\v~'\0\0`+s(i.descent)+`ÿ`+s(i.ascent)+o(i.italicAngle?2:0)+`\0\0\0\0\0\0\0`),hhea:t(`\0\0\0`+s(i.ascent)+s(i.descent)+`\0\0ÿÿ\0\0\0\0\0\0`+s(i.capHeight)+s(Math.tan(i.italicAngle)*i.xHeight)+`\0\0\0\0\0\0\0\0\0\0\0\0`+o(c.length+1)),hmtx:function(){for(var e=`\0\0\0\0`,n=0,r=c.length;n<r;n++){var i=c[n];e+=o(`width`in i?i.width:0)+o(0)}return t(e)}(),maxp:t(`\0\0P\0`+o(c.length+1)),name:t(m(e)),post:t(p(i))};for(var S in x)u(a,S,x[S]);for(var S in x){var C=x[S];a.file+=n(C)}return t(a.file)},buildToFontChar:function(e){for(var t=[],n=uo,r=0,i=e.length;r<i;r++){var a=e[r],o=typeof a==`object`?n++:a;a!==void 0&&(Qi(o)&&o.length===1&&(o=o.charCodeAt(0)),t[r]=o)}return t},rebuildToUnicode:function(e){var t=e.firstChar,n=e.lastChar,r=[],i=this.toUnicode||this.cidToUnicode;if(i)for(var a=i.length===0,o=t,s=n;o<=s;o++)r[o]=a?String.fromCharCode(o):i[o];else for(o=t,s=n;o<=s;o++){var c=e.differences[o];c||=e.baseEncoding[o],c&&c in ts&&(r[o]=String.fromCharCode(ts[c]))}this.toUnicode=r},loadCidToUnicode:function(e){if(e.cidSystemInfo){var t=[],n=[];this.cidToUnicode=t,this.unicodeToCID=n;var r=e.cidEncoding;if(e.toUnicode)r&&r.indexOf(`Identity-`)!==0&&Oi(`Need to create a reverse mapping from 'ToUnicode' CMap`);else{var i,a=e.cidSystemInfo;if(a&&(i=Bs[a.registry+`-`+a.ordering]),i){var o,s,c,l,u=bo[r],d=1;for(o=0,l=i.length;o<l;++o){var f=i[o];if(na(f)){var p=f.length;for(s=0;s<p;s++)t[d]=c=f[s],n[c]&&!u||(n[c]=d);d++}else if(typeof f==`object`){var m=f.f;if(m)for(c=f.c,s=0;s<m;++s)t[d]=c,n[c]&&!u||(n[c]=d),d++,c++;else d+=f.s}else f?(t[d]=f,n[f]&&!u||(n[f]=d),d++):d++}r&&(r.indexOf(`Identity-`)===0?this.unicodeToCID=[]:(this.cidToUnicode=[],e.type==`CIDFontType2`&&(this.cidToFontChar=t)))}}}},get spaceWidth(){if(`_shadowWidth`in this)return this._shadowWidth;for(var e,t=[`space`,`minus`,`one`,`i`],n=0,r=t.length;n<r;n++){var i=t[n];if(i in this.widths){e=this.widths[i];break}var a=ts[i],o=0;if(this.composite&&(o=this.unicodeToCID[a]),!o&&`toUnicode`in this&&(o=this.toUnicode.indexOf(a)),o<=0&&(o=a),e=this.widths[o])break}return e||=this.defaultWidth,this._shadowWidth=e,e},charToGlyph:function(e){var t,n,r,i=this.widths[e],a=this.vmetrics&&this.vmetrics[e];switch(this.type){case`CIDFontType0`:var o=this.unicodeToCID[e]||e;if(this.unicodeToCID.length>0&&(i=this.widths[o],a=this.vmetrics&&this.vmetrics[o]),this.noUnicodeAdaptation){t=this.toFontChar[e]||e;break}t=this.toFontChar[o]||o;break;case`CIDFontType2`:if(this.unicodeToCID.length>0){o=this.unicodeToCID[e]||e,i=this.widths[o],a=this.vmetrics&&this.vmetrics[o],t=e;break}t=this.toFontChar[e]||e;break;case`MMType1`:case`Type1`:var s=this.differences[e]||this.encoding[e];if(Zi(i)||(i=this.widths[s]),this.noUnicodeAdaptation){t=function(e){switch(e){case 63721:case 63193:return 169;default:return e}}(ts[s]||e);break}t=this.glyphNameMap[s]||ts[s]||e;break;case`Type3`:if(s=this.differences[e]||this.encoding[e],n=this.charProcOperatorList[s],s){if((t=ts[s]||e)===e&&typeof s==`string`){if(s.startsWith(`uni`)){let e=s.substring(3);/^[0-9A-F]{4,6}$/i.test(e)&&(t=parseInt(e,16))}let e={bullet:8226,checkbox:9744,checkmark:10003,circle:9675,square:9633,triangle:9650,triangledown:9660,triangleleft:9664,triangleright:9654,star:9733};e[s.toLowerCase()]&&(t=e[s.toLowerCase()])}}else t=e;break;case`TrueType`:if(this.useToFontChar){t=this.toFontChar[e]||e;break}if((s=this.differences[e]||this.encoding[e])||(s=mo.StandardEncoding[e]),Zi(i)||(i=this.widths[s]),this.noUnicodeAdaptation){t=ts[s]||e;break}if(!this.hasEncoding||this.isSymbolicFont){t=this.useToFontChar?this.toFontChar[e]:e;break}t=s in this.glyphNameMap?this.glyphNameMap[s]:ts[s];break;default:W(`Unsupported font type: `+this.type)}var c=`toUnicode`in this&&this.toUnicode[e]||e;typeof c==`number`&&(c=String.fromCharCode(c)),i=Zi(i)?i:this.defaultWidth,r=!!this.unicodeIsEnabled&&!this.unicodeIsEnabled[t];var l=null;if(this.seacMap&&this.seacMap[t]){var u=this.seacMap[t];t=u.baseUnicode,l={fontChar:String.fromCharCode(u.accentUnicode),offset:u.accentOffset}}return{fontChar:String.fromCharCode(t),unicode:c,accent:l,width:i,vmetric:a,disabled:r,operatorList:n}},charsToGlyphs:function(e){var t,n=this.charsCache;if(n&&(t=n[e]))return t;n||=this.charsCache=Object.create(null),t=[];var r,i=e,a=this.cidEncoding;if(a&&((r=yo[a])?e=r(e):a.indexOf(`Uni`)!==0&&a.indexOf(`Identity-`)!==0&&W(`Unsupported CMap: `+a)),!r&&this.cmap)for(var o=0;o<e.length;){var s=this.cmap.readCharCode(e,o),c=s[0],l=s[1];o+=l;var u=this.charToGlyph(c);t.push(u),l===1&&e.charCodeAt(o-1)===32&&t.push(null)}else{o=0;for(var d=e.length;o<d;++o)c=e.charCodeAt(o),u=this.charToGlyph(c),t.push(u),c==32&&t.push(null)}return n[i]=t}},e}(),Po=function(){function e(e){this.error=e}return e.prototype={charsToGlyphs:function(){return[]},exportData:function(){return{error:this.error}}},e}(),Fo=function(){var e=[4],t=[5],n=[6],r=[7],i=[8],a=[12,35],o=[14],s=[21],c=[22],l=[30],u=[31];function d(){this.width=0,this.lsb=0,this.flexing=!1,this.output=[],this.stack=[]}return d.prototype={convert:function(d,f){for(var p=d.length,m=!1,h=0;h<p;h++){var g=d[h];if(g<32){switch(g===12&&(g=(g<<8)+d[++h]),g){case 1:case 3:case 9:case 3072:case 3073:case 3074:case 3105:this.stack=[];break;case 4:if(this.flexing){if(this.stack.length<1){m=!0;break}var _=this.stack.pop();this.stack.push(0,_);break}m=this.executeCommand(1,e);break;case 5:m=this.executeCommand(2,t);break;case 6:m=this.executeCommand(1,n);break;case 7:m=this.executeCommand(1,r);break;case 8:m=this.executeCommand(6,i);break;case 10:if(this.stack.length<1){m=!0;break}var v=this.stack.pop();m=this.convert(f[v],f);break;case 11:return m;case 13:if(this.stack.length<2){m=!0;break}var y=this.stack.pop(),b=this.stack.pop();this.lsb=b,this.width=y,this.stack.push(b),m=this.executeCommand(1,c);break;case 14:this.output.push(o[0]);break;case 21:if(this.flexing)break;m=this.executeCommand(2,s);break;case 22:if(this.flexing){this.stack.push(0);break}m=this.executeCommand(1,c);break;case 30:m=this.executeCommand(4,l);break;case 31:m=this.executeCommand(4,u);break;case 3078:m=this.executeCommand(4,o);break;case 3079:if(this.stack.length<4){m=!0;break}this.stack.pop(),y=this.stack.pop();var x=this.stack.pop();b=this.stack.pop(),this.lsb=b,this.width=y,this.stack.push(b,x),m=this.executeCommand(2,s);break;case 3084:if(this.stack.length<2){m=!0;break}var S=this.stack.pop(),C=this.stack.pop();this.stack.push(C/S);break;case 3088:if(this.stack.length<2){m=!0;break}v=this.stack.pop();var w=this.stack.pop();if(v===0&&w===3){var T=this.stack.splice(this.stack.length-17,17);this.stack.push(T[2]+T[0],T[3]+T[1],T[4],T[5],T[6],T[7],T[8],T[9],T[10],T[11],T[12],T[13],T[14]),m=this.executeCommand(13,a,!0),this.flexing=!1,this.stack.push(T[15],T[16])}else v===1&&w===0&&(this.flexing=!0);break;case 3089:break;default:W(`Unknown type 1 charstring command of "`+g+`"`)}if(m)break}else g<=246?g-=139:g=g<=250?256*(g-247)+d[++h]+108:g<=254?-256*(g-251)-d[++h]-108:(255&d[++h])<<24|(255&d[++h])<<16|(255&d[++h])<<8|255&d[++h],this.stack.push(g)}return m},executeCommand:function(e,t,n){var r=this.stack.length;if(e>r)return!0;for(var i=r-e,a=i;a<r;a++){var o=this.stack[a];o===(0|o)?this.output.push(28,o>>8&255,255&o):(o=65536*o|0,this.output.push(255,o>>24&255,o>>16&255,o>>8&255,255&o))}return this.output.push.apply(this.output,t),n?this.stack.splice(i,e):this.stack=[],!1}},d}(),Io=function(){function e(e,t,n){for(var r=t,i=[],a=``,o=e.length,s=0;s<o;s++)a=e[s],i[s]=a^r>>8,r=52845*(a+r)+22719&65535;return i.slice(n)}function t(e){return e===47||e===91||e===93||e===123||e===125||e===40||e===41}function n(t,n){n&&(t=new ls(e(t.getBytes(),55665,4))),this.stream=t,this.nextChar()}return n.prototype={readNumberArray:function(){this.getToken();for(var e=[];;){var t=this.getToken();if(t===null||t===`]`||t===`}`)break;e.push(parseFloat(t||0))}return e},readNumber:function(){var e=this.getToken();return parseFloat(e||0)},readInt:function(){var e=this.getToken();return 0|parseInt(e||0,10)},readBoolean:function(){return this.getToken()===`true`?1:0},nextChar:function(){return this.currentChar=this.stream.getByte()},getToken:function(){for(var e=!1,n=this.currentChar;;){if(n===-1)return null;if(e)n!==10&&n!==13||(e=!1);else if(n===37)e=!0;else if(!ss.isSpace(n))break;n=this.nextChar()}if(t(n))return this.nextChar(),String.fromCharCode(n);var r=``;do r+=String.fromCharCode(n),n=this.nextChar();while(n>=0&&!ss.isSpace(n)&&!t(n));return r},extractFontProgram:function(){for(var t,n=this.stream,r=[],i=[],a={subrs:[],charstrings:[],properties:{privateData:{lenIV:4}}};(t=this.getToken())!==null;)if(t===`/`)switch(t=this.getToken()){case`CharStrings`:for(this.getToken(),this.getToken(),this.getToken(),this.getToken();(t=this.getToken())!==null&&t!==`end`;)if(t===`/`){var o=this.getToken(),s=this.readInt();this.getToken();var c=n.makeSubStream(n.pos,s),l=a.properties.privateData.lenIV,u=e(c.getBytes(),4330,l);n.skip(s),this.nextChar(),(t=this.getToken())===`noaccess`&&this.getToken(),i.push({glyph:o,encoded:u})}break;case`Subrs`:for(this.readInt(),this.getToken();(t=this.getToken())===`dup`;){var d=this.readInt();s=this.readInt(),this.getToken(),c=n.makeSubStream(n.pos,s),l=a.properties.privateData.lenIV,u=e(c.getBytes(),4330,l),n.skip(s),this.nextChar(),(t=this.getToken())===`noaccess`&&this.getToken(),r[d]=u}break;case`BlueValues`:case`OtherBlues`:case`FamilyBlues`:case`FamilyOtherBlues`:var f=this.readNumberArray();f.length>0&&f.length;break;case`StemSnapH`:case`StemSnapV`:a.properties.privateData[t]=this.readNumberArray();break;case`StdHW`:case`StdVW`:a.properties.privateData[t]=this.readNumberArray()[0];break;case`BlueShift`:case`lenIV`:case`BlueFuzz`:case`BlueScale`:case`LanguageGroup`:case`ExpansionFactor`:a.properties.privateData[t]=this.readNumber();break;case`ForceBold`:a.properties.privateData[t]=this.readBoolean()}for(var p=0;p<i.length;p++){o=i[p].glyph,u=i[p].encoded;var m=new Fo,h=m.convert(u,r),g=m.output;h&&(g=[14]),a.charstrings.push({glyph:o,data:g,seac:m.seac,lsb:m.lsb,width:m.width})}return a},extractFontHeader:function(e){for(;(a=this.getToken())!==null;)if(a===`/`)switch(a=this.getToken()){case`FontMatrix`:e.fontMatrix=this.readNumberArray();break;case`Encoding`:var t,n=this.getToken();if(/^\d+$/.test(n)){t=[];var r=0|parseInt(n,10);this.getToken();for(var i=0;i<r;i++){for(var a=this.getToken();a!==`dup`&&a!==`def`;)if((a=this.getToken())===null)return;if(a===`def`)break;var o=this.readInt();this.getToken();var s=this.getToken();t[o]=s,this.getToken()}}else t=mo[n];if(e.overridableEncoding&&t){e.baseEncoding=t;break}break;case`FontBBox`:var c=this.readNumberArray();e.ascent=c[3],e.descent=c[1],e.ascentScaled=!0}}},n}(),Lo=`.notdef,space,exclam,quotedbl,numbersign,dollar,percent,ampersand,quoteright,parenleft,parenright,asterisk,plus,comma,hyphen,period,slash,zero,one,two,three,four,five,six,seven,eight,nine,colon,semicolon,less,equal,greater,question,at,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,bracketleft,backslash,bracketright,asciicircum,underscore,quoteleft,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,braceleft,bar,braceright,asciitilde,exclamdown,cent,sterling,fraction,yen,florin,section,currency,quotesingle,quotedblleft,guillemotleft,guilsinglleft,guilsinglright,fi,fl,endash,dagger,daggerdbl,periodcentered,paragraph,bullet,quotesinglbase,quotedblbase,quotedblright,guillemotright,ellipsis,perthousand,questiondown,grave,acute,circumflex,tilde,macron,breve,dotaccent,dieresis,ring,cedilla,hungarumlaut,ogonek,caron,emdash,AE,ordfeminine,Lslash,Oslash,OE,ordmasculine,ae,dotlessi,lslash,oslash,oe,germandbls,onesuperior,logicalnot,mu,trademark,Eth,onehalf,plusminus,Thorn,onequarter,divide,brokenbar,degree,thorn,threequarters,twosuperior,registered,minus,eth,multiply,threesuperior,copyright,Aacute,Acircumflex,Adieresis,Agrave,Aring,Atilde,Ccedilla,Eacute,Ecircumflex,Edieresis,Egrave,Iacute,Icircumflex,Idieresis,Igrave,Ntilde,Oacute,Ocircumflex,Odieresis,Ograve,Otilde,Scaron,Uacute,Ucircumflex,Udieresis,Ugrave,Yacute,Ydieresis,Zcaron,aacute,acircumflex,adieresis,agrave,aring,atilde,ccedilla,eacute,ecircumflex,edieresis,egrave,iacute,icircumflex,idieresis,igrave,ntilde,oacute,ocircumflex,odieresis,ograve,otilde,scaron,uacute,ucircumflex,udieresis,ugrave,yacute,ydieresis,zcaron,exclamsmall,Hungarumlautsmall,dollaroldstyle,dollarsuperior,ampersandsmall,Acutesmall,parenleftsuperior,parenrightsuperior,266 ff,onedotenleader,zerooldstyle,oneoldstyle,twooldstyle,threeoldstyle,fouroldstyle,fiveoldstyle,sixoldstyle,sevenoldstyle,eightoldstyle,nineoldstyle,commasuperior,threequartersemdash,periodsuperior,questionsmall,asuperior,bsuperior,centsuperior,dsuperior,esuperior,isuperior,lsuperior,msuperior,nsuperior,osuperior,rsuperior,ssuperior,tsuperior,ff,ffi,ffl,parenleftinferior,parenrightinferior,Circumflexsmall,hyphensuperior,Gravesmall,Asmall,Bsmall,Csmall,Dsmall,Esmall,Fsmall,Gsmall,Hsmall,Ismall,Jsmall,Ksmall,Lsmall,Msmall,Nsmall,Osmall,Psmall,Qsmall,Rsmall,Ssmall,Tsmall,Usmall,Vsmall,Wsmall,Xsmall,Ysmall,Zsmall,colonmonetary,onefitted,rupiah,Tildesmall,exclamdownsmall,centoldstyle,Lslashsmall,Scaronsmall,Zcaronsmall,Dieresissmall,Brevesmall,Caronsmall,Dotaccentsmall,Macronsmall,figuredash,hypheninferior,Ogoneksmall,Ringsmall,Cedillasmall,questiondownsmall,oneeighth,threeeighths,fiveeighths,seveneighths,onethird,twothirds,zerosuperior,foursuperior,fivesuperior,sixsuperior,sevensuperior,eightsuperior,ninesuperior,zeroinferior,oneinferior,twoinferior,threeinferior,fourinferior,fiveinferior,sixinferior,seveninferior,eightinferior,nineinferior,centinferior,dollarinferior,periodinferior,commainferior,Agravesmall,Aacutesmall,Acircumflexsmall,Atildesmall,Adieresissmall,Aringsmall,AEsmall,Ccedillasmall,Egravesmall,Eacutesmall,Ecircumflexsmall,Edieresissmall,Igravesmall,Iacutesmall,Icircumflexsmall,Idieresissmall,Ethsmall,Ntildesmall,Ogravesmall,Oacutesmall,Ocircumflexsmall,Otildesmall,Odieresissmall,OEsmall,Oslashsmall,Ugravesmall,Uacutesmall,Ucircumflexsmall,Udieresissmall,Yacutesmall,Thornsmall,Ydieresissmall,001.000,001.001,001.002,001.003,Black,Bold,Book,Light,Medium,Regular,Roman,Semibold`.split(`,`),Ro=function(e,t,n){var r=n.length1,i=n.length2,a=t.peekBytes(6),o=a[0]==128&&a[1]==1;o&&(t.skip(6),r=a[5]<<24|a[4]<<16|a[3]<<8|a[2]),new Io(new ls(t.getBytes(r))).extractFontHeader(n),o&&(i=(a=t.getBytes(6))[5]<<24|a[4]<<16|a[3]<<8|a[2]);var s=new Io(new ls(t.getBytes(i)),!0).extractFontProgram();for(var c in s.properties)n[c]=s.properties[c];var l=this.getOrderedCharStrings(s.charstrings,n),u=this.getType2Charstrings(l),d=this.getType2Subrs(s.subrs);this.charstrings=l,this.data=this.wrap(e,u,this.charstrings,d,n),this.seacs=this.getSeacs(s.charstrings)};Ro.prototype={getOrderedCharStrings:function(e,t){var n,r,i=[],a=[],o=uo;for(n=0,r=e.length;n<r;n++){for(var s,c=e[n],l=((s=c.glyph)in ts)?ts[s]:o++;a[l];)l=o++;a[l]=!0,i.push({glyph:s,unicode:l,gid:n,charstring:c.data,width:c.width,lsb:c.lsb})}return i.sort(function(e,t){return e.unicode-t.unicode}),i},getSeacs:function(e){var t,n,r=[];for(t=0,n=e.length;t<n;t++){var i=e[t];i.seac&&(r[t]=i.seac)}return r},getType2Charstrings:function(e){for(var t=[],n=0,r=e.length;n<r;n++)t.push(e[n].charstring);return t},getType2Subrs:function(e){var t=0,n=e.length;t=n<1133?107:n<33769?1131:32768;for(var r=[],i=0;i<t;i++)r.push([11]);for(i=0;i<n;i++)r.push(e[i]);return r},wrap:function(e,t,n,r,i){var a=new Vo;a.header=new Ho(1,0,4,4),a.names=[e];var o=new Ko;o.setByName(`version`,391),o.setByName(`Notice`,392),o.setByName(`FullName`,393),o.setByName(`FamilyName`,394),o.setByName(`Weight`,395),o.setByName(`Encoding`,null),o.setByName(`FontMatrix`,i.fontMatrix),o.setByName(`FontBBox`,i.bbox),o.setByName(`charset`,null),o.setByName(`CharStrings`,null),o.setByName(`Private`,null),a.topDict=o;var s=new Uo;s.add(`Version 0.11`),s.add(`See original notice`),s.add(e),s.add(e),s.add(`Medium`),a.strings=s,a.globalSubrIndex=new Wo;for(var c=t.length,l=[0],u=0;u<c;u++){var d=Lo.indexOf(n[u].glyph);d==-1&&(d=0),l.push(d>>8&255,255&d)}a.charset=new Yo(!1,0,[],l);var f=new Wo;for(f.add([139,14]),u=0;u<c;u++)f.add(t[u]);a.charStrings=f;var p=new qo;p.setByName(`Subrs`,null);for(var m=[`BlueValues`,`OtherBlues`,`FamilyBlues`,`FamilyOtherBlues`,`StemSnapH`,`StemSnapV`,`BlueShift`,`BlueFuzz`,`BlueScale`,`LanguageGroup`,`ExpansionFactor`,`ForceBold`,`StdHW`,`StdVW`],h=(u=0,m.length);u<h;u++){var g=m[u];if(i.privateData.hasOwnProperty(g)){var _=i.privateData[g];if(na(_))for(var v=_.length-1;v>0;v--)_[v]-=_[v-1];p.setByName(g,_)}}a.topDict.privateDict=p;var y=new Wo;for(u=0,h=r.length;u<h;u++)y.add(r[u]);return p.subrsIndex=y,new $o(a).compile()}};var zo=function(){function e(e,t){this.properties=t,this.cff=new Bo(e,t).parse();var n=new $o(this.cff);this.readExtra();try{this.data=n.compile()}catch{W(`Failed to compile font `+t.loadedName),this.data=e}}return e.prototype={readExtra:function(){for(var e=this.getCharStrings(),t=[],n=0,r=e.length;n<r;n++)t.push(e[n].gid);this.charstrings=e,this.glyphIds=t,this.seacs=this.cff.seacs},getCharStrings:function(){var e=this.cff,t=e.charset.charset,n=e.encoding?e.encoding.encoding:null,r=[],i=[],a=[],o=[],s=0;if(t[0]===`.notdef`&&(s=1),this.properties.subtype===`CIDFontType0C`)if(this.cff.isCIDFont)o=t;else{o=[];for(var c=0,l=e.charStrings.count;c<l;c++)o.push(c);t=o}else for(var u in n){var d=n[u];if(d in o){var f=o[d];na(f)||(o[d]=[f]),o[d].push(0|u)}else o[d]=0|u}for(c=s,l=t.length;c<l;c++){var p=t[c],m=o[c];na(m)||(m=[m]);for(var h=0;h<m.length;h++){var g=m[h];g&&!ko(g)?(r.push({unicode:g,code:g,gid:c,glyph:p}),i[g]=!0):a.push(c,g)}}for(var _=uo,v=(h=0,a.length);h<v;h+=2){for(c=a[h];_ in i;)_++;var y=_++;r.push({unicode:y,code:a[h+1]||0,gid:c,glyph:t[c]})}return r.sort(function(e,t){return e.unicode-t.unicode}),r}},e}(),Bo=function(){var e=[null,{id:`hstem`,min:2,resetStack:!0,stem:!0},null,{id:`vstem`,min:2,resetStack:!0,stem:!0},{id:`vmoveto`,min:1,resetStack:!0},{id:`rlineto`,min:2,resetStack:!0},{id:`hlineto`,min:1,resetStack:!0},{id:`vlineto`,min:1,resetStack:!0},{id:`rrcurveto`,min:6,resetStack:!0},null,{id:`callsubr`,min:1,undefStack:!0},{id:`return`,min:0,undefStack:!0},null,null,null,null,null,null,{id:`hstemhm`,min:2,resetStack:!0,stem:!0},null,null,{id:`rmoveto`,min:2,resetStack:!0},{id:`hmoveto`,min:1,resetStack:!0},{id:`vstemhm`,min:2,resetStack:!0,stem:!0},{id:`rcurveline`,min:8,resetStack:!0},{id:`rlinecurve`,min:8,resetStack:!0},{id:`vvcurveto`,min:4,resetStack:!0},{id:`hhcurveto`,min:4,resetStack:!0},null,{id:`callgsubr`,min:1,undefStack:!0},{id:`vhcurveto`,min:4,resetStack:!0},{id:`hvcurveto`,min:4,resetStack:!0}],t=[null,null,null,{id:`and`,min:2,stackDelta:-1},{id:`or`,min:2,stackDelta:-1},{id:`not`,min:1,stackDelta:0},null,null,null,{id:`abs`,min:1,stackDelta:0},{id:`add`,min:2,stackDelta:-1,stackFn:function(e,t){e[t-2]=e[t-2]+e[t-1]}},{id:`sub`,min:2,stackDelta:-1,stackFn:function(e,t){e[t-2]=e[t-2]-e[t-1]}},{id:`div`,min:2,stackDelta:-1,stackFn:function(e,t){e[t-2]=e[t-2]/e[t-1]}},null,{id:`neg`,min:1,stackDelta:0,stackFn:function(e,t){e[t-1]=-e[t-1]}},{id:`eq`,min:2,stackDelta:-1},null,null,{id:`drop`,min:1,stackDelta:-1},null,{id:`put`,min:2,stackDelta:-2},{id:`get`,min:1,stackDelta:0},{id:`ifelse`,min:4,stackDelta:-3},{id:`random`,min:0,stackDelta:1},{id:`mul`,min:2,stackDelta:-1,stackFn:function(e,t){e[t-2]=e[t-2]*e[t-1]}},null,{id:`sqrt`,min:1,stackDelta:0},{id:`dup`,min:1,stackDelta:1},{id:`exch`,min:2,stackDelta:0},{id:`index`,min:2,stackDelta:0},{id:`roll`,min:3,stackDelta:-2},null,null,null,{id:`hflex`,min:7,resetStack:!0},{id:`flex`,min:13,resetStack:!0},{id:`hflex1`,min:9,resetStack:!0},{id:`flex1`,min:11,resetStack:!0}];function n(e,t){this.bytes=e.getBytes(),this.properties=t}return n.prototype={parse:function(){var e=this.properties,t=new Vo;this.cff=t;var n=this.parseHeader(),r=this.parseIndex(n.endPos),i=this.parseIndex(r.endPos),a=this.parseIndex(i.endPos),o=this.parseIndex(a.endPos),s=this.parseDict(i.obj.get(0)),c=this.createDict(Ko,s,t.strings);t.header=n.obj,t.names=this.parseNameIndex(r.obj),t.strings=this.parseStringIndex(a.obj),t.topDict=c,t.globalSubrIndex=o.obj,this.parsePrivateDict(t.topDict),t.isCIDFont=c.hasName(`ROS`);var l=c.getByName(`CharStrings`),u=this.parseCharStrings(l);t.charStrings=u.charStrings,t.seacs=u.seacs;var d=c.getByName(`FontMatrix`);d&&(e.fontMatrix=d);var f,p,m=c.getByName(`FontBBox`);if(m&&(e.ascent=m[3],e.descent=m[1],e.ascentScaled=!0),t.isCIDFont){for(var h=this.parseIndex(c.getByName(`FDArray`)).obj,g=0,_=h.count;g<_;++g){var v=h.get(g),y=this.createDict(Ko,this.parseDict(v),t.strings);this.parsePrivateDict(y),t.fdArray.push(y)}p=null,f=this.parseCharsets(c.getByName(`charset`),t.charStrings.count,t.strings,!0),t.fdSelect=this.parseFDSelect(c.getByName(`FDSelect`),t.charStrings.count)}else f=this.parseCharsets(c.getByName(`charset`),t.charStrings.count,t.strings,!1),p=this.parseEncoding(c.getByName(`Encoding`),e,t.strings,f.charset);return t.charset=f,t.encoding=p,t},parseHeader:function(){for(var e=this.bytes,t=0;e[t]!=1;)++t;t!==0&&(U(`cff data is shifted`),e=e.subarray(t),this.bytes=e);var n=e[0],r=e[1],i=e[2],a=e[3];return{obj:new Ho(n,r,i,a),endPos:i}},parseDict:function(e){var t=0;function n(){var n=e[t++];return n===30?function(){for(var n=``,r=15,i=[`0`,`1`,`2`,`3`,`4`,`5`,`6`,`7`,`8`,`9`,`.`,`E`,`E-`,null,`-`],a=e.length;t<a;){var o=e[t++],s=o>>4,c=15&o;if(s==r||(n+=i[s],c==r))break;n+=i[c]}return parseFloat(n)}():n===28?n=((n=e[t++])<<24|e[t++]<<16)>>16:n===29?n=(n=(n=(n=e[t++])<<8|e[t++])<<8|e[t++])<<8|e[t++]:n>=32&&n<=246?n-139:n>=247&&n<=250?256*(n-247)+e[t++]+108:n>=251&&n<=254?-256*(n-251)-e[t++]-108:(G(`255 is not a valid DICT command`),-1)}for(var r=[],i=[],a=(t=0,e.length);t<a;){var o=e[t];o<=21?(o===12&&(o=o<<8|e[++t]),i.push([o,r]),r=[],++t):r.push(n())}return i},parseIndex:function(e){var t=new Wo,n=this.bytes,r=n[e++]<<8|n[e++],i=[],a=e;if(r!==0){for(var o=n[e++],s=e+(r+1)*o-1,c=0,l=r+1;c<l;++c){for(var u=0,d=0;d<o;++d)u<<=8,u+=n[e++];i.push(s+u)}a=i[r]}for(c=0,l=i.length-1;c<l;++c){var f=i[c],p=i[c+1];t.add(n.subarray(f,p))}return{obj:t,endPos:a}},parseNameIndex:function(e){for(var t=[],n=0,r=e.count;n<r;++n){for(var i=e.get(n),a=Math.min(i.length,127),o=[],s=0;s<a;++s){var c=i[s];s!==0||c!==0?o[s]=c<33||c>126||c===91||c===93||c===40||c===41||c===123||c===125||c===60||c===62||c===47||c===37?95:c:o[s]=c}t.push(String.fromCharCode.apply(null,o))}return t},parseStringIndex:function(e){for(var t=new Uo,n=0,r=e.count;n<r;++n){var i=e.get(n);t.add(String.fromCharCode.apply(null,i))}return t},createDict:function(e,t,n){for(var r=new e(n),i=(r.types,0),a=t.length;i<a;++i){var o=t[i],s=o[0],c=o[1];r.setByKey(s,c)}return r},parseCharStrings:function(n){for(var r=this.parseIndex(n).obj,i=[],a=r.count,o=0;o<a;o++){for(var s=0,c=[],l=!0,u=0,d=!0,f=r.get(o),p=f.length,m=0;m<p;){var h=f[m++],g=null;if(h==12){var _=f[m++];_===0?(f[m-2]=139,f[m-1]=22,s=0):g=t[_]}else h===28?(c[s]=(f[m]<<24|f[m+1]<<16)>>16,m+=2,s++):h==14?s>=4&&(s-=4):h>=32&&h<=246?(c[s]=h-139,s++):h>=247&&h<=254?(c[s]=h<251?(h-247<<8)+f[m]+108:-(h-251<<8)-f[m]-108,m++,s++):h==255?(c[s]=(f[m]<<24|f[m+1]<<16|f[m+2]<<8|f[m+3])/65536,m+=4,s++):h==19||h==20?(m+=(u+=s>>1)+7>>3,s=0):g=e[h];if(g){if(g.stem&&(u+=s>>1),`min`in g&&!l&&s<g.min){W(`Not enough parameters for `+g.id+`; actual: `+s+`, expected: `+g.min),d=!1;break}`stackDelta`in g?(`stackFn`in g&&g.stackFn(c,s),s+=g.stackDelta):g.resetStack?(s=0,l=!1):g.undefStack&&(s=0,l=!0)}}d||r.set(o,new Uint8Array([14]))}return{charStrings:r,seacs:i}},emptyPrivateDictionary:function(e){var t=this.createDict(qo,[],e.strings);e.setByKey(18,[0,0]),e.privateDict=t},parsePrivateDict:function(e){if(e.hasName(`Private`)){var t=e.getByName(`Private`);if(na(t)&&t.length===2){var n=t[0],r=t[1];if(n===0||r>=this.bytes.length)this.emptyPrivateDictionary(e);else{var i=r+n,a=this.bytes.subarray(r,i),o=this.parseDict(a),s=this.createDict(qo,o,e.strings);if(e.privateDict=s,s.getByName(`Subrs`)){var c=s.getByName(`Subrs`),l=r+c;c===0||l>=this.bytes.length?this.emptyPrivateDictionary(e):s.subrsIndex=this.parseIndex(l).obj}}}else e.removeByName(`Private`)}else this.emptyPrivateDictionary(e)},parseCharsets:function(e,t,n,r){if(e===0)return new Yo(!0,Jo.ISO_ADOBE,Za);if(e==1)return new Yo(!0,Jo.EXPERT,Qa);if(e==2)return new Yo(!0,Jo.EXPERT_SUBSET,$a);var i=this.bytes,a=e,o=i[e++],s=[`.notdef`];switch(--t,o){case 0:for(var c=0;c<t;c++){var l=i[e++]<<8|i[e++];s.push(r?l:n.get(l))}break;case 1:for(;s.length<=t;){l=i[e++]<<8|i[e++];var u=i[e++];for(c=0;c<=u;c++)s.push(r?l++:n.get(l++))}break;case 2:for(;s.length<=t;)for(l=i[e++]<<8|i[e++],u=i[e++]<<8|i[e++],c=0;c<=u;c++)s.push(r?l++:n.get(l++));break;default:G(`Unknown charset format`)}var d=e;return new Yo(!1,o,s,i.subarray(a,d))},parseEncoding:function(e,t,n,r){var i={},a=this.bytes,o=!1,s=null;if(e===0||e==1){o=!0,f=e;for(var c=e?mo.ExpertEncoding:mo.StandardEncoding,l=0,u=r.length;l<u;l++){var d=c.indexOf(r[l]);d!=-1&&(i[d]=l)}}else{var f,p=e;switch(127&(f=a[e++])){case 0:var m=a[e++];for(l=1;l<=m;l++)i[a[e++]]=l;break;case 1:var h=a[e++],g=1;for(l=0;l<h;l++)for(var _=a[e++],v=a[e++],y=_;y<=_+v;y++)i[y]=g++;break;default:G(`Unknow encoding format: `+f+` in CFF`)}var b=e;128&f&&(a[p]&=127,function(){for(var t=a[e++],o=0;o<t;o++){var s=a[e++],c=(a[e++]<<8)+(255&a[e++]);i[s]=r.indexOf(n.get(c))}}()),s=a.subarray(p,b)}return new Xo(o,f&=127,i,s)},parseFDSelect:function(e,t){var n=e,r=this.bytes,i=r[e++],a=[];switch(i){case 0:for(var o=0;o<t;++o){var s=r[e++];a.push(s)}break;case 3:var c=r[e++]<<8|r[e++];for(o=0;o<c;++o)for(var l=r[e++]<<8|r[e++],u=r[e++],d=r[e]<<8|r[e+1],f=l;f<d;++f)a.push(u);e+=2;break;default:G(`Unknown fdselect format `+i)}var p=e;return new Zo(a,r.subarray(n,p))}},n}(),Vo=function(){this.header=null,this.names=[],this.topDict=null,this.strings=new Uo,this.globalSubrIndex=null,this.encoding=null,this.charset=null,this.charStrings=null,this.fdArray=[],this.fdSelect=null,this.isCIDFont=!1},Ho=function(e,t,n,r){this.major=e,this.minor=t,this.hdrSize=n,this.offSize=r},Uo=function(){function e(){this.strings=[]}return e.prototype={get:function(e){return e>=0&&e<=390?Lo[e]:e-391<=this.strings.length?this.strings[e-391]:Lo[0]},add:function(e){this.strings.push(e)},get count(){return this.strings.length}},e}(),Wo=function(){function e(){this.objects=[],this.length=0}return e.prototype={add:function(e){this.length+=e.length,this.objects.push(e)},set:function(e,t){this.length+=t.length-this.objects[e].length,this.objects[e]=t},get:function(e){return this.objects[e]},get count(){return this.objects.length}},e}(),Go=function(){function e(e,t){this.keyToNameMap=e.keyToNameMap,this.nameToKeyMap=e.nameToKeyMap,this.defaults=e.defaults,this.types=e.types,this.opcodes=e.opcodes,this.order=e.order,this.strings=t,this.values={}}return e.prototype={setByKey:function(e,t){if(!(e in this.keyToNameMap))return!1;if(t.length===0)return!0;var n=this.types[e];return n!==`num`&&n!==`sid`&&n!==`offset`||(t=t[0]),this.values[e]=t,!0},setByName:function(e,t){e in this.nameToKeyMap||G(`Invalid dictionary name "`+e+`"`),this.values[this.nameToKeyMap[e]]=t},hasName:function(e){return this.nameToKeyMap[e]in this.values},getByName:function(e){e in this.nameToKeyMap||G(`Invalid dictionary name "`+e+`"`);var t=this.nameToKeyMap[e];return t in this.values?this.values[t]:this.defaults[t]},removeByName:function(e){delete this.values[this.nameToKeyMap[e]]}},e.createTables=function(e){for(var t={keyToNameMap:{},nameToKeyMap:{},defaults:{},types:{},opcodes:{},order:[]},n=0,r=e.length;n<r;++n){var i=e[n],a=na(i[0])?(i[0][0]<<8)+i[0][1]:i[0];t.keyToNameMap[a]=i[1],t.nameToKeyMap[i[1]]=a,t.types[a]=i[2],t.defaults[a]=i[3],t.opcodes[a]=na(i[0])?i[0]:[i[0]],t.order.push(a)}return t},e}(),Ko=function(){var e=[[[12,30],`ROS`,[`sid`,`sid`,`num`],null],[[12,20],`SyntheticBase`,`num`,null],[0,`version`,`sid`,null],[1,`Notice`,`sid`,null],[[12,0],`Copyright`,`sid`,null],[2,`FullName`,`sid`,null],[3,`FamilyName`,`sid`,null],[4,`Weight`,`sid`,null],[[12,1],`isFixedPitch`,`num`,0],[[12,2],`ItalicAngle`,`num`,0],[[12,3],`UnderlinePosition`,`num`,-100],[[12,4],`UnderlineThickness`,`num`,50],[[12,5],`PaintType`,`num`,0],[[12,6],`CharstringType`,`num`,2],[[12,7],`FontMatrix`,[`num`,`num`,`num`,`num`,`num`,`num`],[.001,0,0,.001,0,0]],[13,`UniqueID`,`num`,null],[5,`FontBBox`,[`num`,`num`,`num`,`num`],[0,0,0,0]],[[12,8],`StrokeWidth`,`num`,0],[14,`XUID`,`array`,null],[15,`charset`,`offset`,0],[16,`Encoding`,`offset`,0],[17,`CharStrings`,`offset`,0],[18,`Private`,[`offset`,`offset`],null],[[12,21],`PostScript`,`sid`,null],[[12,22],`BaseFontName`,`sid`,null],[[12,23],`BaseFontBlend`,`delta`,null],[[12,31],`CIDFontVersion`,`num`,0],[[12,32],`CIDFontRevision`,`num`,0],[[12,33],`CIDFontType`,`num`,0],[[12,34],`CIDCount`,`num`,8720],[[12,35],`UIDBase`,`num`,null],[[12,37],`FDSelect`,`offset`,null],[[12,36],`FDArray`,`offset`,null],[[12,38],`FontName`,`sid`,null]],t=null;function n(n){t===null&&(t=Go.createTables(e)),Go.call(this,t,n),this.privateDict=null}return n.prototype=Object.create(Go.prototype),n}(),qo=function(){var e=[[6,`BlueValues`,`delta`,null],[7,`OtherBlues`,`delta`,null],[8,`FamilyBlues`,`delta`,null],[9,`FamilyOtherBlues`,`delta`,null],[[12,9],`BlueScale`,`num`,.039625],[[12,10],`BlueShift`,`num`,7],[[12,11],`BlueFuzz`,`num`,1],[10,`StdHW`,`num`,null],[11,`StdVW`,`num`,null],[[12,12],`StemSnapH`,`delta`,null],[[12,13],`StemSnapV`,`delta`,null],[[12,14],`ForceBold`,`num`,0],[[12,17],`LanguageGroup`,`num`,0],[[12,18],`ExpansionFactor`,`num`,.06],[[12,19],`initialRandomSeed`,`num`,0],[20,`defaultWidthX`,`num`,0],[21,`nominalWidthX`,`num`,0],[19,`Subrs`,`offset`,null]],t=null;function n(n){t===null&&(t=Go.createTables(e)),Go.call(this,t,n),this.subrsIndex=null}return n.prototype=Object.create(Go.prototype),n}(),Jo={ISO_ADOBE:0,EXPERT:1,EXPERT_SUBSET:2},Yo=function(e,t,n,r){this.predefined=e,this.format=t,this.charset=n,this.raw=r},Xo=function(e,t,n,r){this.predefined=e,this.format=t,this.encoding=n,this.raw=r},Zo=function(e,t){this.fdSelect=e,this.raw=t},Qo=function(){function e(){this.offsets={}}return e.prototype={isTracking:function(e){return e in this.offsets},track:function(e,t){e in this.offsets&&G(`Already tracking location of `+e),this.offsets[e]=t},offset:function(e){for(var t in this.offsets)this.offsets[t]+=e},setEntryLocation:function(e,t,n){e in this.offsets||G(`Not tracking location of `+e);for(var r=n.data,i=this.offsets[e],a=0,o=t.length;a<o;++a){var s=5*a+i,c=s+1,l=s+2,u=s+3,d=s+4;r[s]===29&&r[c]===0&&r[l]===0&&r[u]===0&&r[d]===0||G(`writing to an offset that is not empty`);var f=t[a];r[s]=29,r[c]=f>>24&255,r[l]=f>>16&255,r[u]=f>>8&255,r[d]=255&f}}},e}(),$o=function(){function e(e){for(var t=[],n=0,r=e.length;n<r;++n)t[n]=e.charCodeAt(n);return t}function t(e){this.cff=e}return t.prototype={compile:function(){var e=this.cff,t={data:[],length:0,add:function(e){this.data=this.data.concat(e),this.length=this.data.length}},n=this.compileHeader(e.header);t.add(n);var r=this.compileNameIndex(e.names);if(t.add(r),e.isCIDFont&&e.topDict.hasName(`FontMatrix`)){var i=e.topDict.getByName(`FontMatrix`);e.topDict.removeByName(`FontMatrix`);for(var a=0,o=e.fdArray.length;a<o;a++){var s=e.fdArray[a],c=i.slice(0);s.hasName(`FontMatrix`)&&(c=K.transform(c,s.getByName(`FontMatrix`))),s.setByName(`FontMatrix`,c)}}var l=this.compileTopDicts([e.topDict],t.length,e.isCIDFont);t.add(l.output);var u=l.trackers[0],d=this.compileStringIndex(e.strings.strings);t.add(d);var f=this.compileIndex(e.globalSubrIndex);if(t.add(f),e.encoding&&e.topDict.hasName(`Encoding`))if(e.encoding.predefined)u.setEntryLocation(`Encoding`,[e.encoding.format],t);else{var p=this.compileEncoding(e.encoding);u.setEntryLocation(`Encoding`,[t.length],t),t.add(p)}if(e.charset&&e.topDict.hasName(`charset`))if(e.charset.predefined)u.setEntryLocation(`charset`,[e.charset.format],t);else{var m=this.compileCharset(e.charset);u.setEntryLocation(`charset`,[t.length],t),t.add(m)}var h=this.compileCharStrings(e.charStrings);if(u.setEntryLocation(`CharStrings`,[t.length],t),t.add(h),e.isCIDFont){u.setEntryLocation(`FDSelect`,[t.length],t);var g=this.compileFDSelect(e.fdSelect.raw);t.add(g),l=this.compileTopDicts(e.fdArray,t.length,!0),u.setEntryLocation(`FDArray`,[t.length],t),t.add(l.output);var _=l.trackers;this.compilePrivateDicts(e.fdArray,_,t)}return this.compilePrivateDicts([e.topDict],[u],t),t.add([0]),t.data},encodeNumber:function(e){return parseFloat(e)!=parseInt(e,10)||isNaN(e)?this.encodeFloat(e):this.encodeInteger(e)},encodeFloat:function(e){var t=e.toString(),n=/\.(\d*?)(?:9{5,20}|0{5,20})\d{0,2}(?:e(.+)|$)/.exec(t);if(n){var r=parseFloat(`1e`+((n[2]?+n[2]:0)+n[1].length));t=(Math.round(e*r)/r).toString()}for(var i=``,a=0,o=t.length;a<o;++a){var s=t[a];i+=s===`e`?t[++a]===`-`?`c`:`b`:s===`.`?`a`:s===`-`?`e`:s}var c=[30];for(a=0,o=(i+=1&i.length?`f`:`ff`).length;a<o;a+=2)c.push(parseInt(i.substring(a,a+2),16));return c},encodeInteger:function(e){return e>=-107&&e<=107?[e+139]:e>=108&&e<=1131?[247+((e=[e-108])>>8),255&e]:e>=-1131&&e<=-108?[251+((e=-e-108)>>8),255&e]:e>=-32768&&e<=32767?[28,e>>8&255,255&e]:[29,e>>24&255,e>>16&255,e>>8&255,255&e]},compileHeader:function(e){return[e.major,e.minor,e.hdrSize,e.offSize]},compileNameIndex:function(t){for(var n=new Wo,r=0,i=t.length;r<i;++r)n.add(e(t[r]));return this.compileIndex(n)},compileTopDicts:function(e,t,n){for(var r=[],i=new Wo,a=0,o=e.length;a<o;++a){var s=e[a];n&&(s.removeByName(`CIDFontVersion`),s.removeByName(`CIDFontRevision`),s.removeByName(`CIDFontType`),s.removeByName(`CIDCount`),s.removeByName(`UIDBase`));var c=new Qo,l=this.compileDict(s,c);r.push(c),i.add(l),c.offset(t)}return{trackers:r,output:i=this.compileIndex(i,r)}},compilePrivateDicts:function(e,t,n){for(var r=0,i=e.length;r<i;++r){var a=e[r];ki(a.privateDict&&a.hasName(`Private`),`There must be an private dictionary.`);var o=a.privateDict,s=new Qo,c=this.compileDict(o,s),l=n.length;if(s.offset(l),c.length||(l=0),t[r].setEntryLocation(`Private`,[c.length,l],n),n.add(c),o.subrsIndex&&o.hasName(`Subrs`)){var u=this.compileIndex(o.subrsIndex);s.setEntryLocation(`Subrs`,[c.length],n),n.add(u)}}},compileDict:function(e,t){for(var n=[],r=e.order,i=0;i<r.length;++i){var a=r[i];if(a in e.values){var o=e.values[a],s=e.types[a];if(na(s)||(s=[s]),na(o)||(o=[o]),o.length!==0){for(var c=0,l=s.length;c<l;++c){var u=s[c],d=o[c];switch(u){case`num`:case`sid`:n=n.concat(this.encodeNumber(d));break;case`offset`:var f=e.keyToNameMap[a];t.isTracking(f)||t.track(f,n.length),n=n.concat([29,0,0,0,0]);break;case`array`:case`delta`:n=n.concat(this.encodeNumber(d));for(var p=1,m=o.length;p<m;++p)n=n.concat(this.encodeNumber(o[p]));break;default:G(`Unknown data type of `+u)}}n=n.concat(e.opcodes[a])}}}return n},compileStringIndex:function(t){for(var n=new Wo,r=0,i=t.length;r<i;++r)n.add(e(t[r]));return this.compileIndex(n)},compileGlobalSubrIndex:function(){var e=this.cff.globalSubrIndex;this.out.writeByteArray(this.compileIndex(e))},compileCharStrings:function(e){return this.compileIndex(e)},compileCharset:function(e){return this.compileTypedArray(e.raw)},compileEncoding:function(e){return this.compileTypedArray(e.raw)},compileFDSelect:function(e){return this.compileTypedArray(e)},compileTypedArray:function(e){for(var t=[],n=0,r=e.length;n<r;++n)t[n]=e[n];return t},compileIndex:function(e,t){t||=[];var n=e.objects,r=n.length;if(r===0)return[0,0,0];for(var i,a=[r>>8&255,255&r],o=1,s=0;s<r;++s)o+=n[s].length;i=o<256?1:o<65536?2:o<16777216?3:4,a.push(i);var c=1;for(s=0;s<r+1;s++)i===1?a.push(255&c):i===2?a.push(c>>8&255,255&c):i===3?a.push(c>>16&255,c>>8&255,255&c):a.push(c>>>24&255,c>>16&255,c>>8&255,255&c),n[s]&&(c+=n[s].length);for(a.length,s=0;s<r;s++){t[s]&&t[s].offset(a.length);for(var l=0,u=n[s].length;l<u;l++)a.push(n[s][l])}return a}},t}(),es=function(){function e(e,t){return e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3]}function t(e,t){return e[t]<<8|e[t+1]}function n(n,r,i){var a=t(n,r+2)===1?e(n,r+8):e(n,r+16),o=t(n,r+a);if(o===4){t(n,r+a+2);for(var s=t(n,r+a+6)>>1,c=r+a+14,l=[],u=0;u<s;u++,c+=2)l[u]={end:t(n,c)};for(c+=2,u=0;u<s;u++,c+=2)l[u].start=t(n,c);for(u=0;u<s;u++,c+=2)l[u].idDelta=t(n,c);for(u=0;u<s;u++,c+=2){var d=t(n,c);if(d!==0){l[u].ids=[];for(var f=0,p=l[u].end-l[u].start+1;f<p;f++)l[u].ids[f]=t(n,c+d),d+=2}}return l}if(o===12){e(n,r+a+4);var m=e(n,r+a+12);for(c=r+a+16,l=[],u=0;u<m;u++)l.push({start:e(n,c),end:e(n,c+4),idDelta:e(n,c+8)-e(n,c)}),c+=12;return l}G(`not supported cmap: `+o)}function r(e,t,n){var r=new Bo(new ls(e,t,n-t),{}).parse();return{glyphs:r.charStrings.objects,subrs:r.topDict.privateDict&&r.topDict.privateDict.subrsIndex&&r.topDict.privateDict.subrsIndex.objects,gsubrs:r.globalSubrIndex&&r.globalSubrIndex.objects}}function i(e,t){for(var n=t.charCodeAt(0),r=0,i=e.length-1;r<i;){var a=r+i+1>>1;n<e[a].start?i=a-1:r=a}return e[r].start<=n&&n<=e[r].end?e[r].idDelta+(e[r].ids?e[r].ids[n-e[r].start]:n)&65535:0}function a(e,t,n){function r(e,n){t.push(`c.moveTo(`+e+`,`+n+`);`)}function i(e,n){t.push(`c.lineTo(`+e+`,`+n+`);`)}function o(e,n,r,i){t.push(`c.quadraticCurveTo(`+e+`,`+n+`,`+r+`,`+i+`);`)}var s=(e[T=0]<<24|e[T+1]<<16)>>16;if(e[T+2],e[T+3],e[T+4],e[T+5],e[T+6],e[T+7],e[T+8],e[T+9],T+=10,s<0){var c=0,l=0;do{var u,d,f=e[T]<<8|e[T+1],p=e[T+2]<<8|e[T+3];T+=4,1&f?(u=(e[T]<<24|e[T+1]<<16)>>16,d=(e[T+2]<<24|e[T+3]<<16)>>16,T+=4):(u=e[T++],d=e[T++]),2&f?(c=u,l=d):(c=0,l=0);var m=1,h=1,g=0,_=0;8&f?(m=h=(e[T]<<24|e[T+1]<<16)/1073741824,T+=2):64&f?(m=(e[T]<<24|e[T+1]<<16)/1073741824,h=(e[T+2]<<24|e[T+3]<<16)/1073741824,T+=4):128&f&&(m=(e[T]<<24|e[T+1]<<16)/1073741824,g=(e[T+2]<<24|e[T+3]<<16)/1073741824,_=(e[T+4]<<24|e[T+5]<<16)/1073741824,h=(e[T+6]<<24|e[T+7]<<16)/1073741824,T+=8);var v=n.glyphs[p];v&&(t.push(`c.save();`),t.push(`c.transform(`+m+`,`+g+`,`+_+`,`+h+`,`+c+`,`+l+`);`),a(v,t,n),t.push(`c.restore();`))}while(32&f)}else{for(var y=[],b=0;b<s;b++)y.push(e[T]<<8|e[T+1]),T+=2;T+=2+(e[T]<<8|e[T+1]);for(var x=y[y.length-1]+1,S=[];S.length<x;){var C=1;for(8&(f=e[T++])&&(C+=e[T++]);C-- >0;)S.push({flags:f})}for(c=0,l=0,b=0;b<x;b++){switch(18&S[b].flags){case 0:c+=(e[T]<<24|e[T+1]<<16)>>16,T+=2;break;case 2:c-=e[T++];break;case 18:c+=e[T++]}S[b].x=c}for(b=0;b<x;b++){switch(36&S[b].flags){case 0:l+=(e[T]<<24|e[T+1]<<16)>>16,T+=2;break;case 4:l-=e[T++];break;case 36:l+=e[T++]}S[b].y=l}for(var w=0,T=0;T<s;T++){var E=y[T],D=S.slice(w,E+1);if(1&D[0].flags)D.push(D[0]);else if(1&D[D.length-1].flags)D.unshift(D[D.length-1]);else{var O={flags:1,x:(D[0].x+D[D.length-1].x)/2,y:(D[0].y+D[D.length-1].y)/2};D.unshift(O),D.push(O)}r(D[0].x,D[0].y),b=1;for(var k=D.length;b<k;b++)1&D[b].flags?i(D[b].x,D[b].y):1&D[b+1].flags?(o(D[b].x,D[b].y,D[b+1].x,D[b+1].y),b++):o(D[b].x,D[b].y,(D[b].x+D[b+1].x)/2,(D[b].y+D[b+1].y)/2);w=E+1}}}function o(e,t,n){var r=[],a=0,s=0,c=0;function l(e,n){t.push(`c.moveTo(`+e+`,`+n+`);`)}function u(e,n){t.push(`c.lineTo(`+e+`,`+n+`);`)}function d(e,n,r,i,a,o){t.push(`c.bezierCurveTo(`+e+`,`+n+`,`+r+`,`+i+`,`+a+`,`+o+`);`)}(function e(f){for(var p=0;p<f.length;){var m=!1,h=f[p++];switch(h){case 1:case 3:case 18:case 23:c+=r.length>>1,m=!0;break;case 4:s+=r.pop(),l(a,s),m=!0;break;case 5:for(;r.length>0;)a+=r.shift(),s+=r.shift(),u(a,s);break;case 6:for(;r.length>0&&(u(a+=r.shift(),s),r.length!==0);)s+=r.shift(),u(a,s);break;case 7:for(;r.length>0&&(s+=r.shift(),u(a,s),r.length!==0);)u(a+=r.shift(),s);break;case 8:for(;r.length>0;){var g=a+r.shift(),_=s+r.shift(),v=g+r.shift(),y=_+r.shift();a=v+r.shift(),s=y+r.shift(),d(g,_,v,y,a,s)}break;case 10:var b=r.pop()+n.subrsBias;(O=n.subrs[b])&&e(O);break;case 11:return;case 12:switch(h=f[p++]){case 34:v=(g=a+r.shift())+r.shift();var x=s+r.shift();a=v+r.shift(),d(g,s,v,x,a,x),v=(g=a+r.shift())+r.shift(),a=v+r.shift(),d(g,x,v,s,a,s);break;case 35:g=a+r.shift(),_=s+r.shift(),v=g+r.shift(),y=_+r.shift(),a=v+r.shift(),s=y+r.shift(),d(g,_,v,y,a,s),g=a+r.shift(),_=s+r.shift(),v=g+r.shift(),y=_+r.shift(),a=v+r.shift(),s=y+r.shift(),d(g,_,v,y,a,s),r.pop();break;case 36:g=a+r.shift(),x=s+r.shift(),v=g+r.shift();var S=x+r.shift();d(g,x,v,S,a=v+r.shift(),S),d(g=a+r.shift(),S,v=g+r.shift(),S+r.shift(),a=v+r.shift(),s);break;case 37:var C=a,w=s;g=a+r.shift(),_=s+r.shift(),v=g+r.shift(),y=_+r.shift(),a=v+r.shift(),s=y+r.shift(),d(g,_,v,y,a,s),g=a+r.shift(),_=s+r.shift(),v=g+r.shift(),y=_+r.shift(),a=v,s=y,Math.abs(a-C)>Math.abs(s-w)?a+=r.shift():s+=r.shift(),d(g,_,v,y,a,s);break;default:G(`unknown operator: 12 `+h)}break;case 14:if(r.length>=4){var T=r.pop(),E=r.pop();s=r.pop(),a=r.pop(),t.push(`c.save();`),t.push(`c.translate(`+a+`,`+s+`);`);var D=i(n.cmap,String.fromCharCode(n.glyphNameMap[mo.StandardEncoding[T]]));o(n.glyphs[D],t,n),t.push(`c.restore();`),D=i(n.cmap,String.fromCharCode(n.glyphNameMap[mo.StandardEncoding[E]])),o(n.glyphs[D],t,n)}return;case 19:case 20:p+=(c+=r.length>>1)+7>>3,m=!0;break;case 21:s+=r.pop(),l(a+=r.pop(),s),m=!0;break;case 22:l(a+=r.pop(),s),m=!0;break;case 24:for(;r.length>2;)g=a+r.shift(),_=s+r.shift(),v=g+r.shift(),y=_+r.shift(),a=v+r.shift(),s=y+r.shift(),d(g,_,v,y,a,s);a+=r.shift(),s+=r.shift(),u(a,s);break;case 25:for(;r.length>6;)a+=r.shift(),s+=r.shift(),u(a,s);g=a+r.shift(),_=s+r.shift(),v=g+r.shift(),y=_+r.shift(),a=v+r.shift(),s=y+r.shift(),d(g,_,v,y,a,s);break;case 26:for(r.length%2&&(a+=r.shift());r.length>0;)g=a,_=s+r.shift(),v=g+r.shift(),y=_+r.shift(),a=v,s=y+r.shift(),d(g,_,v,y,a,s);break;case 27:for(r.length%2&&(s+=r.shift());r.length>0;)d(g=a+r.shift(),_=s,v=g+r.shift(),y=_+r.shift(),a=v+r.shift(),s=y);break;case 28:r.push((f[p]<<24|f[p+1]<<16)>>16),p+=2;break;case 29:var O;b=r.pop()+n.gsubrsBias,(O=n.gsubrs[b])&&e(O);break;case 30:for(;r.length>0&&(g=a,_=s+r.shift(),v=g+r.shift(),y=_+r.shift(),a=v+r.shift(),s=y+(r.length===1?r.shift():0),d(g,_,v,y,a,s),r.length!==0);)g=a+r.shift(),_=s,v=g+r.shift(),y=_+r.shift(),s=y+r.shift(),d(g,_,v,y,a=v+(r.length===1?r.shift():0),s);break;case 31:for(;r.length>0&&(g=a+r.shift(),_=s,v=g+r.shift(),y=_+r.shift(),s=y+r.shift(),d(g,_,v,y,a=v+(r.length===1?r.shift():0),s),r.length!==0);)g=a,_=s+r.shift(),v=g+r.shift(),y=_+r.shift(),a=v+r.shift(),s=y+(r.length===1?r.shift():0),d(g,_,v,y,a,s);break;default:h<32&&G(`unknown operator: `+h),h<247?r.push(h-139):h<251?r.push(256*(h-247)+f[p++]+108):h<255?r.push(256*-(h-251)-f[p++]-108):(r.push((f[p]<<24|f[p+1]<<16|f[p+2]<<8|f[p+3])/65536),p+=4)}m&&(r.length=0)}})(e)}function s(e){this.compiledGlyphs={},this.fontMatrix=e}function c(e,t,n){n||=[488e-6,0,0,488e-6,0,0],s.call(this,n),this.glyphs=e,this.cmap=t,this.compiledGlyphs=[]}function l(e,t,n,r){n||=[.001,0,0,.001,0,0],s.call(this,n),this.glyphs=e.glyphs,this.gsubrs=e.gsubrs||[],this.subrs=e.subrs||[],this.cmap=t,this.glyphNameMap=r||ts,this.compiledGlyphs=[],this.gsubrsBias=this.gsubrs.length<1240?107:this.gsubrs.length<33900?1131:32768,this.subrsBias=this.subrs.length<1240?107:this.subrs.length<33900?1131:32768}return s.prototype={getPathJs:function(e){var t=i(this.cmap,e),n=this.compiledGlyphs[t];return n||(this.compiledGlyphs[t]=n=this.compileGlyph(this.glyphs[t])),n},compileGlyph:function(e){if(!e||e.length===0||e[0]===14)return``;var t=[];return t.push(`c.save();`),t.push(`c.transform(`+this.fontMatrix.join(`,`)+`);`),t.push(`c.scale(size, -size);`),this.compileGlyphImpl(e,t),t.push(`c.restore();`),t.join(`
|
|
9
|
+
`)},compileGlyphImpl:function(){G(`Children classes should implement this.`)},hasBuiltPath:function(e){return i(this.cmap,e)in this.compiledGlyphs}},K.inherit(c,s,{compileGlyphImpl:function(e,t){a(e,t,this)}}),K.inherit(l,s,{compileGlyphImpl:function(e,t){o(e,t,this)}}),{create:function(i){for(var a,o,s,u,d,f,p=new Uint8Array(i.data),m=t(p,4),h=0,g=12;h<m;h++,g+=16){var _=String.fromCharCode.apply(null,p.subarray(g,g+4)),v=e(p,g+8),y=e(p,g+12);switch(_){case`cmap`:a=n(p,v);break;case`glyf`:o=p.subarray(v,v+y);break;case`loca`:s=p.subarray(v,v+y);break;case`head`:f=t(p,v+18),d=t(p,v+50);break;case`CFF `:u=r(p,v,v+y)}}if(o){var b=f?[1/f,0,0,1/f,0,0]:i.fontMatrix;return new c(function(e,t,n){var r,i;n?(r=4,i=function(e,t){return e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3]}):(r=2,i=function(e,t){return e[t]<<9|e[t+1]<<1});for(var a=[],o=i(t,0),s=r;s<t.length;s+=r){var c=i(t,s);a.push(e.subarray(o,c)),o=c}return a}(o,s,d),a,b)}return new l(u,a,i.fontMatrix,i.glyphNameMap)}}}(),ts={A:65,AE:198,AEacute:508,AEmacron:482,AEsmall:63462,Aacute:193,Aacutesmall:63457,Abreve:258,Abreveacute:7854,Abrevecyrillic:1232,Abrevedotbelow:7862,Abrevegrave:7856,Abrevehookabove:7858,Abrevetilde:7860,Acaron:461,Acircle:9398,Acircumflex:194,Acircumflexacute:7844,Acircumflexdotbelow:7852,Acircumflexgrave:7846,Acircumflexhookabove:7848,Acircumflexsmall:63458,Acircumflextilde:7850,Acute:63177,Acutesmall:63412,Acyrillic:1040,Adblgrave:512,Adieresis:196,Adieresiscyrillic:1234,Adieresismacron:478,Adieresissmall:63460,Adotbelow:7840,Adotmacron:480,Agrave:192,Agravesmall:63456,Ahookabove:7842,Aiecyrillic:1236,Ainvertedbreve:514,Alpha:913,Alphatonos:902,Amacron:256,Amonospace:65313,Aogonek:260,Aring:197,Aringacute:506,Aringbelow:7680,Aringsmall:63461,Asmall:63329,Atilde:195,Atildesmall:63459,Aybarmenian:1329,B:66,Bcircle:9399,Bdotaccent:7682,Bdotbelow:7684,Becyrillic:1041,Benarmenian:1330,Beta:914,Bhook:385,Blinebelow:7686,Bmonospace:65314,Brevesmall:63220,Bsmall:63330,Btopbar:386,C:67,Caarmenian:1342,Cacute:262,Caron:63178,Caronsmall:63221,Ccaron:268,Ccedilla:199,Ccedillaacute:7688,Ccedillasmall:63463,Ccircle:9400,Ccircumflex:264,Cdot:266,Cdotaccent:266,Cedillasmall:63416,Chaarmenian:1353,Cheabkhasiancyrillic:1212,Checyrillic:1063,Chedescenderabkhasiancyrillic:1214,Chedescendercyrillic:1206,Chedieresiscyrillic:1268,Cheharmenian:1347,Chekhakassiancyrillic:1227,Cheverticalstrokecyrillic:1208,Chi:935,Chook:391,Circumflexsmall:63222,Cmonospace:65315,Coarmenian:1361,Csmall:63331,D:68,DZ:497,DZcaron:452,Daarmenian:1332,Dafrican:393,Dcaron:270,Dcedilla:7696,Dcircle:9401,Dcircumflexbelow:7698,Dcroat:272,Ddotaccent:7690,Ddotbelow:7692,Decyrillic:1044,Deicoptic:1006,Delta:8710,Deltagreek:916,Dhook:394,Dieresis:63179,DieresisAcute:63180,DieresisGrave:63181,Dieresissmall:63400,Digammagreek:988,Djecyrillic:1026,Dlinebelow:7694,Dmonospace:65316,Dotaccentsmall:63223,Dslash:272,Dsmall:63332,Dtopbar:395,Dz:498,Dzcaron:453,Dzeabkhasiancyrillic:1248,Dzecyrillic:1029,Dzhecyrillic:1039,E:69,Eacute:201,Eacutesmall:63465,Ebreve:276,Ecaron:282,Ecedillabreve:7708,Echarmenian:1333,Ecircle:9402,Ecircumflex:202,Ecircumflexacute:7870,Ecircumflexbelow:7704,Ecircumflexdotbelow:7878,Ecircumflexgrave:7872,Ecircumflexhookabove:7874,Ecircumflexsmall:63466,Ecircumflextilde:7876,Ecyrillic:1028,Edblgrave:516,Edieresis:203,Edieresissmall:63467,Edot:278,Edotaccent:278,Edotbelow:7864,Efcyrillic:1060,Egrave:200,Egravesmall:63464,Eharmenian:1335,Ehookabove:7866,Eightroman:8551,Einvertedbreve:518,Eiotifiedcyrillic:1124,Elcyrillic:1051,Elevenroman:8554,Emacron:274,Emacronacute:7702,Emacrongrave:7700,Emcyrillic:1052,Emonospace:65317,Encyrillic:1053,Endescendercyrillic:1186,Eng:330,Enghecyrillic:1188,Enhookcyrillic:1223,Eogonek:280,Eopen:400,Epsilon:917,Epsilontonos:904,Ercyrillic:1056,Ereversed:398,Ereversedcyrillic:1069,Escyrillic:1057,Esdescendercyrillic:1194,Esh:425,Esmall:63333,Eta:919,Etarmenian:1336,Etatonos:905,Eth:208,Ethsmall:63472,Etilde:7868,Etildebelow:7706,Euro:8364,Ezh:439,Ezhcaron:494,Ezhreversed:440,F:70,Fcircle:9403,Fdotaccent:7710,Feharmenian:1366,Feicoptic:996,Fhook:401,Fitacyrillic:1138,Fiveroman:8548,Fmonospace:65318,Fourroman:8547,Fsmall:63334,G:71,GBsquare:13191,Gacute:500,Gamma:915,Gammaafrican:404,Gangiacoptic:1002,Gbreve:286,Gcaron:486,Gcedilla:290,Gcircle:9404,Gcircumflex:284,Gcommaaccent:290,Gdot:288,Gdotaccent:288,Gecyrillic:1043,Ghadarmenian:1346,Ghemiddlehookcyrillic:1172,Ghestrokecyrillic:1170,Gheupturncyrillic:1168,Ghook:403,Gimarmenian:1331,Gjecyrillic:1027,Gmacron:7712,Gmonospace:65319,Grave:63182,Gravesmall:63328,Gsmall:63335,Gsmallhook:667,Gstroke:484,H:72,H18533:9679,H18543:9642,H18551:9643,H22073:9633,HPsquare:13259,Haabkhasiancyrillic:1192,Hadescendercyrillic:1202,Hardsigncyrillic:1066,Hbar:294,Hbrevebelow:7722,Hcedilla:7720,Hcircle:9405,Hcircumflex:292,Hdieresis:7718,Hdotaccent:7714,Hdotbelow:7716,Hmonospace:65320,Hoarmenian:1344,Horicoptic:1e3,Hsmall:63336,Hungarumlaut:63183,Hungarumlautsmall:63224,Hzsquare:13200,I:73,IAcyrillic:1071,IJ:306,IUcyrillic:1070,Iacute:205,Iacutesmall:63469,Ibreve:300,Icaron:463,Icircle:9406,Icircumflex:206,Icircumflexsmall:63470,Icyrillic:1030,Idblgrave:520,Idieresis:207,Idieresisacute:7726,Idieresiscyrillic:1252,Idieresissmall:63471,Idot:304,Idotaccent:304,Idotbelow:7882,Iebrevecyrillic:1238,Iecyrillic:1045,Ifraktur:8465,Igrave:204,Igravesmall:63468,Ihookabove:7880,Iicyrillic:1048,Iinvertedbreve:522,Iishortcyrillic:1049,Imacron:298,Imacroncyrillic:1250,Imonospace:65321,Iniarmenian:1339,Iocyrillic:1025,Iogonek:302,Iota:921,Iotaafrican:406,Iotadieresis:938,Iotatonos:906,Ismall:63337,Istroke:407,Itilde:296,Itildebelow:7724,Izhitsacyrillic:1140,Izhitsadblgravecyrillic:1142,J:74,Jaarmenian:1345,Jcircle:9407,Jcircumflex:308,Jecyrillic:1032,Jheharmenian:1355,Jmonospace:65322,Jsmall:63338,K:75,KBsquare:13189,KKsquare:13261,Kabashkircyrillic:1184,Kacute:7728,Kacyrillic:1050,Kadescendercyrillic:1178,Kahookcyrillic:1219,Kappa:922,Kastrokecyrillic:1182,Kaverticalstrokecyrillic:1180,Kcaron:488,Kcedilla:310,Kcircle:9408,Kcommaaccent:310,Kdotbelow:7730,Keharmenian:1364,Kenarmenian:1343,Khacyrillic:1061,Kheicoptic:998,Khook:408,Kjecyrillic:1036,Klinebelow:7732,Kmonospace:65323,Koppacyrillic:1152,Koppagreek:990,Ksicyrillic:1134,Ksmall:63339,L:76,LJ:455,LL:63167,Lacute:313,Lambda:923,Lcaron:317,Lcedilla:315,Lcircle:9409,Lcircumflexbelow:7740,Lcommaaccent:315,Ldot:319,Ldotaccent:319,Ldotbelow:7734,Ldotbelowmacron:7736,Liwnarmenian:1340,Lj:456,Ljecyrillic:1033,Llinebelow:7738,Lmonospace:65324,Lslash:321,Lslashsmall:63225,Lsmall:63340,M:77,MBsquare:13190,Macron:63184,Macronsmall:63407,Macute:7742,Mcircle:9410,Mdotaccent:7744,Mdotbelow:7746,Menarmenian:1348,Mmonospace:65325,Msmall:63341,Mturned:412,Mu:924,N:78,NJ:458,Nacute:323,Ncaron:327,Ncedilla:325,Ncircle:9411,Ncircumflexbelow:7754,Ncommaaccent:325,Ndotaccent:7748,Ndotbelow:7750,Nhookleft:413,Nineroman:8552,Nj:459,Njecyrillic:1034,Nlinebelow:7752,Nmonospace:65326,Nowarmenian:1350,Nsmall:63342,Ntilde:209,Ntildesmall:63473,Nu:925,O:79,OE:338,OEsmall:63226,Oacute:211,Oacutesmall:63475,Obarredcyrillic:1256,Obarreddieresiscyrillic:1258,Obreve:334,Ocaron:465,Ocenteredtilde:415,Ocircle:9412,Ocircumflex:212,Ocircumflexacute:7888,Ocircumflexdotbelow:7896,Ocircumflexgrave:7890,Ocircumflexhookabove:7892,Ocircumflexsmall:63476,Ocircumflextilde:7894,Ocyrillic:1054,Odblacute:336,Odblgrave:524,Odieresis:214,Odieresiscyrillic:1254,Odieresissmall:63478,Odotbelow:7884,Ogoneksmall:63227,Ograve:210,Ogravesmall:63474,Oharmenian:1365,Ohm:8486,Ohookabove:7886,Ohorn:416,Ohornacute:7898,Ohorndotbelow:7906,Ohorngrave:7900,Ohornhookabove:7902,Ohorntilde:7904,Ohungarumlaut:336,Oi:418,Oinvertedbreve:526,Omacron:332,Omacronacute:7762,Omacrongrave:7760,Omega:8486,Omegacyrillic:1120,Omegagreek:937,Omegaroundcyrillic:1146,Omegatitlocyrillic:1148,Omegatonos:911,Omicron:927,Omicrontonos:908,Omonospace:65327,Oneroman:8544,Oogonek:490,Oogonekmacron:492,Oopen:390,Oslash:216,Oslashacute:510,Oslashsmall:63480,Osmall:63343,Ostrokeacute:510,Otcyrillic:1150,Otilde:213,Otildeacute:7756,Otildedieresis:7758,Otildesmall:63477,P:80,Pacute:7764,Pcircle:9413,Pdotaccent:7766,Pecyrillic:1055,Peharmenian:1354,Pemiddlehookcyrillic:1190,Phi:934,Phook:420,Pi:928,Piwrarmenian:1363,Pmonospace:65328,Psi:936,Psicyrillic:1136,Psmall:63344,Q:81,Qcircle:9414,Qmonospace:65329,Qsmall:63345,R:82,Raarmenian:1356,Racute:340,Rcaron:344,Rcedilla:342,Rcircle:9415,Rcommaaccent:342,Rdblgrave:528,Rdotaccent:7768,Rdotbelow:7770,Rdotbelowmacron:7772,Reharmenian:1360,Rfraktur:8476,Rho:929,Ringsmall:63228,Rinvertedbreve:530,Rlinebelow:7774,Rmonospace:65330,Rsmall:63346,Rsmallinverted:641,Rsmallinvertedsuperior:694,S:83,SF010000:9484,SF020000:9492,SF030000:9488,SF040000:9496,SF050000:9532,SF060000:9516,SF070000:9524,SF080000:9500,SF090000:9508,SF100000:9472,SF110000:9474,SF190000:9569,SF200000:9570,SF210000:9558,SF220000:9557,SF230000:9571,SF240000:9553,SF250000:9559,SF260000:9565,SF270000:9564,SF280000:9563,SF360000:9566,SF370000:9567,SF380000:9562,SF390000:9556,SF400000:9577,SF410000:9574,SF420000:9568,SF430000:9552,SF440000:9580,SF450000:9575,SF460000:9576,SF470000:9572,SF480000:9573,SF490000:9561,SF500000:9560,SF510000:9554,SF520000:9555,SF530000:9579,SF540000:9578,Sacute:346,Sacutedotaccent:7780,Sampigreek:992,Scaron:352,Scarondotaccent:7782,Scaronsmall:63229,Scedilla:350,Schwa:399,Schwacyrillic:1240,Schwadieresiscyrillic:1242,Scircle:9416,Scircumflex:348,Scommaaccent:536,Sdotaccent:7776,Sdotbelow:7778,Sdotbelowdotaccent:7784,Seharmenian:1357,Sevenroman:8550,Shaarmenian:1351,Shacyrillic:1064,Shchacyrillic:1065,Sheicoptic:994,Shhacyrillic:1210,Shimacoptic:1004,Sigma:931,Sixroman:8549,Smonospace:65331,Softsigncyrillic:1068,Ssmall:63347,Stigmagreek:986,T:84,Tau:932,Tbar:358,Tcaron:356,Tcedilla:354,Tcircle:9417,Tcircumflexbelow:7792,Tcommaaccent:354,Tdotaccent:7786,Tdotbelow:7788,Tecyrillic:1058,Tedescendercyrillic:1196,Tenroman:8553,Tetsecyrillic:1204,Theta:920,Thook:428,Thorn:222,Thornsmall:63486,Threeroman:8546,Tildesmall:63230,Tiwnarmenian:1359,Tlinebelow:7790,Tmonospace:65332,Toarmenian:1337,Tonefive:444,Tonesix:388,Tonetwo:423,Tretroflexhook:430,Tsecyrillic:1062,Tshecyrillic:1035,Tsmall:63348,Twelveroman:8555,Tworoman:8545,U:85,Uacute:218,Uacutesmall:63482,Ubreve:364,Ucaron:467,Ucircle:9418,Ucircumflex:219,Ucircumflexbelow:7798,Ucircumflexsmall:63483,Ucyrillic:1059,Udblacute:368,Udblgrave:532,Udieresis:220,Udieresisacute:471,Udieresisbelow:7794,Udieresiscaron:473,Udieresiscyrillic:1264,Udieresisgrave:475,Udieresismacron:469,Udieresissmall:63484,Udotbelow:7908,Ugrave:217,Ugravesmall:63481,Uhookabove:7910,Uhorn:431,Uhornacute:7912,Uhorndotbelow:7920,Uhorngrave:7914,Uhornhookabove:7916,Uhorntilde:7918,Uhungarumlaut:368,Uhungarumlautcyrillic:1266,Uinvertedbreve:534,Ukcyrillic:1144,Umacron:362,Umacroncyrillic:1262,Umacrondieresis:7802,Umonospace:65333,Uogonek:370,Upsilon:933,Upsilon1:978,Upsilonacutehooksymbolgreek:979,Upsilonafrican:433,Upsilondieresis:939,Upsilondieresishooksymbolgreek:980,Upsilonhooksymbol:978,Upsilontonos:910,Uring:366,Ushortcyrillic:1038,Usmall:63349,Ustraightcyrillic:1198,Ustraightstrokecyrillic:1200,Utilde:360,Utildeacute:7800,Utildebelow:7796,V:86,Vcircle:9419,Vdotbelow:7806,Vecyrillic:1042,Vewarmenian:1358,Vhook:434,Vmonospace:65334,Voarmenian:1352,Vsmall:63350,Vtilde:7804,W:87,Wacute:7810,Wcircle:9420,Wcircumflex:372,Wdieresis:7812,Wdotaccent:7814,Wdotbelow:7816,Wgrave:7808,Wmonospace:65335,Wsmall:63351,X:88,Xcircle:9421,Xdieresis:7820,Xdotaccent:7818,Xeharmenian:1341,Xi:926,Xmonospace:65336,Xsmall:63352,Y:89,Yacute:221,Yacutesmall:63485,Yatcyrillic:1122,Ycircle:9422,Ycircumflex:374,Ydieresis:376,Ydieresissmall:63487,Ydotaccent:7822,Ydotbelow:7924,Yericyrillic:1067,Yerudieresiscyrillic:1272,Ygrave:7922,Yhook:435,Yhookabove:7926,Yiarmenian:1349,Yicyrillic:1031,Yiwnarmenian:1362,Ymonospace:65337,Ysmall:63353,Ytilde:7928,Yusbigcyrillic:1130,Yusbigiotifiedcyrillic:1132,Yuslittlecyrillic:1126,Yuslittleiotifiedcyrillic:1128,Z:90,Zaarmenian:1334,Zacute:377,Zcaron:381,Zcaronsmall:63231,Zcircle:9423,Zcircumflex:7824,Zdot:379,Zdotaccent:379,Zdotbelow:7826,Zecyrillic:1047,Zedescendercyrillic:1176,Zedieresiscyrillic:1246,Zeta:918,Zhearmenian:1338,Zhebrevecyrillic:1217,Zhecyrillic:1046,Zhedescendercyrillic:1174,Zhedieresiscyrillic:1244,Zlinebelow:7828,Zmonospace:65338,Zsmall:63354,Zstroke:437,a:97,aabengali:2438,aacute:225,aadeva:2310,aagujarati:2694,aagurmukhi:2566,aamatragurmukhi:2622,aarusquare:13059,aavowelsignbengali:2494,aavowelsigndeva:2366,aavowelsigngujarati:2750,abbreviationmarkarmenian:1375,abbreviationsigndeva:2416,abengali:2437,abopomofo:12570,abreve:259,abreveacute:7855,abrevecyrillic:1233,abrevedotbelow:7863,abrevegrave:7857,abrevehookabove:7859,abrevetilde:7861,acaron:462,acircle:9424,acircumflex:226,acircumflexacute:7845,acircumflexdotbelow:7853,acircumflexgrave:7847,acircumflexhookabove:7849,acircumflextilde:7851,acute:180,acutebelowcmb:791,acutecmb:769,acutecomb:769,acutedeva:2388,acutelowmod:719,acutetonecmb:833,acyrillic:1072,adblgrave:513,addakgurmukhi:2673,adeva:2309,adieresis:228,adieresiscyrillic:1235,adieresismacron:479,adotbelow:7841,adotmacron:481,ae:230,aeacute:509,aekorean:12624,aemacron:483,afii00208:8213,afii08941:8356,afii10017:1040,afii10018:1041,afii10019:1042,afii10020:1043,afii10021:1044,afii10022:1045,afii10023:1025,afii10024:1046,afii10025:1047,afii10026:1048,afii10027:1049,afii10028:1050,afii10029:1051,afii10030:1052,afii10031:1053,afii10032:1054,afii10033:1055,afii10034:1056,afii10035:1057,afii10036:1058,afii10037:1059,afii10038:1060,afii10039:1061,afii10040:1062,afii10041:1063,afii10042:1064,afii10043:1065,afii10044:1066,afii10045:1067,afii10046:1068,afii10047:1069,afii10048:1070,afii10049:1071,afii10050:1168,afii10051:1026,afii10052:1027,afii10053:1028,afii10054:1029,afii10055:1030,afii10056:1031,afii10057:1032,afii10058:1033,afii10059:1034,afii10060:1035,afii10061:1036,afii10062:1038,afii10063:63172,afii10064:63173,afii10065:1072,afii10066:1073,afii10067:1074,afii10068:1075,afii10069:1076,afii10070:1077,afii10071:1105,afii10072:1078,afii10073:1079,afii10074:1080,afii10075:1081,afii10076:1082,afii10077:1083,afii10078:1084,afii10079:1085,afii10080:1086,afii10081:1087,afii10082:1088,afii10083:1089,afii10084:1090,afii10085:1091,afii10086:1092,afii10087:1093,afii10088:1094,afii10089:1095,afii10090:1096,afii10091:1097,afii10092:1098,afii10093:1099,afii10094:1100,afii10095:1101,afii10096:1102,afii10097:1103,afii10098:1169,afii10099:1106,afii10100:1107,afii10101:1108,afii10102:1109,afii10103:1110,afii10104:1111,afii10105:1112,afii10106:1113,afii10107:1114,afii10108:1115,afii10109:1116,afii10110:1118,afii10145:1039,afii10146:1122,afii10147:1138,afii10148:1140,afii10192:63174,afii10193:1119,afii10194:1123,afii10195:1139,afii10196:1141,afii10831:63175,afii10832:63176,afii10846:1241,afii299:8206,afii300:8207,afii301:8205,afii57381:1642,afii57388:1548,afii57392:1632,afii57393:1633,afii57394:1634,afii57395:1635,afii57396:1636,afii57397:1637,afii57398:1638,afii57399:1639,afii57400:1640,afii57401:1641,afii57403:1563,afii57407:1567,afii57409:1569,afii57410:1570,afii57411:1571,afii57412:1572,afii57413:1573,afii57414:1574,afii57415:1575,afii57416:1576,afii57417:1577,afii57418:1578,afii57419:1579,afii57420:1580,afii57421:1581,afii57422:1582,afii57423:1583,afii57424:1584,afii57425:1585,afii57426:1586,afii57427:1587,afii57428:1588,afii57429:1589,afii57430:1590,afii57431:1591,afii57432:1592,afii57433:1593,afii57434:1594,afii57440:1600,afii57441:1601,afii57442:1602,afii57443:1603,afii57444:1604,afii57445:1605,afii57446:1606,afii57448:1608,afii57449:1609,afii57450:1610,afii57451:1611,afii57452:1612,afii57453:1613,afii57454:1614,afii57455:1615,afii57456:1616,afii57457:1617,afii57458:1618,afii57470:1607,afii57505:1700,afii57506:1662,afii57507:1670,afii57508:1688,afii57509:1711,afii57511:1657,afii57512:1672,afii57513:1681,afii57514:1722,afii57519:1746,afii57534:1749,afii57636:8362,afii57645:1470,afii57658:1475,afii57664:1488,afii57665:1489,afii57666:1490,afii57667:1491,afii57668:1492,afii57669:1493,afii57670:1494,afii57671:1495,afii57672:1496,afii57673:1497,afii57674:1498,afii57675:1499,afii57676:1500,afii57677:1501,afii57678:1502,afii57679:1503,afii57680:1504,afii57681:1505,afii57682:1506,afii57683:1507,afii57684:1508,afii57685:1509,afii57686:1510,afii57687:1511,afii57688:1512,afii57689:1513,afii57690:1514,afii57694:64298,afii57695:64299,afii57700:64331,afii57705:64287,afii57716:1520,afii57717:1521,afii57718:1522,afii57723:64309,afii57793:1460,afii57794:1461,afii57795:1462,afii57796:1467,afii57797:1464,afii57798:1463,afii57799:1456,afii57800:1458,afii57801:1457,afii57802:1459,afii57803:1474,afii57804:1473,afii57806:1465,afii57807:1468,afii57839:1469,afii57841:1471,afii57842:1472,afii57929:700,afii61248:8453,afii61289:8467,afii61352:8470,afii61573:8236,afii61574:8237,afii61575:8238,afii61664:8204,afii63167:1645,afii64937:701,agrave:224,agujarati:2693,agurmukhi:2565,ahiragana:12354,ahookabove:7843,aibengali:2448,aibopomofo:12574,aideva:2320,aiecyrillic:1237,aigujarati:2704,aigurmukhi:2576,aimatragurmukhi:2632,ainarabic:1593,ainfinalarabic:65226,aininitialarabic:65227,ainmedialarabic:65228,ainvertedbreve:515,aivowelsignbengali:2504,aivowelsigndeva:2376,aivowelsigngujarati:2760,akatakana:12450,akatakanahalfwidth:65393,akorean:12623,alef:1488,alefarabic:1575,alefdageshhebrew:64304,aleffinalarabic:65166,alefhamzaabovearabic:1571,alefhamzaabovefinalarabic:65156,alefhamzabelowarabic:1573,alefhamzabelowfinalarabic:65160,alefhebrew:1488,aleflamedhebrew:64335,alefmaddaabovearabic:1570,alefmaddaabovefinalarabic:65154,alefmaksuraarabic:1609,alefmaksurafinalarabic:65264,alefmaksurainitialarabic:65267,alefmaksuramedialarabic:65268,alefpatahhebrew:64302,alefqamatshebrew:64303,aleph:8501,allequal:8780,alpha:945,alphatonos:940,amacron:257,amonospace:65345,ampersand:38,ampersandmonospace:65286,ampersandsmall:63270,amsquare:13250,anbopomofo:12578,angbopomofo:12580,angbracketleft:12296,angbracketright:12297,angkhankhuthai:3674,angle:8736,anglebracketleft:12296,anglebracketleftvertical:65087,anglebracketright:12297,anglebracketrightvertical:65088,angleleft:9001,angleright:9002,angstrom:8491,anoteleia:903,anudattadeva:2386,anusvarabengali:2434,anusvaradeva:2306,anusvaragujarati:2690,aogonek:261,apaatosquare:13056,aparen:9372,apostrophearmenian:1370,apostrophemod:700,apple:63743,approaches:8784,approxequal:8776,approxequalorimage:8786,approximatelyequal:8773,araeaekorean:12686,araeakorean:12685,arc:8978,arighthalfring:7834,aring:229,aringacute:507,aringbelow:7681,arrowboth:8596,arrowdashdown:8675,arrowdashleft:8672,arrowdashright:8674,arrowdashup:8673,arrowdblboth:8660,arrowdbldown:8659,arrowdblleft:8656,arrowdblright:8658,arrowdblup:8657,arrowdown:8595,arrowdownleft:8601,arrowdownright:8600,arrowdownwhite:8681,arrowheaddownmod:709,arrowheadleftmod:706,arrowheadrightmod:707,arrowheadupmod:708,arrowhorizex:63719,arrowleft:8592,arrowleftdbl:8656,arrowleftdblstroke:8653,arrowleftoverright:8646,arrowleftwhite:8678,arrowright:8594,arrowrightdblstroke:8655,arrowrightheavy:10142,arrowrightoverleft:8644,arrowrightwhite:8680,arrowtableft:8676,arrowtabright:8677,arrowup:8593,arrowupdn:8597,arrowupdnbse:8616,arrowupdownbase:8616,arrowupleft:8598,arrowupleftofdown:8645,arrowupright:8599,arrowupwhite:8679,arrowvertex:63718,asciicircum:94,asciicircummonospace:65342,asciitilde:126,asciitildemonospace:65374,ascript:593,ascriptturned:594,asmallhiragana:12353,asmallkatakana:12449,asmallkatakanahalfwidth:65383,asterisk:42,asteriskaltonearabic:1645,asteriskarabic:1645,asteriskmath:8727,asteriskmonospace:65290,asterisksmall:65121,asterism:8258,asuperior:63209,asymptoticallyequal:8771,at:64,atilde:227,atmonospace:65312,atsmall:65131,aturned:592,aubengali:2452,aubopomofo:12576,audeva:2324,augujarati:2708,augurmukhi:2580,aulengthmarkbengali:2519,aumatragurmukhi:2636,auvowelsignbengali:2508,auvowelsigndeva:2380,auvowelsigngujarati:2764,avagrahadeva:2365,aybarmenian:1377,ayin:1506,ayinaltonehebrew:64288,ayinhebrew:1506,b:98,babengali:2476,backslash:92,backslashmonospace:65340,badeva:2348,bagujarati:2732,bagurmukhi:2604,bahiragana:12400,bahtthai:3647,bakatakana:12496,bar:124,barmonospace:65372,bbopomofo:12549,bcircle:9425,bdotaccent:7683,bdotbelow:7685,beamedsixteenthnotes:9836,because:8757,becyrillic:1073,beharabic:1576,behfinalarabic:65168,behinitialarabic:65169,behiragana:12409,behmedialarabic:65170,behmeeminitialarabic:64671,behmeemisolatedarabic:64520,behnoonfinalarabic:64621,bekatakana:12505,benarmenian:1378,bet:1489,beta:946,betasymbolgreek:976,betdagesh:64305,betdageshhebrew:64305,bethebrew:1489,betrafehebrew:64332,bhabengali:2477,bhadeva:2349,bhagujarati:2733,bhagurmukhi:2605,bhook:595,bihiragana:12403,bikatakana:12499,bilabialclick:664,bindigurmukhi:2562,birusquare:13105,blackcircle:9679,blackdiamond:9670,blackdownpointingtriangle:9660,blackleftpointingpointer:9668,blackleftpointingtriangle:9664,blacklenticularbracketleft:12304,blacklenticularbracketleftvertical:65083,blacklenticularbracketright:12305,blacklenticularbracketrightvertical:65084,blacklowerlefttriangle:9699,blacklowerrighttriangle:9698,blackrectangle:9644,blackrightpointingpointer:9658,blackrightpointingtriangle:9654,blacksmallsquare:9642,blacksmilingface:9787,blacksquare:9632,blackstar:9733,blackupperlefttriangle:9700,blackupperrighttriangle:9701,blackuppointingsmalltriangle:9652,blackuppointingtriangle:9650,blank:9251,blinebelow:7687,block:9608,bmonospace:65346,bobaimaithai:3610,bohiragana:12412,bokatakana:12508,bparen:9373,bqsquare:13251,braceex:63732,braceleft:123,braceleftbt:63731,braceleftmid:63730,braceleftmonospace:65371,braceleftsmall:65115,bracelefttp:63729,braceleftvertical:65079,braceright:125,bracerightbt:63742,bracerightmid:63741,bracerightmonospace:65373,bracerightsmall:65116,bracerighttp:63740,bracerightvertical:65080,bracketleft:91,bracketleftbt:63728,bracketleftex:63727,bracketleftmonospace:65339,bracketlefttp:63726,bracketright:93,bracketrightbt:63739,bracketrightex:63738,bracketrightmonospace:65341,bracketrighttp:63737,breve:728,brevebelowcmb:814,brevecmb:774,breveinvertedbelowcmb:815,breveinvertedcmb:785,breveinverteddoublecmb:865,bridgebelowcmb:810,bridgeinvertedbelowcmb:826,brokenbar:166,bstroke:384,bsuperior:63210,btopbar:387,buhiragana:12406,bukatakana:12502,bullet:8226,bulletinverse:9688,bulletoperator:8729,bullseye:9678,c:99,caarmenian:1390,cabengali:2458,cacute:263,cadeva:2330,cagujarati:2714,cagurmukhi:2586,calsquare:13192,candrabindubengali:2433,candrabinducmb:784,candrabindudeva:2305,candrabindugujarati:2689,capslock:8682,careof:8453,caron:711,caronbelowcmb:812,caroncmb:780,carriagereturn:8629,cbopomofo:12568,ccaron:269,ccedilla:231,ccedillaacute:7689,ccircle:9426,ccircumflex:265,ccurl:597,cdot:267,cdotaccent:267,cdsquare:13253,cedilla:184,cedillacmb:807,cent:162,centigrade:8451,centinferior:63199,centmonospace:65504,centoldstyle:63394,centsuperior:63200,chaarmenian:1401,chabengali:2459,chadeva:2331,chagujarati:2715,chagurmukhi:2587,chbopomofo:12564,cheabkhasiancyrillic:1213,checkmark:10003,checyrillic:1095,chedescenderabkhasiancyrillic:1215,chedescendercyrillic:1207,chedieresiscyrillic:1269,cheharmenian:1395,chekhakassiancyrillic:1228,cheverticalstrokecyrillic:1209,chi:967,chieuchacirclekorean:12919,chieuchaparenkorean:12823,chieuchcirclekorean:12905,chieuchkorean:12618,chieuchparenkorean:12809,chochangthai:3594,chochanthai:3592,chochingthai:3593,chochoethai:3596,chook:392,cieucacirclekorean:12918,cieucaparenkorean:12822,cieuccirclekorean:12904,cieuckorean:12616,cieucparenkorean:12808,cieucuparenkorean:12828,circle:9675,circlecopyrt:169,circlemultiply:8855,circleot:8857,circleplus:8853,circlepostalmark:12342,circlewithlefthalfblack:9680,circlewithrighthalfblack:9681,circumflex:710,circumflexbelowcmb:813,circumflexcmb:770,clear:8999,clickalveolar:450,clickdental:448,clicklateral:449,clickretroflex:451,club:9827,clubsuitblack:9827,clubsuitwhite:9831,cmcubedsquare:13220,cmonospace:65347,cmsquaredsquare:13216,coarmenian:1409,colon:58,colonmonetary:8353,colonmonospace:65306,colonsign:8353,colonsmall:65109,colontriangularhalfmod:721,colontriangularmod:720,comma:44,commaabovecmb:787,commaaboverightcmb:789,commaaccent:63171,commaarabic:1548,commaarmenian:1373,commainferior:63201,commamonospace:65292,commareversedabovecmb:788,commareversedmod:701,commasmall:65104,commasuperior:63202,commaturnedabovecmb:786,commaturnedmod:699,compass:9788,congruent:8773,contourintegral:8750,control:8963,controlACK:6,controlBEL:7,controlBS:8,controlCAN:24,controlCR:13,controlDC1:17,controlDC2:18,controlDC3:19,controlDC4:20,controlDEL:127,controlDLE:16,controlEM:25,controlENQ:5,controlEOT:4,controlESC:27,controlETB:23,controlETX:3,controlFF:12,controlFS:28,controlGS:29,controlHT:9,controlLF:10,controlNAK:21,controlRS:30,controlSI:15,controlSO:14,controlSOT:2,controlSTX:1,controlSUB:26,controlSYN:22,controlUS:31,controlVT:11,copyright:169,copyrightsans:63721,copyrightserif:63193,cornerbracketleft:12300,cornerbracketlefthalfwidth:65378,cornerbracketleftvertical:65089,cornerbracketright:12301,cornerbracketrighthalfwidth:65379,cornerbracketrightvertical:65090,corporationsquare:13183,cosquare:13255,coverkgsquare:13254,cparen:9374,cruzeiro:8354,cstretched:663,curlyand:8911,curlyor:8910,currency:164,cyrBreve:63185,cyrFlex:63186,cyrbreve:63188,cyrflex:63189,d:100,daarmenian:1380,dabengali:2470,dadarabic:1590,dadeva:2342,dadfinalarabic:65214,dadinitialarabic:65215,dadmedialarabic:65216,dagesh:1468,dageshhebrew:1468,dagger:8224,daggerdbl:8225,dagujarati:2726,dagurmukhi:2598,dahiragana:12384,dakatakana:12480,dalarabic:1583,dalet:1491,daletdagesh:64307,daletdageshhebrew:64307,dalethebrew:1491,dalfinalarabic:65194,dammaarabic:1615,dammalowarabic:1615,dammatanaltonearabic:1612,dammatanarabic:1612,danda:2404,dargahebrew:1447,dargalefthebrew:1447,dasiapneumatacyrilliccmb:1157,dblGrave:63187,dblanglebracketleft:12298,dblanglebracketleftvertical:65085,dblanglebracketright:12299,dblanglebracketrightvertical:65086,dblarchinvertedbelowcmb:811,dblarrowleft:8660,dblarrowright:8658,dbldanda:2405,dblgrave:63190,dblgravecmb:783,dblintegral:8748,dbllowline:8215,dbllowlinecmb:819,dbloverlinecmb:831,dblprimemod:698,dblverticalbar:8214,dblverticallineabovecmb:782,dbopomofo:12553,dbsquare:13256,dcaron:271,dcedilla:7697,dcircle:9427,dcircumflexbelow:7699,dcroat:273,ddabengali:2465,ddadeva:2337,ddagujarati:2721,ddagurmukhi:2593,ddalarabic:1672,ddalfinalarabic:64393,dddhadeva:2396,ddhabengali:2466,ddhadeva:2338,ddhagujarati:2722,ddhagurmukhi:2594,ddotaccent:7691,ddotbelow:7693,decimalseparatorarabic:1643,decimalseparatorpersian:1643,decyrillic:1076,degree:176,dehihebrew:1453,dehiragana:12391,deicoptic:1007,dekatakana:12487,deleteleft:9003,deleteright:8998,delta:948,deltaturned:397,denominatorminusonenumeratorbengali:2552,dezh:676,dhabengali:2471,dhadeva:2343,dhagujarati:2727,dhagurmukhi:2599,dhook:599,dialytikatonos:901,dialytikatonoscmb:836,diamond:9830,diamondsuitwhite:9826,dieresis:168,dieresisacute:63191,dieresisbelowcmb:804,dieresiscmb:776,dieresisgrave:63192,dieresistonos:901,dihiragana:12386,dikatakana:12482,dittomark:12291,divide:247,divides:8739,divisionslash:8725,djecyrillic:1106,dkshade:9619,dlinebelow:7695,dlsquare:13207,dmacron:273,dmonospace:65348,dnblock:9604,dochadathai:3598,dodekthai:3604,dohiragana:12393,dokatakana:12489,dollar:36,dollarinferior:63203,dollarmonospace:65284,dollaroldstyle:63268,dollarsmall:65129,dollarsuperior:63204,dong:8363,dorusquare:13094,dotaccent:729,dotaccentcmb:775,dotbelowcmb:803,dotbelowcomb:803,dotkatakana:12539,dotlessi:305,dotlessj:63166,dotlessjstrokehook:644,dotmath:8901,dottedcircle:9676,doubleyodpatah:64287,doubleyodpatahhebrew:64287,downtackbelowcmb:798,downtackmod:725,dparen:9375,dsuperior:63211,dtail:598,dtopbar:396,duhiragana:12389,dukatakana:12485,dz:499,dzaltone:675,dzcaron:454,dzcurl:677,dzeabkhasiancyrillic:1249,dzecyrillic:1109,dzhecyrillic:1119,e:101,eacute:233,earth:9793,ebengali:2447,ebopomofo:12572,ebreve:277,ecandradeva:2317,ecandragujarati:2701,ecandravowelsigndeva:2373,ecandravowelsigngujarati:2757,ecaron:283,ecedillabreve:7709,echarmenian:1381,echyiwnarmenian:1415,ecircle:9428,ecircumflex:234,ecircumflexacute:7871,ecircumflexbelow:7705,ecircumflexdotbelow:7879,ecircumflexgrave:7873,ecircumflexhookabove:7875,ecircumflextilde:7877,ecyrillic:1108,edblgrave:517,edeva:2319,edieresis:235,edot:279,edotaccent:279,edotbelow:7865,eegurmukhi:2575,eematragurmukhi:2631,efcyrillic:1092,egrave:232,egujarati:2703,eharmenian:1383,ehbopomofo:12573,ehiragana:12360,ehookabove:7867,eibopomofo:12575,eight:56,eightarabic:1640,eightbengali:2542,eightcircle:9319,eightcircleinversesansserif:10129,eightdeva:2414,eighteencircle:9329,eighteenparen:9349,eighteenperiod:9369,eightgujarati:2798,eightgurmukhi:2670,eighthackarabic:1640,eighthangzhou:12328,eighthnotebeamed:9835,eightideographicparen:12839,eightinferior:8328,eightmonospace:65304,eightoldstyle:63288,eightparen:9339,eightperiod:9359,eightpersian:1784,eightroman:8567,eightsuperior:8312,eightthai:3672,einvertedbreve:519,eiotifiedcyrillic:1125,ekatakana:12456,ekatakanahalfwidth:65396,ekonkargurmukhi:2676,ekorean:12628,elcyrillic:1083,element:8712,elevencircle:9322,elevenparen:9342,elevenperiod:9362,elevenroman:8570,ellipsis:8230,ellipsisvertical:8942,emacron:275,emacronacute:7703,emacrongrave:7701,emcyrillic:1084,emdash:8212,emdashvertical:65073,emonospace:65349,emphasismarkarmenian:1371,emptyset:8709,enbopomofo:12579,encyrillic:1085,endash:8211,endashvertical:65074,endescendercyrillic:1187,eng:331,engbopomofo:12581,enghecyrillic:1189,enhookcyrillic:1224,enspace:8194,eogonek:281,eokorean:12627,eopen:603,eopenclosed:666,eopenreversed:604,eopenreversedclosed:606,eopenreversedhook:605,eparen:9376,epsilon:949,epsilontonos:941,equal:61,equalmonospace:65309,equalsmall:65126,equalsuperior:8316,equivalence:8801,erbopomofo:12582,ercyrillic:1088,ereversed:600,ereversedcyrillic:1101,escyrillic:1089,esdescendercyrillic:1195,esh:643,eshcurl:646,eshortdeva:2318,eshortvowelsigndeva:2374,eshreversedloop:426,eshsquatreversed:645,esmallhiragana:12359,esmallkatakana:12455,esmallkatakanahalfwidth:65386,estimated:8494,esuperior:63212,eta:951,etarmenian:1384,etatonos:942,eth:240,etilde:7869,etildebelow:7707,etnahtafoukhhebrew:1425,etnahtafoukhlefthebrew:1425,etnahtahebrew:1425,etnahtalefthebrew:1425,eturned:477,eukorean:12641,euro:8364,evowelsignbengali:2503,evowelsigndeva:2375,evowelsigngujarati:2759,exclam:33,exclamarmenian:1372,exclamdbl:8252,exclamdown:161,exclamdownsmall:63393,exclammonospace:65281,exclamsmall:63265,existential:8707,ezh:658,ezhcaron:495,ezhcurl:659,ezhreversed:441,ezhtail:442,f:102,fadeva:2398,fagurmukhi:2654,fahrenheit:8457,fathaarabic:1614,fathalowarabic:1614,fathatanarabic:1611,fbopomofo:12552,fcircle:9429,fdotaccent:7711,feharabic:1601,feharmenian:1414,fehfinalarabic:65234,fehinitialarabic:65235,fehmedialarabic:65236,feicoptic:997,female:9792,ff:64256,ffi:64259,ffl:64260,fi:64257,fifteencircle:9326,fifteenparen:9346,fifteenperiod:9366,figuredash:8210,filledbox:9632,filledrect:9644,finalkaf:1498,finalkafdagesh:64314,finalkafdageshhebrew:64314,finalkafhebrew:1498,finalmem:1501,finalmemhebrew:1501,finalnun:1503,finalnunhebrew:1503,finalpe:1507,finalpehebrew:1507,finaltsadi:1509,finaltsadihebrew:1509,firsttonechinese:713,fisheye:9673,fitacyrillic:1139,five:53,fivearabic:1637,fivebengali:2539,fivecircle:9316,fivecircleinversesansserif:10126,fivedeva:2411,fiveeighths:8541,fivegujarati:2795,fivegurmukhi:2667,fivehackarabic:1637,fivehangzhou:12325,fiveideographicparen:12836,fiveinferior:8325,fivemonospace:65301,fiveoldstyle:63285,fiveparen:9336,fiveperiod:9356,fivepersian:1781,fiveroman:8564,fivesuperior:8309,fivethai:3669,fl:64258,florin:402,fmonospace:65350,fmsquare:13209,fofanthai:3615,fofathai:3613,fongmanthai:3663,forall:8704,four:52,fourarabic:1636,fourbengali:2538,fourcircle:9315,fourcircleinversesansserif:10125,fourdeva:2410,fourgujarati:2794,fourgurmukhi:2666,fourhackarabic:1636,fourhangzhou:12324,fourideographicparen:12835,fourinferior:8324,fourmonospace:65300,fournumeratorbengali:2551,fouroldstyle:63284,fourparen:9335,fourperiod:9355,fourpersian:1780,fourroman:8563,foursuperior:8308,fourteencircle:9325,fourteenparen:9345,fourteenperiod:9365,fourthai:3668,fourthtonechinese:715,fparen:9377,fraction:8260,franc:8355,g:103,gabengali:2455,gacute:501,gadeva:2327,gafarabic:1711,gaffinalarabic:64403,gafinitialarabic:64404,gafmedialarabic:64405,gagujarati:2711,gagurmukhi:2583,gahiragana:12364,gakatakana:12460,gamma:947,gammalatinsmall:611,gammasuperior:736,gangiacoptic:1003,gbopomofo:12557,gbreve:287,gcaron:487,gcedilla:291,gcircle:9430,gcircumflex:285,gcommaaccent:291,gdot:289,gdotaccent:289,gecyrillic:1075,gehiragana:12370,gekatakana:12466,geometricallyequal:8785,gereshaccenthebrew:1436,gereshhebrew:1523,gereshmuqdamhebrew:1437,germandbls:223,gershayimaccenthebrew:1438,gershayimhebrew:1524,getamark:12307,ghabengali:2456,ghadarmenian:1394,ghadeva:2328,ghagujarati:2712,ghagurmukhi:2584,ghainarabic:1594,ghainfinalarabic:65230,ghaininitialarabic:65231,ghainmedialarabic:65232,ghemiddlehookcyrillic:1173,ghestrokecyrillic:1171,gheupturncyrillic:1169,ghhadeva:2394,ghhagurmukhi:2650,ghook:608,ghzsquare:13203,gihiragana:12366,gikatakana:12462,gimarmenian:1379,gimel:1490,gimeldagesh:64306,gimeldageshhebrew:64306,gimelhebrew:1490,gjecyrillic:1107,glottalinvertedstroke:446,glottalstop:660,glottalstopinverted:662,glottalstopmod:704,glottalstopreversed:661,glottalstopreversedmod:705,glottalstopreversedsuperior:740,glottalstopstroke:673,glottalstopstrokereversed:674,gmacron:7713,gmonospace:65351,gohiragana:12372,gokatakana:12468,gparen:9378,gpasquare:13228,gradient:8711,grave:96,gravebelowcmb:790,gravecmb:768,gravecomb:768,gravedeva:2387,gravelowmod:718,gravemonospace:65344,gravetonecmb:832,greater:62,greaterequal:8805,greaterequalorless:8923,greatermonospace:65310,greaterorequivalent:8819,greaterorless:8823,greateroverequal:8807,greatersmall:65125,gscript:609,gstroke:485,guhiragana:12368,guillemotleft:171,guillemotright:187,guilsinglleft:8249,guilsinglright:8250,gukatakana:12464,guramusquare:13080,gysquare:13257,h:104,haabkhasiancyrillic:1193,haaltonearabic:1729,habengali:2489,hadescendercyrillic:1203,hadeva:2361,hagujarati:2745,hagurmukhi:2617,haharabic:1581,hahfinalarabic:65186,hahinitialarabic:65187,hahiragana:12399,hahmedialarabic:65188,haitusquare:13098,hakatakana:12495,hakatakanahalfwidth:65418,halantgurmukhi:2637,hamzaarabic:1569,hamzalowarabic:1569,hangulfiller:12644,hardsigncyrillic:1098,harpoonleftbarbup:8636,harpoonrightbarbup:8640,hasquare:13258,hatafpatah:1458,hatafpatah16:1458,hatafpatah23:1458,hatafpatah2f:1458,hatafpatahhebrew:1458,hatafpatahnarrowhebrew:1458,hatafpatahquarterhebrew:1458,hatafpatahwidehebrew:1458,hatafqamats:1459,hatafqamats1b:1459,hatafqamats28:1459,hatafqamats34:1459,hatafqamatshebrew:1459,hatafqamatsnarrowhebrew:1459,hatafqamatsquarterhebrew:1459,hatafqamatswidehebrew:1459,hatafsegol:1457,hatafsegol17:1457,hatafsegol24:1457,hatafsegol30:1457,hatafsegolhebrew:1457,hatafsegolnarrowhebrew:1457,hatafsegolquarterhebrew:1457,hatafsegolwidehebrew:1457,hbar:295,hbopomofo:12559,hbrevebelow:7723,hcedilla:7721,hcircle:9431,hcircumflex:293,hdieresis:7719,hdotaccent:7715,hdotbelow:7717,he:1492,heart:9829,heartsuitblack:9829,heartsuitwhite:9825,hedagesh:64308,hedageshhebrew:64308,hehaltonearabic:1729,heharabic:1607,hehebrew:1492,hehfinalaltonearabic:64423,hehfinalalttwoarabic:65258,hehfinalarabic:65258,hehhamzaabovefinalarabic:64421,hehhamzaaboveisolatedarabic:64420,hehinitialaltonearabic:64424,hehinitialarabic:65259,hehiragana:12408,hehmedialaltonearabic:64425,hehmedialarabic:65260,heiseierasquare:13179,hekatakana:12504,hekatakanahalfwidth:65421,hekutaarusquare:13110,henghook:615,herutusquare:13113,het:1495,hethebrew:1495,hhook:614,hhooksuperior:689,hieuhacirclekorean:12923,hieuhaparenkorean:12827,hieuhcirclekorean:12909,hieuhkorean:12622,hieuhparenkorean:12813,hihiragana:12402,hikatakana:12498,hikatakanahalfwidth:65419,hiriq:1460,hiriq14:1460,hiriq21:1460,hiriq2d:1460,hiriqhebrew:1460,hiriqnarrowhebrew:1460,hiriqquarterhebrew:1460,hiriqwidehebrew:1460,hlinebelow:7830,hmonospace:65352,hoarmenian:1392,hohipthai:3627,hohiragana:12411,hokatakana:12507,hokatakanahalfwidth:65422,holam:1465,holam19:1465,holam26:1465,holam32:1465,holamhebrew:1465,holamnarrowhebrew:1465,holamquarterhebrew:1465,holamwidehebrew:1465,honokhukthai:3630,hookabovecomb:777,hookcmb:777,hookpalatalizedbelowcmb:801,hookretroflexbelowcmb:802,hoonsquare:13122,horicoptic:1001,horizontalbar:8213,horncmb:795,hotsprings:9832,house:8962,hparen:9379,hsuperior:688,hturned:613,huhiragana:12405,huiitosquare:13107,hukatakana:12501,hukatakanahalfwidth:65420,hungarumlaut:733,hungarumlautcmb:779,hv:405,hyphen:45,hypheninferior:63205,hyphenmonospace:65293,hyphensmall:65123,hyphensuperior:63206,hyphentwo:8208,i:105,iacute:237,iacyrillic:1103,ibengali:2439,ibopomofo:12583,ibreve:301,icaron:464,icircle:9432,icircumflex:238,icyrillic:1110,idblgrave:521,ideographearthcircle:12943,ideographfirecircle:12939,ideographicallianceparen:12863,ideographiccallparen:12858,ideographiccentrecircle:12965,ideographicclose:12294,ideographiccomma:12289,ideographiccommaleft:65380,ideographiccongratulationparen:12855,ideographiccorrectcircle:12963,ideographicearthparen:12847,ideographicenterpriseparen:12861,ideographicexcellentcircle:12957,ideographicfestivalparen:12864,ideographicfinancialcircle:12950,ideographicfinancialparen:12854,ideographicfireparen:12843,ideographichaveparen:12850,ideographichighcircle:12964,ideographiciterationmark:12293,ideographiclaborcircle:12952,ideographiclaborparen:12856,ideographicleftcircle:12967,ideographiclowcircle:12966,ideographicmedicinecircle:12969,ideographicmetalparen:12846,ideographicmoonparen:12842,ideographicnameparen:12852,ideographicperiod:12290,ideographicprintcircle:12958,ideographicreachparen:12867,ideographicrepresentparen:12857,ideographicresourceparen:12862,ideographicrightcircle:12968,ideographicsecretcircle:12953,ideographicselfparen:12866,ideographicsocietyparen:12851,ideographicspace:12288,ideographicspecialparen:12853,ideographicstockparen:12849,ideographicstudyparen:12859,ideographicsunparen:12848,ideographicsuperviseparen:12860,ideographicwaterparen:12844,ideographicwoodparen:12845,ideographiczero:12295,ideographmetalcircle:12942,ideographmooncircle:12938,ideographnamecircle:12948,ideographsuncircle:12944,ideographwatercircle:12940,ideographwoodcircle:12941,ideva:2311,idieresis:239,idieresisacute:7727,idieresiscyrillic:1253,idotbelow:7883,iebrevecyrillic:1239,iecyrillic:1077,ieungacirclekorean:12917,ieungaparenkorean:12821,ieungcirclekorean:12903,ieungkorean:12615,ieungparenkorean:12807,igrave:236,igujarati:2695,igurmukhi:2567,ihiragana:12356,ihookabove:7881,iibengali:2440,iicyrillic:1080,iideva:2312,iigujarati:2696,iigurmukhi:2568,iimatragurmukhi:2624,iinvertedbreve:523,iishortcyrillic:1081,iivowelsignbengali:2496,iivowelsigndeva:2368,iivowelsigngujarati:2752,ij:307,ikatakana:12452,ikatakanahalfwidth:65394,ikorean:12643,ilde:732,iluyhebrew:1452,imacron:299,imacroncyrillic:1251,imageorapproximatelyequal:8787,imatragurmukhi:2623,imonospace:65353,increment:8710,infinity:8734,iniarmenian:1387,integral:8747,integralbottom:8993,integralbt:8993,integralex:63733,integraltop:8992,integraltp:8992,intersection:8745,intisquare:13061,invbullet:9688,invcircle:9689,invsmileface:9787,iocyrillic:1105,iogonek:303,iota:953,iotadieresis:970,iotadieresistonos:912,iotalatin:617,iotatonos:943,iparen:9380,irigurmukhi:2674,ismallhiragana:12355,ismallkatakana:12451,ismallkatakanahalfwidth:65384,issharbengali:2554,istroke:616,isuperior:63213,iterationhiragana:12445,iterationkatakana:12541,itilde:297,itildebelow:7725,iubopomofo:12585,iucyrillic:1102,ivowelsignbengali:2495,ivowelsigndeva:2367,ivowelsigngujarati:2751,izhitsacyrillic:1141,izhitsadblgravecyrillic:1143,j:106,jaarmenian:1393,jabengali:2460,jadeva:2332,jagujarati:2716,jagurmukhi:2588,jbopomofo:12560,jcaron:496,jcircle:9433,jcircumflex:309,jcrossedtail:669,jdotlessstroke:607,jecyrillic:1112,jeemarabic:1580,jeemfinalarabic:65182,jeeminitialarabic:65183,jeemmedialarabic:65184,jeharabic:1688,jehfinalarabic:64395,jhabengali:2461,jhadeva:2333,jhagujarati:2717,jhagurmukhi:2589,jheharmenian:1403,jis:12292,jmonospace:65354,jparen:9381,jsuperior:690,k:107,kabashkircyrillic:1185,kabengali:2453,kacute:7729,kacyrillic:1082,kadescendercyrillic:1179,kadeva:2325,kaf:1499,kafarabic:1603,kafdagesh:64315,kafdageshhebrew:64315,kaffinalarabic:65242,kafhebrew:1499,kafinitialarabic:65243,kafmedialarabic:65244,kafrafehebrew:64333,kagujarati:2709,kagurmukhi:2581,kahiragana:12363,kahookcyrillic:1220,kakatakana:12459,kakatakanahalfwidth:65398,kappa:954,kappasymbolgreek:1008,kapyeounmieumkorean:12657,kapyeounphieuphkorean:12676,kapyeounpieupkorean:12664,kapyeounssangpieupkorean:12665,karoriisquare:13069,kashidaautoarabic:1600,kashidaautonosidebearingarabic:1600,kasmallkatakana:12533,kasquare:13188,kasraarabic:1616,kasratanarabic:1613,kastrokecyrillic:1183,katahiraprolongmarkhalfwidth:65392,kaverticalstrokecyrillic:1181,kbopomofo:12558,kcalsquare:13193,kcaron:489,kcedilla:311,kcircle:9434,kcommaaccent:311,kdotbelow:7731,keharmenian:1412,kehiragana:12369,kekatakana:12465,kekatakanahalfwidth:65401,kenarmenian:1391,kesmallkatakana:12534,kgreenlandic:312,khabengali:2454,khacyrillic:1093,khadeva:2326,khagujarati:2710,khagurmukhi:2582,khaharabic:1582,khahfinalarabic:65190,khahinitialarabic:65191,khahmedialarabic:65192,kheicoptic:999,khhadeva:2393,khhagurmukhi:2649,khieukhacirclekorean:12920,khieukhaparenkorean:12824,khieukhcirclekorean:12906,khieukhkorean:12619,khieukhparenkorean:12810,khokhaithai:3586,khokhonthai:3589,khokhuatthai:3587,khokhwaithai:3588,khomutthai:3675,khook:409,khorakhangthai:3590,khzsquare:13201,kihiragana:12365,kikatakana:12461,kikatakanahalfwidth:65399,kiroguramusquare:13077,kiromeetorusquare:13078,kirosquare:13076,kiyeokacirclekorean:12910,kiyeokaparenkorean:12814,kiyeokcirclekorean:12896,kiyeokkorean:12593,kiyeokparenkorean:12800,kiyeoksioskorean:12595,kjecyrillic:1116,klinebelow:7733,klsquare:13208,kmcubedsquare:13222,kmonospace:65355,kmsquaredsquare:13218,kohiragana:12371,kohmsquare:13248,kokaithai:3585,kokatakana:12467,kokatakanahalfwidth:65402,kooposquare:13086,koppacyrillic:1153,koreanstandardsymbol:12927,koroniscmb:835,kparen:9382,kpasquare:13226,ksicyrillic:1135,ktsquare:13263,kturned:670,kuhiragana:12367,kukatakana:12463,kukatakanahalfwidth:65400,kvsquare:13240,kwsquare:13246,l:108,labengali:2482,lacute:314,ladeva:2354,lagujarati:2738,lagurmukhi:2610,lakkhangyaothai:3653,lamaleffinalarabic:65276,lamalefhamzaabovefinalarabic:65272,lamalefhamzaaboveisolatedarabic:65271,lamalefhamzabelowfinalarabic:65274,lamalefhamzabelowisolatedarabic:65273,lamalefisolatedarabic:65275,lamalefmaddaabovefinalarabic:65270,lamalefmaddaaboveisolatedarabic:65269,lamarabic:1604,lambda:955,lambdastroke:411,lamed:1500,lameddagesh:64316,lameddageshhebrew:64316,lamedhebrew:1500,lamfinalarabic:65246,lamhahinitialarabic:64714,laminitialarabic:65247,lamjeeminitialarabic:64713,lamkhahinitialarabic:64715,lamlamhehisolatedarabic:65010,lammedialarabic:65248,lammeemhahinitialarabic:64904,lammeeminitialarabic:64716,largecircle:9711,lbar:410,lbelt:620,lbopomofo:12556,lcaron:318,lcedilla:316,lcircle:9435,lcircumflexbelow:7741,lcommaaccent:316,ldot:320,ldotaccent:320,ldotbelow:7735,ldotbelowmacron:7737,leftangleabovecmb:794,lefttackbelowcmb:792,less:60,lessequal:8804,lessequalorgreater:8922,lessmonospace:65308,lessorequivalent:8818,lessorgreater:8822,lessoverequal:8806,lesssmall:65124,lezh:622,lfblock:9612,lhookretroflex:621,lira:8356,liwnarmenian:1388,lj:457,ljecyrillic:1113,ll:63168,lladeva:2355,llagujarati:2739,llinebelow:7739,llladeva:2356,llvocalicbengali:2529,llvocalicdeva:2401,llvocalicvowelsignbengali:2531,llvocalicvowelsigndeva:2403,lmiddletilde:619,lmonospace:65356,lmsquare:13264,lochulathai:3628,logicaland:8743,logicalnot:172,logicalnotreversed:8976,logicalor:8744,lolingthai:3621,longs:383,lowlinecenterline:65102,lowlinecmb:818,lowlinedashed:65101,lozenge:9674,lparen:9383,lslash:322,lsquare:8467,lsuperior:63214,ltshade:9617,luthai:3622,lvocalicbengali:2444,lvocalicdeva:2316,lvocalicvowelsignbengali:2530,lvocalicvowelsigndeva:2402,lxsquare:13267,m:109,mabengali:2478,macron:175,macronbelowcmb:817,macroncmb:772,macronlowmod:717,macronmonospace:65507,macute:7743,madeva:2350,magujarati:2734,magurmukhi:2606,mahapakhhebrew:1444,mahapakhlefthebrew:1444,mahiragana:12414,maichattawalowleftthai:63637,maichattawalowrightthai:63636,maichattawathai:3659,maichattawaupperleftthai:63635,maieklowleftthai:63628,maieklowrightthai:63627,maiekthai:3656,maiekupperleftthai:63626,maihanakatleftthai:63620,maihanakatthai:3633,maitaikhuleftthai:63625,maitaikhuthai:3655,maitholowleftthai:63631,maitholowrightthai:63630,maithothai:3657,maithoupperleftthai:63629,maitrilowleftthai:63634,maitrilowrightthai:63633,maitrithai:3658,maitriupperleftthai:63632,maiyamokthai:3654,makatakana:12510,makatakanahalfwidth:65423,male:9794,mansyonsquare:13127,maqafhebrew:1470,mars:9794,masoracirclehebrew:1455,masquare:13187,mbopomofo:12551,mbsquare:13268,mcircle:9436,mcubedsquare:13221,mdotaccent:7745,mdotbelow:7747,meemarabic:1605,meemfinalarabic:65250,meeminitialarabic:65251,meemmedialarabic:65252,meemmeeminitialarabic:64721,meemmeemisolatedarabic:64584,meetorusquare:13133,mehiragana:12417,meizierasquare:13182,mekatakana:12513,mekatakanahalfwidth:65426,mem:1502,memdagesh:64318,memdageshhebrew:64318,memhebrew:1502,menarmenian:1396,merkhahebrew:1445,merkhakefulahebrew:1446,merkhakefulalefthebrew:1446,merkhalefthebrew:1445,mhook:625,mhzsquare:13202,middledotkatakanahalfwidth:65381,middot:183,mieumacirclekorean:12914,mieumaparenkorean:12818,mieumcirclekorean:12900,mieumkorean:12609,mieumpansioskorean:12656,mieumparenkorean:12804,mieumpieupkorean:12654,mieumsioskorean:12655,mihiragana:12415,mikatakana:12511,mikatakanahalfwidth:65424,minus:8722,minusbelowcmb:800,minuscircle:8854,minusmod:727,minusplus:8723,minute:8242,miribaarusquare:13130,mirisquare:13129,mlonglegturned:624,mlsquare:13206,mmcubedsquare:13219,mmonospace:65357,mmsquaredsquare:13215,mohiragana:12418,mohmsquare:13249,mokatakana:12514,mokatakanahalfwidth:65427,molsquare:13270,momathai:3617,moverssquare:13223,moverssquaredsquare:13224,mparen:9384,mpasquare:13227,mssquare:13235,msuperior:63215,mturned:623,mu:181,mu1:181,muasquare:13186,muchgreater:8811,muchless:8810,mufsquare:13196,mugreek:956,mugsquare:13197,muhiragana:12416,mukatakana:12512,mukatakanahalfwidth:65425,mulsquare:13205,multiply:215,mumsquare:13211,munahhebrew:1443,munahlefthebrew:1443,musicalnote:9834,musicalnotedbl:9835,musicflatsign:9837,musicsharpsign:9839,mussquare:13234,muvsquare:13238,muwsquare:13244,mvmegasquare:13241,mvsquare:13239,mwmegasquare:13247,mwsquare:13245,n:110,nabengali:2472,nabla:8711,nacute:324,nadeva:2344,nagujarati:2728,nagurmukhi:2600,nahiragana:12394,nakatakana:12490,nakatakanahalfwidth:65413,napostrophe:329,nasquare:13185,nbopomofo:12555,nbspace:160,ncaron:328,ncedilla:326,ncircle:9437,ncircumflexbelow:7755,ncommaaccent:326,ndotaccent:7749,ndotbelow:7751,nehiragana:12397,nekatakana:12493,nekatakanahalfwidth:65416,newsheqelsign:8362,nfsquare:13195,ngabengali:2457,ngadeva:2329,ngagujarati:2713,ngagurmukhi:2585,ngonguthai:3591,nhiragana:12435,nhookleft:626,nhookretroflex:627,nieunacirclekorean:12911,nieunaparenkorean:12815,nieuncieuckorean:12597,nieuncirclekorean:12897,nieunhieuhkorean:12598,nieunkorean:12596,nieunpansioskorean:12648,nieunparenkorean:12801,nieunsioskorean:12647,nieuntikeutkorean:12646,nihiragana:12395,nikatakana:12491,nikatakanahalfwidth:65414,nikhahitleftthai:63641,nikhahitthai:3661,nine:57,ninearabic:1641,ninebengali:2543,ninecircle:9320,ninecircleinversesansserif:10130,ninedeva:2415,ninegujarati:2799,ninegurmukhi:2671,ninehackarabic:1641,ninehangzhou:12329,nineideographicparen:12840,nineinferior:8329,ninemonospace:65305,nineoldstyle:63289,nineparen:9340,nineperiod:9360,ninepersian:1785,nineroman:8568,ninesuperior:8313,nineteencircle:9330,nineteenparen:9350,nineteenperiod:9370,ninethai:3673,nj:460,njecyrillic:1114,nkatakana:12531,nkatakanahalfwidth:65437,nlegrightlong:414,nlinebelow:7753,nmonospace:65358,nmsquare:13210,nnabengali:2467,nnadeva:2339,nnagujarati:2723,nnagurmukhi:2595,nnnadeva:2345,nohiragana:12398,nokatakana:12494,nokatakanahalfwidth:65417,nonbreakingspace:160,nonenthai:3603,nonuthai:3609,noonarabic:1606,noonfinalarabic:65254,noonghunnaarabic:1722,noonghunnafinalarabic:64415,nooninitialarabic:65255,noonjeeminitialarabic:64722,noonjeemisolatedarabic:64587,noonmedialarabic:65256,noonmeeminitialarabic:64725,noonmeemisolatedarabic:64590,noonnoonfinalarabic:64653,notcontains:8716,notelement:8713,notelementof:8713,notequal:8800,notgreater:8815,notgreaternorequal:8817,notgreaternorless:8825,notidentical:8802,notless:8814,notlessnorequal:8816,notparallel:8742,notprecedes:8832,notsubset:8836,notsucceeds:8833,notsuperset:8837,nowarmenian:1398,nparen:9385,nssquare:13233,nsuperior:8319,ntilde:241,nu:957,nuhiragana:12396,nukatakana:12492,nukatakanahalfwidth:65415,nuktabengali:2492,nuktadeva:2364,nuktagujarati:2748,nuktagurmukhi:2620,numbersign:35,numbersignmonospace:65283,numbersignsmall:65119,numeralsigngreek:884,numeralsignlowergreek:885,numero:8470,nun:1504,nundagesh:64320,nundageshhebrew:64320,nunhebrew:1504,nvsquare:13237,nwsquare:13243,nyabengali:2462,nyadeva:2334,nyagujarati:2718,nyagurmukhi:2590,o:111,oacute:243,oangthai:3629,obarred:629,obarredcyrillic:1257,obarreddieresiscyrillic:1259,obengali:2451,obopomofo:12571,obreve:335,ocandradeva:2321,ocandragujarati:2705,ocandravowelsigndeva:2377,ocandravowelsigngujarati:2761,ocaron:466,ocircle:9438,ocircumflex:244,ocircumflexacute:7889,ocircumflexdotbelow:7897,ocircumflexgrave:7891,ocircumflexhookabove:7893,ocircumflextilde:7895,ocyrillic:1086,odblacute:337,odblgrave:525,odeva:2323,odieresis:246,odieresiscyrillic:1255,odotbelow:7885,oe:339,oekorean:12634,ogonek:731,ogonekcmb:808,ograve:242,ogujarati:2707,oharmenian:1413,ohiragana:12362,ohookabove:7887,ohorn:417,ohornacute:7899,ohorndotbelow:7907,ohorngrave:7901,ohornhookabove:7903,ohorntilde:7905,ohungarumlaut:337,oi:419,oinvertedbreve:527,okatakana:12458,okatakanahalfwidth:65397,okorean:12631,olehebrew:1451,omacron:333,omacronacute:7763,omacrongrave:7761,omdeva:2384,omega:969,omega1:982,omegacyrillic:1121,omegalatinclosed:631,omegaroundcyrillic:1147,omegatitlocyrillic:1149,omegatonos:974,omgujarati:2768,omicron:959,omicrontonos:972,omonospace:65359,one:49,onearabic:1633,onebengali:2535,onecircle:9312,onecircleinversesansserif:10122,onedeva:2407,onedotenleader:8228,oneeighth:8539,onefitted:63196,onegujarati:2791,onegurmukhi:2663,onehackarabic:1633,onehalf:189,onehangzhou:12321,oneideographicparen:12832,oneinferior:8321,onemonospace:65297,onenumeratorbengali:2548,oneoldstyle:63281,oneparen:9332,oneperiod:9352,onepersian:1777,onequarter:188,oneroman:8560,onesuperior:185,onethai:3665,onethird:8531,oogonek:491,oogonekmacron:493,oogurmukhi:2579,oomatragurmukhi:2635,oopen:596,oparen:9386,openbullet:9702,option:8997,ordfeminine:170,ordmasculine:186,orthogonal:8735,oshortdeva:2322,oshortvowelsigndeva:2378,oslash:248,oslashacute:511,osmallhiragana:12361,osmallkatakana:12457,osmallkatakanahalfwidth:65387,ostrokeacute:511,osuperior:63216,otcyrillic:1151,otilde:245,otildeacute:7757,otildedieresis:7759,oubopomofo:12577,overline:8254,overlinecenterline:65098,overlinecmb:773,overlinedashed:65097,overlinedblwavy:65100,overlinewavy:65099,overscore:175,ovowelsignbengali:2507,ovowelsigndeva:2379,ovowelsigngujarati:2763,p:112,paampssquare:13184,paasentosquare:13099,pabengali:2474,pacute:7765,padeva:2346,pagedown:8671,pageup:8670,pagujarati:2730,pagurmukhi:2602,pahiragana:12401,paiyannoithai:3631,pakatakana:12497,palatalizationcyrilliccmb:1156,palochkacyrillic:1216,pansioskorean:12671,paragraph:182,parallel:8741,parenleft:40,parenleftaltonearabic:64830,parenleftbt:63725,parenleftex:63724,parenleftinferior:8333,parenleftmonospace:65288,parenleftsmall:65113,parenleftsuperior:8317,parenlefttp:63723,parenleftvertical:65077,parenright:41,parenrightaltonearabic:64831,parenrightbt:63736,parenrightex:63735,parenrightinferior:8334,parenrightmonospace:65289,parenrightsmall:65114,parenrightsuperior:8318,parenrighttp:63734,parenrightvertical:65078,partialdiff:8706,paseqhebrew:1472,pashtahebrew:1433,pasquare:13225,patah:1463,patah11:1463,patah1d:1463,patah2a:1463,patahhebrew:1463,patahnarrowhebrew:1463,patahquarterhebrew:1463,patahwidehebrew:1463,pazerhebrew:1441,pbopomofo:12550,pcircle:9439,pdotaccent:7767,pe:1508,pecyrillic:1087,pedagesh:64324,pedageshhebrew:64324,peezisquare:13115,pefinaldageshhebrew:64323,peharabic:1662,peharmenian:1402,pehebrew:1508,pehfinalarabic:64343,pehinitialarabic:64344,pehiragana:12410,pehmedialarabic:64345,pekatakana:12506,pemiddlehookcyrillic:1191,perafehebrew:64334,percent:37,percentarabic:1642,percentmonospace:65285,percentsmall:65130,period:46,periodarmenian:1417,periodcentered:183,periodhalfwidth:65377,periodinferior:63207,periodmonospace:65294,periodsmall:65106,periodsuperior:63208,perispomenigreekcmb:834,perpendicular:8869,perthousand:8240,peseta:8359,pfsquare:13194,phabengali:2475,phadeva:2347,phagujarati:2731,phagurmukhi:2603,phi:966,phi1:981,phieuphacirclekorean:12922,phieuphaparenkorean:12826,phieuphcirclekorean:12908,phieuphkorean:12621,phieuphparenkorean:12812,philatin:632,phinthuthai:3642,phisymbolgreek:981,phook:421,phophanthai:3614,phophungthai:3612,phosamphaothai:3616,pi:960,pieupacirclekorean:12915,pieupaparenkorean:12819,pieupcieuckorean:12662,pieupcirclekorean:12901,pieupkiyeokkorean:12658,pieupkorean:12610,pieupparenkorean:12805,pieupsioskiyeokkorean:12660,pieupsioskorean:12612,pieupsiostikeutkorean:12661,pieupthieuthkorean:12663,pieuptikeutkorean:12659,pihiragana:12404,pikatakana:12500,pisymbolgreek:982,piwrarmenian:1411,plus:43,plusbelowcmb:799,pluscircle:8853,plusminus:177,plusmod:726,plusmonospace:65291,plussmall:65122,plussuperior:8314,pmonospace:65360,pmsquare:13272,pohiragana:12413,pointingindexdownwhite:9759,pointingindexleftwhite:9756,pointingindexrightwhite:9758,pointingindexupwhite:9757,pokatakana:12509,poplathai:3611,postalmark:12306,postalmarkface:12320,pparen:9387,precedes:8826,prescription:8478,primemod:697,primereversed:8245,product:8719,projective:8965,prolongedkana:12540,propellor:8984,propersubset:8834,propersuperset:8835,proportion:8759,proportional:8733,psi:968,psicyrillic:1137,psilipneumatacyrilliccmb:1158,pssquare:13232,puhiragana:12407,pukatakana:12503,pvsquare:13236,pwsquare:13242,q:113,qadeva:2392,qadmahebrew:1448,qafarabic:1602,qaffinalarabic:65238,qafinitialarabic:65239,qafmedialarabic:65240,qamats:1464,qamats10:1464,qamats1a:1464,qamats1c:1464,qamats27:1464,qamats29:1464,qamats33:1464,qamatsde:1464,qamatshebrew:1464,qamatsnarrowhebrew:1464,qamatsqatanhebrew:1464,qamatsqatannarrowhebrew:1464,qamatsqatanquarterhebrew:1464,qamatsqatanwidehebrew:1464,qamatsquarterhebrew:1464,qamatswidehebrew:1464,qarneyparahebrew:1439,qbopomofo:12561,qcircle:9440,qhook:672,qmonospace:65361,qof:1511,qofdagesh:64327,qofdageshhebrew:64327,qofhebrew:1511,qparen:9388,quarternote:9833,qubuts:1467,qubuts18:1467,qubuts25:1467,qubuts31:1467,qubutshebrew:1467,qubutsnarrowhebrew:1467,qubutsquarterhebrew:1467,qubutswidehebrew:1467,question:63,questionarabic:1567,questionarmenian:1374,questiondown:191,questiondownsmall:63423,questiongreek:894,questionmonospace:65311,questionsmall:63295,quotedbl:34,quotedblbase:8222,quotedblleft:8220,quotedblmonospace:65282,quotedblprime:12318,quotedblprimereversed:12317,quotedblright:8221,quoteleft:8216,quoteleftreversed:8219,quotereversed:8219,quoteright:8217,quoterightn:329,quotesinglbase:8218,quotesingle:39,quotesinglemonospace:65287,r:114,raarmenian:1404,rabengali:2480,racute:341,radeva:2352,radical:8730,radicalex:63717,radoverssquare:13230,radoverssquaredsquare:13231,radsquare:13229,rafe:1471,rafehebrew:1471,ragujarati:2736,ragurmukhi:2608,rahiragana:12425,rakatakana:12521,rakatakanahalfwidth:65431,ralowerdiagonalbengali:2545,ramiddlediagonalbengali:2544,ramshorn:612,ratio:8758,rbopomofo:12566,rcaron:345,rcedilla:343,rcircle:9441,rcommaaccent:343,rdblgrave:529,rdotaccent:7769,rdotbelow:7771,rdotbelowmacron:7773,referencemark:8251,reflexsubset:8838,reflexsuperset:8839,registered:174,registersans:63720,registerserif:63194,reharabic:1585,reharmenian:1408,rehfinalarabic:65198,rehiragana:12428,rekatakana:12524,rekatakanahalfwidth:65434,resh:1512,reshdageshhebrew:64328,reshhebrew:1512,reversedtilde:8765,reviahebrew:1431,reviamugrashhebrew:1431,revlogicalnot:8976,rfishhook:638,rfishhookreversed:639,rhabengali:2525,rhadeva:2397,rho:961,rhook:637,rhookturned:635,rhookturnedsuperior:693,rhosymbolgreek:1009,rhotichookmod:734,rieulacirclekorean:12913,rieulaparenkorean:12817,rieulcirclekorean:12899,rieulhieuhkorean:12608,rieulkiyeokkorean:12602,rieulkiyeoksioskorean:12649,rieulkorean:12601,rieulmieumkorean:12603,rieulpansioskorean:12652,rieulparenkorean:12803,rieulphieuphkorean:12607,rieulpieupkorean:12604,rieulpieupsioskorean:12651,rieulsioskorean:12605,rieulthieuthkorean:12606,rieultikeutkorean:12650,rieulyeorinhieuhkorean:12653,rightangle:8735,righttackbelowcmb:793,righttriangle:8895,rihiragana:12426,rikatakana:12522,rikatakanahalfwidth:65432,ring:730,ringbelowcmb:805,ringcmb:778,ringhalfleft:703,ringhalfleftarmenian:1369,ringhalfleftbelowcmb:796,ringhalfleftcentered:723,ringhalfright:702,ringhalfrightbelowcmb:825,ringhalfrightcentered:722,rinvertedbreve:531,rittorusquare:13137,rlinebelow:7775,rlongleg:636,rlonglegturned:634,rmonospace:65362,rohiragana:12429,rokatakana:12525,rokatakanahalfwidth:65435,roruathai:3619,rparen:9389,rrabengali:2524,rradeva:2353,rragurmukhi:2652,rreharabic:1681,rrehfinalarabic:64397,rrvocalicbengali:2528,rrvocalicdeva:2400,rrvocalicgujarati:2784,rrvocalicvowelsignbengali:2500,rrvocalicvowelsigndeva:2372,rrvocalicvowelsigngujarati:2756,rsuperior:63217,rtblock:9616,rturned:633,rturnedsuperior:692,ruhiragana:12427,rukatakana:12523,rukatakanahalfwidth:65433,rupeemarkbengali:2546,rupeesignbengali:2547,rupiah:63197,ruthai:3620,rvocalicbengali:2443,rvocalicdeva:2315,rvocalicgujarati:2699,rvocalicvowelsignbengali:2499,rvocalicvowelsigndeva:2371,rvocalicvowelsigngujarati:2755,s:115,sabengali:2488,sacute:347,sacutedotaccent:7781,sadarabic:1589,sadeva:2360,sadfinalarabic:65210,sadinitialarabic:65211,sadmedialarabic:65212,sagujarati:2744,sagurmukhi:2616,sahiragana:12373,sakatakana:12469,sakatakanahalfwidth:65403,sallallahoualayhewasallamarabic:65018,samekh:1505,samekhdagesh:64321,samekhdageshhebrew:64321,samekhhebrew:1505,saraaathai:3634,saraaethai:3649,saraaimaimalaithai:3652,saraaimaimuanthai:3651,saraamthai:3635,saraathai:3632,saraethai:3648,saraiileftthai:63622,saraiithai:3637,saraileftthai:63621,saraithai:3636,saraothai:3650,saraueeleftthai:63624,saraueethai:3639,saraueleftthai:63623,sarauethai:3638,sarauthai:3640,sarauuthai:3641,sbopomofo:12569,scaron:353,scarondotaccent:7783,scedilla:351,schwa:601,schwacyrillic:1241,schwadieresiscyrillic:1243,schwahook:602,scircle:9442,scircumflex:349,scommaaccent:537,sdotaccent:7777,sdotbelow:7779,sdotbelowdotaccent:7785,seagullbelowcmb:828,second:8243,secondtonechinese:714,section:167,seenarabic:1587,seenfinalarabic:65202,seeninitialarabic:65203,seenmedialarabic:65204,segol:1462,segol13:1462,segol1f:1462,segol2c:1462,segolhebrew:1462,segolnarrowhebrew:1462,segolquarterhebrew:1462,segoltahebrew:1426,segolwidehebrew:1462,seharmenian:1405,sehiragana:12379,sekatakana:12475,sekatakanahalfwidth:65406,semicolon:59,semicolonarabic:1563,semicolonmonospace:65307,semicolonsmall:65108,semivoicedmarkkana:12444,semivoicedmarkkanahalfwidth:65439,sentisquare:13090,sentosquare:13091,seven:55,sevenarabic:1639,sevenbengali:2541,sevencircle:9318,sevencircleinversesansserif:10128,sevendeva:2413,seveneighths:8542,sevengujarati:2797,sevengurmukhi:2669,sevenhackarabic:1639,sevenhangzhou:12327,sevenideographicparen:12838,seveninferior:8327,sevenmonospace:65303,sevenoldstyle:63287,sevenparen:9338,sevenperiod:9358,sevenpersian:1783,sevenroman:8566,sevensuperior:8311,seventeencircle:9328,seventeenparen:9348,seventeenperiod:9368,seventhai:3671,sfthyphen:173,shaarmenian:1399,shabengali:2486,shacyrillic:1096,shaddaarabic:1617,shaddadammaarabic:64609,shaddadammatanarabic:64606,shaddafathaarabic:64608,shaddakasraarabic:64610,shaddakasratanarabic:64607,shade:9618,shadedark:9619,shadelight:9617,shademedium:9618,shadeva:2358,shagujarati:2742,shagurmukhi:2614,shalshelethebrew:1427,shbopomofo:12565,shchacyrillic:1097,sheenarabic:1588,sheenfinalarabic:65206,sheeninitialarabic:65207,sheenmedialarabic:65208,sheicoptic:995,sheqel:8362,sheqelhebrew:8362,sheva:1456,sheva115:1456,sheva15:1456,sheva22:1456,sheva2e:1456,shevahebrew:1456,shevanarrowhebrew:1456,shevaquarterhebrew:1456,shevawidehebrew:1456,shhacyrillic:1211,shimacoptic:1005,shin:1513,shindagesh:64329,shindageshhebrew:64329,shindageshshindot:64300,shindageshshindothebrew:64300,shindageshsindot:64301,shindageshsindothebrew:64301,shindothebrew:1473,shinhebrew:1513,shinshindot:64298,shinshindothebrew:64298,shinsindot:64299,shinsindothebrew:64299,shook:642,sigma:963,sigma1:962,sigmafinal:962,sigmalunatesymbolgreek:1010,sihiragana:12375,sikatakana:12471,sikatakanahalfwidth:65404,siluqhebrew:1469,siluqlefthebrew:1469,similar:8764,sindothebrew:1474,siosacirclekorean:12916,siosaparenkorean:12820,sioscieuckorean:12670,sioscirclekorean:12902,sioskiyeokkorean:12666,sioskorean:12613,siosnieunkorean:12667,siosparenkorean:12806,siospieupkorean:12669,siostikeutkorean:12668,six:54,sixarabic:1638,sixbengali:2540,sixcircle:9317,sixcircleinversesansserif:10127,sixdeva:2412,sixgujarati:2796,sixgurmukhi:2668,sixhackarabic:1638,sixhangzhou:12326,sixideographicparen:12837,sixinferior:8326,sixmonospace:65302,sixoldstyle:63286,sixparen:9337,sixperiod:9357,sixpersian:1782,sixroman:8565,sixsuperior:8310,sixteencircle:9327,sixteencurrencydenominatorbengali:2553,sixteenparen:9347,sixteenperiod:9367,sixthai:3670,slash:47,slashmonospace:65295,slong:383,slongdotaccent:7835,smileface:9786,smonospace:65363,sofpasuqhebrew:1475,softhyphen:173,softsigncyrillic:1100,sohiragana:12381,sokatakana:12477,sokatakanahalfwidth:65407,soliduslongoverlaycmb:824,solidusshortoverlaycmb:823,sorusithai:3625,sosalathai:3624,sosothai:3595,sosuathai:3626,space:32,spacehackarabic:32,spade:9824,spadesuitblack:9824,spadesuitwhite:9828,sparen:9390,squarebelowcmb:827,squarecc:13252,squarecm:13213,squarediagonalcrosshatchfill:9641,squarehorizontalfill:9636,squarekg:13199,squarekm:13214,squarekmcapital:13262,squareln:13265,squarelog:13266,squaremg:13198,squaremil:13269,squaremm:13212,squaremsquared:13217,squareorthogonalcrosshatchfill:9638,squareupperlefttolowerrightfill:9639,squareupperrighttolowerleftfill:9640,squareverticalfill:9637,squarewhitewithsmallblack:9635,srsquare:13275,ssabengali:2487,ssadeva:2359,ssagujarati:2743,ssangcieuckorean:12617,ssanghieuhkorean:12677,ssangieungkorean:12672,ssangkiyeokkorean:12594,ssangnieunkorean:12645,ssangpieupkorean:12611,ssangsioskorean:12614,ssangtikeutkorean:12600,ssuperior:63218,sterling:163,sterlingmonospace:65505,strokelongoverlaycmb:822,strokeshortoverlaycmb:821,subset:8834,subsetnotequal:8842,subsetorequal:8838,succeeds:8827,suchthat:8715,suhiragana:12377,sukatakana:12473,sukatakanahalfwidth:65405,sukunarabic:1618,summation:8721,sun:9788,superset:8835,supersetnotequal:8843,supersetorequal:8839,svsquare:13276,syouwaerasquare:13180,t:116,tabengali:2468,tackdown:8868,tackleft:8867,tadeva:2340,tagujarati:2724,tagurmukhi:2596,taharabic:1591,tahfinalarabic:65218,tahinitialarabic:65219,tahiragana:12383,tahmedialarabic:65220,taisyouerasquare:13181,takatakana:12479,takatakanahalfwidth:65408,tatweelarabic:1600,tau:964,tav:1514,tavdages:64330,tavdagesh:64330,tavdageshhebrew:64330,tavhebrew:1514,tbar:359,tbopomofo:12554,tcaron:357,tccurl:680,tcedilla:355,tcheharabic:1670,tchehfinalarabic:64379,tchehinitialarabic:64380,tchehmedialarabic:64381,tcircle:9443,tcircumflexbelow:7793,tcommaaccent:355,tdieresis:7831,tdotaccent:7787,tdotbelow:7789,tecyrillic:1090,tedescendercyrillic:1197,teharabic:1578,tehfinalarabic:65174,tehhahinitialarabic:64674,tehhahisolatedarabic:64524,tehinitialarabic:65175,tehiragana:12390,tehjeeminitialarabic:64673,tehjeemisolatedarabic:64523,tehmarbutaarabic:1577,tehmarbutafinalarabic:65172,tehmedialarabic:65176,tehmeeminitialarabic:64676,tehmeemisolatedarabic:64526,tehnoonfinalarabic:64627,tekatakana:12486,tekatakanahalfwidth:65411,telephone:8481,telephoneblack:9742,telishagedolahebrew:1440,telishaqetanahebrew:1449,tencircle:9321,tenideographicparen:12841,tenparen:9341,tenperiod:9361,tenroman:8569,tesh:679,tet:1496,tetdagesh:64312,tetdageshhebrew:64312,tethebrew:1496,tetsecyrillic:1205,tevirhebrew:1435,tevirlefthebrew:1435,thabengali:2469,thadeva:2341,thagujarati:2725,thagurmukhi:2597,thalarabic:1584,thalfinalarabic:65196,thanthakhatlowleftthai:63640,thanthakhatlowrightthai:63639,thanthakhatthai:3660,thanthakhatupperleftthai:63638,theharabic:1579,thehfinalarabic:65178,thehinitialarabic:65179,thehmedialarabic:65180,thereexists:8707,therefore:8756,theta:952,theta1:977,thetasymbolgreek:977,thieuthacirclekorean:12921,thieuthaparenkorean:12825,thieuthcirclekorean:12907,thieuthkorean:12620,thieuthparenkorean:12811,thirteencircle:9324,thirteenparen:9344,thirteenperiod:9364,thonangmonthothai:3601,thook:429,thophuthaothai:3602,thorn:254,thothahanthai:3607,thothanthai:3600,thothongthai:3608,thothungthai:3606,thousandcyrillic:1154,thousandsseparatorarabic:1644,thousandsseparatorpersian:1644,three:51,threearabic:1635,threebengali:2537,threecircle:9314,threecircleinversesansserif:10124,threedeva:2409,threeeighths:8540,threegujarati:2793,threegurmukhi:2665,threehackarabic:1635,threehangzhou:12323,threeideographicparen:12834,threeinferior:8323,threemonospace:65299,threenumeratorbengali:2550,threeoldstyle:63283,threeparen:9334,threeperiod:9354,threepersian:1779,threequarters:190,threequartersemdash:63198,threeroman:8562,threesuperior:179,threethai:3667,thzsquare:13204,tihiragana:12385,tikatakana:12481,tikatakanahalfwidth:65409,tikeutacirclekorean:12912,tikeutaparenkorean:12816,tikeutcirclekorean:12898,tikeutkorean:12599,tikeutparenkorean:12802,tilde:732,tildebelowcmb:816,tildecmb:771,tildecomb:771,tildedoublecmb:864,tildeoperator:8764,tildeoverlaycmb:820,tildeverticalcmb:830,timescircle:8855,tipehahebrew:1430,tipehalefthebrew:1430,tippigurmukhi:2672,titlocyrilliccmb:1155,tiwnarmenian:1407,tlinebelow:7791,tmonospace:65364,toarmenian:1385,tohiragana:12392,tokatakana:12488,tokatakanahalfwidth:65412,tonebarextrahighmod:741,tonebarextralowmod:745,tonebarhighmod:742,tonebarlowmod:744,tonebarmidmod:743,tonefive:445,tonesix:389,tonetwo:424,tonos:900,tonsquare:13095,topatakthai:3599,tortoiseshellbracketleft:12308,tortoiseshellbracketleftsmall:65117,tortoiseshellbracketleftvertical:65081,tortoiseshellbracketright:12309,tortoiseshellbracketrightsmall:65118,tortoiseshellbracketrightvertical:65082,totaothai:3605,tpalatalhook:427,tparen:9391,trademark:8482,trademarksans:63722,trademarkserif:63195,tretroflexhook:648,triagdn:9660,triaglf:9668,triagrt:9658,triagup:9650,ts:678,tsadi:1510,tsadidagesh:64326,tsadidageshhebrew:64326,tsadihebrew:1510,tsecyrillic:1094,tsere:1461,tsere12:1461,tsere1e:1461,tsere2b:1461,tserehebrew:1461,tserenarrowhebrew:1461,tserequarterhebrew:1461,tserewidehebrew:1461,tshecyrillic:1115,tsuperior:63219,ttabengali:2463,ttadeva:2335,ttagujarati:2719,ttagurmukhi:2591,tteharabic:1657,ttehfinalarabic:64359,ttehinitialarabic:64360,ttehmedialarabic:64361,tthabengali:2464,tthadeva:2336,tthagujarati:2720,tthagurmukhi:2592,tturned:647,tuhiragana:12388,tukatakana:12484,tukatakanahalfwidth:65410,tusmallhiragana:12387,tusmallkatakana:12483,tusmallkatakanahalfwidth:65391,twelvecircle:9323,twelveparen:9343,twelveperiod:9363,twelveroman:8571,twentycircle:9331,twentyhangzhou:21316,twentyparen:9351,twentyperiod:9371,two:50,twoarabic:1634,twobengali:2536,twocircle:9313,twocircleinversesansserif:10123,twodeva:2408,twodotenleader:8229,twodotleader:8229,twodotleadervertical:65072,twogujarati:2792,twogurmukhi:2664,twohackarabic:1634,twohangzhou:12322,twoideographicparen:12833,twoinferior:8322,twomonospace:65298,twonumeratorbengali:2549,twooldstyle:63282,twoparen:9333,twoperiod:9353,twopersian:1778,tworoman:8561,twostroke:443,twosuperior:178,twothai:3666,twothirds:8532,u:117,uacute:250,ubar:649,ubengali:2441,ubopomofo:12584,ubreve:365,ucaron:468,ucircle:9444,ucircumflex:251,ucircumflexbelow:7799,ucyrillic:1091,udattadeva:2385,udblacute:369,udblgrave:533,udeva:2313,udieresis:252,udieresisacute:472,udieresisbelow:7795,udieresiscaron:474,udieresiscyrillic:1265,udieresisgrave:476,udieresismacron:470,udotbelow:7909,ugrave:249,ugujarati:2697,ugurmukhi:2569,uhiragana:12358,uhookabove:7911,uhorn:432,uhornacute:7913,uhorndotbelow:7921,uhorngrave:7915,uhornhookabove:7917,uhorntilde:7919,uhungarumlaut:369,uhungarumlautcyrillic:1267,uinvertedbreve:535,ukatakana:12454,ukatakanahalfwidth:65395,ukcyrillic:1145,ukorean:12636,umacron:363,umacroncyrillic:1263,umacrondieresis:7803,umatragurmukhi:2625,umonospace:65365,underscore:95,underscoredbl:8215,underscoremonospace:65343,underscorevertical:65075,underscorewavy:65103,union:8746,universal:8704,uogonek:371,uparen:9392,upblock:9600,upperdothebrew:1476,upsilon:965,upsilondieresis:971,upsilondieresistonos:944,upsilonlatin:650,upsilontonos:973,uptackbelowcmb:797,uptackmod:724,uragurmukhi:2675,uring:367,ushortcyrillic:1118,usmallhiragana:12357,usmallkatakana:12453,usmallkatakanahalfwidth:65385,ustraightcyrillic:1199,ustraightstrokecyrillic:1201,utilde:361,utildeacute:7801,utildebelow:7797,uubengali:2442,uudeva:2314,uugujarati:2698,uugurmukhi:2570,uumatragurmukhi:2626,uuvowelsignbengali:2498,uuvowelsigndeva:2370,uuvowelsigngujarati:2754,uvowelsignbengali:2497,uvowelsigndeva:2369,uvowelsigngujarati:2753,v:118,vadeva:2357,vagujarati:2741,vagurmukhi:2613,vakatakana:12535,vav:1493,vavdagesh:64309,vavdagesh65:64309,vavdageshhebrew:64309,vavhebrew:1493,vavholam:64331,vavholamhebrew:64331,vavvavhebrew:1520,vavyodhebrew:1521,vcircle:9445,vdotbelow:7807,vecyrillic:1074,veharabic:1700,vehfinalarabic:64363,vehinitialarabic:64364,vehmedialarabic:64365,vekatakana:12537,venus:9792,verticalbar:124,verticallineabovecmb:781,verticallinebelowcmb:809,verticallinelowmod:716,verticallinemod:712,vewarmenian:1406,vhook:651,vikatakana:12536,viramabengali:2509,viramadeva:2381,viramagujarati:2765,visargabengali:2435,visargadeva:2307,visargagujarati:2691,vmonospace:65366,voarmenian:1400,voicediterationhiragana:12446,voicediterationkatakana:12542,voicedmarkkana:12443,voicedmarkkanahalfwidth:65438,vokatakana:12538,vparen:9393,vtilde:7805,vturned:652,vuhiragana:12436,vukatakana:12532,w:119,wacute:7811,waekorean:12633,wahiragana:12431,wakatakana:12527,wakatakanahalfwidth:65436,wakorean:12632,wasmallhiragana:12430,wasmallkatakana:12526,wattosquare:13143,wavedash:12316,wavyunderscorevertical:65076,wawarabic:1608,wawfinalarabic:65262,wawhamzaabovearabic:1572,wawhamzaabovefinalarabic:65158,wbsquare:13277,wcircle:9446,wcircumflex:373,wdieresis:7813,wdotaccent:7815,wdotbelow:7817,wehiragana:12433,weierstrass:8472,wekatakana:12529,wekorean:12638,weokorean:12637,wgrave:7809,whitebullet:9702,whitecircle:9675,whitecircleinverse:9689,whitecornerbracketleft:12302,whitecornerbracketleftvertical:65091,whitecornerbracketright:12303,whitecornerbracketrightvertical:65092,whitediamond:9671,whitediamondcontainingblacksmalldiamond:9672,whitedownpointingsmalltriangle:9663,whitedownpointingtriangle:9661,whiteleftpointingsmalltriangle:9667,whiteleftpointingtriangle:9665,whitelenticularbracketleft:12310,whitelenticularbracketright:12311,whiterightpointingsmalltriangle:9657,whiterightpointingtriangle:9655,whitesmallsquare:9643,whitesmilingface:9786,whitesquare:9633,whitestar:9734,whitetelephone:9743,whitetortoiseshellbracketleft:12312,whitetortoiseshellbracketright:12313,whiteuppointingsmalltriangle:9653,whiteuppointingtriangle:9651,wihiragana:12432,wikatakana:12528,wikorean:12639,wmonospace:65367,wohiragana:12434,wokatakana:12530,wokatakanahalfwidth:65382,won:8361,wonmonospace:65510,wowaenthai:3623,wparen:9394,wring:7832,wsuperior:695,wturned:653,wynn:447,x:120,xabovecmb:829,xbopomofo:12562,xcircle:9447,xdieresis:7821,xdotaccent:7819,xeharmenian:1389,xi:958,xmonospace:65368,xparen:9395,xsuperior:739,y:121,yaadosquare:13134,yabengali:2479,yacute:253,yadeva:2351,yaekorean:12626,yagujarati:2735,yagurmukhi:2607,yahiragana:12420,yakatakana:12516,yakatakanahalfwidth:65428,yakorean:12625,yamakkanthai:3662,yasmallhiragana:12419,yasmallkatakana:12515,yasmallkatakanahalfwidth:65388,yatcyrillic:1123,ycircle:9448,ycircumflex:375,ydieresis:255,ydotaccent:7823,ydotbelow:7925,yeharabic:1610,yehbarreearabic:1746,yehbarreefinalarabic:64431,yehfinalarabic:65266,yehhamzaabovearabic:1574,yehhamzaabovefinalarabic:65162,yehhamzaaboveinitialarabic:65163,yehhamzaabovemedialarabic:65164,yehinitialarabic:65267,yehmedialarabic:65268,yehmeeminitialarabic:64733,yehmeemisolatedarabic:64600,yehnoonfinalarabic:64660,yehthreedotsbelowarabic:1745,yekorean:12630,yen:165,yenmonospace:65509,yeokorean:12629,yeorinhieuhkorean:12678,yerahbenyomohebrew:1450,yerahbenyomolefthebrew:1450,yericyrillic:1099,yerudieresiscyrillic:1273,yesieungkorean:12673,yesieungpansioskorean:12675,yesieungsioskorean:12674,yetivhebrew:1434,ygrave:7923,yhook:436,yhookabove:7927,yiarmenian:1397,yicyrillic:1111,yikorean:12642,yinyang:9775,yiwnarmenian:1410,ymonospace:65369,yod:1497,yoddagesh:64313,yoddageshhebrew:64313,yodhebrew:1497,yodyodhebrew:1522,yodyodpatahhebrew:64287,yohiragana:12424,yoikorean:12681,yokatakana:12520,yokatakanahalfwidth:65430,yokorean:12635,yosmallhiragana:12423,yosmallkatakana:12519,yosmallkatakanahalfwidth:65390,yotgreek:1011,yoyaekorean:12680,yoyakorean:12679,yoyakthai:3618,yoyingthai:3597,yparen:9396,ypogegrammeni:890,ypogegrammenigreekcmb:837,yr:422,yring:7833,ysuperior:696,ytilde:7929,yturned:654,yuhiragana:12422,yuikorean:12684,yukatakana:12518,yukatakanahalfwidth:65429,yukorean:12640,yusbigcyrillic:1131,yusbigiotifiedcyrillic:1133,yuslittlecyrillic:1127,yuslittleiotifiedcyrillic:1129,yusmallhiragana:12421,yusmallkatakana:12517,yusmallkatakanahalfwidth:65389,yuyekorean:12683,yuyeokorean:12682,yyabengali:2527,yyadeva:2399,z:122,zaarmenian:1382,zacute:378,zadeva:2395,zagurmukhi:2651,zaharabic:1592,zahfinalarabic:65222,zahinitialarabic:65223,zahiragana:12374,zahmedialarabic:65224,zainarabic:1586,zainfinalarabic:65200,zakatakana:12470,zaqefgadolhebrew:1429,zaqefqatanhebrew:1428,zarqahebrew:1432,zayin:1494,zayindagesh:64310,zayindageshhebrew:64310,zayinhebrew:1494,zbopomofo:12567,zcaron:382,zcircle:9449,zcircumflex:7825,zcurl:657,zdot:380,zdotaccent:380,zdotbelow:7827,zecyrillic:1079,zedescendercyrillic:1177,zedieresiscyrillic:1247,zehiragana:12380,zekatakana:12476,zero:48,zeroarabic:1632,zerobengali:2534,zerodeva:2406,zerogujarati:2790,zerogurmukhi:2662,zerohackarabic:1632,zeroinferior:8320,zeromonospace:65296,zerooldstyle:63280,zeropersian:1776,zerosuperior:8304,zerothai:3664,zerowidthjoiner:65279,zerowidthnonjoiner:8204,zerowidthspace:8203,zeta:950,zhbopomofo:12563,zhearmenian:1386,zhebrevecyrillic:1218,zhecyrillic:1078,zhedescendercyrillic:1175,zhedieresiscyrillic:1245,zihiragana:12376,zikatakana:12472,zinorhebrew:1454,zlinebelow:7829,zmonospace:65370,zohiragana:12382,zokatakana:12478,zparen:9397,zretroflexhook:656,zstroke:438,zuhiragana:12378,zukatakana:12474,".notdef":0},ns=function(){function e(e,t,n,r,i){if(r instanceof ms&&r.isNativelyDecodable(t,n)){var a=r.dict.get(`ColorSpace`,`CS`),o=(a=la.parse(a,t,n)).numComps;e.send(`JpegDecode`,[r.getIR(),o],function(e){var t=e.data,n=new ls(t,0,t.length,r.dict);i.resolve(n)})}else i.resolve(r)}function t(e,t,n,r){return(e=t+e*n)<0?0:e>r?r:e}function n(e,t,r,i,a,o,s){this.image=r,r.getParams&&Oi(`get params from actual stream`);var c=r.dict;this.width=c.get(`Width`,`W`),this.height=c.get(`Height`,`H`),(this.width<1||this.height<1)&&G(`Invalid image width: `+this.width+` or height: `+this.height),this.interpolate=c.get(`Interpolate`,`I`)||!1,this.imageMask=c.get(`ImageMask`,`IM`)||!1,this.matte=c.get(`Matte`)||!1;var l=r.bitsPerComponent;if((l||=c.get(`BitsPerComponent`,`BPC`))||(this.imageMask?l=1:G(`Bits per component missing in image: `+this.imageMask)),this.bpc=l,!this.imageMask){var u=c.get(`ColorSpace`,`CS`);u||=(Oi(`JPX images (which don"t require color spaces`),new Va(`DeviceRGB`)),this.colorSpace=la.parse(u,e,t),this.numComps=this.colorSpace.numComps}if(this.decode=c.get(`Decode`,`D`),this.needsDecode=!1,this.decode&&(this.colorSpace&&!this.colorSpace.isDefaultDecode(this.decode)||s&&!la.isDefaultDecode(this.decode,1))){this.needsDecode=!0;var d=(1<<l)-1;this.decodeCoefficients=[],this.decodeAddends=[];for(var f=0,p=0;f<this.decode.length;f+=2,++p){var m=this.decode[f],h=this.decode[f+1];this.decodeCoefficients[p]=h-m,this.decodeAddends[p]=d*m}}a?this.smask=new n(e,t,a,!1):o&&(ra(o)?this.mask=new n(e,t,o,!1,null,null,!0):this.mask=o)}return n.buildImage=function(t,r,i,a,o,s){var c=new q,l=new q,u=new q;q.all([c,l,u]).then(function(e){var r=e[0],o=e[1],c=e[2];t(new n(i,a,r,s,o,c))}),e(r,i,a,o,c);var d=o.dict.get(`SMask`),f=o.dict.get(`Mask`);d?(e(r,i,a,d,l),u.resolve(null)):(l.resolve(null),f?ra(f)?e(r,i,a,f,u):na(f)?u.resolve(f):(W(`Unsupported mask format.`),u.resolve(null)):u.resolve(null))},n.resize=function(e,t,n,r,i,a,o){for(var s,c,l,u=a*o*n,d=t<=8?new Uint8Array(u):t<=16?new Uint16Array(u):new Uint32Array(u),f=r/a,p=i/o,m=0;m<o;m++)for(var h=0;h<a;h++)s=Math.floor(h*f),c=m*a+h,l=Math.floor(m*p)*r+s,n===1?d[c]=e[l]:n===3&&(l*=3,d[c*=3]=e[l],d[c+1]=e[l+1],d[c+2]=e[l+2]);return d},n.createMask=function(e,t,n,r){var i,a,o,s,c=new Uint8Array(t*n*4),l=0,u=3;for(i=0;i<n;i++)for(o=0,a=0;a<t;a++)o||=(s=e[l++],128),!(s&o)!==r&&(c[u]=255),u+=4,o>>=1;return{data:c,width:t,height:n}},n.prototype={get drawWidth(){return this.smask?Math.max(this.width,this.smask.width):this.width},get drawHeight(){return this.smask?Math.max(this.height,this.smask.height):this.height},decodeBuffer:function(e){var n=this.bpc,r=(this.decode,this.numComps),i=this.decodeAddends,a=this.decodeCoefficients,o=(1<<n)-1;if(n!==1){var s=0;for(l=0,u=this.width*this.height;l<u;l++)for(var c=0;c<r;c++)e[s]=t(e[s],i[c],a[c],o),s++}else for(var l=0,u=e.length;l<u;l++)e[l]=+!e[l]},getComponents:function(e){var t=this.bpc;if(t===8)return e;e.length;var n=this.width,r=this.height,i=this.numComps,a=n*r*i,o=0,s=t<=8?new Uint8Array(a):t<=16?new Uint16Array(a):new Uint32Array(a),c=n*i,l=(1<<t)-1;if(t===1)for(var u=0,d=0,f=0,p=a;f<p;++f)f%c===0?(u=0,d=0):u>>=1,u<=0&&(d=e[o++],u=128),s[f]=+!!(d&u);else{var m=0;for(d=0,f=0,p=a;f<p;++f){for(f%c===0&&(d=0,m=0);m<t;)d=d<<8|e[o++],m+=8;var h=m-t,g=d>>h;s[f]=g<0?0:g>l?l:g,d&=(1<<h)-1,m=h}}return s},getOpacity:function(e,t,r){var i,a=this.smask,o=this.mask;if(this.width,this.height,a){var s=a.width,c=a.height;i=new Uint8Array(s*c),a.fillGrayBuffer(i),s==e&&c==t||(i=n.resize(i,a.bpc,1,s,c,e,t))}else if(o)if(o instanceof n){s=o.width,c=o.height,i=new Uint8Array(s*c),o.numComps=1,o.fillGrayBuffer(i);for(var l=0,u=s*c;l<u;++l)i[l]=255-i[l];s==e&&c==t||(i=n.resize(i,o.bpc,1,s,c,e,t))}else if(na(o)){i=new Uint8Array(e*t);var d=this.numComps;for(l=0,u=e*t;l<u;++l){for(var f=0,p=l*d,m=0;m<d;++m){var h=r[p+m],g=2*m;if(h<o[g]||h>o[g+1]){f=255;break}}i[l]=f}}else G(`Unknown mask format.`);else for(i=new Uint8Array(e*t),l=0,u=e*t;l<u;++l)i[l]=255;return i},undoPreblend:function(e,t,n){var r=this.smask&&this.smask.matte;if(r)for(var i=this.colorSpace.getRgb(r,0),a=t*n*4,o=0;o<a;o+=4){var s=e[o+3];if(s!==0){var c=255/s;e[o]=l((e[o]-i[0])*c+i[0]),e[o+1]=l((e[o+1]-i[1])*c+i[1]),e[o+2]=l((e[o+2]-i[2])*c+i[2])}else e[o]=255,e[o+1]=255,e[o+2]=255}function l(e){return 0|(e<0?0:e>255?255:e)}},fillRgbaBuffer:function(e,t,r){var i=this.numComps,a=this.width,o=this.height,s=this.bpc,c=a*i*s+7>>3,l=this.getImageBytes(o*c),u=0|l.length/c*r/o,d=this.getComponents(l),f=this.getOpacity(t,r,d);this.needsDecode&&this.decodeBuffer(d);var p=this.colorSpace.createRgbBuffer(d,0,a*o,s);a==t&&o==r||(p=n.resize(p,this.bpc,3,a,o,t,r));for(var m=0,h=0,g=t*u*4,_=0;_<g;_+=4)e[_]=p[m++],e[_+1]=p[m++],e[_+2]=p[m++],e[_+3]=f[h++];this.undoPreblend(e,t,u)},fillGrayBuffer:function(e){var t=this.numComps;t!=1&&G(`Reading gray scale from a color image: `+t);var n=this.width,r=this.height,i=this.bpc,a=n*t*i+7>>3,o=this.getImageBytes(r*a),s=this.getComponents(o);this.needsDecode&&this.decodeBuffer(s);for(var c=n*r,l=255/((1<<i)-1),u=0;u<c;++u)e[u]=l*s[u]|0},getImageData:function(){var e=this.drawWidth,t=this.drawHeight,n={width:e,height:t,data:new Uint8Array(e*t*4)},r=n.data;try{this.fillRgbaBuffer(r,e,t)}catch(e){W(`Unable to decode image: `+e)}return n},getImageBytes:function(e){return this.image.reset(),this.image.getBytes(e)}},n}(),rs={Courier:600,"Courier-Bold":600,"Courier-BoldOblique":600,"Courier-Oblique":600,Helvetica:{space:278,exclam:278,quotedbl:355,numbersign:556,dollar:556,percent:889,ampersand:667,quoteright:222,parenleft:333,parenright:333,asterisk:389,plus:584,comma:278,hyphen:333,period:278,slash:278,zero:556,one:556,two:556,three:556,four:556,five:556,six:556,seven:556,eight:556,nine:556,colon:278,semicolon:278,less:584,equal:584,greater:584,question:556,at:1015,A:667,B:667,C:722,D:722,E:667,F:611,G:778,H:722,I:278,J:500,K:667,L:556,M:833,N:722,O:778,P:667,Q:778,R:722,S:667,T:611,U:722,V:667,W:944,X:667,Y:667,Z:611,bracketleft:278,backslash:278,bracketright:278,asciicircum:469,underscore:556,quoteleft:222,a:556,b:556,c:500,d:556,e:556,f:278,g:556,h:556,i:222,j:222,k:500,l:222,m:833,n:556,o:556,p:556,q:556,r:333,s:500,t:278,u:556,v:500,w:722,x:500,y:500,z:500,braceleft:334,bar:260,braceright:334,asciitilde:584,exclamdown:333,cent:556,sterling:556,fraction:167,yen:556,florin:556,section:556,currency:556,quotesingle:191,quotedblleft:333,guillemotleft:556,guilsinglleft:333,guilsinglright:333,fi:500,fl:500,endash:556,dagger:556,daggerdbl:556,periodcentered:278,paragraph:537,bullet:350,quotesinglbase:222,quotedblbase:333,quotedblright:333,guillemotright:556,ellipsis:1e3,perthousand:1e3,questiondown:611,grave:333,acute:333,circumflex:333,tilde:333,macron:333,breve:333,dotaccent:333,dieresis:333,ring:333,cedilla:333,hungarumlaut:333,ogonek:333,caron:333,emdash:1e3,AE:1e3,ordfeminine:370,Lslash:556,Oslash:778,OE:1e3,ordmasculine:365,ae:889,dotlessi:278,lslash:222,oslash:611,oe:944,germandbls:611,Idieresis:278,eacute:556,abreve:556,uhungarumlaut:556,ecaron:556,Ydieresis:667,divide:584,Yacute:667,Acircumflex:667,aacute:556,Ucircumflex:722,yacute:500,scommaaccent:500,ecircumflex:556,Uring:722,Udieresis:722,aogonek:556,Uacute:722,uogonek:556,Edieresis:667,Dcroat:722,commaaccent:250,copyright:737,Emacron:667,ccaron:500,aring:556,Ncommaaccent:722,lacute:222,agrave:556,Tcommaaccent:611,Cacute:722,atilde:556,Edotaccent:667,scaron:500,scedilla:500,iacute:278,lozenge:471,Rcaron:722,Gcommaaccent:778,ucircumflex:556,acircumflex:556,Amacron:667,rcaron:333,ccedilla:500,Zdotaccent:611,Thorn:667,Omacron:778,Racute:722,Sacute:667,dcaron:643,Umacron:722,uring:556,threesuperior:333,Ograve:778,Agrave:667,Abreve:667,multiply:584,uacute:556,Tcaron:611,partialdiff:476,ydieresis:500,Nacute:722,icircumflex:278,Ecircumflex:667,adieresis:556,edieresis:556,cacute:500,nacute:556,umacron:556,Ncaron:722,Iacute:278,plusminus:584,brokenbar:260,registered:737,Gbreve:778,Idotaccent:278,summation:600,Egrave:667,racute:333,omacron:556,Zacute:611,Zcaron:611,greaterequal:549,Eth:722,Ccedilla:722,lcommaaccent:222,tcaron:317,eogonek:556,Uogonek:722,Aacute:667,Adieresis:667,egrave:556,zacute:500,iogonek:222,Oacute:778,oacute:556,amacron:556,sacute:500,idieresis:278,Ocircumflex:778,Ugrave:722,Delta:612,thorn:556,twosuperior:333,Odieresis:778,mu:556,igrave:278,ohungarumlaut:556,Eogonek:667,dcroat:556,threequarters:834,Scedilla:667,lcaron:299,Kcommaaccent:667,Lacute:556,trademark:1e3,edotaccent:556,Igrave:278,Imacron:278,Lcaron:556,onehalf:834,lessequal:549,ocircumflex:556,ntilde:556,Uhungarumlaut:722,Eacute:667,emacron:556,gbreve:556,onequarter:834,Scaron:667,Scommaaccent:667,Ohungarumlaut:778,degree:400,ograve:556,Ccaron:722,ugrave:556,radical:453,Dcaron:722,rcommaaccent:333,Ntilde:722,otilde:556,Rcommaaccent:722,Lcommaaccent:556,Atilde:667,Aogonek:667,Aring:667,Otilde:778,zdotaccent:500,Ecaron:667,Iogonek:278,kcommaaccent:500,minus:584,Icircumflex:278,ncaron:556,tcommaaccent:278,logicalnot:584,odieresis:556,udieresis:556,notequal:549,gcommaaccent:556,eth:556,zcaron:500,ncommaaccent:556,onesuperior:333,imacron:278,Euro:556},"Helvetica-Bold":{space:278,exclam:333,quotedbl:474,numbersign:556,dollar:556,percent:889,ampersand:722,quoteright:278,parenleft:333,parenright:333,asterisk:389,plus:584,comma:278,hyphen:333,period:278,slash:278,zero:556,one:556,two:556,three:556,four:556,five:556,six:556,seven:556,eight:556,nine:556,colon:333,semicolon:333,less:584,equal:584,greater:584,question:611,at:975,A:722,B:722,C:722,D:722,E:667,F:611,G:778,H:722,I:278,J:556,K:722,L:611,M:833,N:722,O:778,P:667,Q:778,R:722,S:667,T:611,U:722,V:667,W:944,X:667,Y:667,Z:611,bracketleft:333,backslash:278,bracketright:333,asciicircum:584,underscore:556,quoteleft:278,a:556,b:611,c:556,d:611,e:556,f:333,g:611,h:611,i:278,j:278,k:556,l:278,m:889,n:611,o:611,p:611,q:611,r:389,s:556,t:333,u:611,v:556,w:778,x:556,y:556,z:500,braceleft:389,bar:280,braceright:389,asciitilde:584,exclamdown:333,cent:556,sterling:556,fraction:167,yen:556,florin:556,section:556,currency:556,quotesingle:238,quotedblleft:500,guillemotleft:556,guilsinglleft:333,guilsinglright:333,fi:611,fl:611,endash:556,dagger:556,daggerdbl:556,periodcentered:278,paragraph:556,bullet:350,quotesinglbase:278,quotedblbase:500,quotedblright:500,guillemotright:556,ellipsis:1e3,perthousand:1e3,questiondown:611,grave:333,acute:333,circumflex:333,tilde:333,macron:333,breve:333,dotaccent:333,dieresis:333,ring:333,cedilla:333,hungarumlaut:333,ogonek:333,caron:333,emdash:1e3,AE:1e3,ordfeminine:370,Lslash:611,Oslash:778,OE:1e3,ordmasculine:365,ae:889,dotlessi:278,lslash:278,oslash:611,oe:944,germandbls:611,Idieresis:278,eacute:556,abreve:556,uhungarumlaut:611,ecaron:556,Ydieresis:667,divide:584,Yacute:667,Acircumflex:722,aacute:556,Ucircumflex:722,yacute:556,scommaaccent:556,ecircumflex:556,Uring:722,Udieresis:722,aogonek:556,Uacute:722,uogonek:611,Edieresis:667,Dcroat:722,commaaccent:250,copyright:737,Emacron:667,ccaron:556,aring:556,Ncommaaccent:722,lacute:278,agrave:556,Tcommaaccent:611,Cacute:722,atilde:556,Edotaccent:667,scaron:556,scedilla:556,iacute:278,lozenge:494,Rcaron:722,Gcommaaccent:778,ucircumflex:611,acircumflex:556,Amacron:722,rcaron:389,ccedilla:556,Zdotaccent:611,Thorn:667,Omacron:778,Racute:722,Sacute:667,dcaron:743,Umacron:722,uring:611,threesuperior:333,Ograve:778,Agrave:722,Abreve:722,multiply:584,uacute:611,Tcaron:611,partialdiff:494,ydieresis:556,Nacute:722,icircumflex:278,Ecircumflex:667,adieresis:556,edieresis:556,cacute:556,nacute:611,umacron:611,Ncaron:722,Iacute:278,plusminus:584,brokenbar:280,registered:737,Gbreve:778,Idotaccent:278,summation:600,Egrave:667,racute:389,omacron:611,Zacute:611,Zcaron:611,greaterequal:549,Eth:722,Ccedilla:722,lcommaaccent:278,tcaron:389,eogonek:556,Uogonek:722,Aacute:722,Adieresis:722,egrave:556,zacute:500,iogonek:278,Oacute:778,oacute:611,amacron:556,sacute:556,idieresis:278,Ocircumflex:778,Ugrave:722,Delta:612,thorn:611,twosuperior:333,Odieresis:778,mu:611,igrave:278,ohungarumlaut:611,Eogonek:667,dcroat:611,threequarters:834,Scedilla:667,lcaron:400,Kcommaaccent:722,Lacute:611,trademark:1e3,edotaccent:556,Igrave:278,Imacron:278,Lcaron:611,onehalf:834,lessequal:549,ocircumflex:611,ntilde:611,Uhungarumlaut:722,Eacute:667,emacron:556,gbreve:611,onequarter:834,Scaron:667,Scommaaccent:667,Ohungarumlaut:778,degree:400,ograve:611,Ccaron:722,ugrave:611,radical:549,Dcaron:722,rcommaaccent:389,Ntilde:722,otilde:611,Rcommaaccent:722,Lcommaaccent:611,Atilde:722,Aogonek:722,Aring:722,Otilde:778,zdotaccent:500,Ecaron:667,Iogonek:278,kcommaaccent:556,minus:584,Icircumflex:278,ncaron:611,tcommaaccent:333,logicalnot:584,odieresis:611,udieresis:611,notequal:549,gcommaaccent:611,eth:611,zcaron:500,ncommaaccent:611,onesuperior:333,imacron:278,Euro:556},"Helvetica-BoldOblique":{space:278,exclam:333,quotedbl:474,numbersign:556,dollar:556,percent:889,ampersand:722,quoteright:278,parenleft:333,parenright:333,asterisk:389,plus:584,comma:278,hyphen:333,period:278,slash:278,zero:556,one:556,two:556,three:556,four:556,five:556,six:556,seven:556,eight:556,nine:556,colon:333,semicolon:333,less:584,equal:584,greater:584,question:611,at:975,A:722,B:722,C:722,D:722,E:667,F:611,G:778,H:722,I:278,J:556,K:722,L:611,M:833,N:722,O:778,P:667,Q:778,R:722,S:667,T:611,U:722,V:667,W:944,X:667,Y:667,Z:611,bracketleft:333,backslash:278,bracketright:333,asciicircum:584,underscore:556,quoteleft:278,a:556,b:611,c:556,d:611,e:556,f:333,g:611,h:611,i:278,j:278,k:556,l:278,m:889,n:611,o:611,p:611,q:611,r:389,s:556,t:333,u:611,v:556,w:778,x:556,y:556,z:500,braceleft:389,bar:280,braceright:389,asciitilde:584,exclamdown:333,cent:556,sterling:556,fraction:167,yen:556,florin:556,section:556,currency:556,quotesingle:238,quotedblleft:500,guillemotleft:556,guilsinglleft:333,guilsinglright:333,fi:611,fl:611,endash:556,dagger:556,daggerdbl:556,periodcentered:278,paragraph:556,bullet:350,quotesinglbase:278,quotedblbase:500,quotedblright:500,guillemotright:556,ellipsis:1e3,perthousand:1e3,questiondown:611,grave:333,acute:333,circumflex:333,tilde:333,macron:333,breve:333,dotaccent:333,dieresis:333,ring:333,cedilla:333,hungarumlaut:333,ogonek:333,caron:333,emdash:1e3,AE:1e3,ordfeminine:370,Lslash:611,Oslash:778,OE:1e3,ordmasculine:365,ae:889,dotlessi:278,lslash:278,oslash:611,oe:944,germandbls:611,Idieresis:278,eacute:556,abreve:556,uhungarumlaut:611,ecaron:556,Ydieresis:667,divide:584,Yacute:667,Acircumflex:722,aacute:556,Ucircumflex:722,yacute:556,scommaaccent:556,ecircumflex:556,Uring:722,Udieresis:722,aogonek:556,Uacute:722,uogonek:611,Edieresis:667,Dcroat:722,commaaccent:250,copyright:737,Emacron:667,ccaron:556,aring:556,Ncommaaccent:722,lacute:278,agrave:556,Tcommaaccent:611,Cacute:722,atilde:556,Edotaccent:667,scaron:556,scedilla:556,iacute:278,lozenge:494,Rcaron:722,Gcommaaccent:778,ucircumflex:611,acircumflex:556,Amacron:722,rcaron:389,ccedilla:556,Zdotaccent:611,Thorn:667,Omacron:778,Racute:722,Sacute:667,dcaron:743,Umacron:722,uring:611,threesuperior:333,Ograve:778,Agrave:722,Abreve:722,multiply:584,uacute:611,Tcaron:611,partialdiff:494,ydieresis:556,Nacute:722,icircumflex:278,Ecircumflex:667,adieresis:556,edieresis:556,cacute:556,nacute:611,umacron:611,Ncaron:722,Iacute:278,plusminus:584,brokenbar:280,registered:737,Gbreve:778,Idotaccent:278,summation:600,Egrave:667,racute:389,omacron:611,Zacute:611,Zcaron:611,greaterequal:549,Eth:722,Ccedilla:722,lcommaaccent:278,tcaron:389,eogonek:556,Uogonek:722,Aacute:722,Adieresis:722,egrave:556,zacute:500,iogonek:278,Oacute:778,oacute:611,amacron:556,sacute:556,idieresis:278,Ocircumflex:778,Ugrave:722,Delta:612,thorn:611,twosuperior:333,Odieresis:778,mu:611,igrave:278,ohungarumlaut:611,Eogonek:667,dcroat:611,threequarters:834,Scedilla:667,lcaron:400,Kcommaaccent:722,Lacute:611,trademark:1e3,edotaccent:556,Igrave:278,Imacron:278,Lcaron:611,onehalf:834,lessequal:549,ocircumflex:611,ntilde:611,Uhungarumlaut:722,Eacute:667,emacron:556,gbreve:611,onequarter:834,Scaron:667,Scommaaccent:667,Ohungarumlaut:778,degree:400,ograve:611,Ccaron:722,ugrave:611,radical:549,Dcaron:722,rcommaaccent:389,Ntilde:722,otilde:611,Rcommaaccent:722,Lcommaaccent:611,Atilde:722,Aogonek:722,Aring:722,Otilde:778,zdotaccent:500,Ecaron:667,Iogonek:278,kcommaaccent:556,minus:584,Icircumflex:278,ncaron:611,tcommaaccent:333,logicalnot:584,odieresis:611,udieresis:611,notequal:549,gcommaaccent:611,eth:611,zcaron:500,ncommaaccent:611,onesuperior:333,imacron:278,Euro:556},"Helvetica-Oblique":{space:278,exclam:278,quotedbl:355,numbersign:556,dollar:556,percent:889,ampersand:667,quoteright:222,parenleft:333,parenright:333,asterisk:389,plus:584,comma:278,hyphen:333,period:278,slash:278,zero:556,one:556,two:556,three:556,four:556,five:556,six:556,seven:556,eight:556,nine:556,colon:278,semicolon:278,less:584,equal:584,greater:584,question:556,at:1015,A:667,B:667,C:722,D:722,E:667,F:611,G:778,H:722,I:278,J:500,K:667,L:556,M:833,N:722,O:778,P:667,Q:778,R:722,S:667,T:611,U:722,V:667,W:944,X:667,Y:667,Z:611,bracketleft:278,backslash:278,bracketright:278,asciicircum:469,underscore:556,quoteleft:222,a:556,b:556,c:500,d:556,e:556,f:278,g:556,h:556,i:222,j:222,k:500,l:222,m:833,n:556,o:556,p:556,q:556,r:333,s:500,t:278,u:556,v:500,w:722,x:500,y:500,z:500,braceleft:334,bar:260,braceright:334,asciitilde:584,exclamdown:333,cent:556,sterling:556,fraction:167,yen:556,florin:556,section:556,currency:556,quotesingle:191,quotedblleft:333,guillemotleft:556,guilsinglleft:333,guilsinglright:333,fi:500,fl:500,endash:556,dagger:556,daggerdbl:556,periodcentered:278,paragraph:537,bullet:350,quotesinglbase:222,quotedblbase:333,quotedblright:333,guillemotright:556,ellipsis:1e3,perthousand:1e3,questiondown:611,grave:333,acute:333,circumflex:333,tilde:333,macron:333,breve:333,dotaccent:333,dieresis:333,ring:333,cedilla:333,hungarumlaut:333,ogonek:333,caron:333,emdash:1e3,AE:1e3,ordfeminine:370,Lslash:556,Oslash:778,OE:1e3,ordmasculine:365,ae:889,dotlessi:278,lslash:222,oslash:611,oe:944,germandbls:611,Idieresis:278,eacute:556,abreve:556,uhungarumlaut:556,ecaron:556,Ydieresis:667,divide:584,Yacute:667,Acircumflex:667,aacute:556,Ucircumflex:722,yacute:500,scommaaccent:500,ecircumflex:556,Uring:722,Udieresis:722,aogonek:556,Uacute:722,uogonek:556,Edieresis:667,Dcroat:722,commaaccent:250,copyright:737,Emacron:667,ccaron:500,aring:556,Ncommaaccent:722,lacute:222,agrave:556,Tcommaaccent:611,Cacute:722,atilde:556,Edotaccent:667,scaron:500,scedilla:500,iacute:278,lozenge:471,Rcaron:722,Gcommaaccent:778,ucircumflex:556,acircumflex:556,Amacron:667,rcaron:333,ccedilla:500,Zdotaccent:611,Thorn:667,Omacron:778,Racute:722,Sacute:667,dcaron:643,Umacron:722,uring:556,threesuperior:333,Ograve:778,Agrave:667,Abreve:667,multiply:584,uacute:556,Tcaron:611,partialdiff:476,ydieresis:500,Nacute:722,icircumflex:278,Ecircumflex:667,adieresis:556,edieresis:556,cacute:500,nacute:556,umacron:556,Ncaron:722,Iacute:278,plusminus:584,brokenbar:260,registered:737,Gbreve:778,Idotaccent:278,summation:600,Egrave:667,racute:333,omacron:556,Zacute:611,Zcaron:611,greaterequal:549,Eth:722,Ccedilla:722,lcommaaccent:222,tcaron:317,eogonek:556,Uogonek:722,Aacute:667,Adieresis:667,egrave:556,zacute:500,iogonek:222,Oacute:778,oacute:556,amacron:556,sacute:500,idieresis:278,Ocircumflex:778,Ugrave:722,Delta:612,thorn:556,twosuperior:333,Odieresis:778,mu:556,igrave:278,ohungarumlaut:556,Eogonek:667,dcroat:556,threequarters:834,Scedilla:667,lcaron:299,Kcommaaccent:667,Lacute:556,trademark:1e3,edotaccent:556,Igrave:278,Imacron:278,Lcaron:556,onehalf:834,lessequal:549,ocircumflex:556,ntilde:556,Uhungarumlaut:722,Eacute:667,emacron:556,gbreve:556,onequarter:834,Scaron:667,Scommaaccent:667,Ohungarumlaut:778,degree:400,ograve:556,Ccaron:722,ugrave:556,radical:453,Dcaron:722,rcommaaccent:333,Ntilde:722,otilde:556,Rcommaaccent:722,Lcommaaccent:556,Atilde:667,Aogonek:667,Aring:667,Otilde:778,zdotaccent:500,Ecaron:667,Iogonek:278,kcommaaccent:500,minus:584,Icircumflex:278,ncaron:556,tcommaaccent:278,logicalnot:584,odieresis:556,udieresis:556,notequal:549,gcommaaccent:556,eth:556,zcaron:500,ncommaaccent:556,onesuperior:333,imacron:278,Euro:556},Symbol:{space:250,exclam:333,universal:713,numbersign:500,existential:549,percent:833,ampersand:778,suchthat:439,parenleft:333,parenright:333,asteriskmath:500,plus:549,comma:250,minus:549,period:250,slash:278,zero:500,one:500,two:500,three:500,four:500,five:500,six:500,seven:500,eight:500,nine:500,colon:278,semicolon:278,less:549,equal:549,greater:549,question:444,congruent:549,Alpha:722,Beta:667,Chi:722,Delta:612,Epsilon:611,Phi:763,Gamma:603,Eta:722,Iota:333,theta1:631,Kappa:722,Lambda:686,Mu:889,Nu:722,Omicron:722,Pi:768,Theta:741,Rho:556,Sigma:592,Tau:611,Upsilon:690,sigma1:439,Omega:768,Xi:645,Psi:795,Zeta:611,bracketleft:333,therefore:863,bracketright:333,perpendicular:658,underscore:500,radicalex:500,alpha:631,beta:549,chi:549,delta:494,epsilon:439,phi:521,gamma:411,eta:603,iota:329,phi1:603,kappa:549,lambda:549,mu:576,nu:521,omicron:549,pi:549,theta:521,rho:549,sigma:603,tau:439,upsilon:576,omega1:713,omega:686,xi:493,psi:686,zeta:494,braceleft:480,bar:200,braceright:480,similar:549,Euro:750,Upsilon1:620,minute:247,lessequal:549,fraction:167,infinity:713,florin:500,club:753,diamond:753,heart:753,spade:753,arrowboth:1042,arrowleft:987,arrowup:603,arrowright:987,arrowdown:603,degree:400,plusminus:549,second:411,greaterequal:549,multiply:549,proportional:713,partialdiff:494,bullet:460,divide:549,notequal:549,equivalence:549,approxequal:549,ellipsis:1e3,arrowvertex:603,arrowhorizex:1e3,carriagereturn:658,aleph:823,Ifraktur:686,Rfraktur:795,weierstrass:987,circlemultiply:768,circleplus:768,emptyset:823,intersection:768,union:768,propersuperset:713,reflexsuperset:713,notsubset:713,propersubset:713,reflexsubset:713,element:713,notelement:713,angle:768,gradient:713,registerserif:790,copyrightserif:790,trademarkserif:890,product:823,radical:549,dotmath:250,logicalnot:713,logicaland:603,logicalor:603,arrowdblboth:1042,arrowdblleft:987,arrowdblup:603,arrowdblright:987,arrowdbldown:603,lozenge:494,angleleft:329,registersans:790,copyrightsans:790,trademarksans:786,summation:713,parenlefttp:384,parenleftex:384,parenleftbt:384,bracketlefttp:384,bracketleftex:384,bracketleftbt:384,bracelefttp:494,braceleftmid:494,braceleftbt:494,braceex:494,angleright:329,integral:274,integraltp:686,integralex:686,integralbt:686,parenrighttp:384,parenrightex:384,parenrightbt:384,bracketrighttp:384,bracketrightex:384,bracketrightbt:384,bracerighttp:494,bracerightmid:494,bracerightbt:494,apple:790},"Times-Roman":{space:250,exclam:333,quotedbl:408,numbersign:500,dollar:500,percent:833,ampersand:778,quoteright:333,parenleft:333,parenright:333,asterisk:500,plus:564,comma:250,hyphen:333,period:250,slash:278,zero:500,one:500,two:500,three:500,four:500,five:500,six:500,seven:500,eight:500,nine:500,colon:278,semicolon:278,less:564,equal:564,greater:564,question:444,at:921,A:722,B:667,C:667,D:722,E:611,F:556,G:722,H:722,I:333,J:389,K:722,L:611,M:889,N:722,O:722,P:556,Q:722,R:667,S:556,T:611,U:722,V:722,W:944,X:722,Y:722,Z:611,bracketleft:333,backslash:278,bracketright:333,asciicircum:469,underscore:500,quoteleft:333,a:444,b:500,c:444,d:500,e:444,f:333,g:500,h:500,i:278,j:278,k:500,l:278,m:778,n:500,o:500,p:500,q:500,r:333,s:389,t:278,u:500,v:500,w:722,x:500,y:500,z:444,braceleft:480,bar:200,braceright:480,asciitilde:541,exclamdown:333,cent:500,sterling:500,fraction:167,yen:500,florin:500,section:500,currency:500,quotesingle:180,quotedblleft:444,guillemotleft:500,guilsinglleft:333,guilsinglright:333,fi:556,fl:556,endash:500,dagger:500,daggerdbl:500,periodcentered:250,paragraph:453,bullet:350,quotesinglbase:333,quotedblbase:444,quotedblright:444,guillemotright:500,ellipsis:1e3,perthousand:1e3,questiondown:444,grave:333,acute:333,circumflex:333,tilde:333,macron:333,breve:333,dotaccent:333,dieresis:333,ring:333,cedilla:333,hungarumlaut:333,ogonek:333,caron:333,emdash:1e3,AE:889,ordfeminine:276,Lslash:611,Oslash:722,OE:889,ordmasculine:310,ae:667,dotlessi:278,lslash:278,oslash:500,oe:722,germandbls:500,Idieresis:333,eacute:444,abreve:444,uhungarumlaut:500,ecaron:444,Ydieresis:722,divide:564,Yacute:722,Acircumflex:722,aacute:444,Ucircumflex:722,yacute:500,scommaaccent:389,ecircumflex:444,Uring:722,Udieresis:722,aogonek:444,Uacute:722,uogonek:500,Edieresis:611,Dcroat:722,commaaccent:250,copyright:760,Emacron:611,ccaron:444,aring:444,Ncommaaccent:722,lacute:278,agrave:444,Tcommaaccent:611,Cacute:667,atilde:444,Edotaccent:611,scaron:389,scedilla:389,iacute:278,lozenge:471,Rcaron:667,Gcommaaccent:722,ucircumflex:500,acircumflex:444,Amacron:722,rcaron:333,ccedilla:444,Zdotaccent:611,Thorn:556,Omacron:722,Racute:667,Sacute:556,dcaron:588,Umacron:722,uring:500,threesuperior:300,Ograve:722,Agrave:722,Abreve:722,multiply:564,uacute:500,Tcaron:611,partialdiff:476,ydieresis:500,Nacute:722,icircumflex:278,Ecircumflex:611,adieresis:444,edieresis:444,cacute:444,nacute:500,umacron:500,Ncaron:722,Iacute:333,plusminus:564,brokenbar:200,registered:760,Gbreve:722,Idotaccent:333,summation:600,Egrave:611,racute:333,omacron:500,Zacute:611,Zcaron:611,greaterequal:549,Eth:722,Ccedilla:667,lcommaaccent:278,tcaron:326,eogonek:444,Uogonek:722,Aacute:722,Adieresis:722,egrave:444,zacute:444,iogonek:278,Oacute:722,oacute:500,amacron:444,sacute:389,idieresis:278,Ocircumflex:722,Ugrave:722,Delta:612,thorn:500,twosuperior:300,Odieresis:722,mu:500,igrave:278,ohungarumlaut:500,Eogonek:611,dcroat:500,threequarters:750,Scedilla:556,lcaron:344,Kcommaaccent:722,Lacute:611,trademark:980,edotaccent:444,Igrave:333,Imacron:333,Lcaron:611,onehalf:750,lessequal:549,ocircumflex:500,ntilde:500,Uhungarumlaut:722,Eacute:611,emacron:444,gbreve:500,onequarter:750,Scaron:556,Scommaaccent:556,Ohungarumlaut:722,degree:400,ograve:500,Ccaron:667,ugrave:500,radical:453,Dcaron:722,rcommaaccent:333,Ntilde:722,otilde:500,Rcommaaccent:667,Lcommaaccent:611,Atilde:722,Aogonek:722,Aring:722,Otilde:722,zdotaccent:444,Ecaron:611,Iogonek:333,kcommaaccent:500,minus:564,Icircumflex:333,ncaron:500,tcommaaccent:278,logicalnot:564,odieresis:500,udieresis:500,notequal:549,gcommaaccent:500,eth:500,zcaron:444,ncommaaccent:500,onesuperior:300,imacron:278,Euro:500},"Times-Bold":{space:250,exclam:333,quotedbl:555,numbersign:500,dollar:500,percent:1e3,ampersand:833,quoteright:333,parenleft:333,parenright:333,asterisk:500,plus:570,comma:250,hyphen:333,period:250,slash:278,zero:500,one:500,two:500,three:500,four:500,five:500,six:500,seven:500,eight:500,nine:500,colon:333,semicolon:333,less:570,equal:570,greater:570,question:500,at:930,A:722,B:667,C:722,D:722,E:667,F:611,G:778,H:778,I:389,J:500,K:778,L:667,M:944,N:722,O:778,P:611,Q:778,R:722,S:556,T:667,U:722,V:722,W:1e3,X:722,Y:722,Z:667,bracketleft:333,backslash:278,bracketright:333,asciicircum:581,underscore:500,quoteleft:333,a:500,b:556,c:444,d:556,e:444,f:333,g:500,h:556,i:278,j:333,k:556,l:278,m:833,n:556,o:500,p:556,q:556,r:444,s:389,t:333,u:556,v:500,w:722,x:500,y:500,z:444,braceleft:394,bar:220,braceright:394,asciitilde:520,exclamdown:333,cent:500,sterling:500,fraction:167,yen:500,florin:500,section:500,currency:500,quotesingle:278,quotedblleft:500,guillemotleft:500,guilsinglleft:333,guilsinglright:333,fi:556,fl:556,endash:500,dagger:500,daggerdbl:500,periodcentered:250,paragraph:540,bullet:350,quotesinglbase:333,quotedblbase:500,quotedblright:500,guillemotright:500,ellipsis:1e3,perthousand:1e3,questiondown:500,grave:333,acute:333,circumflex:333,tilde:333,macron:333,breve:333,dotaccent:333,dieresis:333,ring:333,cedilla:333,hungarumlaut:333,ogonek:333,caron:333,emdash:1e3,AE:1e3,ordfeminine:300,Lslash:667,Oslash:778,OE:1e3,ordmasculine:330,ae:722,dotlessi:278,lslash:278,oslash:500,oe:722,germandbls:556,Idieresis:389,eacute:444,abreve:500,uhungarumlaut:556,ecaron:444,Ydieresis:722,divide:570,Yacute:722,Acircumflex:722,aacute:500,Ucircumflex:722,yacute:500,scommaaccent:389,ecircumflex:444,Uring:722,Udieresis:722,aogonek:500,Uacute:722,uogonek:556,Edieresis:667,Dcroat:722,commaaccent:250,copyright:747,Emacron:667,ccaron:444,aring:500,Ncommaaccent:722,lacute:278,agrave:500,Tcommaaccent:667,Cacute:722,atilde:500,Edotaccent:667,scaron:389,scedilla:389,iacute:278,lozenge:494,Rcaron:722,Gcommaaccent:778,ucircumflex:556,acircumflex:500,Amacron:722,rcaron:444,ccedilla:444,Zdotaccent:667,Thorn:611,Omacron:778,Racute:722,Sacute:556,dcaron:672,Umacron:722,uring:556,threesuperior:300,Ograve:778,Agrave:722,Abreve:722,multiply:570,uacute:556,Tcaron:667,partialdiff:494,ydieresis:500,Nacute:722,icircumflex:278,Ecircumflex:667,adieresis:500,edieresis:444,cacute:444,nacute:556,umacron:556,Ncaron:722,Iacute:389,plusminus:570,brokenbar:220,registered:747,Gbreve:778,Idotaccent:389,summation:600,Egrave:667,racute:444,omacron:500,Zacute:667,Zcaron:667,greaterequal:549,Eth:722,Ccedilla:722,lcommaaccent:278,tcaron:416,eogonek:444,Uogonek:722,Aacute:722,Adieresis:722,egrave:444,zacute:444,iogonek:278,Oacute:778,oacute:500,amacron:500,sacute:389,idieresis:278,Ocircumflex:778,Ugrave:722,Delta:612,thorn:556,twosuperior:300,Odieresis:778,mu:556,igrave:278,ohungarumlaut:500,Eogonek:667,dcroat:556,threequarters:750,Scedilla:556,lcaron:394,Kcommaaccent:778,Lacute:667,trademark:1e3,edotaccent:444,Igrave:389,Imacron:389,Lcaron:667,onehalf:750,lessequal:549,ocircumflex:500,ntilde:556,Uhungarumlaut:722,Eacute:667,emacron:444,gbreve:500,onequarter:750,Scaron:556,Scommaaccent:556,Ohungarumlaut:778,degree:400,ograve:500,Ccaron:722,ugrave:556,radical:549,Dcaron:722,rcommaaccent:444,Ntilde:722,otilde:500,Rcommaaccent:722,Lcommaaccent:667,Atilde:722,Aogonek:722,Aring:722,Otilde:778,zdotaccent:444,Ecaron:667,Iogonek:389,kcommaaccent:556,minus:570,Icircumflex:389,ncaron:556,tcommaaccent:333,logicalnot:570,odieresis:500,udieresis:556,notequal:549,gcommaaccent:500,eth:500,zcaron:444,ncommaaccent:556,onesuperior:300,imacron:278,Euro:500},"Times-BoldItalic":{space:250,exclam:389,quotedbl:555,numbersign:500,dollar:500,percent:833,ampersand:778,quoteright:333,parenleft:333,parenright:333,asterisk:500,plus:570,comma:250,hyphen:333,period:250,slash:278,zero:500,one:500,two:500,three:500,four:500,five:500,six:500,seven:500,eight:500,nine:500,colon:333,semicolon:333,less:570,equal:570,greater:570,question:500,at:832,A:667,B:667,C:667,D:722,E:667,F:667,G:722,H:778,I:389,J:500,K:667,L:611,M:889,N:722,O:722,P:611,Q:722,R:667,S:556,T:611,U:722,V:667,W:889,X:667,Y:611,Z:611,bracketleft:333,backslash:278,bracketright:333,asciicircum:570,underscore:500,quoteleft:333,a:500,b:500,c:444,d:500,e:444,f:333,g:500,h:556,i:278,j:278,k:500,l:278,m:778,n:556,o:500,p:500,q:500,r:389,s:389,t:278,u:556,v:444,w:667,x:500,y:444,z:389,braceleft:348,bar:220,braceright:348,asciitilde:570,exclamdown:389,cent:500,sterling:500,fraction:167,yen:500,florin:500,section:500,currency:500,quotesingle:278,quotedblleft:500,guillemotleft:500,guilsinglleft:333,guilsinglright:333,fi:556,fl:556,endash:500,dagger:500,daggerdbl:500,periodcentered:250,paragraph:500,bullet:350,quotesinglbase:333,quotedblbase:500,quotedblright:500,guillemotright:500,ellipsis:1e3,perthousand:1e3,questiondown:500,grave:333,acute:333,circumflex:333,tilde:333,macron:333,breve:333,dotaccent:333,dieresis:333,ring:333,cedilla:333,hungarumlaut:333,ogonek:333,caron:333,emdash:1e3,AE:944,ordfeminine:266,Lslash:611,Oslash:722,OE:944,ordmasculine:300,ae:722,dotlessi:278,lslash:278,oslash:500,oe:722,germandbls:500,Idieresis:389,eacute:444,abreve:500,uhungarumlaut:556,ecaron:444,Ydieresis:611,divide:570,Yacute:611,Acircumflex:667,aacute:500,Ucircumflex:722,yacute:444,scommaaccent:389,ecircumflex:444,Uring:722,Udieresis:722,aogonek:500,Uacute:722,uogonek:556,Edieresis:667,Dcroat:722,commaaccent:250,copyright:747,Emacron:667,ccaron:444,aring:500,Ncommaaccent:722,lacute:278,agrave:500,Tcommaaccent:611,Cacute:667,atilde:500,Edotaccent:667,scaron:389,scedilla:389,iacute:278,lozenge:494,Rcaron:667,Gcommaaccent:722,ucircumflex:556,acircumflex:500,Amacron:667,rcaron:389,ccedilla:444,Zdotaccent:611,Thorn:611,Omacron:722,Racute:667,Sacute:556,dcaron:608,Umacron:722,uring:556,threesuperior:300,Ograve:722,Agrave:667,Abreve:667,multiply:570,uacute:556,Tcaron:611,partialdiff:494,ydieresis:444,Nacute:722,icircumflex:278,Ecircumflex:667,adieresis:500,edieresis:444,cacute:444,nacute:556,umacron:556,Ncaron:722,Iacute:389,plusminus:570,brokenbar:220,registered:747,Gbreve:722,Idotaccent:389,summation:600,Egrave:667,racute:389,omacron:500,Zacute:611,Zcaron:611,greaterequal:549,Eth:722,Ccedilla:667,lcommaaccent:278,tcaron:366,eogonek:444,Uogonek:722,Aacute:667,Adieresis:667,egrave:444,zacute:389,iogonek:278,Oacute:722,oacute:500,amacron:500,sacute:389,idieresis:278,Ocircumflex:722,Ugrave:722,Delta:612,thorn:500,twosuperior:300,Odieresis:722,mu:576,igrave:278,ohungarumlaut:500,Eogonek:667,dcroat:500,threequarters:750,Scedilla:556,lcaron:382,Kcommaaccent:667,Lacute:611,trademark:1e3,edotaccent:444,Igrave:389,Imacron:389,Lcaron:611,onehalf:750,lessequal:549,ocircumflex:500,ntilde:556,Uhungarumlaut:722,Eacute:667,emacron:444,gbreve:500,onequarter:750,Scaron:556,Scommaaccent:556,Ohungarumlaut:722,degree:400,ograve:500,Ccaron:667,ugrave:556,radical:549,Dcaron:722,rcommaaccent:389,Ntilde:722,otilde:500,Rcommaaccent:667,Lcommaaccent:611,Atilde:667,Aogonek:667,Aring:667,Otilde:722,zdotaccent:389,Ecaron:667,Iogonek:389,kcommaaccent:500,minus:606,Icircumflex:389,ncaron:556,tcommaaccent:278,logicalnot:606,odieresis:500,udieresis:556,notequal:549,gcommaaccent:500,eth:500,zcaron:389,ncommaaccent:556,onesuperior:300,imacron:278,Euro:500},"Times-Italic":{space:250,exclam:333,quotedbl:420,numbersign:500,dollar:500,percent:833,ampersand:778,quoteright:333,parenleft:333,parenright:333,asterisk:500,plus:675,comma:250,hyphen:333,period:250,slash:278,zero:500,one:500,two:500,three:500,four:500,five:500,six:500,seven:500,eight:500,nine:500,colon:333,semicolon:333,less:675,equal:675,greater:675,question:500,at:920,A:611,B:611,C:667,D:722,E:611,F:611,G:722,H:722,I:333,J:444,K:667,L:556,M:833,N:667,O:722,P:611,Q:722,R:611,S:500,T:556,U:722,V:611,W:833,X:611,Y:556,Z:556,bracketleft:389,backslash:278,bracketright:389,asciicircum:422,underscore:500,quoteleft:333,a:500,b:500,c:444,d:500,e:444,f:278,g:500,h:500,i:278,j:278,k:444,l:278,m:722,n:500,o:500,p:500,q:500,r:389,s:389,t:278,u:500,v:444,w:667,x:444,y:444,z:389,braceleft:400,bar:275,braceright:400,asciitilde:541,exclamdown:389,cent:500,sterling:500,fraction:167,yen:500,florin:500,section:500,currency:500,quotesingle:214,quotedblleft:556,guillemotleft:500,guilsinglleft:333,guilsinglright:333,fi:500,fl:500,endash:500,dagger:500,daggerdbl:500,periodcentered:250,paragraph:523,bullet:350,quotesinglbase:333,quotedblbase:556,quotedblright:556,guillemotright:500,ellipsis:889,perthousand:1e3,questiondown:500,grave:333,acute:333,circumflex:333,tilde:333,macron:333,breve:333,dotaccent:333,dieresis:333,ring:333,cedilla:333,hungarumlaut:333,ogonek:333,caron:333,emdash:889,AE:889,ordfeminine:276,Lslash:556,Oslash:722,OE:944,ordmasculine:310,ae:667,dotlessi:278,lslash:278,oslash:500,oe:667,germandbls:500,Idieresis:333,eacute:444,abreve:500,uhungarumlaut:500,ecaron:444,Ydieresis:556,divide:675,Yacute:556,Acircumflex:611,aacute:500,Ucircumflex:722,yacute:444,scommaaccent:389,ecircumflex:444,Uring:722,Udieresis:722,aogonek:500,Uacute:722,uogonek:500,Edieresis:611,Dcroat:722,commaaccent:250,copyright:760,Emacron:611,ccaron:444,aring:500,Ncommaaccent:667,lacute:278,agrave:500,Tcommaaccent:556,Cacute:667,atilde:500,Edotaccent:611,scaron:389,scedilla:389,iacute:278,lozenge:471,Rcaron:611,Gcommaaccent:722,ucircumflex:500,acircumflex:500,Amacron:611,rcaron:389,ccedilla:444,Zdotaccent:556,Thorn:611,Omacron:722,Racute:611,Sacute:500,dcaron:544,Umacron:722,uring:500,threesuperior:300,Ograve:722,Agrave:611,Abreve:611,multiply:675,uacute:500,Tcaron:556,partialdiff:476,ydieresis:444,Nacute:667,icircumflex:278,Ecircumflex:611,adieresis:500,edieresis:444,cacute:444,nacute:500,umacron:500,Ncaron:667,Iacute:333,plusminus:675,brokenbar:275,registered:760,Gbreve:722,Idotaccent:333,summation:600,Egrave:611,racute:389,omacron:500,Zacute:556,Zcaron:556,greaterequal:549,Eth:722,Ccedilla:667,lcommaaccent:278,tcaron:300,eogonek:444,Uogonek:722,Aacute:611,Adieresis:611,egrave:444,zacute:389,iogonek:278,Oacute:722,oacute:500,amacron:500,sacute:389,idieresis:278,Ocircumflex:722,Ugrave:722,Delta:612,thorn:500,twosuperior:300,Odieresis:722,mu:500,igrave:278,ohungarumlaut:500,Eogonek:611,dcroat:500,threequarters:750,Scedilla:500,lcaron:300,Kcommaaccent:667,Lacute:556,trademark:980,edotaccent:444,Igrave:333,Imacron:333,Lcaron:611,onehalf:750,lessequal:549,ocircumflex:500,ntilde:500,Uhungarumlaut:722,Eacute:611,emacron:444,gbreve:500,onequarter:750,Scaron:500,Scommaaccent:500,Ohungarumlaut:722,degree:400,ograve:500,Ccaron:667,ugrave:500,radical:453,Dcaron:722,rcommaaccent:389,Ntilde:667,otilde:500,Rcommaaccent:611,Lcommaaccent:556,Atilde:611,Aogonek:611,Aring:611,Otilde:722,zdotaccent:389,Ecaron:611,Iogonek:333,kcommaaccent:444,minus:675,Icircumflex:333,ncaron:500,tcommaaccent:278,logicalnot:675,odieresis:500,udieresis:500,notequal:549,gcommaaccent:500,eth:500,zcaron:389,ncommaaccent:500,onesuperior:300,imacron:278,Euro:500},ZapfDingbats:{space:278,a1:974,a2:961,a202:974,a3:980,a4:719,a5:789,a119:790,a118:791,a117:690,a11:960,a12:939,a13:549,a14:855,a15:911,a16:933,a105:911,a17:945,a18:974,a19:755,a20:846,a21:762,a22:761,a23:571,a24:677,a25:763,a26:760,a27:759,a28:754,a6:494,a7:552,a8:537,a9:577,a10:692,a29:786,a30:788,a31:788,a32:790,a33:793,a34:794,a35:816,a36:823,a37:789,a38:841,a39:823,a40:833,a41:816,a42:831,a43:923,a44:744,a45:723,a46:749,a47:790,a48:792,a49:695,a50:776,a51:768,a52:792,a53:759,a54:707,a55:708,a56:682,a57:701,a58:826,a59:815,a60:789,a61:789,a62:707,a63:687,a64:696,a65:689,a66:786,a67:787,a68:713,a69:791,a70:785,a71:791,a72:873,a73:761,a74:762,a203:762,a75:759,a204:759,a76:892,a77:892,a78:788,a79:784,a81:438,a82:138,a83:277,a84:415,a97:392,a98:392,a99:668,a100:668,a89:390,a90:390,a93:317,a94:317,a91:276,a92:276,a205:509,a85:509,a206:410,a86:410,a87:234,a88:234,a95:334,a96:334,a101:732,a102:544,a103:544,a104:910,a106:667,a107:760,a108:760,a112:776,a111:595,a110:694,a109:626,a120:788,a121:788,a122:788,a123:788,a124:788,a125:788,a126:788,a127:788,a128:788,a129:788,a130:788,a131:788,a132:788,a133:788,a134:788,a135:788,a136:788,a137:788,a138:788,a139:788,a140:788,a141:788,a142:788,a143:788,a144:788,a145:788,a146:788,a147:788,a148:788,a149:788,a150:788,a151:788,a152:788,a153:788,a154:788,a155:788,a156:788,a157:788,a158:788,a159:788,a160:894,a161:838,a163:1016,a164:458,a196:748,a165:924,a192:748,a166:918,a167:927,a168:928,a169:928,a170:834,a171:873,a172:828,a173:924,a162:924,a174:917,a175:930,a176:931,a177:463,a178:883,a179:836,a193:836,a180:867,a199:867,a181:696,a200:696,a182:874,a201:874,a183:760,a184:946,a197:771,a185:865,a194:771,a198:888,a186:967,a195:888,a187:831,a188:873,a189:927,a190:970,a191:918}},is={};function as(e){return e==is}var os=function(){function e(e,t,n){this.lexer=e,this.allowStreams=t,this.xref=n,this.refill()}return e.prototype={saveState:function(){this.state={buf1:this.buf1,buf2:this.buf2,streamPos:this.lexer.stream.pos}},restoreState:function(){var e=this.state;this.buf1=e.buf1,this.buf2=e.buf2,this.lexer.stream.pos=e.streamPos},refill:function(){this.buf1=this.lexer.getObj(),this.buf2=this.lexer.getObj()},shift:function(){ea(this.buf2,`ID`)?(this.buf1=this.buf2,this.buf2=null):(this.buf1=this.buf2,this.buf2=this.lexer.getObj())},getObj:function(e){if(ea(this.buf1,`BI`))return this.shift(),this.makeInlineImage(e);if(ea(this.buf1,`[`)){this.shift();for(var t=[];!ea(this.buf1,`]`)&&!as(this.buf1);)t.push(this.getObj(e));return as(this.buf1)&&G(`End of file inside array`),this.shift(),t}if(ea(this.buf1,`<<`)){this.shift();for(var n=new Ua(this.xref);!ea(this.buf1,`>>`)&&!as(this.buf1);)if($i(this.buf1)){var r=this.buf1.name;if(this.shift(),as(this.buf1))break;n.set(r,this.getObj(e))}else U(`Malformed dictionary, key must be a name object`),this.shift();return as(this.buf1)&&G(`End of file inside dictionary`),ea(this.buf2,`stream`)?this.allowStreams?this.makeStream(n,e):n:(this.shift(),n)}if(Xi(this.buf1)){var i=this.buf1;if(this.shift(),Xi(this.buf1)&&ea(this.buf2,`R`)){var a=new Wa(i,this.buf1);return this.shift(),this.shift(),a}return i}if(Qi(this.buf1)){var o=this.buf1;return this.shift(),e&&(o=e.decryptString(o)),o}var s=this.buf1;return this.shift(),s},makeInlineImage:function(e){for(var t=this.lexer.stream,n=new Ua;!ea(this.buf1,`ID`)&&!as(this.buf1);){$i(this.buf1)||G(`Dictionary key must be a name object`);var r=this.buf1.name;if(this.shift(),as(this.buf1))break;n.set(r,this.getObj(e))}for(var i,a,o,s=t.pos,c=0;c!=4&&(i=t.getByte())!==-1;)switch(0|i){case 32:case 13:case 10:var l=t.peekBytes(5);for(a=0,o=l.length;a<o;a++)if((i=l[a])!==10&&i!==13&&(i<32||i>127)){c=0;break}c=c===3?4:0;break;case 69:c=2;break;case 73:c=c===2?3:0;break;default:c=0}var u=t.pos-4-s,d=t.makeSubStream(s,u,n);return e&&(d=e.createStream(d)),(d=this.filter(d,n,u)).dict=n,this.buf2=Ha.get(`EI`),this.shift(),d},fetchIfRef:function(e){return aa(e)?this.xref.fetch(e):e},makeStream:function(e,t){var n=this.lexer,r=n.stream;n.skipToNextLine();var i=r.pos-1,a=this.fetchIfRef(e.get(`Length`));if(Xi(a)||(U(`Bad `+a+` attribute in stream`),a=0),r.pos=i+a,n.nextChar(),this.shift(),this.shift(),!ea(this.buf1,`endstream`)){r.pos=i;for(var o=[101,110,100,115,116,114,101,97,109],s=0,c=!1;r.pos<r.end;){var l=r.peekBytes(2048),u=l.length-9;if(u<=0)break;var d,f;for(c=!1,d=0,f=0;d<u;d++)if(l[d]!==o[f])d-=f,f=0;else if(++f>=9){c=!0;break}if(c){s+=d-9,r.pos+=d-9;break}s+=u,r.pos+=u}c||G(`Missing endstream or invalid stream`),a=s,n.nextChar(),this.shift(),this.shift()}return this.shift(),r=r.makeSubStream(i,a,e),t&&(r=t.createStream(r)),(r=this.filter(r,e,a)).dict=e,r},filter:function(e,t,n){var r=this.fetchIfRef(t.get(`Filter`,`F`)),i=this.fetchIfRef(t.get(`DecodeParms`,`DP`));if($i(r))return this.makeFilter(e,r.name,n,i);if(na(r))for(var a=r,o=i,s=0,c=a.length;s<c;++s)$i(r=a[s])||G(`Bad filter name: `+r),i=null,na(o)&&s in o&&(i=o[s]),e=this.makeFilter(e,r.name,n,i),n=null;return e},makeFilter:function(e,t,n,r){if(e.dict.get(`Length`)===0)return new Cs(e);if(t==`FlateDecode`||t==`Fl`)return r?new ps(new fs(e),r):new fs(e);if(t==`LZWDecode`||t==`LZW`){var i=1;return r?(r.has(`EarlyChange`)&&(i=r.get(`EarlyChange`)),new ps(new Ss(e,i),r)):new Ss(e,i)}if(t==`DCTDecode`||t==`DCT`){var a=e.getBytes(n);return new ms(a,e.dict,this.xref)}return t==`JPXDecode`||t==`JPX`?(a=e.getBytes(n),new hs(a,e.dict)):t==`ASCII85Decode`||t==`A85`?new vs(e):t==`ASCIIHexDecode`||t==`AHx`?new ys(e):t==`CCITTFaxDecode`||t==`CCF`?new xs(e,r):t==`RunLengthDecode`||t==`RL`?new bs(e):t==`JBIG2Decode`?(a=e.getBytes(n),new gs(a,e.dict)):(W(`filter "`+t+`" not supported yet`),e)}},e}(),ss=function(){function e(e,t){this.stream=e,this.nextChar(),this.knownCommands=t}e.isSpace=function(e){return e===32||e===9||e===13||e===10};var t=[1,0,0,0,0,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,2,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];function n(e){return e>=48&&e<=57?15&e:e>=65&&e<=70||e>=97&&e<=102?9+(15&e):-1}return e.prototype={nextChar:function(){return this.currentChar=this.stream.getByte()},getNumber:function(){for(var e=!1,t=this.currentChar,n=String.fromCharCode(t);(t=this.nextChar())>=0;)if(t!==46||e)if(t===45)W(`Badly formated number`);else if(t>=48&&t<=57)n+=String.fromCharCode(t);else{if(t!==69&&t!==101)break;e=!0}else n+=`.`,e=!0;var r=parseFloat(n);return isNaN(r)&&G(`Invalid floating point number: `+r),r},getString:function(){for(var e=1,t=!1,n=``,r=this.nextChar();;){var i=!1;switch(0|r){case-1:W(`Unterminated string`),t=!0;break;case 40:++e,n+=`(`;break;case 41:--e===0?(this.nextChar(),t=!0):n+=`)`;break;case 92:switch(r=this.nextChar()){case-1:W(`Unterminated string`),t=!0;break;case 110:n+=`
|
|
10
|
+
`;break;case 114:n+=`\r`;break;case 116:n+=` `;break;case 98:n+=`\b`;break;case 102:n+=`\f`;break;case 92:case 40:case 41:n+=String.fromCharCode(r);break;case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:var a=15&r;i=!0,(r=this.nextChar())>=48&&r<=55&&(a=(a<<3)+(15&r),(r=this.nextChar())>=48&&r<=55&&(i=!1,a=(a<<3)+(15&r))),n+=String.fromCharCode(a);break;case 10:case 13:break;default:n+=String.fromCharCode(r)}break;default:n+=String.fromCharCode(r)}if(t)break;i||(r=this.nextChar())}return n},getName:function(){for(var e,r=``;(e=this.nextChar())>=0&&!t[e];)if(e===35){var i=n(e=this.nextChar());if(i!=-1){var a=n(this.nextChar());a==-1&&G(`Illegal digit in hex char in name: `+a),r+=String.fromCharCode(i<<4|a)}else r+=`#`,r+=String.fromCharCode(e)}else r+=String.fromCharCode(e);return r.length>127&&W(`Name token is longer than allowed by the spec: `+r.length),new Va(r)},getHexString:function(){for(var e,r,i=``,a=this.currentChar,o=!0;;){if(a<0){W(`Unterminated hex string`);break}if(a===62){this.nextChar();break}if(t[a]!==1){if(o){if((e=n(a))===-1){W(`Ignoring invalid character "`+a+`" in hex string`),a=this.nextChar();continue}}else{if((r=n(a))===-1){W(`Ignoring invalid character "`+a+`" in hex string`),a=this.nextChar();continue}i+=String.fromCharCode(e<<4|r)}o=!o,a=this.nextChar()}else a=this.nextChar()}return i},getObj:function(){for(var e=!1,n=this.currentChar;;){if(n<0)return is;if(e)n!==10&&n!=13||(e=!1);else if(n===37)e=!0;else if(t[n]!==1)break;n=this.nextChar()}switch(0|n){case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:case 43:case 45:case 46:return this.getNumber();case 40:return this.getString();case 47:return this.getName();case 91:return this.nextChar(),Ha.get(`[`);case 93:return this.nextChar(),Ha.get(`]`);case 60:return(n=this.nextChar())===60?(this.nextChar(),Ha.get(`<<`)):this.getHexString();case 62:return(n=this.nextChar())===62?(this.nextChar(),Ha.get(`>>`)):Ha.get(`>`);case 123:return this.nextChar(),Ha.get(`{`);case 125:return this.nextChar(),Ha.get(`}`);case 41:G(`Illegal character: `+n)}for(var r=String.fromCharCode(n),i=this.knownCommands,a=i&&(r in i);(n=this.nextChar())>=0&&!t[n];){var o=r+String.fromCharCode(n);if(a&&!(o in i))break;r.length==128&&G(`Command token too long: `+r.length),r=o,a=i&&r in i}return r==`true`||r!=`false`&&(r==`null`?null:Ha.get(r))},skipToNextLine:function(){this.stream;for(var e=this.currentChar;e>=0;){if(e===13){(e=this.nextChar())===10&&this.nextChar();break}if(e===10){this.nextChar();break}e=this.nextChar()}}},e}(),cs=function(){function e(e){this.parser=new os(new ss(e),!1,null);var t=this.parser.getObj(),n=this.parser.getObj(),r=this.parser.getObj();if(this.linDict=this.parser.getObj(),Xi(t)&&Xi(n)&&ea(r,`obj`)&&ta(this.linDict)){var i=this.linDict.get(`Linearized`);Zi(i)&&i>0||(this.linDict=null)}}return e.prototype={getInt:function(e){var t,n=this.linDict;if(ta(n)&&Xi(t=n.get(e))&&t>0)return t;G(`"`+e+`" field in linearization table is invalid`)},getHint:function(e){var t,n,r=this.linDict;if(ta(r)&&na(t=r.get(`H`))&&t.length>=2&&Xi(n=t[e])&&n>0)return n;G(`Hints table in linearization table is invalid: `+e)},get length(){return ta(this.linDict)?this.getInt(`L`):0},get hintsOffset(){return this.getHint(0)},get hintsLength(){return this.getHint(1)},get hintsOffset2(){return this.getHint(2)},get hintsLenth2(){return this.getHint(3)},get objectNumberFirst(){return this.getInt(`O`)},get endFirst(){return this.getInt(`E`)},get numPages(){return this.getInt(`N`)},get mainXRefEntriesOffset(){return this.getInt(`T`)},get pageFirst(){return this.getInt(`P`)}},e}(),ls=function(){function e(e,t,n,r){this.bytes=e instanceof Uint8Array?e:new Uint8Array(e),this.start=t||0,this.pos=this.start,this.end=t+n||this.bytes.length,this.dict=r}return e.prototype={get length(){return this.end-this.start},getByte:function(){return this.pos>=this.end?-1:this.bytes[this.pos++]},getBytes:function(e){var t=this.bytes,n=this.pos,r=this.end;if(!e)return t.subarray(n,r);var i=n+e;return i>r&&(i=r),this.pos=i,t.subarray(n,i)},peekBytes:function(e){var t=this.getBytes(e);return this.pos-=t.length,t},skip:function(e){e||=1,this.pos+=e},reset:function(){this.pos=this.start},moveStart:function(){this.start=this.pos},makeSubStream:function(t,n,r){return new e(this.bytes.buffer,t,n,r)},isStream:!0},e}(),us=(function(){function e(e){for(var t=e.length,n=new Uint8Array(t),r=0;r<t;++r)n[r]=e.charCodeAt(r);ls.call(this,n)}e.prototype=ls.prototype}(),function(){function e(){this.pos=0,this.bufferLength=0,this.eof=!1,this.buffer=null}return e.prototype={ensureBuffer:function(e){var t=this.buffer,n=t?t.byteLength:0;if(e<n)return t;for(var r=512;r<e;)r<<=1;for(var i=new Uint8Array(r),a=0;a<n;++a)i[a]=t[a];return this.buffer=i},getByte:function(){for(var e=this.pos;this.bufferLength<=e;){if(this.eof)return-1;this.readBlock()}return this.buffer[this.pos++]},getBytes:function(e){var t,n=this.pos;if(e){for(this.ensureBuffer(n+e),t=n+e;!this.eof&&this.bufferLength<t;)this.readBlock();var r=this.bufferLength;t>r&&(t=r)}else{for(;!this.eof;)this.readBlock();(t=this.bufferLength)||(this.buffer=new Uint8Array)}return this.pos=t,this.buffer.subarray(n,t)},peekBytes:function(e){var t=this.getBytes(e);return this.pos-=t.length,t},makeSubStream:function(e,t,n){for(var r=e+t;this.bufferLength<=r&&!this.eof;)this.readBlock();return new ls(this.buffer,e,t,n)},skip:function(e){e||=1,this.pos+=e},reset:function(){this.pos=0},getBaseStreams:function(){return this.str&&this.str.getBaseStreams?this.str.getBaseStreams():[]}},e}()),ds=(function(){function e(e){this.dict=e.dict,us.call(this)}e.prototype=Object.create(us.prototype),e.prototype.readBlock=function(){var e=this.bufferLength;e+=1024,this.ensureBuffer(e),this.bufferLength=e},e.prototype.getBytes=function(e){var t,n=this.pos;if(e){for(this.ensureBuffer(n+e),t=n+e;!this.eof&&this.bufferLength<t;)this.readBlock();var r=this.bufferLength;t>r&&(t=r)}else this.eof=!0,t=this.bufferLength;return this.pos=t,this.buffer.subarray(n,t)}}(),function(){function e(e){this.streams=e,us.call(this)}return e.prototype=Object.create(us.prototype),e.prototype.readBlock=function(){var e=this.streams;if(e.length!==0){var t=e.shift().getBytes(),n=this.bufferLength,r=n+t.length;this.ensureBuffer(r).set(t,n),this.bufferLength=r}else this.eof=!0},e.prototype.getBaseStreams=function(){for(var e=[],t=0,n=this.streams.length;t<n;t++){var r=this.streams[t];r.getBaseStreams&&K.concatenateToArray(e,r.getBaseStreams())}return e},e}()),fs=function(){var e=new Uint32Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),t=new Uint32Array([3,4,5,6,7,8,9,10,65547,65549,65551,65553,131091,131095,131099,131103,196643,196651,196659,196667,262211,262227,262243,262259,327811,327843,327875,327907,258,258,258]),n=new Uint32Array([1,2,3,4,65541,65543,131081,131085,196625,196633,262177,262193,327745,327777,393345,393409,459009,459137,524801,525057,590849,591361,657409,658433,724993,727041,794625,798721,868353,876545]),r=[new Uint32Array([459008,524368,524304,524568,459024,524400,524336,590016,459016,524384,524320,589984,524288,524416,524352,590048,459012,524376,524312,589968,459028,524408,524344,590032,459020,524392,524328,59e4,524296,524424,524360,590064,459010,524372,524308,524572,459026,524404,524340,590024,459018,524388,524324,589992,524292,524420,524356,590056,459014,524380,524316,589976,459030,524412,524348,590040,459022,524396,524332,590008,524300,524428,524364,590072,459009,524370,524306,524570,459025,524402,524338,590020,459017,524386,524322,589988,524290,524418,524354,590052,459013,524378,524314,589972,459029,524410,524346,590036,459021,524394,524330,590004,524298,524426,524362,590068,459011,524374,524310,524574,459027,524406,524342,590028,459019,524390,524326,589996,524294,524422,524358,590060,459015,524382,524318,589980,459031,524414,524350,590044,459023,524398,524334,590012,524302,524430,524366,590076,459008,524369,524305,524569,459024,524401,524337,590018,459016,524385,524321,589986,524289,524417,524353,590050,459012,524377,524313,589970,459028,524409,524345,590034,459020,524393,524329,590002,524297,524425,524361,590066,459010,524373,524309,524573,459026,524405,524341,590026,459018,524389,524325,589994,524293,524421,524357,590058,459014,524381,524317,589978,459030,524413,524349,590042,459022,524397,524333,590010,524301,524429,524365,590074,459009,524371,524307,524571,459025,524403,524339,590022,459017,524387,524323,589990,524291,524419,524355,590054,459013,524379,524315,589974,459029,524411,524347,590038,459021,524395,524331,590006,524299,524427,524363,590070,459011,524375,524311,524575,459027,524407,524343,590030,459019,524391,524327,589998,524295,524423,524359,590062,459015,524383,524319,589982,459031,524415,524351,590046,459023,524399,524335,590014,524303,524431,524367,590078,459008,524368,524304,524568,459024,524400,524336,590017,459016,524384,524320,589985,524288,524416,524352,590049,459012,524376,524312,589969,459028,524408,524344,590033,459020,524392,524328,590001,524296,524424,524360,590065,459010,524372,524308,524572,459026,524404,524340,590025,459018,524388,524324,589993,524292,524420,524356,590057,459014,524380,524316,589977,459030,524412,524348,590041,459022,524396,524332,590009,524300,524428,524364,590073,459009,524370,524306,524570,459025,524402,524338,590021,459017,524386,524322,589989,524290,524418,524354,590053,459013,524378,524314,589973,459029,524410,524346,590037,459021,524394,524330,590005,524298,524426,524362,590069,459011,524374,524310,524574,459027,524406,524342,590029,459019,524390,524326,589997,524294,524422,524358,590061,459015,524382,524318,589981,459031,524414,524350,590045,459023,524398,524334,590013,524302,524430,524366,590077,459008,524369,524305,524569,459024,524401,524337,590019,459016,524385,524321,589987,524289,524417,524353,590051,459012,524377,524313,589971,459028,524409,524345,590035,459020,524393,524329,590003,524297,524425,524361,590067,459010,524373,524309,524573,459026,524405,524341,590027,459018,524389,524325,589995,524293,524421,524357,590059,459014,524381,524317,589979,459030,524413,524349,590043,459022,524397,524333,590011,524301,524429,524365,590075,459009,524371,524307,524571,459025,524403,524339,590023,459017,524387,524323,589991,524291,524419,524355,590055,459013,524379,524315,589975,459029,524411,524347,590039,459021,524395,524331,590007,524299,524427,524363,590071,459011,524375,524311,524575,459027,524407,524343,590031,459019,524391,524327,589999,524295,524423,524359,590063,459015,524383,524319,589983,459031,524415,524351,590047,459023,524399,524335,590015,524303,524431,524367,590079]),9],i=[new Uint32Array([327680,327696,327688,327704,327684,327700,327692,327708,327682,327698,327690,327706,327686,327702,327694,0,327681,327697,327689,327705,327685,327701,327693,327709,327683,327699,327691,327707,327687,327703,327695,0]),5];function a(e){var t=e.getBytes(),n=0;this.dict=e.dict;var r=t[n++],i=t[n++];r!=-1&&i!=-1||G(`Invalid header in flate stream: `+r+`, `+i),(15&r)!=8&&G(`Unknown compression method in flate stream: `+r+`, `+i),((r<<8)+i)%31!=0&&G(`Bad FCHECK in flate stream: `+r+`, `+i),32&i&&G(`FDICT bit set in flate stream: `+r+`, `+i),this.bytes=t,this.bytesPos=2,this.codeSize=0,this.codeBuf=0,us.call(this)}return a.prototype=Object.create(us.prototype),a.prototype.getBits=function(e){for(var t,n=this.codeSize,r=this.codeBuf,i=this.bytes,a=this.bytesPos;n<e;)(t=i[a++])===void 0&&G(`Bad encoding in flate stream`),r|=t<<n,n+=8;return t=r&(1<<e)-1,this.codeBuf=r>>e,this.codeSize=n-=e,this.bytesPos=a,t},a.prototype.getCode=function(e){for(var t=e[0],n=e[1],r=this.codeSize,i=this.codeBuf,a=this.bytes,o=this.bytesPos;r<n;){var s;(s=a[o++])===void 0&&G(`Bad encoding in flate stream`),i|=s<<r,r+=8}var c=t[i&(1<<n)-1],l=c>>16,u=65535&c;return(r===0||r<l||l===0)&&G(`Bad encoding in flate stream`),this.codeBuf=i>>l,this.codeSize=r-l,this.bytesPos=o,u},a.prototype.generateHuffmanTable=function(e){for(var t=e.length,n=0,r=0;r<t;++r)e[r]>n&&(n=e[r]);for(var i=1<<n,a=new Uint32Array(i),o=1,s=0,c=2;o<=n;++o,s<<=1,c<<=1)for(var l=0;l<t;++l)if(e[l]==o){var u=0,d=s;for(r=0;r<o;++r)u=u<<1|1&d,d>>=1;for(r=u;r<i;r+=c)a[r]=o<<16|l;++s}return[a,n]},a.prototype.readBlock=function(){var a=this.getBits(3);if(1&a&&(this.eof=!0),(a>>=1)!=0){var o,s;if(a==1)o=r,s=i;else if(a==2){for(var c=this.getBits(5)+257,l=this.getBits(5)+1,u=this.getBits(4)+4,d=new Uint8Array(e.length),f=0;f<u;++f)d[e[f]]=this.getBits(3);for(var p=this.generateHuffmanTable(d),m=0,h=(f=0,c+l),g=new Uint8Array(h);f<h;){var _=this.getCode(p);if(_==16)var v=2,y=3,b=m;else if(_==17)v=3,y=3,b=m=0;else{if(_!=18){g[f++]=m=_;continue}v=7,y=11,b=m=0}for(var x=this.getBits(v)+y;x-- >0;)g[f++]=b}o=this.generateHuffmanTable(g.subarray(0,c)),s=this.generateHuffmanTable(g.subarray(c,h))}else G(`Unknown block type in flate stream`);for(var S=(P=this.buffer)?P.length:0,C=this.bufferLength;;){var w=this.getCode(o);if(w<256)C+1>=S&&(S=(P=this.ensureBuffer(C+1)).length),P[C++]=w;else{if(w==256)return void(this.bufferLength=C);var T=(w=t[w-=257])>>16;T>0&&(T=this.getBits(T)),m=(65535&w)+T,w=this.getCode(s),(T=(w=n[w])>>16)>0&&(T=this.getBits(T));var E=(65535&w)+T;C+m>=S&&(S=(P=this.ensureBuffer(C+m)).length);for(var D=0;D<m;++D,++C)P[C]=P[C-E]}}}else{var O,k=this.bytes,A=this.bytesPos;(O=k[A++])===void 0&&G(`Bad block header in flate stream`);var j=O;(O=k[A++])===void 0&&G(`Bad block header in flate stream`),j|=O<<8,(O=k[A++])===void 0&&G(`Bad block header in flate stream`);var M=O;(O=k[A++])===void 0&&G(`Bad block header in flate stream`),(M|=O<<8)==(65535&~j)||j===0&&M===0||G(`Bad uncompressed block length in flate stream`),this.codeBuf=0,this.codeSize=0;var N=this.bufferLength,P=this.ensureBuffer(N+j),F=N+j;this.bufferLength=F;for(var ee=N;ee<F;++ee){if((O=k[A++])===void 0){this.eof=!0;break}P[ee]=O}this.bytesPos=A}},a}(),ps=function(){function e(e,t){var n=this.predictor=t.get(`Predictor`)||1;if(n<=1)return e;n!==2&&(n<10||n>15)&&G(`Unsupported predictor: `+n),this.readBlock=n===2?this.readBlockTiff:this.readBlockPng,this.str=e,this.dict=e.dict;var r=this.colors=t.get(`Colors`)||1,i=this.bits=t.get(`BitsPerComponent`)||8,a=this.columns=t.get(`Columns`)||1;return this.pixBytes=r*i+7>>3,this.rowBytes=a*r*i+7>>3,us.call(this),this}return e.prototype=Object.create(us.prototype),e.prototype.readBlockTiff=function(){var e=this.rowBytes,t=this.bufferLength,n=this.ensureBuffer(t+e),r=this.bits,i=this.colors,a=this.str.getBytes(e);if(this.eof=!a.length,!this.eof){var o=0,s=0,c=0,l=0,u=t;if(r===1)for(var d=0;d<e;++d){var f=a[d];o=o<<8|f,n[u++]=255&(f^o>>i),o&=65535}else if(r===8){for(d=0;d<i;++d)n[u++]=a[d];for(;d<e;++d)n[u]=n[u-i]+a[d],u++}else{var p=new Uint8Array(i+1),m=(1<<r)-1,h=0,g=t,_=this.columns;for(d=0;d<_;++d)for(var v=0;v<i;++v)c<r&&(o=o<<8|255&a[h++],c+=8),p[v]=p[v]+(o>>c-r)&m,c-=r,s=s<<r|p[v],(l+=r)>=8&&(n[g++]=s>>l-8&255,l-=8);l>0&&(n[g++]=(s<<8-l)+(o&(1<<8-l)-1))}this.bufferLength+=e}},e.prototype.readBlockPng=function(){var e=this.rowBytes,t=this.pixBytes,n=this.str.getByte(),r=this.str.getBytes(e);if(this.eof=!r.length,!this.eof){var i=this.bufferLength,a=this.ensureBuffer(i+e),o=a.subarray(i-e,i);o.length===0&&(o=new Uint8Array(e));var s=i;switch(n){case 0:for(var c=0;c<e;++c)a[s++]=r[c];break;case 1:for(c=0;c<t;++c)a[s++]=r[c];for(;c<e;++c)a[s]=a[s-t]+r[c]&255,s++;break;case 2:for(c=0;c<e;++c)a[s++]=o[c]+r[c]&255;break;case 3:for(c=0;c<t;++c)a[s++]=(o[c]>>1)+r[c];for(;c<e;++c)a[s]=(o[c]+a[s-t]>>1)+r[c]&255,s++;break;case 4:for(c=0;c<t;++c){var l=o[c],u=r[c];a[s++]=l+u}for(;c<e;++c){l=o[c];var d=o[c-t],f=a[s-t],p=f+l-d,m=p-f;m<0&&(m=-m);var h=p-l;h<0&&(h=-h);var g=p-d;g<0&&(g=-g),u=r[c],a[s++]=m<=h&&m<=g?f+u:h<=g?l+u:d+u}break;default:G(`Unsupported predictor: `+n)}this.bufferLength+=e}},e}(),ms=function(){function e(e,t,n){this.dict=t,this.bytes=e,us.call(this)}return e.prototype=Object.create(us.prototype),e.prototype.ensureBuffer=function(e){if(!this.bufferLength)try{var t=new As;this.colorTransform!=-1&&(t.colorTransform=this.colorTransform),t.parse(this.bytes);var n=t.width,r=t.height,i=t.getData(n,r);this.buffer=i,this.bufferLength=i.length,this.eof=!0}catch(e){G(`JPEG error: `+e)}},e.prototype.getIR=function(){return V.createObjectURL(this.bytes,`image/jpeg`)},e.prototype.isNativelySupported=function(e,t){var n=la.parse(this.dict.get(`ColorSpace`,`CS`),e,t);return n.name===`DeviceGray`||n.name===`DeviceRGB`},e.prototype.isNativelyDecodable=function(e,t){var n=la.parse(this.dict.get(`ColorSpace`,`CS`),e,t).numComps;return n==1||n==3},e}(),hs=function(){function e(e,t){this.dict=t,this.bytes=e,us.call(this)}return e.prototype=Object.create(us.prototype),e.prototype.ensureBuffer=function(e){if(!this.bufferLength){var t=new Os;t.parse(this.bytes);var n=t.width,r=t.height,i=t.componentsCount;i!=1&&i!=3&&i!=4&&G(`JPX with `+i+` components is not supported`);for(var a=new Uint8Array(n*r*i),o=0,s=t.tiles.length;o<s;o++){var c,l,u,d,f,p,m,h=t.tiles[o],g=h[0].width,_=h[0].height,v=h[0].left,y=h[0].top;switch(i){case 1:u=h[0].items,c=n*y+v,m=n-g,l=0;for(var b=0;b<_;b++){for(var x=0;x<g;x++)a[c++]=u[l++];c+=m}break;case 3:for(u=h[0].items,d=h[1].items,f=h[2].items,c=3*(n*y+v),m=3*(n-g),l=0,b=0;b<_;b++){for(x=0;x<g;x++)a[c++]=u[l],a[c++]=d[l],a[c++]=f[l],l++;c+=m}break;case 4:for(u=h[0].items,d=h[1].items,f=h[2].items,p=h[3].items,c=4*(n*y+v),m=4*(n-g),l=0,b=0;b<_;b++){for(x=0;x<g;x++)a[c++]=u[l],a[c++]=d[l],a[c++]=f[l],a[c++]=p[l],l++;c+=m}}}this.buffer=a,this.bufferLength=a.length,this.eof=!0}},e}(),gs=function(){function e(e,t){this.dict=t,this.bytes=e,us.call(this)}return e.prototype=Object.create(us.prototype),e.prototype.ensureBuffer=function(e){if(!this.bufferLength){var t=new ks,n=[],r=this.dict.get(`DecodeParms`);if(r&&r.has(`JBIG2Globals`)){var i=r.get(`JBIG2Globals`).getBytes();n.push({data:i,start:0,end:i.length})}n.push({data:this.bytes,start:0,end:this.bytes.length});for(var a=t.parseChunks(n),o=a.length,s=0;s<o;s++)a[s]^=255;this.buffer=a,this.bufferLength=o,this.eof=!0}},e}(),_s=function(){function e(e,t){this.str=e,this.dict=e.dict,this.decrypt=t,this.nextChunk=null,this.initialized=!1,us.call(this)}return e.prototype=Object.create(us.prototype),e.prototype.readBlock=function(){var e;if(this.initialized?e=this.nextChunk:(e=this.str.getBytes(512),this.initialized=!0),e&&e.length!==0){this.nextChunk=this.str.getBytes(512);var t=this.nextChunk&&this.nextChunk.length>0;e=(0,this.decrypt)(e,!t);var n,r=this.bufferLength,i=e.length,a=this.ensureBuffer(r+i);for(n=0;n<i;n++)a[r++]=e[n];this.bufferLength=r}else this.eof=!0},e}(),vs=function(){function e(e){this.str=e,this.dict=e.dict,this.input=new Uint8Array(5),us.call(this)}return e.prototype=Object.create(us.prototype),e.prototype.readBlock=function(){for(var e=this.str,t=e.getByte();ss.isSpace(t);)t=e.getByte();if(t!==-1&&t!==126){var n,r=this.bufferLength;if(t==122){n=this.ensureBuffer(r+4);for(var i=0;i<4;++i)n[r+i]=0;this.bufferLength+=4}else{var a=this.input;for(a[0]=t,i=1;i<5;++i){for(t=e.getByte();ss.isSpace(t);)t=e.getByte();if(a[i]=t,t===-1||t==126)break}if(n=this.ensureBuffer(r+i-1),this.bufferLength+=i-1,i<5){for(;i<5;++i)a[i]=117;this.eof=!0}var o=0;for(i=0;i<5;++i)o=85*o+(a[i]-33);for(i=3;i>=0;--i)n[r+i]=255&o,o>>=8}}else this.eof=!0},e}(),ys=function(){function e(e){this.str=e,this.dict=e.dict,this.firstDigit=-1,us.call(this)}return e.prototype=Object.create(us.prototype),e.prototype.readBlock=function(){var e=this.str.getBytes(8e3);if(e.length){for(var t=e.length+1>>1,n=this.ensureBuffer(this.bufferLength+t),r=this.bufferLength,i=this.firstDigit,a=0,o=e.length;a<o;a++){var s,c=e[a];if(c>=48&&c<=57)s=15&c;else{if(!(c>=65&&c<=70||c>=97&&c<=102)){if(c===62){this.eof=!0;break}continue}s=9+(15&c)}i<0?i=s:(n[r++]=i<<4|s,i=-1)}i>=0&&this.eof&&(n[r++]=i<<4,i=-1),this.firstDigit=i,this.bufferLength=r}else this.eof=!0},e}(),bs=function(){function e(e){this.str=e,this.dict=e.dict,us.call(this)}return e.prototype=Object.create(us.prototype),e.prototype.readBlock=function(){var e=this.str.getBytes(2);if(!e||e.length<2||e[0]==128)this.eof=!0;else{var t=this.bufferLength,n=e[0];if(n<128){if((a=this.ensureBuffer(t+n+1))[t++]=e[1],n>0){var r=this.str.getBytes(n);a.set(r,t),t+=n}}else{n=257-n;for(var i=e[1],a=this.ensureBuffer(t+n+1),o=0;o<n;o++)a[t++]=i}this.bufferLength=t}},e}(),xs=function(){var e=[[-1,-1],[-1,-1],[7,8],[7,7],[6,6],[6,6],[6,5],[6,5],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[4,0],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[3,3],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2]],t=[[-1,-1],[12,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[11,1792],[11,1792],[12,1984],[12,2048],[12,2112],[12,2176],[12,2240],[12,2304],[11,1856],[11,1856],[11,1920],[11,1920],[12,2368],[12,2432],[12,2496],[12,2560]],n=[[-1,-1],[-1,-1],[-1,-1],[-1,-1],[8,29],[8,29],[8,30],[8,30],[8,45],[8,45],[8,46],[8,46],[7,22],[7,22],[7,22],[7,22],[7,23],[7,23],[7,23],[7,23],[8,47],[8,47],[8,48],[8,48],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[6,13],[7,20],[7,20],[7,20],[7,20],[8,33],[8,33],[8,34],[8,34],[8,35],[8,35],[8,36],[8,36],[8,37],[8,37],[8,38],[8,38],[7,19],[7,19],[7,19],[7,19],[8,31],[8,31],[8,32],[8,32],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,1],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[6,12],[8,53],[8,53],[8,54],[8,54],[7,26],[7,26],[7,26],[7,26],[8,39],[8,39],[8,40],[8,40],[8,41],[8,41],[8,42],[8,42],[8,43],[8,43],[8,44],[8,44],[7,21],[7,21],[7,21],[7,21],[7,28],[7,28],[7,28],[7,28],[8,61],[8,61],[8,62],[8,62],[8,63],[8,63],[8,0],[8,0],[8,320],[8,320],[8,384],[8,384],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,10],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[5,11],[7,27],[7,27],[7,27],[7,27],[8,59],[8,59],[8,60],[8,60],[9,1472],[9,1536],[9,1600],[9,1728],[7,18],[7,18],[7,18],[7,18],[7,24],[7,24],[7,24],[7,24],[8,49],[8,49],[8,50],[8,50],[8,51],[8,51],[8,52],[8,52],[7,25],[7,25],[7,25],[7,25],[8,55],[8,55],[8,56],[8,56],[8,57],[8,57],[8,58],[8,58],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,192],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[6,1664],[8,448],[8,448],[8,512],[8,512],[9,704],[9,768],[8,640],[8,640],[8,576],[8,576],[9,832],[9,896],[9,960],[9,1024],[9,1088],[9,1152],[9,1216],[9,1280],[9,1344],[9,1408],[7,256],[7,256],[7,256],[7,256],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,2],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[4,3],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,128],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,8],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[5,9],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,16],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[6,17],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,4],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[4,5],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,14],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[6,15],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[5,64],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,6],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7],[4,7]],r=[[-1,-1],[-1,-1],[12,-2],[12,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[11,1792],[11,1792],[11,1792],[11,1792],[12,1984],[12,1984],[12,2048],[12,2048],[12,2112],[12,2112],[12,2176],[12,2176],[12,2240],[12,2240],[12,2304],[12,2304],[11,1856],[11,1856],[11,1856],[11,1856],[11,1920],[11,1920],[11,1920],[11,1920],[12,2368],[12,2368],[12,2432],[12,2432],[12,2496],[12,2496],[12,2560],[12,2560],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[10,18],[12,52],[12,52],[13,640],[13,704],[13,768],[13,832],[12,55],[12,55],[12,56],[12,56],[13,1280],[13,1344],[13,1408],[13,1472],[12,59],[12,59],[12,60],[12,60],[13,1536],[13,1600],[11,24],[11,24],[11,24],[11,24],[11,25],[11,25],[11,25],[11,25],[13,1664],[13,1728],[12,320],[12,320],[12,384],[12,384],[12,448],[12,448],[13,512],[13,576],[12,53],[12,53],[12,54],[12,54],[13,896],[13,960],[13,1024],[13,1088],[13,1152],[13,1216],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64],[10,64]],i=[[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[8,13],[11,23],[11,23],[12,50],[12,51],[12,44],[12,45],[12,46],[12,47],[12,57],[12,58],[12,61],[12,256],[10,16],[10,16],[10,16],[10,16],[10,17],[10,17],[10,17],[10,17],[12,48],[12,49],[12,62],[12,63],[12,30],[12,31],[12,32],[12,33],[12,40],[12,41],[11,22],[11,22],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[8,14],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,10],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[7,11],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[9,15],[12,128],[12,192],[12,26],[12,27],[12,28],[12,29],[11,19],[11,19],[11,20],[11,20],[12,34],[12,35],[12,36],[12,37],[12,38],[12,39],[11,21],[11,21],[12,42],[12,43],[10,0],[10,0],[10,0],[10,0],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12],[7,12]],a=[[-1,-1],[-1,-1],[-1,-1],[-1,-1],[6,9],[6,8],[5,7],[5,7],[4,6],[4,6],[4,6],[4,6],[4,5],[4,5],[4,5],[4,5],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,1],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[3,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2],[2,2]];function o(e,t){this.str=e,this.dict=e.dict,t instanceof Ua||(t=new Ua),this.encoding=t.get(`K`)||0,this.eoline=t.get(`EndOfLine`)||!1,this.byteAlign=t.get(`EncodedByteAlign`)||!1,this.columns=t.get(`Columns`)||1728,this.rows=t.get(`Rows`)||0;var n,r=t.get(`EndOfBlock`);for(r??=!0,this.eoblock=r,this.black=t.get(`BlackIs1`)||!1,this.codingLine=new Uint32Array(this.columns+1),this.refLine=new Uint32Array(this.columns+2),this.codingLine[0]=this.columns,this.codingPos=0,this.row=0,this.nextLine2D=this.encoding<0,this.inputBits=0,this.inputBuf=0,this.outputBits=0,this.buf=is;(n=this.lookBits(12))===0;)this.eatBits(1);n==1&&this.eatBits(12),this.encoding>0&&(this.nextLine2D=!this.lookBits(1),this.eatBits(1)),us.call(this)}return o.prototype=Object.create(us.prototype),o.prototype.readBlock=function(){for(;!this.eof;){var e=this.lookChar();this.buf=is,this.ensureBuffer(this.bufferLength+1),this.buffer[this.bufferLength++]=e}},o.prototype.addPixels=function(e,t){var n=this.codingLine,r=this.codingPos;e>n[r]&&(e>this.columns&&(U(`row is wrong length: `+e+` > `+this.columns),this.err=!0,e=this.columns),1&r^t&&++r,n[r]=e),this.codingPos=r},o.prototype.addPixelsNeg=function(e,t){var n=this.codingLine,r=this.codingPos;if(e>n[r])e>this.columns&&(U(`row is wrong length: `+e+` > `+this.columns),this.err=!0,e=this.columns),1&r^t&&++r,n[r]=e;else if(e<n[r]){for(e<0&&(U(`invalid code`),this.err=!0,e=0);r>0&&e<n[r-1];)--r;n[r]=e}this.codingPos=r},o.prototype.lookChar=function(){if(this.buf!=is)return this.buf;var e,t,n=this.refLine,r=this.codingLine,i=this.columns;if(this.outputBits===0){if(this.eof)return null;var a,o,s;if(this.err=!1,this.nextLine2D){for(var c=0;r[c]<i;++c)n[c]=r[c];for(n[c++]=i,n[c]=i,r[0]=0,this.codingPos=0,e=0,t=0;r[this.codingPos]<i;)switch(a=this.getTwoDimCode()){case 0:this.addPixels(n[e+1],t),n[e+1]<i&&(e+=2);break;case 1:if(a=o=0,t){do a+=s=this.getBlackCode();while(s>=64);do o+=s=this.getWhiteCode();while(s>=64)}else{do a+=s=this.getWhiteCode();while(s>=64);do o+=s=this.getBlackCode();while(s>=64)}for(this.addPixels(r[this.codingPos]+a,t),r[this.codingPos]<i&&this.addPixels(r[this.codingPos]+o,1^t);n[e]<=r[this.codingPos]&&n[e]<i;)e+=2;break;case 7:if(this.addPixels(n[e]+3,t),t^=1,r[this.codingPos]<i)for(++e;n[e]<=r[this.codingPos]&&n[e]<i;)e+=2;break;case 5:if(this.addPixels(n[e]+2,t),t^=1,r[this.codingPos]<i)for(++e;n[e]<=r[this.codingPos]&&n[e]<i;)e+=2;break;case 3:if(this.addPixels(n[e]+1,t),t^=1,r[this.codingPos]<i)for(++e;n[e]<=r[this.codingPos]&&n[e]<i;)e+=2;break;case 2:if(this.addPixels(n[e],t),t^=1,r[this.codingPos]<i)for(++e;n[e]<=r[this.codingPos]&&n[e]<i;)e+=2;break;case 8:if(this.addPixelsNeg(n[e]-3,t),t^=1,r[this.codingPos]<i)for(e>0?--e:++e;n[e]<=r[this.codingPos]&&n[e]<i;)e+=2;break;case 6:if(this.addPixelsNeg(n[e]-2,t),t^=1,r[this.codingPos]<i)for(e>0?--e:++e;n[e]<=r[this.codingPos]&&n[e]<i;)e+=2;break;case 4:if(this.addPixelsNeg(n[e]-1,t),t^=1,r[this.codingPos]<i)for(e>0?--e:++e;n[e]<=r[this.codingPos]&&n[e]<i;)e+=2;break;case is:this.addPixels(i,0),this.eof=!0;break;default:U(`bad 2d code`),this.addPixels(i,0),this.err=!0}}else for(r[0]=0,this.codingPos=0,t=0;r[this.codingPos]<i;){if(a=0,t)do a+=s=this.getBlackCode();while(s>=64);else do a+=s=this.getWhiteCode();while(s>=64);this.addPixels(r[this.codingPos]+a,t),t^=1}this.byteAlign&&(this.inputBits&=-8);var l=!1;if(this.eoblock||this.row!=this.rows-1){for(a=this.lookBits(12);a===0;)this.eatBits(1),a=this.lookBits(12);a==1?(this.eatBits(12),l=!0):a==is&&(this.eof=!0)}else this.eof=!0;if(!this.eof&&this.encoding>0&&(this.nextLine2D=!this.lookBits(1),this.eatBits(1)),this.eoblock&&l){if((a=this.lookBits(12))==1){if(this.eatBits(12),this.encoding>0&&(this.lookBits(1),this.eatBits(1)),this.encoding>=0)for(c=0;c<4;++c)(a=this.lookBits(12))!=1&&U(`bad rtc code: `+a),this.eatBits(12),this.encoding>0&&(this.lookBits(1),this.eatBits(1));this.eof=!0}}else if(this.err&&this.eoline){for(;;){if((a=this.lookBits(13))==is)return this.eof=!0,null;if(a>>1==1)break;this.eatBits(1)}this.eatBits(12),this.encoding>0&&(this.eatBits(1),this.nextLine2D=!(1&a))}r[0]>0?this.outputBits=r[this.codingPos=0]:this.outputBits=r[this.codingPos=1],this.row++}if(this.outputBits>=8)this.buf=1&this.codingPos?0:255,this.outputBits-=8,this.outputBits===0&&r[this.codingPos]<i&&(this.codingPos++,this.outputBits=r[this.codingPos]-r[this.codingPos-1]);else{var u=8;this.buf=0;do this.outputBits>u?(this.buf<<=u,1&this.codingPos||(this.buf|=255>>8-u),this.outputBits-=u,u=0):(this.buf<<=this.outputBits,1&this.codingPos||(this.buf|=255>>8-this.outputBits),u-=this.outputBits,this.outputBits=0,r[this.codingPos]<i?(this.codingPos++,this.outputBits=r[this.codingPos]-r[this.codingPos-1]):u>0&&(this.buf<<=u,u=0));while(u)}return this.black&&(this.buf^=255),this.buf},o.prototype.findTableCode=function(e,t,n,r){for(var i=r||0,a=e;a<=t;++a){var o=this.lookBits(a);if(o==is)return[!0,1,!1];if(a<t&&(o<<=t-a),!i||o>=i){var s=n[o-i];if(s[0]==a)return this.eatBits(a),[!0,s[1],!0]}}return[!1,0,!1]},o.prototype.getTwoDimCode=function(){var t,n=0;if(this.eoblock){if(n=this.lookBits(7),(t=e[n])&&t[0]>0)return this.eatBits(t[0]),t[1]}else{var r=this.findTableCode(1,7,e);if(r[0]&&r[2])return r[1]}return U(`Bad two dim code`),is},o.prototype.getWhiteCode=function(){var e,r=0;if(this.eoblock){if((r=this.lookBits(12))==is)return 1;if((e=r>>5?n[r>>3]:t[r])[0]>0)return this.eatBits(e[0]),e[1]}else{var i=this.findTableCode(1,9,n);if(i[0]||(i=this.findTableCode(11,12,t))[0])return i[1]}return U(`bad white code`),this.eatBits(1),1},o.prototype.getBlackCode=function(){var e,t;if(this.eoblock){if((e=this.lookBits(13))==is)return 1;if((t=e>>7?!(e>>9)&&e>>7?i[(e>>1)-64]:a[e>>7]:r[e])[0]>0)return this.eatBits(t[0]),t[1]}else{var n=this.findTableCode(2,6,a);if(n[0]||(n=this.findTableCode(7,12,i,64))[0]||(n=this.findTableCode(10,13,r))[0])return n[1]}return U(`bad black code`),this.eatBits(1),1},o.prototype.lookBits=function(e){for(var t;this.inputBits<e;){if((t=this.str.getByte())===-1)return this.inputBits===0?is:this.inputBuf<<e-this.inputBits&65535>>16-e;this.inputBuf=(this.inputBuf<<8)+t,this.inputBits+=8}return this.inputBuf>>this.inputBits-e&65535>>16-e},o.prototype.eatBits=function(e){(this.inputBits-=e)<0&&(this.inputBits=0)},o}(),Ss=function(){function e(e,t){this.str=e,this.dict=e.dict,this.cachedData=0,this.bitsCached=0;for(var n=4096,r={earlyChange:t,codeLength:9,nextCode:258,dictionaryValues:new Uint8Array(n),dictionaryLengths:new Uint16Array(n),dictionaryPrevCodes:new Uint16Array(n),currentSequence:new Uint8Array(n),currentSequenceLength:0},i=0;i<256;++i)r.dictionaryValues[i]=i,r.dictionaryLengths[i]=1;this.lzwState=r,us.call(this)}return e.prototype=Object.create(us.prototype),e.prototype.readBits=function(e){for(var t=this.bitsCached,n=this.cachedData;t<e;){var r=this.str.getByte();if(r===-1)return this.eof=!0,null;n=n<<8|r,t+=8}return this.bitsCached=t-=e,this.cachedData=n,this.lastCode=null,n>>>t&(1<<e)-1},e.prototype.readBlock=function(){var e,t,n,r=1024,i=this.lzwState;if(i){var a=i.earlyChange,o=i.nextCode,s=i.dictionaryValues,c=i.dictionaryLengths,l=i.dictionaryPrevCodes,u=i.codeLength,d=i.prevCode,f=i.currentSequence,p=i.currentSequenceLength,m=0,h=this.bufferLength,g=this.ensureBuffer(this.bufferLength+r);for(e=0;e<512;e++){var _=this.readBits(u),v=p>0;if(_<256)f[0]=_,p=1;else{if(!(_>=258)){if(_==256){u=9,o=258,p=0;continue}this.eof=!0,delete this.lzwState;break}if(_<o)for(t=(p=c[_])-1,n=_;t>=0;t--)f[t]=s[n],n=l[n];else f[p++]=f[0]}if(v&&(l[o]=d,c[o]=c[d]+1,s[o]=f[0],u=++o+a&o+a-1?u:0|Math.min(Math.log(o+a)/.6931471805599453+1,12)),d=_,r<(m+=p)){do r+=512;while(r<m);g=this.ensureBuffer(this.bufferLength+r)}for(t=0;t<p;t++)g[h++]=f[t]}i.nextCode=o,i.codeLength=u,i.prevCode=d,i.currentSequenceLength=p,this.bufferLength=h}},e}(),Cs=function(){function e(){ls.call(this,new Uint8Array)}return e.prototype=ls.prototype,e}();gi.postMessage=function(e){};var ws=V.WorkerMessageHandler={setup:function(e){var t;function n(e){var n=new q,r=function(){var e=t.ensureModel(`numPages`),r=t.ensureModel(`fingerprint`),a=t.ensureCatalog(`documentOutline`),o=t.ensureModel(`documentInfo`),s=t.ensureCatalog(`metadata`),c=t.ensureXRef(`encrypt`),l=t.ensureCatalog(`javaScript`);q.all([e,r,a,o,s,c,l]).then(function(e){var t={numPages:e[0],fingerprint:e[1],outline:e[2],info:e[3],metadata:e[4],encrypted:!!e[5],javaScript:e[6]};n.resolve(t)},i)},i=function(e){n.reject(e)};return t.ensureModel(`checkHeader`,[]).then(function(){t.ensureModel(`parseStartXRef`,[]).then(function(){t.ensureModel(`parse`,[e]).then(r,i)},i)},i),n}e.on(`test`,function(t){if(t instanceof Uint8Array){var n=t[0]===255;e.postMessageTransfers=n;var r=new XMLHttpRequest,i=`response`in r;try{r.responseType}catch{i=!1}i?e.send(`test`,{supportTypedArray:!0,supportTransfers:n}):e.send(`test`,!1)}else e.send(`test`,!1)}),e.on(`GetDocRequest`,function(r){var i=function(t){e.send(`GetDoc`,{pdfInfo:t})},a=function(t){t instanceof Ii?t.code===Fi.NEED_PASSWORD?e.send(`NeedPassword`,{exception:t}):t.code===Fi.INCORRECT_PASSWORD&&e.send(`IncorrectPassword`,{exception:t}):t instanceof Ri?e.send(`InvalidPDF`,{exception:t}):t instanceof zi?e.send(`MissingPDF`,{exception:t}):e.send(`UnknownError`,{exception:new Li(t.message,t.toString())})};V.maxImageSize=r.maxImageSize===void 0?-1:r.maxImageSize,V.disableFontFace=r.disableFontFace,function(n){var r=new q,i=n.source,a=n.disableRange;if(i.data){try{t=new Ps(i.data,i.password),r.resolve()}catch(e){r.reject(e)}return r}if(i.chunkedViewerLoading){try{t=new Fs(i,e),r.resolve()}catch(e){r.reject(e)}return r}var o=new NetworkManager(i.url,{httpHeaders:i.httpHeaders}),s=o.requestFull({onHeadersReceived:function(){if(!a){var n=o.getRequestXhr(s);if(n.getResponseHeader(`Accept-Ranges`)===`bytes`&&(n.getResponseHeader(`Content-Encoding`)||`identity`)===`identity`){var c=n.getResponseHeader(`Content-Length`);if(Xi(c=parseInt(c,10))){o.abortRequest(s),i.length=c;try{t=new Fs(i,e),r.resolve(t)}catch(e){r.reject(e)}}}}},onDone:function(e){try{t=new Ps(e.chunk,i.password),r.resolve()}catch(e){r.reject(e)}},onError:function(t){if(t==404){var n=new zi(`Missing PDF "`+i.url+`".`);e.send(`MissingPDF`,{exception:n})}else e.send(`DocError`,`Unexpected server response (`+t+`) while retrieving PDF "`+i.url+`".`)},onProgress:function(t){e.send(`DocProgress`,{loaded:t.loaded,total:t.lengthComputable?t.total:void 0})}});return r}(r).then(function e(){n(!1).then(i,function(r){if(!(r instanceof Hi))return r instanceof Ii&&(t.passwordChangedPromise=new q,t.passwordChangedPromise.then(e)),void a(r);t.requestLoadedStream(),t.onLoadedStream().then(function(){n(!0).then(i,a)})},a)},a)}),e.on(`GetPageRequest`,function(n){var r=n.pageIndex;t.getPage(r).then(function(r){var i=t.ensure(r,`rotate`),a=t.ensure(r,`ref`),o=t.ensure(r,`view`);q.all([i,a,o]).then(function(t){var r={pageIndex:n.pageIndex,rotate:t[0],ref:t[1],view:t[2]};e.send(`GetPage`,{pageInfo:r})})})}),e.on(`GetPageIndex`,function(e,n){var r=new Wa(e.ref.num,e.ref.gen);t.pdfModel.catalog.getPageIndex(r).then(function(e){n.resolve(e)},n.reject.bind(n))}),e.on(`GetDestinations`,function(e,n){t.ensureCatalog(`destinations`).then(function(e){n.resolve(e)})}),e.on(`GetData`,function(e,n){t.requestLoadedStream(),t.onLoadedStream().then(function(e){n.resolve(e.bytes)})}),e.on(`DataLoaded`,function(e,n){t.onLoadedStream().then(function(e){n.resolve({length:e.bytes.byteLength})})}),e.on(`UpdatePassword`,function(e){t.updatePassword(e)}),e.on(`GetAnnotationsRequest`,function(n){t.getPage(n.pageIndex).then(function(r){t.ensure(r,`getAnnotationsData`,[]).then(function(t){e.send(`GetAnnotations`,{pageIndex:n.pageIndex,annotations:t})})})}),e.on(`RenderPageRequest`,function(n){t.getPage(n.pageIndex).then(function(t){var r=n.pageIndex+1;t.getOperatorList(e).then(function(e){},function(t){var n,i=`worker.js: while trying to getPage() and getOperatorList()`;n=typeof t==`string`?{message:t,stack:i}:typeof t==`object`?{message:t.message||t.toString(),stack:t.stack||i}:{message:`Unknown exception type: `+typeof t,stack:i},e.send(`PageError`,{pageNum:r,error:n})})})},this),e.on(`GetTextContent`,function(e,n){t.getPage(e.pageIndex).then(function(t){e.pageIndex,t.extractTextContent().then(function(e){n.resolve(e)},function(e){n.reject(e)})})}),e.on(`Cleanup`,function(e,n){t.cleanup(),n.resolve(!0)}),e.on(`Terminate`,function(e,n){t.terminate(),n.resolve()})}},Ts={},Es={log:function(){var e=Array.prototype.slice.call(arguments);gi.postMessage({action:`console_log`,data:e})},error:function(){var e=Array.prototype.slice.call(arguments);throw gi.postMessage({action:`console_error`,data:e}),`pdf.js execution error`},time:function(e){Ts[e]=Date.now()},timeEnd:function(e){var t=Ts[e];t||G(`Unkown timer name `+e),this.log(`Timer:`,e,Date.now()-t)}};if(typeof window>`u`){gi.console=Es,V.LogManager.addLogger({warn:function(e){gi.postMessage({action:`_warn`,data:e})}});var Ds=new ca(`worker_processor`,gi);ws.setup(Ds)}var Os=function(){var e={LL:0,LH:1,HL:1,HH:2};function t(){this.failOnCorruptedImage=!1}function n(e,t){return e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3]}function r(e,t){return e[t]<<8|e[t+1]}function i(e){for(var t=1,n=0;e>t;)t<<=1,n++;return n}function a(e,t){e.x0=Math.ceil(t.XOsiz/e.XRsiz),e.x1=Math.ceil(t.Xsiz/e.XRsiz),e.y0=Math.ceil(t.YOsiz/e.YRsiz),e.y1=Math.ceil(t.Ysiz/e.YRsiz),e.width=e.x1-e.x0,e.height=e.y1-e.y0}function o(e,t){for(var n=e.SIZ,r=[],i=Math.ceil((n.Xsiz-n.XTOsiz)/n.XTsiz),a=Math.ceil((n.Ysiz-n.YTOsiz)/n.YTsiz),o=0;o<a;o++)for(var s=0;s<i;s++)(m={}).tx0=Math.max(n.XTOsiz+s*n.XTsiz,n.XOsiz),m.ty0=Math.max(n.YTOsiz+o*n.YTsiz,n.YOsiz),m.tx1=Math.min(n.XTOsiz+(s+1)*n.XTsiz,n.Xsiz),m.ty1=Math.min(n.YTOsiz+(o+1)*n.YTsiz,n.Ysiz),m.width=m.tx1-m.tx0,m.height=m.ty1-m.ty0,m.components=[],r.push(m);e.tiles=r;for(var c=0,l=n.Csiz;c<l;c++)for(var u=t[c],d=0,f=r.length;d<f;d++){var p={},m=r[d];p.tcx0=Math.ceil(m.tx0/u.XRsiz),p.tcy0=Math.ceil(m.ty0/u.YRsiz),p.tcx1=Math.ceil(m.tx1/u.XRsiz),p.tcy1=Math.ceil(m.ty1/u.YRsiz),p.width=p.tcx1-p.tcx0,p.height=p.tcy1-p.tcy0,m.components[c]=p}}function s(e,t,n){var r=t.codingStyleParameters,i={};return r.entropyCoderWithCustomPrecincts?(i.PPx=r.precinctsSizes[n].PPx,i.PPy=r.precinctsSizes[n].PPy):(i.PPx=15,i.PPy=15),i.xcb_=n>0?Math.min(r.xcb,i.PPx-1):Math.min(r.xcb,i.PPx),i.ycb_=n>0?Math.min(r.ycb,i.PPy-1):Math.min(r.ycb,i.PPy),i}function c(e,t,n){var r=1<<n.PPx,i=1<<n.PPy,a=t.trx1>t.trx0?Math.ceil(t.trx1/r)-Math.floor(t.trx0/r):0,o=t.try1>t.try0?Math.ceil(t.try1/i)-Math.floor(t.try0/i):0,s=a*o;t.precinctParameters={precinctXOffset:Math.floor(t.trx0/r)*r,precinctYOffset:Math.floor(t.try0/i)*i,precinctWidth:r,precinctHeight:i,numprecinctswide:a,numprecinctshigh:o,numprecincts:s}}function l(e,t,n){for(var r=n.xcb_,i=n.ycb_,a=1<<r,o=1<<i,s=Math.floor(t.tbx0/a),c=Math.floor(t.tby0/o),l=Math.ceil(t.tbx1/a),u=Math.ceil(t.tby1/o),d=t.resolution.precinctParameters,f=[],p=[],m=c;m<u;m++)for(var h=s;h<l;h++){var g={cbx:h,cby:m,tbx0:a*h,tby0:o*m,tbx1:a*(h+1),tby1:o*(m+1)},_=Math.floor((g.tbx0-d.precinctXOffset)/d.precinctWidth),v=Math.floor((g.tby0-d.precinctYOffset)/d.precinctHeight)+_*d.numprecinctswide;g.tbx0_=Math.max(t.tbx0,g.tbx0),g.tby0_=Math.max(t.tby0,g.tby0),g.tbx1_=Math.min(t.tbx1,g.tbx1),g.tby1_=Math.min(t.tby1,g.tby1),g.precinctNumber=v,g.subbandType=t.type;var y;g.tbx1_,g.tbx0_,g.tby1_,g.tby0_,g.Lblock=3,f.push(g),v in p?((y=p[v]).cbxMin=Math.min(y.cbxMin,h),y.cbyMin=Math.min(y.cbyMin,m),y.cbxMax=Math.max(y.cbxMax,h),y.cbyMax=Math.max(y.cbyMax,m)):p[v]=y={cbxMin:h,cbyMin:m,cbxMax:h,cbyMax:m},g.precinct=y}t.codeblockParameters={codeblockWidth:r,codeblockHeight:i,numcodeblockwide:l-s+1,numcodeblockhigh:u-u+1},t.codeblocks=f,h=0;for(var b=f.length;h<b;h++)v=(g=f[h]).precinctNumber;t.precincts=p}function u(e,t,n){for(var r=[],i=e.subbands,a=0,o=i.length;a<o;a++)for(var s=i[a].codeblocks,c=0,l=s.length;c<l;c++){var u=s[c];u.precinctNumber==t&&r.push(u)}return{layerNumber:n,codeblocks:r}}function d(e){for(var t=e.SIZ,n=e.currentTile.index,r=e.tiles[n],i=r.codingStyleDefaultParameters.layersCount,a=t.Csiz,o=0,s=0;s<a;s++)o=Math.max(o,r.components[s].codingStyleParameters.decompositionLevelsCount);var c=0,l=0,d=0,f=0;this.nextPacket=function(){for(;c<i;c++){for(;l<=o;l++){for(;d<a;d++){var e=r.components[d];if(!(l>e.codingStyleParameters.decompositionLevelsCount)){for(var t=e.resolutions[l],n=t.precinctParameters.numprecincts;f<n;){var s=u(t,f,c);return f++,s}f=0}}d=0}l=0}throw`Out of packets`}}function f(e){for(var t=e.SIZ,n=e.currentTile.index,r=e.tiles[n],i=r.codingStyleDefaultParameters.layersCount,a=t.Csiz,o=0,s=0;s<a;s++)o=Math.max(o,r.components[s].codingStyleParameters.decompositionLevelsCount);var c=0,l=0,d=0,f=0;this.nextPacket=function(){for(;c<=o;c++){for(;l<i;l++){for(;d<a;d++){var e=r.components[d];if(!(c>e.codingStyleParameters.decompositionLevelsCount)){for(var t=e.resolutions[c],n=t.precinctParameters.numprecincts;f<n;){var s=u(t,f,l);return f++,s}f=0}}d=0}l=0}throw`Out of packets`}}function p(e){for(var t=e.SIZ,n=e.currentTile.index,r=e.tiles[n],i=t.Csiz,a=0;a<i;a++){for(var o=r.components[a],u=o.codingStyleParameters.decompositionLevelsCount,p=[],m=[],h=0;h<=u;h++){var g,_=s(0,o,h),v={},y=1<<u-h;if(v.trx0=Math.ceil(o.tcx0/y),v.try0=Math.ceil(o.tcy0/y),v.trx1=Math.ceil(o.tcx1/y),v.try1=Math.ceil(o.tcy1/y),c(0,v,_),p.push(v),h===0)(g={}).type=`LL`,g.tbx0=Math.ceil(o.tcx0/y),g.tby0=Math.ceil(o.tcy0/y),g.tbx1=Math.ceil(o.tcx1/y),g.tby1=Math.ceil(o.tcy1/y),g.resolution=v,l(0,g,_),m.push(g),v.subbands=[g];else{var b=1<<u-h+1,x=[];(g={}).type=`HL`,g.tbx0=Math.ceil(o.tcx0/b-.5),g.tby0=Math.ceil(o.tcy0/b),g.tbx1=Math.ceil(o.tcx1/b-.5),g.tby1=Math.ceil(o.tcy1/b),g.resolution=v,l(0,g,_),m.push(g),x.push(g),(g={}).type=`LH`,g.tbx0=Math.ceil(o.tcx0/b),g.tby0=Math.ceil(o.tcy0/b-.5),g.tbx1=Math.ceil(o.tcx1/b),g.tby1=Math.ceil(o.tcy1/b-.5),g.resolution=v,l(0,g,_),m.push(g),x.push(g),(g={}).type=`HH`,g.tbx0=Math.ceil(o.tcx0/b-.5),g.tby0=Math.ceil(o.tcy0/b-.5),g.tbx1=Math.ceil(o.tcx1/b-.5),g.tby1=Math.ceil(o.tcy1/b-.5),g.resolution=v,l(0,g,_),m.push(g),x.push(g),v.subbands=x}}o.resolutions=p,o.subbands=m}var S=r.codingStyleDefaultParameters.progressionOrder;switch(S){case 0:r.packetsIterator=new d(e);break;case 1:r.packetsIterator=new f(e);break;default:throw`Unsupported progression order `+S}}function m(e,t,n,r){var a,o=0,s=0,c=!1;function l(e){for(;s<e;){var r=t[n+o];o++,c?(a=a<<7|r,s+=7,c=!1):(a=a<<8|r,s+=8),r==255&&(c=!0)}return a>>>(s-=e)&(1<<e)-1}function u(){s=0,c&&=(o++,!1)}function d(){var e=l(1);return e===0?1:(e=e<<1|l(1))==2?2:(e=e<<2|l(2))<=14?3+(3&e):(e=e<<5|l(5))<=510?6+(31&e):37+(127&(e=e<<7|l(7)))}for(var f=e.currentTile.index,p=e.tiles[f].packetsIterator;o<r;){var m=p.nextPacket();if(l(1)){for(var h=m.layerNumber,g=[],_=0,b=m.codeblocks.length;_<b;_++){var x=(N=m.codeblocks[_]).precinct,S=N.cbx-x.cbxMin,C=N.cby-x.cbyMin,w=!1,T=!1;if(`included`in N)w=!!l(1);else{var E,D;if(`inclusionTree`in(x=N.precinct))E=x.inclusionTree;else{var O=x.cbxMax-x.cbxMin+1,k=x.cbyMax-x.cbyMin+1;E=new y(O,k,h),D=new v(O,k),x.inclusionTree=E,x.zeroBitPlanesTree=D}if(E.reset(S,C,h))for(;;){if(!l(1)){E.incrementValue(h);break}if(!E.nextLevel()){N.included=!0,w=T=!0;break}}}if(w){if(T){for((D=x.zeroBitPlanesTree).reset(S,C);;)if(l(1)){if(!D.nextLevel())break}else D.incrementValue();N.zeroBitPlanes=D.value}for(var A=d();l(1);)N.Lblock++;var j=i(A),M=l((A<1<<j?j-1:j)+N.Lblock);g.push({codeblock:N,codingpasses:A,dataLength:M})}}for(u();g.length>0;){var N,P=g.shift();`data`in(N=P.codeblock)||(N.data=[]),N.data.push({data:t,start:n+o,end:n+o+P.dataLength,codingpasses:P.codingpasses}),o+=P.dataLength}}else u()}return o}function h(e,t,n,r,i,a,o,s,c,l){for(var u=0,d=s.length;u<d;++u){var f=s[u],p=f.tbx1_-f.tbx0_,m=f.tby1_-f.tby0_;if(p!==0&&m!==0&&`data`in f){for(var h=new x(p,m,f.subbandType,f.zeroBitPlanes),g=2,_=f.data,v=0,y=0,S=0,C=_.length;S<C;S++)v+=(E=_[S]).end-E.start,y+=E.codingpasses;var w=new Uint8Array(v),T=0;for(S=0,C=_.length;S<C;S++){var E,D=(E=_[S]).data.subarray(E.start,E.end);w.set(D,T),T+=D.length}var O=new b(w,0,v);for(h.setDecoder(O),S=0;S<y;S++){switch(g){case 0:h.runSignificancePropogationPass();break;case 1:h.runMagnitudeRefinementPass();break;case 2:h.runCleanupPass(),l&&h.checkSegmentationSymbol()}g=(g+1)%3}for(var k=f.tbx0_-t+(f.tby0_-n)*r,A=0,j=0;j<m;j++){for(T=0;T<p;T++){var M,N=(h.coefficentsSign[A]?-1:1)*h.coefficentsMagnitude[A],P=h.bitsDecoded[A];c===0||o>P?(N+=N<0?N-.5:N>0?N+.5:0,M=1<<o-P):M=1,e[k++]=N*M*a,A++}k+=r-p}}}}function g(t,n,r){for(var i=n.components[r],a=i.codingStyleParameters,o=i.quantizationParameters,s=a.decompositionLevelsCount,c=o.SPqcds,l=o.scalarExpounded,u=o.guardBits,d=a.transformation,f=a.segmentationSymbolUsed,p=t.components[r].precision,m=[],g=0,_=0;_<=s;_++)for(var v=i.resolutions[_],y=0,b=v.subbands.length;y<b;y++){var x,S;l?(x=c[g].mu,S=c[g].epsilon):(x=c[0].mu,S=c[0].epsilon+(_>0?1-_:0));var T=v.subbands[y],E=T.tbx1-T.tbx0,D=T.tby1-T.tby0,O=2**(p+e[T.type]-S)*(1+x/2048),k=u+S-1,A=new Float32Array(E*D);h(A,T.tbx0,T.tby0,E,0,O,k,T.codeblocks,d,f),m.push({width:E,height:D,items:A}),g++}var j=((d=a.transformation)===0?new C:new w).calculate(m,i.tcx0,i.tcy0);return{left:i.tcx0,top:i.tcy0,width:j.width,height:j.height,items:j.items}}function _(e,t){for(var n=e.SIZ.Csiz,r=e.tiles[t],i=0;i<n;i++){var a=r.components[i];a.quantizationParameters=i in e.currentTile.QCC?e.currentTile.QCC[i]:e.currentTile.QCD,a.codingStyleParameters=i in e.currentTile.COC?e.currentTile.COC[i]:e.currentTile.COD}r.codingStyleDefaultParameters=e.currentTile.COD}t.prototype={load:function(e){var t=new XMLHttpRequest;t.open(`GET`,e,!0),t.responseType=`arraybuffer`,t.onload=function(){var e=new Uint8Array(t.response||t.mozResponseArrayBuffer);this.parse(e),this.onload&&this.onload()}.bind(this),t.send(null)},parse:function(e){function t(e,t,n){for(var r=0,i=0;i<n;i++)r=256*r+(255&e[t+i]);return r}for(var n=0,r=e.length;n<r;){var i=8,a=t(e,n,4),o=t(e,n+4,4);n+=i,a==1&&(a=t(e,n,8),n+=8,i+=8),a===0&&(a=r-n+i),a<i&&G(`JPX error: Invalid box field size`);var s=a-i,c=!0;switch(o){case 1783634458:case 1668246642:break;case 1785737832:c=!1;break;case 1785737827:this.parseCodestream(e,n,n+s)}c&&(n+=s)}},parseCodestream:function(e,t,i){var s={};try{for(var c=t;c<i;){var l=r(e,c);c+=2;var u,d=0;switch(l){case 65359:s.mainHeader=!0;break;case 65497:break;case 65361:d=r(e,c);var f={};f.Xsiz=n(e,c+4),f.Ysiz=n(e,c+8),f.XOsiz=n(e,c+12),f.YOsiz=n(e,c+16),f.XTsiz=n(e,c+20),f.YTsiz=n(e,c+24),f.XTOsiz=n(e,c+28),f.YTOsiz=n(e,c+32);var h=r(e,c+36);f.Csiz=h;var v=[];u=c+38;for(var y=0;y<h;y++){var b={precision:1+(127&e[u]),isSigned:!!(128&e[u]),XRsiz:e[u+1],YRsiz:e[u+1]};a(b,f),v.push(b)}s.SIZ=f,s.components=v,o(s,v),s.QCC=[],s.COC=[];break;case 65372:d=r(e,c);var x={};switch(u=c+2,31&(T=e[u++])){case 0:E=8,D=!0;break;case 1:E=16,D=!1;break;case 2:E=16,D=!0;break;default:throw`Invalid SQcd value `+T}x.noQuantization=E==8,x.scalarExpounded=D,x.guardBits=T>>5;for(var S=[];u<d+c;){var C={};E==8?(C.epsilon=e[u++]>>3,C.mu=0):(C.epsilon=e[u]>>3,C.mu=(7&e[u])<<8|e[u+1],u+=2),S.push(C)}x.SPqcds=S,s.mainHeader?s.QCD=x:(s.currentTile.QCD=x,s.currentTile.QCC=[]);break;case 65373:d=r(e,c);var w,T,E,D,O={};switch(u=c+2,s.SIZ.Csiz<257?w=e[u++]:(w=r(e,u),u+=2),31&(T=e[u++])){case 0:E=8,D=!0;break;case 1:E=16,D=!1;break;case 2:E=16,D=!0;break;default:throw`Invalid SQcd value `+T}for(O.noQuantization=E==8,O.scalarExpounded=D,O.guardBits=T>>5,S=[];u<d+c;)C={},E==8?(C.epsilon=e[u++]>>3,C.mu=0):(C.epsilon=e[u]>>3,C.mu=(7&e[u])<<8|e[u+1],u+=2),S.push(C);O.SPqcds=S,s.mainHeader?s.QCC[w]=O:s.currentTile.QCC[w]=O;break;case 65362:d=r(e,c);var k={};u=c+2;var A=e[u++];k.entropyCoderWithCustomPrecincts=!!(1&A),k.sopMarkerUsed=!!(2&A),k.ephMarkerUsed=!!(4&A),k.progressionOrder=e[u++],k.layersCount=r(e,u),u+=2,k.multipleComponentTransform=e[u++],k.decompositionLevelsCount=e[u++],k.xcb=2+(15&e[u++]),k.ycb=2+(15&e[u++]);var j=e[u++];if(k.selectiveArithmeticCodingBypass=!!(1&j),k.resetContextProbabilities=!!(2&j),k.terminationOnEachCodingPass=!!(4&j),k.verticalyStripe=!!(8&j),k.predictableTermination=!!(16&j),k.segmentationSymbolUsed=!!(32&j),k.transformation=e[u++],k.entropyCoderWithCustomPrecincts){for(var M={};u<d+c;){var N=e[u];M.push({PPx:15&N,PPy:N>>4})}k.precinctsSizes=M}if(k.sopMarkerUsed||k.ephMarkerUsed||k.selectiveArithmeticCodingBypass||k.resetContextProbabilities||k.terminationOnEachCodingPass||k.verticalyStripe||k.predictableTermination)throw`Unsupported COD options: `+gi.JSON.stringify(k);s.mainHeader?s.COD=k:(s.currentTile.COD=k,s.currentTile.COC=[]);break;case 65424:d=r(e,c),(P={}).index=r(e,c+2),P.length=n(e,c+4),P.dataEnd=P.length+c-2,P.partIndex=e[c+8],P.partsCount=e[c+9],s.mainHeader=!1,P.partIndex===0&&(P.COD=s.COD,P.COC=s.COC.slice(0),P.QCD=s.QCD,P.QCC=s.QCC.slice(0)),s.currentTile=P;break;case 65427:var P;(P=s.currentTile).partIndex===0&&(_(s,P.index),p(s)),m(s,e,c,d=P.dataEnd-c);break;case 65380:d=r(e,c);break;default:throw`Unknown codestream code: `+l.toString(16)}c+=d}}catch(e){this.failOnCorruptedImage?G(`JPX error: `+e):W(`JPX error: `+e+`. Trying to recover`)}this.tiles=function(e){for(var t=e.SIZ,n=e.components,r=t.Csiz,i=[],a=0,o=e.tiles.length;a<o;a++){for(var s=e.tiles[a],c=[],l=0;l<r;l++){var u=g(e,s,l);c.push(u)}if(s.codingStyleDefaultParameters.multipleComponentTransform)for(var d=c[0].items,f=c[1].items,p=c[2].items,m=0,h=d.length;m<h;m++){var _=d[m],v=f[m],y=p[m],b=_-(y+v>>2);f[m]=b,d[m]=y+b,p[m]=v+b}for(l=0;l<r;l++)if(!(S=n[l]).isSigned){var x=1<<S.precision-1;for(m=0,h=(w=c[l].items).length;m<h;m++)w[m]+=x}for(l=0;l<r;l++){x=(S=n[l]).isSigned?128:0;var S,C=S.precision-8,w=c[l].items,T=new Uint8Array(w.length);for(m=0,h=w.length;m<h;m++){var E=(w[m]>>C)+x;T[m]=E<0?0:E>255?255:E}c[l].items=T}i.push(c)}return i}(s),this.width=s.SIZ.Xsiz-s.SIZ.XOsiz,this.height=s.SIZ.Ysiz-s.SIZ.YOsiz,this.componentsCount=s.SIZ.Csiz}};var v=function(){function e(e,t){var n=i(Math.max(e,t))+1;this.levels=[];for(var r=0;r<n;r++){var a={width:e,height:t,items:[]};this.levels.push(a),e=Math.ceil(e/2),t=Math.ceil(t/2)}}return e.prototype={reset:function(e,t){for(var n=0,r=0;n<this.levels.length;){var i=e+t*(a=this.levels[n]).width;if(i in a.items){r=a.items[i];break}a.index=i,e>>=1,t>>=1,n++}var a;n--,(a=this.levels[n]).items[a.index]=r,this.currentLevel=n,delete this.value},incrementValue:function(){var e=this.levels[this.currentLevel];e.items[e.index]++},nextLevel:function(){var e,t=this.currentLevel,n=(e=this.levels[t]).items[e.index];return--t<0?(this.value=n,!1):(this.currentLevel=t,(e=this.levels[t]).items[e.index]=n,!0)}},e}(),y=function(){function e(e,t,n){var r=i(Math.max(e,t))+1;this.levels=[];for(var a=0;a<r;a++){for(var o=new Uint8Array(e*t),s=0,c=o.length;s<c;s++)o[s]=n;var l={width:e,height:t,items:o};this.levels.push(l),e=Math.ceil(e/2),t=Math.ceil(t/2)}}return e.prototype={reset:function(e,t,n){for(var r=0;r<this.levels.length;){var i=this.levels[r],a=e+t*i.width;i.index=a;var o=i.items[a];if(o==255)break;if(o>n)return this.currentLevel=r,this.propagateValues(),!1;e>>=1,t>>=1,r++}return this.currentLevel=r-1,!0},incrementValue:function(e){var t=this.levels[this.currentLevel];t.items[t.index]=e+1,this.propagateValues()},propagateValues:function(){for(var e=this.currentLevel,t=(n=this.levels[e]).items[n.index];--e>=0;){var n;(n=this.levels[e]).items[n.index]=t}},nextLevel:function(){var e,t=this.currentLevel,n=(e=this.levels[t]).items[e.index];return e.items[e.index]=255,!(--t<0)&&(this.currentLevel=t,(e=this.levels[t]).items[e.index]=n,!0)}},e}(),b=function(){var e=[{qe:22017,nmps:1,nlps:1,switchFlag:1},{qe:13313,nmps:2,nlps:6,switchFlag:0},{qe:6145,nmps:3,nlps:9,switchFlag:0},{qe:2753,nmps:4,nlps:12,switchFlag:0},{qe:1313,nmps:5,nlps:29,switchFlag:0},{qe:545,nmps:38,nlps:33,switchFlag:0},{qe:22017,nmps:7,nlps:6,switchFlag:1},{qe:21505,nmps:8,nlps:14,switchFlag:0},{qe:18433,nmps:9,nlps:14,switchFlag:0},{qe:14337,nmps:10,nlps:14,switchFlag:0},{qe:12289,nmps:11,nlps:17,switchFlag:0},{qe:9217,nmps:12,nlps:18,switchFlag:0},{qe:7169,nmps:13,nlps:20,switchFlag:0},{qe:5633,nmps:29,nlps:21,switchFlag:0},{qe:22017,nmps:15,nlps:14,switchFlag:1},{qe:21505,nmps:16,nlps:14,switchFlag:0},{qe:20737,nmps:17,nlps:15,switchFlag:0},{qe:18433,nmps:18,nlps:16,switchFlag:0},{qe:14337,nmps:19,nlps:17,switchFlag:0},{qe:13313,nmps:20,nlps:18,switchFlag:0},{qe:12289,nmps:21,nlps:19,switchFlag:0},{qe:10241,nmps:22,nlps:19,switchFlag:0},{qe:9217,nmps:23,nlps:20,switchFlag:0},{qe:8705,nmps:24,nlps:21,switchFlag:0},{qe:7169,nmps:25,nlps:22,switchFlag:0},{qe:6145,nmps:26,nlps:23,switchFlag:0},{qe:5633,nmps:27,nlps:24,switchFlag:0},{qe:5121,nmps:28,nlps:25,switchFlag:0},{qe:4609,nmps:29,nlps:26,switchFlag:0},{qe:4353,nmps:30,nlps:27,switchFlag:0},{qe:2753,nmps:31,nlps:28,switchFlag:0},{qe:2497,nmps:32,nlps:29,switchFlag:0},{qe:2209,nmps:33,nlps:30,switchFlag:0},{qe:1313,nmps:34,nlps:31,switchFlag:0},{qe:1089,nmps:35,nlps:32,switchFlag:0},{qe:673,nmps:36,nlps:33,switchFlag:0},{qe:545,nmps:37,nlps:34,switchFlag:0},{qe:321,nmps:38,nlps:35,switchFlag:0},{qe:273,nmps:39,nlps:36,switchFlag:0},{qe:133,nmps:40,nlps:37,switchFlag:0},{qe:73,nmps:41,nlps:38,switchFlag:0},{qe:37,nmps:42,nlps:39,switchFlag:0},{qe:21,nmps:43,nlps:40,switchFlag:0},{qe:9,nmps:44,nlps:41,switchFlag:0},{qe:5,nmps:45,nlps:42,switchFlag:0},{qe:1,nmps:45,nlps:43,switchFlag:0},{qe:22017,nmps:46,nlps:46,switchFlag:0}];function t(e,t,n){this.data=e,this.bp=t,this.dataEnd=n,this.chigh=e[t],this.clow=0,this.byteIn(),this.chigh=this.chigh<<7&65535|this.clow>>9&127,this.clow=this.clow<<7&65535,this.ct-=7,this.a=32768}return t.prototype={byteIn:function(){var e=this.data,t=this.bp;e[t]==255?e[t+1]>143?(this.clow+=65280,this.ct=8):(t++,this.clow+=e[t]<<9,this.ct=7,this.bp=t):(t++,this.clow+=t<this.dataEnd?e[t]<<8:65280,this.ct=8,this.bp=t),this.clow>65535&&(this.chigh+=this.clow>>16,this.clow&=65535)},readBit:function(t){var n=e[t.index].qe;if(this.a-=n,this.chigh<n){var r=this.exchangeLps(t);return this.renormD(),r}return this.chigh-=n,32768&this.a?t.mps:(r=this.exchangeMps(t),this.renormD(),r)},renormD:function(){do this.ct===0&&this.byteIn(),this.a<<=1,this.chigh=this.chigh<<1&65535|this.clow>>15&1,this.clow=this.clow<<1&65535,this.ct--;while(!(32768&this.a))},exchangeMps:function(t){var n,r=e[t.index];return this.a<r.qe?(n=1-t.mps,r.switchFlag==1&&(t.mps=1-t.mps),t.index=r.nlps):(n=t.mps,t.index=r.nmps),n},exchangeLps:function(t){var n,r=e[t.index];return this.a<r.qe?(this.a=r.qe,n=t.mps,t.index=r.nmps):(this.a=r.qe,n=1-t.mps,r.switchFlag==1&&(t.mps=1-t.mps),t.index=r.nlps),n}},t}(),x=function(){var e=new Uint8Array([0,5,8,0,3,7,8,0,4,7,8,0,0,0,0,0,1,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8,0,0,0,0,0,2,6,8,0,3,7,8,0,4,7,8]),t=new Uint8Array([0,3,4,0,5,7,7,0,8,8,8,0,0,0,0,0,1,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8,0,0,0,0,0,2,3,4,0,6,7,7,0,8,8,8]),n=new Uint8Array([0,1,2,0,1,2,2,0,2,2,2,0,0,0,0,0,3,4,5,0,4,5,5,0,5,5,5,0,0,0,0,0,6,7,7,0,7,7,7,0,7,7,7,0,0,0,0,0,8,8,8,0,8,8,8,0,8,8,8,0,0,0,0,0,8,8,8,0,8,8,8,0,8,8,8]);function r(e,t,n,r){return n?r?e?t?-1:0:-1:e&&t?0:1:e?t?-1:1:0}var i=[{contextLabel:13,xorBit:0},{contextLabel:12,xorBit:0},{contextLabel:11,xorBit:0},{contextLabel:10,xorBit:0},{contextLabel:9,xorBit:0},{contextLabel:10,xorBit:1},{contextLabel:11,xorBit:1},{contextLabel:12,xorBit:1},{contextLabel:13,xorBit:1}];function a(r,i,a,o){this.width=r,this.height=i,this.contextLabelTable=a==`HH`?n:a==`HL`?t:e;var s=r*i;this.neighborsSignificance=new Uint8Array(s),this.coefficentsSign=new Uint8Array(s),this.coefficentsMagnitude=new Uint32Array(s),this.processingFlags=new Uint8Array(s);for(var c=new Uint8Array(this.width*this.height),l=0,u=c.length;l<u;l++)c[l]=o;this.bitsDecoded=c,this.reset()}return a.prototype={setDecoder:function(e){this.decoder=e},reset:function(){this.uniformContext={index:46,mps:0},this.runLengthContext={index:3,mps:0},this.contexts=[],this.contexts.push({index:4,mps:0});for(var e=1;e<=16;e++)this.contexts.push({index:0,mps:0})},setNeighborsSignificance:function(e,t){var n=this.neighborsSignificance,r=this.width,i=this.height,a=e*r+t;e>0&&(t>0&&(n[a-r-1]+=16),t+1<r&&(n[a-r+1]+=16),n[a-r]+=4),e+1<i&&(t>0&&(n[a+r-1]+=16),t+1<r&&(n[a+r+1]+=16),n[a+r]+=4),t>0&&(n[a-1]+=1),t+1<r&&(n[a+1]+=1),n[a]|=128},runSignificancePropogationPass:function(){for(var e=this.decoder,t=this.width,n=this.height,r=this.coefficentsMagnitude,i=this.coefficentsSign,a=(this.contextLabels,this.neighborsSignificance),o=this.processingFlags,s=this.contexts,c=this.contextLabelTable,l=this.bitsDecoded,u=0,d=t*n;u<d;u++)o[u]&=-2;for(var f=0;f<n;f+=4)for(var p=0;p<t;p++)for(var m=f*t+p,h=0;h<4;h++,m+=t){var g=f+h;if(g>=n)break;if(!r[m]&&a[m]){var _=s[c[a[m]]];e.readBit(_)&&(i[m]=this.decodeSignBit(g,p),r[m]=1,this.setNeighborsSignificance(g,p),o[m]|=2),l[m]++,o[m]|=1}}},decodeSignBit:function(e,t){var n=this.width,a=this.height,o=e*n+t,s=this.coefficentsMagnitude,c=this.coefficentsSign,l=r(t>0&&s[o-1],c[o-1],t+1<n&&s[o+1],c[o+1]),u=r(e>0&&s[o-n],c[o-n],e+1<a&&s[o+n],c[o+n]),d=i[3*(1-l)+(1-u)],f=d.contextLabel,p=this.contexts[f];return this.decoder.readBit(p)^d.xorBit},runMagnitudeRefinementPass:function(){for(var e=this.decoder,t=this.width,n=this.height,r=this.coefficentsMagnitude,i=this.neighborsSignificance,a=this.contexts,o=this.bitsDecoded,s=this.processingFlags,c=0;c<n;c+=4)for(var l=0;l<t;l++)for(var u=0;u<4;u++){var d=c+u;if(d>=n)break;var f=d*t+l;if(r[f]&&!(1&s[f])){var p=16;if(2&s[f]){s[d*t+l]^=2;var m=i[f];p=(3&m)+(m>>2&3)+(m>>4&7)>=1?15:14}var h=a[p],g=e.readBit(h);r[f]=r[f]<<1|g,o[f]++,s[f]|=1}}},runCleanupPass:function(){for(var e=this.decoder,t=this.width,n=this.height,r=this.neighborsSignificance,i=(this.significanceState,this.coefficentsMagnitude),a=this.coefficentsSign,o=this.contexts,s=this.contextLabelTable,c=this.bitsDecoded,l=this.processingFlags,u=t,d=2*t,f=3*t,p=0;p<n;p+=4)for(var m=0;m<t;m++){var h,g,_=p*t+m,v=0,y=_;if(p+3<n&&l[_]===0&&l[_+u]===0&&l[_+d]===0&&l[_+f]===0&&r[_]===0&&r[_+u]===0&&r[_+d]===0&&r[_+f]===0){if(h=this.runLengthContext,!e.readBit(h)){c[_]++,c[_+u]++,c[_+d]++,c[_+f]++;continue}h=this.uniformContext,g=p+(v=e.readBit(h)<<1|e.readBit(h)),y+=v*t;var b=this.decodeSignBit(g,m);a[y]=b,i[y]=1,this.setNeighborsSignificance(g,m),l[y]|=2,y=_;for(var x=p;x<=g;x++,y+=t)c[y]++;v++}for(;v<4&&!((g=p+v)>=n);v++,y+=t)i[y]||1&l[y]||(h=o[s[r[y]]],e.readBit(h)==1&&(b=this.decodeSignBit(g,m),a[y]=b,i[y]=1,this.setNeighborsSignificance(g,m),l[y]|=2),c[y]++)}},checkSegmentationSymbol:function(){var e=this.decoder,t=this.uniformContext;if((e.readBit(t)<<3|e.readBit(t)<<2|e.readBit(t)<<1|e.readBit(t))!=10)throw`Invalid segmentation symbol`}},a}(),S=function(){function e(){}return e.prototype.calculate=function(e,t,n){for(var r=e[0],i=1,a=e.length,o=1;i<a;i+=3,o++)r=this.iterate(r,e[i],e[i+1],e[i+2],t,n);return r},e.prototype.expand=function(e,t,n){var r=t-1,i=t+1,a=t+n-2,o=t+n;e[r--]=e[i++],e[o++]=e[a--],e[r--]=e[i++],e[o++]=e[a--],e[r--]=e[i++],e[o++]=e[a--],e[r--]=e[i++],e[o++]=e[a--]},e.prototype.iterate=function(e,t,n,r,i,a){for(var o=e.width,s=e.height,c=e.items,l=t.width,u=t.height,d=t.items,f=n.width,p=n.height,m=n.items,h=r.width,g=r.height,_=r.items,v=o+l,y=s+p,b=new Float32Array(v*y),x=0,S=s;x<S;x++)for(var C=x*o,w=2*x*v,T=0,E=o;T<E;T++,C++,w+=2)b[w]=c[C];for(x=0,S=u;x<S;x++)for(C=x*l,w=2*x*v+1,T=0,E=l;T<E;T++,C++,w+=2)b[w]=d[C];for(x=0,S=p;x<S;x++)for(C=x*f,w=(2*x+1)*v,T=0,E=f;T<E;T++,C++,w+=2)b[w]=m[C];for(x=0,S=g;x<S;x++)for(C=x*h,w=(2*x+1)*v+1,T=0,E=h;T<E;T++,C++,w+=2)b[w]=_[C];for(var D=new Float32Array(Math.max(v,y)+8),O=new Float32Array(D),k=new Float32Array(D),A=0;A<y;A++)if(v!=1){C=A*v,w=4;for(var j=0;j<v;j++,C++,w++)O[w]=b[C];for(this.expand(O,4,v),this.filter(O,4,v,i,k),C=A*v,w=4,j=0;j<v;j++,C++,w++)b[C]=k[w]}else i%1!=0&&(b[A*v]/=2);for(j=0;j<v;j++)if(y!=1){for(C=j,w=4,A=0;A<y;A++,C+=v,w++)O[w]=b[C];for(this.expand(O,4,y),this.filter(O,4,y,a,k),C=j,w=4,A=0;A<y;A++,C+=v,w++)b[C]=k[w]}else a%1!=0&&(b[j]/=2);return{width:v,height:y,items:b}},e}(),C=function(){function e(){S.call(this)}return e.prototype=Object.create(S.prototype),e.prototype.filter=function(e,t,n,r,i){for(var a=Math.floor(r/2),o=Math.floor((r+n)/2),s=t-r%1,c=1.230174104914001,l=1/c,u=s-2,d=a-1,f=o+2;d<f;d++,u+=2)i[u]=c*e[u];for(u=s-3,d=a-2,f=o+2;d<f;d++,u+=2)i[u]=l*e[u];for(u=s-2,d=a-1,f=o+2;d<f;d++,u+=2)i[u]-=.443506852043971*(i[u-1]+i[u+1]);for(u=s-1,d=a-1,f=o+1;d<f;d++,u+=2)i[u]-=.882911075530934*(i[u-1]+i[u+1]);for(u=s,d=a,f=o+1;d<f;d++,u+=2)i[u]-=-.052980118572961*(i[u-1]+i[u+1]);for(u=s+1,d=a,f=o;d<f;d++,u+=2)i[u]-=-1.586134342059924*(i[u-1]+i[u+1])},e}(),w=function(){function e(){S.call(this)}return e.prototype=Object.create(S.prototype),e.prototype.filter=function(e,t,n,r,i){for(var a=Math.floor(r/2),o=Math.floor((r+n)/2),s=t-r%1,c=a,l=o+1,u=s;c<l;c++,u+=2)i[u]=e[u]-Math.floor((e[u-1]+e[u+1]+2)/4);for(c=a,l=o,u=s+1;c<l;c++,u+=2)i[u]=e[u]+Math.floor((i[u-1]+i[u+1])/2)},e}();return t}(),ks=function(){var e=function(){var e=[{qe:22017,nmps:1,nlps:1,switchFlag:1},{qe:13313,nmps:2,nlps:6,switchFlag:0},{qe:6145,nmps:3,nlps:9,switchFlag:0},{qe:2753,nmps:4,nlps:12,switchFlag:0},{qe:1313,nmps:5,nlps:29,switchFlag:0},{qe:545,nmps:38,nlps:33,switchFlag:0},{qe:22017,nmps:7,nlps:6,switchFlag:1},{qe:21505,nmps:8,nlps:14,switchFlag:0},{qe:18433,nmps:9,nlps:14,switchFlag:0},{qe:14337,nmps:10,nlps:14,switchFlag:0},{qe:12289,nmps:11,nlps:17,switchFlag:0},{qe:9217,nmps:12,nlps:18,switchFlag:0},{qe:7169,nmps:13,nlps:20,switchFlag:0},{qe:5633,nmps:29,nlps:21,switchFlag:0},{qe:22017,nmps:15,nlps:14,switchFlag:1},{qe:21505,nmps:16,nlps:14,switchFlag:0},{qe:20737,nmps:17,nlps:15,switchFlag:0},{qe:18433,nmps:18,nlps:16,switchFlag:0},{qe:14337,nmps:19,nlps:17,switchFlag:0},{qe:13313,nmps:20,nlps:18,switchFlag:0},{qe:12289,nmps:21,nlps:19,switchFlag:0},{qe:10241,nmps:22,nlps:19,switchFlag:0},{qe:9217,nmps:23,nlps:20,switchFlag:0},{qe:8705,nmps:24,nlps:21,switchFlag:0},{qe:7169,nmps:25,nlps:22,switchFlag:0},{qe:6145,nmps:26,nlps:23,switchFlag:0},{qe:5633,nmps:27,nlps:24,switchFlag:0},{qe:5121,nmps:28,nlps:25,switchFlag:0},{qe:4609,nmps:29,nlps:26,switchFlag:0},{qe:4353,nmps:30,nlps:27,switchFlag:0},{qe:2753,nmps:31,nlps:28,switchFlag:0},{qe:2497,nmps:32,nlps:29,switchFlag:0},{qe:2209,nmps:33,nlps:30,switchFlag:0},{qe:1313,nmps:34,nlps:31,switchFlag:0},{qe:1089,nmps:35,nlps:32,switchFlag:0},{qe:673,nmps:36,nlps:33,switchFlag:0},{qe:545,nmps:37,nlps:34,switchFlag:0},{qe:321,nmps:38,nlps:35,switchFlag:0},{qe:273,nmps:39,nlps:36,switchFlag:0},{qe:133,nmps:40,nlps:37,switchFlag:0},{qe:73,nmps:41,nlps:38,switchFlag:0},{qe:37,nmps:42,nlps:39,switchFlag:0},{qe:21,nmps:43,nlps:40,switchFlag:0},{qe:9,nmps:44,nlps:41,switchFlag:0},{qe:5,nmps:45,nlps:42,switchFlag:0},{qe:1,nmps:45,nlps:43,switchFlag:0},{qe:22017,nmps:46,nlps:46,switchFlag:0}];function t(e,t,n){this.data=e,this.bp=t,this.dataEnd=n,this.chigh=e[t],this.clow=0,this.byteIn(),this.chigh=this.chigh<<7&65535|this.clow>>9&127,this.clow=this.clow<<7&65535,this.ct-=7,this.a=32768}return t.prototype={byteIn:function(){var e=this.data,t=this.bp;e[t]==255?e[t+1]>143?(this.clow+=65280,this.ct=8):(t++,this.clow+=e[t]<<9,this.ct=7,this.bp=t):(t++,this.clow+=t<this.dataEnd?e[t]<<8:65280,this.ct=8,this.bp=t),this.clow>65535&&(this.chigh+=this.clow>>16,this.clow&=65535)},readBit:function(t,n){var r,i=t[n]>>1,a=1&t[n],o=e[i],s=o.qe,c=o.nmps,l=o.nlps,u=o.switchFlag;if(this.a-=s,this.chigh<s)this.a<s?(this.a=s,r=a,i=c):(this.a=s,r=1-a,u&&(a=r),i=l);else{if(this.chigh-=s,32768&this.a)return a;this.a<s?(r=1-a,u&&(a=r),i=l):(r=a,i=c)}do this.ct===0&&this.byteIn(),this.a<<=1,this.chigh=this.chigh<<1&65535|this.clow>>15&1,this.clow=this.clow<<1&65535,this.ct--;while(!(32768&this.a));return t[n]=i<<1|a,r}},t}();function t(){}function n(e,t,n){this.data=e,this.start=t,this.end=n}function r(e,t,n){for(var r,i=e.getContexts(t),a=1,o=1,s=0,c=32,l=4436;o;){var u=n.readBit(i,a);switch(a=a<256?a<<1|u:511&(a<<1|u)|256,o){case 1:r=!!u;break;case 2:if(u)break;o=7,c=2,l=0;break;case 3:if(u)break;o=7,c=4,l=4;break;case 4:if(u)break;o=7,c=6,l=20;break;case 5:if(u)break;o=7,c=8,l=84;break;case 6:if(u)break;o=7,c=12,l=340;break;default:s=2*s+u,--c===0&&(o=0);continue}o++}return s+=l,r?s>0?-s:null:s}function i(e,t,n){for(var r=e.getContexts(`IAID`),i=1,a=0;a<n;a++)i=2*i+t.readBit(r,i);return n<31?i&(1<<n)-1:i-2**n}t.prototype={getContexts:function(e){return e in this?this[e]:this[e]=new Int8Array(65536)}},n.prototype={get decoder(){return Pi(this,`decoder`,new e(this.data,this.start,this.end))},get contextCache(){return Pi(this,`contextCache`,new t)}};var a=[`SymbolDictionary`,null,null,null,`IntermediateTextRegion`,null,`ImmediateTextRegion`,`ImmediateLosslessTextRegion`,null,null,null,null,null,null,null,null,`patternDictionary`,null,null,null,`IntermediateHalftoneRegion`,null,`ImmediateHalftoneRegion`,`ImmediateLosslessHalftoneRegion`,null,null,null,null,null,null,null,null,null,null,null,null,`IntermediateGenericRegion`,null,`ImmediateGenericRegion`,`ImmediateLosslessGenericRegion`,`IntermediateGenericRefinementRegion`,null,`ImmediateGenericRefinementRegion`,`ImmediateLosslessGenericRefinementRegion`,null,null,null,null,`PageInformation`,`EndOfPage`,`EndOfStripe`,`EndOfFile`,`Profiles`,`Tables`,null,null,null,null,null,null,null,null,`Extension`],o=[[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:2,y:-1},{x:-4,y:0},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}],[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:2,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:2,y:-1},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}],[{x:-1,y:-2},{x:0,y:-2},{x:1,y:-2},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-2,y:0},{x:-1,y:0}],[{x:-3,y:-1},{x:-2,y:-1},{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-4,y:0},{x:-3,y:0},{x:-2,y:0},{x:-1,y:0}]],s=[{coding:[{x:0,y:-1},{x:1,y:-1},{x:-1,y:0}],reference:[{x:0,y:-1},{x:1,y:-1},{x:-1,y:0},{x:0,y:0},{x:1,y:0},{x:-1,y:1},{x:0,y:1},{x:1,y:1}]},{coding:[{x:-1,y:-1},{x:0,y:-1},{x:1,y:-1},{x:-1,y:0}],reference:[{x:0,y:-1},{x:-1,y:0},{x:0,y:0},{x:1,y:0},{x:0,y:1},{x:1,y:1}]}],c=[7379,1946,227,395],l=[32,8];function u(e){for(var t=1,n=0;e>t;)t<<=1,n++;return n}function d(e,t){return e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3]}function f(e,t){var n=d(e,t);return 2147483648&n?n+4294967296:n}function p(e,t){return e[t]<<8|e[t+1]}function m(e,t){return e[t]<<24>>24}function h(e,t,n,r,i,a,s,l){e&&G(`JBIG2 error: MMR encoding is not supported`);for(var u=!!a,d=o[r].concat(s),f=d.length,p=new Int32Array(f),m=new Int32Array(f),h=0;h<f;h++)p[h]=d[h].x,m[h]=d[h].y;for(var g=c[r],_=[],v=l.decoder,y=l.contextCache.getContexts(`GB`),b=0,x=0;x<n;x++)if(i&&(b^=v.readBit(y,g)),b)_.push(_[_.length-1]);else{var S=new Uint8Array(t);_.push(S);for(var C=0;C<t;C++)if(u&&a[x][C])S[C]=0;else{var w=0;for(h=0;h<f;h++){var T=x+m[h],E=C+p[h];T<0||E<0||E>=t?w<<=1:w=w<<1|_[T][E]}S[C]=v.readBit(y,w)}}return _}function g(e,t,n,r,i,a,o,c,u){var d=s[n].coding;n===0&&(d=d.concat([c[0]]));for(var f=d.length,p=new Int32Array(f),m=new Int32Array(f),h=0;h<f;h++)p[h]=d[h].x,m[h]=d[h].y;var g=s[n].reference;n===0&&(g=g.concat([c[1]]));var _=g.length,v=new Int32Array(_),y=new Int32Array(_);for(h=0;h<_;h++)v[h]=g[h].x,y[h]=g[h].y;for(var b=r[0].length,x=r.length,S=l[n],C=[],w=u.decoder,T=u.contextCache.getContexts(`GR`),E=0,D=0;D<t;D++){o&&(E^=w.readBit(T,S));var O=new Uint8Array(e);C.push(O);for(var k=0;k<e;k++){E&&G(`JBIG2 error: prediction is not supported`);var A=0;for(h=0;h<f;h++){var j=D+m[h],M=k+p[h];j<0||M<0||M>=e?A<<=1:A=A<<1|C[j][M]}for(h=0;h<_;h++)j=D+y[h]+a,M=k+v[h]+i,j<0||j>=x||M<0||M>=b?A<<=1:A=A<<1|r[j][M];O[k]=w.readBit(T,A)}}return C}function _(e,t){var n={};n.number=f(e,t);var r=e[t+4],i=63&r;a[i]||G(`JBIG2 error: invalid segment type: `+i),n.type=i,n.typeName=a[i],n.deferredNonRetain=!!(128&r);var o=!!(64&r),s=e[t+5],c=s>>5&7,l=[31&s],u=t+6;if(s==7){c=536870911&d(e,u-1),u+=3;var m=c+7>>3;for(l[0]=e[u++];--m>0;)l.push(e[u++])}else s!=5&&s!=6||G(`JBIG2 error: invalid referred-to flags`);n.retainBits=l;for(var h=n.number<=256?1:n.number<=65536?2:4,g=[],_=0;_<c;_++){var v=h==1?e[u]:h==2?p(e,u):f(e,u);g.push(v),u+=h}if(n.referredTo=g,o?(n.pageAssociation=f(e,u),u+=4):n.pageAssociation=e[u++],n.length=f(e,u),u+=4,n.length==4294967295)if(i===38){var x=y(e,u),S=!!(1&e[u+b]),C=new Uint8Array(6);S||(C[0]=255,C[1]=172),C[2]=x.height>>>24&255,C[3]=x.height>>16&255,C[4]=x.height>>8&255,C[5]=255&x.height,_=u;for(var w=e.length;_<w;_++){for(var T=0;T<6&&C[T]===e[_+T];)T++;if(T==6){n.length=_+6;break}}n.length==4294967295&&G(`JBIG2 error: segment end was not found`)}else G(`JBIG2 error: invalid unknown segment length`);return n.headerEnd=u,n}function v(e,t,n,r){for(var i=[],a=n;a<r;){var o=_(t,a);a=o.headerEnd;var s={header:o,data:t};if(e.randomAccess||(s.start=a,a+=o.length,s.end=a),i.push(s),o.type==51)break}if(e.randomAccess)for(var c=0,l=i.length;c<l;c++)i[c].start=a,a+=i[c].header.length,i[c].end=a;return i}function y(e,t){return{width:f(e,t),height:f(e,t+4),x:f(e,t+8),y:f(e,t+12),combinationOperator:7&e[t+16]}}var b=17;function x(e,t){var n,r=e.header,i=e.data,a=e.start,o=e.end;switch(r.type){case 0:var s={},c=p(i,a);if(s.huffman=!!(1&c),s.refinement=!!(2&c),s.huffmanDHSelector=c>>2&3,s.huffmanDWSelector=c>>4&3,s.bitmapSizeSelector=c>>6&1,s.aggregationInstancesSelector=c>>7&1,s.bitmapCodingContextUsed=!!(256&c),s.bitmapCodingContextRetained=!!(512&c),s.template=c>>10&3,s.refinementTemplate=c>>12&1,a+=2,!s.huffman){for(var l=s.template===0?4:1,u=[],d=0;d<l;d++)u.push({x:m(i,a),y:m(i,a+1)}),a+=2;s.at=u}if(s.refinement&&!s.refinementTemplate){for(u=[],d=0;d<2;d++)u.push({x:m(i,a),y:m(i,a+1)}),a+=2;s.refinementAt=u}s.numberOfExportedSymbols=f(i,a),a+=4,s.numberOfNewSymbols=f(i,a),a+=4,n=[s,r.number,r.referredTo,i,a,o];break;case 6:case 7:var h={};h.info=y(i,a);var g=p(i,a+=b);if(a+=2,h.huffman=!!(1&g),h.refinement=!!(2&g),h.stripSize=1<<(g>>2&3),h.referenceCorner=g>>4&3,h.transposed=!!(64&g),h.combinationOperator=g>>7&3,h.defaultPixelValue=g>>9&1,h.dsOffset=g<<17>>27,h.refinementTemplate=g>>15&1,h.huffman){var _=p(i,a);a+=2,h.huffmanFS=3&_,h.huffmanDS=_>>2&3,h.huffmanDT=_>>4&3,h.huffmanRefinementDW=_>>6&3,h.huffmanRefinementDH=_>>8&3,h.huffmanRefinementDX=_>>10&3,h.huffmanRefinementDY=_>>12&3,h.huffmanRefinementSizeSelector=!!(14&_)}if(h.refinement&&!h.refinementTemplate){for(u=[],d=0;d<2;d++)u.push({x:m(i,a),y:m(i,a+1)}),a+=2;h.refinementAt=u}h.numberOfSymbolInstances=f(i,a),a+=4,h.huffman&&G(`JBIG2 error: huffman is not supported`),n=[h,r.referredTo,i,a,o];break;case 38:case 39:var v={};v.info=y(i,a),a+=b;var x=i[a++];if(v.mmr=!!(1&x),v.template=x>>1&3,v.prediction=!!(8&x),!v.mmr){for(l=v.template===0?4:1,u=[],d=0;d<l;d++)u.push({x:m(i,a),y:m(i,a+1)}),a+=2;v.at=u}n=[v,i,a,o];break;case 48:var S={width:f(i,a),height:f(i,a+4),resolutionX:f(i,a+8),resolutionY:f(i,a+12)};S.height==4294967295&&delete S.height;var C=i[a+16];p(i,a+17),S.lossless=!!(1&C),S.refinement=!!(2&C),S.defaultPixelValue=C>>2&1,S.combinationOperator=C>>3&3,S.requiresBuffer=!!(32&C),S.combinationOperatorOverride=!!(64&C),n=[S];break;case 49:case 50:case 51:case 62:break;default:G(`JBIG2 error: segment type `+r.typeName+`(`+r.type+`) is not implemented`)}var w=`on`+r.typeName;w in t&&t[w].apply(t,n)}function S(e,t){for(var n=0,r=e.length;n<r;n++)x(e[n],t)}function C(){}function w(){}return C.prototype={onPageInformation:function(e){this.currentPageInfo=e;for(var t=e.width+7>>3,n=new Uint8Array(t*e.height),r=e.defaultPixelValue?255:0,i=0,a=n.length;i<a;i++)n[i]=r;this.buffer=n},drawBitmap:function(e,t){for(var n=this.currentPageInfo,r=e.width,i=e.height,a=n.width+7>>3,o=n.combinationOperatorOverride?e.combinationOperator:n.combinationOperator,s=this.buffer,c=0;c<i;c++){var l=128>>(7&e.x),u=(c+e.y)*a+(e.x>>3);switch(o){case 0:for(var d=0;d<r;d++)s[u]|=t[c][d]?l:0,(l>>=1)||(l=128,u++);break;case 2:for(d=0;d<r;d++)s[u]^=t[c][d]?l:0,(l>>=1)||(l=128,u++);break;default:G(`JBIG2 error: operator `+o+` is not supported`)}}},onImmediateGenericRegion:function(e,t,r,i){var a=e.info,o=new n(t,r,i),s=h(e.mmr,a.width,a.height,e.template,e.prediction,null,e.at,o);this.drawBitmap(a,s)},onImmediateLosslessGenericRegion:function(){this.onImmediateGenericRegion.apply(this,arguments)},onSymbolDictionary:function(e,t,a,o,s,c){e.huffman&&G(`JBIG2 error: huffman is not supported`);var l=this.symbols;l||(this.symbols=l={});for(var d=[],f=0,p=a.length;f<p;f++)d=d.concat(l[a[f]]);var m=new n(o,s,c);l[t]=function(e,t,n,a,o,s,c,l,d,f,p){e&&G(`JBIG2 error: huffman is not supported`);for(var m=[],_=0,v=u(n.length+a),y=p.decoder,b=p.contextCache;m.length<a;){_+=r(b,`IADH`,y);for(var x=0;;){var S,C=r(b,`IADW`,y);if(C===null)break;if(x+=C,t){r(b,`IAAI`,y)>1&&G(`JBIG2 error: number of instances > 1 is not supported`);var w=i(b,y,v),T=r(b,`IARDX`,y),E=r(b,`IARDY`,y);S=g(x,_,d,w<n.length?n[w]:m[w-n.length],T,E,!1,f,p)}else S=h(!1,x,_,c,!1,null,l,p);m.push(S)}}for(var D=[],O=[],k=!1,A=n.length+a;O.length<A;){for(var j=r(b,`IAEX`,y);j--;)O.push(k);k=!k}for(var M=0,N=n.length;M<N;M++)O[M]&&D.push(n[M]);for(var P=0;P<a;M++,P++)O[M]&&D.push(m[P]);return D}(e.huffman,e.refinement,d,e.numberOfNewSymbols,e.numberOfExportedSymbols,0,e.template,e.at,e.refinementTemplate,e.refinementAt,m)},onImmediateTextRegion:function(e,t,a,o,s){for(var c=e.info,l=this.symbols,d=[],f=0,p=t.length;f<p;f++)d=d.concat(l[t[f]]);var m=u(d.length),h=new n(a,o,s),_=function(e,t,n,a,o,s,c,l,u,d,f,p,m,h,_,v,y){e&&G(`JBIG2 error: huffman is not supported`);for(var b=[],x=0;x<a;x++){var S=new Uint8Array(n);if(o)for(var C=0;C<n;C++)S[C]=o;b.push(S)}var w=y.decoder,T=y.contextCache,E=-r(T,`IADT`,w),D=0;for(x=0;x<s;){E+=r(T,`IADT`,w);for(var O=D+=r(T,`IAFS`,w);;){var k=c*E+(c==1?0:r(T,`IAIT`,w)),A=i(T,w,u),j=t&&r(T,`IARI`,w),M=l[A],N=M[0].length,P=M.length;if(j){var F=r(T,`IARDW`,w),ee=r(T,`IARDH`,w);M=g(N+=F,P+=ee,_,M,(F>>1)+r(T,`IARDX`,w),(ee>>1)+r(T,`IARDY`,w),!1,v,y)}var I=k-(1&p?0:P),L=O-(2&p?N:0);if(d){for(var R=0;R<P;R++)if(S=b[L+R]){var te=M[R],ne=Math.min(n-I,N);switch(m){case 0:for(var re=0;re<ne;re++)S[I+re]|=te[re];break;case 2:for(re=0;re<ne;re++)S[I+re]^=te[re];break;default:G(`JBIG2 error: operator `+m+` is not supported`)}}O+=P-1}else{for(re=0;re<P;re++)if(S=b[I+re])switch(te=M[re],m){case 0:for(R=0;R<N;R++)S[L+R]|=te[R];break;case 2:for(R=0;R<N;R++)S[L+R]^=te[R];break;default:G(`JBIG2 error: operator `+m+` is not supported`)}O+=N-1}x++;var ie=r(T,`IADS`,w);if(ie===null)break;O+=ie+f}}return b}(e.huffman,e.refinement,c.width,c.height,e.defaultPixelValue,e.numberOfSymbolInstances,e.stripSize,d,m,e.transposed,e.dsOffset,e.referenceCorner,e.combinationOperator,0,e.refinementTemplate,e.refinementAt,h);this.drawBitmap(c,_)},onImmediateLosslessTextRegion:function(){this.onImmediateTextRegion.apply(this,arguments)}},w.prototype={parseChunks:function(e){return function(e){for(var t=new C,n=0,r=e.length;n<r;n++){var i=e[n];S(v({},i.data,i.start,i.end),t)}return t.buffer}(e)}},w}(),As=(V.bidi=function(){var e=`BN.BN.BN.BN.BN.BN.BN.BN.BN.S.B.S.WS.B.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.B.B.B.S.WS.ON.ON.ET.ET.ET.ON.ON.ON.ON.ON.ON.CS.ON.CS.ON.EN.EN.EN.EN.EN.EN.EN.EN.EN.EN.ON.ON.ON.ON.ON.ON.ON.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.ON.ON.ON.ON.ON.ON.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.ON.ON.ON.ON.BN.BN.BN.BN.BN.BN.B.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.BN.CS.ON.ET.ET.ET.ET.ON.ON.ON.ON.L.ON.ON.ON.ON.ON.ET.ET.EN.EN.ON.L.ON.ON.ON.EN.L.ON.ON.ON.ON.ON.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.ON.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.ON.L.L.L.L.L.L.L.L`.split(`.`),t=`AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.CS.AL.ON.ON.NSM.NSM.NSM.NSM.NSM.NSM.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.AL.AL.AL.AL.AL.AL.AL.AN.AN.AN.AN.AN.AN.AN.AN.AN.AN.ET.AN.AN.AL.AL.AL.NSM.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.NSM.ON.NSM.NSM.NSM.NSM.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL.AL`.split(`.`);function n(e){return!!(1&e)}function r(e){return!(1&e)}function i(e,t,n){for(var r=t,i=e.length;r<i;++r)if(e[r]!=n)return r;return r}function a(e,t,n,r){for(var i=t;i<n;++i)e[i]=r}function o(e,t,n){for(var r=t,i=n-1;r<i;++r,--i){var a=e[r];e[r]=e[i],e[i]=a}}function s(e,t,n){this.str=e,this.dir=n?`ttb`:t?`ltr`:`rtl`}return function(c,l,u){var d=!0,f=c.length;if(f===0||u)return new s(c,d,u);for(var p=[],m=[],h=[],g=0,_=0;_<f;++_){p[_]=c.charAt(_);var v=c.charCodeAt(_),y=`L`;v<=255?y=e[v]:1424<=v&&v<=1524?y=`R`:1536<=v&&v<=1791?y=t[255&v]:1792<=v&&v<=2220&&(y=`AL`),y!=`R`&&y!=`AL`&&y!=`AN`||g++,h[_]=m[_]=y}if(g===0)return new s(c,d=!0);l==-1&&(f/g<.3?(d=!0,l=0):(d=!1,l=1));var b=[];for(_=0;_<f;++_)b[_]=l;var x=n(l)?`R`:`L`,S=x,C=S,w=S;for(_=0;_<f;++_)m[_]==`NSM`?m[_]=w:w=m[_];for(w=S,_=0;_<f;++_)(k=m[_])==`EN`?m[_]=w==`AL`?`AN`:`EN`:k!=`R`&&k!=`L`&&k!=`AL`||(w=k);for(_=0;_<f;++_)(k=m[_])==`AL`&&(m[_]=`R`);for(_=1;_<f-1;++_)m[_]==`ES`&&m[_-1]==`EN`&&m[_+1]==`EN`&&(m[_]=`EN`),m[_]!=`CS`||m[_-1]!=`EN`&&m[_-1]!=`AN`||m[_+1]!=m[_-1]||(m[_]=m[_-1]);for(_=0;_<f;++_)if(m[_]==`EN`){for(var T=_-1;T>=0&&m[T]==`ET`;--T)m[T]=`EN`;for(T=_+1;T<f&&m[T]==`ET`;--T)m[T]=`EN`}for(_=0;_<f;++_)(k=m[_])!=`WS`&&k!=`ES`&&k!=`ET`&&k!=`CS`||(m[_]=`ON`);for(w=S,_=0;_<f;++_)(k=m[_])==`EN`?m[_]=w==`L`?`L`:`EN`:k!=`R`&&k!=`L`||(w=k);for(_=0;_<f;++_)if(m[_]==`ON`){var E=i(m,_+1,`ON`),D=S;_>0&&(D=m[_-1]);var O=C;E+1<f&&(O=m[E+1]),D!=`L`&&(D=`R`),O!=`L`&&(O=`R`),D==O&&a(m,_,E,D),_=E-1}for(_=0;_<f;++_)m[_]==`ON`&&(m[_]=x);for(_=0;_<f;++_){var k=m[_];r(b[_])?k==`R`?b[_]+=1:k!=`AN`&&k!=`EN`||(b[_]+=2):k!=`L`&&k!=`AN`&&k!=`EN`||(b[_]+=1)}for(var A=-1,j=99,M=(_=0,b.length);_<M;++_)A<(N=b[_])&&(A=N),j>N&&n(N)&&(j=N);for(var N=A;N>=j;--N){var P=-1;for(_=0,M=b.length;_<M;++_)b[_]<N?P>=0&&(o(p,P,_),P=-1):P<0&&(P=_);P>=0&&o(p,P,b.length)}var F=``;for(_=0,M=p.length;_<M;++_){var ee=p[_];ee!=`<`&&ee!=`>`&&(F+=ee)}return new s(F,d)}}(),function(){var e=new Int32Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]),t=4017,n=799,r=3406,i=2276,a=1567,o=3784,s=5793,c=2896;function l(){}function u(e,t){for(var n,r,i=0,a=[],o=16;o>0&&!e[o-1];)o--;a.push({children:[],index:0});var s,c=a[0];for(n=0;n<o;n++){for(r=0;r<e[n];r++){for((c=a.pop()).children[c.index]=t[i];c.index>0;)c=a.pop();for(c.index++,a.push(c);a.length<=n;)a.push(s={children:[],index:0}),c.children[c.index]=s.children,c=s;i++}n+1<o&&(a.push(s={children:[],index:0}),c.children[c.index]=s.children,c=s)}return a[0].children}function d(t,n,r,i,a,o,s,c,l){r.precision,r.samplesPerLine,r.scanLines;var u=r.mcusPerLine,d=r.progressive,f=(r.maxH,r.maxV,n),p=0,m=0;function h(){if(m>0)return m--,p>>m&1;if((p=t[n++])==255){var e=t[n++];if(e)throw`unexpected marker: `+(p<<8|e).toString(16)}return m=7,p>>>7}function g(e){for(var t,n=e;(t=h())!==null;){if(typeof(n=n[t])==`number`)return n;if(typeof n!=`object`)throw`invalid huffman sequence`}return null}function _(e){for(var t=0;e>0;){var n=h();if(n===null)return;t=t<<1|n,e--}return t}function v(e){var t=_(e);return t>=1<<e-1?t:t+(-1<<e)+1}var y=0,b,x=0;function S(e,t,n,r,i){var a=n%u,o=(n/u|0)*e.v+r,s=a*e.h+i;t(e,e.blocks[o][s])}function C(e,t,n){var r=n/e.blocksPerLine|0,i=n%e.blocksPerLine;t(e,e.blocks[r][i])}var w,T,E,D,O,k,A=i.length;k=d?o===0?c===0?function(e,t){var n=g(e.huffmanTableDC),r=n===0?0:v(n)<<l;t[0]=e.pred+=r}:function(e,t){t[0]|=h()<<l}:c===0?function(t,n){if(y>0)y--;else for(var r=o,i=s;r<=i;){var a=g(t.huffmanTableAC),c=15&a,u=a>>4;if(c!==0)n[e[r+=u]]=v(c)*(1<<l),r++;else{if(u<15){y=_(u)+(1<<u)-1;break}r+=16}}}:function(t,n){for(var r=o,i=s,a=0;r<=i;){var c=e[r];switch(x){case 0:var u=g(t.huffmanTableAC),d=15&u;if(a=u>>4,d===0)a<15?(y=_(a)+(1<<a),x=4):(a=16,x=1);else{if(d!==1)throw`invalid ACn encoding`;b=v(d),x=a?2:3}continue;case 1:case 2:n[c]?n[c]+=h()<<l:--a===0&&(x=x==2?3:0);break;case 3:n[c]?n[c]+=h()<<l:(n[c]=b<<l,x=0);break;case 4:n[c]&&(n[c]+=h()<<l)}r++}x===4&&--y===0&&(x=0)}:function(t,n){var r=g(t.huffmanTableDC),i=r===0?0:v(r);n[0]=t.pred+=i;for(var a=1;a<64;){var o=g(t.huffmanTableAC),s=15&o,c=o>>4;if(s!==0)n[e[a+=c]]=v(s),a++;else{if(c<15)break;a+=16}}};var j,M,N,P,F=0;for(M=A==1?i[0].blocksPerLine*i[0].blocksPerColumn:u*r.mcusPerColumn,a||=M;F<M;){for(T=0;T<A;T++)i[T].pred=0;if(y=0,A==1)for(w=i[0],O=0;O<a;O++)C(w,k,F),F++;else for(O=0;O<a;O++){for(T=0;T<A;T++)for(N=(w=i[T]).h,P=w.v,E=0;E<P;E++)for(D=0;D<N;D++)S(w,k,F,E,D);F++}if(m=0,(j=t[n]<<8|t[n+1])<=65280)throw`marker was not found`;if(!(j>=65488&&j<=65495))break;n+=2}return n-f}function f(e,l){var u,d,f=[],p=l.blocksPerLine,m=l.blocksPerColumn,h=p<<3,g=new Int32Array(64),_=new Uint8Array(64);function v(e,u,d){var f,p,m,h,g,_,v,y,b,x,S=l.quantizationTable,C=d;for(x=0;x<64;x++)C[x]=e[x]*S[x];for(x=0;x<8;++x){var w=8*x;C[1+w]!=0||C[2+w]!=0||C[3+w]!=0||C[4+w]!=0||C[5+w]!=0||C[6+w]!=0||C[7+w]!=0?(f=s*C[0+w]+128>>8,p=s*C[4+w]+128>>8,m=C[2+w],h=C[6+w],g=c*(C[1+w]-C[7+w])+128>>8,y=c*(C[1+w]+C[7+w])+128>>8,_=C[3+w]<<4,v=C[5+w]<<4,b=f-p+1>>1,f=f+p+1>>1,p=b,b=m*o+h*a+128>>8,m=m*a-h*o+128>>8,h=b,b=g-v+1>>1,g=g+v+1>>1,v=b,b=y+_+1>>1,_=y-_+1>>1,y=b,b=f-h+1>>1,f=f+h+1>>1,h=b,b=p-m+1>>1,p=p+m+1>>1,m=b,b=g*i+y*r+2048>>12,g=g*r-y*i+2048>>12,y=b,b=_*n+v*t+2048>>12,_=_*t-v*n+2048>>12,v=b,C[0+w]=f+y,C[7+w]=f-y,C[1+w]=p+v,C[6+w]=p-v,C[2+w]=m+_,C[5+w]=m-_,C[3+w]=h+g,C[4+w]=h-g):(b=s*C[0+w]+512>>10,C[0+w]=b,C[1+w]=b,C[2+w]=b,C[3+w]=b,C[4+w]=b,C[5+w]=b,C[6+w]=b,C[7+w]=b)}for(x=0;x<8;++x){var T=x;C[8+T]!=0||C[16+T]!=0||C[24+T]!=0||C[32+T]!=0||C[40+T]!=0||C[48+T]!=0||C[56+T]!=0?(f=s*C[0+T]+2048>>12,p=s*C[32+T]+2048>>12,m=C[16+T],h=C[48+T],g=c*(C[8+T]-C[56+T])+2048>>12,y=c*(C[8+T]+C[56+T])+2048>>12,_=C[24+T],v=C[40+T],b=f-p+1>>1,f=f+p+1>>1,p=b,b=m*o+h*a+2048>>12,m=m*a-h*o+2048>>12,h=b,b=g-v+1>>1,g=g+v+1>>1,v=b,b=y+_+1>>1,_=y-_+1>>1,y=b,b=f-h+1>>1,f=f+h+1>>1,h=b,b=p-m+1>>1,p=p+m+1>>1,m=b,b=g*i+y*r+2048>>12,g=g*r-y*i+2048>>12,y=b,b=_*n+v*t+2048>>12,_=_*t-v*n+2048>>12,v=b,C[0+T]=f+y,C[56+T]=f-y,C[8+T]=p+v,C[48+T]=p-v,C[16+T]=m+_,C[40+T]=m-_,C[24+T]=h+g,C[32+T]=h-g):(b=s*d[x+0]+8192>>14,C[0+T]=b,C[8+T]=b,C[16+T]=b,C[24+T]=b,C[32+T]=b,C[40+T]=b,C[48+T]=b,C[56+T]=b)}for(x=0;x<64;++x){var E=128+(C[x]+8>>4);u[x]=E<0?0:E>255?255:E}}for(var y=0;y<m;y++){var b=y<<3;for(u=0;u<8;u++)f.push(new Uint8Array(h));for(var x=0;x<p;x++){v(l.blocks[y][x],_,g);var S=0,C=x<<3;for(d=0;d<8;d++){var w=f[b+d];for(u=0;u<8;u++)w[C+u]=_[S++]}}}return f}return l.prototype={load:function(e){var t=new XMLHttpRequest;t.open(`GET`,e,!0),t.responseType=`arraybuffer`,t.onload=function(){var e=new Uint8Array(t.response||t.mozResponseArrayBuffer);this.parse(e),this.onload&&this.onload()}.bind(this),t.send(null)},parse:function(t){var n=0;t.length;function r(){var e=t[n]<<8|t[n+1];return n+=2,e}function i(){var e=r(),i=t.subarray(n,n+e-2);return n+=i.length,i}function a(e){var t,n,r=0,i=0;for(n in e.components)e.components.hasOwnProperty(n)&&(r<(t=e.components[n]).h&&(r=t.h),i<t.v&&(i=t.v));var a=Math.ceil(e.samplesPerLine/8/r),o=Math.ceil(e.scanLines/8/i);for(n in e.components)if(e.components.hasOwnProperty(n)){t=e.components[n];for(var s=Math.ceil(Math.ceil(e.samplesPerLine/8)*t.h/r),c=Math.ceil(Math.ceil(e.scanLines/8)*t.v/i),l=a*t.h,u=o*t.v,d=[],f=0;f<u;f++){for(var p=[],m=0;m<l;m++)p.push(new Int32Array(64));d.push(p)}t.blocksPerLine=s,t.blocksPerColumn=c,t.blocks=d}e.maxH=r,e.maxV=i,e.mcusPerLine=a,e.mcusPerColumn=o}var o,s,c=null,l=null,p=[],m=[],h=[],g=[],_=r();if(_!=65496)throw`SOI not found`;for(_=r();_!=65497;){var v;switch(_){case 65504:case 65505:case 65506:case 65507:case 65508:case 65509:case 65510:case 65511:case 65512:case 65513:case 65514:case 65515:case 65516:case 65517:case 65518:case 65519:case 65534:var y=i();_===65504&&y[0]===74&&y[1]===70&&y[2]===73&&y[3]===70&&y[4]===0&&(c={version:{major:y[5],minor:y[6]},densityUnits:y[7],xDensity:y[8]<<8|y[9],yDensity:y[10]<<8|y[11],thumbWidth:y[12],thumbHeight:y[13],thumbData:y.subarray(14,14+3*y[12]*y[13])}),_===65518&&y[0]===65&&y[1]===100&&y[2]===111&&y[3]===98&&y[4]===101&&y[5]===0&&(l={version:y[6],flags0:y[7]<<8|y[8],flags1:y[9]<<8|y[10],transformCode:y[11]});break;case 65499:for(var b=r()+n-2;n<b;){var x=t[n++],S=new Int32Array(64);if(x>>4){if(x>>4!=1)throw`DQT: invalid table spec`;for(v=0;v<64;v++)S[e[v]]=r()}else for(v=0;v<64;v++)S[e[v]]=t[n++];p[15&x]=S}break;case 65472:case 65474:r(),(o={}).progressive=_===65474,o.precision=t[n++],o.scanLines=r(),o.samplesPerLine=r(),o.components={},o.componentsOrder=[];var C,w=t[n++];for(te=0;te<w;te++){C=t[n];var T=t[n+1]>>4,E=15&t[n+1],D=t[n+2];o.componentsOrder.push(C),o.components[C]={h:T,v:E,quantizationTable:p[D]},n+=3}a(o),m.push(o);break;case 65476:var O=r();for(te=2;te<O;){var k=t[n++],A=new Uint8Array(16),j=0;for(v=0;v<16;v++,n++)j+=A[v]=t[n];var M=new Uint8Array(j);for(v=0;v<j;v++,n++)M[v]=t[n];te+=17+j,(k>>4?h:g)[15&k]=u(A,M)}break;case 65501:r(),s=r();break;case 65498:r();var N=t[n++],P=[];for(te=0;te<N;te++){ne=o.components[t[n++]];var F=t[n++];ne.huffmanTableDC=g[F>>4],ne.huffmanTableAC=h[15&F],P.push(ne)}var ee=t[n++],I=t[n++],L=t[n++],R=d(t,n,o,P,s,ee,I,L>>4,15&L);n+=R;break;default:if(t[n-3]==255&&t[n-2]>=192&&t[n-2]<=254){n-=3;break}throw`unknown JPEG marker `+_.toString(16)}_=r()}if(m.length!=1)throw`only single frame JPEGs supported`;this.width=o.samplesPerLine,this.height=o.scanLines,this.jfif=c,this.adobe=l,this.components=[];for(var te=0;te<o.componentsOrder.length;te++){var ne=o.components[o.componentsOrder[te]];this.components.push({lines:f(0,ne),scaleX:ne.h/o.maxH,scaleY:ne.v/o.maxV})}},getData:function(e,t){function n(e){return e<0?0:e>255?255:e}var r,i,a,o,s,c,l,u,d,f,p,m,h,g,_,v,y,b,x,S,C,w=this.width/e,T=this.height/t,E=0,D=e*t*this.components.length,O=new Uint8Array(D);switch(this.components.length){case 1:for(r=this.components[0],f=0;f<t;f++)for(s=r.lines[0|f*r.scaleY*T],d=0;d<e;d++)p=s[0|d*r.scaleX*w],O[E++]=p;break;case 3:for(C=!0,this.adobe&&this.adobe.transformCode?C=!0:this.colorTransform!==void 0&&(C=!!this.colorTransform),r=this.components[0],i=this.components[1],a=this.components[2],f=0;f<t;f++)for(s=r.lines[0|f*r.scaleY*T],c=i.lines[0|f*i.scaleY*T],l=a.lines[0|f*a.scaleY*T],d=0;d<e;d++)C?(p=s[0|d*r.scaleX*w],m=c[0|d*i.scaleX*w],b=n(p+1.402*((h=l[0|d*a.scaleX*w])-128)),x=n(p-.3441363*(m-128)-.71413636*(h-128)),S=n(p+1.772*(m-128))):(b=s[0|d*r.scaleX*w],x=c[0|d*i.scaleX*w],S=l[0|d*a.scaleX*w]),O[E++]=b,O[E++]=x,O[E++]=S;break;case 4:if(!this.adobe)throw`Unsupported color mode (4 components)`;for(C=!1,this.adobe&&this.adobe.transformCode?C=!0:this.colorTransform!==void 0&&(C=!!this.colorTransform),r=this.components[0],i=this.components[1],a=this.components[2],o=this.components[3],f=0;f<t;f++)for(s=r.lines[0|f*r.scaleY*T],c=i.lines[0|f*i.scaleY*T],l=a.lines[0|f*a.scaleY*T],u=o.lines[0|f*o.scaleY*T],d=0;d<e;d++)C?(p=s[0|d*r.scaleX*w],m=c[0|d*i.scaleX*w],h=l[0|d*a.scaleX*w],g=u[0|d*o.scaleX*w],_=255-n(p+1.402*(h-128)),v=255-n(p-.3441363*(m-128)-.71413636*(h-128)),y=255-n(p+1.772*(m-128))):(_=s[0|d*r.scaleX*w],v=c[0|d*i.scaleX*w],y=l[0|d*a.scaleX*w],g=u[0|d*o.scaleX*w]),O[E++]=_,O[E++]=v,O[E++]=y,O[E++]=g;break;default:throw`Unsupported color mode`}return O},copyToImageData:function(e){var t,n,r,i,a,o,s,c,l,u=e.width,d=e.height,f=e.data,p=this.getData(u,d),m=0,h=0;switch(this.components.length){case 1:for(n=0;n<d;n++)for(t=0;t<u;t++)r=p[m++],f[h++]=r,f[h++]=r,f[h++]=r,f[h++]=255;break;case 3:for(n=0;n<d;n++)for(t=0;t<u;t++)s=p[m++],c=p[m++],l=p[m++],f[h++]=s,f[h++]=c,f[h++]=l,f[h++]=255;break;case 4:for(n=0;n<d;n++)for(t=0;t<u;t++)a=p[m++],o=p[m++],r=p[m++],i=p[m++],s=255-clampTo8bit(a*(1-i/255)+i),c=255-clampTo8bit(o*(1-i/255)+i),l=255-clampTo8bit(r*(1-i/255)+i),f[h++]=s,f[h++]=c,f[h++]=l,f[h++]=255;break;default:throw`Unsupported color mode`}}},l}()),js=function(){function e(e,t,n){this.bytes=new Uint8Array(e),this.start=0,this.pos=0,this.end=e,this.chunkSize=t,this.loadedChunks=[],this.numChunksLoaded=0,this.numChunks=Math.ceil(e/t),this.manager=n,this.initialDataLength=0}return e.prototype={getMissingChunks:function(){for(var e=[],t=0,n=this.numChunks;t<n;++t)t in this.loadedChunks||e.push(t);return e},getBaseStreams:function(){return[this]},allChunksLoaded:function(){return this.numChunksLoaded===this.numChunks},onReceiveData:function(e,t){var n=e+t.byteLength;ki(e%this.chunkSize===0,`Bad begin offset: `+e);var r=this.bytes.length;ki(n%this.chunkSize===0||n===r,`Bad end offset: `+n),this.bytes.set(new Uint8Array(t),e);var i=this.chunkSize,a=Math.floor(e/i),o=Math.floor((n-1)/i)+1;for(t=a;t<o;++t)t in this.loadedChunks||(this.loadedChunks[t]=!0,++this.numChunksLoaded)},onReceiveInitialData:function(e){this.bytes.set(e),this.initialDataLength=e.length;for(var t=this.end===e.length?this.numChunks:Math.floor(e.length/this.chunkSize),n=0;n<t;n++)this.loadedChunks[n]=!0,++this.numChunksLoaded},ensureRange:function(e,t){if(!(e>=t||t<=this.initialDataLength)){for(var n=this.chunkSize,r=Math.floor(e/n),i=Math.floor((t-1)/n)+1,a=r;a<i;++a)if(!(a in this.loadedChunks))throw new Vi(e,t)}},nextEmptyChunk:function(e){for(var t=e,n=this.numChunks;t<n;++t)if(!(t in this.loadedChunks))return t;for(t=0;t<e;++t)if(!(t in this.loadedChunks))return t;return null},hasChunk:function(e){return e in this.loadedChunks},get length(){return this.end-this.start},getByte:function(){var e=this.pos;return e>=this.end?-1:(this.ensureRange(e,e+1),this.bytes[this.pos++])},getBytes:function(e){var t=this.bytes,n=this.pos,r=this.end;if(!e)return this.ensureRange(n,r),t.subarray(n,r);var i=n+e;return i>r&&(i=r),this.ensureRange(n,i),this.pos=i,t.subarray(n,i)},peekBytes:function(e){var t=this.getBytes(e);return this.pos-=t.length,t},getByteRange:function(e,t){return this.ensureRange(e,t),this.bytes.subarray(e,t)},skip:function(e){e||=1,this.pos+=e},reset:function(){this.pos=this.start},moveStart:function(){this.start=this.pos},makeSubStream:function(e,t,n){function r(){}r.prototype=Object.create(this),r.prototype.getMissingChunks=function(){for(var e=this.chunkSize,t=Math.floor(this.start/e),n=Math.floor((this.end-1)/e)+1,r=[],i=t;i<n;++i)i in this.loadedChunks||r.push(i);return r};var i=new r;return i.pos=i.start=e,i.end=e+t||this.end,i.dict=n,i},isStream:!0},e}(),Ms=function(){function e(e,t,n,r){this.stream=new js(e,t,this),this.length=e,this.chunkSize=t,this.url=n,this.disableAutoFetch=r.disableAutoFetch;var i=this.msgHandler=r.msgHandler;r.chunkedViewerLoading?(i.on(`OnDataRange`,this.onReceiveData.bind(this)),i.on(`OnDataProgress`,this.onProgress.bind(this)),this.sendRequest=function(e,t){i.send(`RequestDataRange`,{begin:e,end:t})}):(this.networkManager=new NetworkManager(this.url,{getXhr:function(){return new XMLHttpRequest},httpHeaders:r.httpHeaders}),this.sendRequest=function(e,t){this.networkManager.requestRange(e,t,{onDone:this.onReceiveData.bind(this),onProgress:this.onProgress.bind(this)})}),this.currRequestId=0,this.chunksNeededByRequest={},this.requestsByChunk={},this.callbacksByRequest={},this.loadedStream=new q,r.initialData&&this.setInitialData(r.initialData)}return e.prototype={setInitialData:function(e){this.stream.onReceiveInitialData(e),this.stream.allChunksLoaded()?this.loadedStream.resolve(this.stream):this.msgHandler&&this.msgHandler.send(`DocProgress`,{loaded:e.length,total:this.length})},onLoadedStream:function(){return this.loadedStream},requestAllChunks:function(){var e=this.stream.getMissingChunks();return this.requestChunks(e),this.loadedStream},requestChunks:function(e,t){var n,r=this.currRequestId++;this.chunksNeededByRequest[r]=n={};for(var i=0,a=e.length;i<a;i++)this.stream.hasChunk(e[i])||(n[e[i]]=!0);if(Ji(n))t&&t();else{this.callbacksByRequest[r]=t;var o=[];for(var s in n)(s|=0)in this.requestsByChunk||(this.requestsByChunk[s]=[],o.push(s)),this.requestsByChunk[s].push(r);if(o.length){var c=this.groupChunks(o);for(i=0;i<c.length;++i){var l=c[i],u=l.beginChunk*this.chunkSize,d=Math.min(l.endChunk*this.chunkSize,this.length);this.sendRequest(u,d)}}}},getStream:function(){return this.stream},requestRange:function(e,t,n){t=Math.min(t,this.length);for(var r=this.getBeginChunk(e),i=this.getEndChunk(t),a=[],o=r;o<i;++o)a.push(o);this.requestChunks(a,n)},requestRanges:function(e,t){e||=[];for(var n=[],r=0;r<e.length;r++)for(var i=this.getBeginChunk(e[r].begin),a=this.getEndChunk(e[r].end),o=i;o<a;++o)n.indexOf(o)<0&&n.push(o);n.sort(function(e,t){return e-t}),this.requestChunks(n,t)},groupChunks:function(e){for(var t=[],n=-1,r=-1,i=0;i<e.length;++i){var a=e[i];n<0&&(n=a),r>=0&&r+1!==a&&(t.push({beginChunk:n,endChunk:r+1}),n=a),i+1===e.length&&t.push({beginChunk:n,endChunk:a+1}),r=a}return t},onProgress:function(e){var t=this.stream.numChunksLoaded*this.chunkSize+e.loaded;this.msgHandler.send(`DocProgress`,{loaded:t,total:this.length})},onReceiveData:function(e){var t=e.chunk,n=e.begin,r=n+t.byteLength,i=this.getBeginChunk(n),a=this.getEndChunk(r);this.stream.onReceiveData(n,t),this.stream.allChunksLoaded()&&this.loadedStream.resolve(this.stream);var o=[];for(t=i;t<a;++t){var s=this.requestsByChunk[t]||[];delete this.requestsByChunk[t];for(var c=0;c<s.length;++c){var l=s[c],u=this.chunksNeededByRequest[l];t in u&&delete u[t],Ji(u)&&o.push(l)}}if(!this.disableAutoFetch&&Ji(this.requestsByChunk)){var d;if(this.stream.numChunksLoaded===1){var f=this.stream.numChunks-1;this.stream.hasChunk(f)||(d=f)}else d=this.stream.nextEmptyChunk(a);Xi(d)&&this.requestChunks([d])}for(c=0;c<o.length;++c){l=o[c];var p=this.callbacksByRequest[l];delete this.callbacksByRequest[l],p&&p()}this.msgHandler.send(`DocProgress`,{loaded:this.stream.numChunksLoaded*this.chunkSize,total:this.length})},getBeginChunk:function(e){return Math.floor(e/this.chunkSize)},getEndChunk:function(e){return e%this.chunkSize===0?e/this.chunkSize:Math.floor((e-1)/this.chunkSize)+1}},e}(),Ns=function(){function e(){throw Error(`Cannot initialize BaseManagerManager`)}return e.prototype={onLoadedStream:function(){throw new Bi},ensureModel:function(e,t){return this.ensure(this.pdfModel,e,t)},ensureXRef:function(e,t){return this.ensure(this.pdfModel.xref,e,t)},ensureCatalog:function(e,t){return this.ensure(this.pdfModel.catalog,e,t)},getPage:function(e){return this.pdfModel.getPage(e)},cleanup:function(){return this.pdfModel.cleanup()},ensure:function(e,t,n){return new Bi},requestRange:function(e,t){return new Bi},requestLoadedStream:function(){return new Bi},updatePassword:function(e){this.pdfModel.xref.password=this.password=e,this.passwordChangedPromise&&this.passwordChangedPromise.resolve()},terminate:function(){return new Bi}},e}(),Ps=function(){function e(e,t){var n=new ls(e);this.pdfModel=new Ba(this,n,t),this.loadedStream=new q,this.loadedStream.resolve(n)}return e.prototype=Object.create(Ns.prototype),e.prototype.constructor=e,e.prototype.ensure=function(e,t,n){var r=new q;try{var i,a=e[t];i=typeof a==`function`?a.apply(e,n):a,r.resolve(i)}catch(e){console.log(e.stack),r.reject(e)}return r},e.prototype.requestRange=function(e,t){var n=new q;return n.resolve(),n},e.prototype.requestLoadedStream=function(){},e.prototype.onLoadedStream=function(){return this.loadedStream},e.prototype.terminate=function(){},e}(),Fs=function(){function e(e,t){this.msgHandler=t;var n={msgHandler:t,httpHeaders:e.httpHeaders,chunkedViewerLoading:e.chunkedViewerLoading,disableAutoFetch:e.disableAutoFetch,initialData:e.initialData};this.streamManager=new Ms(e.length,65536,e.url,n),this.pdfModel=new Ba(this,this.streamManager.getStream(),e.password)}return e.prototype=Object.create(Ns.prototype),e.prototype.constructor=e,e.prototype.ensure=function(e,t,n){var r=new q;return this.ensureHelper(r,e,t,n),r},e.prototype.ensureHelper=function(e,t,n,r){try{var i,a=t[n];i=typeof a==`function`?a.apply(t,r):a,e.resolve(i)}catch(i){if(!(i instanceof Vi))return console.log(i.stack),void e.reject(i);this.streamManager.requestRange(i.begin,i.end,function(){this.ensureHelper(e,t,n,r)}.bind(this))}},e.prototype.requestRange=function(e,t){var n=new q;return this.streamManager.requestRange(e,t,function(){n.resolve()}),n},e.prototype.requestLoadedStream=function(){this.streamManager.requestAllChunks()},e.prototype.onLoadedStream=function(){return this.streamManager.onLoadedStream()},e.prototype.terminate=function(){this.streamManager.networkManager.abortAllRequests()},e}(),Is={"Adobe-CNS1-0":[[],[0,14335]],"Adobe-CNS1-1":[[],[0,17407]],"Adobe-CNS1-2":[[],[0,17663]],"Adobe-CNS1-3":[[],[0,18943]],"Adobe-CNS1-4":[[],[0,19199]],"Adobe-CNS1-5":[[],[0,19199]],"Adobe-CNS1-6":[[],[0,19199]],"Adobe-CNS1-UCS2":[[],[0,65535]],"B5-H":[[0,128],[41280,65278]],"B5-V":[[0,128],[41280,65278]],"B5pc-H":[[0,128,253,255],[41280,64766]],"B5pc-V":[[0,128,253,255],[41280,64766]],"CNS-EUC-H":[[0,128],[41377,65278],[],[2392957345,2392981246,2393022881,2393046782,2393088417,2393112318]],"CNS-EUC-V":[[0,128],[41377,65278],[],[2392957345,2392981246,2393022881,2393046782,2393088417,2393112318]],"CNS1-H":[[],[8481,32382]],"CNS1-V":[[],[8481,32382]],"CNS2-H":[[],[8481,32382]],"CNS2-V":[[],[8481,32382]],"ETen-B5-H":[[0,128],[41280,65278]],"ETen-B5-V":[[0,128],[41280,65278]],"ETenms-B5-H":[[0,128],[41280,65278]],"ETenms-B5-V":[[0,128],[41280,65278]],"ETHK-B5-H":[[0,128],[34624,65278]],"ETHK-B5-V":[[0,128],[34624,65278]],"HKdla-B5-H":[[0,128],[41280,65278]],"HKdla-B5-V":[[0,128],[41280,65278]],"HKdlb-B5-H":[[0,128],[36416,65278]],"HKdlb-B5-V":[[0,128],[36416,65278]],"HKgccs-B5-H":[[0,128],[35392,65278]],"HKgccs-B5-V":[[0,128],[35392,65278]],"HKm314-B5-H":[[0,128],[41280,65278]],"HKm314-B5-V":[[0,128],[41280,65278]],"HKm471-B5-H":[[0,128],[41280,65278]],"HKm471-B5-V":[[0,128],[41280,65278]],"HKscs-B5-H":[[0,128],[34624,65278]],"HKscs-B5-V":[[0,128],[34624,65278]],"UniCNS-UCS2-H":[[],[0,55295,57344,65535]],"UniCNS-UCS2-V":[[],[0,55295,57344,65535]],"UniCNS-UTF16-H":[[],[0,55295,57344,65535],[],[3623934976,3690979327]],"UniCNS-UTF16-V":[[],[0,55295,57344,65535],[],[3623934976,3690979327]],"Adobe-GB1-0":[[],[0,7935]],"Adobe-GB1-1":[[],[0,9983]],"Adobe-GB1-2":[[],[0,22271]],"Adobe-GB1-3":[[],[0,22527]],"Adobe-GB1-4":[[],[0,29183]],"Adobe-GB1-5":[[],[0,30463]],"Adobe-GB1-UCS2":[[],[0,65535]],"GB-EUC-H":[[0,128],[41377,65278]],"GB-EUC-V":[[0,128],[41377,65278]],"GB-H":[[],[8481,32382]],"GB-V":[[],[8481,32382]],"GBK-EUC-H":[[0,128],[33088,65278]],"GBK-EUC-V":[[0,128],[33088,65278]],"GBK2K-H":[[0,127],[33088,65278],[],[2167439664,4265213497]],"GBK2K-V":[[0,127],[33088,65278],[],[2167439664,4265213497]],"GBKp-EUC-H":[[0,128],[33088,65278]],"GBKp-EUC-V":[[0,128],[33088,65278]],"GBpc-EUC-H":[[0,128,253,255],[41377,64766]],"GBpc-EUC-V":[[0,128,253,255],[41377,64766]],"GBT-EUC-H":[[0,128],[41377,65278]],"GBT-EUC-V":[[0,128],[41377,65278]],"GBT-H":[[],[8481,32382]],"GBT-V":[[],[8481,32382]],"GBTpc-EUC-H":[[0,128,253,255],[41377,64766]],"GBTpc-EUC-V":[[0,128,253,255],[41377,64766]],"UniGB-UCS2-H":[[],[0,55295,57344,65535]],"UniGB-UCS2-V":[[],[0,55295,57344,65535]],"UniGB-UTF16-H":[[],[0,55295,57344,65535],[],[3623934976,3690979327]],"UniGB-UTF16-V":[[],[0,55295,57344,65535],[],[3623934976,3690979327]],"78-EUC-H":[[0,128],[36512,36575,41377,65278]],"78-EUC-V":[[0,128],[36512,36575,41377,65278]],"78-H":[[],[8481,32382]],"78-RKSJ-H":[[0,128,160,223],[33088,40956,57408,64764]],"78-RKSJ-V":[[0,128,160,223],[33088,40956,57408,64764]],"78-V":[[],[8481,32382]],"78ms-RKSJ-H":[[0,128,160,223],[33088,40956,57408,64764]],"78ms-RKSJ-V":[[0,128,160,223],[33088,40956,57408,64764]],"83pv-RKSJ-H":[[0,128,160,223,253,255],[33088,40956,57408,64764]],"90ms-RKSJ-H":[[0,128,160,223],[33088,40956,57408,64764]],"90ms-RKSJ-V":[[0,128,160,223],[33088,40956,57408,64764]],"90msp-RKSJ-H":[[0,128,160,223],[33088,40956,57408,64764]],"90msp-RKSJ-V":[[0,128,160,223],[33088,40956,57408,64764]],"90pv-RKSJ-H":[[0,128,160,223,253,255],[33088,40956,57408,64764]],"90pv-RKSJ-V":[[0,128,160,223,253,255],[33088,40956,57408,64764]],"Add-H":[[],[8481,32382]],"Add-RKSJ-H":[[0,128,160,223],[33088,40956,57408,64764]],"Add-RKSJ-V":[[0,128,160,223],[33088,40956,57408,64764]],"Add-V":[[],[8481,32382]],"Adobe-Japan1-0":[[],[0,8447]],"Adobe-Japan1-1":[[],[0,8447]],"Adobe-Japan1-2":[[],[0,8959]],"Adobe-Japan1-3":[[],[0,9471]],"Adobe-Japan1-4":[[],[0,15615]],"Adobe-Japan1-5":[[],[0,20479]],"Adobe-Japan1-6":[[],[0,23295]],"Adobe-Japan1-UCS2":[[],[0,65535]],"Adobe-Japan2-0":[[],[0,6143]],"EUC-H":[[0,128],[36512,36575,41377,65278]],"EUC-V":[[0,128],[36512,36575,41377,65278]],"Ext-H":[[],[8481,32382]],"Ext-RKSJ-H":[[0,128,160,223],[33088,40956,57408,64764]],"Ext-RKSJ-V":[[0,128,160,223],[33088,40956,57408,64764]],"Ext-V":[[],[8481,32382]],H:[[],[8481,32382]],Hankaku:[[0,255],[]],Hiragana:[[0,255],[]],"Hojo-EUC-H":[[],[],[9413025,9436926],[]],"Hojo-EUC-V":[[],[],[9413025,9436926],[]],"Hojo-H":[[],[8481,32382]],"Hojo-V":[[],[8481,32382]],Katakana:[[0,255],[]],"NWP-H":[[],[8481,32382]],"NWP-V":[[],[8481,32382]],"RKSJ-H":[[0,128,160,223],[33088,40956,57408,64764]],"RKSJ-V":[[0,128,160,223],[33088,40956,57408,64764]],Roman:[[0,255],[]],"UniHojo-UCS2-H":[[],[0,55295,57344,65535]],"UniHojo-UCS2-V":[[],[0,55295,57344,65535]],"UniHojo-UTF16-H":[[],[0,55295,57344,65535],[],[3623934976,3690979327]],"UniHojo-UTF16-V":[[],[0,55295,57344,65535],[],[3623934976,3690979327]],"UniJIS-UCS2-H":[[],[0,55295,57344,65535]],"UniJIS-UCS2-HW-H":[[],[0,55295,57344,65535]],"UniJIS-UCS2-HW-V":[[],[0,55295,57344,65535]],"UniJIS-UCS2-V":[[],[0,55295,57344,65535]],"UniJIS-UTF16-H":[[],[0,55295,57344,65535],[],[3623934976,3690979327]],"UniJIS-UTF16-V":[[],[0,55295,57344,65535],[],[3623934976,3690979327]],"UniJISPro-UCS2-HW-V":[[],[0,55295,57344,65535]],"UniJISPro-UCS2-V":[[],[0,55295,57344,65535]],V:[[],[8481,32382]],"WP-Symbol":[[0,255],[]],"Adobe-Korea1-0":[[],[0,9471]],"Adobe-Korea1-1":[[],[0,18175]],"Adobe-Korea1-2":[[],[0,18431]],"Adobe-Korea1-UCS2":[[],[0,65535]],"KSC-EUC-H":[[0,128],[41377,65278]],"KSC-EUC-V":[[0,128],[41377,65278]],"KSC-H":[[],[8481,32382]],"KSC-Johab-H":[[0,128],[33857,54270,55345,57086,57393,63998]],"KSC-Johab-V":[[0,128],[33857,54270,55345,57086,57393,63998]],"KSC-V":[[],[8481,32382]],"KSCms-UHC-H":[[0,128],[33089,65278]],"KSCms-UHC-HW-H":[[0,128],[33089,65278]],"KSCms-UHC-HW-V":[[0,128],[33089,65278]],"KSCms-UHC-V":[[0,128],[33089,65278]],"KSCpc-EUC-H":[[0,132,254,255],[41281,65022]],"KSCpc-EUC-V":[[0,132,254,255],[41281,65022]],"UniKS-UCS2-H":[[],[0,55295,57344,65535]],"UniKS-UCS2-V":[[],[0,55295,57344,65535]],"UniKS-UTF16-H":[[],[0,55295,57344,65535],[],[3623934976,3690979327]],"UniKS-UTF16-V":[[],[0,55295,57344,65535],[],[3623934976,3690979327]]},Ls=function(){function e(){this.codespaceRanges=[[],[],[],[]],this.map=[],this.vertical=!1}return e.prototype={addCodespaceRange:function(e,t,n){this.codespaceRanges[e-1].push(t,n)},mapRange:function(e,t,n){for(var r=n.length-1;e<=t;)this.map[e]=n,n=n.substring(0,r)+String.fromCharCode(n.charCodeAt(r)+1),++e},mapRangeToArray:function(e,t,n){for(var r=0;e<=t;)this.map[e]=n[r++],++e},mapOne:function(e,t){this.map[e]=t},lookup:function(e){return this.map[e]},readCharCode:function(e,t){for(var n=0,r=this.codespaceRanges,i=this.codespaceRanges.length,a=0;a<i;a++){n=(n<<8|e.charCodeAt(t+a))>>>0;for(var o=r[a],s=0,c=o.length;s<c;){var l=o[s++],u=o[s++];if(n>=l&&n<=u)return[n,a+1]}}return[0,1]}},e}(),Rs=function(){function e(e,t){Ls.call(this),this.vertical=e,this.addCodespaceRange(t,0,65535),this.mapRange(0,65535,`\0`)}return K.inherit(e,Ls,{}),e}(),zs=function(){function e(e){for(var t=0,n=0;n<e.length;n++)t=t<<8|e.charCodeAt(n);return t>>>0}function t(e){Qi(e)||G(`Malformed CMap: expected string.`)}function n(e){Xi(e)||G(`Malformed CMap: expected int.`)}function r(n,r){for(;;){var i=r.getObj();if(as(i))break;if(ea(i,`endbfchar`))return;t(i);var a=e(i);t(i=r.getObj());var o=i;n.mapOne(a,o)}}function i(n,r){for(;;){var i=r.getObj();if(as(i))break;if(ea(i,`endbfrange`))return;t(i);var a=e(i);t(i=r.getObj());var o=e(i);if(Xi(i=r.getObj())||Qi(i)){var s=Xi(i)?String.fromCharCode(i):i;n.mapRange(a,o,s)}else{if(!ea(i,`[`))break;i=r.getObj();for(var c=[];!ea(i,`]`)&&!as(i);)c.push(i),i=r.getObj();n.mapRangeToArray(a,o,c)}}G(`Invalid bf range.`)}function a(r,i){for(;;){var a=i.getObj();if(as(a))break;if(ea(a,`endcidchar`))return;t(a);var o=e(a);n(a=i.getObj());var s=String.fromCharCode(a);r.mapOne(o,s)}}function o(r,i){for(;;){var a=i.getObj();if(as(a))break;if(ea(a,`endcidrange`))return;t(a);var o=e(a);t(a=i.getObj());var s=e(a);n(a=i.getObj());var c=String.fromCharCode(a);r.mapRange(o,s,c)}}function s(t,n){for(;;){var r=n.getObj();if(as(r))break;if(ea(r,`endcodespacerange`))return;if(!Qi(r))break;var i=e(r);if(!Qi(r=n.getObj()))break;var a=e(r);t.addCodespaceRange(r.length,i,a)}G(`Invalid codespace range.`)}return{create:function(e){if($i(e))switch(e.name){case`Identity-H`:return new Rs(!1,2);case`Identity-V`:return new Rs(!0,2);default:return e.name in Is?((t=new Ls).codespaceRanges=Is[e.name],t):null}else if(ra(e)){var t=new Ls,n=new ss(e);try{(function(e,t){e:for(;;){var n=t.getObj();if(as(n))break;if(ea(n))switch(n.cmd){case`endcMap`:break e;case`usecMap`:break;case`begincodespacerange`:s(e,t);break;case`beginbfchar`:r(e,t);break;case`begincidchar`:a(e,t);break;case`beginbfrange`:i(e,t);break;case`begincidrange`:o(e,t)}}})(t,n)}catch(e){W(`Invalid CMap data. `+e)}return t}G(`Encoding required.`)}}}(),Bs={"Adobe-Japan1":[[32,160],{f:12,c:33},[45,8209],{f:46,c:46},165,{f:2,c:93},[95,818],[96,768],{f:27,c:97},166,125,[732,771],[700,8217],92,[699,8216],124,[126,8764],{f:3,c:161},8260,402,0,164,8220,171,{f:2,c:8249},{f:2,c:64257},[8210,8211],0,0,[183,8729],0,8226,8218,8222,8221,187,0,0,191,{f:2,c:769},[175,772],{f:3,c:774},778,[184,807],779,808,780,[822,8212],198,170,321,216,338,186,230,305,322,248,339,223,173,169,172,174,0,0,{f:2,c:178},181,185,{f:3,c:188},{f:6,c:192},{f:16,c:199},0,{f:6,c:217},{f:6,c:224},{f:16,c:231},0,{f:7,c:249},352,376,381,[773,8254],353,8482,382,0,8194,{f:59,c:33},165,{f:31,c:93},65512,{f:2,c:125},0,{f:63,c:65377},{s:243},[8195,12288],{f:2,c:12289},65292,65294,12539,{f:2,c:65306},65311,65281,{f:2,c:12443},180,65344,168,65342,65507,65343,{f:2,c:12541},{f:2,c:12445},12291,20189,{f:3,c:12293},12540,8213,8208,65295,65340,[12316,65374],8214,65372,8230,8229,{s:4},{f:2,c:65288},{f:2,c:12308},65339,65341,65371,65373,{f:10,c:12296},65291,[8722,65293],177,215,247,65309,8800,65308,65310,{f:2,c:8806},8734,8756,9794,9792,176,{f:2,c:8242},8451,65509,65284,{f:2,c:65504},65285,65283,65286,65290,65312,167,9734,9733,9675,9679,9678,9671,9670,9633,9632,9651,9650,9661,9660,8251,12306,8594,{f:2,c:8592},8595,12307,8712,8715,{f:2,c:8838},{f:2,c:8834},8746,8745,{f:2,c:8743},65506,8658,8660,8704,8707,8736,8869,8978,8706,8711,8801,8786,{f:2,c:8810},8730,8765,8733,8757,{f:2,c:8747},8491,8240,9839,9837,9834,{f:2,c:8224},182,9711,{f:10,c:65296},{f:26,c:65313},{f:26,c:65345},{f:83,c:12353},{f:86,c:12449},{f:17,c:913},{f:7,c:931},{f:17,c:945},{f:7,c:963},{f:6,c:1040},1025,{f:32,c:1046},1105,{f:26,c:1078},20124,21782,23043,38463,21696,24859,25384,23030,36898,33909,33564,31312,24746,25569,28197,26093,33894,33446,39925,26771,22311,26017,25201,23451,22992,34427,39156,32098,32190,39822,25110,31903,34999,23433,24245,25353,26263,26696,38343,38797,26447,20197,20234,20301,20381,20553,22258,22839,22996,23041,23561,24799,24847,24944,26131,26885,28858,30031,30064,31227,32173,32239,32963,33806,[12176,34915],35586,36949,36986,21307,20117,20133,22495,32946,37057,30959,[12032,19968],22769,28322,36920,31282,33576,33419,39983,20801,21360,21693,21729,22240,23035,24341,39154,28139,32996,34093,38498,38512,38560,38907,21515,21491,23431,28879,[12155,32701],36802,[12204,38632],21359,40284,31418,19985,30867,[12165,33276],28198,22040,21764,27421,34074,39995,23013,21417,28006,[12128,29916],38287,22082,20113,36939,38642,33615,39180,21473,21942,23344,24433,26144,26355,26628,27704,27891,27945,29787,30408,31310,38964,33521,34907,35424,37613,28082,30123,30410,39365,24742,35585,36234,38322,27022,21421,20870,22290,22576,22852,23476,24310,24616,25513,25588,27839,28436,28814,28948,29017,29141,29503,32257,33398,33489,34199,36960,37467,40219,22633,26044,27738,29989,20985,22830,22885,24448,24540,25276,26106,27178,27431,27572,29579,32705,35158,40236,40206,[12009,40644],23713,27798,33659,20740,23627,25014,33222,26742,29281,[12036,20057],20474,21368,24681,28201,31311,[12211,38899],19979,21270,20206,20309,20285,20385,20339,21152,21487,22025,22799,23233,23478,23521,31185,26247,26524,26550,27468,27827,[12117,28779],29634,31117,[12146,31166],31292,31623,33457,33499,33540,33655,33775,33747,34662,35506,22057,36008,36838,36942,38686,34442,20420,23784,25105,[12123,29273],30011,33253,33469,34558,36032,38597,39187,39381,20171,20250,35299,22238,22602,22730,24315,24555,24618,24724,24674,25040,25106,25296,25913,39745,26214,26800,28023,28784,30028,30342,32117,33445,34809,38283,38542,[12185,35997],20977,21182,22806,21683,23475,23830,24936,27010,28079,30861,33995,34903,35442,37799,39608,28012,39336,34521,22435,26623,34510,37390,21123,22151,21508,24275,25313,25785,26684,26680,27579,29554,30906,31339,35226,[12179,35282],36203,36611,37101,38307,38548,[12208,38761],23398,23731,27005,{f:2,c:38989},25499,31520,27179,27263,26806,39949,28511,21106,21917,24688,25324,27963,28167,28369,33883,35088,36676,19988,39993,21494,26907,27194,38788,26666,20828,31427,33970,37340,37772,22107,40232,26658,33541,33841,31909,21e3,33477,[12129,29926],20094,20355,20896,23506,21002,21208,21223,24059,21914,22570,23014,23436,23448,23515,[12082,24178],24185,24739,24863,24931,25022,25563,25954,26577,26707,26874,27454,27475,27735,28450,28567,28485,29872,[12130,29976],30435,30475,31487,31649,31777,32233,[12152,32566],32752,32925,33382,33694,35251,35532,36011,36996,37969,38291,38289,38306,38501,38867,39208,33304,20024,21547,23736,24012,29609,30284,30524,23721,32747,36107,38593,38929,38996,39e3,20225,20238,21361,21916,22120,22522,22855,23305,23492,23696,24076,24190,24524,25582,26426,26071,26082,26399,26827,26820,27231,24112,27589,27671,27773,30079,31048,23395,31232,32e3,24509,35215,35352,36020,36215,36556,36637,39138,39438,[12004,12225,39740],[12018,20096],20605,20736,22931,23452,25135,25216,25836,27450,29344,30097,31047,32681,34811,35516,35696,25516,33738,38816,21513,21507,21931,26708,27224,35440,30759,26485,[12233,40653],21364,23458,33050,34384,36870,19992,20037,20167,20241,21450,21560,23470,[12088,24339],24613,25937,26429,27714,27762,27875,28792,29699,31350,31406,31496,32026,31998,32102,26087,[12124,29275],21435,23621,24040,25298,25312,25369,28192,34394,35377,36317,37624,28417,31142,[12226,39770],20136,{f:2,c:20139},20379,20384,20689,20807,31478,20849,20982,21332,21281,21375,21483,21932,22659,23777,24375,24394,24623,24656,24685,25375,25945,27211,27841,29378,29421,30703,33016,33029,33288,34126,37111,37857,38911,39255,39514,20208,20957,23597,26241,26989,23616,26354,26997,[12127,29577],26704,31873,20677,21220,22343,[12081,24062],37670,[12100,26020],27427,27453,29748,31105,31165,31563,32202,33465,33740,34943,35167,35641,36817,[12198,37329],21535,37504,20061,20534,21477,21306,29399,29590,30697,33510,36527,39366,39368,39378,20855,24858,34398,21936,31354,20598,23507,36935,38533,20018,27355,37351,23633,23624,25496,31391,27795,38772,36705,31402,29066,38536,31874,26647,32368,26705,37740,21234,21531,34219,35347,32676,36557,37089,21350,34952,31041,20418,20670,21009,20804,21843,22317,29674,22411,22865,24418,24452,24693,24950,24935,25001,25522,25658,25964,26223,26690,28179,30054,31293,31995,32076,32153,32331,32619,33550,33610,34509,35336,35427,35686,36605,38938,40335,33464,36814,39912,21127,25119,25731,28608,38553,26689,20625,[12107,27424],27770,28500,[12147,31348],32080,[12174,34880],35363,[12105,26376],20214,20537,20518,20581,20860,21048,21091,21927,22287,22533,23244,24314,25010,25080,25331,25458,26908,27177,29309,[12125,29356],29486,30740,30831,32121,30476,32937,[12178,35211],35609,36066,36562,36963,37749,38522,38997,39443,40568,20803,21407,21427,24187,24358,28187,28304,[12126,29572],29694,32067,33335,[12180,35328],35578,38480,20046,20491,21476,21628,22266,22993,23396,[12080,24049],24235,24359,[12094,25144],25925,26543,28246,29392,31946,34996,32929,32993,33776,[11969,34382],35463,36328,37431,38599,39015,[12238,40723],20116,20114,20237,21320,21577,21566,23087,24460,24481,24735,26791,27278,29786,30849,35486,35492,35703,37264,20062,39881,20132,20348,20399,20505,20502,20809,20844,21151,21177,21246,21402,[12061,21475],21521,21518,21897,22353,22434,22909,23380,23389,23439,[12079,24037],24039,24055,24184,24195,24218,24247,24344,24658,24908,25239,25304,25511,25915,26114,26179,26356,26477,26657,26775,27083,27743,27946,28009,28207,28317,30002,30343,30828,31295,31968,32005,32024,32094,32177,32789,32771,32943,32945,33108,33167,33322,33618,[12175,34892],34913,35611,36002,36092,37066,37237,37489,30783,37628,38308,38477,38917,[12217,39321],[12220,39640],40251,21083,21163,21495,21512,22741,25335,28640,35946,36703,40633,20811,21051,21578,22269,31296,37239,40288,[12234,40658],29508,28425,33136,29969,24573,24794,[12219,39592],29403,36796,27492,38915,20170,22256,22372,22718,23130,24680,25031,26127,26118,26681,26801,28151,30165,32058,[12169,33390],39746,20123,20304,21449,21766,23919,24038,24046,26619,27801,29811,30722,35408,37782,35039,22352,24231,25387,20661,20652,20877,26368,21705,22622,22971,23472,24425,25165,25505,26685,27507,28168,28797,37319,29312,30741,30758,31085,25998,32048,33756,35009,36617,38555,21092,22312,26448,32618,36001,20916,22338,38442,22586,27018,32948,21682,23822,22524,30869,40442,20316,21066,21643,25662,26152,26388,26613,31364,31574,32034,37679,26716,39853,31545,21273,20874,21047,23519,25334,25774,25830,26413,27578,34217,38609,30352,39894,25420,37638,39851,[12139,30399],26194,19977,20632,21442,[12077,23665],24808,25746,25955,26719,29158,29642,29987,31639,32386,34453,35715,36059,37240,39184,26028,26283,27531,20181,20180,20282,20351,21050,21496,21490,21987,22235,[12064,22763],22987,22985,23039,[12070,23376],23629,24066,24107,24535,24605,25351,[12096,25903],23388,26031,26045,26088,26525,[12108,27490],27515,[12114,27663],29509,31049,31169,[12151,31992],32025,32043,32930,33026,[12164,33267],35222,35422,35433,35430,35468,35566,36039,36060,38604,39164,[12013,27503],20107,20284,20365,20816,23383,23546,24904,25345,26178,27425,28363,27835,29246,29885,30164,30913,[12144,31034],[12157,32780],[12159,32819],[12163,33258],33940,36766,27728,[12229,40575],24335,35672,40235,31482,36600,23437,38635,19971,21489,22519,22833,23241,23460,24713,28287,28422,30142,36074,23455,34048,31712,20594,26612,33437,23649,34122,32286,33294,20889,23556,25448,36198,26012,29038,31038,32023,32773,35613,[12190,36554],36974,34503,37034,20511,21242,23610,26451,28796,29237,37196,37320,37675,33509,23490,24369,24825,20027,21462,23432,[12095,25163],26417,27530,29417,29664,31278,33131,36259,37202,[12216,39318],20754,21463,21610,23551,25480,27193,32172,38656,22234,21454,21608,23447,23601,24030,20462,24833,25342,27954,31168,31179,32066,32333,32722,33261,[12168,33311],33936,34886,35186,35728,36468,36655,36913,37195,37228,38598,37276,20160,20303,20805,[12055,21313],24467,25102,26580,27713,28171,29539,32294,37325,37507,21460,22809,23487,28113,31069,32302,31899,22654,29087,20986,34899,36848,20426,23803,26149,30636,31459,33308,39423,20934,24490,26092,26991,27529,28147,28310,28516,30462,32020,24033,36981,37255,38918,20966,21021,25152,26257,26329,28186,24246,32210,32626,26360,34223,34295,35576,21161,21465,[12069,22899],24207,24464,24661,37604,38500,20663,20767,21213,21280,21319,21484,21736,21830,21809,22039,22888,22974,23100,23477,23558,[12073,23567],23569,23578,24196,24202,24288,24432,25215,25220,25307,25484,25463,26119,26124,26157,26230,26494,26786,27167,27189,27836,28040,28169,28248,28988,28966,29031,30151,30465,30813,30977,31077,31216,31456,31505,31911,32057,32918,33750,33931,34121,34909,35059,35359,35388,35412,35443,35937,36062,37284,37478,37758,37912,38556,38808,19978,19976,19998,20055,20887,21104,22478,22580,22732,23330,24120,24773,25854,26465,26454,27972,29366,30067,31331,33976,35698,37304,37664,22065,22516,39166,25325,26893,27542,29165,32340,32887,[12170,33394],35302,[12215,39135],34645,36785,23611,20280,20449,20405,21767,23072,23517,23529,[12092,24515],24910,25391,26032,26187,26862,27035,28024,28145,30003,30137,30495,31070,31206,32051,[12162,33251],33455,34218,35242,35386,[12189,36523],[12191,36763],36914,37341,38663,[12040,20154],20161,20995,22645,22764,23563,29978,23613,33102,35338,36805,38499,38765,31525,35535,38920,37218,22259,21416,36887,21561,22402,24101,25512,[12116,27700],28810,30561,31883,32736,34928,36930,37204,37648,37656,38543,29790,39620,23815,23913,25968,26530,36264,38619,25454,26441,26905,33733,38935,38592,35070,28548,25722,[12072,23544],19990,28716,30045,26159,20932,21046,21218,22995,24449,24615,25104,25919,25972,26143,26228,26866,26646,27491,28165,29298,[12131,29983],30427,31934,32854,22768,35069,[11972,35199],35488,35475,35531,36893,37266,[11992,38738],38745,[12011,25993],31246,33030,38587,24109,24796,25114,26021,26132,26512,[12143,30707],31309,31821,32318,33034,36012,[12186,36196],36321,36447,30889,20999,25305,25509,25666,25240,35373,31363,31680,35500,38634,32118,[12166,33292],34633,20185,20808,21315,21344,23459,23554,23574,24029,25126,25159,25776,26643,26676,27849,27973,27927,26579,28508,29006,29053,26059,31359,31661,32218,32330,32680,33146,[12167,33307],33337,34214,35438,36046,36341,36984,36983,37549,37521,38275,39854,21069,21892,28472,28982,20840,31109,32341,33203,31950,22092,22609,23720,25514,26366,26365,26970,29401,30095,30094,30990,31062,31199,31895,32032,32068,34311,35380,38459,36961,[12239,40736],20711,21109,21452,21474,20489,21930,22766,22863,29245,23435,23652,21277,24803,24819,25436,25475,25407,25531,25805,26089,26361,24035,27085,27133,28437,29157,20105,30185,30456,31379,31967,32207,32156,32865,33609,33624,33900,33980,34299,35013,[12187,36208],36865,36973,37783,38684,39442,20687,22679,24974,33235,34101,36104,36896,20419,20596,21063,21363,24687,25417,26463,28204,[12188,36275],36895,20439,23646,36042,26063,32154,21330,34966,20854,25539,23384,23403,23562,25613,26449,36956,20182,22810,22826,27760,35409,21822,22549,22949,24816,25171,26561,33333,26965,38464,39364,39464,20307,22534,23550,32784,23729,24111,24453,24608,24907,25140,26367,27888,28382,32974,33151,33492,34955,36024,36864,36910,38538,40667,39899,20195,21488,[12068,22823],31532,37261,38988,40441,28381,28711,21331,21828,23429,25176,25246,25299,27810,28655,29730,35351,37944,28609,35582,33592,20967,34552,21482,21481,20294,36948,[12192,36784],22890,33073,24061,31466,36799,26842,[12181,35895],29432,40008,27197,35504,20025,21336,22022,22374,25285,25506,26086,27470,28129,28251,28845,30701,31471,31658,32187,32829,32966,34507,35477,37723,22243,22727,24382,26029,26262,27264,27573,30007,35527,20516,30693,22320,24347,24677,26234,27744,30196,31258,32622,33268,34584,36933,39347,31689,30044,[12149,31481],31569,33988,36880,31209,31378,33590,23265,30528,20013,20210,23449,24544,25277,26172,26609,27880,[12173,34411],34935,35387,37198,37619,39376,27159,28710,29482,33511,33879,36015,19969,20806,20939,21899,23541,24086,24115,24193,24340,24373,24427,24500,25074,25361,26274,26397,28526,29266,30010,30522,32884,33081,33144,34678,35519,35548,36229,36339,37530,[11985,12199,38263],38914,[12227,40165],21189,25431,30452,26389,27784,29645,36035,37806,38515,27941,22684,26894,27084,36861,37786,30171,36890,22618,26626,25524,27131,20291,28460,26584,36795,34086,32180,37716,26943,28528,22378,22775,23340,32044,[12118,29226],21514,37347,40372,20141,20302,20572,20597,21059,35998,21576,22564,23450,24093,24213,24237,24311,24351,24716,25269,25402,25552,26799,27712,30855,31118,31243,32224,33351,35330,35558,36420,36883,37048,37165,37336,[12237,40718],27877,25688,25826,25973,28404,30340,31515,36969,37841,28346,21746,24505,25764,36685,36845,37444,20856,22635,22825,23637,24215,28155,32399,29980,36028,36578,39003,28857,20253,27583,28593,[12133,3e4],38651,20814,21520,22581,22615,22956,23648,24466,[12099,26007],26460,28193,30331,33759,36077,36884,37117,37709,30757,30778,21162,24230,[12063,22303],22900,24594,20498,20826,20908,20941,[12049,20992],21776,22612,22616,22871,23445,23798,23947,24764,25237,25645,26481,26691,26812,26847,30423,28120,28271,28059,28783,29128,24403,30168,31095,31561,31572,31570,31958,32113,21040,33891,34153,34276,35342,35588,[12182,35910],36367,36867,36879,37913,38518,38957,39472,38360,20685,21205,21516,22530,23566,24999,25758,27934,30643,31461,33012,33796,36947,37509,23776,40199,21311,24471,24499,28060,29305,30563,31167,31716,27602,29420,35501,26627,27233,20984,31361,26932,23626,40182,33515,23493,[12195,37193],28702,22136,23663,24775,25958,27788,35930,36929,38931,21585,26311,37389,22856,37027,20869,20045,20970,34201,35598,28760,25466,37707,26978,39348,32260,30071,21335,26976,36575,38627,27741,[12038,20108],23612,24336,36841,21250,36049,[12161,32905],34425,24319,[12103,26085],20083,[12042,20837],22914,23615,38894,20219,22922,24525,35469,28641,31152,31074,23527,33905,29483,29105,24180,24565,25467,25754,29123,31896,20035,24316,20043,22492,22178,24745,28611,32013,33021,33075,33215,36786,35223,34468,24052,25226,25773,35207,26487,27874,27966,29750,30772,23110,32629,33453,[12218,39340],20467,24259,25309,25490,25943,26479,30403,29260,32972,32954,36649,37197,20493,22521,23186,26757,26995,29028,29437,36023,22770,36064,38506,36889,34687,31204,30695,33833,20271,21093,21338,25293,26575,27850,[12137,30333],31636,31893,33334,34180,36843,26333,28448,29190,32283,33707,39361,[12008,40614],20989,31665,30834,31672,32903,31560,27368,24161,32908,30033,30048,[12043,20843],37474,28300,30330,37271,39658,20240,32624,25244,31567,38309,40169,22138,22617,34532,38588,20276,21028,21322,21453,21467,24070,25644,26001,26495,27710,27726,29256,29359,29677,30036,32321,33324,34281,36009,31684,[12196,37318],29033,38930,39151,25405,26217,30058,30436,30928,34115,34542,21290,21329,21542,22915,24199,24444,24754,25161,25209,25259,26e3,[12112,27604],27852,30130,[12138,30382],30865,31192,32203,32631,32933,34987,35513,36027,36991,[12206,38750],[12214,39131],27147,31800,20633,23614,24494,26503,27608,29749,30473,32654,[12240,40763],26570,31255,21305,[12134,30091],39661,24422,33181,33777,32920,24380,24517,30050,31558,36924,26727,23019,23195,32016,30334,35628,20469,24426,27161,27703,28418,29922,31080,34920,35413,35961,24287,25551,30149,31186,33495,37672,37618,33948,34541,39981,21697,24428,25996,27996,28693,36007,36051,38971,25935,29942,19981,20184,22496,22827,23142,23500,20904,24067,24220,24598,25206,25975,26023,26222,28014,[12119,29238],31526,33104,33178,33433,35676,36e3,36070,36212,[12201,38428],38468,20398,25771,27494,33310,33889,34154,37096,23553,26963,[12213,39080],33914,34135,20239,21103,24489,24133,26381,31119,33145,35079,35206,28149,24343,25173,27832,20175,29289,39826,20998,21563,22132,22707,24996,25198,28954,22894,31881,31966,32027,38640,[12098,25991],32862,19993,20341,20853,22592,24163,24179,24330,26564,20006,34109,38281,38491,[12150,31859],[12212,38913],20731,22721,30294,30887,21029,30629,34065,31622,20559,22793,[12122,29255],31687,32232,36794,36820,36941,20415,21193,23081,24321,38829,20445,33303,37610,22275,25429,27497,29995,35036,36628,31298,21215,22675,24917,25098,26286,[11935,27597],31807,33769,20515,20472,21253,21574,22577,22857,23453,23792,23791,23849,24214,25265,25447,25918,[12101,26041],26379,27861,27873,28921,30770,32299,32990,33459,33804,34028,34562,35090,35370,35914,37030,37586,39165,40179,40300,20047,20129,20621,21078,22346,22952,24125,{f:2,c:24536},25151,26292,26395,26576,26834,20882,32033,32938,33192,35584,35980,36031,37502,38450,21536,38956,21271,20693,[12056,21340],22696,25778,26420,29287,30566,31302,37350,21187,27809,27526,22528,24140,22868,26412,32763,20961,30406,25705,30952,39764,[12231,40635],22475,22969,26151,26522,27598,21737,27097,24149,33180,26517,39850,26622,40018,26717,20134,20451,[12060,21448],25273,26411,27819,36804,20397,32365,40639,19975,24930,28288,28459,34067,21619,26410,39749,[11922,24051],31637,23724,23494,34588,28234,34001,31252,33032,22937,31885,[11936,27665],30496,21209,22818,28961,29279,[12141,30683],38695,40289,26891,23167,23064,20901,21517,21629,26126,30431,36855,37528,40180,23018,29277,28357,20813,26825,32191,32236,[12207,38754],40634,25720,27169,33538,22916,23391,[12113,27611],29467,30450,32178,32791,33945,20786,[12106,26408],40665,[12140,30446],26466,21247,39173,23588,25147,31870,36016,21839,24758,32011,[12200,38272],21249,20063,20918,22812,29242,32822,37326,24357,[12142,30690],21380,24441,32004,34220,35379,36493,38742,26611,34222,37971,24841,24840,27833,30290,35565,36664,21807,20305,20778,21191,21451,23461,24189,24736,24962,25558,26377,26586,28263,28044,{f:2,c:29494},30001,31056,35029,35480,36938,[12194,37009],37109,38596,34701,[12067,22805],20104,20313,19982,35465,36671,38928,20653,24188,22934,23481,24248,25562,25594,25793,26332,26954,27096,27915,28342,29076,[12132,29992],31407,[12154,32650],32768,33865,33993,35201,35617,36362,36965,38525,39178,24958,25233,27442,27779,28020,32716,32764,28096,32645,34746,35064,26469,33713,38972,38647,27931,32097,33853,37226,20081,21365,23888,27396,28651,34253,34349,35239,21033,21519,23653,26446,26792,29702,29827,30178,35023,35041,[12197,37324],38626,38520,24459,29575,[12148,31435],33870,25504,30053,21129,27969,28316,29705,30041,30827,31890,38534,[12015,31452],[12243,40845],20406,24942,26053,34396,20102,20142,20698,20001,20940,23534,26009,26753,28092,29471,30274,30637,31260,31975,33391,35538,36988,37327,38517,38936,[12050,21147],32209,20523,21400,26519,28107,29136,29747,33256,36650,38563,40023,40607,29792,22593,28057,32047,39006,20196,20278,20363,20919,21169,23994,24604,29618,31036,33491,37428,38583,38646,38666,40599,40802,26278,27508,21015,21155,28872,35010,24265,24651,24976,28451,29001,31806,32244,32879,34030,36899,37676,21570,39791,27347,28809,36034,36335,38706,21172,23105,24266,24324,26391,27004,27028,28010,28431,29282,29436,31725,[12156,32769],32894,34635,37070,20845,40595,31108,32907,37682,35542,20525,21644,35441,27498,36036,33031,24785,26528,40434,20121,20120,39952,35435,34241,34152,26880,28286,30871,33109,24332,19984,19989,20010,20017,[12034,20022],20028,[12035,20031],20034,20054,20056,20098,[12037,20101],35947,20106,33298,24333,20110,{f:2,c:20126},[12039,20128],20130,20144,20147,20150,20174,20173,20164,20166,20162,20183,20190,20205,20191,20215,20233,20314,20272,20315,20317,20311,20295,20342,20360,20367,20376,20347,20329,20336,20369,20335,20358,20374,20760,20436,20447,20430,20440,20443,20433,20442,20432,{f:2,c:20452},20506,20520,20500,20522,20517,20485,20252,20470,20513,20521,20524,20478,20463,20497,20486,20547,20551,26371,20565,20560,20552,20570,20566,20588,20600,20608,20634,20613,20660,20658,{f:2,c:20681},20659,20674,20694,20702,20709,20717,20707,20718,20729,20725,20745,{f:2,c:20737},20758,20757,20756,20762,20769,20794,20791,20796,20795,[12041,20799],[11918,20800],20818,20812,20820,20834,31480,{f:2,c:20841},20846,20864,[12044,20866],22232,20876,20873,20879,20881,20883,20885,[12045,20886],20900,20902,20898,{f:2,c:20905},[12046,20907],20915,{f:2,c:20913},20912,20917,20925,20933,20937,20955,[12047,20960],34389,20969,20973,20976,[12048,20981],20990,20996,21003,21012,21006,21031,21034,21038,21043,21049,21071,21060,{f:2,c:21067},21086,21076,21098,21108,21097,21107,21119,21117,21133,21140,21138,21105,21128,21137,36776,36775,{f:2,c:21164},21180,21173,21185,21197,21207,21214,21219,21222,39149,21216,21235,21237,21240,[12051,21241],21254,21256,30008,21261,21264,21263,[12052,21269],[12053,21274],21283,21295,21297,21299,[12054,21304],21312,21318,21317,19991,21321,21325,20950,21342,[12057,21353],21358,22808,21371,21367,[12058,21378],21398,21408,21414,21413,21422,21424,[12059,21430],21443,31762,38617,21471,26364,29166,21486,21480,21485,21498,21505,21565,21568,{f:2,c:21548},21564,21550,21558,21545,21533,21582,21647,21621,21646,21599,21617,21623,21616,21650,21627,21632,21622,21636,21648,21638,21703,21666,21688,21669,21676,21700,21704,21672,21675,21698,21668,21694,21692,21720,{f:2,c:21733},21775,21780,21757,21742,21741,21754,21730,21817,21824,21859,21836,21806,21852,21829,{f:2,c:21846},21816,21811,21853,21913,21888,21679,21898,21919,21883,21886,21912,21918,21934,21884,21891,21929,21895,21928,21978,21957,21983,21956,21980,21988,21972,22036,22007,22038,22014,22013,22043,22009,22094,22096,29151,22068,22070,22066,22072,22123,22116,22063,22124,22122,22150,22144,22154,22176,22164,22159,22181,22190,22198,22196,22210,22204,22209,22211,22208,22216,22222,22225,22227,[12062,22231],22254,22265,22272,22271,22276,22281,22280,22283,22285,22291,22296,22294,21959,22300,22310,{f:2,c:22327},22350,22331,22336,22351,22377,22464,22408,22369,22399,22409,22419,22432,22451,22436,22442,22448,22467,22470,22484,{f:2,c:22482},22538,22486,22499,22539,22553,22557,22642,22561,22626,22603,22640,27584,22610,22589,22649,22661,22713,22687,22699,22714,22750,22715,22712,22702,22725,22739,22737,22743,22745,22744,22757,22748,22756,22751,22767,22778,22777,{f:3,c:22779},[12065,22786],[12066,22794],22800,22811,26790,22821,{f:2,c:22828},22834,22840,22846,31442,22869,22864,22862,22874,22872,22882,22880,22887,22892,22889,22904,22913,22941,20318,20395,22947,22962,22982,23016,23004,22925,{f:2,c:23001},23077,23071,23057,23068,23049,23066,23104,23148,23113,{f:2,c:23093},23138,23146,23194,23228,23230,23243,23234,23229,23267,23255,23270,23273,23254,{f:2,c:23290},23308,23307,23318,23346,23248,23338,23350,23358,23363,23365,23360,23377,23381,{f:2,c:23386},23397,23401,23408,23411,23413,23416,25992,23418,[12071,23424],23427,23462,23480,23491,23495,23497,23508,23504,23524,23526,23522,23518,23525,23531,23536,23542,23539,23557,{f:2,c:23559},23565,23571,23584,[11920,12074,23586],23592,[12075,23608],23609,23617,23622,23630,23635,23632,23631,23409,23660,[12076,23662],20066,23670,23673,23692,23697,23700,22939,23723,23739,23734,23740,23735,23749,23742,23751,23769,23785,23805,23802,23789,23948,23786,23819,23829,23831,23900,23839,23835,23825,23828,23842,23834,23833,23832,23884,23890,23886,23883,23916,23923,23926,23943,23940,23938,23970,23965,23980,23982,23997,23952,23991,23996,24009,24013,24019,24018,24022,[12078,24027],24043,24050,24053,24075,24090,24089,24081,24091,{f:2,c:24118},24132,24131,24128,24142,24151,24148,24159,24162,24164,24135,{f:2,c:24181},[11923,12083,24186],40636,[12084,24191],24224,{f:2,c:24257},24264,24272,24271,24278,24291,24285,{f:2,c:24282},24290,24289,{f:2,c:24296},24300,24305,24307,24304,[12085,24308],24312,[12086,24318],24323,24329,24413,24412,[12087,24331],24337,24342,24361,24365,24376,24385,24392,24396,24398,24367,[11924,24401],{f:2,c:24406},24409,[12090,24417],24429,[12091,24435],24439,24451,24450,24447,24458,24456,24465,24455,24478,24473,24472,24480,24488,24493,24508,24534,24571,24548,24568,24561,24541,24755,24575,24609,24672,24601,24592,24617,24590,24625,24603,24597,24619,24614,24591,24634,24666,24641,24682,24695,24671,24650,24646,24653,24675,24643,24676,24642,24684,24683,24665,24705,24717,24807,24707,24730,24708,24731,{f:2,c:24726},24722,24743,24715,24801,24760,24800,24787,24756,24560,24765,24774,24757,24792,24909,24853,24838,{f:2,c:24822},24832,24820,24826,24835,24865,24827,24817,{f:2,c:24845},24903,24894,24872,24871,24906,24895,24892,24876,24884,24893,24898,24900,24947,24951,{f:3,c:24920},24939,24948,24943,24933,24945,24927,24925,24915,24949,24985,24982,24967,25004,24980,24986,24970,24977,25003,25006,25036,25034,25033,25079,25032,25027,25030,25018,25035,32633,25037,25062,25059,25078,25082,25076,25087,25085,25084,25086,25088,[12093,25096],25097,25101,25100,25108,25115,25118,25121,25130,25134,25136,{f:2,c:25138},25153,25166,25182,25187,25179,25184,25192,25212,25218,25225,25214,{f:2,c:25234},25238,25300,25219,25236,25303,25297,25275,25295,25343,25286,25812,25288,25308,25292,25290,25282,25287,25243,25289,25356,25326,25329,25383,25346,25352,25327,25333,25424,25406,25421,25628,25423,25494,25486,25472,25515,25462,25507,25487,25481,25503,25525,25451,25449,25534,25577,25536,25542,25571,25545,25554,25590,25540,25622,25652,25606,25619,25638,25654,25885,25623,25640,25615,25703,25711,25718,25678,25898,25749,25747,25765,25769,25736,25788,25818,25810,25797,25799,25787,25816,25794,25841,25831,33289,{f:2,c:25824},25260,25827,25839,25900,25846,25844,25842,25850,25856,25853,25880,25884,25861,25892,25891,25899,[12097,25908],[11929,25909],25911,25910,25912,30027,25928,25942,25941,25933,25944,25950,25949,25970,25976,{f:2,c:25986},35722,26011,26015,26027,26039,26051,26054,26049,26052,26060,26066,26075,26073,[12102,26080],[11931,26081],26097,26482,26122,26115,26107,26483,{f:2,c:26165},26164,26140,26191,26180,26185,26177,26206,26205,26212,{f:2,c:26215},26207,26210,26224,26243,26248,26254,26249,26244,26264,26269,26305,26297,26313,26302,26300,26308,26296,26326,26330,26336,26175,26342,26345,[12104,26352],26357,26359,26383,26390,26398,{f:2,c:26406},38712,26414,26431,26422,26433,26424,26423,26438,26462,26464,26457,{f:2,c:26467},26505,26480,26537,26492,26474,26508,26507,26534,26529,26501,26551,26607,26548,26604,26547,26601,26552,26596,26590,26589,26594,26606,26553,26574,26566,26599,27292,26654,26694,26665,26688,26701,26674,26702,26803,26667,26713,26723,26743,26751,26783,26767,26797,26772,26781,26779,26755,27310,26809,26740,26805,26784,26810,26895,26765,26750,26881,26826,26888,26840,26914,26918,26849,26892,26829,26836,26855,26837,26934,26898,26884,26839,26851,26917,26873,26848,26863,26920,26922,26906,26915,26913,26822,27001,26999,26972,27e3,26987,26964,27006,26990,26937,26996,26941,26969,26928,26977,26974,26973,27009,26986,27058,27054,27088,27071,27073,27091,27070,27086,23528,27082,27101,27067,27075,27047,27182,27025,27040,27036,27029,27060,27102,27112,27138,27163,27135,27402,27129,27122,27111,27141,27057,27166,27117,27156,27115,27146,27154,27329,27171,27155,27204,27148,27250,27190,27256,27207,27234,27225,27238,27208,27192,27170,27280,27277,27296,27268,{f:2,c:27298},27287,34327,27323,27331,27330,27320,27315,27308,27358,27345,27359,27306,27354,27370,27387,27397,34326,27386,27410,27414,39729,27423,27448,27447,30428,27449,39150,27463,27459,27465,27472,27481,27476,27483,27487,27489,27512,[12109,27513],{f:2,c:27519},27524,27523,27533,27544,27541,27550,27556,{f:2,c:27562},27567,27570,27569,[12110,27571],27575,27580,27590,[12111,27595],27603,27615,27628,27627,27635,27631,40638,27656,27667,[12115,27668],27675,27684,27683,27742,27733,27746,27754,27778,27789,27802,27777,27803,27774,27752,27763,27794,27792,27844,27889,27859,27837,27863,27845,27869,27822,27825,27838,27834,27867,27887,27865,27882,27935,34893,27958,27947,27965,27960,27929,27957,27955,27922,27916,28003,28051,28004,27994,28025,27993,28046,28053,28644,28037,28153,28181,28170,28085,28103,28134,28088,28102,28140,28126,28108,28136,28114,28101,28154,28121,28132,28117,28138,28142,28205,28270,28206,28185,28274,28255,28222,28195,28267,28203,28278,28237,28191,28227,28218,28238,28196,28415,28189,28216,28290,28330,28312,28361,28343,28371,28349,28335,28356,28338,{f:2,c:28372},28303,28325,28354,28319,28481,28433,28748,28396,28408,28414,28479,28402,28465,28399,28466,28364,28478,28435,28407,28550,28538,28536,28545,28544,28527,28507,28659,28525,28546,28540,28504,28558,28561,28610,28518,28595,28579,28577,28580,28601,28614,28586,28639,28629,28652,28628,28632,28657,28654,28635,28681,28683,28666,28689,28673,28687,28670,28699,28698,28532,28701,28696,28703,28720,28734,28722,28753,28771,28825,28818,28847,28913,28844,28856,28851,28846,28895,28875,28893,28889,28937,28925,28956,28953,29029,29013,29064,29030,29026,29004,29014,29036,29071,29179,29060,29077,29096,29100,29143,29113,29118,29138,29129,29140,29134,29152,29164,29159,29173,29180,29177,29183,29197,29200,29211,29224,29229,29228,29232,29234,[12120,29243],29244,[12121,29247],29248,29254,29259,29272,29300,29310,29314,29313,29319,29330,29334,29346,29351,29369,29362,29379,29382,29380,29390,29394,29410,{f:2,c:29408},29433,29431,20495,29463,29450,29468,29462,29469,29492,29487,29481,29477,29502,{f:2,c:29518},40664,29527,29546,29544,29552,29560,29557,29563,29562,29640,29619,29646,29627,29632,29669,29678,29662,29858,29701,29807,29733,29688,29746,29754,29781,29759,29791,29785,29761,29788,29801,29808,29795,29802,29814,29822,29835,29854,29863,29898,29903,29908,29681,29920,29923,29927,29929,29934,29938,{f:2,c:29936},29944,29943,29956,29955,29957,29964,29966,29965,29973,29971,29982,29990,29996,30012,30020,30029,30026,30025,30043,30022,30042,30057,30052,30055,30059,30061,30072,30070,{f:2,c:30086},30068,30090,30089,30082,30100,30106,30109,30117,30115,30146,30131,30147,30133,30141,30136,30140,30129,30157,30154,30162,30169,30179,30174,{f:2,c:30206},30204,30209,30192,30202,{f:2,c:30194},30219,30221,30217,30239,30247,{f:3,c:30240},30244,30260,30256,30267,{f:2,c:30279},30278,30300,30296,{f:2,c:30305},{f:3,c:30312},30311,30316,30320,30322,[12136,30326],30328,30332,30336,30339,30344,30347,30350,30358,30355,{f:2,c:30361},30384,30388,{f:3,c:30392},30402,30413,30422,30418,30430,30433,30437,30439,30442,34351,30459,30472,30471,30468,30505,30500,30494,{f:2,c:30501},30491,{f:2,c:30519},30535,30554,30568,30571,30555,30565,30591,30590,30585,30606,30603,30609,30624,30622,30640,30646,30649,30655,{f:2,c:30652},30651,30663,30669,30679,30682,30684,30691,30702,30716,30732,30738,31014,30752,31018,30789,30862,30836,30854,30844,30874,30860,30883,30901,30890,30895,30929,30918,30923,30932,30910,30908,30917,30922,30956,30951,30938,30973,30964,30983,30994,30993,31001,31020,31019,31040,31072,31063,31071,31066,31061,31059,31098,31103,31114,31133,31143,40779,31146,31150,31155,{f:2,c:31161},31177,31189,31207,31212,31201,31203,31240,31245,{f:2,c:31256},31264,31263,31104,31281,31291,31294,31287,31299,31319,31305,{f:2,c:31329},31337,40861,31344,31353,31357,31368,31383,31381,31384,31382,31401,31432,31408,31414,31429,31428,31423,36995,31431,31434,31437,31439,31445,31443,{f:2,c:31449},31453,{f:2,c:31457},31462,31469,31472,31490,31503,31498,31494,31539,{f:2,c:31512},31518,31541,31528,31542,31568,31610,31492,31565,31499,31564,31557,31605,31589,31604,31591,{f:2,c:31600},31596,31598,31645,31640,31647,31629,31644,31642,31627,31634,31631,31581,31641,31691,31681,31692,31695,31668,31686,31709,31721,31761,31764,31718,31717,31840,31744,31751,31763,31731,31735,31767,31757,31734,31779,31783,31786,31775,31799,31787,31805,31820,31811,31828,31823,31808,31824,31832,31839,31844,31830,31845,31852,31861,31875,31888,31908,31917,31906,31915,31905,31912,31923,31922,31921,31918,31929,31933,31936,31941,31938,31960,31954,31964,31970,39739,31983,31986,31988,31990,31994,32006,32002,32028,32021,32010,32069,32075,32046,32050,32063,32053,32070,32115,32086,32078,32114,32104,32110,32079,32099,32147,32137,32091,32143,32125,32155,32186,32174,32163,32181,32199,32189,32171,32317,32162,32175,32220,32184,32159,32176,32216,32221,32228,32222,32251,32242,32225,32261,32266,32291,32289,32274,32305,32287,32265,32267,32290,32326,32358,32315,32309,32313,32323,32311,32306,32314,32359,32349,32342,32350,{f:2,c:32345},32377,32362,32361,32380,32379,32387,32213,32381,36782,32383,{f:2,c:32392},32396,32402,32400,{f:2,c:32403},32406,32398,{f:2,c:32411},32568,32570,32581,{f:3,c:32588},32592,[12153,32593],32597,32596,32600,{f:2,c:32607},{f:2,c:32616},32615,32632,32642,32646,32643,32648,32647,32652,32660,32670,32669,32666,32675,32687,32690,32697,32686,32694,32696,35697,{f:2,c:32709},32714,32725,32724,32737,32742,32745,32755,32761,39132,32774,32772,32779,[12158,32786],{f:2,c:32792},32796,32801,32808,32831,32827,32842,32838,32850,32856,32858,32863,32866,32872,32883,32882,32880,32886,32889,32893,[12160,32895],32900,32902,32901,32923,32915,32922,32941,20880,32940,32987,32997,32985,32989,32964,32986,32982,33033,33007,33009,33051,33065,33059,33071,33099,38539,33094,33086,33107,33105,33020,33137,33134,{f:2,c:33125},33140,33155,33160,33162,33152,33154,33184,33173,33188,33187,33119,33171,33193,33200,33205,33214,33208,33213,33216,33218,33210,33225,33229,33233,33241,33240,33224,33242,{f:2,c:33247},33255,{f:2,c:33274},33278,{f:2,c:33281},33285,33287,33290,33293,33296,33302,33321,33323,33336,33331,33344,33369,33368,33373,33370,33375,33380,33378,33384,{f:2,c:33386},33326,33393,33399,[12171,33400],33406,33421,33426,33451,33439,33467,33452,33505,33507,33503,33490,33524,33523,33530,33683,33539,33531,33529,33502,33542,33500,33545,33497,33589,33588,33558,33586,33585,33600,33593,33616,33605,33583,33579,{f:2,c:33559},33669,33690,33706,33695,33698,33686,33571,33678,33671,33674,33660,33717,33651,33653,33696,33673,33704,33780,33811,33771,33742,33789,33795,33752,33803,33729,33783,33799,33760,33778,33805,33826,33824,33725,33848,34054,33787,33901,33834,33852,34138,33924,33911,33899,33965,33902,33922,33897,33862,33836,33903,33913,33845,33994,33890,33977,33983,33951,34009,33997,33979,34010,34e3,33985,33990,34006,33953,34081,34047,34036,{f:2,c:34071},34092,34079,34069,34068,34044,34112,34147,34136,34120,34113,34306,34123,34133,34176,34212,34184,34193,34186,34216,34157,34196,34203,34282,34183,34204,34167,34174,34192,34249,34234,34255,34233,34256,34261,34269,34277,34268,34297,34314,34323,34315,34302,34298,34310,34338,34330,34352,34367,[12172,34381],20053,34388,34399,34407,34417,34451,34467,{f:2,c:34473},{f:2,c:34443},34486,34479,34500,34502,34480,34505,34851,34475,34516,34526,34537,34540,34527,34523,34543,34578,34566,34568,34560,34563,34555,34577,34569,34573,34553,34570,34612,34623,34615,34619,34597,34601,34586,34656,34655,34680,34636,34638,34676,34647,34664,34670,34649,34643,34659,34666,34821,34722,34719,34690,34735,34763,34749,34752,34768,38614,34731,34756,34739,34759,34758,34747,34799,34802,34784,34831,34829,34814,{f:2,c:34806},34830,34770,34833,34838,34837,34850,34849,34865,34870,34873,34855,34875,34884,34882,34898,34905,34910,34914,34923,34945,34942,34974,34933,34941,34997,34930,34946,34967,34962,34990,34969,34978,34957,34980,34992,35007,34993,{f:2,c:35011},35028,{f:2,c:35032},35037,35065,35074,35068,35060,35048,35058,35076,35084,35082,35091,35139,35102,35109,{f:2,c:35114},35137,35140,35131,35126,35128,35148,35101,35168,35166,35174,35172,35181,35178,35183,35188,35191,[12177,35198],35203,35208,35210,35219,35224,35233,35241,35238,35244,35247,35250,35258,35261,{f:2,c:35263},35290,{f:2,c:35292},35303,35316,35320,35331,35350,35344,35340,35355,35357,35365,35382,35393,35419,35410,35398,35400,35452,35437,35436,35426,35461,35458,35460,35496,35489,35473,{f:2,c:35493},35482,35491,35524,35533,35522,35546,35563,35571,35559,35556,35569,35604,35552,35554,35575,35550,35547,35596,35591,35610,35553,35606,35600,35607,35616,35635,38827,35622,35627,35646,35624,35649,35660,35663,35662,35657,35670,35675,35674,35691,35679,35692,35695,35700,35709,35712,35724,35726,{f:2,c:35730},35734,{f:2,c:35737},35898,35905,35903,35912,35916,35918,35920,[12183,35925],35938,35948,[12184,35960],35962,35970,35977,35973,35978,{f:2,c:35981},35988,35964,35992,25117,36013,36010,36029,{f:2,c:36018},36014,36022,36040,36033,36068,36067,36058,36093,{f:2,c:36090},{f:2,c:36100},36106,36103,36111,36109,36112,40782,36115,36045,36116,36118,36199,36205,36209,36211,36225,36249,36290,36286,36282,36303,36314,36310,36300,36315,36299,{f:2,c:36330},36319,36323,36348,{f:2,c:36360},36351,{f:2,c:36381},36368,36383,36418,36405,36400,36404,36426,36423,36425,36428,36432,36424,36441,36452,36448,36394,36451,36437,36470,36466,36476,36481,36487,36485,36484,36491,36490,36499,36497,36500,36505,36522,36513,36524,36528,36550,36529,36542,36549,36552,36555,36571,36579,36604,36603,36587,36606,36618,36613,36629,36626,36633,36627,36636,36639,36635,36620,36646,36659,36667,36665,36677,36674,36670,36684,36681,36678,36686,36695,36700,{f:3,c:36706},36764,36767,36771,36781,36783,36791,36826,36837,36834,36842,36847,36999,36852,36869,{f:2,c:36857},36881,36885,36897,36877,36894,36886,36875,36903,36918,36917,36921,36856,{f:4,c:36943},36878,36937,36926,36950,36952,36958,36968,36975,36982,38568,36978,36994,36989,36993,36992,37002,37001,37007,37032,37039,37041,37045,37090,37092,25160,37083,37122,37138,37145,37170,37168,37194,37206,37208,37219,37221,37225,37235,37234,37259,37257,37250,37282,37291,37295,37290,37301,37300,37306,{f:2,c:37312},37321,37323,37328,37334,37343,37345,37339,37372,{f:2,c:37365},37406,37375,37396,37420,37397,37393,37470,37463,37445,37449,37476,37448,37525,37439,37451,37456,37532,37526,37523,37531,37466,37583,37561,37559,37609,37647,37626,37700,37678,37657,37666,37658,37667,37690,37685,37691,37724,37728,37756,37742,37718,37808,{f:2,c:37804},37780,37817,{f:2,c:37846},37864,37861,37848,37827,37853,37840,37832,37860,37914,37908,37907,37891,37895,37904,37942,37931,37941,37921,37946,37953,37970,37956,37979,37984,37986,37982,37994,37417,38e3,38005,38007,38013,37978,38012,38014,38017,38015,38274,38279,38282,38292,38294,{f:2,c:38296},38304,38312,38311,38317,38332,38331,38329,38334,38346,28662,38339,38349,38348,38357,38356,38358,38364,38369,38373,38370,38433,38440,{f:2,c:38446},38466,38476,38479,38475,38519,38492,38494,38493,38495,38502,38514,38508,38541,38552,38549,38551,38570,38567,{f:2,c:38577},38576,38580,[12202,38582],38584,[12203,38585],38606,38603,38601,38605,35149,38620,38669,38613,38649,38660,38662,38664,38675,38670,38673,38671,38678,38681,38692,38698,38704,38713,{f:2,c:38717},38724,38726,38728,38722,38729,38748,38752,38756,38758,38760,21202,38763,38769,38777,38789,38780,38785,38778,38790,38795,{f:2,c:38799},38812,38824,38822,38819,{f:2,c:38835},38851,38854,38856,[12209,38859],38876,[12210,38893],40783,38898,31455,38902,38901,38927,38924,38968,38948,38945,38967,38973,38982,38991,38987,39019,{f:3,c:39023},39028,39027,39082,39087,39089,39094,39108,39107,39110,39145,39147,39171,39177,39186,39188,39192,39201,{f:2,c:39197},39204,39200,39212,39214,{f:2,c:39229},39234,39241,39237,39248,39243,{f:2,c:39249},39244,39253,{f:2,c:39319},39333,{f:2,c:39341},39356,39391,39387,39389,39384,39377,{f:2,c:39405},{f:2,c:39409},39419,39416,39425,39439,39429,39394,39449,39467,39479,39493,39490,39488,39491,39486,39509,39501,39515,39511,39519,39522,39525,39524,39529,39531,39530,39597,39600,39612,39616,39631,39633,{f:2,c:39635},39646,[12221,39647],{f:2,c:39650},39654,39663,39659,39662,39668,39665,39671,39675,39686,39704,39706,39711,{f:2,c:39714},[12222,39717],{f:4,c:39719},39726,[12223,39727],[12224,39730],39748,39747,39759,{f:2,c:39757},39761,39768,39796,39827,39811,39825,{f:2,c:39830},{f:2,c:39839},39848,39860,39872,39882,39865,39878,39887,{f:2,c:39889},39907,39906,39908,39892,39905,39994,39922,39921,39920,39957,39956,39945,39955,39948,39942,39944,39954,39946,39940,39982,39963,39973,39972,39969,39984,40007,39986,40006,39998,40026,40032,40039,40054,40056,40167,40172,40176,40201,40200,40171,40195,40198,40234,40230,40367,40227,40223,40260,40213,40210,40257,40255,40254,40262,40264,{f:2,c:40285},40292,40273,40272,40281,40306,40329,40327,40363,40303,40314,40346,40356,40361,40370,40388,40385,40379,40376,40378,40390,40399,40386,40409,40403,40440,40422,40429,40431,40445,{f:2,c:40474},40478,[12228,40565],40569,40573,40577,40584,{f:2,c:40587},40594,40597,40593,40605,[12230,40613],40617,40632,40618,40621,38753,40652,{f:3,c:40654},40660,40668,40670,40669,40672,40677,40680,40687,40692,{f:2,c:40694},[12235,40697],{f:2,c:40699},[12236,40701],{f:2,c:40711},30391,40725,40737,40748,40766,[12241,40778],[12242,40786],40788,40803,{f:3,c:40799},{f:2,c:40806},40812,40810,40823,40818,40822,40853,[12244,40860],[12245,40864],22575,27079,36953,29796,0,{f:76,c:9472},{f:20,c:9312},{f:10,c:8544},13129,13076,0,13133,0,13095,0,13110,13137,0,13069,13094,0,13099,13130,0,{f:3,c:13212},{f:2,c:13198},13252,13217,12317,12319,8470,13261,0,{f:5,c:12964},{f:2,c:12849},12857,13182,13181,13180,8750,8721,{s:3},8735,8895,0,0,21854,{s:7},167133,0,0,28976,0,40407,{s:4},64054,0,0,22169,15694,{s:4},20448,0,0,36544,0,194797,{s:4},153716,32363,33606,167670,{s:3},40572,0,0,26171,0,40628,{s:4},26629,{s:5},23650,0,194780,0,32353,0,0,64070,{s:5},34083,37292,{s:7},34796,{s:8},25620,0,0,39506,{s:4},64074,0,194692,{s:4},31774,{s:6},64016,25681,0,0,63980,22625,39002,0,194679,{s:3},31153,0,28678,{s:9},22218,{s:3},21085,0,28497,37297,{s:10},64106,{s:6},38960,0,40629,{s:9},33802,63939,{f:2,c:63890},63897,0,34847,194575,0,194771,194584,{s:7},137754,23643,{s:4},25890,0,0,26618,0,26766,0,148432,194848,{s:21},34110,{s:15},30562,{s:12},65075,0,{f:2,c:65073},{s:4},65072,{f:2,c:65077},{f:2,c:65081},0,0,{f:2,c:65079},{f:2,c:65087},{f:2,c:65085},{f:4,c:65089},{f:2,c:65083},{s:41},{f:3,c:12436},0,0,22099,{s:41},65508,65287,65282,0,9665,9655,8681,8679,8678,8680,9634,9831,9825,9828,9826,13216,13218,{f:2,c:13220},13207,8467,13208,13235,13234,13233,13232,{f:3,c:13189},13259,13200,13268,13206,13090,13078,13080,13077,13059,13091,13143,13122,13113,13115,13056,13105,13127,13086,13098,0,13183,8481,9742,12342,12320,{s:3},{f:9,c:9352},{f:20,c:9332},12881,{f:10,c:8560},{f:10,c:12882},{f:26,c:9372},12867,12861,12863,12852,12856,12851,12860,12866,12862,12854,12853,12859,12864,12858,12976,12973,12969,12975,12948,12970,12952,12971,12946,12945,12947,12972,12974,12950,{s:8},{f:3,c:9131},0,{f:3,c:9127},0,13260,13061,0,0,13215,13219,13222,0,0,12958,{f:2,c:13192},13256,8749,0,12848,{f:6,c:12842},12855,12865,10145,{s:3},9673,9824,9829,9827,9830,{f:4,c:9728},9758,{f:2,c:9756},9759,12953,9450,{f:2,c:8554},{s:3},{f:8,c:9601},9615,9614,9613,9612,9611,9610,9609,{f:2,c:9620},{f:2,c:9581},9584,9583,9552,9566,9578,9569,{f:2,c:9698},9701,9700,0,0,{f:3,c:9585},{s:20},20956,29081,{f:9,c:10102},{s:3},{f:2,c:8570},{s:3},8575,8458,8457,0,0,12292,8646,{f:2,c:8644},0,{f:4,c:12535},0,0,12957,{s:3},13179,{s:3},13107,13134,{s:30},32394,35100,37704,37512,34012,20425,28859,26161,26824,37625,26363,24389,[12033,20008],20193,20220,20224,20227,20281,20310,20370,20362,20378,20372,20429,20544,20514,20479,20510,20550,20592,20546,20628,20724,20696,20810,20836,20893,20926,20972,21013,21148,21158,21184,21211,21248,0,21284,21362,21395,21426,21469,64014,21660,21642,21673,21759,21894,22361,22373,22444,22472,22471,64015,0,22686,22706,22795,22867,22875,22877,22883,22948,22970,23382,23488,29999,23512,0,23582,23718,23738,23797,23847,23891,0,23874,23917,{f:2,c:23992},24016,24353,24372,24423,24503,24542,24669,24709,24714,24798,24789,24864,24818,24849,24887,24880,24984,25107,25254,25589,25696,25757,25806,25934,26112,26133,26121,26158,0,26148,26213,26199,26201,64018,26227,26265,26272,26290,26303,26362,26382,0,26470,26555,26706,26560,0,26692,26831,64019,26984,64020,27032,27106,27184,27243,27206,27251,27262,27362,27364,27606,27711,27740,27782,27759,27866,27908,28039,28015,28054,28076,28111,28152,28146,28156,28217,28252,28199,28220,28351,28552,28597,28661,28677,28679,28712,28805,28843,28943,28932,29020,{f:2,c:28998},0,29121,29182,29361,29374,29476,64022,29559,29629,29641,29654,29667,29650,29703,29685,29734,29738,29737,29742,0,29833,29855,29953,30063,30338,30364,30366,30363,30374,64023,30534,21167,30753,30798,30820,30842,31024,{f:3,c:64024},31124,64027,31131,31441,31463,64028,31467,31646,64029,32072,0,32183,32160,32214,32338,32583,32673,64030,33537,33634,33663,33735,33782,33864,33972,34131,34137,34155,64031,34224,{f:2,c:64032},34823,35061,35346,35383,35449,35495,35518,35551,64034,35574,35667,35711,36080,36084,36114,36214,64035,36559,0,64037,36967,37086,64038,37141,37159,37338,37335,37342,{f:2,c:37357},{f:2,c:37348},37382,37392,37386,37434,37440,37436,37454,37465,37457,37433,37479,37543,{f:2,c:37495},37607,37591,37593,37584,64039,37589,37600,37587,37669,37665,37627,64040,37662,37631,37661,37634,37744,37719,37796,37830,37854,37880,37937,37957,37960,38290,0,64041,38557,38575,38707,38715,38723,38733,38735,[12205,38737],0,38999,39013,{f:2,c:64042},39207,64044,39326,39502,39641,39644,39797,39794,39823,39857,39867,39936,40304,40299,64045,40473,40657,0,92,{s:634},8364,8486,0,0,64256,{f:2,c:64259},257,299,363,275,333,256,298,362,274,332,{f:4,c:8539},{f:2,c:8531},8304,{f:6,c:8308},{f:10,c:8320},461,282,0,7868,463,0,296,465,0,467,366,360,462,283,0,7869,464,0,297,466,0,468,367,361,593,8049,8048,509,0,596,0,0,601,0,0,602,0,0,603,8051,8050,0,331,629,652,0,0,658,643,720,{s:682},{f:10,c:12832},{s:108},{f:4,c:12892},{f:15,c:12977},{s:50},{f:26,c:9424},{f:26,c:9398},{s:48},{f:47,c:13008},0,{f:10,c:12928},12944,{f:6,c:12938},0,12959,{s:6},{f:2,c:12960},12955,12954,12963,12962,12951,0,12956,12949,{s:6},9676,{s:11},10111,{f:10,c:9451},{s:510},8414,{s:815},13274,{s:3},8448,13250,0,0,8453,0,13169,0,0,13197,13211,{s:3},{f:2,c:13271},{s:3},{f:2,c:13057},13060,13062,0,13064,0,13063,13066,0,13065,0,13067,0,13068,{f:6,c:13070},0,13079,0,13081,0,{f:4,c:13082},{f:3,c:13087},13092,0,13093,0,0,{f:2,c:13096},0,13101,0,0,{f:3,c:13102},13106,0,0,{f:2,c:13108},13116,{s:3},13111,0,13112,13114,13117,13121,{f:3,c:13118},{f:4,c:13123},13128,{f:2,c:13131},{f:2,c:13135},0,0,13138,13140,0,0,13139,{f:2,c:13141},{s:132},8501,976,8714,8463,0,981,987,977,0,{f:2,c:9832},9836,{s:5},12347,0,{f:3,c:12339},8252,8265,{s:5},8723,0,8771,{f:2,c:8818},{s:6},{f:2,c:12312},{f:2,c:65375},{s:10},9115,{f:2,c:9117},9120,{s:4},9121,{f:2,c:9123},9126,{s:12},[9116,9119,9122,9125,9130],{s:8},9986,0,0,12349,0,12447,0,0,8709,8864,8854,8856,8853,8855,{s:4},9664,9654,{s:4},8656,8596,{f:2,c:8600},{f:2,c:8598},8652,8651,{s:10},12336,8967,{s:8},10048,10047,{s:7},9643,0,9642,0,10010,{s:12},9702,{s:4},10070,{s:379},{f:2,c:65093},{s:679},64103,64098,32227,[12232,40643],28331,64082,64061,64069,64062,27114,28212,64096,64071,64056,64066,64078,34395,64105,64052,64099,25581,25802,30799,64084,63856,64077,64097,64072,64076,{f:2,c:64091},64081,64067,64090,28041,29376,0,194885,64086,64080,64049,64059,24034,64063,64101,21373,64055,64095,24501,64064,0,64083,0,64085,64104,64068,64089,26202,64053,64075,64100,64065,64048,0,64057,64051,27493,64058,27599,64050,25150,64079,63773,63964,63798,28122,63952,26310,27511,64087,37706,0,37636,{s:120},133390,{s:120},35999,11991,[11965,158033],{s:5},37555,38321,0,0,194812,{s:13},194965,{s:8},194794,0,26478,11974,0,194594,{s:13},13314,0,0,26083,{s:4},134071,{s:10},171339,0,194611,24378,{s:8},11945,0,20465,{s:7},63753,{s:7},11964,0,0,194732,26435,{s:3},133732,35329,25142,0,0,21555,23067,{s:3},25221,0,0,194819,{s:6},21567,{s:9},27506,{s:4},29986,19256,0,0,24063,{s:6},194827,29626,134047,{s:3},194600,0,194849,{s:5},194623,{s:16},194675,{f:2,c:11916},23577,{s:3},131083,23426,194642,{s:5},11997,[11999,39136],[11998,169599],14221,0,[11927,14586],0,194887,0,[11909,20155],131490,{s:7},13599,0,194738,0,0,[11971,35200],{s:4},31237,{s:4},35498,0,32085,0,28568,{s:7},25591,30246,{s:4},[11978,163767],{s:5},146686,{s:5},13351,0,0,33067,0,0,194842,{s:5},11950,{s:5},194714,{s:3},194831,{s:19},22305,135741,194586,0,64003,{s:7},21534,15240,20839,{s:4},63839,{s:9},20023,{s:13},[11946,150804],24421,23020,194658,0,24217,{s:46},13416,{s:8},21200,{s:9},26625,0,195024,195039,{s:5},153215,0,0,11959,{s:4},36534,63775,{s:3},63875,{s:5},31867,63906,0,63898,0,[11961,32770],157360,{s:4},[11911,132648],0,0,131210,194604,[11915,13630],{s:4},21589,0,22841,0,0,23414,194669,23572,14306,23782,0,20040,0,0,194742,{s:4},158105,25371,0,0,26211,0,194779,0,0,27126,27014,{s:3},27596,0,28183,0,0,27818,{s:3},[11942,20012],0,0,29935,30069,30188,30286,16305,30570,30633,{s:6},31571,0,0,16996,{s:3},194924,0,0,32328,{s:5},11955,{s:4},33089,17491,0,[11966,33401],[11967,64094],[11968,64093],0,20857,33626,{s:3},17701,0,34292,131248,{s:4},34429,0,13358,35014,{s:6},18406,{s:8},36808,{s:19},166279,0,0,167447,0,0,38969,{s:6},39432,{s:4},39903,{s:10},148206,{s:5},21385,0,64017,194785,0,146622,132625,0,{f:2,c:19972},19999,20011,{f:2,c:20015},{f:2,c:20032},20036,[11907,20058],20095,20109,20118,20153,20176,20192,20221,20223,20235,20245,20320,20283,20297,20308,20346,{f:2,c:20349},20375,20414,20431,20477,{f:2,c:20480},20496,20507,20519,20526,20567,20582,20586,20539,20623,20630,20636,20684,20710,20713,20719,20744,20747,20752,20763,20766,20831,20897,20924,0,20974,20980,20993,[11913,20994],21011,21065,21089,21094,21139,21192,21232,{f:2,c:21258},21310,21324,21323,21345,21356,21419,21466,21478,21493,21543,21581,21606,21611,21620,21645,21654,21665,21677,21689,21695,21702,21709,21774,21803,21813,21834,21856,0,21896,21902,22024,{f:2,c:22030},22071,22079,22089,22091,22095,22118,22121,22127,{f:2,c:22129},22165,22170,{f:2,c:22188},22193,22217,22237,22244,22282,22293,22307,22319,{f:2,c:22323},22348,22384,22412,22428,22456,22502,22509,{f:2,c:22517},22527,22537,22560,22578,22652,22656,22697,22734,22736,22740,22746,22761,22796,22820,22831,22881,22893,22986,22994,23005,{f:2,c:23011},23044,23052,23075,23111,23125,23139,23149,23166,23198,23207,23212,23219,23264,23296,23321,23333,23341,23361,23420,{f:2,c:23422},23434,[11919,23587],23595,23600,23651,23657,23676,23755,23762,23796,23844,23846,23875,23878,23882,23954,23956,23961,23968,24024,24032,24056,24064,24082,{f:2,c:24084},24088,24110,24152,{f:2,c:24171},24232,24234,{f:2,c:24254},0,24274,24327,24334,{f:2,c:24348},24354,24360,24374,24379,24384,[12089,24400],24408,24420,24457,24476,24487,24484,24495,24504,[11926,24516],24521,24545,24553,24557,24572,24599,24602,24627,24673,24703,24734,24740,24752,24779,24795,24824,{f:3,c:24850},24860,24956,24973,24991,25e3,25026,25055,25109,25129,25155,25158,[11928,25164],25169,25174,25284,25340,25354,25357,25368,25401,{f:2,c:25410},25445,25460,25469,25476,25479,25488,25502,25553,25564,25609,25616,25634,25684,25691,25709,25723,{f:2,c:25790},25829,25847,25851,25860,25878,25881,25927,25959,25985,25989,26050,26096,26098,26156,26188,{f:2,c:26203},26209,26219,0,26276,26312,26348,26373,26387,26419,26440,26444,26486,26491,26544,26546,26617,26583,26585,26608,26668,{f:2,c:26672},26715,26738,26741,26746,26756,26789,26802,26832,26838,26856,26861,{f:2,c:26864},26876,26897,26899,26933,26939,26967,26979,26994,{f:2,c:27007},27046,27053,27063,{f:2,c:27094},27137,27151,27157,27176,27188,27198,27205,{f:2,c:27216},27222,27227,27267,27273,27281,{f:3,c:27293},27356,27367,27372,27422,27428,27445,27462,27478,27488,27522,27582,27617,27633,27664,27699,[11937,27701],11938,27737,27766,27771,27781,27797,27804,27856,27860,27862,27872,{f:2,c:27883},27886,27914,27918,27921,27950,27991,27998,28005,28034,28095,28100,28106,28118,28137,28194,28241,28359,28362,28366,28413,28442,28458,28463,28467,28506,28510,28514,28541,28555,28557,28562,28564,28570,{f:2,c:28583},28598,28634,28638,0,28729,28732,0,28756,{f:2,c:28765},28772,[11939,28780],28798,28801,28821,28855,{f:2,c:28883},28888,28892,28935,28960,28977,29002,29010,29024,29049,29074,0,29131,29139,29142,29184,29213,29227,29240,29249,29267,{f:2,c:29269},29276,29325,[11944,29357],29364,29383,29435,{f:2,c:29444},29480,29489,29507,29548,29564,29571,{f:2,c:29573},29589,{f:3,c:29598},29606,29611,29621,29623,29628,29647,29657,29673,29684,29693,29700,29706,{f:2,c:29722},29732,29736,29740,{f:3,c:29743},29753,29764,29767,29771,29773,29777,29783,29798,29803,29809,29824,{f:3,c:29829},29840,29848,29852,29856,29859,29864,29867,29877,29887,29896,29914,29918,30030,30073,30081,30096,[12135,30098],30099,30132,30180,30201,30208,30218,{f:2,c:30229},30233,30238,30253,30261,30275,30283,30309,30317,30319,30321,30324,{f:2,c:30372},30405,30412,30444,30460,30516,30518,30556,{f:2,c:30559},30578,30589,30613,30634,30694,30704,30708,30726,30754,{f:2,c:30765},30768,30773,30824,30878,30920,30924,30926,30948,{f:2,c:30944},30962,30967,30971,31025,0,[11949,31035],31037,31045,{f:2,c:31067},31115,31126,31128,[12145,31160],31163,31178,31194,31235,31241,31249,31262,31277,31289,31301,31308,31325,0,31341,31352,31392,31395,31411,{f:2,c:31419},31430,31495,31508,31527,31537,31559,31566,31584,31593,31597,31602,31633,31663,31703,31705,31755,31759,31776,31782,31793,31798,31825,31833,31847,31854,31856,31932,31935,{f:2,c:31944},31959,31961,31965,31979,{f:3,c:32007},32019,32029,32035,32065,32083,32089,32093,32122,32134,{f:2,c:32139},32204,32235,32241,32249,32264,32273,32277,32288,32327,32354,32366,32371,32397,32401,32408,32580,32591,[11947,11954,32594],[11953,32595],32609,32657,32703,32718,32735,32741,32748,{f:2,c:32750},32762,32782,32785,32788,32804,32806,32826,32828,32864,32881,32885,32926,32934,32939,{f:2,c:32983},33046,33048,33082,33098,33100,33153,33156,33204,33231,33273,33283,33313,33330,33332,33350,33355,33359,33422,33454,33463,33470,33478,33534,33603,33617,33621,33670,33677,33682,33688,33705,{f:2,c:33727},33770,33807,33809,33866,33910,33960,33967,33984,33986,34032,34045,34060,34100,34142,34191,34231,34254,34221,34322,34345,34386,34403,34412,34415,34426,34445,34449,34456,{f:2,c:34471},34554,34557,34571,34579,34585,34590,34600,34622,34673,34696,34713,{f:2,c:34732},34741,34774,34795,34797,34817,0,34822,34827,34836,34844,34902,34911,[11970,34916],34968,34986,{f:2,c:35005},35018,35026,35035,{f:2,c:35056},35078,{f:3,c:35096},35111,35120,35134,35195,35284,35286,35301,35313,35335,35343,35349,35362,35406,35455,35572,35615,35639,{f:2,c:35651},35668,35740,35742,35911,35924,35955,36004,36057,36065,36088,36094,36123,36201,36204,36228,36237,36245,36262,36294,36302,36324,36332,36384,36427,36460,36464,36474,36498,36526,36531,36561,36564,36601,36631,36662,36774,[12193,36789],[11981,36790],0,36832,36836,36854,36866,36908,36932,37e3,37013,37017,37019,37026,37044,37079,37085,37108,37143,37148,37169,37178,37181,37192,37211,37217,37220,37262,37278,37288,{f:2,c:37293},37298,37308,37360,37367,37371,37383,37416,37427,37432,37443,37447,37455,37472,37570,{f:2,c:37579},37599,37645,37653,37663,37671,37703,37714,0,37738,37741,37787,37818,37801,37825,37834,37858,37882,37885,37903,37940,37951,37973,37995,38002,[11986,38264],38310,38313,0,38324,38333,38362,[11983,11990,38429],38465,38488,38532,38564,38569,38610,195060,38622,38633,38641,38658,38665,38746,38755,38766,38771,38810,38818,{f:2,c:38837},38873,38878,38900,38922,38926,38942,38947,38955,38974,{f:2,c:38994},39001,39020,39096,39098,39103,39112,39141,{f:2,c:39218},39232,39245,39260,39263,39345,{f:2,c:39353},39369,39426,39446,39460,39463,{f:2,c:39469},39478,39480,39498,39510,{f:2,c:39605},39673,39683,39712,{f:2,c:39731},39795,39801,39847,39873,39879,39895,39911,39915,39927,39930,39933,39947,39975,39978,39990,40001,40019,40035,40048,40055,40194,40258,40263,40291,40297,40316,40318,40333,40369,40387,40391,40406,40415,40427,40436,40469,40477,40612,40616,40620,40679,40686,40720,40722,40727,40729,40751,40759,40761,40769,40773,40791,40808,40817,40821,40848,40852,40866,0,13317,194564,22048,24267,11925,0,144954,0,28665,28390,29107,[11940,64073],{s:4},[11980,64102],0,23986,0,20435,20697,20720,20931,22134,27220,27905,28112,28226,28377,29668,29729,30060,30801,34805,144382,29608,15091,13531,17420,16010,0,0,19432,0,16090,15138,0,17786,16531,0,18021,16643,17043,18094,13448,140809,{f:3,c:63584},63610,63615,{s:23},{f:2,c:8836},{f:2,c:8842},8713,0,{f:2,c:8965},{s:9},{f:2,c:8741},{s:14},8802,0,8773,8776,{f:2,c:8822},{s:4},8487,{s:209},{f:2,c:8922},8533,8984,{f:2,c:7742},{f:2,c:504},470,472,474,476,260,728,317,346,350,356,377,379,261,731,318,347,711,351,357,378,733,380,340,258,313,262,268,280,270,323,327,336,344,368,354,341,259,314,263,269,281,271,273,324,328,337,345,369,355,729,264,284,292,308,348,364,265,285,293,309,349,365,625,651,638,620,622,633,648,598,627,637,642,656,635,621,607,626,669,654,609,624,641,295,661,660,614,664,450,595,599,644,608,403,616,649,600,604,606,592,623,650,612,594,653,613,674,673,597,657,634,615,865,712,716,721,8255,783,{f:5,c:741},0,0,805,812,825,796,{f:2,c:799},829,809,815,734,804,816,828,820,{f:2,c:797},{f:2,c:792},810,{f:2,c:826},794,{s:3},{f:2,c:610},618,628,630,632,640,655,665,668,671,688,690,695,704,{f:2,c:736},{s:6},8862,{s:287},12348,12543,0,{f:2,c:12310},9838,9835,{f:2,c:10548},10687,0,12448,0,{f:2,c:10746},{s:13},962,{f:10,c:9461},{f:2,c:9750},9649,{f:10,c:12784},0,{f:6,c:12794},{f:15,c:9150},0,0,10003,0,9251,9166,{f:4,c:9680},{f:2,c:8263},0,8273,8258,{f:16,c:12688},{s:13},{f:2,c:9136},{f:12,c:9842},{f:2,c:12441},8413,{s:450},20296,20319,20330,20332,20494,20504,20545,20722,20688,20742,20739,20789,20821,20823,13493,20938,20962,21079,21196,21206,21243,21276,21347,21405,21522,21631,21640,21840,21889,21933,21966,22075,22174,22185,22195,22391,22396,135963,22479,22500,22628,22665,136302,22738,22752,34369,22923,22930,22979,23059,23143,23159,23172,23236,137405,23421,23443,23570,64060,136884,23674,23695,23711,23715,23722,23760,138804,23821,23879,23937,23972,23975,24011,24158,24313,24320,24322,24355,24381,24404,24445,24589,24596,24600,24629,24647,24733,24788,24797,24875,25020,25017,25122,25178,25199,25302,25468,25573,25721,25796,25808,25897,26013,26170,26146,26155,26160,26163,26184,143812,{f:2,c:26231},26253,26299,26331,26344,26439,26497,26515,26520,26523,26620,26653,26787,26890,26953,144836,26946,26980,27045,27087,15286,15299,27113,27125,145215,27195,145251,27284,27301,15375,27419,27436,27495,27561,27565,27607,27647,27653,27764,27800,27899,27846,27953,27961,27967,27992,28052,28074,28123,28125,28228,28254,28337,28353,28432,28505,28513,28542,28556,28576,28604,28615,28618,28656,28750,28789,28836,28900,28971,28958,28974,29009,29032,29061,29063,29114,29124,29205,15935,29339,149489,29479,29520,29542,29602,29739,29766,29794,29805,29862,29865,29897,29951,29975,16242,30158,30210,30216,30308,30337,30365,30378,30390,30414,30420,30438,30449,30474,30489,{f:2,c:30541},30586,30592,30612,30688,152718,30787,30830,30896,152846,30893,30976,31004,31022,31028,31046,31097,31176,153457,31188,31198,31211,31213,31365,154052,31438,31485,31506,31533,31547,31599,31745,31795,155041,31853,31865,31887,31892,31904,31957,32049,32092,32131,32166,32194,32296,32663,32731,32821,32823,32970,32992,33011,33120,{f:2,c:33127},33133,33211,33226,33239,17499,33376,33396,158463,33441,{f:2,c:33443},33449,33471,33493,33533,33536,33570,33581,33594,33607,33661,33703,33743,33745,33761,33793,33798,33887,33904,33907,33925,33950,33978,159296,34098,34078,34095,34148,34170,34188,34210,34251,34285,34303,{f:2,c:34308},34320,159988,34328,34360,34391,34402,17821,34421,34488,34556,34695,17898,34826,34832,35022,161412,35122,35129,35136,35220,35318,35399,35421,35425,35445,35536,35654,35673,35689,35741,35913,35944,36271,36305,36311,36387,36413,36475,164471,18500,36602,36638,36653,36692,164813,36840,36846,36872,36909,37015,37043,37054,{f:2,c:37060},37063,37103,37140,37142,{f:2,c:37154},37167,37172,37251,37361,37705,{f:2,c:37732},37795,37855,37892,37939,37962,37987,38001,38286,38303,38316,38326,38347,38352,38355,18864,38366,38565,38639,38734,38805,38830,38842,38849,38857,38875,38998,39143,39256,39427,39617,39619,39630,39638,39682,39688,19479,39725,39774,39782,39812,39818,39838,39886,39909,39928,39971,{f:2,c:40015},40037,{f:2,c:40221},40259,40274,40330,40342,40384,40364,40380,172432,40423,40455,40606,40623,40855,131209,19970,19983,19986,20009,20014,20039,131234,20049,13318,131236,20073,20125,13356,20156,20163,20168,20203,20186,20209,20213,20246,20324,20279,20286,20312,131603,{f:2,c:20343},20354,20357,20454,20402,20421,20427,20434,13418,20466,20499,20508,20558,20563,20579,20643,20616,{f:2,c:20626},20629,20650,131883,20657,{f:2,c:20666},20676,20679,20723,131969,20686,131953,20692,20705,13458,132089,20759,132170,20832,132361,20851,20867,20875,13500,20888,20899,20909,13511,132566,20979,21010,21014,132943,21077,21084,21100,21111,21124,21122,133127,21144,133178,21156,{f:2,c:21178},21194,21201,133305,21239,21301,21314,133500,133533,21351,21370,21412,21428,133843,21431,21440,133917,{f:2,c:13661},21461,13667,21492,21540,21544,13678,21571,21602,21612,21653,21664,21670,21678,21687,21690,21699,134469,21740,21743,21745,21747,{f:2,c:21760},21769,21820,21825,13734,21831,13736,21860,134625,21885,21890,21905,13765,21970,134805,134765,21951,21961,21964,21969,21981,13786,21986,134756,21993,22056,135007,22023,22032,22064,13812,22077,22080,22087,22110,22112,22125,13829,22152,22156,22173,22184,22194,22213,22221,22239,22248,{f:2,c:22262},135681,135765,22313,135803,{f:2,c:22341},22349,135796,22376,22383,{f:3,c:22387},22395,135908,135895,22426,{f:2,c:22429},22440,22487,135933,22476,135990,136004,22494,22512,13898,22520,22523,22525,22532,22558,22567,22585,136132,22601,22604,22631,{f:2,c:22666},22669,{f:2,c:22671},22676,22685,22698,22705,136301,22723,22733,22754,{f:2,c:22771},{f:2,c:22789},22797,22804,136663,13969,22845,13977,22854,13974,158761,22879,136775,{f:2,c:22901},22908,22943,22958,22972,22984,22989,23006,23015,23022,136966,137026,14031,23053,23063,23079,23085,23141,23162,23179,23196,{f:2,c:23199},23202,23217,23221,23226,23231,23258,23260,23269,23280,23278,23285,23304,23319,23348,23372,23378,23400,23407,23425,23428,137667,23446,23468,{f:2,c:14177},23502,23510,14188,14187,23537,23549,14197,23555,23593,138326,23647,{f:2,c:23655},23664,138541,138565,138616,138594,23688,23690,14273,138657,138652,23712,23714,23719,138642,23725,23733,138679,23753,138720,138803,23814,23824,23851,23837,23840,23857,23865,14312,23905,23914,14324,23920,139038,14333,23944,14336,23959,23984,23988,139126,24017,24023,139258,24036,24041,14383,14390,14400,24095,24126,24137,14428,24150,14433,{f:2,c:24173},139643,24229,24236,24249,24262,24281,140062,24317,24328,140205,24350,24391,24419,24434,24446,24463,24482,24519,24523,{f:3,c:24530},24546,{f:2,c:24558},24563,14615,24610,24612,14618,24652,24725,24744,141043,24753,24766,24776,24793,24814,24821,24848,24857,24862,24890,14703,24897,24902,24928,141403,{f:2,c:24978},24983,24997,25005,141483,25045,25053,25077,141711,25123,25170,25185,25188,25211,25197,25203,25241,25301,142008,25341,25347,25360,{f:2,c:142159},25394,25397,{f:2,c:25403},25409,25412,25422,142150,25433,142365,142246,25452,25497,142372,25492,25533,{f:2,c:25556},25568,{f:2,c:25579},25586,25630,25637,25641,25647,25690,25693,25715,25725,25735,25745,25759,{f:2,c:25803},25813,25815,142817,25828,25855,14958,25871,25876,14963,25886,25906,25924,25940,25963,25978,25988,25994,26034,26037,26040,26047,26057,26068,15062,26105,26108,26116,26120,26145,26154,26181,26193,26190,15082,143811,143861,143798,26218,{f:2,c:26220},26235,26240,26256,26258,15118,26285,26289,26293,15130,15132,15063,26369,26386,144242,26393,144339,144338,26445,26452,26461,144336,144356,144341,26484,144346,26514,144351,33635,26640,26563,26568,26578,26587,26615,144458,144465,144459,26648,26655,26669,144485,26675,26683,26686,26693,26697,26700,26709,26711,15223,26731,26734,26748,26754,26768,26774,15213,{f:3,c:26776},26780,{f:2,c:26794},26804,26811,26875,144612,144730,26819,26821,26828,26841,{f:2,c:26852},26860,26871,26883,26887,15239,144788,15245,26950,26985,26988,27002,27026,15268,27030,27056,27066,27068,27072,27089,144953,144967,144952,27107,{f:2,c:27118},27123,15309,27124,27134,27153,27162,27165,145180,{f:2,c:27186},27199,27209,27258,27214,27218,27236,145164,27275,15344,27297,145252,27307,27325,27334,27348,27344,27357,145407,145383,{f:3,c:27377},27389,145444,27403,{f:3,c:27407},145469,27415,15398,27439,27466,27480,27500,27509,[11934,27514],27521,27547,27566,146072,27581,{f:3,c:27591},27610,{f:2,c:27622},27630,27650,27658,27662,27702,146559,27725,27739,27757,27780,27785,15555,27796,27799,27821,27842,15570,27868,27881,27885,146688,27904,27940,{f:2,c:27942},27751,27951,27964,27995,28e3,28016,{f:2,c:28032},28042,28045,28049,28056,146752,146938,146937,146899,28075,28078,28084,28098,27956,28104,28110,28127,28150,28214,28190,15633,28210,{f:2,c:28232},{f:2,c:28235},28239,{f:2,c:28243},28247,28259,15646,28307,28327,28340,28355,28469,28395,28409,28411,28426,28428,28440,28453,28470,28476,147326,28498,28503,28512,28520,28560,28566,28606,28575,28581,28591,15716,{f:2,c:28616},28649,147606,28668,28672,28682,28707,147715,28730,28739,28743,28747,15770,28773,28777,28782,28790,28806,28823,147910,28831,28849,147966,28908,28874,28881,28931,28934,28936,28940,15808,28975,29008,29011,29022,15828,29078,29056,29083,29088,29090,{f:2,c:29102},148412,29145,29148,29191,15877,29236,29241,29250,29271,29283,149033,{f:2,c:29294},29304,29311,29326,149157,29358,29360,29377,15968,29388,15974,15976,29427,29434,29447,29458,{f:2,c:29464},16003,29497,29484,29491,29501,29522,16020,29547,149654,{f:2,c:29550},29553,29569,29578,29588,29592,29596,29605,29625,29631,29637,29643,29665,29671,29689,29715,29690,29697,29779,29760,29763,29778,29789,29825,29832,150093,29842,29847,29849,29857,29861,29866,29881,29883,29882,29910,29912,29931,150358,29946,150383,29984,29988,29994,16215,150550,{f:2,c:30013},30016,30024,30032,30034,30066,30065,30074,{f:2,c:30077},30092,16245,30114,16247,30128,30135,{f:2,c:30143},30150,30159,30163,30173,{f:2,c:30175},30183,30190,30193,30211,30232,30215,30223,16302,151054,30227,{f:2,c:30235},151095,30245,30248,30268,30259,151146,16329,30273,151179,30281,30293,16343,30318,30357,30369,30368,{f:2,c:30375},30383,151626,30409,151637,30440,151842,30487,30490,30509,30517,151977,16441,152037,152013,30552,152094,30588,152140,16472,30618,30623,30626,30628,{f:2,c:30686},30692,30698,30700,30715,152622,30725,30729,30733,30745,30764,30791,30826,152793,30858,30868,30884,30877,30879,30907,30933,30950,{f:2,c:30969},30974,152999,30992,31003,31013,31050,31064,16645,31079,31090,31125,31137,31145,31156,31170,31175,{f:2,c:31180},31190,16712,153513,153524,16719,31242,31253,31259,16739,31288,31303,31318,31321,31324,31327,31335,31338,31349,31362,31370,31376,31404,154068,16820,31417,31422,16831,31436,31464,31476,154340,154339,154353,31549,31530,{f:2,c:31534},16870,16883,31615,31553,16878,31573,31609,31588,31590,31603,154546,16903,31632,31643,16910,31669,31676,31685,31690,154699,154724,31700,31702,31706,31722,31728,31747,31758,31813,31818,31831,31838,31841,31849,31855,155182,155222,155237,31910,155234,{f:2,c:31926},155352,31940,155330,31949,155368,155427,31974,155484,31989,32003,17094,32018,32030,155616,155604,{f:2,c:32061},32064,32071,155660,155643,17110,32090,32106,32112,17117,32127,155671,32136,32151,155744,32157,32167,32170,32182,32192,32215,32217,32230,17154,155885,64088,32272,32279,32285,32295,32300,32325,32373,32382,{f:2,c:32390},17195,32410,17219,32572,32571,32574,32579,13505,156272,156294,{f:2,c:32611},32621,{f:2,c:32637},32656,20859,146702,32662,32668,32685,156674,32707,32719,32739,32754,32778,32776,32790,32812,32816,32835,32870,32891,32921,32924,32932,32935,32952,157310,32965,32981,32998,33037,33013,33019,17390,33077,33054,17392,33060,33063,33068,157469,33085,17416,33129,17431,17436,33157,17442,33176,33202,33217,33219,33238,33243,157917,33252,157930,33260,33277,33279,158063,33284,158173,33305,33314,158238,33340,33353,33349,158296,17526,17530,33367,158348,33372,33379,158391,17553,33405,33407,33411,33418,33427,{f:2,c:33447},33458,33460,33466,33468,33506,33512,33527,{f:2,c:33543},33548,33620,33563,33565,33584,33596,33604,33623,17598,17620,17587,{f:2,c:33684},33691,33693,33737,33744,33748,33757,33765,33785,33813,158835,33815,33849,33871,{f:2,c:33873},{f:2,c:33881},33884,158941,33893,33912,33916,33921,17677,33943,33958,33982,17672,{f:2,c:33998},34003,159333,34023,34026,34031,34033,34042,34075,{f:2,c:34084},34091,34127,34159,17731,34129,{f:2,c:34145},159636,34171,34173,34175,34177,34182,34195,34205,34207,159736,{f:2,c:159734},34236,34247,34250,{f:2,c:34264},34271,34273,34278,34294,34304,34321,34334,34337,34340,34343,160013,34361,34364,160057,34368,34387,34390,34423,34439,34441,{f:2,c:34460},34481,34483,34497,34499,34513,34517,34519,34531,34534,17848,34565,34567,34574,34576,34591,34593,34595,34609,34618,34624,34627,34641,34648,{f:2,c:34660},34674,34684,160731,160730,34727,34697,34699,34707,34720,160766,17893,34750,160784,34753,34766,34783,160841,34787,{f:2,c:34789},34794,34835,34856,34862,34866,34876,17935,34890,34904,161301,161300,34921,161329,34927,34976,35004,35008,161427,35025,35027,17985,35073,161550,35127,161571,35138,35141,35145,161618,35170,35209,35216,35231,35248,35255,35288,35307,18081,35315,35325,35327,18095,35345,35348,162181,35361,35381,35390,35397,35405,35416,35502,35472,35511,35543,35580,162436,35594,35589,35597,35612,35629,18188,35665,35678,35702,35713,35723,{f:2,c:35732},35897,162739,35901,162750,162759,35909,35919,35927,35945,35949,163e3,35987,35986,35993,18276,35995,36054,36053,163232,36081,163344,36105,36110,36296,36313,36364,18429,36349,36358,163978,36372,36374,{f:2,c:36385},36391,164027,18454,36406,36409,36436,36450,36461,36463,36504,36510,36533,36539,164482,18510,164595,36608,36616,36651,36672,36682,36696,164876,36772,36788,164949,36801,36806,64036,36810,36813,36819,36821,36849,36853,36859,36876,36919,165227,36931,36957,{f:2,c:165320},36997,37004,37008,37025,18613,37040,37046,37059,37064,165591,37084,37087,165626,37110,37106,37120,37099,{f:2,c:37118},37124,37126,37144,37150,37175,37177,{f:2,c:37190},37207,37209,37236,37241,37253,37299,37302,{f:2,c:37315},166217,166214,37356,37377,{f:2,c:37398},166251,37442,37450,37462,37473,37477,37480,166280,{f:2,c:37500},37503,37513,37517,37527,37529,37535,37547,{f:2,c:166330},37554,{f:2,c:37567},37574,37582,37605,37649,166430,166441,37623,37673,166513,166467,37713,37722,37739,37745,37747,37793,166553,166605,37768,37771,37775,37790,37877,166628,166621,37873,37831,37852,37863,37897,{f:2,c:37910},37883,37938,37947,166849,166895,37997,37999,38265,38278,{f:2,c:38284},167184,167281,38344,167419,167455,38444,{f:2,c:38451},167478,38460,38497,167561,38530,167659,38554,167730,18919,38579,38586,38589,18938,167928,38616,38618,38621,18948,38676,38691,18985,38710,38721,38727,38743,38747,38762,168608,168625,38806,38814,{f:2,c:38833},38846,38860,38865,38868,38872,38881,38897,38916,38925,38932,38934,19132,169104,{f:2,c:38962},38949,38983,39014,39083,39085,39088,169423,39095,{f:2,c:39099},39106,39111,39115,39137,39139,39146,{f:2,c:39152},39155,39176,19259,169712,{f:2,c:39190},169753,{f:3,c:39194},169808,39217,{f:3,c:39226},39233,39238,39246,39264,39331,39334,39357,39359,39363,39380,39385,39390,170182,39408,39417,39420,39434,39441,39450,39456,39473,39492,39500,39512,19394,39599,19402,39607,19410,39609,170610,39622,39632,39634,39637,39648,39653,39657,39692,39696,39698,39702,39708,39723,39741,19488,39755,39779,39781,{f:2,c:39787},{f:2,c:39798},39846,39852,171483,39858,39864,39870,39923,39896,39901,39914,39919,39918,171541,171658,171593,39958,{f:3,c:39960},39965,39970,39977,171716,39985,39991,40005,40028,171753,{f:2,c:40009},171739,40020,40024,40027,40029,40031,{f:3,c:40041},{f:2,c:40045},40050,40053,40058,40166,40178,40203,[171982,171991],40209,{f:2,c:40215},172079,19652,172058,40242,19665,40266,40287,40290,172281,172162,40307,{f:2,c:40310},40324,40345,40353,40383,40373,40377,40381,40393,40410,40416,40419,19719,40458,40450,40461,40476,40571,139800,40576,40581,40603,172940,40637,173111,40671,40703,40706,19831,40707,40762,40765,40774,40787,40789,40792,173553,40797,173570,40809,40813,40816,173746,11948,13844,14509,15820,16348,17854,17936,19326,19512,19681,19980,{f:2,c:20003},20089,20211,20236,20249,20267,20270,20273,20356,20382,20407,20484,20492,20556,20575,20578,20599,20622,20638,20642,20675,20712,20721,20734,20743,{f:3,c:20748},20787,20792,20852,20868,20920,20922,20936,20943,20945,{f:2,c:20947},20952,20959,20997,21030,21032,21035,{f:2,c:21041},21045,21052,21082,21088,21102,{f:2,c:21112},21130,21132,21217,21225,21233,21251,21265,21279,21293,21298,21309,21349,21357,21369,21374,21396,21401,21418,21423,21434,21441,{f:2,c:21444},21472,21523,21546,21553,{f:2,c:21556},21580,21671,21674,21681,21691,21710,21738,21756,21765,21768,21781,21799,21802,21814,21841,21862,21903,21906,21908,21924,21938,21955,21958,21971,21979,21996,21998,22001,22006,22008,22021,22029,{f:2,c:22033},22060,22069,22073,22093,22100,22149,22175,22182,22199,22220,22223,22233,22241,22251,22253,22257,22279,22284,{f:2,c:22298},22301,22316,22318,{f:2,c:22333},22367,22379,22381,22394,22403,22423,22446,22485,22503,22541,22566,22605,22607,22623,22637,22655,22657,22680,22716,22815,22819,22873,22905,22935,22959,22963,23007,23025,23032,23218,23224,23274,23286,23323,23325,23329,23352,23479,23511,23520,23583,23594,23596,23606,23641,23644,23661,23773,23809,23860,23869,23897,23934,23939,24007,24057,24104,24114,24117,24155,24168,24170,24183,24192,24203,24243,24253,24273,{f:2,c:24276},24397,24492,24554,24583,24649,24660,24679,24763,24772,24829,24842,24854,24874,24886,24926,24932,24955,24957,24959,24989,25016,25052,25058,25061,25064,25092,25095,25137,25145,25149,25210,25232,25256,25306,25332,25366,25386,25398,25414,25419,25427,25457,25461,25471,25474,25482,{f:2,c:25518},25578,{f:2,c:25592},25618,25624,25632,25636,25642,25653,25661,25663,25682,25695,25716,25744,{f:2,c:25752},25772,25779,25837,25840,25883,25887,25902,25929,25952,26002,26005,26036,26046,26056,26062,26064,26079,26238,{f:2,c:26251},26291,26304,26319,26405,26421,26453,26496,26511,26513,26532,26545,26549,26558,26664,26758,26859,26869,26903,26931,26936,26971,26981,27048,27051,27055,27109,27121,27210,27221,27239,27249,27311,{f:2,c:27336},27395,27451,27455,{f:2,c:27517},27568,27639,27641,27652,27657,27661,27692,27722,27730,27732,27769,27820,27828,27858,28001,28028,28089,28144,28229,28275,28283,28285,28297,28348,{f:2,c:28378},28454,28457,28464,28551,28573,28590,28599,28685,28704,28745,28824,28848,{f:2,c:28885},28997,29106,29172,29207,29215,29251,{f:2,c:29263},29274,29280,29288,29303,29316,29385,29413,29428,29442,29451,29470,29474,{f:2,c:29498},29517,29528,29543,29810,29871,29919,29924,29940,29947,29974,29985,30015,30046,30105,30116,30145,30148,30156,30167,30172,30177,30191,30212,30220,30237,30258,30264,30277,30282,30303,30381,30397,30425,30443,30448,30457,30464,30478,30498,30504,30511,30521,30526,30533,30538,30543,30558,30564,30567,30572,30596,{f:2,c:30604},30614,30631,30639,30647,30654,30665,30673,30681,30705,30775,30812,30846,30872,30881,30897,30899,30921,30931,30988,31007,{f:2,c:31015},31039,31042,31060,31083,31100,31147,31172,31210,31234,31244,31280,31290,31300,31360,31366,31380,31413,31421,31486,31531,31607,31648,31660,31664,31720,31730,31736,31740,31742,31753,31784,31791,31810,{f:2,c:31826},{f:3,c:31835},31858,31869,31879,31902,31930,31943,31955,31962,32060,32077,32130,32133,32141,32145,32158,32179,32185,32208,32229,{f:2,c:32245},32303,32310,32324,32367,32376,32385,32573,32603,32605,32613,32625,{f:2,c:32639},32651,32674,{f:3,c:32765},32775,32781,32798,32825,32904,32910,32975,32980,33005,33008,33015,33018,33022,33027,33047,33072,33111,33135,33139,33163,33168,33179,33182,33227,33237,{f:2,c:33245},33249,33263,33270,33280,33291,{f:2,c:33299},33306,33338,33348,33389,33412,33417,33425,33450,33456,33488,33514,33519,33526,33622,33656,33784,33788,33880,33939,33969,33981,34043,34118,34134,34141,34181,34200,34370,34374,34496,34580,34594,34606,34617,34653,34683,34700,34702,{f:2,c:34711},34718,34723,34734,34751,34761,34778,34840,34843,34861,34874,34885,34891,34894,34901,34906,34926,{f:3,c:34970},35021,35040,35055,{f:2,c:35086},35110,35125,35162,35164,35179,35184,35196,35237,35253,35260,35285,35401,35415,35431,35454,35462,35478,35510,35529,35537,35549,35564,35573,35590,35599,35601,35653,35666,35693,35704,35708,35710,35717,35743,35915,35923,35963,36026,36037,36041,36050,36076,36085,36087,36097,36099,36119,36124,36206,36241,36255,36267,36274,36309,36327,{f:2,c:36337},36340,36353,36363,36390,36401,{f:2,c:36416},36429,36431,36444,36449,36457,36465,36469,36471,36489,36496,36501,36506,36519,36521,36525,36584,36592,36615,36632,36645,36647,36652,36661,36666,36675,36679,36689,36693,{f:3,c:36768},36773,36868,36891,36911,36940,36955,36976,36980,36985,37003,37016,37024,37042,37053,37065,37104,37125,37157,37210,37223,37242,37258,37265,37269,37296,37307,37309,37314,37317,37376,37385,37411,37494,37518,37551,{f:2,c:37563},37569,37571,37573,37576,37652,37683,37686,37720,37759,37762,37770,37819,37836,37862,37881,37890,{f:2,c:37901},37934,37964,38280,38305,38335,38342,38345,{f:2,c:38353},38368,38372,38374,38436,38449,38456,38461,38484,38516,38523,38527,38529,38531,38537,38550,38574,38659,38683,{f:2,c:38689},38696,38705,38759,38774,38781,38783,38809,38815,38828,38841,38861,38880,38895,38919,38950,38958,{f:2,c:39010},39092,39109,39170,39185,39189,39221,39240,39252,39262,39393,39436,39440,39459,39489,39505,{f:2,c:39613},39681,39689,39691,{f:2,c:39693},39705,39733,39752,39765,39784,39808,39814,39824,39837,39856,39871,39880,39935,39938,39964,39989,40004,40022,40033,40040,40240,40253,40298,40315,40421,40425,40435,40570,{f:3,c:40578},40624,40676,40688,40690,40713,40719,40724,40731,40738,40742,{f:2,c:40746},40756,40794,40815,40862,40869,131317,151044,151538,163187,194581,194630,194713,194726,194789,195038,13790,{s:4},172722,0,0,131416,{s:4},132529,0,0,132844,{s:6},134488,{s:21},154060,{s:9},14756,14776,142914,0,0,14940,0,0,143339,0,0,162228,0,15044,15051,{s:5},14981,{s:8},15347,27384,{s:5},15665,{s:9},147531,0,15936,14497,{s:34},158878,{s:12},18207,162876,{s:4},18462,{s:71},39709,39724,20482,20958,21255,23532,63784,26142,63785,28746,64021,21857,27706,31328,156492,34819,38315,38741,171581,173594],"Adobe-Korea1":[{f:95,c:32},8361,8208,169,0,0,[12288,12644],{f:2,c:12289},12539,8229,[8230,8943],168,12291,{f:2,c:8211},8214,65340,65374,{f:2,c:8216},{f:2,c:8220},{f:2,c:12308},{f:10,c:12296},177,215,247,8800,{f:2,c:8804},8734,8756,176,{f:2,c:8242},8451,8491,{f:2,c:65504},65509,9794,9792,8736,8869,8978,8706,8711,8801,8786,167,8251,9734,9733,9675,9679,9678,9671,9670,9633,9632,9651,9650,9661,9660,8594,{f:2,c:8592},{f:2,c:8595},12307,171,187,8730,8765,8733,8757,{f:2,c:8747},8712,8715,{f:2,c:8838},{f:2,c:8834},8746,8745,{f:2,c:8743},65506,8658,8660,8704,8707,180,732,711,728,733,730,729,184,731,161,191,8758,8750,8721,8719,164,8457,8240,9665,9664,9655,9654,9828,{f:2,c:9824},9829,9831,9827,9673,9672,9635,{f:2,c:9680},9618,{f:2,c:9636},9640,9639,9638,9641,9832,9743,9742,9756,9758,182,{f:2,c:8224},8597,8599,8601,8598,8600,9837,{f:2,c:9833},9836,12927,12828,8470,13255,8482,13250,13272,8481,{f:59,c:65281},65510,{f:33,c:65341},65507,{f:51,c:12593},{f:42,c:12645},{f:10,c:8560},{f:10,c:8544},{f:17,c:913},{f:7,c:931},{f:17,c:945},{f:7,c:963},9472,9474,9484,9488,9496,9492,9500,9516,9508,9524,9532,9473,9475,9487,9491,9499,9495,9507,9523,9515,9531,9547,9504,9519,9512,9527,9535,9501,9520,9509,9528,9538,9490,9489,9498,9497,9494,9493,9486,9485,{f:2,c:9502},{f:2,c:9505},{f:2,c:9510},{f:2,c:9513},{f:2,c:9517},{f:2,c:9521},{f:2,c:9525},{f:2,c:9529},{f:2,c:9533},{f:2,c:9536},{f:8,c:9539},{f:3,c:13205},8467,13208,13252,{f:4,c:13219},{f:10,c:13209},13258,{f:3,c:13197},13263,{f:2,c:13192},13256,{f:2,c:13223},{f:10,c:13232},{f:5,c:13184},{f:6,c:13242},{f:5,c:13200},8486,{f:2,c:13248},{f:3,c:13194},13270,13253,{f:3,c:13229},13275,{f:4,c:13225},13277,13264,13267,13251,13257,13276,13254,198,208,170,294,306,319,321,216,338,186,222,358,330,{f:28,c:12896},{f:26,c:9424},{f:15,c:9312},189,{f:2,c:8531},188,190,{f:4,c:8539},230,273,240,295,305,307,312,320,322,248,339,223,254,359,331,329,{f:28,c:12800},{f:26,c:9372},{f:15,c:9332},185,{f:2,c:178},8308,8319,{f:4,c:8321},{f:83,c:12353},{f:86,c:12449},{f:6,c:1040},1025,{f:32,c:1046},1105,{f:26,c:1078},{f:2,c:44032},44036,{f:4,c:44039},{f:8,c:44048},{f:5,c:44057},44064,44068,{f:2,c:44076},{f:3,c:44079},{f:2,c:44088},44092,44096,44107,44109,44116,44120,44124,{f:2,c:44144},44148,{f:2,c:44151},44154,{f:2,c:44160},{f:4,c:44163},{f:4,c:44169},44176,44180,{f:2,c:44188},{f:3,c:44191},{f:3,c:44200},44204,{f:2,c:44207},{f:2,c:44216},{f:3,c:44219},44225,44228,44232,44236,44245,44247,{f:2,c:44256},44260,{f:2,c:44263},44266,44268,{f:3,c:44271},44275,{f:2,c:44277},{f:2,c:44284},44288,44292,44294,{f:2,c:44300},44303,44305,44312,44316,44320,44329,{f:2,c:44332},{f:2,c:44340},44344,44348,{f:2,c:44356},44359,44361,44368,44372,44376,44385,44387,{f:2,c:44396},44400,{f:4,c:44403},{f:3,c:44411},44415,{f:2,c:44417},{f:2,c:44424},44428,44432,{f:2,c:44444},44452,44471,{f:2,c:44480},44484,44488,{f:2,c:44496},44499,44508,44512,44516,{f:2,c:44536},44540,{f:3,c:44543},{f:2,c:44552},44555,44557,44564,{f:2,c:44592},44596,{f:2,c:44599},44602,{f:2,c:44608},44611,{f:2,c:44613},44618,{f:3,c:44620},44624,44628,44630,{f:2,c:44636},{f:3,c:44639},44645,{f:2,c:44648},44652,44656,{f:2,c:44664},{f:3,c:44667},{f:2,c:44676},44684,{f:3,c:44732},44736,44740,{f:2,c:44748},{f:3,c:44751},{f:2,c:44760},44764,44776,44779,44781,44788,44792,44796,{f:2,c:44807},44813,44816,{f:2,c:44844},44848,44850,44852,{f:2,c:44860},44863,{f:3,c:44865},{f:2,c:44872},44880,{f:2,c:44892},{f:2,c:44900},44921,44928,44932,44936,{f:2,c:44944},44949,44956,{f:2,c:44984},44988,44992,{f:3,c:44999},45003,{f:2,c:45005},45012,45020,{f:2,c:45032},{f:2,c:45040},45044,45048,{f:2,c:45056},45060,45068,45072,45076,{f:2,c:45084},45096,{f:2,c:45124},45128,45130,45132,45134,{f:3,c:45139},45143,45145,45149,{f:2,c:45180},45184,45188,{f:2,c:45196},45199,45201,{f:3,c:45208},45212,{f:4,c:45215},{f:2,c:45224},{f:5,c:45227},45233,{f:3,c:45235},45240,45244,{f:2,c:45252},{f:3,c:45255},{f:2,c:45264},45268,45272,45280,45285,{f:2,c:45320},{f:2,c:45323},45328,{f:2,c:45330},{f:2,c:45336},{f:3,c:45339},{f:3,c:45347},45352,45356,{f:2,c:45364},{f:3,c:45367},{f:2,c:45376},45380,45384,{f:2,c:45392},{f:2,c:45396},45400,45404,45408,{f:2,c:45432},45436,45440,45442,{f:2,c:45448},45451,45453,{f:3,c:45458},45464,45468,45480,45516,45520,45524,{f:2,c:45532},45535,{f:2,c:45544},45548,45552,45561,45563,45565,{f:2,c:45572},45576,{f:2,c:45579},{f:2,c:45588},45591,45593,45600,45620,45628,45656,45660,45664,{f:2,c:45672},{f:2,c:45684},45692,{f:2,c:45700},45705,{f:2,c:45712},45716,{f:3,c:45720},{f:2,c:45728},45731,{f:2,c:45733},45738,45740,45744,45748,{f:2,c:45768},45772,45776,45778,{f:2,c:45784},45787,45789,45794,{f:3,c:45796},45800,{f:5,c:45803},{f:3,c:45811},{f:5,c:45815},{f:3,c:45823},45828,45832,{f:2,c:45840},{f:3,c:45843},45852,{f:3,c:45908},45912,{f:2,c:45915},{f:2,c:45918},{f:2,c:45924},45927,45929,45931,45934,{f:2,c:45936},45940,45944,{f:2,c:45952},{f:3,c:45955},45964,45968,45972,{f:2,c:45984},45992,45996,{f:2,c:46020},46024,{f:2,c:46027},46030,46032,{f:2,c:46036},46039,46041,46043,46045,46048,46052,46056,46076,46096,46104,46108,46112,{f:2,c:46120},46123,46132,{f:2,c:46160},46164,46168,{f:2,c:46176},46179,46181,46188,46208,46216,46237,46244,46248,46252,46261,46263,46265,46272,46276,46280,46288,46293,{f:2,c:46300},46304,{f:2,c:46307},46310,{f:2,c:46316},46319,46321,46328,{f:2,c:46356},46360,{f:2,c:46363},{f:2,c:46372},{f:4,c:46375},{f:2,c:46384},46388,46392,{f:2,c:46400},{f:3,c:46403},{f:3,c:46411},46416,46420,{f:2,c:46428},{f:3,c:46431},{f:2,c:46496},46500,46504,{f:2,c:46506},{f:2,c:46512},{f:3,c:46515},{f:3,c:46523},46528,46532,{f:2,c:46540},{f:3,c:46543},46552,46572,{f:2,c:46608},46612,46616,46629,46636,46644,46664,46692,46696,{f:2,c:46748},46752,46756,{f:2,c:46763},46769,46804,46832,46836,46840,{f:2,c:46848},46853,{f:2,c:46888},46892,{f:2,c:46895},{f:2,c:46904},46907,46916,46920,46924,{f:2,c:46932},46944,46948,46952,{f:2,c:46960},46963,46965,{f:2,c:46972},46976,46980,{f:2,c:46988},{f:4,c:46991},{f:4,c:46998},47004,47008,{f:2,c:47016},{f:3,c:47019},{f:2,c:47028},47032,47047,47049,{f:2,c:47084},47088,47092,{f:2,c:47100},{f:3,c:47103},{f:3,c:47111},47116,47120,{f:2,c:47128},47131,47133,{f:2,c:47140},47144,47148,{f:2,c:47156},{f:3,c:47159},47168,47172,47185,47187,{f:2,c:47196},47200,47204,{f:2,c:47212},47215,47217,47224,47228,47245,47272,47280,47284,47288,{f:2,c:47296},47299,47301,47308,47312,47316,47325,47327,47329,{f:2,c:47336},47340,47344,{f:2,c:47352},47355,47357,47364,47384,47392,{f:2,c:47420},47424,47428,47436,47439,47441,{f:2,c:47448},47452,47456,{f:2,c:47464},47467,47469,{f:2,c:47476},47480,47484,{f:2,c:47492},47495,{f:2,c:47497},{f:2,c:47501},{f:2,c:47532},47536,47540,{f:2,c:47548},47551,47553,{f:2,c:47560},47564,{f:5,c:47566},{f:2,c:47576},47579,{f:2,c:47581},47585,{f:3,c:47587},47592,47596,{f:2,c:47604},{f:4,c:47607},{f:2,c:47616},47624,47637,{f:2,c:47672},47676,47680,47682,{f:2,c:47688},47691,{f:2,c:47693},{f:3,c:47699},47704,47708,{f:2,c:47716},{f:3,c:47719},{f:2,c:47728},47732,47736,{f:3,c:47747},47751,47756,{f:2,c:47784},{f:2,c:47787},47792,47794,{f:2,c:47800},47803,47805,47812,47816,{f:2,c:47832},47868,47872,47876,47885,47887,47889,47896,47900,47904,47913,47915,{f:3,c:47924},47928,{f:4,c:47931},{f:2,c:47940},47943,47945,47949,{f:2,c:47951},47956,47960,47969,47971,47980,48008,48012,48016,48036,48040,48044,48052,48055,48064,48068,48072,48080,48083,{f:2,c:48120},48124,{f:2,c:48127},48130,{f:2,c:48136},{f:3,c:48139},48143,48145,{f:5,c:48148},{f:5,c:48155},{f:2,c:48164},48167,48169,48173,{f:2,c:48176},48180,48184,{f:2,c:48192},{f:3,c:48195},48201,{f:2,c:48204},48208,48221,{f:2,c:48260},48264,{f:2,c:48267},48270,{f:2,c:48276},48279,{f:2,c:48281},{f:2,c:48288},48292,{f:2,c:48295},{f:2,c:48304},{f:3,c:48307},{f:2,c:48316},48320,48324,48333,{f:3,c:48335},48341,48344,48348,{f:3,c:48372},48376,48380,{f:2,c:48388},48391,48393,48400,48404,48420,48428,48448,{f:2,c:48456},48460,48464,{f:2,c:48472},48484,48488,{f:2,c:48512},48516,{f:4,c:48519},{f:2,c:48528},48531,48533,{f:2,c:48537},48540,48548,48560,48568,{f:2,c:48596},48600,48604,48617,48624,48628,48632,48640,48643,48645,{f:2,c:48652},48656,48660,{f:2,c:48668},48671,{f:2,c:48708},48712,48716,48718,{f:2,c:48724},48727,{f:3,c:48729},{f:2,c:48736},48740,48744,48746,{f:2,c:48752},{f:3,c:48755},{f:3,c:48763},48768,48772,{f:2,c:48780},{f:3,c:48783},{f:2,c:48792},48808,{f:2,c:48848},48852,{f:2,c:48855},48864,{f:3,c:48867},48876,48897,{f:2,c:48904},{f:2,c:48920},{f:3,c:48923},{f:2,c:48960},48964,48968,{f:2,c:48976},48981,49044,49072,49093,{f:2,c:49100},49104,49108,49116,49119,49121,49212,49233,49240,49244,49248,{f:2,c:49256},{f:2,c:49296},49300,49304,{f:2,c:49312},49315,49317,{f:2,c:49324},{f:2,c:49327},{f:4,c:49331},{f:2,c:49340},{f:3,c:49343},49349,{f:2,c:49352},49356,49360,{f:2,c:49368},{f:3,c:49371},{f:2,c:49380},49384,49388,{f:2,c:49396},49399,49401,49408,49412,49416,49424,49429,{f:5,c:49436},{f:2,c:49443},{f:2,c:49446},{f:2,c:49452},{f:3,c:49455},49462,{f:2,c:49464},49468,49472,{f:2,c:49480},{f:3,c:49483},{f:2,c:49492},49496,49500,{f:2,c:49508},{f:3,c:49511},49520,49524,49528,49541,{f:3,c:49548},49552,49556,49558,{f:2,c:49564},49567,49569,49573,{f:2,c:49576},49580,49584,49597,49604,49608,49612,49620,{f:2,c:49623},49632,49636,49640,{f:2,c:49648},49651,{f:2,c:49660},49664,49668,{f:2,c:49676},49679,49681,{f:2,c:49688},49692,{f:2,c:49695},{f:2,c:49704},49707,49709,49711,{f:2,c:49713},49716,49736,{f:2,c:49744},49748,49752,49760,49765,{f:2,c:49772},49776,49780,{f:2,c:49788},49791,49793,{f:2,c:49800},49808,49816,49819,49821,{f:2,c:49828},49832,{f:2,c:49836},{f:2,c:49844},49847,49849,{f:2,c:49884},49888,{f:2,c:49891},{f:3,c:49899},49903,49905,49910,{f:2,c:49912},{f:2,c:49915},49920,{f:2,c:49928},{f:2,c:49932},{f:3,c:49939},49944,49948,{f:2,c:49956},{f:2,c:49960},49989,{f:2,c:50024},50028,50032,50034,{f:2,c:50040},{f:2,c:50044},50052,50056,50060,50112,{f:2,c:50136},50140,{f:2,c:50143},50146,{f:2,c:50152},50157,{f:2,c:50164},50168,50184,50192,50212,50220,50224,50228,{f:2,c:50236},50248,{f:2,c:50276},50280,50284,{f:2,c:50292},50297,50304,50324,50332,50360,50364,50409,{f:2,c:50416},50420,50424,50426,{f:3,c:50431},50444,50448,50452,50460,{f:2,c:50472},50476,50480,{f:2,c:50488},50491,50493,{f:2,c:50500},{f:3,c:50504},{f:3,c:50508},{f:3,c:50515},{f:3,c:50519},{f:2,c:50525},{f:2,c:50528},50532,50536,{f:2,c:50544},{f:3,c:50547},{f:2,c:50556},50560,50564,50567,{f:2,c:50572},50575,50577,50581,{f:2,c:50583},50588,50592,50601,{f:2,c:50612},{f:2,c:50616},{f:4,c:50619},{f:7,c:50628},50636,50638,{f:2,c:50640},50644,50648,{f:2,c:50656},50659,50661,{f:3,c:50668},50672,50676,{f:2,c:50678},{f:6,c:50684},{f:4,c:50693},50700,50704,{f:2,c:50712},{f:2,c:50715},{f:2,c:50724},50728,{f:3,c:50732},50736,{f:3,c:50739},50743,50745,50747,{f:2,c:50752},50756,50760,{f:2,c:50768},{f:3,c:50771},{f:2,c:50780},50784,50796,50799,50801,{f:2,c:50808},50812,50816,{f:2,c:50824},50827,50829,{f:2,c:50836},50840,50844,{f:2,c:50852},50855,50857,{f:2,c:50864},50868,{f:3,c:50872},{f:2,c:50880},50883,50885,{f:2,c:50892},50896,50900,{f:2,c:50908},{f:2,c:50912},{f:2,c:50920},50924,50928,{f:2,c:50936},50941,{f:2,c:50948},50952,50956,{f:2,c:50964},50967,50969,{f:2,c:50976},50980,50984,{f:2,c:50992},50995,50997,50999,{f:2,c:51004},51008,51012,51018,{f:2,c:51020},51023,{f:8,c:51025},51036,51040,51048,51051,{f:2,c:51060},51064,{f:3,c:51068},{f:3,c:51075},{f:4,c:51079},51086,{f:2,c:51088},51092,{f:3,c:51094},51098,{f:2,c:51104},{f:4,c:51107},{f:2,c:51116},51120,51124,{f:2,c:51132},{f:3,c:51135},{f:2,c:51144},51148,51150,51152,51160,51165,51172,51176,51180,{f:2,c:51200},51204,51208,51210,{f:2,c:51216},51219,{f:2,c:51221},{f:2,c:51228},51232,51236,{f:2,c:51244},51247,51249,51256,51260,51264,{f:2,c:51272},{f:2,c:51276},51284,{f:2,c:51312},51316,51320,51322,{f:2,c:51328},51331,{f:3,c:51333},{f:3,c:51339},51348,51357,51359,51361,51368,{f:2,c:51388},51396,51400,51404,{f:2,c:51412},51415,51417,{f:2,c:51424},51428,51445,{f:2,c:51452},51456,{f:3,c:51460},{f:2,c:51468},51471,51473,51480,51500,51508,{f:2,c:51536},51540,51544,{f:2,c:51552},51555,51564,51568,51572,51580,{f:2,c:51592},51596,51600,{f:2,c:51608},51611,51613,{f:2,c:51648},51652,{f:2,c:51655},51658,{f:2,c:51664},51667,{f:2,c:51669},{f:2,c:51673},{f:2,c:51676},51680,51682,51684,51687,{f:2,c:51692},{f:3,c:51695},{f:2,c:51704},51708,51712,{f:2,c:51720},{f:3,c:51723},51732,51736,51753,{f:2,c:51788},51792,51796,{f:2,c:51804},{f:3,c:51807},51816,51837,51844,51864,{f:2,c:51900},51904,51908,{f:2,c:51916},51919,51921,51923,{f:2,c:51928},51936,51948,51956,51976,51984,51988,51992,{f:2,c:52e3},52033,{f:2,c:52040},52044,52048,{f:2,c:52056},52061,52068,{f:2,c:52088},52124,52152,52180,52196,52199,52201,{f:2,c:52236},52240,52244,{f:2,c:52252},{f:2,c:52257},{f:3,c:52263},52268,52270,52272,{f:2,c:52280},{f:4,c:52283},{f:2,c:52292},52296,52300,{f:2,c:52308},{f:3,c:52311},52320,52324,52326,52328,52336,52341,{f:2,c:52376},52380,52384,{f:2,c:52392},{f:3,c:52395},{f:2,c:52404},52408,52412,{f:2,c:52420},52423,52425,52432,52436,52452,52460,52464,52481,{f:2,c:52488},52492,52496,{f:2,c:52504},52507,52509,52516,52520,52524,52537,52572,52576,52580,{f:2,c:52588},52591,52593,52600,52616,{f:2,c:52628},52632,52636,{f:2,c:52644},52647,52649,52656,52676,52684,52688,52712,52716,52720,{f:2,c:52728},52731,52733,52740,52744,52748,52756,52761,{f:2,c:52768},52772,52776,{f:2,c:52784},52787,52789,{f:2,c:52824},52828,{f:3,c:52831},{f:2,c:52840},52843,52845,{f:2,c:52852},52856,52860,{f:2,c:52868},52871,52873,{f:2,c:52880},52884,52888,{f:2,c:52896},{f:3,c:52899},{f:2,c:52908},52929,{f:2,c:52964},52968,{f:2,c:52971},{f:2,c:52980},{f:3,c:52983},{f:2,c:52992},52996,53e3,{f:2,c:53008},53011,53013,53020,53024,53028,{f:2,c:53036},{f:3,c:53039},53048,{f:2,c:53076},53080,53084,{f:2,c:53092},53095,53097,{f:2,c:53104},53108,53112,53120,53125,53132,53153,53160,53168,53188,{f:2,c:53216},53220,53224,{f:2,c:53232},53235,53237,53244,53248,53252,53265,53272,53293,{f:2,c:53300},53304,53308,{f:2,c:53316},53319,53321,53328,53332,53336,53344,{f:2,c:53356},53360,53364,{f:2,c:53372},53377,{f:2,c:53412},53416,53420,{f:2,c:53428},53431,53433,{f:2,c:53440},53444,{f:2,c:53448},{f:2,c:53456},{f:3,c:53459},{f:2,c:53468},53472,53476,{f:2,c:53484},{f:3,c:53487},53496,53517,{f:2,c:53552},53556,53560,53562,{f:2,c:53568},{f:3,c:53571},{f:2,c:53580},53584,53588,{f:2,c:53596},53599,53601,53608,53612,53628,53636,53640,{f:2,c:53664},53668,53672,{f:2,c:53680},53683,53685,53690,53692,53696,53720,53748,53752,53767,53769,53776,{f:2,c:53804},53808,53812,{f:2,c:53820},53823,53825,53832,53852,53860,{f:2,c:53888},53892,53896,{f:2,c:53904},53909,53916,53920,53924,53932,53937,{f:2,c:53944},53948,{f:2,c:53951},53954,{f:2,c:53960},53963,53972,53976,53980,{f:2,c:53988},{f:2,c:54e3},54004,54008,{f:2,c:54016},54019,54021,{f:3,c:54028},54032,54036,54038,{f:2,c:54044},{f:3,c:54047},54053,{f:2,c:54056},54060,54064,{f:2,c:54072},{f:3,c:54075},{f:2,c:54084},{f:2,c:54140},54144,54148,{f:2,c:54156},{f:3,c:54159},{f:2,c:54168},54172,54176,{f:2,c:54184},54187,54189,54196,54200,54204,{f:2,c:54212},{f:2,c:54216},54224,54232,54241,54243,{f:2,c:54252},54256,54260,{f:2,c:54268},54271,54273,54280,54301,54336,54340,54364,54368,54372,54381,54383,{f:2,c:54392},54396,{f:2,c:54399},54402,{f:2,c:54408},54411,54413,54420,54441,54476,54480,54484,54492,54495,54504,54508,54512,54520,54523,54525,54532,54536,54540,{f:2,c:54548},54551,{f:2,c:54588},54592,54596,{f:2,c:54604},54607,54609,{f:2,c:54616},54620,54624,54629,{f:2,c:54632},54635,54637,{f:2,c:54644},54648,54652,{f:2,c:54660},{f:3,c:54663},54672,54693,{f:2,c:54728},54732,54736,54738,{f:2,c:54744},54747,54749,{f:2,c:54756},54760,54764,{f:2,c:54772},54775,54777,{f:2,c:54784},54788,54792,{f:2,c:54800},{f:3,c:54803},54812,54816,54820,54829,{f:2,c:54840},54844,54848,54853,{f:2,c:54856},54859,54861,54865,{f:2,c:54868},54872,54876,54887,54889,{f:2,c:54896},54900,54915,54917,{f:2,c:54924},54928,54932,54941,54943,54945,54952,54956,54960,54969,54971,{f:2,c:54980},54984,54988,54993,54996,54999,55001,55008,55012,55016,55024,55029,{f:2,c:55036},55040,55044,55057,{f:2,c:55064},55068,55072,{f:2,c:55080},55083,55085,{f:2,c:55092},55096,55100,55108,55111,55113,{f:2,c:55120},55124,{f:4,c:55126},{f:2,c:55136},55139,55141,55145,55148,55152,55156,{f:2,c:55164},55169,{f:2,c:55176},55180,55184,{f:2,c:55192},55195,55197,20285,20339,20551,20729,21152,21487,21621,21733,22025,23233,23478,26247,{f:2,c:26550},26607,27468,29634,30146,31292,33499,33540,34903,34952,35382,[36040,63747],36303,36603,36838,39381,21051,21364,21508,24682,24932,27580,29647,33050,35258,[12179,35282],38307,20355,21002,22718,22904,23014,[12082,24178],24185,25031,25536,26438,26604,26751,28567,30286,30475,30965,31240,31487,31777,32925,[12169,33390],33393,35563,38291,20075,21917,26359,28212,30883,31469,33883,35088,34638,38824,21208,22350,22570,23884,24863,25022,25121,25954,26577,27204,28187,[12130,29976],30131,30435,30640,32058,37039,{f:2,c:37969},40853,21283,23724,30002,32987,37440,38296,21083,22536,23004,23713,23831,24247,24378,24394,24951,27743,30074,30086,31968,32115,32177,32652,33108,33313,34193,35137,35611,37628,[38477,64009],40007,20171,20215,20491,20977,22607,24887,24894,24936,25913,27114,28433,30117,30342,30422,31623,33445,33995,37799,38283,21888,23458,22353,31923,32697,37301,20520,21435,23621,24040,25298,25454,25818,25831,28192,28844,31067,36317,36382,36989,37445,37624,20094,20214,20581,[12081,24062],24314,24838,26967,33137,34388,36423,37749,39467,20062,20625,26480,26688,20745,21133,21138,27298,30652,37392,40660,21163,24623,36850,20552,25001,25581,25802,26684,27268,28608,33160,35233,38548,22533,29309,[12125,29356],29956,32121,32365,32937,[12178,35211,64010],35700,36963,40273,25225,27770,28500,32080,32570,35363,20860,24906,31645,35609,37463,37772,20140,20435,20510,20670,20742,21185,21197,21375,22384,22659,24218,24465,24950,25004,25806,25964,26223,26299,[26356,63745],26775,28039,28805,28913,29855,29861,29898,30169,30828,30956,31455,31478,32069,32147,32789,32831,33051,33686,35686,36629,36885,37857,38915,38968,39514,39912,20418,21843,22586,[22865,63753],23395,23622,24760,25106,26690,26800,26856,28330,30028,30328,30926,31293,31995,32363,32380,35336,35489,35903,38542,40388,21476,21481,21578,21617,22266,22993,23396,23611,24235,25335,25911,25925,25970,26272,26543,27073,27837,30204,30352,30590,31295,32660,32771,32929,33167,33510,33533,33776,34241,34865,34996,35493,36764,37678,38599,39015,[12220,39640],[12238,40723],21741,26011,26354,26767,31296,[12181,35895],40288,22256,22372,23825,26118,26801,26829,28414,29736,34974,39908,27752,[12219,39592],20379,20844,20849,21151,23380,[12079,24037],24656,24685,25329,25511,25915,29657,31354,34467,36002,38799,[20018,63749],23521,[12093,25096],26524,[12128,29916],31185,33747,35463,35506,36328,36942,37707,38982,[24275,64011],27112,34303,37101,20896,23448,23532,24931,26874,27454,28748,29743,29912,31649,32592,33733,35264,36011,38364,39208,21038,24669,25324,36866,20362,20809,21281,22745,24291,26336,27960,28826,29378,29654,31568,33009,37979,21350,25499,32619,20054,20608,22602,22750,24618,24871,25296,27088,39745,23439,32024,32945,36703,20132,20689,21676,21932,23308,23968,24039,25898,25934,26657,27211,29409,30350,30703,32094,32761,33184,34126,34527,36611,36686,37066,39171,39509,39851,19992,20037,20061,20167,20465,20855,21246,21312,[12061,21475],[21477,63750],21646,22036,22389,22434,23495,23943,24272,25084,25304,25937,26552,26601,27083,27472,27590,27628,27714,28317,28792,29399,29590,29699,30655,30697,31350,32127,32777,[12165,33276],33285,33290,33503,34914,35635,36092,36544,36881,37041,37476,37558,39378,39493,40169,40407,[12244,40860,63751,63752],22283,23616,33738,38816,38827,40628,21531,31384,32676,35033,36557,37089,22528,23624,25496,31391,23470,[12088,24339],31353,31406,33422,36524,20518,21048,21240,21367,22280,25331,25458,27402,28099,30519,21413,29527,34152,36470,38357,26426,27331,28528,35437,36556,39243,26231,27512,36020,[12225,39740],21483,22317,22862,25542,27131,29674,30789,31418,31429,31998,33909,35215,36211,36917,38312,21243,22343,30023,31584,33740,37406,27224,20811,21067,21127,25119,26840,26997,38553,20677,21156,21220,25027,[12100,26020],26681,27135,29822,31563,33465,33771,35250,35641,36817,39241,20170,22935,25810,26129,27278,29748,31105,31165,33449,{f:2,c:34942},35167,37670,20235,21450,24613,25201,27762,32026,32102,20120,20834,30684,32943,20225,20238,20854,20864,21980,22120,22331,22522,22524,22804,22855,22931,23492,23696,23822,[12080,24049],24190,24524,25216,26071,26083,{f:2,c:26398},26462,26827,26820,27231,27450,27683,27773,27778,28103,29592,29734,29738,29826,29859,30072,30079,30849,30959,31041,{f:2,c:31047},31098,31637,32e3,32186,32648,32774,32813,32908,35352,35663,[35912,63744],36215,37665,37668,39138,39249,{f:2,c:39438},39525,40594,32202,20342,21513,25326,26708,[12198,37329,63754],21931,20794,23068,25062,[25295,63835],25343,37027,[35582,63837],26262,29014,38627,25423,25466,21335,26511,26976,28275,30007,32013,34930,22218,23064,20035,20839,[22856,63756],26608,32784,[12069,22899,63873],[24180,63886],[25754,63889],[31178,63893],[24565,63907],24684,25288,[25467,63908],[23527,63839,63914],23511,21162,22900,24361,[24594,63840],29785,39377,28611,33215,36786,24817,33126,[23615,63933],23273,35365,[26491,63944],[32016,63951],33021,23612,[27877,63971],[21311,63979],[28346,63980],22810,[33590,63998],[20025,63838],20150,20294,21934,22296,22727,24406,26039,26086,27264,27573,28237,30701,31471,31774,32222,34507,34962,37170,37723,25787,28606,29562,30136,36948,21846,22349,25018,25812,26311,28129,28251,28525,28601,30192,32835,33213,34113,35203,35527,35674,37663,27795,30035,31572,36367,36957,21776,22530,22616,24162,25095,25758,26848,30070,[31958,64003],34739,40680,20195,22408,22382,[12068,22823],23565,23729,24118,24453,25140,25825,29619,33274,34955,36024,38538,40667,[23429,64004],24503,24755,20498,[12049,20992],21040,22294,22581,22615,23566,23648,23798,23947,[24230,64001],24466,24764,25361,25481,25623,26691,26873,27330,28120,28193,28372,28644,29182,30428,30585,31153,31291,33796,35241,36077,36339,36424,36867,36884,36947,37117,37709,38518,38876,27602,28678,29272,29346,29544,30563,31167,31716,32411,[35712,63834],22697,24775,25958,26109,26302,27788,28958,29129,35930,38931,20077,31361,20189,20908,20941,21205,21516,24999,26481,26704,26847,[27934,64005],28540,30140,30643,31461,33012,33891,37509,20828,[12099,26007],26460,26515,30168,31431,33651,[12182,35910],36887,38957,23663,33216,33434,36929,36975,37389,24471,23965,27225,29128,30331,31561,34276,35588,37159,39472,[21895,63755],[25078,63757],[30313,63758],[32645,63759],[34367,63760],[34746,63761],[35064,63762],[37007,63763],[27931,63765],[28889,63766],[29662,63767],32097,[33853,63768],[37226,63769],[39409,63770],[20098,63771],[21365,63772],[27396,63773],27410,28734,[29211,63774],[34349,63775],[40478,63776],21068,36771,[23888,63777],25829,25900,27414,[28651,63778],31811,32412,[34253,63779],[35172,63780],35261,[25289,63781],[33240,63782],[34847,63783],[24266,63784],[26391,63785],[28010,63786],[29436,63787],29701,29807,34690,[37086,63788],[20358,63789],23821,24480,33802,[20919,63790],[25504,63861],[30053,63862],[20142,63863],20486,[20841,63864],[20937,63865],[26753,63866],27153,31918,31921,[31975,63867],[33391,63868],[35538,63869],36635,[37327,63870],20406,20791,[21237,63871],[21570,63872],[24300,63874],24942,25150,[26053,63875],27354,[28670,63876],[31018,63877],34268,34851,[38317,63878],39522,[39530,63879],[40599,63880],[40654,63881],[12050,21147,63882],[26310,63883],[27511,63884],28701,31019,[36706,63885],38722,[24976,63887],[25088,63888],25891,[28451,63890],[29001,63891],[29833,63892],[32244,63894],[32879,63895],[34030,63897],[36646,63896],[36899,63898],[37706,63899],20925,[21015,63900],[21155,63901],27916,[28872,63903],[35010,63904],[24265,63906],25986,[27566,63909],28610,[31806,63910],[29557,63911],[20196,63912],20278,[22265,63913],23738,[23994,63915],[24604,63916],[29618,63917],31533,[32666,63919],32718,[32838,63920],36894,[37428,63921],[38646,63922],[38728,63923],[38936,63924],40801,[20363,63925],28583,[31150,63926],[37300,63927],[38583,63928],[21214,63791],25736,[25796,63792],[27347,63793],28510,28696,[29200,63794],[30439,63795],[12156,32769,63796],[34310,63797],[34396,63798],[36335,63799],36613,[38706,63800],[39791,63801],[40442,63802],[12228,40565],[30860,63803],[31103,63804],[32160,63805],[33737,63806],[37636,63807],[12229,40575,63808],40595,[35542,63809],[22751,63810],[24324,63811],26407,28711,29903,[31840,63812],[32894,63813],20769,28712,[29282,63814],[30922,63815],[36034,63816],36058,36084,[38647,63817],[20102,63930],[20698,63931],[23534,63932],24278,[26009,63934],[29134,63936],[30274,63937],30637,32842,[34044,63938],[36988,63939],39719,[12243,40845,63940],[22744,63818],23105,[23650,63819],[27155,63820],[28122,63821],[28431,63822],30267,[32047,63823],[32311,63824],34078,35128,37860,[38475,63825],[21129,63943],26066,[26611,63945],27060,[27969,63946],[28316,63947],28687,[29705,63948],29792,[30041,63949],30244,[30827,63950],35628,[39006,63952],[20845,63953],[25134,63954],[38520,63955],20374,[20523,63956],[23833,63957],[28138,63958],32184,[36650,63959],[24459,63960],[24900,63961],[26647,63962],[38534,63964],[21202,63826],[32907,63827],[20956,63828],[20940,63829],26974,[31260,63830],[32190,63831],[33777,63832],[38517,63833],20442,[21033,63965],21400,[21519,63966],21774,[23653,63967],24743,[26446,63969],[26792,63970],28012,29313,29432,[29702,63972],29827,[30178,63973],31852,[32633,63974],32696,33673,[35023,63975],[35041,63976],[12197,37324,63977],37328,[38626,63978],39881,[21533,63981],28542,[29136,63982],[29848,63983],[34298,63984],36522,[38563,63985],[40023,63986],[40607,63987],[26519,63988],[28107,63989],29747,[33256,63990],38678,30764,[12148,31435,63991],[31520,63992],[31890,63993],25705,29802,30194,30908,30952,[12218,39340],39764,[12231,40635],23518,24149,28448,33180,33707,37e3,19975,21325,23081,24018,24398,24930,25405,26217,26364,28415,28459,28771,30622,33836,34067,34875,36627,39237,39995,21788,25273,26411,27819,33545,35178,38778,20129,22916,{f:2,c:24536},26395,32178,32596,33426,33579,33725,36638,37017,22475,22969,23186,23504,26151,26522,26757,27599,29028,32629,36023,36067,36993,39749,33032,35978,38476,39488,[12230,40613],23391,27667,29467,30450,30431,33804,20906,35219,20813,20885,21193,26825,27796,30468,30496,32191,32236,[12207,38754],40629,28357,34065,20901,21517,21629,26126,26269,26919,28319,[12139,30399],30609,33559,33986,34719,37225,37528,40180,34946,20398,20882,21215,22982,24125,24917,{f:2,c:25720},26286,26576,27169,27597,[12113,27611],29279,29281,29761,30520,[12141,30683],32791,33468,33541,35584,35624,35980,[12106,26408],27792,29287,[12140,30446],30566,31302,40361,27519,27794,22818,26406,33945,21359,22675,22937,24287,25551,26164,26483,28218,29483,31447,33495,37672,21209,24043,25006,25035,25098,25287,25771,[12102,26080],26969,27494,[12111,27595],28961,29687,30045,32326,33310,33538,34154,35491,36031,38695,40289,22696,40664,20497,21006,21563,21839,[12098,25991],27766,{f:2,c:32010},32862,34442,[12200,38272],38639,21247,27797,29289,21619,23194,23614,23883,24396,24494,26410,26806,26979,28220,28228,30473,[12150,31859],32654,34183,35598,36855,38753,40692,23735,24758,24845,25003,25935,{f:2,c:26107},27665,27887,29599,29641,32225,38292,23494,34588,35600,21085,21338,25293,25615,25778,26420,27192,27850,29632,29854,31636,31893,32283,33162,33334,34180,36843,38649,39361,20276,21322,21453,21467,25292,25644,25856,26001,27075,27886,28504,29677,30036,30242,30436,30460,30928,[30971,63844],31020,32070,33324,34784,36820,38930,39151,21187,25300,25765,28196,28497,30332,36299,37297,37474,39662,39747,20515,20621,22346,22952,23592,24135,24439,25151,25918,[12101,26041],26049,26121,26507,27036,28354,30917,32033,32938,33152,33323,33459,33953,34444,35370,35607,37030,38450,40848,20493,20467,22521,24472,25308,25490,26479,28227,28953,30403,32972,32986,{f:2,c:35060},35097,36064,36649,37197,38506,20271,20336,24091,26575,26658,[12137,30333],30334,39748,24161,27146,29033,29140,30058,32321,34115,34281,39132,20240,31567,32624,38309,20961,24070,26805,27710,27726,27867,29359,31684,33539,27861,29754,20731,21128,22721,25816,27287,29863,30294,30887,34327,38370,38713,21342,24321,35722,36776,36783,37002,21029,30629,40009,40712,19993,20482,20853,23643,24183,26142,26170,26564,26821,28851,29953,30149,31177,31453,36647,39200,39432,20445,22561,22577,23542,26222,27493,27921,28282,28541,29668,29995,33769,35036,35091,35676,36628,20239,20693,21264,[12056,21340],23443,[24489,63846],26381,31119,33145,33583,34068,35079,35206,36665,[36667,64007],39333,39954,26412,20086,20472,22857,23553,{f:2,c:23791},25447,26834,28925,29090,29739,32299,34028,34562,36898,37586,40179,[19981,63847],20184,20463,20613,21078,21103,21542,21648,22496,22827,23142,23386,23413,23500,24220,25206,25975,26023,28014,28325,[12119,29238],31526,31807,[12152,32566],{f:2,c:33104},33178,33344,33433,33705,35331,36e3,36070,36091,36212,36282,37096,37340,[12201,38428],38468,39385,40167,[21271,63843],20998,21545,22132,22707,22868,22894,24575,24996,25198,26128,27774,28954,30406,31881,31966,32027,33452,36033,38640,20315,24343,24447,25282,23849,26379,26842,30844,32323,40300,19989,20633,[12052,21269],21290,21329,22915,23138,24199,24754,24970,25161,25209,26e3,26503,27047,[12112,27604],{f:3,c:27606},27832,29749,30202,30738,30865,31189,31192,31875,32203,32737,32933,33086,33218,33778,34586,35048,35513,35692,36027,37145,[12206,38750],[12214,39131],[12240,40763],22188,23338,24428,25996,27315,27567,27996,28657,28693,29277,29613,36007,36051,38971,24977,27703,32856,39425,20045,20107,20123,20181,20282,20284,20351,20447,20735,21490,21496,21766,21987,22235,[12064,22763],22882,23057,23531,23546,23556,24051,24107,24473,24605,25448,26012,26031,26614,26619,26797,27515,27801,27863,28195,28681,29509,30722,31038,31040,31072,31169,31721,32023,32114,32902,33293,33678,34001,34503,35039,35408,35422,35613,36060,36198,36781,37034,39164,39391,40605,21066,26388,20632,21034,[12077,23665],25955,27733,29642,29987,30109,31639,33948,37240,38704,20087,25746,[27578,63856],29022,34217,19977,26441,26862,28183,33439,34072,34923,25591,28545,37394,39087,19978,20663,20687,20767,21830,21930,22039,23360,23577,23776,24120,24202,24224,24258,24819,26705,27233,28248,29245,29248,[29376,63994],30456,31077,31665,32724,35059,35316,35443,35937,36062,38684,[22622,63852],29885,36093,21959,31329,[32034,63850],[12170,33394],29298,[12131,29983],29989,31513,22661,22779,23996,24207,24246,24464,24661,25234,25471,25933,26257,26329,26360,26646,26866,29312,29790,31598,32110,32214,32626,32997,33298,34223,35199,35475,36893,37604,[12233,40653],[12239,40736],[12067,22805],22893,24109,24796,26132,26227,26512,27728,28101,28511,[12143,30707],30889,33990,37323,37675,20185,20682,20808,21892,23307,23459,25159,25982,26059,28210,29053,29697,29764,29831,29887,30316,31146,32218,32341,32680,33146,33203,33337,34330,34796,35445,36323,36984,37521,37925,39245,39854,21352,23633,26964,27844,27945,28203,[12166,33292],34203,35131,35373,[35498,63855,63905],38634,40807,21089,26297,27570,32406,34814,36109,38275,38493,25885,28041,29166,22478,22995,23468,24615,24826,25104,26143,26207,29481,29689,30427,[30465,63853],31596,32854,32882,33125,35488,37266,19990,21218,27506,27927,31237,31545,32048,36016,21484,22063,22609,23477,[12073,23567],23569,24034,25152,25475,25620,26157,26803,27836,28040,28335,28703,28836,29138,29990,30095,30094,30233,31505,31712,31787,32032,32057,34092,34157,34311,35380,36877,36961,37045,37559,38902,39479,20439,23660,26463,28049,31903,32396,35606,36118,36895,23403,24061,25613,33984,36956,39137,[29575,63841,63963],23435,24730,26494,28126,35359,35494,36865,38924,21047,28753,30862,37782,34928,37335,20462,21463,22013,22234,22402,22781,23234,23432,23723,23744,24101,24833,25101,[12095,25163],25480,25628,25910,[25976,63849],27193,27530,[12116,27700],27929,28465,29159,29417,29560,29703,29874,30246,30561,31168,31319,31466,31929,32143,32172,32353,32670,33065,33585,33936,34010,34282,34966,35504,35728,36664,36930,36995,37228,37526,37561,38539,{f:2,c:38567},38614,38656,38920,[12216,39318],39635,39706,21460,22654,22809,23408,23487,28113,28506,29087,29729,29881,32901,33789,24033,24455,24490,24642,26092,26642,26991,27219,27529,27957,28147,29667,30462,30636,31565,32020,33059,33308,33600,34036,34147,35426,35524,37255,37662,38918,39348,25100,34899,36848,37477,23815,23847,23913,29791,33181,34664,28629,[25342,63859],32722,35126,35186,19998,20056,20711,21213,21319,25215,26119,32361,34821,38494,20365,21273,22070,22987,23204,[12075,23608],23630,23629,24066,24337,24643,26045,26159,26178,26558,26612,29468,[12142,30690],[12144,31034],32709,33940,33997,35222,35430,35433,35553,[12183,35925],35962,22516,23508,24335,24687,25325,26893,27542,28252,29060,31698,34645,[35672,63996],36606,[12215,39135],39166,20280,20353,20449,21627,23072,23480,24892,26032,26216,29180,30003,31070,32051,33102,[12162,33251],33688,34218,34254,34563,35338,[12189,36523],[12191,36763],36805,22833,23460,23526,24713,23529,23563,[12092,24515],27777,28145,28683,29978,33455,35574,[20160,63997],[12055,21313],38617,[12114,27663],20126,20420,20818,21854,23077,23784,25105,[12123,29273],33469,33706,34558,34905,35357,38463,38597,39187,40201,40285,22538,23731,23997,24132,[24801,63929],24853,25569,[27138,63764,63836,63935],28197,37122,37716,38990,39952,40823,23433,23736,25353,26191,26696,30524,38593,38797,38996,39839,26017,35585,36555,38332,21813,23721,24022,24245,26263,30284,33780,38343,22739,25276,29390,40232,20208,22830,24591,26171,27523,31207,40230,21395,21696,22467,23830,24859,26326,28079,30861,33406,38552,38724,21380,25212,25494,28082,32266,33099,38989,27387,32588,40367,40474,20063,20539,20918,22812,24825,25590,26928,29242,32822,37326,24369,32004,[33509,63860],33903,33979,34277,36493,20335,22756,23363,24665,25562,25880,25965,26264,26954,27171,27915,28673,29036,30162,30221,31155,31344,[12154,32650],35140,35731,37312,38525,39178,22276,24481,26044,28417,30208,31142,35486,39341,[12226,39770],40812,20740,25014,25233,27277,33222,20547,22576,24422,28937,[12180,35328],35578,23420,34326,20474,20796,22196,22852,25513,28153,23978,26989,20870,20104,20313,22914,27487,27741,29877,30998,33287,33349,33593,36671,36701,39192,20134,22495,24441,[26131,63968],30123,32377,35695,36870,39515,22181,22567,23032,23071,23476,24310,25424,25403,26941,27783,27839,28046,28051,28149,28436,28895,28982,29017,29123,29141,30799,30831,31605,32227,32303,34893,36575,37467,40182,24709,28037,29105,38321,21421,26579,28814,28976,29744,33398,33490,38331,39653,40573,26308,29121,[33865,63854],22603,23992,24433,26144,26254,27001,27054,27704,27891,28214,28481,28634,28699,28719,29008,29151,29552,29787,29908,30408,31310,32403,33521,35424,36814,37704,38681,20034,20522,21e3,21473,26355,27757,28618,29450,30591,31330,33454,34269,34306,35028,35427,35709,35947,37555,38675,38928,20116,20237,20425,20658,21320,21566,21555,21978,22626,22714,22887,23067,23524,24735,25034,25942,26111,26212,26791,27738,28595,28879,29100,29522,31613,34568,35492,39986,40711,23627,27779,29508,[12127,29577],37434,28331,29797,30239,31337,32277,34314,20800,22725,25793,29934,29973,30320,32705,37013,38605,39252,28198,[12129,29926],{f:2,c:31401},33253,34521,34680,35355,23113,23436,23451,26785,26880,28003,29609,29715,29740,30871,32233,32747,33048,33109,33694,35916,[38446,63942],38929,[12104,26352],24448,26106,26505,27754,29579,20525,23043,27498,30702,22806,23916,24013,29477,30031,20709,20985,22575,22829,22934,23002,23525,23970,25303,25622,25747,25854,26332,27208,29183,29796,31368,31407,32327,32350,32768,33136,34799,35201,35616,36953,36992,39250,24958,27442,28020,32287,35109,36785,20433,20653,20887,21191,22471,22665,23481,24248,24898,27029,28044,28263,28342,29076,29794,[12132,29992],29996,32883,33592,33993,36362,37780,37854,20110,20305,20598,20778,[12060,21448],21451,21491,23431,23507,23588,24858,24962,26100,[12124,29275],29591,29760,30402,31056,31121,31161,32006,[12155,32701],33419,34261,34398,36802,36935,37109,37354,38533,[12204,38632],38633,21206,24423,26093,26161,26671,29020,31286,37057,38922,20113,27218,27550,28560,29065,32792,33464,34131,36939,38549,38642,38907,34074,39729,20112,29066,38596,20803,21407,21729,22291,22290,22435,23195,23236,23491,24616,24895,25588,27781,27961,28274,28304,29232,29503,29783,33489,34945,36677,36960,38498,39e3,40219,[12105,26376],36234,37470,20301,20553,20702,21361,22285,22996,23041,23561,24944,26256,28205,29234,29771,32239,32963,33806,33894,34111,34655,34907,35096,35586,36949,[12209,38859],39759,20083,20369,20754,20842,21807,21929,23418,23461,{f:2,c:24188},24254,24736,24799,{f:2,c:24840},25540,25912,26377,26580,26586,{f:2,c:26977},27833,27943,28216,28641,{f:2,c:29494},29788,30001,30290,32173,33278,33848,35029,35480,35547,35565,36400,36418,36938,36926,36986,[12195,37193],37321,37742,22537,27603,[12161,32905],32946,20801,22891,23609,28516,29607,32996,36103,37399,38287,[12160,32895],25102,28700,32104,34701,22432,24681,24903,27575,35518,37504,38577,[12036,20057],21535,28139,34093,38512,[12211,38899],39150,25558,27875,[12194,37009],20957,25033,33210,40441,20381,20506,20736,23452,24847,25087,25836,26885,27589,30097,30691,32681,33380,34191,34811,[12176,34915],35516,35696,37291,[12038,20108],20197,20234,22839,23016,24050,24347,24411,24609,29246,29669,[30064,63842],30157,31227,[12157,32780],[12159,32819],32900,33505,33617,36029,36019,36999,39156,39180,28727,30410,32714,32716,32764,35610,[12040,20154],20161,20995,21360,[21693,63902],22240,23035,23493,24341,24525,28270,32106,33589,34451,35469,38765,38775,[12032,19968],20314,20350,22777,[12103,26085],28322,36920,37808,39353,20219,22764,22922,23001,24641,31252,33615,36035,[12042,20837],21316,20173,21097,23381,33471,20180,[21050,63999],21672,22985,23039,[12070,23376],23383,23388,24675,24904,28363,[28825,63995],29038,29574,29943,30133,30913,32043,32773,[12163,33258],33576,34071,34249,35566,36039,38604,20316,21242,22204,26027,26152,28796,28856,29237,32189,33421,37196,38592,40306,23409,26855,27544,28538,30430,23697,26283,28507,31668,31786,34870,38620,19976,20183,21280,22580,22715,22767,22892,23559,24115,24196,24373,25484,26290,26454,27167,27299,27404,28479,29254,29520,29835,31456,31911,33144,33247,33255,33674,33900,34083,34196,34255,35037,36115,37292,[12199,38263],38556,20877,21705,22312,23472,25165,26448,26685,26771,28221,28371,28797,32289,35009,36001,36617,40779,40782,29229,31631,35533,37658,20295,20302,20786,21632,22992,24213,25269,26485,26990,27159,27822,28186,29401,29482,30141,31672,32053,33511,33785,33879,34295,35419,36015,36487,36889,37048,38606,40799,21219,21514,23265,23490,25688,25973,28404,29380,30340,31309,31515,31821,32318,32735,33659,35627,36042,[12186,36196],36321,36447,36842,36857,36969,37841,20291,20346,20659,20840,20856,21069,21098,22625,22652,22880,23560,23637,24283,24731,25136,26643,27583,27656,28593,29006,29728,[12133,3e4],30008,30033,30322,31564,31627,31661,31686,32399,35438,36670,36681,37439,37523,37666,37931,38651,39002,39019,39198,[20999,64e3],25130,25240,27993,30308,31434,31680,32118,21344,23742,24215,28472,28857,31896,38673,39822,40670,25509,25722,34678,19969,20117,20141,20572,20597,21576,22979,23450,24128,24237,24311,24449,24773,25402,25919,25972,26060,26230,26232,26622,26984,27273,27491,27712,28096,28136,28191,28254,28702,28833,29582,29693,30010,30555,30855,31118,31243,31357,31934,32142,33351,35330,35562,35998,37165,37194,37336,37478,37580,37664,38662,38742,38748,38914,[12237,40718],21046,21137,21884,22564,24093,24351,24716,25552,26799,28639,31085,31532,33229,34234,35069,35576,36420,37261,38500,38555,38717,38988,[12241,40778],20430,20806,20939,21161,22066,24340,24427,25514,25805,26089,26177,26362,26361,26397,26781,26839,27133,28437,28526,29031,29157,[12118,29226],29866,30522,31062,31066,31199,31264,31381,31895,31967,32068,32368,32903,34299,34468,35412,35519,36249,36481,36896,36973,37347,38459,38613,[12227,40165],26063,31751,[12188,36275],37827,23384,23562,21330,25305,29469,20519,23447,24478,24752,24939,26837,28121,29742,31278,32066,32156,32305,33131,36394,36405,37758,37912,20304,22352,24038,24231,25387,32618,20027,20303,20367,20570,23005,32964,21610,21608,22014,22863,23449,24030,24282,26205,26417,26609,26666,27880,27954,28234,28557,28855,29664,30087,31820,32002,32044,32162,[12168,33311],34523,35387,35461,[12187,36208],36490,36659,36913,37198,37202,37956,39376,[12149,31481],31909,20426,20737,20934,22472,23535,23803,26201,27197,27994,28310,28652,28940,30063,31459,34850,36897,36981,38603,39423,33537,20013,20210,34886,37325,21373,27355,26987,27713,33914,22686,24974,26366,25327,28893,29969,30151,32338,33976,35657,36104,20043,21482,21675,22320,22336,24535,25345,25351,25711,[12096,25903],26088,26234,26525,26547,[12108,27490],27744,27802,28460,30693,30757,31049,31063,32025,32930,33026,[12164,33267],33437,33463,34584,35468,36100,36286,36978,30452,31257,31287,32340,32887,21767,21972,22645,25391,25634,26185,26187,26733,27035,27524,27941,28337,29645,29800,29857,30043,30137,30433,30494,30603,31206,32265,32285,33275,34095,34967,35386,36049,36587,[12192,36784,63857],36914,37805,38499,38515,38663,20356,21489,23018,23241,24089,26702,29894,30142,31209,31378,33187,34541,36074,36300,36845,26015,26389,22519,28503,32221,36655,37878,38598,24501,25074,28548,19988,20376,20511,21449,21983,23919,24046,27425,27492,30923,31642,36425,[12190,36554,63746],36974,25417,25662,30528,31364,37679,38015,40810,25776,28591,29158,29864,29914,31428,31762,32386,31922,32408,35738,36106,38013,39184,39244,21049,23519,25830,26413,32046,20717,[21443,63851],22649,{f:2,c:24920},25082,26028,31449,35730,35734,20489,20513,21109,21809,23100,24288,24432,24884,25950,26124,26166,26274,27085,28356,28466,29462,30241,31379,33081,33369,33750,33980,20661,22512,23488,23528,24425,25505,30758,32181,33756,34081,37319,37365,20874,26613,31574,36012,20932,22971,24765,34389,20508,21076,23610,24957,25114,[25299,64002],25842,26021,28364,30240,33034,36448,38495,38587,20191,21315,21912,22825,24029,25797,27849,28154,29588,31359,[12167,33307],34214,36068,36368,36983,37351,38369,38433,38854,20984,21746,21894,24505,25764,28552,32180,36639,36685,37941,20681,23574,27838,28155,29979,30651,31805,31844,35449,35522,22558,22974,24086,25463,29266,30090,30571,35548,36028,36626,24307,26228,28152,32893,33729,35531,[12205,38737],39894,21059,26367,28053,28399,32224,35558,36910,36958,39636,21021,21119,21736,24980,25220,25307,26786,26898,26970,27189,28818,28966,30813,30977,30990,31186,31245,32918,[12171,33400],33493,33609,34121,35970,36229,37218,37259,37294,20419,22225,29165,30679,34560,35320,[12072,23544],24534,26449,37032,21474,22618,23541,24740,24961,25696,32317,32880,34085,37507,25774,20652,23828,26368,22684,25277,25512,26894,27e3,27166,28267,30394,31179,33467,33833,35535,36264,36861,37138,37195,37276,37648,37656,37786,38619,39478,39949,19985,30044,31069,31482,31569,31689,32302,33988,36441,36468,36600,36880,26149,26943,29763,20986,26414,40668,20805,24544,27798,34802,34909,34935,24756,33205,33795,36101,21462,21561,22068,23094,23601,28810,32736,32858,33030,33261,36259,37257,39519,40434,20596,20164,21408,24827,28204,23652,20360,20516,21988,23769,24159,24677,26772,27835,28100,29118,30164,30196,30305,31258,31305,32199,32251,32622,33268,34473,36636,38601,39347,[12242,40786],21063,21189,39149,35242,19971,26578,28422,20405,23522,26517,[27784,63858],28024,29723,30759,37341,37756,34756,31204,31281,24555,20182,21668,21822,22702,22949,24816,25171,25302,26422,26965,33333,38464,39345,39389,20524,21331,21828,22396,25176,25826,26219,26589,28609,28655,29730,29752,35351,37944,21585,22022,22374,24392,24986,27470,28760,28845,32187,35477,22890,33067,25506,30472,32829,36010,22612,25645,27067,23445,24081,28271,34153,20812,21488,22826,24608,24907,27526,27760,27888,31518,32974,33492,36294,37040,39089,25799,28580,25745,25860,20814,21520,[12063,22303],35342,24927,26742,30171,31570,32113,36890,22534,27084,33151,35114,36864,38969,20600,22871,22956,25237,36879,39722,24925,29305,38358,22369,23110,24052,25226,25773,25850,26487,27874,27966,29228,29750,30772,32631,33453,36315,38935,21028,22338,26495,29256,29923,36009,36774,37393,38442,[12043,20843],21485,25420,20329,21764,24726,25943,27803,28031,29260,29437,31255,35207,[12185,35997],24429,28558,28921,33192,24846,[20415,63845],20559,25153,[12122,29255],31687,32232,32745,36941,38829,39449,36022,22378,24179,26544,33805,35413,21536,23318,24163,24290,24330,25987,32954,34109,38281,38491,20296,21253,21261,21263,21638,21754,22275,24067,24598,25243,25265,25429,27873,28006,30129,30770,32990,33071,33502,33889,33970,34957,35090,36875,37610,39165,39825,24133,[26292,64006],26333,28689,29190,20469,21117,24426,24915,26451,27161,28418,29922,31080,34920,35961,39111,39108,39491,21697,31263,26963,35575,35914,[12213,39080],39342,24444,25259,30130,[12138,30382],34987,36991,38466,21305,24380,24517,[27852,63848],29644,30050,[12134,30091],31558,33534,39325,20047,36924,19979,20309,21414,22799,24264,26160,27827,29781,33655,34662,36032,36944,38686,39957,22737,23416,34384,35604,40372,23506,24680,24717,26097,27735,28450,28579,28698,32597,32752,{f:2,c:38289},38480,38867,21106,36676,20989,21547,21688,21859,21898,27323,28085,32216,33382,37532,38519,40569,21512,21704,30418,34532,38308,38356,38492,20130,20233,23022,23270,24055,24658,25239,26477,26689,27782,28207,32568,32923,33322,38917,20133,20565,21683,22419,22874,23401,23475,25032,26999,28023,28707,34809,35299,35442,35559,36994,39405,39608,21182,26680,20502,24184,26447,33607,[12175,34892,64008],20139,21521,22190,29670,37141,38911,39177,39255,[12217,39321],22099,22687,34395,35377,25010,27382,29563,36562,27463,38570,39511,22869,29184,36203,[12208,38761],20436,23796,24358,25080,26203,27883,28843,[12126,29572],29625,29694,30505,30541,32067,32098,32291,33335,34898,36066,37449,39023,23377,[12147,31348],[12174,34880],[12212,38913],23244,20448,21332,22846,23805,25406,28025,29433,33029,33031,33698,37583,38960,20136,20804,21009,22411,24418,27842,28366,28677,28752,28847,29074,29673,[29801,63918],33610,34722,34913,36872,37026,37795,39336,20846,24407,24800,24935,26291,34137,36426,37295,38795,20046,20114,21628,22741,22778,22909,23733,24359,[12094,25142],25160,26122,26215,27627,28009,28111,28246,28408,28564,28640,28649,28765,29392,29733,29786,29920,30355,31068,31946,32286,32993,33446,33899,33983,34382,34399,34676,35703,35946,37804,38912,39013,24785,25110,37239,23130,26127,28151,28222,29759,39746,24573,24794,31503,21700,24344,27742,27859,27946,28888,32005,34425,35340,40251,21270,21644,23301,27194,[12117,28779],30069,31117,[12146,31166],33457,33775,35441,35649,36008,38772,25844,25899,{f:2,c:30906},31339,20024,21914,22864,23462,24187,24739,25563,27489,26213,26707,28185,29029,29872,32008,36996,39529,39973,27963,[28369,63748],29502,35905,38346,20976,24140,24488,24653,24822,24880,24908,{f:2,c:26179},27045,27841,28255,28361,28514,29004,29852,30343,31681,31783,33618,34647,36945,38541,[12232,40643],21295,22238,24315,24458,24674,24724,25079,26214,26371,27292,28142,28590,28784,29546,32362,33214,33588,34516,35496,36036,21123,29554,23446,27243,37892,21742,22150,23389,25928,25989,26313,26783,28045,28102,[12120,29243],32948,37237,39501,20399,20505,21402,21518,21564,21897,21957,24127,24460,26429,29030,29661,36869,21211,21235,22628,22734,28932,29071,29179,34224,35347,[26248,63941],34216,21927,26244,29002,33841,21321,21913,27585,24409,24509,25582,26249,28999,35569,36637,40638,20241,25658,28875,30054,34407,24676,35662,40440,20807,20982,21256,27958,33016,[12234,40657],26133,27427,28824,30165,21507,23673,32007,35350,[12107,27424],27453,27462,21560,24688,27965,32725,33288,20694,20958,21916,22123,22221,23020,23305,24076,24985,24984,25137,26206,26342,29081,{f:2,c:29113},29351,31143,31232,32690,35440,{s:163},{f:4,c:12310},{s:14},8223,8219,{f:2,c:8314},{s:7},8316,0,{f:2,c:8317},{s:23},700,{s:44},8942,8759,{s:20},{f:10,c:10122},{s:36},{f:26,c:9398},{s:61},{f:2,c:8826},{f:2,c:8910},{f:2,c:8832},{f:4,c:8816},0,8842,0,8843,{f:2,c:8822},8825,{f:2,c:8922},{s:5},8773,8771,8776,0,8868,{s:78},8244,{s:11},9839,{s:4},8258,{s:4},10045,0,0,8226,{s:4},{f:2,c:8249},{s:16},10010,10006,0,9711,{s:3},10070,0,9676,{s:24},9775,{s:6},12320,0,{f:10,c:10102},{s:17},12306,12342,{s:13},8710,0,8735,0,{f:2,c:8741},0,8787,8785,{f:2,c:8806},8723,{f:3,c:8853},0,8980,0,0,8802,0,9649,0,8738,8784,0,0,8867,0,0,{f:2,c:8814},8837,8836,8713,8716,{f:2,c:8891},8794,8966,{s:6},12958,0,8252,{s:11},9702,{s:3},9663,9653,9657,9667,{s:4},9674,12849,12857,13259,{f:5,c:9327},{s:18},8656,8655,8653,{s:37},8657,8659,{s:8},8626,8625,0,8628,8624,8627,{s:14},8636,8640,{s:10},{f:2,c:8644},{s:144},{f:5,c:9347},{s:33},12948,{s:15},12965,{s:93},8672,8674,8673,8675,{s:4},8678,8680,8679,8681,{s:20},9757,9759,{s:76},12944,{f:6,c:12938},{s:15},{f:2,c:12318},8246,0,8245,{s:3},12540,0,0,{f:2,c:44034},{f:2,c:44037},{f:5,c:44043},44056,{f:2,c:44062},{f:3,c:44065},{f:7,c:44069},44078,{f:6,c:44082},{f:2,c:44090},{f:3,c:44093},{f:10,c:44097},44108,{f:6,c:44110},{f:3,c:44117},{f:3,c:44121},{f:19,c:44125},{f:2,c:44146},{f:2,c:44149},44153,{f:5,c:44155},44162,{f:2,c:44167},{f:3,c:44173},{f:3,c:44177},{f:7,c:44181},44190,{f:6,c:44194},44203,{f:2,c:44205},{f:7,c:44209},44218,{f:3,c:44222},{f:2,c:44226},{f:3,c:44229},{f:3,c:44233},{f:8,c:44237},44246,{f:8,c:44248},{f:2,c:44258},{f:2,c:44261},44265,44267,{f:2,c:44269},44274,44276,{f:5,c:44279},{f:2,c:44286},{f:3,c:44289},44293,{f:5,c:44295},44302,44304,{f:6,c:44306},{f:3,c:44313},{f:3,c:44317},{f:8,c:44321},{f:2,c:44330},{f:6,c:44334},{f:2,c:44342},{f:3,c:44345},{f:7,c:44349},44358,44360,{f:6,c:44362},{f:3,c:44369},{f:3,c:44373},{f:8,c:44377},44386,{f:8,c:44388},{f:2,c:44398},{f:2,c:44401},{f:4,c:44407},44414,44416,{f:5,c:44419},{f:2,c:44426},{f:3,c:44429},{f:11,c:44433},{f:6,c:44446},{f:18,c:44453},{f:8,c:44472},{f:2,c:44482},{f:3,c:44485},{f:7,c:44489},44498,{f:8,c:44500},{f:3,c:44509},{f:3,c:44513},{f:19,c:44517},{f:2,c:44538},{f:2,c:44541},{f:6,c:44546},44554,44556,{f:6,c:44558},{f:27,c:44565},{f:2,c:44594},{f:2,c:44597},44601,{f:5,c:44603},44610,44612,{f:3,c:44615},44619,44623,{f:3,c:44625},44629,{f:5,c:44631},44638,{f:3,c:44642},{f:2,c:44646},{f:2,c:44650},{f:3,c:44653},{f:7,c:44657},44666,{f:6,c:44670},{f:6,c:44678},{f:47,c:44685},44735,{f:3,c:44737},{f:7,c:44741},44750,{f:6,c:44754},{f:2,c:44762},{f:11,c:44765},{f:2,c:44777},44780,{f:6,c:44782},{f:3,c:44789},{f:3,c:44793},{f:10,c:44797},{f:4,c:44809},{f:2,c:44814},{f:27,c:44817},{f:2,c:44846},44849,44851,{f:7,c:44853},44862,44864,{f:4,c:44868},{f:6,c:44874},{f:11,c:44881},{f:6,c:44894},{f:19,c:44902},{f:6,c:44922},{f:3,c:44929},{f:3,c:44933},{f:7,c:44937},{f:3,c:44946},{f:6,c:44950},{f:27,c:44957},{f:2,c:44986},{f:3,c:44989},{f:6,c:44993},45002,45004,{f:5,c:45007},{f:7,c:45013},{f:11,c:45021},{f:6,c:45034},{f:2,c:45042},{f:3,c:45045},{f:7,c:45049},{f:2,c:45058},{f:7,c:45061},{f:3,c:45069},{f:3,c:45073},{f:7,c:45077},{f:10,c:45086},{f:27,c:45097},{f:2,c:45126},45129,45131,45133,{f:4,c:45135},45142,45144,{f:3,c:45146},{f:30,c:45150},{f:2,c:45182},{f:3,c:45185},{f:7,c:45189},45198,45200,{f:6,c:45202},45211,{f:2,c:45213},{f:5,c:45219},45226,45232,45234,{f:2,c:45238},{f:3,c:45241},{f:7,c:45245},45254,{f:6,c:45258},{f:2,c:45266},{f:3,c:45269},{f:7,c:45273},{f:4,c:45281},{f:34,c:45286},45322,{f:3,c:45325},45329,{f:4,c:45332},45338,{f:5,c:45342},{f:2,c:45350},{f:3,c:45353},{f:7,c:45357},45366,{f:6,c:45370},{f:2,c:45378},{f:3,c:45381},{f:7,c:45385},{f:2,c:45394},{f:2,c:45398},{f:3,c:45401},{f:3,c:45405},{f:23,c:45409},{f:2,c:45434},{f:3,c:45437},45441,{f:5,c:45443},45450,45452,{f:4,c:45454},{f:3,c:45461},{f:3,c:45465},{f:11,c:45469},{f:35,c:45481},{f:3,c:45517},{f:3,c:45521},{f:7,c:45525},45534,{f:8,c:45536},{f:2,c:45546},{f:3,c:45549},{f:8,c:45553},45562,45564,{f:6,c:45566},{f:2,c:45574},{f:2,c:45577},{f:7,c:45581},45590,45592,{f:6,c:45594},{f:19,c:45601},{f:7,c:45621},{f:27,c:45629},{f:3,c:45657},{f:3,c:45661},{f:7,c:45665},{f:10,c:45674},{f:6,c:45686},{f:7,c:45693},{f:3,c:45702},{f:6,c:45706},{f:2,c:45714},{f:3,c:45717},{f:5,c:45723},45730,45732,{f:3,c:45735},45739,{f:3,c:45741},{f:3,c:45745},{f:19,c:45749},{f:2,c:45770},{f:3,c:45773},45777,{f:5,c:45779},45786,45788,{f:4,c:45790},45795,45799,{f:2,c:45801},{f:3,c:45808},45814,{f:3,c:45820},{f:2,c:45826},{f:3,c:45829},{f:7,c:45833},45842,{f:6,c:45846},{f:55,c:45853},45911,{f:2,c:45913},45917,{f:4,c:45920},45926,45928,45930,{f:2,c:45932},45935,{f:2,c:45938},{f:3,c:45941},{f:7,c:45945},45954,{f:6,c:45958},{f:3,c:45965},{f:3,c:45969},{f:11,c:45973},{f:6,c:45986},{f:3,c:45993},{f:23,c:45997},{f:2,c:46022},{f:2,c:46025},46029,46031,{f:3,c:46033},46038,46040,46042,46044,{f:2,c:46046},{f:3,c:46049},{f:3,c:46053},{f:19,c:46057},{f:19,c:46077},{f:7,c:46097},{f:3,c:46105},{f:3,c:46109},{f:7,c:46113},46122,{f:8,c:46124},{f:27,c:46133},{f:2,c:46162},{f:3,c:46165},{f:7,c:46169},46178,46180,{f:6,c:46182},{f:19,c:46189},{f:7,c:46209},{f:20,c:46217},{f:6,c:46238},{f:3,c:46245},{f:3,c:46249},{f:8,c:46253},46262,46264,{f:6,c:46266},{f:3,c:46273},{f:3,c:46277},{f:7,c:46281},{f:4,c:46289},{f:6,c:46294},{f:2,c:46302},{f:2,c:46305},46309,{f:5,c:46311},46318,46320,{f:6,c:46322},{f:27,c:46329},{f:2,c:46358},{f:2,c:46361},{f:7,c:46365},46374,{f:5,c:46379},{f:2,c:46386},{f:3,c:46389},{f:7,c:46393},46402,{f:5,c:46406},{f:2,c:46414},{f:3,c:46417},{f:7,c:46421},46430,{f:62,c:46434},{f:2,c:46498},{f:3,c:46501},46505,{f:4,c:46508},46514,{f:5,c:46518},{f:2,c:46526},{f:3,c:46529},{f:7,c:46533},46542,{f:6,c:46546},{f:19,c:46553},{f:35,c:46573},{f:2,c:46610},{f:3,c:46613},{f:12,c:46617},{f:6,c:46630},{f:7,c:46637},{f:19,c:46645},{f:27,c:46665},{f:3,c:46693},{f:51,c:46697},{f:2,c:46750},{f:3,c:46753},{f:6,c:46757},{f:4,c:46765},{f:34,c:46770},{f:27,c:46805},{f:3,c:46833},{f:3,c:46837},{f:7,c:46841},{f:3,c:46850},{f:34,c:46854},{f:2,c:46890},{f:2,c:46893},{f:7,c:46897},46906,{f:8,c:46908},{f:3,c:46917},{f:3,c:46921},{f:7,c:46925},{f:10,c:46934},{f:3,c:46945},{f:3,c:46949},{f:7,c:46953},46962,46964,{f:6,c:46966},{f:2,c:46974},{f:3,c:46977},{f:7,c:46981},46990,{f:3,c:46995},{f:2,c:47002},{f:3,c:47005},{f:7,c:47009},47018,{f:6,c:47022},{f:2,c:47030},{f:14,c:47033},47048,{f:34,c:47050},{f:2,c:47086},{f:3,c:47089},{f:7,c:47093},47102,{f:5,c:47106},{f:2,c:47114},{f:3,c:47117},{f:7,c:47121},47130,47132,{f:6,c:47134},{f:2,c:47142},{f:3,c:47145},{f:7,c:47149},47158,{f:6,c:47162},{f:3,c:47169},{f:12,c:47173},47186,{f:8,c:47188},{f:2,c:47198},{f:3,c:47201},{f:7,c:47205},47214,47216,{f:6,c:47218},{f:3,c:47225},{f:16,c:47229},{f:26,c:47246},{f:7,c:47273},{f:3,c:47281},{f:3,c:47285},{f:7,c:47289},47298,47300,{f:6,c:47302},{f:3,c:47309},{f:3,c:47313},{f:8,c:47317},47326,47328,{f:6,c:47330},{f:2,c:47338},{f:3,c:47341},{f:7,c:47345},47354,47356,{f:6,c:47358},{f:19,c:47365},{f:7,c:47385},{f:27,c:47393},{f:2,c:47422},{f:3,c:47425},{f:7,c:47429},{f:2,c:47437},47440,{f:6,c:47442},{f:2,c:47450},{f:3,c:47453},{f:7,c:47457},47466,47468,{f:6,c:47470},{f:2,c:47478},{f:3,c:47481},{f:7,c:47485},47494,47496,{f:2,c:47499},{f:29,c:47503},{f:2,c:47534},{f:3,c:47537},{f:7,c:47541},47550,47552,{f:6,c:47554},{f:2,c:47562},47565,{f:5,c:47571},47578,47580,{f:2,c:47583},47586,{f:2,c:47590},{f:3,c:47593},{f:7,c:47597},47606,{f:5,c:47611},{f:6,c:47618},{f:12,c:47625},{f:34,c:47638},{f:2,c:47674},{f:3,c:47677},47681,{f:5,c:47683},47690,47692,{f:4,c:47695},{f:2,c:47702},{f:3,c:47705},{f:7,c:47709},47718,{f:6,c:47722},{f:2,c:47730},{f:3,c:47733},{f:10,c:47737},47750,{f:4,c:47752},{f:27,c:47757},47786,{f:3,c:47789},47793,{f:5,c:47795},47802,47804,{f:6,c:47806},{f:3,c:47813},{f:15,c:47817},{f:34,c:47834},{f:3,c:47869},{f:3,c:47873},{f:8,c:47877},47886,47888,{f:6,c:47890},{f:3,c:47897},{f:3,c:47901},{f:8,c:47905},47914,{f:8,c:47916},47927,{f:2,c:47929},{f:5,c:47935},47942,47944,{f:3,c:47946},47950,{f:3,c:47953},{f:3,c:47957},{f:8,c:47961},47970,{f:8,c:47972},{f:27,c:47981},{f:3,c:48009},{f:3,c:48013},{f:19,c:48017},{f:3,c:48037},{f:3,c:48041},{f:7,c:48045},{f:2,c:48053},{f:8,c:48056},{f:3,c:48065},{f:3,c:48069},{f:7,c:48073},{f:2,c:48081},{f:36,c:48084},{f:2,c:48122},{f:2,c:48125},48129,{f:5,c:48131},48138,48142,48144,{f:2,c:48146},{f:2,c:48153},{f:4,c:48160},48166,48168,{f:3,c:48170},{f:2,c:48174},{f:2,c:48178},{f:3,c:48181},{f:7,c:48185},48194,{f:3,c:48198},{f:2,c:48202},{f:2,c:48206},{f:12,c:48209},{f:38,c:48222},{f:2,c:48262},{f:2,c:48265},48269,{f:5,c:48271},48278,48280,{f:5,c:48283},{f:2,c:48290},{f:2,c:48293},{f:7,c:48297},48306,{f:6,c:48310},{f:2,c:48318},{f:3,c:48321},{f:8,c:48325},48334,{f:3,c:48338},{f:2,c:48342},{f:3,c:48345},{f:23,c:48349},48375,{f:3,c:48377},{f:7,c:48381},48390,48392,{f:6,c:48394},{f:3,c:48401},{f:15,c:48405},{f:7,c:48421},{f:19,c:48429},{f:7,c:48449},{f:2,c:48458},{f:3,c:48461},{f:7,c:48465},{f:10,c:48474},{f:3,c:48485},{f:23,c:48489},{f:2,c:48514},{f:2,c:48517},{f:5,c:48523},48530,48532,{f:3,c:48534},48539,{f:7,c:48541},{f:11,c:48549},{f:7,c:48561},{f:27,c:48569},{f:2,c:48598},{f:3,c:48601},{f:12,c:48605},{f:6,c:48618},{f:3,c:48625},{f:3,c:48629},{f:7,c:48633},{f:2,c:48641},48644,{f:6,c:48646},{f:2,c:48654},{f:3,c:48657},{f:7,c:48661},48670,{f:36,c:48672},{f:2,c:48710},{f:3,c:48713},48717,{f:5,c:48719},48726,48728,{f:4,c:48732},{f:2,c:48738},{f:3,c:48741},48745,{f:5,c:48747},48754,{f:5,c:48758},{f:2,c:48766},{f:3,c:48769},{f:7,c:48773},48782,{f:6,c:48786},{f:14,c:48794},{f:39,c:48809},{f:2,c:48850},{f:2,c:48853},{f:7,c:48857},{f:2,c:48865},{f:6,c:48870},{f:20,c:48877},{f:6,c:48898},{f:14,c:48906},48922,{f:34,c:48926},{f:2,c:48962},{f:3,c:48965},{f:7,c:48969},{f:3,c:48978},{f:62,c:48982},{f:27,c:49045},{f:20,c:49073},{f:6,c:49094},{f:2,c:49102},{f:3,c:49105},{f:7,c:49109},{f:2,c:49117},49120,{f:90,c:49122},{f:20,c:49213},{f:6,c:49234},{f:3,c:49241},{f:3,c:49245},{f:7,c:49249},{f:38,c:49258},{f:2,c:49298},{f:3,c:49301},{f:7,c:49305},49314,49316,{f:6,c:49318},49326,{f:2,c:49329},{f:5,c:49335},49342,{f:3,c:49346},{f:2,c:49350},{f:2,c:49354},{f:3,c:49357},{f:7,c:49361},49370,{f:6,c:49374},{f:2,c:49382},{f:3,c:49385},{f:7,c:49389},49398,49400,{f:6,c:49402},{f:3,c:49409},{f:3,c:49413},{f:7,c:49417},{f:4,c:49425},{f:6,c:49430},{f:2,c:49441},49445,{f:4,c:49448},49454,{f:4,c:49458},49463,{f:2,c:49466},{f:3,c:49469},{f:7,c:49473},49482,{f:6,c:49486},{f:2,c:49494},{f:3,c:49497},{f:7,c:49501},49510,{f:6,c:49514},{f:3,c:49521},{f:3,c:49525},{f:12,c:49529},{f:6,c:49542},49551,{f:3,c:49553},49557,{f:5,c:49559},49566,49568,{f:3,c:49570},{f:2,c:49574},{f:2,c:49578},{f:3,c:49581},{f:12,c:49585},{f:6,c:49598},{f:3,c:49605},{f:3,c:49609},{f:7,c:49613},{f:2,c:49621},{f:7,c:49625},{f:3,c:49633},{f:3,c:49637},{f:7,c:49641},49650,{f:8,c:49652},{f:2,c:49662},{f:3,c:49665},{f:7,c:49669},49678,49680,{f:6,c:49682},{f:2,c:49690},{f:2,c:49693},{f:7,c:49697},49706,49708,49710,49712,49715,{f:19,c:49717},{f:7,c:49737},{f:2,c:49746},{f:3,c:49749},{f:7,c:49753},{f:4,c:49761},{f:6,c:49766},{f:2,c:49774},{f:3,c:49777},{f:7,c:49781},49790,49792,{f:6,c:49794},{f:6,c:49802},{f:7,c:49809},{f:2,c:49817},49820,{f:6,c:49822},{f:2,c:49830},{f:3,c:49833},{f:6,c:49838},49846,49848,{f:34,c:49850},{f:2,c:49886},{f:2,c:49889},{f:6,c:49893},49902,49904,{f:4,c:49906},49911,49914,{f:3,c:49917},{f:7,c:49921},{f:2,c:49930},{f:5,c:49934},{f:2,c:49942},{f:3,c:49945},{f:7,c:49949},{f:2,c:49958},{f:27,c:49962},{f:34,c:49990},{f:2,c:50026},{f:3,c:50029},50033,{f:5,c:50035},{f:2,c:50042},{f:6,c:50046},{f:3,c:50053},{f:3,c:50057},{f:51,c:50061},{f:23,c:50113},{f:2,c:50138},{f:2,c:50141},50145,{f:5,c:50147},{f:3,c:50154},{f:6,c:50158},{f:2,c:50166},{f:15,c:50169},{f:7,c:50185},{f:19,c:50193},{f:7,c:50213},{f:3,c:50221},{f:3,c:50225},{f:7,c:50229},{f:10,c:50238},{f:27,c:50249},{f:2,c:50278},{f:3,c:50281},{f:7,c:50285},{f:3,c:50294},{f:6,c:50298},{f:19,c:50305},{f:7,c:50325},{f:27,c:50333},{f:3,c:50361},{f:44,c:50365},{f:6,c:50410},{f:2,c:50418},{f:3,c:50421},50425,{f:4,c:50427},{f:10,c:50434},{f:3,c:50445},{f:3,c:50449},{f:7,c:50453},{f:11,c:50461},{f:2,c:50474},{f:3,c:50477},{f:7,c:50481},50490,50492,{f:6,c:50494},{f:2,c:50502},50507,{f:4,c:50511},50518,{f:3,c:50522},50527,{f:2,c:50530},{f:3,c:50533},{f:7,c:50537},50546,{f:6,c:50550},{f:2,c:50558},{f:3,c:50561},{f:2,c:50565},{f:4,c:50568},50574,50576,{f:3,c:50578},50582,{f:3,c:50585},{f:3,c:50589},{f:8,c:50593},{f:10,c:50602},{f:2,c:50614},50618,{f:5,c:50623},50635,50637,50639,{f:2,c:50642},{f:3,c:50645},{f:7,c:50649},50658,50660,{f:6,c:50662},50671,{f:3,c:50673},50677,{f:4,c:50680},{f:3,c:50690},{f:3,c:50697},{f:3,c:50701},{f:7,c:50705},50714,{f:7,c:50717},{f:2,c:50726},{f:3,c:50729},50735,{f:2,c:50737},50742,50744,50746,{f:4,c:50748},{f:2,c:50754},{f:3,c:50757},{f:7,c:50761},50770,{f:6,c:50774},{f:2,c:50782},{f:11,c:50785},{f:2,c:50797},50800,{f:6,c:50802},{f:2,c:50810},{f:3,c:50813},{f:7,c:50817},50826,50828,{f:6,c:50830},{f:2,c:50838},{f:3,c:50841},{f:7,c:50845},50854,50856,{f:6,c:50858},{f:2,c:50866},{f:3,c:50869},{f:5,c:50875},50882,50884,{f:6,c:50886},{f:2,c:50894},{f:3,c:50897},{f:7,c:50901},{f:2,c:50910},{f:6,c:50914},{f:2,c:50922},{f:3,c:50925},{f:7,c:50929},{f:3,c:50938},{f:6,c:50942},{f:2,c:50950},{f:3,c:50953},{f:7,c:50957},50966,50968,{f:6,c:50970},{f:2,c:50978},{f:3,c:50981},{f:7,c:50985},50994,50996,50998,{f:4,c:51e3},{f:2,c:51006},{f:3,c:51009},{f:5,c:51013},51019,51022,51024,{f:3,c:51033},{f:3,c:51037},{f:7,c:51041},{f:2,c:51049},{f:8,c:51052},{f:2,c:51062},{f:3,c:51065},{f:4,c:51071},51078,{f:3,c:51083},51087,{f:2,c:51090},51093,51097,{f:5,c:51099},51106,{f:5,c:51111},{f:2,c:51118},{f:3,c:51121},{f:7,c:51125},51134,{f:6,c:51138},{f:2,c:51146},51149,51151,{f:7,c:51153},{f:4,c:51161},{f:6,c:51166},{f:3,c:51173},{f:3,c:51177},{f:19,c:51181},{f:2,c:51202},{f:3,c:51205},51209,{f:5,c:51211},51218,51220,{f:5,c:51223},{f:2,c:51230},{f:3,c:51233},{f:7,c:51237},51246,51248,{f:6,c:51250},{f:3,c:51257},{f:3,c:51261},{f:7,c:51265},{f:2,c:51274},{f:6,c:51278},{f:27,c:51285},{f:2,c:51314},{f:3,c:51317},51321,{f:5,c:51323},51330,51332,{f:3,c:51336},{f:6,c:51342},{f:8,c:51349},51358,51360,{f:6,c:51362},{f:19,c:51369},{f:6,c:51390},{f:3,c:51397},{f:3,c:51401},{f:7,c:51405},51414,51416,{f:6,c:51418},{f:2,c:51426},{f:16,c:51429},{f:6,c:51446},{f:2,c:51454},{f:3,c:51457},{f:5,c:51463},51470,51472,{f:6,c:51474},{f:19,c:51481},{f:7,c:51501},{f:27,c:51509},{f:2,c:51538},{f:3,c:51541},{f:7,c:51545},51554,{f:8,c:51556},{f:3,c:51565},{f:3,c:51569},{f:7,c:51573},{f:11,c:51581},{f:2,c:51594},{f:3,c:51597},{f:7,c:51601},51610,51612,{f:34,c:51614},{f:2,c:51650},{f:2,c:51653},51657,{f:5,c:51659},51666,51668,{f:2,c:51671},51675,{f:2,c:51678},51681,51683,{f:2,c:51685},{f:4,c:51688},51694,{f:6,c:51698},{f:2,c:51706},{f:3,c:51709},{f:7,c:51713},51722,{f:6,c:51726},{f:3,c:51733},{f:16,c:51737},{f:34,c:51754},{f:2,c:51790},{f:3,c:51793},{f:7,c:51797},51806,{f:6,c:51810},{f:20,c:51817},{f:6,c:51838},{f:19,c:51845},{f:35,c:51865},{f:2,c:51902},{f:3,c:51905},{f:7,c:51909},51918,51920,51922,{f:4,c:51924},{f:6,c:51930},{f:11,c:51937},{f:7,c:51949},{f:19,c:51957},{f:7,c:51977},{f:3,c:51985},{f:3,c:51989},{f:7,c:51993},{f:31,c:52002},{f:6,c:52034},{f:2,c:52042},{f:3,c:52045},{f:7,c:52049},{f:3,c:52058},{f:6,c:52062},{f:19,c:52069},{f:34,c:52090},{f:27,c:52125},{f:27,c:52153},{f:15,c:52181},{f:2,c:52197},52200,{f:34,c:52202},{f:2,c:52238},{f:3,c:52241},{f:7,c:52245},{f:3,c:52254},{f:4,c:52259},{f:2,c:52266},52269,52271,{f:7,c:52273},52282,{f:5,c:52287},{f:2,c:52294},{f:3,c:52297},{f:7,c:52301},52310,{f:6,c:52314},{f:3,c:52321},52325,52327,{f:7,c:52329},{f:4,c:52337},{f:34,c:52342},{f:2,c:52378},{f:3,c:52381},{f:7,c:52385},52394,{f:6,c:52398},{f:2,c:52406},{f:3,c:52409},{f:7,c:52413},52422,52424,{f:6,c:52426},{f:3,c:52433},{f:15,c:52437},{f:7,c:52453},{f:3,c:52461},{f:16,c:52465},{f:6,c:52482},{f:2,c:52490},{f:3,c:52493},{f:7,c:52497},52506,52508,{f:6,c:52510},{f:3,c:52517},{f:3,c:52521},{f:12,c:52525},{f:34,c:52538},{f:3,c:52573},{f:3,c:52577},{f:7,c:52581},52590,52592,{f:6,c:52594},{f:15,c:52601},{f:11,c:52617},{f:2,c:52630},{f:3,c:52633},{f:7,c:52637},52646,52648,{f:6,c:52650},{f:19,c:52657},{f:7,c:52677},{f:3,c:52685},{f:23,c:52689},{f:3,c:52713},{f:3,c:52717},{f:7,c:52721},52730,52732,{f:6,c:52734},{f:3,c:52741},{f:3,c:52745},{f:7,c:52749},{f:4,c:52757},{f:6,c:52762},{f:2,c:52770},{f:3,c:52773},{f:7,c:52777},52786,52788,{f:34,c:52790},{f:2,c:52826},{f:2,c:52829},{f:6,c:52834},52842,52844,{f:6,c:52846},{f:2,c:52854},{f:3,c:52857},{f:7,c:52861},52870,52872,{f:6,c:52874},{f:2,c:52882},{f:3,c:52885},{f:7,c:52889},52898,{f:6,c:52902},{f:19,c:52910},{f:34,c:52930},{f:2,c:52966},{f:2,c:52969},{f:7,c:52973},52982,{f:6,c:52986},{f:2,c:52994},{f:3,c:52997},{f:7,c:53001},53010,53012,{f:6,c:53014},{f:3,c:53021},{f:3,c:53025},{f:7,c:53029},53038,{f:6,c:53042},{f:27,c:53049},{f:2,c:53078},{f:3,c:53081},{f:7,c:53085},53094,53096,{f:6,c:53098},{f:2,c:53106},{f:3,c:53109},{f:7,c:53113},{f:4,c:53121},{f:6,c:53126},{f:20,c:53133},{f:6,c:53154},{f:7,c:53161},{f:19,c:53169},{f:27,c:53189},{f:2,c:53218},{f:3,c:53221},{f:7,c:53225},53234,53236,{f:6,c:53238},{f:3,c:53245},{f:3,c:53249},{f:12,c:53253},{f:6,c:53266},{f:20,c:53273},{f:6,c:53294},{f:2,c:53302},{f:3,c:53305},{f:7,c:53309},53318,53320,{f:6,c:53322},{f:3,c:53329},{f:3,c:53333},{f:7,c:53337},{f:11,c:53345},{f:2,c:53358},{f:3,c:53361},{f:7,c:53365},{f:3,c:53374},{f:34,c:53378},{f:2,c:53414},{f:3,c:53417},{f:7,c:53421},53430,53432,{f:6,c:53434},{f:2,c:53442},{f:3,c:53445},{f:6,c:53450},53458,{f:6,c:53462},{f:2,c:53470},{f:3,c:53473},{f:7,c:53477},53486,{f:6,c:53490},{f:20,c:53497},{f:34,c:53518},{f:2,c:53554},{f:3,c:53557},53561,{f:5,c:53563},53570,{f:6,c:53574},{f:2,c:53582},{f:3,c:53585},{f:7,c:53589},53598,53600,{f:6,c:53602},{f:3,c:53609},{f:15,c:53613},{f:7,c:53629},{f:3,c:53637},{f:23,c:53641},{f:2,c:53666},{f:3,c:53669},{f:7,c:53673},53682,53684,{f:4,c:53686},53691,{f:3,c:53693},{f:23,c:53697},{f:27,c:53721},{f:3,c:53749},{f:14,c:53753},53768,{f:6,c:53770},{f:27,c:53777},{f:2,c:53806},{f:3,c:53809},{f:7,c:53813},53822,53824,{f:6,c:53826},{f:19,c:53833},{f:7,c:53853},{f:27,c:53861},{f:2,c:53890},{f:3,c:53893},{f:7,c:53897},{f:3,c:53906},{f:6,c:53910},{f:3,c:53917},{f:3,c:53921},{f:7,c:53925},{f:4,c:53933},{f:6,c:53938},{f:2,c:53946},{f:2,c:53949},53953,{f:5,c:53955},53962,{f:8,c:53964},{f:3,c:53973},{f:3,c:53977},{f:7,c:53981},{f:10,c:53990},{f:2,c:54002},{f:3,c:54005},{f:7,c:54009},54018,54020,{f:6,c:54022},54031,{f:3,c:54033},54037,{f:5,c:54039},54046,{f:3,c:54050},{f:2,c:54054},{f:2,c:54058},{f:3,c:54061},{f:7,c:54065},54074,{f:6,c:54078},{f:54,c:54086},{f:2,c:54142},{f:3,c:54145},{f:7,c:54149},54158,{f:6,c:54162},{f:2,c:54170},{f:3,c:54173},{f:7,c:54177},54186,54188,{f:6,c:54190},{f:3,c:54197},{f:3,c:54201},{f:7,c:54205},{f:2,c:54214},{f:6,c:54218},{f:7,c:54225},{f:8,c:54233},54242,{f:8,c:54244},{f:2,c:54254},{f:3,c:54257},{f:7,c:54261},54270,54272,{f:6,c:54274},{f:20,c:54281},{f:34,c:54302},{f:3,c:54337},{f:23,c:54341},{f:3,c:54365},{f:3,c:54369},{f:8,c:54373},54382,{f:8,c:54384},{f:2,c:54394},{f:2,c:54397},54401,{f:5,c:54403},54410,54412,{f:6,c:54414},{f:20,c:54421},{f:34,c:54442},{f:3,c:54477},{f:3,c:54481},{f:7,c:54485},{f:2,c:54493},{f:8,c:54496},{f:3,c:54505},{f:3,c:54509},{f:7,c:54513},{f:2,c:54521},54524,{f:6,c:54526},{f:3,c:54533},{f:3,c:54537},{f:7,c:54541},54550,{f:36,c:54552},{f:2,c:54590},{f:3,c:54593},{f:7,c:54597},54606,54608,{f:6,c:54610},{f:2,c:54618},{f:3,c:54621},{f:4,c:54625},{f:2,c:54630},54634,54636,{f:6,c:54638},{f:2,c:54646},{f:3,c:54649},{f:7,c:54653},54662,{f:6,c:54666},{f:20,c:54673},{f:34,c:54694},{f:2,c:54730},{f:3,c:54733},54737,{f:5,c:54739},54746,54748,{f:6,c:54750},{f:2,c:54758},{f:3,c:54761},{f:7,c:54765},54774,54776,{f:6,c:54778},{f:2,c:54786},{f:3,c:54789},{f:7,c:54793},54802,{f:6,c:54806},{f:3,c:54813},{f:3,c:54817},{f:8,c:54821},{f:10,c:54830},{f:2,c:54842},{f:3,c:54845},{f:4,c:54849},{f:2,c:54854},54858,54860,{f:3,c:54862},{f:2,c:54866},{f:2,c:54870},{f:3,c:54873},{f:10,c:54877},54888,{f:6,c:54890},{f:2,c:54898},{f:14,c:54901},54916,{f:6,c:54918},{f:2,c:54926},{f:3,c:54929},{f:8,c:54933},54942,54944,{f:6,c:54946},{f:3,c:54953},{f:3,c:54957},{f:8,c:54961},54970,{f:8,c:54972},{f:2,c:54982},{f:3,c:54985},{f:4,c:54989},{f:2,c:54994},{f:2,c:54997},55e3,{f:6,c:55002},{f:3,c:55009},{f:3,c:55013},{f:7,c:55017},{f:4,c:55025},{f:6,c:55030},{f:2,c:55038},{f:3,c:55041},{f:12,c:55045},{f:6,c:55058},{f:2,c:55066},{f:3,c:55069},{f:7,c:55073},55082,55084,{f:6,c:55086},{f:2,c:55094},{f:3,c:55097},{f:7,c:55101},{f:2,c:55109},55112,{f:6,c:55114},{f:2,c:55122},55125,{f:6,c:55130},55138,55140,{f:3,c:55142},{f:2,c:55146},{f:3,c:55149},{f:3,c:55153},{f:7,c:55157},{f:3,c:55166},{f:6,c:55170},{f:2,c:55178},{f:3,c:55181},{f:7,c:55185},55194,55196,{f:6,c:55198}],"Adobe-CNS1":[{f:95,c:32},{s:3},12288,65292,{f:2,c:12289},65294,8226,65307,65306,65311,65281,65072,8230,8229,65104,65380,65106,183,{f:4,c:65108},65372,8211,65073,8212,{s:4},{f:2,c:65288},{f:2,c:65077},65371,65373,{f:2,c:65079},{f:2,c:12308},{f:2,c:65081},{f:2,c:12304},{f:2,c:65083},{f:2,c:12298},{f:2,c:65085},{f:2,c:12296},{f:2,c:65087},{f:2,c:12300},{f:2,c:65089},{f:2,c:12302},{f:2,c:65091},{f:6,c:65113},{f:2,c:8216},{f:2,c:8220},{f:2,c:12317},8245,8242,65283,65286,65290,8251,167,12291,9675,9679,9651,9650,9678,9734,9733,9671,9670,9633,9632,9661,9660,12963,8453,8254,0,65343,0,{f:2,c:65097},{f:2,c:65101},{f:2,c:65099},{f:3,c:65119},65291,65293,215,247,177,8730,65308,65310,65309,{f:2,c:8806},8800,8734,8786,8801,{f:5,c:65122},8764,{f:2,c:8745},8869,8736,8735,8895,13266,13265,8747,8750,8757,8756,9792,9794,9793,9737,8593,8595,8594,8592,{f:2,c:8598},8601,8600,8741,8739,0,0,65295,65340,65284,165,12306,{f:2,c:162},65285,65312,8451,8457,{f:3,c:65129},13269,{f:3,c:13212},13262,13217,{f:2,c:13198},13252,176,[20825,58834],[20827,58835],[20830,58837],[20829,58836],20833,20835,21991,[29929,58044],[31950,58191],{f:8,c:9601},9615,9614,9613,9612,9611,9610,9609,9532,9524,9516,9508,9500,9620,9472,9474,9621,9484,9488,9492,9496,{f:2,c:9581},9584,9583,9552,9566,9578,9569,{f:2,c:9698},9701,9700,{f:3,c:9585},{f:10,c:65296},{f:10,c:8544},{f:9,c:12321},0,[21316,57443],0,{f:26,c:65313},{f:26,c:65345},{f:17,c:913},{f:7,c:931},{f:17,c:945},{f:7,c:963},{f:37,c:12549},729,714,711,715,[9312,63153],[9313,63154],[9314,63155],[9315,63156],[9316,63157],[9317,63158],[9318,63159],[9319,63160],[9320,63161],[9321,63162],[9332,63163],[9333,63164],[9334,63165],[9335,63166],[9336,63167],[9337,63168],[9338,63169],[9339,63170],[9340,63171],[9341,63172],[8560,63173],[8561,63174],[8562,63175],[8563,63176],[8564,63177],[8565,63178],[8566,63179],[8567,63180],[8568,63181],[8569,63182],[12033,20008],[12034,20022,63183],[12035,20031,63184],[12037,20101,63185],[12039,20128,63186],[12044,20866,63187],[12045,20886,63188],[12046,20907,63189],[12051,21241,63190],[12054,21304,63191],[12057,21353,63192],[12059,21430,63193],[12065,12066,22786,22794,63194],[12071,23424,63195],[12078,24027,63196],[12083,24186,63197],[12084,24191,63198],[12085,24308],[12089,24400,63200],[12090,24417,63201],[12097,25908,63202],[12102,26080],[12135,30098,63204],[12136,30326],[12193,36789,63206],[12202,38582],{f:32,c:9216},9249,[12032,19968],[12036,20057],19969,19971,20035,20061,20102,[12038,20108],[12040,20154],[12041,20799],[12042,20837],[12043,20843],[12047,20960],[12049,20992],20993,[12050,21147],[12052,21269],[12055,21313],[12056,21340],[12060,21448],19977,19979,19976,19978,20011,20024,20961,20037,20040,20063,20062,20110,20129,[20800,64012],20995,21242,21315,21449,[12061,21475],[12063,22303],[12064,22763],[12067,22805],[12068,22823],[12069,22899],[12070,23376],23377,23379,[12072,23544],[12073,23567],[12074,23586],[12075,23608],[12077,23665],24029,[12079,24037],[12080,24049],{f:2,c:24050},[12081,24062],[12082,24178],[12086,24318],[12087,24331],[12088,24339],25165,19985,19984,19981,20013,20016,20025,20043,23609,20104,20113,20117,20114,20116,20130,20161,20160,20163,{f:2,c:20166},20173,{f:2,c:20170},20164,20803,20801,20839,{f:2,c:20845},20844,20887,20982,{f:3,c:20998},21243,{f:2,c:21246},21270,21305,21320,21319,21317,21342,21380,21451,21450,21453,22764,22825,22827,22826,22829,23380,23569,23588,23610,23663,24052,24187,24319,{f:2,c:24340},[12092,24515],[12093,25096],[12094,25142],[12095,25163],25166,[12096,25903],[12098,25991],[12099,26007],[12100,26020],[12101,26041],[12103,26085],[12104,26352],[12105,26376],[12106,26408],[12107,27424],[12108,27490],[12109,27513],[12111,27595],[12112,27604],[12113,27611],[12114,27663],[12116,27700],[12117,28779],[12118,29226],[12119,29238],[12120,29243],[12122,29255],[12123,29273],[12124,29275],[12125,29356],29579,19993,19990,19989,19988,19992,20027,20045,20047,20046,20197,20184,{f:4,c:20180},{f:2,c:20195},20185,20190,20805,20804,{f:2,c:20873},20908,{f:2,c:20985},20984,21002,21152,21151,[21253,57435],21254,21271,21277,20191,21322,21321,21345,21344,21359,21358,21435,21487,21476,21491,21484,21486,21481,21480,21500,21496,21493,21483,21478,21482,21490,21489,21488,21477,21485,21499,22235,22234,22806,22830,22833,22900,22902,23381,23427,23612,24040,24039,24038,{f:2,c:24066},24179,24188,24321,24344,24343,24517,25098,{f:2,c:25171},25170,25169,26021,26086,26414,26412,{f:2,c:26410},26413,27491,27597,27665,27664,27704,27713,27712,27710,29359,[12126,29572],[12127,29577],[12128,29916],[12129,29926],[12130,29976],[12131,29983],[12132,29992],29993,[12133,3e4],{f:3,c:30001},[12134,30091],[12137,30333],[12138,30382],[12139,30399],[12140,30446],[12141,30683],[12142,30690],[12143,30707],[12144,31034],[12146,31166],[12147,31348],[12148,31435],{f:2,c:19998},{f:2,c:20050},20073,20121,20132,20134,20133,20223,20233,20249,20234,20245,20237,{f:2,c:20240},20239,20210,20214,20219,20208,20211,20221,20225,20235,20809,20807,20806,20808,20840,20849,20877,20912,21015,{f:2,c:21009},21006,21014,21155,21256,21281,21280,{f:2,c:21360},21513,21519,21516,21514,21520,21505,21515,21508,21521,21517,21512,21507,21518,21510,21522,22240,22238,22237,22323,22320,22312,22317,22316,22319,22313,{f:2,c:22809},{f:2,c:22839},22916,22904,22915,22909,22905,22914,22913,{f:2,c:23383},{f:2,c:23431},23429,23433,23546,23574,23673,24030,24070,24182,24180,24335,24347,24537,24534,25102,{f:2,c:25100},25104,25187,25179,25176,25910,26089,26088,{f:2,c:26092},{f:2,c:26354},26377,26429,26420,26417,26421,27425,27492,27515,27670,27741,27735,27737,{f:2,c:27743},27728,27733,27745,27739,{f:2,c:27725},28784,29279,29277,30334,[12149,31481],[12150,31859],[12151,31992],[12152,32566],[12154,32650],[12155,32701],[12156,32769],32771,[12157,32780],[12158,32786],[12159,32819],[12160,32895],[12161,32905],{f:2,c:32907},[12162,33251],[12163,33258],[12164,33267],[12165,33276],[12166,33292],[12167,33307],[12168,33311],[12169,33390],[12170,33394],33406,[12173,34411],[12174,34880],[12175,34892],[12176,34915],35199,38433,20018,20136,20301,20303,20295,20311,20318,20276,20315,20309,20272,{f:2,c:20304},20285,20282,20280,20291,20308,20284,20294,20323,20316,20320,20271,20302,20278,20313,20317,20296,20314,20812,20811,20813,20853,{f:2,c:20918},21029,21028,{f:2,c:21033},21032,21163,{f:2,c:21161},21164,21283,21363,21365,21533,21549,21534,21566,21542,21582,21543,21574,21571,21555,21576,21570,21531,21545,21578,21561,21563,21560,21550,{f:2,c:21557},21536,21564,21568,21553,21547,21535,21548,22250,22256,22244,22251,22346,22353,22336,22349,22343,22350,22334,22352,22351,22331,22767,22846,22941,22930,22952,22942,22947,22937,22934,22925,22948,22931,22922,22949,23389,23388,{f:2,c:23386},23436,23435,23439,23596,{f:2,c:23616},23615,23614,{f:2,c:23696},23700,23692,24043,24076,24207,24199,24202,24311,24324,24351,24420,24418,24439,24441,24536,24524,24535,24525,24561,24555,24568,24554,25106,25105,25220,25239,25238,25216,25206,25225,25197,25226,25212,25214,25209,25203,25234,25199,25240,25198,25237,25235,25233,25222,25913,25915,25912,26097,26356,26463,{f:4,c:26446},26460,26454,[26462,57801],26441,26438,26464,26451,26455,27493,27599,27714,27742,27801,27777,{f:2,c:27784},27781,27803,27754,27770,27792,27760,27788,27752,27798,27794,27773,27779,27762,27774,27764,27782,27766,27789,27796,27800,27778,28790,{f:2,c:28796},28792,29282,29281,29280,29380,29378,29590,29996,29995,{f:2,c:30007},30338,30447,30691,31169,31168,31167,31350,31995,32597,32918,32915,32925,32920,32923,32922,32946,33391,33426,33419,33421,[12178,35211],[12179,35282],[12180,35328],[12181,35895],[12182,35910],[12183,35925],[12185,35997],[12186,36196],[12187,36208],[12188,36275],[12189,36523],[12190,36554],[12191,36763],[12192,36784],36802,36806,36805,36804,24033,[12194,37009],37026,37034,37030,37027,[12195,37193],[12196,37318],[12197,37324],38450,38446,38449,38442,38444,20006,20054,20083,20107,20123,20126,{f:2,c:20139},20335,20381,20365,20339,20351,20332,20379,20363,20358,20355,20336,20341,20360,20329,20347,20374,20350,20367,20369,20346,20820,20818,20821,20841,20855,20854,20856,20925,20989,21051,21048,21047,21050,21040,21038,21046,21057,21182,21179,21330,21332,21331,21329,21350,{f:3,c:21367},21462,21460,21463,21619,21621,21654,21624,21653,21632,21627,21623,21636,21650,21638,21628,21648,21617,21622,21644,21658,21602,21608,21643,21629,21646,22266,22403,22391,22378,22377,22369,22374,22372,22396,22812,22857,{f:2,c:22855},22852,22868,22974,22971,22996,22969,22958,22993,22982,22992,22989,22987,22995,22986,22959,22963,22994,22981,23391,23396,23395,23447,23450,23448,23452,23449,23451,23578,23624,{f:2,c:23621},23735,23713,23736,23721,23723,23729,23731,24088,24090,24086,24085,24091,24081,24184,24218,24215,24220,{f:2,c:24213},24310,{f:2,c:24358},24361,{f:2,c:24448},24447,24444,24541,24544,24573,24565,24575,24591,24596,24623,24629,24598,24618,24597,24609,24615,24617,24619,24603,25110,25109,25151,25150,25152,25215,25289,25292,25284,25279,25282,25273,25298,25307,25259,{f:2,c:25299},25291,25288,25256,25277,25276,[25296,60582],25305,25287,25293,25269,25306,25265,25304,{f:2,c:25302},25286,25260,[25294,61010],25918,26023,26044,26106,26132,26131,26124,26118,26114,26126,26112,26127,26133,26122,26119,26381,26379,26477,26507,26517,26481,26524,26483,26487,26503,26525,26519,{f:2,c:26479},26495,26505,26494,26512,26485,26522,26515,26492,26474,26482,27427,{f:2,c:27494},27519,27667,27675,27875,27880,27891,27825,27852,27877,27827,{f:2,c:27837},27836,27874,27819,27861,27859,27832,27844,27833,27841,27822,27863,27845,27889,27839,27835,27873,27867,27850,27820,27887,27868,27862,27872,28821,28814,28818,28810,28825,{f:2,c:29228},29240,29256,29287,29289,29376,29390,29401,29399,29392,29609,29608,29599,29611,29605,30013,30109,{f:2,c:30105},30340,30402,30450,30452,30693,30717,31038,{f:2,c:31040},31177,31176,31354,31353,31482,31998,32596,32652,32651,[32773,58236],32954,32933,32930,32945,32929,32939,32937,32948,32938,32943,33253,33278,33293,33459,33437,33433,33453,33469,33439,33465,33457,33452,33445,33455,33464,33443,33456,33470,33463,34382,34417,21021,34920,36555,36814,36820,36817,37045,37048,37041,37046,37319,[12198,37329],[12199,38263],[12200,38272],[12201,38428],38464,38463,38459,38468,38466,[12203,38585],[12204,38632],38738,[12206,38750],20127,{f:2,c:20141},20449,20405,20399,20415,20448,20433,20431,20445,20419,20406,20440,20447,20426,20439,20398,20432,20420,20418,20442,20430,20446,20407,20823,20882,20881,20896,21070,21059,21066,21069,21068,21067,21063,21191,21193,21187,21185,21261,21335,21371,21402,21467,21676,21696,21672,21710,21705,21688,21670,21683,21703,21698,21693,21674,21697,21700,21704,21679,21675,21681,21691,21673,21671,21695,22271,22402,22411,22432,22435,22434,22478,22446,22419,22869,22865,22863,22862,22864,23004,23e3,23039,23011,23016,23043,23013,23018,23002,23014,23041,23035,23401,23459,23462,23460,23458,23461,23553,{f:2,c:23630},23629,23627,23769,23762,24055,24093,24101,24095,24189,24224,24230,24314,24328,24365,24421,24456,24453,{f:2,c:24458},24455,24460,24457,24594,24605,24608,24613,24590,24616,24653,24688,24680,[24674,60712],24646,24643,24684,24683,24682,24676,25153,25308,25366,25353,25340,25325,25345,25326,25341,25351,25329,25335,25327,25324,25342,25332,25361,25346,25919,25925,26027,26045,26082,26149,26157,26144,26151,26159,26143,26152,26161,26148,26359,26623,26579,26609,26580,26576,26604,26550,26543,26613,26601,26607,26564,26577,26548,26586,26597,26552,26575,26590,26611,26544,26585,26594,26589,26578,27498,27523,27526,27573,27602,27607,27679,27849,27915,27954,27946,27969,27941,27916,27953,27934,27927,27963,{f:2,c:27965},27958,27931,27893,27961,27943,27960,27945,27950,27957,27918,27947,28843,28858,28851,28844,28847,28845,28856,28846,28836,29232,29298,29295,29300,29417,{f:2,c:29408},29623,29642,29627,29618,29645,29632,29619,29978,29997,30031,30028,30030,30027,30123,{f:2,c:30116},{f:2,c:30114},30328,{f:3,c:30342},30408,30406,30403,30405,30465,30457,30456,30473,30475,30462,30460,30471,30684,30722,30740,{f:2,c:30732},31046,31049,31048,31047,{f:2,c:31161},{f:2,c:31185},31179,31359,31361,31487,31485,31869,32002,32005,32e3,32009,32007,32004,32006,32568,32654,32703,32784,32781,32785,32822,32982,32997,32986,{f:2,c:32963},32972,32993,32987,32974,32990,32996,32989,33268,33314,33511,33539,33541,33507,33499,33510,33540,33509,33538,33545,33490,33495,33521,33537,33500,33492,33489,33502,33491,33503,33519,33542,34384,34425,34427,34426,34893,34923,35201,35284,35336,{f:2,c:35330},35998,36e3,36212,36211,36276,36557,36556,36848,36838,36834,36842,36837,36845,36843,36836,36840,37066,37070,37057,37059,37195,37194,37325,38274,38480,{f:3,c:38475},[12207,38754],[12208,38761],[12209,38859],[12210,38893],[12211,38899],[12212,38913],[12213,39080],[12214,39131],[12215,39135],[12216,39318],[12217,39321],20056,20147,{f:2,c:20492},20515,20463,20518,20517,20472,[20521,57375],20502,20486,20540,20511,20506,20498,20497,20474,20480,20500,20520,20465,20513,20491,20505,20504,20467,20462,20525,20522,20478,20523,20489,20860,{f:2,c:20900},20898,20941,20940,20934,20939,21078,21084,21076,21083,21085,21290,[21375,57459],21407,21405,21471,21736,21776,21761,21815,21756,21733,21746,21766,21754,21780,21737,21741,21729,21769,21742,21738,21734,21799,21767,21757,21775,{f:2,c:22275},22466,22484,22475,22467,22537,22799,{f:2,c:22871},22874,23057,23064,23068,23071,23067,23059,23020,23072,23075,23081,23077,23052,23049,23403,23640,23472,23475,23478,23476,23470,23477,23481,23480,23556,23633,23637,23632,23789,23805,23803,23786,23784,23792,23798,23809,23796,24046,24109,24107,24235,24237,24231,24369,24466,24465,24464,24665,24675,24677,24656,24661,24685,24681,24687,24708,24735,24730,24717,24724,24716,24709,24726,25159,25331,25352,25343,25422,25406,25391,25429,25410,25414,25423,25417,25402,25424,25405,{f:2,c:25386},25384,25421,25420,{f:2,c:25928},26009,26049,26053,26178,26185,26191,26179,26194,26188,26181,26177,26360,{f:2,c:26388},26391,26657,26680,26696,26694,26707,26681,26690,26708,26665,26803,26647,26700,26705,26685,26612,26704,26688,26684,26691,26666,26693,26643,26648,26689,27530,27529,27575,27683,{f:2,c:27687},27686,27684,27888,28010,28053,28040,28039,28006,28024,28023,27993,28051,28012,28041,28014,27994,28020,28009,28044,28042,28025,28037,28005,28052,28874,28888,28900,28889,28872,28879,29241,29305,29436,29433,29437,29432,29431,29574,29677,29705,29678,29664,29674,29662,30036,30045,30044,30042,30041,30142,30149,30151,{f:2,c:30130},30141,30140,30137,30146,30136,30347,30384,30410,{f:2,c:30413},30505,{f:2,c:30495},30504,30697,30768,30759,30776,30749,30772,30775,30757,30765,30752,30751,30770,31061,31056,31072,31071,31062,31070,31069,31063,31066,31204,[31203,60418],31207,31199,31206,31209,31192,31364,31368,31449,31494,31505,31881,32033,32023,32011,32010,32032,32034,32020,32016,32021,32026,32028,32013,32025,32027,32570,32607,32660,32709,32705,32774,32772,32792,32789,32793,32791,32829,32831,33009,33026,33008,33029,33005,33012,33030,33016,33011,33032,33021,33034,33020,33007,33261,33260,33280,33296,{f:2,c:33322},33320,33324,33467,33579,33618,33620,33610,33592,33616,33609,33589,33588,33615,33586,33593,33590,33559,33600,33585,33576,33603,34388,34442,34474,34451,34468,34473,34444,34467,34460,34928,34935,{f:2,c:34945},34941,34937,35352,35344,35342,35340,35349,35338,35351,35347,35350,35343,35345,35912,35962,35961,{f:2,c:36001},[36215,58442],36524,36562,36564,36559,36785,36865,36870,36855,36864,36858,36852,36867,36861,36869,36856,37013,37089,37085,37090,37202,37197,37196,37336,37341,37335,37340,37337,38275,{f:2,c:38498},38497,38491,38493,38500,38488,38494,38587,39138,[12218,39340],[12219,39592],[12220,39640],[12222,39717],[12224,39730],[12225,39740],20094,20602,[20605,57382],20572,20551,20547,20556,20570,20553,20581,20598,20558,20565,20597,20596,20599,20559,20495,20591,20589,20828,20885,20976,21098,21103,21202,21209,21208,21205,21264,21263,21273,{f:2,c:21311},21310,21443,26364,21830,21866,21862,21828,21854,21857,21827,21834,21809,21846,21839,21845,21807,21860,21816,21806,21852,21804,21859,21811,21825,21847,22280,22283,22281,22495,22533,22538,22534,22496,22500,22522,22530,22581,22519,22521,22816,22882,23094,23105,23113,23142,23146,23104,23100,23138,23130,23110,23114,23408,23495,23493,23492,23490,23487,23494,23561,23560,23559,23648,{f:2,c:23644},23815,23814,23822,23835,23830,23842,23825,23849,23828,23833,23844,23847,23831,24034,24120,24118,24115,24119,{f:2,c:24247},24246,24245,24254,24373,24375,24407,24428,24425,24427,24471,24473,24478,24472,24481,24480,24476,24703,24739,24713,24736,24744,24779,24756,24806,24765,24773,24763,24757,24796,24764,24792,24789,24774,24799,24760,24794,24775,{f:2,c:25114},25160,25504,25511,25458,25494,25506,25509,25463,25447,25496,25514,25457,25513,25481,25475,25499,25451,25512,25476,25480,25497,25505,25516,25490,25487,25472,25467,25449,25448,25466,25949,25942,25937,25945,25943,21855,25935,25944,25941,25940,26012,26011,26028,26063,{f:2,c:26059},26062,26205,26202,26212,26216,26214,26206,26361,21207,26395,26753,26799,26786,26771,26805,26751,26742,26801,26791,26775,26800,26755,26820,26797,26758,26757,26772,26781,26792,26783,26785,26754,27442,27578,{f:2,c:27627},27691,28046,28092,28147,28121,28082,28129,28108,28132,28155,28154,28165,28103,28107,28079,28113,28078,28126,28153,28088,28151,28149,28101,28114,28186,28085,28122,28139,28120,28138,28145,28142,28136,28102,28100,28074,28140,28095,28134,28921,{f:2,c:28937},28925,28911,29245,29309,29313,29468,29467,29462,29459,29465,29575,29701,29706,29699,29702,29694,29709,29920,{f:2,c:29942},29980,29986,{f:2,c:30053},30050,30064,30095,{f:2,c:30164},30133,30154,30157,30350,30420,30418,30427,30519,30526,30524,30518,30520,30522,30827,30787,30798,31077,31080,31085,31227,31378,31381,31520,31528,31515,31532,31526,31513,31518,31534,31890,31895,31893,32070,32067,32113,32046,32057,32060,32064,32048,32051,32068,32047,32066,32050,32049,32573,32670,32666,32716,32718,32722,32796,32842,32838,33071,33046,33059,33067,33065,33072,33060,33282,33333,33335,33334,33337,33678,33694,33688,33656,33698,33686,33725,33707,33682,33674,33683,33673,33696,33655,{f:2,c:33659},33670,33703,34389,24426,34503,34496,34486,34500,34485,34502,34507,34481,34479,34505,34899,34974,34952,34987,34962,34966,34957,34955,35219,35215,35370,35357,35363,35365,35377,35373,35359,35355,35362,35913,35930,36009,36012,36011,36008,36010,36007,36199,36198,36286,36282,36571,36575,36889,36877,36890,36887,36899,36895,36893,36880,36885,36894,36896,36879,36898,36886,36891,36884,37096,37101,[37117,58488],37207,37326,37365,37350,37347,37351,37357,37353,38281,38506,38517,38515,38520,38512,38516,{f:2,c:38518},38508,38592,38634,38633,31456,31455,{f:2,c:38914},[12226,39770],[12227,40165],[12228,40565],[12229,40575],[12230,40613],[12231,40635],20642,20621,20613,20633,20625,20608,20630,20632,20634,26368,20977,21106,{f:2,c:21108},21097,21214,21213,21211,21338,21413,21883,21888,21927,21884,21898,21917,21912,21890,21916,21930,21908,21895,21899,21891,21939,21934,21919,21822,21938,21914,21947,21932,21937,21886,21897,21931,21913,22285,22575,22570,22580,22564,{f:2,c:22576},22561,22557,22560,{f:2,c:22777},22880,[23159,57587],23194,23167,23186,23195,23207,23411,23409,23506,23500,23507,23504,{f:2,c:23562},23601,23884,23888,23860,23879,24061,24133,24125,24128,24131,24190,24266,{f:2,c:24257},24260,24380,24429,{f:2,c:24489},24488,24785,24801,24754,24758,24800,24860,24867,24826,24853,24816,24827,24820,24936,24817,24846,24822,24841,24832,24850,25119,25161,25507,25484,25551,25536,25577,25545,25542,25549,25554,25571,25552,25569,25558,{f:2,c:25581},25462,25588,25578,25563,25682,25562,25593,25950,25958,{f:2,c:25954},26001,26e3,26031,26222,26224,[26228,57786],26230,26223,26257,26234,26238,26231,{f:2,c:26366},26399,26397,26874,26837,26848,26840,26839,26885,26847,26869,26862,26855,26873,26834,26866,26851,26827,26829,26893,26898,26894,26825,26842,26990,26875,27454,27450,27453,27544,27542,27580,27631,{f:2,c:27694},27692,[28207,57904],28216,28244,28193,28210,28263,28234,28192,28197,28195,28187,28251,28248,28196,28246,28270,28205,28198,28271,28212,28237,28218,28204,28227,[28189,57901],28222,28363,28297,28185,28238,28259,28228,28274,28265,28255,{f:2,c:28953},28966,28976,28961,28982,[29038,57958],28956,29260,29316,29312,29494,29477,29492,29481,29754,29738,29747,29730,29733,{f:2,c:29749},29748,29743,29723,29734,29736,{f:2,c:29989},30059,30058,30178,30171,30179,30169,30168,30174,30176,{f:2,c:30331},30358,30355,30388,30428,30543,30701,30813,30828,30831,31245,31240,31243,31237,31232,31384,31383,31382,31461,31459,31561,31574,31558,31568,31570,31572,31565,31563,31567,[31569,60510],31903,31909,32094,32080,32104,32085,32043,32110,32114,32097,32102,32098,32112,32115,21892,{f:2,c:32724},32779,32850,32901,33109,33108,33099,33105,33102,33081,33094,33086,33100,33107,33140,33298,33308,33769,33795,33784,33805,33760,33733,33803,[33729,58309],33775,33777,33780,33879,33802,33776,33804,33740,33789,33778,33738,33848,33806,33796,33756,33799,33748,33759,34395,34527,34521,34541,34516,34523,34532,34512,34526,34903,{f:2,c:35009},34993,35203,35222,35387,35424,35413,35422,35388,35393,35412,35419,35408,35398,35380,35386,35382,35414,35937,35970,36015,36028,36019,36029,36033,36027,36032,36020,36023,36022,36031,36024,36234,36229,36225,36302,36317,36299,36314,36305,36300,36315,36294,36603,36600,36604,36764,36910,36917,36913,36920,36914,36918,37122,37109,37129,37118,37219,37221,37327,{f:2,c:37396},37411,37385,37406,37389,37392,37383,37393,38292,38287,38283,38289,38291,38290,38286,38538,38542,38539,38525,{f:2,c:38533},38541,38514,38532,38593,38597,38596,{f:2,c:38598},38639,38642,38860,{f:2,c:38917},38920,39143,39146,39151,39145,39154,39149,39342,39341,[12232,40643],[12233,40653],[12234,40657],20098,20653,20661,{f:2,c:20658},20677,20670,20652,20663,20667,20655,20679,21119,21111,21117,21215,21222,21220,{f:2,c:21218},21295,21983,21992,21971,21990,21966,21980,21959,21969,{f:2,c:21987},21999,21978,21985,{f:2,c:21957},21989,21961,{f:2,c:22290},22622,22609,22616,22615,22618,22612,22635,22604,22637,22602,22626,22610,22603,22887,23233,23241,23244,23230,23229,23228,23219,23234,23218,23913,23919,24140,24185,24265,24264,24338,24409,24492,24494,24858,24847,24904,24863,24819,24859,24825,24833,24840,24910,24908,24900,24909,24894,24884,24871,24845,24838,24887,{f:2,c:25121},25619,25662,25630,25642,25645,25661,25644,25615,25628,25620,25613,25654,{f:2,c:25622},25606,25964,26015,26032,26263,26249,{f:2,c:26247},26262,26244,26264,26253,26371,27028,26989,26970,26999,26976,26964,26997,26928,27010,26954,26984,26987,26974,26963,27001,27014,26973,26979,26971,27463,27506,27584,27583,27603,27645,28322,28335,28371,28342,28354,28304,28317,28359,28357,28325,28312,28348,28346,28331,28369,28310,28316,28356,28372,28330,28327,28340,29006,29017,29033,29028,29001,29031,29020,29036,29030,29004,29029,29022,28998,29032,29014,29242,29266,29495,29509,29503,29502,29807,29786,29781,29791,29790,29761,29759,29785,29787,[29788,58019],30070,30072,30208,30192,30209,30194,30193,30202,30207,30196,30195,{f:2,c:30430},30555,30571,30566,30558,30563,30585,30570,30572,30556,30565,30568,30562,30702,30862,30896,{f:2,c:30871},30860,30857,30844,30865,30867,30847,31098,31103,31105,33836,31165,31260,31258,31264,31252,31263,31262,{f:2,c:31391},31607,31680,31584,31598,31591,31921,31923,31925,32147,32121,32145,32129,32143,32091,32622,{f:2,c:32617},32626,32681,32680,32676,32854,32856,32902,32900,33137,33136,33144,33125,33134,33139,33131,{f:2,c:33145},33126,33285,33351,33922,33911,33853,33841,33909,33894,33899,33865,33900,33883,33852,33845,33889,33891,33897,33901,33862,34398,34396,34399,34553,34579,34568,34567,34560,34558,34555,{f:2,c:34562},34566,34570,34905,35039,35028,35033,35036,35032,35037,35041,35018,35029,35026,35228,35299,35435,{f:2,c:35442},35430,35433,35440,35463,35452,35427,35488,35441,35461,35437,35426,35438,35436,35449,35451,35390,35432,35938,35978,35977,36042,{f:2,c:36039},36036,36018,36035,36034,36037,36321,36319,36328,36335,36339,36346,36330,36324,36326,36530,36611,36617,36606,36618,36767,36786,36939,36938,36947,36930,36948,36924,36949,36944,36935,36943,36942,36941,36945,36926,36929,37138,37143,37228,37226,37225,37321,37431,37463,37432,37437,37440,37438,37467,37451,37476,37457,37428,37449,37453,37445,37433,37439,37466,38296,38552,{f:2,c:38548},38605,38603,{f:2,c:38601},38647,38651,38649,38646,38742,38772,38774,{f:2,c:38928},38931,38922,38930,38924,39164,39156,{f:2,c:39165},39347,39345,39348,39649,40169,40578,[12237,40718],[12238,40723],[12239,40736],20711,20718,20709,20694,[20717,60903],20698,20693,20687,20689,20721,20686,20713,20834,20979,21123,21122,21297,21421,22014,22016,22043,22039,22013,22036,22022,22025,{f:2,c:22029},22007,22038,22047,22024,22032,22006,22296,22294,22645,22654,22659,22675,22666,22649,22661,22653,22781,22821,22818,22820,22890,22889,23265,23270,23273,23255,23254,23256,23267,23413,23518,23527,23521,{f:2,c:23525},23528,23522,23524,23519,23565,23650,23940,23943,24155,24163,24149,24151,24148,24275,24278,24330,24390,24432,24505,24903,24895,24907,24951,{f:2,c:24930},24927,24922,24920,24949,25130,25735,25688,25684,25764,25720,25695,25722,25681,25703,25652,25709,25723,25970,26017,26071,26070,26274,26280,26269,27036,27048,27029,27073,27054,27091,27083,27035,27063,27067,27051,27060,27088,27085,27053,27084,27046,27075,27043,27465,27468,27699,28467,28436,28414,28435,28404,28457,28478,28448,28460,28431,28418,28450,28415,28399,28422,28465,28472,28466,28451,28437,28459,28463,28552,28458,28396,28417,28402,28364,28407,29076,29081,29053,29066,29060,29074,29246,29330,29334,29508,29520,29796,29795,29802,29808,29805,29956,30097,30247,30221,30219,30217,30227,30433,30435,30596,30589,30591,30561,30913,30879,30887,30899,30889,30883,{f:2,c:31118},31117,31278,31281,31402,31401,31469,31471,31649,31637,31627,31605,31639,31645,31636,31631,[31672,58170],31623,31620,31929,{f:2,c:31933},32187,32176,32156,{f:2,c:32189},32160,32202,32180,32178,32177,32186,32162,32191,32181,32184,32173,[32210,58202],32199,32172,32624,{f:2,c:32736},32735,32862,32858,32903,33104,33152,33167,33160,33162,33151,33154,33255,33274,33287,33300,33310,33355,33993,33983,33990,33988,33945,33950,33970,33948,33995,33976,33984,34003,33936,33980,34001,33994,34623,34588,34619,34594,34597,34612,34584,34645,34615,34601,35059,35074,35060,35065,35064,35069,35048,35098,35055,35494,35468,35486,35491,35469,35489,35475,35492,35498,35493,35496,35480,35473,35482,35495,35946,35981,35980,36051,{f:2,c:36049},36203,36249,36245,36348,36628,36626,36629,36627,36771,36960,36952,36956,36963,36953,36958,36962,36957,36955,37145,37144,37150,37237,37240,37239,37236,37496,37548,37504,37509,37528,37526,37499,37523,37532,37544,37500,37521,38305,{f:2,c:38312},38307,38309,38308,38553,38556,38555,38604,38610,38656,38780,38789,38902,{f:2,c:38935},39087,39089,39171,39173,39180,39177,39361,{f:2,c:39599},39654,{f:2,c:39745},40180,40182,40179,40636,[12240,40763],[12241,40778],20740,20736,20731,20725,20729,20738,{f:2,c:20744},20741,20956,{f:3,c:21127},21133,21130,21232,21426,22062,22075,22073,22066,22079,22068,22057,22099,22094,22103,22132,22070,{f:2,c:22063},22656,22687,22686,22707,22684,22702,22697,22694,22893,23305,23291,23307,23285,23308,23304,23534,23532,23529,23531,{f:2,c:23652},23965,23956,24162,24159,24161,24290,24282,24287,24285,24291,24288,24392,24433,24503,24501,24950,24935,24942,24925,24917,24962,24956,24944,24939,24958,24999,24976,25003,24974,25004,24986,24996,24980,25006,25134,25705,25711,25721,25758,25778,25736,[25744,57745],25776,25765,25747,25749,25769,25746,25774,25773,25771,25754,25772,25753,25762,25779,25973,{f:2,c:25975},26286,26283,26292,26289,27171,27167,27112,27137,27166,27161,27133,27169,27155,27146,27123,27138,27141,27117,27153,27472,27470,27556,{f:2,c:27589},28479,28540,28548,28497,28518,28500,28550,28525,28507,28536,28526,28558,28538,28528,28516,28567,28504,28373,28527,28512,28511,29087,29100,29105,29096,29270,29339,29518,29527,29801,29835,29827,29822,29824,30079,30240,30249,30239,30244,30246,{f:2,c:30241},30362,30394,30436,30606,30599,30604,30609,30603,30923,30917,30906,30922,30910,30933,30908,30928,31295,31292,31296,31293,31287,31291,31407,31406,31661,31665,31684,31668,{f:2,c:31686},31681,31648,31692,31946,32224,32244,32239,32251,32216,32236,32221,32232,32227,32218,32222,32233,32158,32217,32242,32249,32629,32631,32687,32745,32806,{f:3,c:33179},33184,33178,33176,34071,34109,34074,34030,{f:2,c:34092},34067,34065,34083,34081,34068,34028,34085,34047,34054,34690,34676,34678,34656,34662,34680,34664,34649,34647,34636,34643,34907,34909,35088,35079,{f:2,c:35090},35093,35082,35516,35538,35527,35524,35477,35531,35576,35506,35529,35522,35519,35504,35542,35533,35510,35513,35547,35916,35918,35948,36064,36062,36070,36068,{f:2,c:36076},{f:2,c:36066},36060,36074,36065,36205,36255,36259,36395,36368,36381,36386,36367,36393,36383,36385,36382,36538,36637,36635,36639,36649,36646,36650,36636,36638,36645,36969,36974,36968,36973,36983,37168,37165,37159,37169,37255,37257,37259,37251,37573,37563,37559,37610,37604,37569,37555,37564,37586,37575,37616,37554,38317,38321,38660,{f:2,c:38662},38665,38752,38797,38795,38799,38945,38955,38940,39091,39178,39187,39186,39192,39389,39376,39391,39387,39377,39381,39378,39385,39607,{f:2,c:39662},39719,39749,39748,39799,39791,40198,40201,40195,40617,40638,40654,22696,[12242,40786],20754,20760,20756,20752,20757,20864,20906,20957,21137,21139,21235,22105,22123,22137,22121,22116,22136,22122,22120,22117,22129,22127,22124,22114,22134,22721,22718,22727,22725,22894,23325,23348,23416,23536,23566,24394,25010,24977,25001,24970,25037,25014,25022,25034,25032,25136,25797,25793,25803,{f:2,c:25787},25818,25796,25799,25794,25805,25791,25810,25812,25790,25972,26310,26313,26297,26308,26311,26296,27197,27192,27194,27225,27243,27224,27193,27204,27234,27233,27211,27207,27189,27231,27208,27481,27511,27653,28610,28593,28577,28611,28580,28609,28583,28595,28608,28601,[28598,60318],28582,28576,28596,29118,29129,29136,29138,29128,29141,29113,29134,29145,29148,{f:2,c:29123},29544,29852,29859,29848,29855,29854,29922,{f:2,c:29964},30260,30264,30266,30439,30437,30624,{f:2,c:30622},30629,30952,30938,30956,30951,31142,{f:2,c:31309},31302,31308,31307,31418,31705,31761,31689,31716,31707,31713,31721,31718,{f:2,c:31957},32266,32273,32264,32283,32291,32286,[32285,58211],32265,32272,32633,32690,{f:2,c:32752},32750,[32808,58239],33203,33193,33192,33275,33288,{f:2,c:33368},34122,34137,34120,{f:2,c:34152},34115,34121,34157,34154,34142,34691,34719,34718,34722,34701,34913,35114,35122,35109,35115,35105,35242,[35238,58391],35558,35578,35563,35569,35584,35548,35559,35566,35582,{f:2,c:35585},35575,35565,35571,35574,35580,35947,35949,35987,36084,36420,36401,36404,36418,36409,36405,36667,36655,36664,36659,36776,36774,36981,36980,36984,36978,36988,36986,37172,37266,37664,37686,37624,37683,37679,37666,37628,37675,37636,37658,37648,37670,37665,37653,37678,37657,38331,{f:2,c:38567},38570,38613,38670,38673,38678,38669,38675,38671,38747,[38748,58565],38758,38808,38960,38968,38971,38967,38957,38969,38948,39184,39208,39198,39195,39201,39194,39405,39394,39409,39608,39612,39675,39661,39720,39825,40213,40227,40230,40232,40210,40219,40664,40660,[12243,40845],[12244,40860],20778,20767,20769,20786,21237,22158,22144,22160,22149,22151,22159,22741,22739,22737,22734,23344,23338,23332,23418,23607,23656,23996,23994,23997,23992,24171,24396,24509,25033,25026,25031,25062,25035,25138,25140,25806,25802,25816,25824,25840,25830,25836,25841,25826,25837,{f:2,c:25986},26329,26326,27264,27284,27268,27298,27292,27355,27299,27262,27287,27280,27296,27484,27566,27610,27656,28632,28657,{f:2,c:28639},28635,28644,28651,28655,28544,28652,28641,28649,28629,28654,28656,29159,[29151,60361],29166,29158,29157,29165,29164,29172,29152,29237,29254,29552,29554,29865,29872,29862,29864,30278,30274,30284,30442,30643,30634,30640,30636,30631,30637,30703,30967,30970,30964,30959,30977,31143,31146,31319,31423,31751,31757,31742,31735,31756,31712,31968,31964,31966,31970,31967,31961,31965,32302,32318,32326,32311,32306,32323,32299,32317,32305,32325,32321,32308,32313,32328,32309,32319,32303,32580,32755,32764,{f:2,c:32881},32880,32879,32883,33222,33219,33210,33218,33216,33215,33213,33225,33214,33256,33289,33393,34218,34180,34174,34204,34193,34196,34223,34203,34183,34216,34186,34214,34407,34752,34769,34739,34770,34758,34731,34747,34746,34760,34763,35131,35126,35140,35128,35133,35244,35598,35607,35609,35611,35594,35616,35613,35588,35600,35905,35903,35955,36090,36093,36092,36088,36091,36264,36425,36427,36424,36426,36676,36670,36674,36677,36671,36991,36989,36996,{f:2,c:36993},36992,37177,37283,37278,37276,37709,37762,37672,37749,37706,37733,37707,37656,37758,37740,37723,37744,37722,37716,{f:3,c:38346},38344,38342,38577,38584,38614,38684,38686,38816,38867,38982,39094,39221,39425,39423,39854,39851,39850,39853,40251,40255,40587,40655,40670,{f:2,c:40668},40667,40766,40779,21474,22165,22190,22745,22744,23352,24413,25059,25139,25844,25842,25854,25862,{f:2,c:25850},25847,26039,26332,26406,27315,27308,27331,27323,27320,27330,{f:2,c:27310},27487,27512,27567,28681,28683,28670,28678,28666,28689,28687,{f:2,c:29179},29182,29176,29559,29557,29863,29887,29973,30294,30296,30290,30653,30655,{f:2,c:30651},30990,31150,{f:2,c:31329},31328,{f:2,c:31428},31787,31783,31786,31774,31779,31777,31975,{f:2,c:32340},32350,32346,32353,32338,32345,32584,32761,32763,32887,32886,33229,33231,33290,34255,34217,34253,34256,34249,34224,34234,34233,34799,34796,34802,34784,35206,35250,35316,35624,35641,35628,35627,35920,36101,36441,36451,36454,36452,36447,36437,36544,36681,36685,36999,36995,37e3,{f:2,c:37291},37328,37780,37770,37782,37794,37811,37806,37804,37808,37784,37786,37783,38356,38358,38352,38357,38626,38620,38617,38619,38622,38692,38819,38822,38829,38905,38989,38991,38988,38990,38995,39098,{f:2,c:39230},39229,39214,39333,39438,39617,39683,39686,39759,39758,39757,39882,39881,39933,39880,39872,40273,40285,40288,40672,40725,40748,20787,22181,22184,{f:2,c:22750},22754,23541,40848,24300,25074,25079,25078,25077,25856,25871,26336,26333,27365,27357,27354,27347,28699,28703,28712,28698,28701,28693,28696,29190,29197,29272,29346,29560,29562,29885,29898,29923,30087,30086,30303,30305,30663,31001,31153,31339,31337,{f:2,c:31806},31800,31805,31799,31808,32363,32365,32377,{f:2,c:32361},32371,32645,32694,32697,32696,33240,34281,34269,34282,34261,{f:2,c:34276},34295,34811,34821,34829,34809,34814,35168,35167,35158,35166,35649,35676,35672,35657,35674,{f:2,c:35662},35654,35673,36104,36106,36476,36466,36487,36470,36460,36474,36468,36692,36686,36781,{f:2,c:37002},37297,37294,37857,37841,37855,37827,37832,{f:2,c:37852},37846,37858,37837,37848,37860,37847,37864,38364,38580,38627,38698,38695,38753,38876,38907,39006,39e3,39003,39100,39237,39241,39446,39449,39693,39912,39911,39894,39899,40329,40289,40306,40298,40300,40594,40599,40595,40628,21240,22199,22198,22196,22204,22756,23360,23363,23421,23542,24009,25080,25082,25880,25876,25881,26342,26407,27372,28734,28720,28722,29200,29563,29903,30306,30309,31014,31018,31020,31019,31431,31478,31820,31811,31821,{f:2,c:31983},36782,32381,32380,32386,32588,32768,33242,33382,34299,34297,34321,34298,34310,34315,34311,34314,{f:2,c:34836},35172,35258,35320,35696,35692,35686,35695,35679,35691,36111,36109,36489,36481,36485,36482,37300,37323,37912,37891,37885,38369,38704,39108,39250,39249,39336,39467,39472,39479,39477,39955,39949,40569,40629,40680,40751,40799,40803,40801,{f:2,c:20791},22209,22208,22210,22804,23660,24013,25084,25086,25885,25884,26005,26345,27387,27396,27386,27570,28748,29211,29351,29910,29908,30313,30675,31824,32399,32396,32700,34327,34349,34330,34851,34850,34849,34847,35178,35180,35261,35700,35703,35709,36115,36490,36493,36491,36703,36783,37306,37934,37939,37941,37946,37944,37938,37931,38370,{f:2,c:38712},38706,[38911,58586],39015,39013,39255,39493,39491,39488,39486,39631,39764,39761,39981,39973,40367,40372,40386,40376,40605,40687,40729,40796,{f:2,c:40806},20796,20795,22216,22218,22217,23423,24020,24018,24398,25087,25892,27402,27489,28753,28760,29568,29924,30090,30318,30316,31155,31840,31839,32894,32893,33247,35186,35183,35324,35712,{f:2,c:36118},36497,36499,36705,37192,37956,{f:2,c:37969},{f:2,c:38717},38851,38849,39019,39253,39509,39501,39634,39706,40009,39985,39998,39995,40403,40407,40756,40812,40810,40852,22220,24022,25088,25891,25899,25898,26348,27408,29914,31434,31844,31843,31845,32403,32406,32404,33250,34360,34367,34865,35722,37008,37007,37987,37984,37988,38760,39023,39260,{f:2,c:39514},39511,{f:2,c:39635},39633,40020,40023,40022,40421,40607,40692,22225,22761,25900,28766,{f:2,c:30321},[30679,60226],32592,32648,34870,34873,34914,35731,35730,35734,33399,36123,37312,37994,38722,38728,38724,38854,39024,39519,39714,39768,40031,{f:2,c:40441},{f:2,c:40572},40711,40823,40818,24307,27414,28771,31852,31854,34875,35264,36513,37313,38002,38e3,39025,39262,39638,39715,40652,28772,30682,35738,38007,38857,39522,39525,32412,35740,36522,37317,{f:2,c:38013},38012,{f:2,c:40055},40695,35924,38015,40474,29224,39530,39729,40475,40478,31858,20034,20060,[12048,20981],[12053,21274],[12058,21378],19975,19980,20039,20109,[12062,22231],[12076,23662],[12091,24435],19983,20871,19982,20014,20115,20162,20169,20168,20888,21244,21356,21433,22304,22787,22828,[23568,60417],24063,26081,[12110,27571],27596,[12115,27668],[12121,29247],20017,20028,20200,20188,20201,20193,20189,20186,21004,21001,21276,21324,{f:2,c:22306},22807,22831,23425,23428,23570,23611,23668,23667,24068,24192,24194,24521,25097,25168,27669,27702,27715,27711,27707,29358,29360,29578,[12145,31160],32906,38430,20238,20248,20268,20213,20244,20209,20224,20215,20232,20253,20226,20229,20258,20243,20228,20212,20242,20913,21011,21008,21158,21282,21279,21325,21386,21511,22241,22239,22318,22314,22324,22844,22912,22908,22917,22907,22910,22903,22911,23382,23573,23589,23676,{f:2,c:23674},23678,24031,[24181,57646],24196,24322,24346,24436,24533,24532,24527,25180,25182,25188,25185,25190,25186,25177,25184,25178,25189,25911,26095,26094,26430,26425,26424,26427,26426,26431,26428,26419,27672,27718,27730,27740,27727,[27722,60796],27732,{f:2,c:27723},28785,29278,{f:2,c:29364},29582,29994,30335,31349,[12153,32593],[12171,33400],33404,33408,33405,33407,[12172,34381],[12177,35198],37017,[37015,59347],37016,37019,37012,38434,38436,38432,38435,20310,20283,20322,20297,20307,20324,20286,20327,20306,20319,20289,20312,20269,20275,20287,20321,20879,20921,21020,21022,21025,{f:2,c:21165},21257,21347,21362,{f:2,c:21390},21552,21559,21546,21588,21573,21529,21532,21541,21528,21565,21583,21569,21544,21540,21575,22254,22247,22245,22337,22341,22348,22345,22347,22354,22790,22848,22950,22936,22944,22935,22926,22946,22928,22927,22951,22945,23438,23442,23592,23594,23693,23695,23688,23691,23689,23698,23690,23686,23699,23701,24032,24074,24078,24203,24201,24204,24200,24205,24325,24349,24440,24438,24530,24529,24528,24557,24552,24558,24563,24545,24548,24547,24570,24559,24567,24571,24576,24564,25146,25219,25228,{f:2,c:25230},25236,25223,25201,25211,25210,25200,25217,25224,25207,25213,25202,25204,26096,26100,26099,26098,26101,26437,26439,26457,26453,26444,26440,26461,26445,26458,26443,27600,{f:2,c:27673},27768,27751,27755,27780,27787,27791,27761,27759,27753,27802,27757,27783,27797,[27804,57900],27750,27763,27749,27771,27790,28788,28794,29283,29375,29373,29379,29382,29377,29370,29381,29589,29591,{f:2,c:29587},29586,30010,30009,{f:2,c:30100},30337,31037,32820,32917,32921,32912,32914,32924,33424,33423,33413,33422,33425,33427,33418,{f:2,c:33411},[12184,35960],36809,36799,37023,37025,37029,37022,37031,37024,38448,38440,38447,38445,20019,20376,20348,20357,20349,20352,20359,20342,20340,20361,20356,20343,20300,20375,20330,20378,20345,20353,20344,20368,20380,20372,20382,20370,20354,20373,20331,20334,20894,20924,20926,21045,{f:2,c:21042},21062,21041,21180,{f:2,c:21258},21308,21394,21396,21639,21631,21633,21649,21634,21640,21611,21626,21630,21605,21612,21620,21606,21645,21615,21601,21600,21656,21603,21607,21604,22263,22265,22383,22386,22381,22379,22385,22384,22390,22400,22389,22395,{f:2,c:22387},22370,22376,22397,22796,22853,22965,22970,22991,22990,22962,22988,22977,22966,22972,22979,22998,22961,22973,22976,22984,22964,22983,23394,23397,23443,23445,23620,23623,23726,23716,23712,23733,23727,23720,23724,23711,23715,23725,23714,23722,23719,23709,23717,23734,23728,23718,24087,24084,24089,24360,{f:3,c:24354},24404,24450,24446,24445,24542,24549,24621,24614,24601,24626,24587,24628,24586,24599,24627,24602,24606,24620,24610,24589,24592,24622,24595,24593,24588,24585,24604,25108,25149,25261,25268,25297,25278,25258,25270,25290,25262,25267,25263,25275,25257,25264,25272,25917,26024,26043,26121,26108,26116,26130,26120,26107,26115,26123,26125,26117,26109,26129,26128,26358,26378,26501,26476,26510,26514,26486,26491,26520,26502,26500,26484,26509,26508,26490,26527,26513,26521,26499,26493,26497,{f:2,c:26488},26516,27429,27520,27518,27614,27677,27795,27884,27883,27886,27865,27830,27860,27821,27879,27831,27856,27842,27834,27843,27846,27885,27890,27858,27869,27828,27786,27805,27776,27870,27840,27952,27853,27847,27824,27897,27855,27881,27857,28820,28824,28805,28819,28806,28804,28817,28822,28802,28826,28803,29290,29398,29387,29400,29385,29404,29394,29396,29402,29388,29393,29604,29601,29613,29606,29602,29600,29612,29597,29917,29928,{f:2,c:30015},30014,30092,30104,30383,30451,30449,30448,30453,30712,30716,30713,30715,30714,30711,31042,31039,31173,31352,31355,31483,31861,31997,32821,32911,32942,32931,32952,32949,32941,33312,33440,33472,33451,33434,33432,33435,33461,33447,33454,33468,33438,33466,33460,33448,33441,33449,33474,33444,33475,33462,33442,34416,34415,{f:2,c:34413},35926,36818,36811,36819,36813,36822,36821,36823,37042,37044,37039,37043,37040,38457,38461,38460,38458,38467,20429,20421,20435,20402,20425,20427,20417,20436,20444,20441,[20411,60346],20403,20443,20423,20438,20410,20416,20409,20460,21060,21065,21184,21186,21309,21372,21399,21398,21401,21400,21690,21665,21677,21669,21711,21699,33549,21687,21678,21718,21686,{f:2,c:21701},21664,21616,21692,21666,21694,21618,21726,21680,22453,{f:2,c:22430},22436,22412,22423,22429,22427,22420,22424,22415,22425,22437,22426,22421,22772,22797,22867,23009,23006,23022,23040,23025,23005,23034,23037,23036,23030,23012,23026,23031,23003,23017,23027,23029,23008,23038,23028,23021,23464,23628,23760,23768,23756,23767,23755,23771,23774,23770,23753,23751,23754,23766,{f:2,c:23763},23759,23752,23750,23758,23775,23800,24057,{f:3,c:24097},24096,24100,24240,24228,24226,24219,24227,24229,24327,24366,24406,24454,24631,24633,24660,24690,24670,24645,24659,24647,24649,24667,24652,24640,24642,24671,24612,24644,24664,24678,24686,{f:2,c:25154},25295,25357,25355,25333,25358,25347,25323,25337,25359,25356,25336,25334,25344,{f:2,c:25363},25338,25365,25339,25328,25921,25923,26026,26047,26166,26145,26162,26165,26140,26150,26146,26163,26155,26170,26141,26164,26169,26158,{f:2,c:26383},26561,26610,26568,26554,26588,26555,26616,26584,26560,26551,26565,26603,26596,26591,26549,26573,26547,26615,26614,26606,26595,26562,26553,26574,26599,26608,26546,26620,26566,26605,26572,26542,26598,26587,26618,{f:2,c:26569},26563,26602,26571,27432,27522,27524,27574,27606,27608,27616,{f:2,c:27680},27944,27956,27949,27935,27964,27967,27922,27914,27866,27955,27908,27929,27962,27930,27921,27904,27933,27970,27905,27928,27959,27907,27919,27968,27911,27936,27948,27912,27938,27913,27920,28855,28831,28862,28849,28848,28833,{f:2,c:28852},28841,29249,{f:2,c:29257},29292,29296,29299,29294,29386,29412,29416,29419,29407,29418,29414,29411,29573,29644,29634,29640,29637,29625,29622,29621,29620,29675,29631,29639,29630,29635,29638,29624,29643,29932,29934,29998,{f:2,c:30023},30119,30122,30329,30404,30472,{f:3,c:30467},30474,30455,30459,30458,{f:2,c:30695},30726,{f:2,c:30737},30725,30736,30735,30734,[30729,58095],30723,30739,31050,31052,31051,31045,31044,31189,31181,31183,31190,31182,31360,31358,31441,{f:2,c:31488},31866,{f:2,c:31864},{f:3,c:31871},32003,32008,32001,32600,32657,32653,32702,32775,{f:2,c:32782},32788,32823,32984,32967,32992,32977,32968,32962,32976,32965,32995,32985,32988,32970,32981,32969,32975,32983,32998,32973,33279,33313,33428,33497,33534,33529,33543,33512,33536,33493,33594,33515,33494,33524,33516,33505,33522,33525,33548,33531,33526,33520,33514,33508,33504,33530,33523,33517,34423,34420,34428,34419,34881,34894,34919,34922,34921,35283,35332,35335,36210,36835,36833,36846,36832,37105,37053,37055,37077,37061,37054,37063,37067,37064,[37332,60294],37331,38484,38479,38481,38483,38474,38478,20510,20485,20487,20499,20514,20528,20507,20469,20468,20531,20535,20524,{f:2,c:20470},20503,20508,20512,20519,20533,20527,20529,20494,20826,20884,20883,20938,{f:2,c:20932},20936,20942,21089,21082,21074,{f:2,c:21086},21077,21090,21197,21262,21406,21798,21730,21783,21778,21735,21747,21732,21786,21759,21764,21768,21739,21777,21765,21745,21770,21755,{f:2,c:21751},21728,21774,21763,21771,{f:2,c:22273},22476,22578,22485,22482,22458,22470,22461,22460,22456,22454,22463,22471,22480,22457,22465,22798,22858,23065,23062,{f:2,c:23085},23061,23055,23063,23050,23070,23091,23404,23463,23469,23468,23555,23638,23636,23788,23807,23790,23793,23799,23808,23801,24105,24104,24232,24238,24234,24236,24371,24368,24423,24669,24666,24679,24641,24738,24712,24704,24722,24705,24733,24707,24725,24731,24727,24711,24732,24718,25113,25158,25330,25360,25430,25388,{f:2,c:25412},25398,25411,25572,25401,25419,25418,25404,25385,25409,25396,25432,25428,25433,25389,25415,25395,25434,25425,25400,25431,25408,25416,25930,25926,26054,{f:2,c:26051},26050,26186,26207,26183,26193,{f:2,c:26386},26655,26650,26697,{f:2,c:26674},26683,26699,26703,26646,26673,26652,26677,26667,26669,26671,26702,26692,26676,26653,26642,26644,26662,26664,26670,26701,26682,26661,26656,27436,27439,27437,27441,27444,27501,32898,27528,27622,27620,27624,27619,27618,27623,27685,28026,{f:2,c:28003},28022,27917,28001,28050,27992,28002,28013,28015,28049,28045,28143,28031,28038,27998,[28007,59078],28e3,28055,28016,28028,27999,28034,28056,27951,28008,28043,28030,28032,28036,27926,28035,28027,28029,28021,28048,28892,28883,28881,28893,28875,32569,28898,28887,28882,28894,28896,28884,28877,{f:3,c:28869},28890,28878,28897,29250,29304,29303,29302,29440,29434,29428,29438,29430,29427,29435,29441,29651,29657,29669,29654,29628,29671,29667,29673,29660,29650,29659,29652,29661,29658,{f:2,c:29655},29672,{f:2,c:29918},{f:2,c:29940},29985,30043,30047,30128,30145,30139,30148,30144,30143,30134,30138,30346,30409,30493,30491,30480,30483,30482,30499,30481,30485,{f:2,c:30489},30498,30503,30755,30764,30754,30773,30767,30760,30766,30763,30753,30761,30771,30762,30769,31060,31067,31055,31068,31059,31058,31057,{f:2,c:31211},31200,31214,31213,31210,31196,31198,31197,31366,31369,31365,{f:2,c:31371},31370,31367,31448,31504,31492,31507,31493,31503,31496,31498,31502,31497,31506,31876,31889,31882,31884,31880,31885,31877,32030,32029,32017,32014,32024,32022,32019,32031,32018,32015,32012,32604,32609,32606,32608,32605,32603,32662,32658,32707,32706,32704,32790,32830,32825,33018,33010,33017,33013,33025,33019,33024,33281,33327,33317,33587,33581,33604,33561,33617,33573,33622,33599,33601,33574,33564,33570,33602,33614,33563,33578,33544,33596,33613,33558,33572,33568,33591,33583,33577,33607,33605,33612,33619,33566,33580,33611,33575,33608,34387,34386,34466,34472,34454,34445,34449,34462,34439,34455,34438,34443,34458,34437,34469,34457,34465,34471,34453,34456,34446,34461,34448,34452,{f:2,c:34883},34925,{f:2,c:34933},34930,34944,34929,34943,34927,34947,34942,34932,34940,35346,35911,35927,35963,36004,36003,36214,36216,36277,36279,36278,36561,36563,36862,36853,36866,36863,36859,36868,36860,36854,37078,37088,{f:2,c:37081},37091,37087,37093,37080,37083,37079,37084,37092,37200,{f:2,c:37198},37333,37346,37338,38492,38495,38588,39139,[12221,39647],[12223,39727],20095,20592,20586,20577,20574,20576,20563,20555,20573,20594,20552,20557,20545,20571,20554,20578,20501,20549,20575,20585,20587,{f:2,c:20579},20550,20544,20590,20595,20567,20561,20944,21099,21101,21100,21102,21206,21203,21293,21404,{f:2,c:21877},21820,21837,21840,21812,21802,21841,21858,21814,21813,21808,21842,21829,21772,21810,21861,21838,21817,21832,21805,21819,21824,21835,22282,22279,22523,22548,22498,22518,22492,22516,22528,22509,22525,22536,22520,22539,22515,22479,22535,22510,22499,22514,22501,22508,22497,22542,22524,22544,22503,22529,22540,22513,22505,22512,22541,22532,22876,23136,23128,23125,[23143,60437],23134,23096,23093,23149,23120,23135,23141,23148,23123,23140,23127,23107,23133,23122,23108,23131,23112,23182,23102,23117,23097,23116,23152,23145,23111,23121,23126,23106,23132,23410,23406,23489,23488,23641,23838,23819,23837,23834,23840,23820,23848,23821,23846,23845,23823,23856,23826,23843,23839,23854,24126,24116,24241,24244,24249,{f:2,c:24242},24374,24376,24475,24470,24479,24714,24720,24710,24766,24752,24762,{f:2,c:24787},24783,24804,24793,24797,24776,24753,24795,24759,24778,24767,24771,24781,24768,25394,25445,25482,25474,25469,25533,25502,25517,25501,25495,25515,25486,25455,25479,25488,25454,25519,25461,25500,25453,25518,25468,25508,25403,25503,25464,25477,25473,25489,25485,25456,25939,26061,26213,26209,26203,26201,26204,26210,26392,26745,26759,26768,26780,{f:2,c:26733},26798,26795,26966,26735,26787,26796,26793,26741,26740,26802,26767,26743,26770,26748,26731,26738,26794,26752,26737,26750,26779,26774,26763,26784,26761,26788,26744,26747,26769,26764,26762,26749,27446,27443,{f:2,c:27447},27537,27535,{f:2,c:27533},27532,27690,28096,28075,28084,28083,28276,28076,28137,28130,28087,28150,28116,28160,28104,28128,28127,28118,28094,28133,{f:2,c:28124},28123,28148,28106,28093,28141,28144,28090,28117,28098,28111,28105,28112,28146,28115,28157,28119,28109,28131,28091,28922,28941,28919,28951,28916,28940,28912,28932,28915,28944,28924,28927,28934,28947,28928,28920,28918,28939,28930,28942,29310,{f:2,c:29307},29311,29469,29463,29447,29457,29464,29450,29448,29439,29455,29470,29576,29686,29688,29685,29700,29697,29693,29703,29696,29690,29692,29695,29708,29707,29684,29704,30052,30051,30158,30162,30159,{f:2,c:30155},30161,30160,30351,30345,30419,30521,30511,30509,{f:2,c:30513},30516,30515,30525,30501,30523,30517,30792,30802,30793,30797,30794,30796,30758,30789,30800,31076,31079,{f:2,c:31081},31075,31083,31073,31163,31226,31224,{f:2,c:31222},31375,31380,31376,31541,31547,31540,31525,31536,31522,31524,31539,31512,31530,31517,31537,31531,31533,31535,31538,31544,31514,31523,31892,31896,31894,31907,32053,32061,32056,32054,32058,32069,32044,32041,32065,32071,{f:2,c:32062},32074,32059,32040,32611,32661,{f:2,c:32668},32667,{f:2,c:32714},32717,{f:2,c:32720},32711,32719,32713,32799,32798,32795,32839,32835,32840,33048,33061,33049,33051,33069,33055,33068,33054,33057,33045,33063,33053,33058,33297,33336,33331,33338,33332,33330,33396,33680,33699,33704,33677,33658,33651,33700,33652,33679,33665,33685,33689,33653,33684,33705,33661,33667,33676,33693,33691,33706,33675,33662,33701,33711,33672,33687,33712,33663,33702,33671,33710,33654,34393,34390,34495,34487,34498,34497,34501,34490,34480,34504,34489,34483,34488,34508,34484,{f:2,c:34491},34499,{f:2,c:34493},34898,34953,34965,34984,34978,34986,34970,34961,34977,34975,34968,34983,34969,34971,34967,34980,34988,34956,34963,34958,35202,35286,35289,35285,35376,35367,35372,35358,35897,35899,{f:2,c:35932},35965,36005,36221,36219,36217,36284,36290,36281,36287,36289,36568,36574,36573,36572,36567,{f:2,c:36576},36900,36875,36881,36892,36876,36897,37103,37098,37104,37108,{f:2,c:37106},37076,{f:2,c:37099},37097,37206,37208,37210,37203,37205,37356,37364,37361,37363,37368,37348,37369,{f:2,c:37354},37367,37352,37358,38266,38278,38280,38524,38509,38507,38513,38511,38591,38762,38916,39141,39319,20635,20629,20628,20638,20619,20643,20611,20620,20622,20637,20584,20636,20626,20610,20615,20831,20948,21266,21265,21412,21415,21905,21928,21925,21933,21879,22085,21922,21907,21896,21903,21941,21889,21923,21906,21924,21885,21900,21926,21887,21909,21921,21902,22284,22569,22583,22553,22558,22567,22563,22568,22517,22600,22565,22556,22555,22579,22591,22582,22574,22585,22584,22573,22572,22587,22881,23215,23188,23199,23162,23202,23198,23160,23206,23164,23205,23212,23189,23214,23095,23172,23178,23191,23171,23179,23209,23163,23165,23180,23196,23183,23187,23197,23530,23501,23499,23508,23505,23498,23502,23564,23600,23863,23875,23915,23873,23883,23871,23861,23889,23886,23893,23859,23866,23890,23869,23857,23897,23874,23865,23881,23864,23868,23858,23862,23872,23877,24132,24129,[24408,57673],24486,24485,24491,24777,24761,24780,24802,24782,24772,24852,24818,24842,24854,24837,24821,24851,24824,24828,24830,24769,24835,24856,24861,24848,24831,24836,24843,25162,25492,25521,25520,25550,25573,25576,25583,25539,25757,25587,25546,25568,25590,25557,25586,25589,25697,25567,25534,25565,25564,25540,25560,25555,25538,25543,25548,25547,25544,25584,25559,25561,25906,25959,25962,25956,25948,25960,25957,25996,{f:2,c:26013},26030,26064,26066,26236,26220,26235,26240,26225,26233,26218,26226,26369,26892,26835,26884,26844,26922,26860,26858,26865,26895,26838,26871,26859,26852,26870,26899,26896,26867,26849,26887,26828,26888,26992,26804,26897,26863,26822,26900,26872,26832,26877,26876,26856,26891,26890,26903,26830,26824,{f:2,c:26845},26854,26868,26833,26886,26836,26857,26901,26917,26823,27449,27451,27455,27452,27540,27543,27545,27541,27581,27632,{f:2,c:27634},27696,28156,{f:2,c:28230},28191,28233,28296,{f:2,c:28220},28229,28258,28203,28223,28225,28253,28275,28188,28211,28235,28224,28241,28219,28163,28206,28254,28264,28252,28257,28209,28200,28256,28273,28267,28217,28194,28208,28243,28261,28199,28280,28260,28279,28245,28281,28242,28262,{f:2,c:28213},28250,28960,28958,28975,28923,28974,28977,28963,28965,28962,28978,28959,28968,28986,28955,29259,29274,{f:2,c:29320},29318,29317,29323,29458,29451,29488,29474,29489,29491,29479,29490,29485,29478,29475,29493,29452,29742,29740,29744,29739,29718,29722,29729,29741,29745,29732,29731,29725,29737,29728,29746,29947,29999,30063,30060,30183,30170,30177,30182,30173,30175,30180,30167,30357,30354,30426,{f:2,c:30534},30532,30541,30533,30538,30542,{f:2,c:30539},30686,30700,30816,{f:2,c:30820},30812,30829,30833,30826,30830,30832,30825,30824,30814,30818,31092,31091,31090,31088,31234,31242,31235,31244,31236,31385,31462,31460,31562,31559,31556,31560,31564,31566,31552,31576,31557,31906,31902,31912,31905,32088,32111,32099,32083,32086,32103,32106,32079,32109,32092,32107,32082,32084,32105,32081,32095,32078,{f:2,c:32574},{f:2,c:32613},32674,{f:2,c:32672},32727,32849,{f:2,c:32847},33022,32980,33091,33098,33106,33103,33095,33085,33101,33082,33254,33262,{f:3,c:33271},33284,{f:2,c:33340},33343,33397,33595,[33743,60382],33785,33827,33728,33768,33810,33767,33764,33788,33782,33808,33734,33736,33771,33763,33727,33793,33757,33765,33752,33791,33761,33739,33742,33750,33781,33737,33801,[33807,58332],33758,33809,33798,33730,33779,33749,33786,33735,33745,33770,33811,33690,33731,33772,33774,33732,33787,33751,33762,33819,33755,33790,34520,34530,34534,34515,34531,34522,34538,34525,34539,34524,34540,34537,34519,34536,34513,34888,34902,34901,35002,35031,35001,35e3,35008,35006,34998,35004,34999,35005,34994,35073,35017,35221,35224,35223,35293,{f:2,c:35290},35406,35405,35385,35417,35392,{f:2,c:35415},{f:2,c:35396},35410,35400,35409,35402,35404,35407,35935,35969,35968,36026,36030,36016,36025,36021,36228,36224,36233,36312,36307,36301,36295,36310,36316,36303,36309,36313,36296,36311,36293,36591,36599,36602,36601,36582,36590,36581,36597,{f:2,c:36583},36598,36587,36593,36588,36596,36585,36909,36916,36911,37126,37164,[37124,60367],37119,37116,37128,37113,37115,37121,37120,37127,37125,37123,37217,37220,37215,37218,37216,37377,37386,37413,37379,37402,37414,37391,37388,37376,37394,37375,37373,37382,37380,37415,37378,37404,37412,37401,37399,37381,37398,38267,38285,38284,38288,38535,38526,{f:2,c:38536},38531,38528,38594,38600,38595,38641,38640,38764,38768,38766,38919,39081,39147,40166,[12235,40697],{f:2,c:20099},20150,20669,20671,20678,20654,20676,20682,20660,20680,20674,20656,20673,20666,20657,20683,20681,20662,20664,20951,21114,21112,{f:2,c:21115},21955,21979,21964,21968,21963,21962,21981,[21952,64013],21972,21956,21993,21951,21970,21901,21967,21973,21986,21974,21960,22002,21965,21977,21954,22292,22611,22632,22628,22607,22605,22601,22639,22613,22606,22621,22617,22629,22619,22589,22627,22641,22780,23239,23236,23243,23226,23224,23217,23221,23216,23231,23240,23227,23238,23223,23232,23242,23220,23222,23245,23225,23184,23510,{f:2,c:23512},23583,23603,23921,23907,23882,23909,23922,23916,23902,23912,23911,23906,24048,24143,24142,24138,24141,24139,24261,24268,24262,24267,24263,24384,24495,24493,24823,{f:2,c:24905},24875,24901,24886,24882,24878,24902,24879,24911,24873,24896,25120,37224,25123,25125,25124,25541,25585,25579,25616,25618,25609,25632,25636,25651,25667,25631,25621,25624,25657,25655,{f:2,c:25634},25612,25638,25648,25640,25665,25653,25647,25610,25626,25664,25637,25639,25611,25575,25627,25646,25633,25614,25967,26002,26067,26246,26252,26261,26256,26251,26250,26265,26260,26232,26400,26982,26975,26936,26958,26978,26993,26943,26949,26986,26937,26946,26967,26969,27002,{f:2,c:26952},26933,26988,26931,26941,26981,26864,27e3,26932,26985,26944,26991,26948,26998,26968,26945,26996,26956,26939,26955,26935,26972,26959,26961,26930,26962,26927,27003,26940,27462,27461,27459,27458,27464,27457,27547,{f:2,c:27643},27641,{f:2,c:27639},28315,28374,28360,28303,28352,28319,{f:2,c:28307},28320,28337,28345,28358,28370,28349,28353,28318,28361,28343,28336,28365,28326,28367,28338,28350,28355,28380,28376,28313,28306,28302,28301,28324,28321,28351,28339,28368,28362,28311,28334,28323,28999,29012,29010,29027,29024,28993,29021,[29026,61080],29042,29048,29034,29025,28994,29016,28995,29003,29040,29023,29008,29011,28996,29005,29018,29263,29325,29324,29329,29328,29326,29500,29506,29499,29498,29504,29514,29513,29764,{f:2,c:29770},29778,29777,29783,29760,{f:2,c:29775},29774,29762,29766,29773,29780,29921,29951,29950,29949,29981,30073,30071,27011,30191,30223,30211,30199,30206,30204,[30201,60782],30200,30224,30203,30198,30189,30197,30205,30361,30389,30429,30549,{f:2,c:30559},30546,30550,30554,30569,30567,30548,30553,30573,30688,30855,30874,30868,30863,30852,30869,{f:2,c:30853},30881,30851,30841,30873,30848,30870,30843,31100,31106,31101,31097,31249,{f:2,c:31256},31250,31255,31253,31266,31251,31259,31248,31395,31394,31390,31467,31590,31588,31597,31604,31593,31602,31589,31603,31601,31600,31585,31608,31606,31587,31922,31924,31919,32136,32134,32128,32141,32127,32133,32122,32142,32123,32131,32124,32140,32148,32132,32125,32146,32621,32619,{f:2,c:32615},32620,32678,32677,32679,{f:2,c:32731},32801,33124,33120,33143,33116,33129,33115,33122,33138,26401,33118,33142,33127,33135,33092,33121,33309,33353,33348,33344,33346,33349,34033,33855,33878,33910,33913,33935,33933,33893,33873,33856,33926,33895,33840,33869,33917,33882,33881,33908,33907,33885,34055,33886,33847,33850,33844,33914,33859,33912,33842,33861,33833,33753,33867,33839,33858,33837,33887,33904,33849,33870,33868,33874,33903,33989,33934,33851,33863,33846,33843,33896,33918,33860,33835,33888,33876,33902,33872,34571,34564,34551,34572,34554,34518,34549,34637,34552,34574,34569,34561,34550,34573,34565,35030,35019,{f:2,c:35021},35038,35035,35034,35020,35024,35205,35227,35295,35301,35300,35297,35296,35298,35292,35302,35446,35462,35455,35425,35391,35447,35458,35460,35445,35459,35457,35444,35450,35900,35915,35914,35941,35940,35942,35974,{f:2,c:35972},36044,{f:2,c:36200},36241,36236,{f:2,c:36238},36237,{f:2,c:36243},36240,36242,36336,36320,36332,36337,36334,36304,36329,36323,36322,36327,36338,36331,36340,36614,36607,36609,36608,36613,{f:2,c:36615},36610,[36619,60507],36946,36927,36932,36937,36925,37136,37133,37135,37137,37142,37140,37131,37134,{f:2,c:37230},37448,37458,37424,37434,37478,37427,37477,37470,37507,37422,37450,37446,37485,37484,37455,37472,37479,37487,37430,37473,37488,37425,37460,37475,37456,37490,37454,37459,37452,37462,37426,38303,38300,38302,38299,{f:2,c:38546},38545,38551,38606,38650,38653,38648,38645,38771,{f:2,c:38775},38770,38927,{f:2,c:38925},39084,39158,39161,39343,39346,39344,39349,39597,39595,39771,40170,40173,40167,40576,[12236,40701],20710,20692,20695,20712,20723,20699,20714,20701,20708,20691,20716,20720,20719,20707,20704,20952,{f:2,c:21120},21225,21227,21296,21420,22055,22037,22028,22034,22012,22031,22044,22017,22035,22018,22010,22045,22020,22015,22009,22665,22652,22672,22680,22662,22657,22655,22644,22667,22650,22663,22673,22670,22646,22658,22664,22651,22676,22671,22782,22891,23260,23278,23269,23253,23274,23258,23277,23275,23283,23266,23264,23259,23276,23262,23261,23257,23272,23263,23415,23520,23523,23651,23938,23936,23933,23942,23930,23937,23927,23946,23945,23944,23934,23932,23949,23929,23935,{f:2,c:24152},24147,24280,24273,24279,24270,24284,24277,24281,24274,24276,24388,24387,24431,24502,24876,24872,24897,24926,24945,24947,{f:2,c:24914},24946,24940,24960,24948,24916,24954,24923,24933,24891,24938,24929,24918,25129,25127,25131,25643,25677,25691,25693,25716,25718,{f:2,c:25714},25725,25717,25702,25766,25678,25730,25694,25692,25675,25683,25696,25680,25727,25663,25708,25707,25689,25701,25719,25971,26016,26273,26272,26271,26373,26372,26402,27057,27062,27081,27040,27086,27030,27056,27052,27068,27025,27033,27022,27047,27021,27049,27070,27055,27071,27076,27069,27044,27092,27065,27082,27034,27087,27059,27027,27050,27041,27038,27097,27031,27024,27074,27061,27045,27078,27466,27469,27467,{f:3,c:27550},{f:2,c:27587},27646,28366,28405,28401,28419,28453,28408,28471,28411,28462,28425,28494,{f:2,c:28441},28455,28440,28475,28434,28397,28426,28470,28531,28409,28398,28461,28480,28464,28476,28469,28395,28423,28430,28483,28421,28413,28406,28473,28444,28412,28474,28447,28429,28446,28424,28449,29063,29072,29065,29056,29061,29058,29071,29051,29062,29057,29079,29252,29267,29335,29333,29331,29507,29517,29521,29516,29794,29811,29809,29813,29810,29799,29806,29952,{f:2,c:29954},30077,30096,30230,30216,30220,30229,30225,30218,30228,30392,30593,30588,30597,30594,30574,30592,30575,30590,30595,30898,30890,30900,30893,30888,30846,30891,30878,30885,30880,30892,30882,30884,31128,{f:2,c:31114},31126,31125,31124,31123,31127,31112,31122,31120,31275,31306,31280,31279,31272,31270,31400,{f:2,c:31403},31470,31624,31644,31626,31633,31632,31638,31629,31628,31643,31630,31621,31640,21124,31641,31652,31618,31931,31935,31932,31930,32167,32183,32194,32163,32170,32193,32192,32197,32157,32206,32196,32198,{f:2,c:32203},32175,32185,32150,32188,32159,32166,32174,32169,32161,32201,32627,{f:2,c:32738},32741,32734,32804,32861,32860,33161,33158,33155,33159,33165,33164,33163,33301,33943,33956,33953,33951,33978,33998,33986,33964,33966,33963,33977,33972,33985,33997,33962,33946,33969,34e3,33949,33959,33979,33954,33940,33991,33996,33947,33961,33967,[33960,58327],34006,33944,33974,33999,33952,34007,34004,34002,34011,33968,33937,34401,34611,34595,34600,34667,34624,34606,34590,34593,34585,34587,34627,34604,34625,34622,34630,34592,34610,34602,34605,34620,34578,34618,34609,34613,34626,{f:2,c:34598},34616,34596,34586,34608,34577,35063,35047,{f:2,c:35057},35066,35070,35054,35068,35062,35067,35056,35052,35051,35229,35233,35231,35230,35305,35307,35304,35499,35481,35467,35474,35471,35478,35901,{f:2,c:35944},36053,36047,36055,36246,36361,36354,36351,36365,36349,36362,36355,36359,36358,36357,36350,36352,36356,{f:2,c:36624},36622,36621,37155,37148,37152,37154,37151,37149,37146,37156,37153,37147,37242,37234,37241,37235,37541,37540,37494,37531,37498,37536,37524,37546,37517,37542,37530,37547,37497,37527,37503,37539,37614,37518,37506,37525,37538,37501,37512,37537,37514,37510,37516,37529,37543,37502,37511,37545,37533,37515,37421,38558,38561,38655,38744,38781,38778,38782,38787,38784,38786,38779,38788,38785,38783,38862,38861,38934,{f:2,c:39085},39170,39168,39175,39325,39324,39363,39353,39355,39354,39362,39357,39367,39601,39651,39655,{f:2,c:39742},{f:2,c:39776},39775,{f:2,c:40177},40181,40615,20735,20739,20784,20728,{f:2,c:20742},20726,20734,{f:2,c:20747},20733,20746,{f:2,c:21131},21233,21231,22088,22082,22092,22069,22081,22090,22089,22086,22104,22106,22080,22067,22077,22060,22078,22072,22058,22074,22298,22699,22685,22705,22688,22691,22703,22700,22693,22689,22783,23295,23284,23293,23287,23286,23299,23288,23298,23289,23297,23303,23301,23311,23655,23961,23959,23967,23954,23970,23955,23957,23968,23964,23969,23962,23966,24169,24157,24160,24156,32243,24283,24286,24289,24393,24498,24971,24963,24953,25009,25008,24994,24969,24987,24979,25007,25005,24991,24978,25002,24993,24973,24934,25011,25133,25710,25712,25750,25760,25733,25751,25756,25743,25739,25738,25740,25763,25759,25704,25777,25752,25974,25978,25977,25979,{f:2,c:26034},26293,26288,26281,26290,26295,26282,26287,27136,27142,27159,27109,27128,27157,27121,27108,27168,27135,27116,27106,27163,27165,27134,27175,27122,27118,27156,27127,27111,27200,27144,27110,27131,27149,27132,27115,27145,27140,27160,27173,27151,27126,27174,27143,27124,27158,27473,27557,27555,27554,27558,27649,27648,27647,27650,28481,28454,28542,28551,28614,28562,28557,28553,28556,28514,28495,28549,28506,28566,28534,28524,28546,28501,28530,28498,28496,28503,28564,28563,28509,28416,28513,28523,28541,28519,28560,28499,28555,28521,28543,28565,28515,28535,28522,28539,29106,29103,29083,29104,29088,29082,29097,29109,29085,29093,29086,29092,29089,29098,29084,29095,29107,29336,29338,29528,29522,{f:3,c:29534},29533,29531,29537,29530,29529,29538,29831,{f:2,c:29833},29830,29825,29821,29829,29832,29820,[29817,58868],29960,29959,30078,30245,30238,30233,30237,30236,30243,30234,30248,30235,{f:3,c:30364},30363,30605,30607,30601,30600,30925,30907,30927,30924,30929,30926,30932,30920,{f:2,c:30915},30921,31130,31137,31136,31132,31138,[31131,59175],27510,31289,31410,31412,31411,31671,31691,31678,31660,31694,31663,31673,31690,31669,31941,31944,31948,31947,32247,32219,32234,32231,32215,32225,32259,32250,32230,32246,32241,32240,32238,32223,32630,32684,32688,32685,32749,32747,32746,32748,32742,32744,32868,32871,33187,33183,33182,33173,33186,33177,33175,33302,33359,33363,33362,33360,33358,33361,34084,34107,34063,34048,34089,34062,34057,34061,34079,34058,34087,34076,34043,34091,34042,34056,34060,34036,34090,34034,34069,34039,34027,34035,34044,34066,34026,34025,34070,34046,34088,34077,34094,34050,34045,34078,34038,34097,34086,{f:2,c:34023},34032,34031,34041,34072,34080,34096,34059,34073,34095,34402,34646,{f:2,c:34659},34679,34785,34675,34648,34644,34651,34642,34657,34650,34641,34654,34669,34666,34640,34638,34655,34653,34671,34668,34682,34670,34652,34661,34639,34683,34677,34658,34663,34665,34906,35077,35084,35092,35083,{f:3,c:35095},35078,35094,35089,35086,35081,35234,35236,35235,35309,35312,35308,35535,35526,35512,35539,35537,{f:2,c:35540},35515,35543,35518,35520,35525,35544,35523,35514,35517,35545,35902,35917,35983,36069,36063,36057,36072,36058,36061,36071,36256,36252,36257,36251,36384,36387,36389,36388,36398,36373,36379,36374,36369,36377,{f:2,c:36390},36372,36370,36376,36371,36380,36375,36378,36652,36644,36632,36634,36640,36643,{f:2,c:36630},36979,36976,36975,36967,36971,37167,37163,{f:2,c:37161},37170,37158,37166,{f:2,c:37253},37258,{f:2,c:37249},37252,37248,37584,{f:2,c:37571},37568,37593,37558,37583,37617,37599,37592,37609,37591,37597,37580,37615,37570,37608,37578,37576,37582,37606,37581,37589,37577,37600,37598,37607,37585,37587,37557,37601,37669,37574,37556,38268,38316,38315,38318,38320,38564,38562,38611,38661,38664,38658,38746,38794,38798,38792,38864,38863,38942,38941,38950,38953,38952,38944,38939,38951,39090,39176,39162,39185,39188,{f:2,c:39190},39189,39388,39373,39375,{f:2,c:39379},39374,39369,[39382,60270],39384,39371,39383,39372,39603,39660,39659,39667,39666,39665,39750,39747,39783,39796,39793,39782,39798,39797,39792,39784,39780,39788,40188,40186,40189,40191,40183,40199,40192,40185,40187,40200,40197,40196,40579,40659,{f:2,c:40719},20764,20755,20759,20762,20753,20958,21300,21473,22128,22112,22126,22131,22118,22115,22125,22130,22110,22135,22300,22299,22728,22717,22729,22719,22714,22722,22716,22726,23319,23321,23323,23329,23316,23315,23312,23318,[23336,59539],23322,23328,23326,23535,23980,23985,23977,23975,23989,23984,23982,23978,23976,23986,23981,23983,23988,{f:2,c:24167},24166,24175,24297,24295,24294,24296,24293,24395,24508,24507,24989,25e3,24982,25029,25012,25030,25025,25036,25018,25023,25016,24972,25815,25814,25808,25807,25801,25789,25737,25795,25819,25843,25817,25907,25983,25980,26018,26312,26302,26304,{f:2,c:26314},26319,26301,26299,26298,26316,26403,27188,27238,27209,27239,27186,27240,27198,27229,27245,27254,27227,27217,27176,27226,27195,27199,27201,27242,27236,27216,27215,27220,27247,27241,27232,27196,27230,27222,27221,{f:2,c:27213},27206,27477,27476,27478,27559,{f:2,c:27562},27592,27591,27652,27651,27654,28589,28619,28579,28615,28604,28622,28616,28510,28612,28605,28574,28618,28584,28676,28581,28590,28602,28588,28586,28623,28607,28600,28578,28617,28587,28621,28591,28594,28592,29125,29122,29119,29112,29142,{f:2,c:29120},29131,29140,29130,29127,29135,29117,29144,29116,29126,{f:2,c:29146},{f:2,c:29341},29545,{f:2,c:29542},29548,29541,29547,29546,29823,29850,29856,29844,29842,29845,29857,29963,30080,30255,30253,30257,30269,30259,30268,30261,30258,30256,30395,30438,30618,30621,30625,30620,30619,{f:2,c:30626},30613,30617,30615,30941,30953,30949,30954,30942,30947,30939,{f:2,c:30945},30957,{f:2,c:30943},31140,31300,31304,31303,31414,31416,31413,31409,31415,31710,31715,31719,31709,31701,31717,31706,31720,31737,31700,31722,31714,31708,31723,31704,31711,31954,31956,31959,{f:2,c:31952},32274,32289,32279,32268,{f:2,c:32287},32275,32270,32284,32277,32282,32290,32267,32271,32278,32269,32276,32293,32292,32579,{f:2,c:32635},32634,32689,32751,32810,32809,32876,33201,33190,33198,33209,33205,33195,33200,33196,33204,33202,33207,33191,33266,{f:3,c:33365},34134,34117,34155,34125,34131,34145,34136,34112,34118,34148,34113,34146,34116,34129,34119,34147,34110,34139,34161,34126,34158,34165,34133,34151,34144,34188,34150,34141,34132,34149,34156,34403,34405,34404,34724,34715,34703,34711,34707,34706,34696,34689,34710,34712,34681,34695,34723,34693,{f:2,c:34704},34717,34692,34708,34716,34714,34697,35102,35110,35120,{f:2,c:35117},35111,35121,35106,35113,35107,35119,35116,35103,35313,35552,35554,35570,{f:2,c:35572},35549,35604,35556,35551,35568,35528,35550,35553,35560,35583,35567,35579,{f:2,c:35985},35984,36085,36078,36081,36080,36083,36204,36206,36261,36263,36403,36414,36408,36416,36421,36406,{f:2,c:36412},36417,36400,36415,36541,[36662,60329],36654,36661,36658,36665,36663,36660,36982,36985,36987,36998,37114,37171,{f:2,c:37173},37267,{f:2,c:37264},37261,37263,37671,37662,37640,37663,37638,37647,37754,37688,37692,37659,37667,37650,37633,37702,37677,37646,37645,37579,37661,37626,37651,37625,37623,37684,37634,37668,37631,37673,37689,37685,37674,37652,37644,37643,37630,37641,37632,37627,37654,38332,38349,38334,{f:2,c:38329},38326,38335,38325,38333,38569,38612,38667,38674,38672,38809,38807,38804,38896,38904,38965,38959,38962,39204,39199,39207,39209,39326,39406,39404,39397,39396,39408,39395,39402,39401,39399,39609,39615,39604,39611,39670,39674,39673,39671,39731,39808,39813,39815,39804,39806,39803,39810,39827,39826,39824,39802,39829,39805,39816,40229,40215,40224,40222,40212,40233,40221,40216,40226,40208,40217,40223,40584,{f:2,c:40582},40622,40621,{f:2,c:40661},40698,40722,40765,20774,20773,20770,20772,20768,20777,21236,22163,{f:2,c:22156},22150,22148,22147,22142,22146,22143,22145,22742,22740,22735,22738,23341,23333,23346,23331,23340,23335,23334,23343,23342,23419,{f:2,c:23537},23991,24172,24170,24510,25027,25013,25020,25063,25056,25061,25060,25064,25054,25839,25833,25827,25835,25828,25832,25985,25984,26038,26074,26322,27277,27286,27265,27301,27273,27295,27291,27297,27294,27271,27283,27278,27285,27267,27304,27300,27281,27263,27302,27290,27269,27276,27282,27483,27565,27657,28620,28585,28660,28628,28643,28636,28653,28647,28646,28638,28658,28637,28642,28648,29153,29169,29160,29170,29156,29168,29154,29555,{f:2,c:29550},29847,29874,29867,29840,29866,29869,29873,29861,29871,{f:3,c:29968},29967,30084,30275,{f:2,c:30280},30279,30372,30441,30645,30635,30642,30647,30646,30644,30641,30632,30704,30963,30973,30978,{f:2,c:30971},30975,30962,30981,30969,30974,30980,31147,31144,31324,31323,31318,31320,31316,31322,31422,{f:2,c:31424},31749,31759,31730,31744,31743,31739,31758,31732,31755,31731,31746,31753,31747,31745,31736,31741,[31750,58176],{f:2,c:31728},31760,31754,31976,32301,32316,32322,32307,38984,32312,32298,32329,32320,32327,32297,32332,32304,32315,32310,32324,32314,32581,32639,32638,32637,32756,32754,32812,33211,33220,33228,33226,33221,33223,33212,33257,33371,33370,33372,34179,34176,34191,34215,34197,34208,34187,34211,34171,34212,34202,34206,34167,34172,34185,34209,34170,34168,34135,34190,34198,34182,34189,34201,34205,34177,34210,34178,34184,34181,34169,34166,34200,34192,34207,34408,34750,34730,34733,34757,34736,34732,34745,34741,34748,34734,34761,34755,34754,34764,34743,34735,34756,34762,34740,34742,34751,34744,34749,34782,34738,35125,35123,35132,35134,35137,35154,35127,35138,35245,35247,35246,{f:2,c:35314},35614,35608,35606,35601,35589,35595,35618,35599,35602,35605,35591,35597,35592,35590,35612,35603,35610,35919,35952,35954,35953,35951,35989,35988,36089,36207,36430,36429,36435,36432,36428,36423,36675,36672,36997,36990,37176,37274,37282,37275,37273,37279,37281,37277,37280,37793,37763,37807,37732,37718,37703,37756,37720,37724,37750,37705,{f:2,c:37712},37728,37741,37775,37708,37738,37753,37719,37717,37714,37711,37745,37751,37755,37729,37726,37731,37735,37710,37721,38343,38336,38345,38339,38341,38327,38574,38576,38572,38688,38687,38680,38685,38681,38810,38817,38812,38814,38813,38869,38868,38897,38977,38980,38986,38985,38981,38979,39205,{f:2,c:39211},39210,39219,39218,39215,39213,39217,39216,39320,39331,39329,39426,39418,39412,39415,39417,39416,39414,39419,{f:2,c:39421},39420,39427,39614,39678,39677,39681,39676,39752,39834,39848,39838,39835,39846,39841,39845,39844,39814,39842,39840,39855,40243,40257,40295,40246,{f:2,c:40238},40241,40248,40240,40261,{f:2,c:40258},40254,40247,40256,40253,32757,40237,40586,40585,40589,40624,40648,40666,40699,40703,40740,40739,40738,40788,[12245,40864],20785,{f:2,c:20781},22168,22172,22167,22170,22173,22169,22896,23356,{f:2,c:23657},24e3,{f:2,c:24173},25048,25055,{f:2,c:25069},25073,25066,25072,25067,25046,25065,25855,25860,25853,25848,25857,25859,25852,26004,26075,{f:2,c:26330},26328,27333,27321,27325,27361,27334,27322,{f:2,c:27318},27335,27316,27309,27486,27593,27659,28679,{f:2,c:28684},28673,28677,28692,28686,{f:2,c:28671},28667,28710,28668,28663,28682,[29185,60224],29183,29177,29187,29181,29558,29880,29888,29877,29889,29886,29878,29883,29890,29972,29971,30300,30308,30297,30288,30291,30295,30298,30374,30397,30444,30658,30650,30988,{f:2,c:30995},30985,30992,30994,30993,31149,31148,31327,31772,31785,31769,31776,31775,31789,31773,31782,31784,31778,31781,31792,32348,32336,32342,32355,32344,32354,32351,32337,32352,32343,32339,32693,32691,{f:2,c:32759},32885,{f:2,c:33233},33232,33375,33374,34228,34246,34240,34243,34242,34227,34229,34237,34247,34244,34239,34251,34254,34248,34245,34225,34230,34258,34340,34232,34231,34238,34409,34791,34790,34786,34779,34795,34794,34789,34783,34803,34788,34772,34780,34771,34797,34776,34787,34775,34777,34817,34804,34792,34781,35155,35147,35151,35148,35142,{f:2,c:35152},35145,35626,35623,35619,35635,35632,35637,35655,35631,35644,35646,35633,35621,35639,35622,35638,35630,35620,35643,35645,35642,35906,35957,35993,35992,35991,36094,36100,36098,36096,36444,36450,36448,36439,36438,36446,36453,36455,36443,36442,36449,36445,36457,36436,{f:3,c:36678},36683,37160,{f:2,c:37178},37182,37288,37285,37287,37295,37290,37813,37772,37778,37815,37787,37789,37769,37799,37774,37802,37790,37798,37781,37768,37785,37791,37760,37773,37809,37777,37810,37796,37800,37812,37795,{f:2,c:38354},38353,38579,38615,38618,24002,38623,38616,38621,38691,38690,38693,38828,38830,38824,38827,38820,38826,38818,38821,38871,38873,38870,38872,38906,{f:3,c:38992},39096,39233,39228,39226,39439,39435,39433,39437,39428,39441,39434,39429,39431,39430,39616,39644,39688,{f:2,c:39684},39721,39733,39754,39756,39755,39879,39878,39875,39871,39873,39861,39864,39891,39862,39876,39865,39869,40284,40275,40271,40266,40283,40267,40281,40278,40268,40279,40274,40276,40287,40280,40282,40590,40588,40671,40705,40704,[40726,58693],40741,40747,40746,40745,40744,40780,40789,{f:2,c:20788},21142,21239,21428,22187,22189,{f:2,c:22182},22186,22188,22746,22749,22747,22802,{f:3,c:23357},24003,24176,24511,25083,25863,25872,25869,25865,25868,25870,25988,26078,26077,26334,27367,27360,27340,27345,27353,27339,27359,27356,27344,27371,27343,27341,27358,27488,27568,27660,28697,28711,28704,28694,28715,{f:3,c:28705},28713,28695,28708,28700,29196,29194,29191,29186,29189,{f:2,c:29349},29348,29347,29345,29899,29893,29879,29891,29974,30304,{f:2,c:30665},30660,30705,31005,31003,31009,31004,30999,31006,31152,{f:2,c:31335},31795,31804,31801,31788,31803,31980,31978,32374,32373,32376,32368,32375,32367,32378,32370,32372,32360,32587,32586,32643,32646,32695,{f:2,c:32765},32888,33239,33237,33291,33380,33377,33379,34283,34289,34285,34265,34273,34280,34266,34263,34284,34290,34296,34264,34271,34275,34268,34257,34288,34278,34287,34270,34274,34816,34810,34819,{f:2,c:34806},34825,34828,34827,34822,34812,34824,34815,34826,34818,35170,{f:2,c:35162},35159,35169,35164,35160,35165,35161,35208,35255,35254,35318,35664,35656,35658,35648,35667,35670,35668,35659,35669,35665,35650,35666,35671,35907,35959,35958,35994,{f:2,c:36102},36105,36268,36266,36269,36267,36461,36472,36467,36458,36463,36475,36546,36690,36689,{f:2,c:36687},36691,36788,37184,37183,37296,37293,37854,37831,37839,37826,37850,37840,37881,37868,37836,37849,37801,37862,37834,37844,37870,37859,37845,37828,37838,37824,37842,37797,37863,38269,{f:2,c:38362},38625,38697,{f:2,c:38699},38696,38694,38835,38839,38838,{f:3,c:38877},39004,39001,39005,38999,39103,39101,39099,39102,39240,39239,39235,{f:2,c:39334},39450,39445,39461,39453,39460,39451,39458,39456,39463,39459,39454,39452,39444,39618,39691,39690,39694,39692,39735,{f:2,c:39914},39904,39902,39908,39910,39906,39920,39892,39895,39916,39900,39897,39909,39893,39905,39898,40311,40321,40330,40324,40328,40305,40320,40312,40326,{f:2,c:40331},40317,40299,{f:2,c:40308},40304,40297,40325,40307,40315,40322,40303,40313,40319,40327,40296,40596,40593,40640,40700,40749,{f:2,c:40768},40781,{f:3,c:40790},21303,22194,22197,22195,22755,23365,{f:2,c:24006},{f:2,c:24302},{f:2,c:24512},25081,25879,25878,25877,25875,26079,26344,{f:2,c:26339},27379,27376,27370,27368,27385,27377,{f:2,c:27374},28732,28725,28719,28727,28724,28721,28738,28728,28735,28730,28729,28714,28736,28731,28723,28737,{f:2,c:29203},29352,29565,29564,29882,30379,30378,30398,30445,30668,{f:2,c:30670},30669,30706,31013,31011,{f:2,c:31015},31012,31017,31154,31342,{f:2,c:31340},31479,31817,31816,31818,31815,31813,31982,32379,32382,32385,32384,32698,32767,32889,33243,33241,{f:2,c:33384},34338,34303,34305,34302,34331,34304,34294,34308,34313,34309,34316,34301,34841,{f:2,c:34832},34839,34835,34838,35171,35174,35257,35319,35680,35690,35677,35688,35683,35685,35687,35693,36270,36486,36488,36484,36697,{f:2,c:36694},36693,36696,36698,37005,37187,37185,37303,37301,{f:2,c:37298},37899,37907,37883,37920,37903,37908,37886,37909,37904,37928,37913,37901,37877,37888,37879,37895,37902,37910,37906,37882,37897,37880,37948,37898,37887,37884,37900,37878,37905,37894,38366,38368,38367,{f:2,c:38702},38841,38843,{f:2,c:38909},39008,{f:2,c:39010},39007,{f:2,c:39105},39248,39246,39257,39244,39243,39251,39474,39476,39473,39468,39466,39478,39465,39470,39480,39469,39623,39626,39622,39696,39698,39697,39947,39944,39927,39941,39954,39928,4e4,39943,39950,39942,39959,39956,39945,40351,40345,40356,40349,40338,40344,40336,40347,40352,40340,40348,40362,40343,40353,40346,40354,40360,40350,40355,40383,40361,40342,{f:2,c:40358},40601,40603,40602,40677,40676,40679,40678,40752,40750,40795,40800,40798,40797,40793,40849,20794,20793,21144,21143,22211,{f:2,c:22205},23368,23367,24011,24015,24305,25085,25883,27394,27388,27395,27384,27392,{f:2,c:28739},28746,{f:2,c:28744},{f:2,c:28741},29213,29210,29209,29566,29975,30314,30672,31021,31025,31023,31828,31827,31986,32394,[32391,60229],32392,32395,32390,32397,32589,32699,32816,33245,34328,34346,34342,34335,34339,34332,34329,34343,34350,34337,34336,34345,34334,34341,34857,34845,34843,34848,34852,34844,34859,34890,35181,35177,35182,35179,35322,35705,35704,35653,{f:2,c:35706},36112,36116,36271,36494,36492,36702,36699,36701,37190,{f:2,c:37188},37305,37951,37947,37942,37929,37949,37936,37945,37930,37943,37932,37952,37937,38373,38372,38371,38709,38714,38847,38881,39012,39113,39110,39104,39256,39254,39481,39485,39494,39492,39490,39489,39482,39487,39629,39701,{f:2,c:39703},39702,39738,39762,39979,39965,39964,39980,39971,{f:2,c:39976},39972,39969,40375,40374,40380,40385,40391,40394,40399,40382,40389,40387,40379,40373,40398,{f:2,c:40377},40364,40392,40369,40365,40396,40371,40397,40370,40570,40604,40683,40686,40685,40731,40728,40730,40753,40782,40805,40804,40850,20153,22214,22213,22219,22897,{f:2,c:23371},24021,24017,24306,25889,25888,25894,25890,27403,{f:2,c:27400},27661,{f:3,c:28757},28754,{f:2,c:29214},29353,29567,29912,29909,29913,29911,30317,30381,31029,31156,{f:2,c:31344},31831,31836,31833,31835,31834,31988,31985,32401,32591,32647,33246,33387,{f:2,c:34356},34355,34348,34354,34358,34860,34856,34854,34858,34853,35185,35263,35262,35323,35710,35716,35714,35718,35717,35711,36117,36501,36500,36506,36498,36496,{f:2,c:36502},36704,36706,37191,37964,37968,{f:2,c:37962},37967,37959,37957,{f:2,c:37960},37958,38719,38883,39018,39017,39115,39252,39259,39502,{f:2,c:39507},39500,39503,39496,39498,39497,39506,39504,39632,39705,39723,39739,39766,39765,40006,40008,39999,40004,39993,39987,40001,39996,39991,39988,39986,39997,39990,40411,40402,40414,40410,40395,40400,40412,40401,40415,40425,40409,40408,40406,40437,40405,40413,40630,40688,40757,40755,40754,40770,40811,40853,40866,20797,21145,22760,22759,22898,23373,24024,34863,24399,25089,{f:2,c:25091},25897,25893,26006,26347,{f:2,c:27409},27407,27594,28763,28762,29218,29570,29569,29571,30320,30676,31847,31846,32405,33388,34362,34368,34361,34364,34353,34363,34366,34864,34866,34862,34867,35190,35188,35187,35326,35724,35726,35723,35720,35909,36121,36504,36708,36707,37308,37986,37973,37981,37975,37982,{f:2,c:38852},38912,39510,39513,{f:3,c:39710},40018,40024,40016,40010,40013,40011,40021,40025,40012,40014,40443,40439,40431,40419,40427,40440,40420,40438,40417,40430,40422,40434,[40432,60370],40418,40428,40436,40435,40424,40429,40642,40656,{f:2,c:40690},40710,40732,40760,40759,40758,40771,40783,40817,40816,{f:2,c:40814},22227,22221,23374,23661,25901,{f:2,c:26349},27411,28767,28769,28765,28768,29219,29915,29925,30677,31032,31159,31158,31850,32407,32649,33389,34371,34872,34871,34869,34891,{f:2,c:35732},{f:3,c:36510},36509,37310,37309,37314,37995,{f:2,c:37992},38629,38726,38723,38727,38855,38885,39518,39637,39769,40035,40039,40038,40034,40030,40032,40450,40446,40455,40451,40454,40453,{f:2,c:40448},40457,40447,40445,40452,40608,40734,40774,{f:3,c:40820},22228,25902,26040,{f:2,c:27416},27415,27418,28770,29222,29354,{f:2,c:30680},31033,31849,31851,31990,32410,32408,32411,32409,{f:2,c:33248},{f:3,c:34374},{f:2,c:35193},35196,35195,35327,{f:2,c:35736},36517,36516,36515,37998,37997,37999,38001,38003,38729,39026,39263,40040,40046,40045,40459,40461,40464,40463,40466,40465,40609,40693,40713,40775,40824,40827,40826,40825,22302,28774,31855,34876,36274,36518,37315,38004,38008,38006,38005,39520,[39726,60830],40052,40051,40049,40053,40468,40467,40694,40714,40868,28776,28773,31991,34410,34878,34877,34879,35742,35996,36521,36553,38731,{f:2,c:39027},39116,39265,39339,39524,{f:2,c:39526},39716,40469,40471,40776,25095,27422,29223,34380,36520,38018,{f:2,c:38016},39529,39528,40473,34379,35743,38019,40057,40631,30325,39531,40058,40477,{f:2,c:28777},29225,40612,40830,40777,40856,{s:97},65075,0,65076,65103,[168,776,63208],[710,63209,65342],[12541,63210],[12542,63211],[12445,63212],[12446,63213],0,[12293,63216],[12294,63217],[12295,63218],[12540,63219],[63220,65339],[63221,65341],[10045,63222],[12353,63223],[12354,63224],[12355,63225],[12356,63226],[12357,63227],[12358,63228],[12359,63229],[12360,63230],[12361,63231],[12362,63232],[12363,63233],[12364,63234],[12365,63235],[12366,63236],[12367,63237],[12368,63238],[12369,63239],[12370,63240],[12371,63241],[12372,63242],[12373,63243],[12374,63244],[12375,63245],[12376,63246],[12377,63247],[12378,63248],[12379,63249],[12380,63250],[12381,63251],[12382,63252],[12383,63253],[12384,63254],[12385,63255],[12386,63256],[12387,63257],[12388,63258],[12389,63259],[12390,63260],[12391,63261],[12392,63262],[12393,63263],[12394,63264],[12395,63265],[12396,63266],[12397,63267],[12398,63268],[12399,63269],[12400,63270],[12401,63271],[12402,63272],[12403,63273],[12404,63274],[12405,63275],[12406,63276],[12407,63277],[12408,63278],[12409,63279],[12410,63280],[12411,63281],[12412,63282],[12413,63283],[12414,63284],[12415,63285],[12416,63286],[12417,63287],[12418,63288],[12419,63289],[12420,63290],[12421,63291],[12422,63292],[12423,63293],[12424,63294],[12425,63295],[12426,63296],[12427,63297],[12428,63298],[12429,63299],[12430,63300],[12431,63301],[12432,63302],[12433,63303],[12434,63304],[12435,63305],[12449,63306],[12450,63307],[12451,63308],[12452,63309],[12453,63310],[12454,63311],[12455,63312],[12456,63313],[12457,63314],[12458,63315],[12459,63316],[12460,63317],[12461,63318],[12462,63319],[12463,63320],[12464,63321],[12465,63322],[12466,63323],[12467,63324],[12468,63325],[12469,63326],[12470,63327],[12471,63328],[12472,63329],[12473,63330],[12474,63331],[12475,63332],[12476,63333],[12477,63334],[12478,63335],[12479,63336],[12480,63337],[12481,63338],[12482,63339],[12483,63340],[12484,63341],[12485,63342],[12486,63343],[12487,63344],[12488,63345],[12489,63346],[12490,63347],[12491,63348],[12492,63349],[12493,63350],[12494,63351],[12495,63352],[12496,63353],[12497,63354],[12498,63355],[12499,63356],[12500,63357],[12501,63358],[12502,63359],[12503,63360],[12504,63361],[12505,63362],[12506,63363],[12507,63364],[12508,63365],[12509,63366],[12510,63367],[12511,63368],[12512,63369],[12513,63370],[12514,63371],[12515,63372],[12516,63373],[12517,63374],[12518,63375],[12519,63376],[12520,63377],[12521,63378],[12522,63379],[12523,63380],[12524,63381],[12525,63382],[12526,63383],[12527,63384],[12528,63385],[12529,63386],[12530,63387],[12531,63388],[12532,63389],[12533,63390],[12534,63391],[1040,63392],[1041,63393],[1042,63394],[1043,63395],[1044,63396],[1045,63397],[1025,63398],[1046,63399],[1047,63400],[1048,63401],[1049,63402],[1050,63403],[1051,63404],[1052,63405],[1053,63406],[1054,63407],[1055,63408],[1056,63409],[1057,63410],[1058,63411],[1059,63412],[1060,63413],[1061,63414],[1062,63415],[1063,63416],[1064,63417],[1065,63418],[1066,63419],[1067,63420],[1068,63421],[1069,63422],[1070,63423],[1071,63424],[1072,63425],[1073,63426],[1074,63427],[1075,63428],[1076,63429],[1077,63430],[1105,63431],[1078,63432],[1079,63433],[1080,63434],[1081,63435],[1082,63436],[1083,63437],[1084,63438],[1085,63439],[1086,63440],[1087,63441],[1088,63442],[1089,63443],[1090,63444],[1091,63445],[1092,63446],[1093,63447],[1094,63448],[1095,63449],[1096,63450],[1097,63451],[1098,63452],[1099,63453],[1100,63454],[1101,63455],[1102,63456],[1103,63457],[8679,63458],[8632,63459],[8633,63460],[20033,63461],[63462,131276],[20058,63463],[63464,131210],[20994,63465],[17553,63466],63467,[20872,63468],[13853,63469],[63470,161287],{s:40},[172,63511,65506],[63512,65508],[63513,65287],[63514,65282],[12849,63515],[8470,63516],[8481,63517],30849,[37561,58501],35023,22715,24658,31911,23290,9556,9574,9559,9568,9580,9571,9562,9577,9565,9554,9572,9557,{s:3},9560,9575,9563,9555,9573,9558,9567,9579,9570,9561,9576,9564,9553,{s:5},9619,{s:26},[58129,147159],[22462,58130],[58131,159443],[28990,58132],[58133,153568],[27042,58135],[58136,166889],[23412,58137],[31305,58138],[58139,153825],[58140,169177],[31333,58141],[31357,58142],[58143,154028],[31419,58144],[31408,58145],[31426,58146],[31427,58147],[29137,58148],[58149,156813],[16842,58150],[31450,58151],[31453,58152],[31466,58153],[16879,58154],[21682,58155],[58156,154625],[31499,58157],[31573,58158],[31529,58159],[58160,152334],[58161,154878],[31650,58162],[31599,58163],[33692,58164],[58165,154548],[58166,158847],[31696,58167],[33825,58168],[31634,58169],0,[58171,154912],0,[33938,58174],[31738,58175],0,[31797,58177],[58178,154817],[31812,58179],[31875,58180],[58181,149634],[31910,58182],[58184,148856],[31945,58185],[31943,58186],[31974,58187],0,[31987,58189],[31989,58190],[32359,58192],[17693,58193],[58194,159300],[32093,58195],[58196,159446],[32137,58198],[32171,58199],[28981,58200],[32179,58201],32214,[58203,147543],[58204,155689],[32228,58205],[15635,58206],[32245,58207],[58208,137209],[32229,58209],[58210,164717],0,[58212,155937],[58213,155994],[32366,58214],0,[17195,58216],[37996,58217],[32295,58218],[32576,58219],[32577,58220],[32583,58221],[31030,58222],[58223,156368],[39393,58224],[32663,58225],[58226,156497],[32675,58227],[58228,136801],[58229,131176],[17756,58230],[58231,145254],[58233,164666],[32762,58234],[58235,156809],0,[32776,58237],[32797,58238],0,[32815,58240],[58241,172167],[58242,158915],[32827,58243],[32828,58244],[32865,58245],[58246,141076],[18825,58247],[58248,157222],[58249,146915],[58250,157416],[26405,58251],[32935,58252],[58253,166472],[33031,58254],[33050,58255],[22704,58256],[58257,141046],[27775,58258],[58259,156824],[25831,58261],[58262,136330],[33304,58263],[58264,137310],[27219,58265],[58266,150117],[58267,150165],[17530,58268],[33321,58269],[58271,158290],[58272,146814],[20473,58273],[58274,136445],[34018,58275],[33634,58276],0,[58278,149927],[58279,144688],[58280,137075],[58281,146936],[33450,58282],[26907,58283],[58284,194964],[16859,58285],[34123,58286],[33488,58287],[33562,58288],[58289,134678],[58290,137140],[14017,58291],[58292,143741],[58293,144730],[33403,58294],[33506,58295],[33560,58296],[58297,147083],[58298,159139],[58299,158469],[58300,158615],[58301,144846],[15807,58302],[33565,58303],[21996,58304],[33669,58305],[17675,58306],[58307,159141],[33708,58308],0,[33747,58310],[58312,159444],[27223,58313],[34138,58314],[13462,58315],[58316,159298],[33880,58318],[58319,154596],[33905,58320],[15827,58321],[17636,58322],[27303,58323],[33866,58324],[31064,58326],0,[58328,158614],[58329,159351],[58330,159299],[34014,58331],0,[33681,58333],[17568,58334],[33939,58335],[34020,58336],[58337,154769],[16960,58338],[58339,154816],[17731,58340],[34100,58341],[23282,58342],0,[17703,58344],[34163,58345],[17686,58346],[26559,58347],[34326,58348],[58349,165413],[58350,165435],[34241,58351],[58352,159880],[34306,58353],[58354,136578],[58355,159949],[58356,194994],[17770,58357],[34344,58358],[13896,58359],[58360,137378],[21495,58361],[58362,160666],[34430,58363],0,[58365,172280],[34798,58366],[58367,142375],[34737,58368],[34778,58369],[34831,58370,60990],[22113,58371],[34412,58372],[26710,58373],[17935,58374],[34885,58375],[34886,58376],[58377,161248],[58378,146873],[58379,161252],[34910,58380],[34972,58381],[18011,58382],[34996,58383],[34997,58384],[35013,58386],[58388,161551],[35207,58389],{s:3},[35239,58393],[35260,58394],[58395,166437],[35303,58396],[58397,162084],[58398,162493],[35484,58399],[30611,58400],[37374,58401],[35472,58402],[58403,162393],[31465,58404],[58405,162618],[18195,58407],[58408,162616],[29052,58409],[35596,58410],[35615,58411],[58412,152624],[58413,152933],[35647,58414],0,[35661,58416],[35497,58417],[58418,150138],[35728,58419],[35739,58420],[35503,58421],[58422,136927],[17941,58423],[34895,58424],[35995,58425],[58426,163156],[58427,163215],[58428,195028],[14117,58429],[58430,163155],[36054,58431],[58432,163224],[58433,163261],[36114,58434],[36099,58435],[58436,137488],[36059,58437],[28764,58438],[36113,58439],[16080,58441],0,[36265,58443],[58444,163842],[58445,135188],[58446,149898],[15228,58447],[58448,164284],[58449,160012],[31463,58450],[36525,58451],[36534,58452],[36547,58453],[37588,58454],[36633,58455],[36653,58456],[58457,164709],[58458,164882],[36773,58459],[37635,58460],[58461,172703],[58462,133712],[36787,58463],0,[58465,166366],[58466,165181],[58467,146875],[24312,58468],[58469,143970],[36857,58470],0,[58474,140069],[14720,58475],[58476,159447],[36919,58477],[58478,165180],[58479,162494],[36961,58480],[58481,165228],[58482,165387],[37032,58483],[58484,165651],[37060,58485],[58486,165606],[37038,58487],0,[37223,58489],[37289,58491],[37316,58492],[31916,58493],[58494,166195],[58495,138889],[37390,58496],[27807,58497],[37441,58498],[37474,58499],[58500,153017],[58502,166598],[58503,146587],[58504,166668],[58505,153051],[58506,134449],[37676,58507],[37739,58508],[58509,166625],[58510,166891],[23235,58512],[58513,166626],[58514,166629],[18789,58515],[37444,58516],[58517,166892],[58518,166969],[58519,166911],[37747,58520],[37979,58521],[36540,58522],[38277,58523],[38310,58524],[37926,58525],[38304,58526],[28662,58527],[17081,58528],[58530,165592],[58531,135804],[58532,146990],[18911,58533],[27676,58534],[38523,58535],[38550,58536],[16748,58537],[38563,58538],[58539,159445],[25050,58540],58541,[30965,58542],[58543,166624],[38589,58544],[21452,58545],[18849,58546],[58547,158904],[58548,131700],[58549,156688],[58550,168111],[58551,168165],[58552,150225],[58553,137493],[58554,144138],[38705,58555],[34370,58556],[38710,58557],[18959,58558],[17725,58559],[17797,58560],[58561,150249],[28789,58562],[23361,58563],[38683,58564],0,[58566,168405],[38743,58567],[23370,58568],[58569,168427],[38751,58570],[37925,58571],[20688,58572],[58573,143543],[58574,143548],[38793,58575],[38815,58576],[38833,58577],[38846,58578],[38848,58579],[38866,58580],[38880,58581],[58582,152684],[38894,58583],[29724,58584],[58585,169011],0,[38901,58587],[58588,168989],[58589,162170],[19153,58590],[38964,58591],[38963,58592],[38987,58593],[39014,58594],[15118,58595],[58596,160117],[15697,58597],[58598,132656],[58599,147804],[58600,153350],[39114,58601],[39095,58602],[39112,58603],[39111,58604],[19199,58605],[58606,159015],[58607,136915],[21936,58608],[39137,58609],[39142,58610],[39148,58611],[37752,58612],[39225,58613],[58614,150057],[19314,58615],[58616,170071],[58617,170245],[39413,58618],[39436,58619],[39483,58620],[39440,58621],[39512,58622],[58623,153381],[14020,58624],[58625,168113],[58626,170965],[39648,58627],[39650,58628],[58629,170757],[39668,58630],[19470,58631],[39700,58632],[39725,58633],[58634,165376],[20532,58635],[39732,58636],[14531,58638],[58639,143485],[39760,58640],[39744,58641],[58642,171326],[23109,58643],[58644,137315],[39822,58645],[39938,58647],[39935,58648],[39948,58649],[58650,171624],[40404,58651],[58652,171959],[58653,172434],[58654,172459],[58655,172257],[58656,172323],[58657,172511],[40318,58658],[40323,58659],[58660,172340],[40462,58661],[40388,58663],[58665,172435],[58666,172576],[58667,137531],[58668,172595],[40249,58669],[58670,172217],[58671,172724],[40592,58672],[40597,58673],[40606,58674],[40610,58675],[19764,58676],[40618,58677],[40623,58678],[58679,148324],[40641,58680],[15200,58681],[14821,58682],[15645,58683],[20274,58684],[14270,58685],[58686,166955],[40706,58687],[40712,58688],[19350,58689],[37924,58690],[58691,159138],[40727,58692,60836],0,[40761,58694],[22175,58695],[22154,58696],[40773,58697],[39352,58698],[58699,168075],[38898,58700],[33919,58701],0,[40809,58703],[31452,58704],[40846,58705],[29206,58706],[19390,58707],[58708,149877],[58709,149947],[29047,58710],[58711,150008],[58712,148296],[58713,150097],[29598,58714],[58715,166874],[58716,137466],[31135,58717],[58718,166270],[58719,167478],[37737,58720],[37875,58721],[58722,166468],[37612,58723],[37761,58724],[37835,58725],[58726,166252],[58727,148665],[29207,58728],[16107,58729],[30578,58730],[31299,58731],[28880,58732],[58733,148595],[58734,148472],[29054,58735],[58736,137199],[28835,58737],[58738,137406],[58739,144793],[16071,58740],[58741,137349],[58742,152623],[58743,137208],[14114,58744],[58745,136955],[58746,137273],[14049,58747],[58748,137076],[58749,137425],[58750,155467],[14115,58751],[58752,136896],[22363,58753],[58754,150053],[58755,136190],[58756,135848],[58757,136134],[58758,136374],[34051,58759,58761],[58760,145062],0,[33877,58762],[58763,149908],[58764,160101],[58765,146993],[58766,152924],[58767,147195],[58768,159826],[17652,58769],[58770,145134],[58771,170397],[58772,159526],[26617,58773],[14131,58774],[15381,58775],[15847,58776],[22636,58777],[58778,137506],[26640,58779],[16471,58780],[58781,145215],[58782,147681],[58783,147595],[58784,147727],[58785,158753],[21707,58786],[22174,58787],[58788,157361],[22162,58789],[58790,135135],[58791,134056],[58792,134669],0,[58794,166675],[37788,58795],[20216,58796],[20779,58797],[14361,58798],[58799,148534],[20156,58800],[58801,132197],0,[20299,58803],[20362,58804],[58805,153169],[23144,58806],[58807,131499],[58808,132043],[14745,58809],[58810,131850],[58811,132116],[13365,58812],[20265,58813],[58814,131776],[58815,167603],[58816,131701],[35546,58817],[58818,131596],[20120,58819],[20685,58820],[20749,58821],[20386,58822],[20227,58823],[58824,150030],[58825,147082],[20290,58826],[20526,58827],[20588,58828],[20609,58829],[20428,58830],[20453,58831],[20568,58832],[20732,58833],[28278,58838],[58839,144789],[58840,147001],[58841,147135],[28018,58842],[58843,137348],[58844,147081],[20904,58845],[20931,58846],[58847,132576],[17629,58848],[58849,132259],[58850,132242],[58851,132241],[36218,58852],[58853,166556],[58854,132878],[21081,58855],[21156,58856],[58857,133235],[21217,58858],0,[18042,58860],[29068,58861],[58862,148364],[58863,134176],[58864,149932],[58865,135396],[27089,58866],[58867,134685],0,[16094,58869],[29849,58870],[29716,58871],[29782,58872],[29592,58873],[19342,58874],[58875,150204],[58876,147597],[21456,58877],[13700,58878],[29199,58879],[58880,147657],[21940,58881],[58882,131909],[21709,58883],[58884,134086],[22301,58885],[37469,58886],[38644,58887],[22493,58889],[22413,58890],[22399,58891],[13886,58892],[22731,58893],[23193,58894],[58895,166470],[58896,136954],[58897,137071],[58898,136976],[23084,58899],[22968,58900],[23166,58902],[23247,58903],[23058,58904],[58905,153926],[58906,137715],[58907,137313],[58908,148117],[14069,58909],[27909,58910],[29763,58911],[23073,58912],[58913,155267],[23169,58914],[58915,166871],[58916,132115],[37856,58917],[29836,58918],[58919,135939],[28933,58920],[18802,58921],[37896,58922],[58923,166395],[37821,58924],[14240,58925],[23582,58926],[23710,58927],[24158,58928],[24136,58929],[58930,137622],[58931,137596],[58932,146158],[24269,58933],[23375,58934],[58935,137475],[58936,137476],[14081,58937],[58938,137376],[14045,58939],[58940,136958],[14035,58941],[33066,58942],[58943,166471],[58944,138682],[58945,144498],[58946,166312],[24332,58947,60916],[24334,58948],[58949,137511],[58950,137131],[23147,58951],[58952,137019],[23364,58953],[58955,161277],[34912,58956],[24702,58957],[58958,141408],[58959,140843],[24539,58960],[16056,58961],[58962,140719],[58963,140734],[58964,168072],[58965,159603],[25024,58966],[58967,131134],[58968,131142],[58969,140827],[24985,58970],[24984,58971],[24693,58972],[58973,142491],[58974,142599],[58975,149204],[58976,168269],[25713,58977],[58978,149093],[58979,142186],[14889,58980],[58981,142114],[58982,144464],[58983,170218],[58984,142968],[25399,58985],[25782,58987],[25393,58988],[25553,58989],[58990,149987],[58991,142695],[25252,58992],[58993,142497],[25659,58994],[25963,58995],[26994,58996],[15348,58997],[58998,143502],[58999,144045],[59e3,149897],[59001,144043],[21773,59002],[59003,144096],[59004,137433],[59005,169023],[26318,59006],[59007,144009],[59008,143795],[15072,59009],[59011,152964],[59012,166690],[59013,152975],[59014,136956],[59015,152923],[59016,152613],[30958,59017],[59018,143619],[59019,137258],[59020,143924],[13412,59021],[59022,143887],[59023,143746],[59024,148169],[26254,59025],[59026,159012],[26219,59027],[19347,59028],[26160,59029],[59030,161904],[59031,138731],[26211,59032],[59033,144082],[59034,144097],[26142,59035],[59036,153714],[14545,59037],[59038,145466],[59039,145340],[15257,59040],[59041,145314],[59042,144382],[29904,59043],[15254,59044],[59046,149034],[26806,59047],0,[15300,59049],[27326,59050],[59052,145365],[59053,148615],[27187,59054],[27218,59055],[27337,59056],[27397,59057],[59058,137490],[25873,59059],[26776,59060],[27212,59061],[15319,59062],[27258,59063],[27479,59064],[59065,147392],[59066,146586],[37792,59067],[37618,59068],[59069,166890],[59070,166603],[37513,59071],[59072,163870],[59073,166364],[37991,59074],[28069,59075],[28427,59076],0,[59079,147327],[15759,59080],[28164,59081],[59082,147516],[23101,59083],[28170,59084],[22599,59085],[27940,59086],[30786,59087],[28987,59088],[59089,148250],[59090,148086],[28913,59091],[29264,59092,61085],[29319,59093],[29332,59094],[59095,149391],[59096,149285],[20857,59097],[59098,150180],[59099,132587],[29818,59100],[59101,147192],[59102,144991],[59103,150090],[59104,149783],[59105,155617],[16134,59106],[16049,59107],[59108,150239],[59109,166947],[59110,147253],[24743,59111],[16115,59112],[29900,59113],[29756,59114],[37767,59115],[29751,59116],[17567,59117],[59118,159210],[17745,59119],[30083,59120],[16227,59121],[59122,150745],[59123,150790],[16216,59124],[30037,59125],[30323,59126],[59127,173510],0,[29800,59129,61070],[59130,166604],[59131,149931],[59132,149902],[15099,59133],[15821,59134],[59135,150094],[16127,59136],[59137,149957],[59138,149747],[37370,59139],[22322,59140],[37698,59141],[59142,166627],[59143,137316],[20703,59144],[59145,152097],[59146,152039],[30584,59147],[59148,143922],[30478,59149],[30479,59150],[30587,59151],[59152,149143],[59153,145281],[14942,59154],[59155,149744],[29752,59156],[29851,59157],[16063,59158],[59159,150202],[59160,150215],[16584,59161],[59162,150166],[59163,156078],[37639,59164],[59165,152961],[30750,59166],[30861,59167],[30856,59168],[30930,59169],[29648,59170],[31065,59171],[59172,161601],[59173,153315],[16654,59174],0,0,[31141,59177],[27181,59178],[59179,147194],[31290,59180],[31220,59181],[16750,59182],[59183,136934],[16690,59184],[37429,59185],[31217,59186],[59187,134476],[59188,149900],[59189,131737],[59190,146874],[59191,137070],[13719,59192],[21867,59193],[13680,59194],[13994,59195],[59196,131540],[59197,134157],[31458,59198],[23129,59199],[59200,141045],[59201,154287],[59202,154268],[23053,59203],[59204,131675],[30960,59205],[23082,59206],[59207,154566],[31486,59208],[16889,59209],[31837,59210],[31853,59211],[16913,59212],[59213,154547],[59214,155324],[59215,155302],[31949,59216],[59217,150009],[59218,137136],[31886,59219],[31868,59220],[31918,59221],[27314,59222],[32220,59223],[32263,59224],[32211,59225],[32590,59226],[59227,156257],[59228,155996],[59229,162632],[32151,59230],[59231,155266],[17002,59232],[59233,158581],[59234,133398],[26582,59235],[59236,131150],[59237,144847],[22468,59238],[59239,156690],[59240,156664],[32733,59242],[31527,59243],[59244,133164],[59245,154345],[59246,154947],[31500,59247],[59248,155150],[39398,59249],[34373,59250],[39523,59251],[27164,59252],[59253,144447],[59255,150007],[59256,157101],[39455,59257],[59258,157088],0,[59260,160039],[59261,158929],[17642,59262],[33079,59263],[17410,59264],[32966,59265],[33033,59266],[33090,59267],[59268,157620],[39107,59269],[59270,158274],[33378,59271],[33381,59272],[59273,158289],[33875,59274],[59275,159143],[34320,59276],[59277,160283],[23174,59278],[16767,59279],[59280,137280],[23339,59281],[59282,137377],[23268,59283],[59284,137432],[34464,59285],[59286,195004],[59287,146831],[34861,59288],[59289,160802],[23042,59290],[34926,59291],[20293,59292],[34951,59293],[35007,59294],[35046,59295],[35173,59296],[35149,59297],[59298,153219],[35156,59299],[59300,161669],[59301,161668],[59302,166901],[59303,166873],[59304,166812],[59305,166393],[16045,59306],[33955,59307],[18165,59308],[18127,59309],[14322,59310],[35389,59311],[35356,59312],[59313,169032],[24397,59314],[37419,59315],[59316,148100],[26068,59317],[28969,59318],[28868,59319],[59320,137285],[40301,59321],[35999,59322],[36073,59323],[59324,163292],[22938,59325],[30659,59326],[23024,59327],[14036,59329],[36394,59330],[36519,59331],[59332,150537],[36656,59333],[36682,59334],[17140,59335],[27736,59336],[28603,59337],[59338,140065],[18587,59339],[28537,59340],[28299,59341],[59342,137178],[39913,59343],[14005,59344],[59345,149807],[37051,59346],0,[21873,59348],[18694,59349],[37307,59350],[37892,59351],[59352,166475],[16482,59353],[59354,166652],[37927,59355],[59356,166941],[59357,166971],[34021,59358],[35371,59359],[38297,59360],[38311,59361],[38295,59362],[38294,59363],[59364,167220],[29765,59365],[16066,59366],[59367,149759],[59368,150082],[59369,148458],[16103,59370],[59371,143909],[38543,59372],[59373,167655],[59374,167526],[59375,167525],[16076,59376],[59377,149997],[59378,150136],[59379,147438],[29714,59380],[29803,59381],[16124,59382],[38721,59383],[59384,168112],[26695,59385],[18973,59386],[59387,168083],[59388,153567],0,[37736,59390],[59391,166281],[59392,166950],[59393,166703],[59394,156606],[37562,59395],[23313,59396],[35689,59397],[18748,59398],[29689,59399],[59400,147995],[38811,59401],0,[39224,59403],[59404,134950],[24001,59405],[59406,166853],[59407,150194],[38943,59408],[59409,169178],[37622,59410],[59411,169431],[37349,59412],[17600,59413],[59414,166736],[59415,150119],[59416,166756],[39132,59417],[59418,166469],[16128,59419],[37418,59420],[18725,59421],[33812,59422],[39227,59423],[39245,59424],[59425,162566],[15869,59426],0,[19311,59428],[39338,59429],[39516,59430],[59431,166757],[59432,153800],[27279,59433],[39457,59434],[23294,59435],[39471,59436],[59437,170225],[19344,59438],[59439,170312],[39356,59440],[19389,59441],[19351,59442],[37757,59443],[22642,59444],[59445,135938],[22562,59446],[59447,149944],[59448,136424],[30788,59449],[59450,141087],[59451,146872],[26821,59452],[15741,59453],[37976,59454],[14631,59455],[24912,59456],[59457,141185],[59458,141675],[24839,59459],[40015,59460],[40019,59461],[40059,59462],[39989,59463],[39952,59464],[39807,59465],[39887,59466],[59467,171565],[39839,59468],[59469,172533],[59470,172286],[40225,59471],[19630,59472],[59473,147716],[40472,59474],[19632,59475],[40204,59476],[59477,172468],[59478,172269],[59479,172275],[59480,170287],[40357,59481],[33981,59482],[59483,159250],[59484,159711],[59485,158594],[34300,59486],[17715,59487],[59488,159140],[59489,159364],[59490,159216],[33824,59491],[34286,59492],[59493,159232],[59494,145367],[59495,155748],[31202,59496],[59497,144796],[59498,144960],[59500,149982],[15714,59501],[37851,59502],[37566,59503],[37704,59504],[59505,131775],[30905,59506],[37495,59507],[37965,59508],[20452,59509],[13376,59510],[36964,59511],[59512,152925],[30781,59513],[30804,59514],[30902,59515],[30795,59516],[59517,137047],[59518,143817],[59519,149825],[13978,59520],[20338,59521],[28634,59522],[28633,59523],0,[28702,59524,59525],[21524,59526],[59527,147893],[22459,59528],[22771,59529],[22410,59530],[40214,59531],[22487,59532],[28980,59533],[13487,59534],[59535,147884],[29163,59536],[59537,158784],[59538,151447],0,[59540,137141],[59541,166473],[24844,59542],[23246,59543],[23051,59544],[17084,59545],[59546,148616],[14124,59547],[19323,59548],[59549,166396],[37819,59550],[37816,59551],[59552,137430],[59553,134941],[33906,59554],[59555,158912],[59556,136211],[59557,148218],[59558,142374],[59559,148417],[22932,59560],[59561,146871],[59562,157505],[32168,59563],[59564,155995],[59565,155812],[59566,149945],[59567,149899],[59568,166394],[37605,59569],[29666,59570],[16105,59571],[29876,59572],[59573,166755],[59574,137375],[16097,59575],[59576,150195],[27352,59577],[29683,59578],[29691,59579],[16086,59580],[59581,150078],[59582,150164],[59583,137177],[59584,150118],[59585,132007],[59586,136228],[59587,149989],[29768,59588],[59589,149782],[28837,59590],[59591,149878],[37508,59592],[29670,59593],[37727,59594],[59595,132350],[37681,59596],[59597,166606],[59598,166422],[37766,59599],[59600,166887],[59601,153045],[18741,59602],[59603,166530],[29035,59604],[59605,149827],[59606,134399],[22180,59607],[59608,132634],[59609,134123],[59610,134328],[21762,59611],[31172,59612],[59613,137210],[32254,59614],[59615,136898],[59616,150096],[59617,137298],[17710,59618],[37889,59619],[14090,59620],[59621,166592],[59622,149933],[22960,59623],[59624,137407],[59625,137347],[59626,160900],[23201,59627],[14050,59628],[59629,146779],[14e3,59630],[37471,59631],[23161,59632],[59633,166529],[59634,137314],[37748,59635],[15565,59636],[59637,133812],[19094,59638],[14730,59639],[20724,59640],[15721,59641],[15692,59642],[59643,136092],[29045,59644],[17147,59645],[59646,164376],[28175,59647],[59648,168164],[17643,59649],[27991,59650],[59651,163407],[28775,59652],[27823,59653],[15574,59654],[59655,147437],[59656,146989],[28162,59657],[28428,59658],[15727,59659],[59660,132085],[30033,59661],[14012,59662],[13512,59663],[18048,59664],[16090,59665],[18545,59666],[22980,59667],[37486,59668],[18750,59669],[36673,59670],[59671,166940],[59672,158656],[22546,59673],[22472,59674],[14038,59675],[59676,136274],[28926,59677],[59678,148322],[59679,150129],[59680,143331],[59681,135856],[59682,140221],[26809,59683],[26983,59684],[59685,136088],[59686,144613],[59687,162804],[59688,145119],[59689,166531],[59690,145366],[59691,144378],[59692,150687],[27162,59693],[59694,145069],[59695,158903],[33854,59696],[17631,59697],[17614,59698],[59699,159014],[59700,159057],[59701,158850],[59702,159710],0,0,[33597,59705],[59706,137018],[33773,59707],[59708,158848],[59709,159827],[59710,137179],[22921,59711],[23170,59712],[59713,137139],[23137,59714],[23153,59715],[59716,137477],[59717,147964],[14125,59718],[23023,59719],[59720,137020],[14023,59721],[29070,59722],[37776,59723],[26266,59724],[59725,148133],[23150,59726],[23083,59727],[59728,148115],[27179,59729],[59730,147193],[59731,161590],[59732,148571],[59733,148170],[28957,59734],[59735,148057],[59736,166369],[20400,59737],[59738,159016],[23746,59739],[59740,148686],[59741,163405],[59742,148413],[27148,59743],[59744,148054],[59745,135940],0,[28979,59747],[59748,148457],[15781,59749],[27871,59750],[59751,194597],[23019,59754],[24412,59757],[59764,144128],[31955,59776],[59783,162548],[59786,153334],[59790,162584],[36972,59791],[33270,59795],[30476,59797],[27810,59799],[22269,59800],[22633,59828],[26465,59832],[23646,59838],[22770,59841],[28857,59843],[26627,59853],[36795,59859],[36796,59861],[20001,59871],[31545,59898],[15820,59902],[29482,57990,59909],[30048,59912],[22586,59920],[33446,59932],[27018,59940],[24803,59944],[20206,59984],[39364,60002],[40639,60023],[21249,60025],[26528,60038],[24808,60046],[20916,60053],[31363,60064],[39994,60075],[31432,60093],[26906,60098],[22956,60100],[22592,60102],[21610,60114],[24807,60123],[22138,60125],[26965,60132],[39983,60133],[34725,60134],[23584,60141],[24075,60143],[26398,60147],[33965,60157],[35713,60161],[20088,60166],[25283,60176],[26709,60180],0,[33533,60190],[35237,60194],[36768,60196],[38840,60198],[38983,60200],[39613,60201],[24497,60218],[26184,60219],[26303,60220],[60221,162425],0,[60225,149946],0,0,[60230,131910],[26382,60232],[26904,60233],[60235,161367],[60236,155618],[60239,161278],[60240,139418],[18640,60241],[19128,60242],[60244,166554],[60247,147515],[60250,150085],[60251,132554],[20946,60252],[60253,132625],[22943,60254],[60255,138920],[15294,60256],[60257,146687],[14747,60262],[60264,165352],[60265,170441],[14178,60266],[60267,139715],[35678,60268],[60269,166734],0,[29193,60274],[60276,134264],[60280,132985],[36570,60281],[21135,60283],[29041,60285],[60288,147274],[60289,150183],[21948,60290],[60293,158546],[13427,60295],[60297,161330],[18200,60299],[60303,149823],[20582,60305],[13563,60306],[60307,144332],0,[18300,60310],[60311,166216],[60315,138640],0,[60320,162834],[36950,60321],[60323,151450],[35682,60324],[23899,60327],[60328,158711],0,[60331,137500],[35562,60332],[60333,150006],[60335,147439],[19392,60337],[60340,141083],[37989,60341],[60342,153569],[24981,60343],[23079,60344],[60345,194765],0,[60348,148769],[20074,60350],[60351,149812],[38486,60352],[28047,60353],[60354,158909],[35191,60356],[60359,156689],0,[31554,60363],[60364,168128],[60365,133649],0,[31301,60369],[39462,60372],[13919,60374],[60375,156777],[60376,131105],[31107,60377],[23852,60380],[60381,144665],0,[18128,60384],[30011,60386],[34917,60387],[22710,60389],[14108,60390],[60391,140685],[15444,60394],[37505,60397],[60398,139642],[37680,60400],[60402,149968],[27705,60403],[60406,134904],[34855,60407],[35061,60408],[60409,141606],[60410,164979],[60411,137137],[28344,60412],[60413,150058],[60414,137248],[14756,60415],0,0,[17727,60419],[26294,60420],[60421,171181],[60422,170148],[35139,60423],[16607,60427],[60428,136714],[14753,60429],[60430,145199],[60431,164072],[60432,136133],[29101,60433],[33638,60434],[60436,168360],0,[19639,60438],[60439,159919],[60440,166315],[60445,147834],[31555,60446],[31102,60447],[28597,60449],[60450,172767],[27139,60451],[60452,164632],[21410,60453],[60454,159239],[37823,60455],[26678,60456],[38749,59389,60457],[60458,164207],[60460,158133],[60461,136173],[60462,143919],[23941,60464],[60465,166960],[22293,60467],[38947,60468],[60469,166217],[23979,60470],[60471,149896],[26046,60472],[27093,60473],[21458,60474],[60475,150181],[60476,147329],[15377,60477],[26422,60478],[60482,139169],[13770,60490],[18682,60493],0,[30728,60496],[37461,60497],[17394,60499],[17375,60501],[23032,60505],0,[22155,60518],[60520,169449],[36882,60541],[21953,60546],[17673,60551],[32383,60552],[28502,60553],[27313,60554],[13540,60556],[60558,161949],[14138,60559],0,[60562,163876],[60565,162366],[15851,60567],[60569,146615],[60574,156248],[22207,60575],[36366,60577],[23405,60578],[25566,60581],0,[25904,60585],[22061,60586],[21530,60588],[60591,171416],[19581,60592],[22050,60593],[22046,60594],[32585,60595],[22901,60597],[60598,146752],[34672,60599],[33047,60604],[40286,60605],[36120,60606],[30267,60607],[40005,60608],[30286,60609],[30649,60610],[37701,60611],[21554,60612],[33096,60613],[33527,60614],[22053,60615],[33074,60616],[33816,60617],[32957,60618],[21994,60619],[31074,60620],[22083,60621],[21526,60622],[60623,134813],[13774,60624],[22021,57509,60625],[22001,60626],[26353,60627],[60628,164578],[13869,60629],[30004,60630],[22e3,60631],[21946,60632],[21655,60633],[21874,60634],[60635,134209],[60636,134294],[24272,57652,60637],[60639,134774],[60640,142434],[60641,134818],[40619,60642],[32090,60643],0,[60645,135285],[25245,60646],[38765,60647],[21652,60648],[36045,60649],[29174,60650],[37238,60651],[25596,60652],[25529,60653],[25598,60654],[21865,60655],[60656,142147],[40050,60657],[60658,143027],[20890,60659],[13535,60660],[60661,134567],[20903,60662],[21581,60663],[21790,60664],[21779,60665],[30310,60666],[36397,60667],[60668,157834],[30129,60669],[32950,60670],[34820,60671],0,[35015,60673],[33206,60674],[33820,60675],[17644,60677],[29444,60678],[33547,60681],[22139,60683],[37232,60690],[37384,60692],[60696,134905],[29286,60697],[18254,60699],[60701,163833],[16634,60703],[40029,60704],[25887,60705],[18675,60707],[60708,149472],[60709,171388],0,[60713,161187],60715,[60716,155720],[29091,60718],[32398,60719],[40272,60720],[13687,60723],[27826,60725],[21351,60726],[14812,60728],[60731,149016],[33325,60734],[21579,60735],60739,[14930,60740],[29556,60742],[60743,171692],[19721,60744],[39917,60745],0,[19547,60748],[60751,171998],[33884,60752],[60754,160434],[25390,60757],[32037,60758],[14890,60761],[36872,60762],[21196,60763],[15988,60764],[13946,60765],[17897,60766],[60767,132238],[30272,60768],[23280,60769],[60770,134838],[30842,60771],[18358,60772],[22695,60773],[16575,60774],[22140,60775],[39819,60776],[23924,60777],[30292,60778],[60779,173108],[40581,60780],[19681,60781],0,[14331,60783],[24857,60784],[60786,148466],60787,[22109,60788],[60792,171526],[21044,60793],[13741,60795],0,[40316,60797],[31830,60798],[39737,60799],[22494,60800],[23635,60802],[25811,60803],[60804,169168],[60805,156469],[34477,60807],[60808,134440],[60811,134513],60812,[20990,60813],[60814,139023],[23950,60815],[38659,60816],[60817,138705],[40577,60818],[36940,60819],[31519,60820],[39682,60821],[23761,60822],[31651,60823],[25192,60824],[25397,60825],[39679,60826],[31695,60827],[39722,60828],[31870,60829],0,[31810,60831],[31878,60832],[39957,60833],[31740,60834],[39689,60835],0,39982,[40794,60839],[21875,60840],[23491,60841],[20477,60842],[40600,60843],[20466,60844],[21088,60845],[21201,60847],[22375,60848],[20566,60849],[22967,60850],[24082,60851],[38856,60852],[40363,60853],[36700,60854],[21609,60855],[38836,60856],[39232,60857],[38842,60858],[21292,60859],[24880,60860],[26924,60861],[21466,60862],[39946,60863],[40194,60864],[19515,60865],[38465,60866],[27008,60867],[20646,60868],[30022,60869],[60870,137069],[39386,60871],[21107,60872],60873,[37209,60874],[38529,60875],[37212,60876],60877,[37201,60878],[60879,167575],[25471,60880],[27338,60882],[22033,60883],[37262,60884],[30074,60885],[25221,60886],[29519,60888],[31856,60889],[60890,154657],60892,[30422,60894],[39837,60895],[20010,60896],[60897,134356],[33726,60898],[34882,60899],60900,[23626,60901],[27072,60902],0,0,[21023,60905],[24053,60906],[20174,60907],[27697,60908],[60909,131570],[20281,60910],[21660,60911],0,[21146,60913],[36226,60914],[13822,60915],0,[13811,60917],60918,[27474,60919],[37244,60920],[40869,60921],[39831,60922],[38958,60923],[39092,60924],[39610,60925],[40616,60926],[40580,60927],[31508,60929],60930,[27642,60931],[34840,60932],[32632,60933],60934,[22048,60935],[60936,173642],[36471,60937],[40787,60938],60939,[36308,60940],[36431,60941],[40476,60942],[36353,60943],[25218,60944],[60945,164733],[36392,60946],[36469,60947],[31443,60948],[31294,60950],[30936,60951],[27882,60952],[35431,60953],[30215,60954],[40742,60956],[27854,60957],[34774,60958],[30147,60959],[60960,172722],[30803,60961],[36108,60963],[29410,60964],[29553,60965],[35629,60966],[29442,60967],[29937,60968],[36075,60969],[60970,150203],[34351,60971],[24506,60972],[34976,60973],[17591,60974],60975,[60977,159237],60978,[35454,60979],[60980,140571],60981,[24829,60982],[30311,60983],[39639,60984],[40260,60985],[37742,58859,60986],[39823,60987],[34805,60988],60989,0,[36087,60991],[29484,60992],[38689,60993],[39856,60994],[13782,60995],[29362,60996],[19463,60997],[31825,60998],[39242,60999],[24921,61001],[19460,61002],[40598,61003],[24957,61004],61005,[22367,61006],[24943,61007],[25254,61008],[25145,61009],0,[14940,61011],[25058,61012],[21418,61013],[25444,61015],[26626,61016],[13778,61017],[23895,61018],[36826,61020],[61021,167481],61022,[20697,61023],[30982,61025],[21298,61026],[38456,61027],[61028,134971],[16485,61029],61030,[30718,61031],61032,[31938,61033],[61034,155418],[31962,61035],[31277,61036],[32870,61037],[32867,61038],[32077,61039],[29957,61040],[29938,61041],[35220,61042],[33306,61043],[26380,61044],[32866,61045],[61046,160902],[32859,61047],[29936,61048],[33027,61049],[30500,61050],[35209,61051],[61052,157644],[30035,61053],[34729,61055],[34766,61056],[33224,61057],[34700,61058],[35401,61059],[36013,61060],[35651,61061],[30507,61062],[29944,61063],[34010,61064],[27058,61066],[36262,61067],61068,[35241,58392,61069],0,[28089,61071],[34753,61072],[61073,147473],[29927,61074],[15835,61075],[29046,61076],[24740,57702,61077],[24988,61078],[15569,61079],0,[24695,61081],61082,[32625,61083],0,[24809,61086],[19326,61087],[57344,132423],[37595,57345],[57346,132575],[57347,147397],[34124,57348],[17077,57349],[29679,57350],[20917,57351],[13897,57352],[57353,149826],[57354,166372],[37700,57355],[57356,137691],[33518,57357],[57358,146632],[30780,57359],[26436,57360],[25311,57361],[57362,149811],[57363,166314],[57364,131744],[57365,158643],[57366,135941],[20395,57367],[57368,140525],[20488,57369],[57370,159017],[57371,162436],[57372,144896],[57373,150193],[57374,140563],0,[57376,131966],[24484,57377],[57378,131968],[57379,131911],[28379,57380],[57381,132127],20702,[20737,57383],[13434,57384],[20750,57385],[39020,57386],[14147,57387],[33814,57388],[57389,149924],[57390,132231],[20832,57391],[57392,144308],[20842,57393],[57394,134143],[57395,139516],[57396,131813],[57397,140592],[57398,132494],[57399,143923],[57400,137603],[23426,57401],[34685,57402],[57403,132531],[57404,146585],[20914,57405],[20920,57406],[40244,57407],[20937,57408],[20943,57409],[20945,57410],[15580,57411],[20947,57412],[57413,150182],[20915,57414],0,0,[20973,57417],[33741,57418],[26942,57419],[57420,145197],[24443,57421],[21003,57422],[21030,57423],[21052,57424],[21173,57425],[21079,57426],[21140,57427],[21177,57428],[21189,57429],[31765,57430],[34114,57431],[21216,57432],[34317,57433],[57434,158483],0,[57436,166622],[21833,57437],[28377,57438],[57439,147328],[57440,133460],[57441,147436],[21299,57442],0,[57444,134114],[27851,57445],[57446,136998],[26651,57447],[29653,57448],[24650,57449],[16042,57450],[14540,57451],[57452,136936],[29149,57453],[17570,57454],[21357,57455],[21364,57456],[57457,165547],[21374,57458],0,[57460,136598],[57461,136723],[30694,57462],[21395,57463],[57464,166555],[21408,57465],[21419,57466],[21422,57467],[29607,57468],[57469,153458],[16217,57470],[29596,57471],[21441,57472],[21445,57473],[27721,57474],[20041,57475],[22526,57476],[21465,57477],[15019,57478],[57479,134031],[21472,57480],[57481,147435],[57482,142755],[21494,57483],[57484,134263],[21523,57485],[28793,57486],[21803,57487],[26199,57488],[27995,57489],[21613,57490],[57491,158547],[57492,134516],[21853,57493],[21647,57494],[21668,57495],[18342,57496],[57497,136973],[57498,134877],[15796,57499],[57500,134477],[57501,166332],[57502,140952],[21831,57503],[19693,57504],[21551,57505],[29719,57506],[21894,57507],[21929,57508],0,[57510,137431],[57511,147514],[17746,57512],[57513,148533],[26291,57514],[57515,135348],[22071,57516],[26317,57517],[57518,144010],[26276,57519],0,[22093,57521],[22095,57522],[30961,57523],[22257,57524],[38791,57525],[21502,57526],[22272,57527],[22255,57528],[22253,57529],[57530,166758],[13859,57531],[57532,135759],[22342,57533],[57534,147877],[27758,57535],[28811,57536],[22338,57537],[14001,57538],[57539,158846],[22502,57540],[57541,136214],[22531,57542],[57543,136276],[57544,148323],[22566,57545],[57546,150517],0,[22698,57548],[13665,57549],[22752,57550],[22748,57551],[57552,135740],[22779,57553],[23551,57554],[22339,57555],[57556,172368],[57557,148088],[37843,57558],[13729,57559],[22815,57560],[26790,57561],[14019,57562],[28249,57563],[57564,136766],[23076,57565],0,[57567,136850],[34053,57568],[22985,57569],[57570,134478],[57571,158849],[57572,159018],[57573,137180],[23001,57574],[57575,137211],[57576,137138],[57577,159142],[28017,57578],[57579,137256],[57580,136917],[23033,57581],[57582,159301],[23211,57583],[23139,57584],[14054,57585],[57586,149929],0,[14088,57588],[23190,57589],[29797,57590],[23251,57591],[57592,159649],[57593,140628],[57595,137489],[14130,57596],[57597,136888],[24195,57598],[21200,57599],[23414,57600],[25992,57601],[23420,57602],[57603,162318],[16388,57604],[18525,57605],[57606,131588],[23509,57607],[57609,137780],[57610,154060],[57611,132517],[23539,57612],[23453,57613],[19728,57614],[23557,57615],[57616,138052],[23571,57617],[29646,57618],[23572,57619],[57620,138405],[57621,158504],[23625,57622],[18653,57623],[23685,57624],[23785,57625],[23791,57626],[23947,57627],[57628,138745],[57629,138807],[23824,57630],[23832,57631],[23878,57632],[57633,138916],[23738,57634],[24023,57635],[33532,57636],[14381,57637],[57638,149761],[57639,139337],[57640,139635],[33415,57641],[14390,57642],[15298,57643],[24110,57644],[27274,57645],0,57647,[57648,148668],[57649,134355],[21414,57650],[20151,57651],0,[21416,57653],[57654,137073],[24073,57655],57656,[57657,164994],[24313,57658],[24315,57659],[14496,57660],[24316,57661],[26686,57662],[37915,57663],[24333,57664],[57665,131521],[57666,194708],[15070,57667],[57669,135994],[24378,57670],[57671,157832],[57672,140240],[57674,140401],[24419,57675],[57677,159342],[24434,57678],[37696,57679],[57680,166454],[24487,57681],[23990,57682],[15711,57683],[57684,152144],[57685,139114],[57686,159992],[57687,140904],[37334,57688],[57689,131742],[57690,166441],[24625,57691],[26245,57692],[14691,57694],[15815,57695],[13881,57696],[22416,57697],[57698,141236],[31089,57699],[15936,57700],[24734,57701],0,0,[57704,149890],[57705,149903],[57706,162387],[29860,57707],[20705,57708],[23200,57709],[24932,57710],[24898,57712],[57713,194726],[57714,159442],[24961,57715],[20980,57716],[57717,132694],[24967,57718],[23466,57719],[57720,147383],[57721,141407],[25043,57722],[57723,166813],[57724,170333],[25040,57725],[14642,57726],[57727,141696],[57728,141505],[24611,57729],[24924,57730],[25886,57731],[25483,57732],[57733,131352],[25285,57734],[57735,137072],[25301,57736],[57737,142861],[25452,57738],[57739,149983],[14871,57740],[25656,57741],[25592,57742],[57743,136078],[57744,137212],[28554,57746],[57747,142902],0,[57750,153373],[25825,57751],[25829,57752],[38011,57753],[14950,57754],[25658,57755],[14935,57756],[25933,57757],[28438,57758],[57759,150056],[57760,150051],[25989,57761],[25965,57762],[25951,57763],0,[26037,57765],[57766,149824],[19255,57767],[26065,57768],[16600,57769],[57770,137257],57771,[26083,57772],[24543,57773],[57774,144384],[26136,57775],[57776,143863],[57777,143864],[26180,57778],[57779,143780],[57780,143781],[26187,57781],[57782,134773],[26215,57783],[57784,152038],[26227,57785],0,[57788,143921],[57789,165364],[57790,143816],[57791,152339],[30661,57792],[57793,141559],[39332,57794],[26370,57795],[57796,148380],[57797,150049],[27130,57799],[57800,145346],0,[26471,57802],[26466,57803],[57804,147917],[57805,168173],[26583,57806],[17641,57807],[26658,57808],[28240,57809],[37436,57810],[26625,57811],[57812,144358],[57813,159136],[26717,57814],[57815,144495],[27105,57816],[27147,57817],[57818,166623],[26995,57819],[26819,57820],[57821,144845],[26881,57822],[26880,57823],[14849,57825],[57826,144956],[15232,57827],[26540,57828],[26977,57829],[57830,166474],[17148,57831],[26934,57832],[27032,57833],[15265,57834],[57835,132041],[33635,57836],[20624,57837],[27129,57838],[57839,144985],[57840,139562],[27205,57841],[57842,145155],[27293,57843],[15347,57844],[26545,57845],[27336,57846],[57847,168348],[15373,57848],[27421,57849],[57850,133411],[24798,57851,60308],[27445,57852],[27508,57853],[57854,141261],[28341,57855],[57856,146139],0,[57858,137560],[14144,57859],[21537,57860],[57861,146266],[27617,57862],[57863,147196],[27612,57864],[27703,57865],[57866,140427],[57867,149745],[57868,158545],[27738,57869],[33318,57870],[27769,57871],[57872,146876],[17605,57873],[57874,146877],[57875,147876],[57876,149772],[57877,149760],[57878,146633],[14053,57879],[15595,57880],[57881,134450],[39811,57882],[57883,143865],[57884,140433],[32655,57885],[26679,57886],[57887,159013],[57888,159137],[57889,159211],[28054,57890],[27996,57891],[28284,57892],[28420,57893],[57894,149887],[57895,147589],[57896,159346],[34099,57897],[57898,159604],[20935,57899],0,0,[33838,57902],[57903,166689],0,[57905,146991],[29779,57906],[57907,147330],[31180,57908],[28239,57909],[23185,57910],[57911,143435],[28664,57912],[14093,57913],[28573,57914],[57915,146992],[28410,57916],[57917,136343],[57918,147517],[17749,57919],[37872,57920],[28484,57921],[28508,57922],[15694,57923],[28532,57924],[57925,168304],[15675,57926],[28575,57927],[57928,147780],[28627,57929],[57930,147601],[57931,147797],[57932,147513],[57933,147440],[57934,147380],[57935,147775],[20959,57936],[57937,147798],[57938,147799],[57939,147776],[57940,156125],[28747,57941],[28798,57942],[28839,57943],0,[28876,57945],[28885,57946],[28886,57947],[28895,57948],[16644,57949],[15848,57950],[29108,57951],[29078,57952],[57953,148087],[28971,57954],[28997,57955],[23176,57956],[29002,57957],0,[57960,148325],[29007,57961],[37730,57962],[57963,148161],[28972,57964],[57965,148570],[57966,150055],[57967,150050],[29114,57968],[57969,166888],[28861,57970],[29198,57971],[37954,57972],[29205,57973],[22801,57974],[37955,57975],[29220,57976],[37697,57977],[57978,153093],[29230,57979],[29248,57980],[57981,149876],[26813,57982],[29269,57983],[29271,57984],[15957,57985],[57986,143428],[26637,57987],[28477,57988],[29314,57989],0,[29483,57991],[57992,149539],[57993,165931],[18669,57994],[57995,165892],[29480,57996],[29486,57997],[29647,57998],[29610,57999],[58e3,134202],[58001,158254],[29641,58002],[29769,58003],[58004,147938],[58005,136935],[58006,150052],[26147,58007],[14021,58008],[58009,149943],[58010,149901],[58011,150011],[29687,58012],[29717,58013],[26883,58014],[58015,150054],[29753,58016],[16087,58018],0,[58020,141485],[29792,58021],[58022,167602],[29767,58023],[29668,58024],[29814,58025],[33721,58026],[29804,58027],[29812,58029],[37873,58030],[27180,58031],[29826,58032],[18771,58033],[58034,150156],[58035,147807],[58036,150137],[58037,166799],[23366,58038],[58039,166915],[58040,137374],[29896,58041],[58042,137608],[29966,58043],[29982,58045],[58046,167641],[58047,137803],[23511,58048],[58049,167596],[37765,58050],[30029,58051],[30026,58052],[30055,58053],[30062,58054],[58055,151426],[16132,58056],[58057,150803],[30094,58058],[29789,58059],[30110,58060],[30132,58061],[30210,58062],[30252,58063],[30289,58064],[30287,58065],[30319,58066],58067,[58068,156661],[30352,58069],[33263,58070],[14328,58071],[58072,157969],[58073,157966],[30369,58074],[30373,58075],[30391,58076],[30412,58077],[58078,159647],[33890,58079],[58080,151709],[58081,151933],[58082,138780],[30494,58083],[30502,58084],[30528,58085],[25775,58086],[58087,152096],[30552,58088],[58089,144044],[30639,58090],[58091,166244],[58092,166248],[58093,136897],[30708,58094],0,[26826,58098],[30895,58099],[30919,58100],[30931,58101],[38565,58102],[31022,58103],[58104,153056],[30935,58105],[31028,58106],[30897,58107],[58108,161292],[36792,58109],[34948,58110],[58113,140828],[31110,58114],[35072,58115],[26882,58116],[31104,58117],[58118,153687],[31133,58119],[58120,162617],[31036,58121],[31145,58122],[28202,58123],[58124,160038],[16040,58125],[31174,58126],[58127,168205],[31188,58128],0,[21797,62526],0,[62528,134210],[62529,134421],[62530,151851],[21904,62531],[62532,142534],[14828,62533],[62534,131905],[36422,62535],[62536,150968],[62537,169189],0,[62539,164030],[30586,62540],[62541,142392],[14900,62542],[18389,62543],[62544,164189],[62545,158194],[62546,151018],[25821,62547],[62548,134524],[62549,135092],[62550,134357],0,[25741,62552],[36478,62553],[62554,134806],0,[62556,135012],[62557,142505],[62558,164438],[62559,148691],0,[62561,134470],[62562,170573],[62563,164073],[18420,62564],[62565,151207],[62566,142530],[39602,62567],[14951,62568],[62569,169460],[16365,62570],[13574,62571],[62572,152263],[62573,169940],0,[62575,142660],[40302,62576],[38933,62577],0,[17369,62579],0,[25780,62581],[21731,62582],0,[62584,142282],0,[14843,62586],0,[62588,157402],[62589,157462],[62590,162208],[25834,62591],[62592,151634],[62593,134211],[36456,62594],0,[62596,166732],[62597,132913],0,[18443,62599],[62600,131497],[16378,62601],[22643,62602],[62603,142733],0,[62605,148936],[62606,132348],[62607,155799],[62608,134988],0,[21881,62610],0,[17338,62612],0,[19124,62614],[62615,141926],[62616,135325],[33194,62617],[39157,62618],[62619,134556],[25465,62620],[14846,62621],[62622,141173],[36288,62623],[22177,62624],[25724,62625],[15939,62626],0,[62628,173569],[62629,134665],[62630,142031],0,0,[62633,135368],[62634,145858],[14738,62635],[14854,62636],[62637,164507],[13688,62638],[62639,155209],[62640,139463],0,0,[62643,142514],[62644,169760],[13500,62645],[27709,62646],[62647,151099],0,0,[62650,161140],[62651,142987],[62652,139784],[62653,173659],[62654,167117],[62655,134778],[62656,134196],[62683,161337],[62684,142286],[62687,142417],[14872,62689],[62691,135367],[62693,173618],[62695,167122],[62696,167321],[62697,167114],[38314,62698],0,[62706,161630],[28992,62708],0,[20822,62385],0,[20616,62487],0,[13459,62489],[20870,62491],[24130,63037],[20997,62495],[21031,62436],[21113,62497],0,[13651,62504],[21442,62505],[21343,62715],0,[21823,62520],0,[21976,59986],[13789,62722],[22049,63067],0,[22100,60044],[60148,135291],0,[60153,135379],0,[61095,135934],0,0,[14265,60104],[23745,61099],[23829,63066],[23894,63030],[14392,63036],[20097,62477],[24253,63038],[14612,63042],[25017,63050],[25232,63054],[25368,63056],[25690,63063],[25745,62381],[33133,62709],[33156,59922],[33171,59924],[26624,63080],[15292,63093],[29327,60517],[29389,59781],0,[29497,59785],[30018,59811],[30172,59817],[16320,59818],[60278,151205],[16343,59820],0,30336,[30348,59824,151388],[16552,59845],[30777,59846],[16643,59855],[31377,59863],[31771,59876],[31981,59884],[32659,62658],[32686,59892],0,[33535,59936],[22623,59981],[34482,59960],0,[34699,59963],[35143,59969],0,[35369,59972],0,[36465,59988],[60484,164233],[36528,59990],0,[37214,62443],[37260,62441],[39182,60051],[39196,60054],0,0,[39809,60066],[40384,60080],[40339,60078],[40620,60085],[19857,60540],0,37818,[40571,60084],[28809,63148],[29512,59788],0,[31129,59858],[36791,59997],0,[39234,60056],{s:193},8364,{s:4},[12443,63518],[12444,63519],[11904,63520],{f:5,c:62211},[62216,131340],62217,[62218,131281],[62219,131277],{f:2,c:62220},[62222,131275],[62223,139240],62224,[62225,131274],{f:4,c:62226},[62230,131342],{f:2,c:62231},{f:2,c:62776},[62778,138177],[62779,194680],[12205,38737,62780],[62781,131206],[20059,62782],[20155,62783],[13630,62784],[23587,62785],[24401,62786],[24516,62787],[14586,62788],[25164,62789],[25909,62790],[27514,62791],[27701,62792],[27706,62793],[28780,62794],[29227,62795],[20012,62796],[29357,62797],[62798,149737],[32594,62799],[31035,62800],[31993,62801],[32595,62802],[62803,156266],[13505,62804],[62806,156491],[32770,62807],[32896,62808],[62809,157202],[62810,158033],[21341,62811],[34916,62812],[35265,62813],[62814,161970],[35744,62815],[36125,62816],[38021,62817],[38264,62818],[38271,62819],[38376,62820],[62821,167439],[38886,62822],[39029,62823],[39118,62824],[39134,62825],[39267,62826],[62827,17e4],[40060,62828],[40479,62829],[40644,62830],[27503,62831],[62832,63751],[20023,62833],[62834,131207],[38429,62835],[25143,62836],[38050,62837],[11908,63521],[11910,63522],[11911,63523],[11912,63524],[11914,63525],[11916,63526],[11917,63527],[11925,63528],[11932,63529],[11941,63531],[11943,63532],[11946,63533],[11948,63534],[11950,63535],[11958,63536],[11964,63537],[11966,63538],[11978,63540],[11980,63541],[11981,63542],[11983,63543],[11990,63544],[11991,63545],[11998,63546],[62368,172969],[62369,135493],[25866,62371],[20029,62374],[28381,62375],[40270,62376],[37343,62377],[62380,161589],[20250,62382],[20264,62383],[20392,62384],[20852,62386],[20892,62387],[20964,62388],[21153,62389],[21160,62390],[21307,62391],[21326,62392],[21457,62393],[21464,62394],[22242,62395],[22768,62396],[22788,62397],[22791,62398],[22834,62399],[22836,62400],[23398,62401],[23454,62402],[23455,62403],[23706,62404],[24198,62405],[24635,62406],[25993,62407],[26622,62408],[26628,62409],[26725,62410],[27982,62411],[28860,62412],[30005,62413],[32420,62414],[32428,62415],[32442,62416],[32455,62417],[32463,62418],[32479,62419],[32518,62420],[32567,62421],[33402,62422],[33487,62423],[33647,62424],[35270,62425],[35774,62426],[35810,62427],[36710,62428],[36711,62429],[36718,62430],[29713,62431],[31996,62432],[32205,62433],[26950,62434],[31433,62435],[30904,62442],[32956,62444],[36107,62446],[33014,62447],[62448,133607],[32927,62451],[40647,62452],[19661,62453],[40393,62454],[40460,62455],[19518,62456],[62457,171510],[62458,159758],[40458,62459],[62460,172339],[13761,62461],[28314,62463],[33342,62464],[29977,62465],[18705,62467],[39532,62468],[39567,62469],[40857,62470],[31111,62471],[62472,164972],[62473,138698],[62474,132560],[62475,142054],[20004,62476],[20096,62478],[20103,62479],[20159,62480],[20203,62481],[20279,62482],[13388,62483],[20413,62484],[15944,62485],[20483,62486],[13437,62488],[13477,62490],[22789,62492],[20955,62493],[20988,62494],[20105,62496],[21136,62498],[21287,62499],[13767,62500],[21417,62501],[13649,62502],[21424,62503],[21539,62506],[13677,62507],[13682,62508],[13953,62509],[21651,62510],[21667,62511],[21684,62512],[21689,62513],[21712,62514],[21743,62515],[21784,62516],[21795,62517],[21800,62518],[13720,62519],[13733,62521],[13759,62522],[21975,62523],[13765,62524],[62525,163204],[16467,62538],[62551,135412],[62555,134155],[62574,161992],[62580,155813],[62583,142668],[62585,135287],[62587,135279],[62595,139681],[62609,134550],[16571,62611],[62631,142537],[22098,62641],[62642,134961],[62657,157724],[62659,135375],[62660,141315],[62661,141625],[13819,62662],[62663,152035],[62664,134796],[62665,135053],[62666,134826],[16275,62667],[62668,134960],[62669,134471],[62670,135503],[62671,134732],[62673,134827],[62674,134057],[62675,134472],[62676,135360],[62677,135485],[16377,62678],[62679,140950],[25650,62680],[62681,135085],[62682,144372],[62685,134526],[62686,134527],[62688,142421],[62690,134808],[62692,134958],[62694,158544],[21708,62699],[33476,62700],[21945,62701],[62703,171715],[39974,62704],[39606,62705],[62707,142830],[33004,62710],[23580,62711],[62712,157042],[33076,62713],[14231,62714],[62716,164029],[37302,62717],[62718,134906],[62719,134671],[62720,134775],[62721,134907],[62723,151019],[13833,62724],[62725,134358],[22191,62726],[62727,141237],[62728,135369],[62729,134672],[62730,134776],[62731,135288],[62732,135496],[62733,164359],[62734,136277],[62735,134777],[62736,151120],[62737,142756],[23124,62738],[62739,135197],[62740,135198],[62741,135413],[62742,135414],[22428,62743],[62744,134673],[62745,161428],[62746,164557],[62747,135093],[62748,134779],[62749,151934],[14083,62750],[62751,135094],[62752,135552],[62753,152280],[62754,172733],[62755,149978],[62756,137274],[62757,147831],[62758,164476],[22681,62759],[21096,62760],[13850,62761],[62762,153405],[31666,62763],[23400,62764],[18432,62765],[19244,62766],[40743,62767],[18919,62768],[39967,62769],[39821,62770],[62771,154484],[62772,143677],[22011,62773],[13810,62774],[22153,62775],[23870,63028],[23880,63029],[15868,63031],[14351,63032],[23972,63033],[23993,63034],[14368,63035],[24357,63039],[24451,63040],[14600,63041],[14655,63043],[14669,63044],[24791,63045],[24893,63046],[23781,63047],[14729,63048],[25015,63049],[25039,63051],[14776,63052],[25132,63053],[25317,63055],[14840,63057],[22193,63058],[14851,63059],[25570,63060],[25595,63061],[25607,63062],[14923,63064],[25792,63065],[40863,63068],[14999,63069],[25990,63070],[15037,63071],[26111,63072],[26195,63073],[15090,63074],[26258,63075],[15138,63076],[26390,63077],[15170,63078],[26532,63079],[15192,63081],[26698,63082],[26756,63083],[15218,63084],[15217,63085],[15227,63086],[26889,63087],[26947,63088],[29276,63089],[26980,63090],[27039,63091],[27013,63092],[27094,63094],[15325,63095],[27237,63096],[27252,63097],[27249,63098],[27266,63099],[15340,63100],[27289,63101],[15346,63102],[27307,63103],[27317,63104],[27348,63105],[27382,63106],[27521,63107],[27585,63108],[27626,63109],[27765,63110],[27818,63111],[15563,63112],[27906,63113],[27910,63114],[27942,63115],[28033,63116],[15599,63117],[28068,63118],[28081,63119],[28181,63120],[28184,63121],[28201,63122],[28294,63123],[63124,166336],[28347,63125],[28386,63126],[28378,63127],[40831,63128],[28392,63129],[28393,63130],[28452,63131],[28468,63132],[15686,63133],[63134,147265],[28545,63135],[28606,63136],[15722,63137],[15733,63138],[29111,63139],[23705,63140],[15754,63141],[28716,63142],[15761,63143],[28752,63144],[28756,63145],[28783,63146],[28799,63147],[63149,131877],[17345,63150],[13809,63151],[63152,134872],[13902,58134],[15789,58172],[58173,154725],[26237,58183],[31860,58188],[29837,58197],[32402,58215],[17667,58232],[58260,151480],[58270,133901],[58277,158474],[13438,58311],[58317,143087],[58325,146613],[58343,159385],[34673,58364],[25537,58385],[30583,58387],[35210,58390],[58406,147343],[35660,58415],[58440,150729],[18730,58464],[58471,172052],[58472,165564],[58473,165121],[15088,58490],[28815,58511],[58529,140922],[58637,158120],[58646,148043],[26760,58662],[58664,139611],[40802,58702],[37830,58793],[58802,131967],[37734,58888],[37519,58901],[34324,58954],[58986,173147],[16784,59010],[26511,59045],[26654,59048],[14435,59051],[59077,149996],[15129,59128],[33942,59176],[59241,149858],[14818,59254],[33920,59259],[17262,59328],[38769,59402],[39323,59427],[18733,59499],[28439,59703],[59704,160009],[28838,59746],[59752,150095],[32357,59753],[23855,59755],[15859,59756],[59758,150109],[59759,137183],[32164,59760],[33830,59761],[21637,59762],[59763,146170],[59765,131604],[22398,59766],[59767,133333],[59768,132633],[16357,59769],[59770,139166],[59771,172726],[28675,59772],[59773,168283],[23920,59774],[29583,59775],[59777,166489],[59778,168992],[20424,59779],[32743,59780],[29456,59782],[29496,59784],[29505,59787],[16041,59789],[29173,59792],[59793,149746],[29665,59794],[16074,59796],[16081,59798],[29721,59801],[29726,59802],[29727,59803],[16098,59804],[16112,59805],[16116,59806],[16122,59807],[29907,59808],[16142,59809],[16211,59810],[30061,59812],[30066,59813],[30093,59814],[16252,59815],[30152,59816],[30285,59819],[30324,59821],[16348,59822],[30330,59823],[29064,59825],[22051,59826],[35200,59827],[16413,59829],[30531,59830],[16441,59831],[16453,59833],[13787,59834],[30616,59835],[16490,59836],[16495,59837],[30654,59839],[30667,59840],[30744,59842],[30748,59844],[30791,59847],[30801,59848],[30822,59849],[33864,59850],[59851,152885],[31027,59852],[31026,59854],[16649,59856],[31121,59857],[31238,59860],[16743,59862],[16818,59864],[31420,59865],[33401,59866],[16836,59867],[31439,59868],[31451,59869],[16847,59870],[31586,59872],[31596,59873],[31611,59874],[31762,59875],[16992,59877],[17018,59878],[31867,59879],[31900,59880],[17036,59881],[31928,59882],[17044,59883],[36755,59885],[28864,59886],[59887,134351],[32207,59888],[32212,59889],[32208,59890],[32253,59891],[32692,59893],[29343,59894],[17303,59895],[32800,59896],[32805,59897],[32814,59899],[32817,59900],[32852,59901],[22452,59903],[28832,59904],[32951,59905],[33001,59906],[17389,59907],[33036,59908],[33038,59910],[33042,59911],[33044,59913],[17409,59914],[15161,59915],[33110,59916],[33113,59917],[33114,59918],[17427,59919],[33148,59921],[17445,59923],[17453,59925],[33189,59926],[22511,59927],[33217,59928],[33252,59929],[33364,59930],[17551,59931],[33398,59933],[33482,59934],[33496,59935],[17584,59937],[33623,59938],[38505,59939],[33797,59941],[28917,59942],[33892,59943],[33928,59945],[17668,59946],[33982,59947],[34017,59948],[34040,59949],[34064,59950],[34104,59951],[34130,59952],[17723,59953],[34159,59954],[34160,59955],[34272,59956],[17783,59957],[34418,59958],[34450,59959],[34543,59961],[38469,59962],[17926,59964],[17943,59965],[34990,59966],[35071,59967],[35108,59968],[35217,59970],[59971,162151],[35384,59973],[35476,59974],[35508,59975],[35921,59976],[36052,59977],[36082,59978],[36124,59979],[18328,59980],[36291,59982],[18413,59983],[36410,59985],[22356,59987],[22005,59989],[18487,59991],[36558,59992],[36578,59993],[36580,59994],[36589,59995],[36594,59996],[36801,59998],[36810,59999],[36812,6e4],[36915,60001],[18605,60003],[39136,60004],[37395,60005],[18718,60006],[37416,60007],[37464,60008],[37483,60009],[37553,60010],[37550,60011],[37567,60012],[37603,60013],[37611,60014],[37619,60015],[37620,60016],[37629,60017],[37699,60018],[37764,60019],[37805,60020],[18757,60021],[18769,60022],[37911,60024],[37917,60026],[37933,60027],[37950,60028],[18794,60029],[37972,60030],[38009,60031],[38189,60032],[38306,60033],[18855,60034],[38388,60035],[38451,60036],[18917,60037],[18980,60039],[38720,60040],[18997,60041],[38834,60042],[38850,60043],[19172,60045],[39097,60047],[19225,60048],[39153,60049],[22596,60050],[39193,60052],[39223,60055],[39261,60057],[39266,60058],[19312,60059],[39365,60060],[19357,60061],[39484,60062],[39695,60063],[39785,60065],[39901,60067],[39921,60068],[39924,60069],[19565,60070],[39968,60071],[14191,60072],[60073,138178],[40265,60074],[40702,60076],[22096,60077],[40381,60079],[40444,60081],[38134,60082],[36790,60083],[40625,60086],[40637,60087],[40646,60088],[38108,60089],[40674,60090],[40689,60091],[40696,60092],[40772,60094],[60095,131220],[60096,131767],[60097,132e3],[38083,60099],[60101,132311],[38081,60103],[60105,132565],[60106,132629],[60107,132726],[60108,136890],[22359,60109],[29043,60110],[60111,133826],[60112,133837],[60113,134079],[60115,194619],[60116,134091],[21662,60117],[60118,134139],[60119,134203],[60120,134227],[60121,134245],[60122,134268],[60124,134285],[60126,134325],[60127,134365],[60128,134381],[60129,134511],[60130,134578],[60131,134600],[60135,134660],[60136,134670],[60137,134871],[60138,135056],[60139,134957],[60140,134771],[60142,135100],[60144,135260],[60145,135247],[60146,135286],[60149,135304],[60150,135318],[13895,60151],[60152,135359],[60154,135471],[60155,135483],[21348,60156],[60158,135907],[60159,136053],[60160,135990],[60162,136567],[60163,136729],[60164,137155],[60165,137159],[28859,60167],[60168,137261],[60169,137578],[60170,137773],[60171,137797],[60172,138282],[60173,138352],[60174,138412],[60175,138952],[60177,138965],[60178,139029],[29080,60179],[60181,139333],[27113,60182],[14024,60183],[60184,139900],[60185,140247],[60186,140282],[60187,141098],[60188,141425],[60189,141647],[60191,141671],[60192,141715],[60193,142037],[60195,142056],[60197,142094],[60199,142143],[60202,142412],[60204,142472],[60205,142519],[60206,154600],[60207,142600],[60208,142610],[60209,142775],[60210,142741],[60211,142914],[60212,143220],[60213,143308],[60214,143411],[60215,143462],[60216,144159],[60217,144350],[60222,144743],[60223,144883],[60227,144922],[60228,145174],[22709,60231],[60234,146087],[60237,146961],[60238,147129],[60243,147737],[60245,148206],[60246,148237],[60248,148276],[60249,148374],[60258,148484],[60259,148694],[22408,60260],[60261,149108],[60263,149295],[60271,149522],[60272,149755],[60273,150037],[60275,150208],[22885,60277],[60279,151430],[60282,151596],[22335,60284],[60286,152217],[60287,152601],[60291,152646],[60292,152686],[60296,152895],[60298,152926],[60300,152930],[60301,152934],[60302,153543],[60304,153693],[60309,153859],[60312,154286],[60313,154505],[60314,154630],[22433,60316],[29009,60317],[60319,155906],[60322,156082],[60325,156674],[60326,156746],[60330,156804],[60334,156808],[60336,156946],[60338,157119],[60339,157365],[22201,60347],[60349,157436],[13848,60355],[60357,157593],[60358,157806],[60360,157790],[60362,157895],[60366,157990],[60368,158009],[60371,158202],[60373,158253],[60378,158260],[60379,158555],[60383,158621],[60385,158884],[60388,159150],[60392,159819],[60393,160205],[60395,160384],[60396,160389],[60399,160395],[60401,160486],[38047,60404],[60405,160848],[14009,60416],[60424,161740],[60425,161880],[22230,60426],[60435,162269],[60441,162301],[60442,162314],[60443,162571],[60444,163174],[60448,163849],[60459,163875],[60463,163912],[60466,163971],[60479,163984],[60480,164084],[60481,164142],[60483,164175],[60485,164271],[60486,164378],[60487,164614],[60488,164655],[60489,164746],[60491,164968],[60492,165546],[25574,60494],[60495,166230],[60498,166328],[60500,166375],[60502,166376],[60503,166726],[60504,166868],[60506,166921],[60508,167877],[60509,168172],[60511,168208],[60512,168252],[15863,60513],[60514,168286],[60515,150218],[36816,60516],[60519,169191],[60521,169392],[60522,169400],[60523,169778],[60524,170193],[60525,170313],[60526,170346],[60527,170435],[60528,170536],[60529,170766],[60530,171354],[60531,171419],[32415,60532],[60533,171768],[60534,171811],[19620,60535],[38215,60536],[60537,172691],[29090,60538],[60539,172799],[60542,173515],[19868,60543],[60544,134300],[36798,60545],[36794,60547],[60548,140464],[36793,60549],[60550,150163],[20202,60555],[60557,166700],[36480,60560],[60561,137205],[60563,166764],[60564,166809],[60566,157359],[60568,161365],[60570,153141],[60571,153942],[20122,60572],[60573,155265],[60576,134765],[60579,147080],[60580,150686],[60583,137206],[60584,137339],[60587,154698],[60589,152337],[15814,60590],[60596,155352],[19996,60600],[60601,135146],[60602,134473],[60603,145082],[60638,151880],[21982,60644],[34694,60672],[60676,135361],[60679,149254],[23440,60680],[60682,157843],[60684,141044],[60685,163119],[60686,147875],[60687,163187],[60688,159440],[60689,160438],[60691,135641],[60693,146684],[60694,173737],[60695,134828],[60698,138402],[60700,151490],[60702,135147],[60706,142752],[60710,135148],[60711,134666],[60714,135149],[60717,135559],[19994,60721],[19972,60722],[23309,60724],[13996,60727],[21373,60729],[13989,60730],[22682,60732],[60733,150382],[22442,60736],[60737,154261],[60738,133497],[60741,140389],[60746,146686],[60747,171824],[60749,151465],[60750,169374],[60753,146870],[60755,157619],[60756,145184],[60759,147191],[60760,146988],[60785,143578],[60789,135849],[22439,60790],[60791,149859],[60794,159918],[60801,137068],[60806,160100],[60809,159010],[60810,150242],[39963,60837],[60838,149822],[15878,60846],[60881,159011],[60887,132092],[60891,146685],[60893,149785],[22394,60904],[21722,60912],[29050,60928],[60949,150135],[60955,166490],[60962,194624],[60976,137275],[61e3,155993],[61014,144373],[61019,166850],[61024,138566],[61054,159441],[13877,61065],[61084,166701],[21024,61088],[15384,61089],[61090,146631],[61091,155351],[61092,161366],[61093,152881],[61094,137540],[61096,170243],[61097,159196],[61098,159917],[61100,156077],[61101,166415],[61102,145015],[61103,131310],[61104,157766],[61105,151310],[17762,61106],[23327,61107],[61108,156492],[40784,61109],[40614,61110],[61111,156267],[20962,57415],[21314,57416],[26285,57520],[22620,57547],[21843,57566],[15749,57594],[24928,57608],[18606,57668],[38845,57676],[57693,137335],[24755,57703],[33828,57711],[38932,57748],[57749,147596],[57764,143486],[57787,138813],[15147,57798],[15666,57824],[57857,132021],[28801,57944],[23708,57959],[58017,132547],[14128,58028],[58096,136054],[58097,150034],[58111,166699],[58112,155779],[256,62233],[193,62234],[461,62235],[192,62236],[274,62237],[201,62238],[282,62239],[200,62240],[332,62241],[211,62242],[465,62243],[210,62244],62245,[7870,62246],62247,[7872,62248],[202,62249],[257,62250],[225,62251],[462,62252],[224,62253],[593,62254],[275,62255],[233,62256],[283,62257],[232,62258],[299,62259],[237,62260],[464,62261],[236,62262],[333,62263],[243,62264],[466,62265],[242,62266],[363,62267],[250,62268],[468,62269],[249,62270],[470,62271],[472,62272],[474,62273],[476,62274],[252,62275],62276,[7871,62277],62278,[7873,62279],[234,62280],[609,62281],[643,63551],[592,63552],[603,63553],[596,63554],[629,63555],[339,63556],[248,63557],[331,63558],[650,63559],[618,63560],{f:2,c:62282},[11933,63530],[11974,63539],[12003,63547],20539,28158,[62841,171123],62842,[15817,62843],34959,[62845,147790],28791,23797,[19232,62848],[62849,152013],[13657,62850],[62851,154928],24866,[62853,166450],36775,37366,29073,26393,29626,[62859,144001],[62860,172295],[15499,62861],[62862,137600],[19216,62863],30948,29698,20910,[62867,165647],[16393,62868],27235,[62870,172730],[16931,62871],34319,31274,[62875,170311],[62876,166634],38741,28749,21284,[62880,139390],37876,30425,[62883,166371],62884,30685,20131,20464,20668,20015,20247,62891,21556,32139,22674,22736,[62896,138678],24210,24217,24514,[62900,141074],25995,[62902,144377],26905,27203,[62905,146531],27903,29184,[62909,148741],29580,[16091,62911],[62912,150035],23317,29881,35715,[62916,154788],[62917,153237],31379,31724,31939,32364,33528,34199,62924,34960,62926,36537,62928,36815,34143,39392,37409,62933,[62934,167353],[62935,136255],[16497,62936],[17058,62937],23066,39016,26475,[17014,62944],22333,34262,[62948,149883],33471,[62950,160013],[19585,62951],[62952,159092],23931,[62954,158485],[62955,159678],{f:2,c:62956},23446,62959,32347],"Adobe-GB1":[{f:95,c:32},{f:3,c:12288},[183,12539],713,711,168,12291,12293,8212,65374,8214,[8230,8943],{f:2,c:8216},{f:2,c:8220},{f:2,c:12308},{f:8,c:12296},{f:2,c:12310},{f:2,c:12304},177,215,247,8758,{f:2,c:8743},8721,8719,8746,8745,8712,8759,8730,8869,8741,8736,8978,8857,8747,8750,8801,8780,8776,8765,8733,8800,{f:2,c:8814},{f:2,c:8804},8734,8757,8756,9794,9792,176,{f:2,c:8242},8451,65284,164,{f:2,c:65504},8240,167,8470,9734,9733,9675,9679,9678,9671,9670,9633,9632,9651,9650,8251,8594,{f:2,c:8592},8595,12307,{f:20,c:9352},{f:20,c:9332},{f:10,c:9312},{f:10,c:12832},{f:12,c:8544},{f:3,c:65281},65509,{f:89,c:65285},65507,{f:83,c:12353},{f:86,c:12449},{f:17,c:913},{f:7,c:931},{f:17,c:945},{f:7,c:963},{f:7,c:59277},{f:2,c:65077},{f:2,c:65081},{f:2,c:65087},{f:2,c:65085},{f:4,c:65089},{f:2,c:59284},{f:2,c:65083},{f:2,c:65079},65073,59286,{f:2,c:65075},{f:6,c:1040},1025,{f:32,c:1046},1105,{f:26,c:1078},257,225,462,224,275,233,283,232,299,237,464,236,333,243,466,242,363,250,468,249,470,472,474,476,252,234,593,7743,324,328,505,609,{f:37,c:12549},0,{f:76,c:9472},{s:126},21834,38463,22467,25384,21710,21769,21696,30353,30284,34108,30702,33406,30861,29233,38552,38797,27688,23433,20474,25353,26263,23736,33018,26696,32942,26114,30414,20985,25942,29100,32753,34948,20658,22885,25034,28595,33453,25420,25170,21485,21543,31494,[12043,20843],30116,24052,25300,36299,38774,25226,32793,22365,38712,32610,29240,[12137,30333],26575,30334,25670,20336,36133,25308,31255,26001,29677,25644,25203,33324,39041,26495,29256,25198,25292,20276,29923,21322,21150,32458,37030,24110,26758,27036,33152,32465,26834,30917,34444,38225,20621,35876,33502,32990,21253,35090,21093,34180,38649,20445,22561,39281,23453,25265,25253,26292,35961,40077,29190,26479,30865,24754,21329,21271,36744,32972,36125,38049,20493,29384,22791,24811,28953,34987,22868,33519,26412,31528,23849,32503,29997,27893,36454,36856,36924,[12240,40763],[12112,27604],37145,31508,24444,30887,34006,34109,27605,27609,27606,24065,24199,30201,38381,25949,24330,24517,36767,22721,33218,36991,38491,38829,36793,32534,36140,25153,20415,21464,21342,{f:2,c:36776},36779,36941,26631,24426,33176,34920,40150,24971,21035,30250,24428,25996,28626,28392,23486,25672,20853,20912,26564,19993,31177,39292,28851,30149,24182,29627,33760,25773,25320,38069,27874,21338,21187,25615,38082,31636,20271,24091,33334,33046,33162,28196,27850,39539,25429,[12056,21340],21754,34917,22496,19981,24067,27493,31807,37096,24598,25830,29468,35009,26448,25165,36130,30572,36393,37319,24425,33756,34081,39184,21442,34453,27531,24813,24808,28799,33485,33329,20179,27815,34255,25805,31961,27133,26361,33609,21397,31574,20391,20876,27979,23618,36461,25554,21449,33580,33590,26597,30900,25661,23519,23700,24046,35815,25286,26612,35962,25600,25530,34633,39307,35863,32544,38130,20135,38416,39076,26124,29462,22330,23581,24120,38271,20607,32928,[12058,21378],25950,30021,21809,20513,36229,25220,38046,26397,22066,28526,24034,21557,28818,36710,25199,25764,25507,24443,28552,37108,[12162,33251],[12192,36784],23576,26216,24561,27785,38472,36225,34924,25745,31216,22478,27225,25104,21576,20056,31243,24809,28548,35802,25215,36894,39563,31204,21507,30196,25345,21273,27744,36831,24347,39536,32827,40831,20360,23610,[12186,36196],32709,26021,28861,20805,20914,[12173,34411],23815,23456,25277,37228,30068,36364,31264,24833,31609,20167,32504,30597,19985,33261,21021,20986,27249,21416,36487,38148,38607,28353,38500,26970,30784,20648,30679,25616,35302,22788,25571,24029,31359,26941,20256,33337,21912,20018,30126,31383,24162,24202,38383,21019,21561,28810,25462,38180,22402,26149,26943,37255,21767,28147,32431,34850,25139,32496,30133,33576,30913,38604,36766,24904,29943,35789,27492,21050,36176,27425,32874,33905,22257,21254,20174,19995,20945,31895,37259,31751,20419,36479,31713,31388,25703,23828,20652,33030,30209,31929,28140,32736,26449,23384,[12072,23544],30923,25774,25619,25514,25387,38169,25645,36798,31572,30249,25171,[12068,22823],21574,[12109,27513],20643,25140,24102,27526,20195,36151,34955,24453,36910,24608,32829,25285,20025,21333,37112,25528,32966,26086,27694,20294,24814,28129,35806,24377,34507,24403,25377,20826,33633,26723,[12049,20992],25443,36424,20498,23707,31095,23548,21040,31291,24764,36947,30423,24503,24471,30340,36460,28783,30331,31561,30634,20979,37011,22564,20302,28404,36842,25932,31515,29380,28068,32735,23265,25269,24213,22320,33922,31532,24093,24351,36882,32532,39072,25474,28359,30872,28857,20856,38747,22443,30005,20291,30008,24215,24806,22880,28096,27583,30857,21500,38613,20939,20993,25481,21514,38035,35843,36300,29241,30879,34678,36845,35853,21472,19969,30447,21486,38025,39030,[12237,40718],38189,23450,35746,20002,19996,20908,33891,25026,21160,26635,20375,24683,20923,27934,20828,25238,[12099,26007],38497,[12182,35910],36887,30168,37117,30563,27602,29322,29420,35835,22581,30585,36172,26460,38208,32922,24230,28193,22930,31471,30701,38203,27573,26029,32526,22534,20817,38431,23545,22697,21544,36466,25958,39039,22244,38045,30462,36929,25479,21702,22810,22842,22427,36530,26421,36346,33333,21057,24816,22549,34558,23784,40517,20420,39069,35769,23077,24694,21380,25212,36943,37122,39295,24681,[12157,32780],[12041,20799],[12159,32819],23572,39285,27953,[12038,20108],36144,21457,32602,31567,20240,20047,38400,27861,29648,34281,24070,30058,32763,27146,30718,38034,32321,20961,28902,21453,36820,33539,36137,29359,39277,27867,22346,33459,[12101,26041],32938,25151,38450,22952,20223,35775,32442,25918,33778,[12206,38750],21857,39134,32933,21290,35837,21536,32954,24223,27832,36153,33452,37210,21545,27675,20998,32439,22367,28954,27774,31881,22859,20221,24575,24868,31914,20016,23553,26539,34562,23792,38155,39118,30127,28925,36898,20911,32541,35773,22857,20964,20315,21542,22827,25975,32932,23413,25206,25282,36752,24133,27679,31526,20239,20440,26381,28014,28074,31119,34993,24343,29995,25242,36741,20463,37340,26023,33071,33105,24220,33104,36212,21103,35206,36171,22797,20613,20184,[12201,38428],[12119,29238],33145,36127,23500,35747,38468,22919,32538,21648,22134,22030,35813,25913,27010,38041,30422,28297,[12082,24178],[12130,29976],26438,26577,31487,32925,36214,24863,31174,25954,36195,20872,21018,38050,32568,32923,32434,23703,28207,26464,31705,30347,[12220,39640],33167,32660,31957,25630,38224,31295,21578,21733,27468,25601,[12093,25096],40509,33011,30105,21106,[12208,38761],33883,26684,34532,38401,38548,38124,20010,21508,32473,26681,36319,32789,26356,24218,32697,22466,32831,26775,[12079,24037],25915,21151,24685,40858,20379,36524,20844,23467,[12088,24339],24041,27742,25329,36129,20849,38057,21246,27807,33503,29399,22434,26500,36141,22815,36764,33735,21653,31629,20272,27837,23396,22993,[12238,40723],21476,34506,[12219,39592],[12181,35895],32929,25925,39038,22266,38599,21038,[12128,29916],21072,23521,25346,35074,20054,25296,24618,26874,20851,23448,20896,35266,31649,39302,32592,24815,28748,36143,20809,[12084,24191],36891,29808,35268,22317,30789,24402,40863,38394,36712,[12225,39740],35809,30328,26690,26588,36330,36149,21053,36746,28378,26829,38149,37101,22269,26524,35065,36807,21704,39608,23401,28023,27686,20133,23475,39559,37219,25e3,37039,38889,21547,28085,23506,20989,21898,32597,32752,25788,25421,26097,25022,24717,28938,27735,27721,22831,26477,33322,22741,22158,35946,27627,37085,22909,32791,21495,28009,21621,21917,33655,33743,26680,[12146,31166],21644,20309,21512,30418,35977,38402,27827,28088,36203,35088,40548,36154,22079,[12234,40657],30165,24456,29408,24680,21756,20136,27178,34913,24658,36720,21700,28888,34425,40511,27946,23439,24344,32418,21897,20399,29492,21564,21402,20505,21518,21628,20046,24573,29786,22774,33899,32993,34676,29392,31946,28246,24359,34382,21804,25252,20114,27818,25143,33457,21719,21326,29502,28369,30011,21010,21270,35805,27088,24458,24576,28142,22351,27426,29615,26707,36824,32531,25442,24739,21796,30186,35938,28949,28067,23462,24187,33618,24908,40644,30970,34647,31783,30343,20976,24822,29004,26179,24140,24653,35854,28784,25381,36745,24509,24674,34516,22238,27585,24724,24935,21321,24800,26214,36159,31229,20250,28905,27719,35763,35826,32472,33636,26127,23130,39746,27985,28151,35905,27963,20249,[12117,28779],33719,25110,24785,38669,36135,31096,20987,22334,22522,26426,30072,31293,31215,31637,32908,39269,36857,28608,35749,40481,23020,32489,32521,21513,26497,26840,36753,31821,38598,21450,24613,30142,27762,21363,23241,32423,25380,[12047,20960],33034,[12080,24049],34015,25216,20864,23395,20238,31085,21058,24760,27982,23492,23490,35745,35760,26082,24524,38469,22931,32487,32426,22025,26551,22841,20339,23478,21152,33626,39050,36158,30002,38078,20551,31292,20215,26550,39550,23233,27516,30417,22362,23574,31546,38388,29006,20860,32937,33392,22904,32516,33575,26816,26604,30897,30839,25315,25441,31616,20461,21098,20943,33616,27099,37492,36341,36145,35265,38190,31661,20214,20581,33328,21073,39279,28176,28293,28071,24314,20725,23004,23558,27974,27743,30086,33931,26728,22870,35762,21280,37233,38477,34121,26898,30977,28966,33014,20132,37066,27975,39556,23047,22204,25605,38128,30699,20389,33050,29409,[12179,35282],39290,32564,32478,21119,25945,37237,36735,36739,21483,31382,25581,25509,30342,31224,34903,38454,25130,21163,33410,26708,26480,25463,30571,31469,27905,32467,35299,22992,25106,34249,33445,30028,20511,20171,30117,35819,23626,[12081,24062],31563,[12100,26020],[12198,37329],20170,27941,35167,32039,38182,20165,35880,36827,38771,26187,31105,36817,28908,28024,23613,21170,33606,20834,33550,30555,26230,40120,20140,24778,31934,31923,32463,20117,35686,26223,39048,38745,22659,25964,38236,24452,30153,38742,31455,31454,20928,28847,31384,25578,31350,32416,29590,[12210,38893],20037,28792,20061,37202,21417,25937,26087,[12165,33276],33285,21646,23601,30106,38816,25304,29401,30141,23621,39545,33738,23616,21632,30697,20030,27822,32858,25298,25454,24040,20855,36317,36382,38191,20465,21477,24807,28844,21095,25424,40515,23071,20518,30519,21367,32482,25733,25899,25225,25496,20500,29237,35273,20915,35776,32477,22343,33740,38055,20891,21531,23803,20426,31459,27994,37089,39567,21888,21654,21345,21679,24320,25577,26999,20975,24936,21002,22570,21208,22350,30733,30475,24247,24951,31968,25179,25239,20130,28821,32771,25335,28900,38752,22391,33499,26607,26869,30933,39063,31185,22771,21683,21487,28212,20811,21051,23458,35838,32943,21827,22438,24691,22353,21549,31354,24656,23380,25511,25248,[12061,21475],25187,23495,26543,21741,31391,33510,37239,24211,35044,22840,22446,25358,36328,33007,22359,31607,20393,24555,23485,27454,21281,31568,29378,26694,30719,30518,26103,20917,20111,30420,23743,31397,33909,22862,39745,20608,39304,24871,28291,22372,26118,25414,22256,25324,25193,24275,38420,22403,25289,21895,34593,33098,36771,21862,33713,26469,36182,34013,23146,26639,25318,31726,38417,20848,28572,35888,25597,35272,25042,32518,28866,28389,29701,27028,29436,24266,37070,26391,28010,25438,21171,29282,[12156,32769],20332,23013,37226,28889,28061,21202,20048,38647,38253,34174,30922,32047,20769,22418,25794,32907,31867,27882,26865,26974,20919,21400,26792,29313,40654,31729,29432,31163,28435,29702,26446,[12197,37324],40100,31036,33673,33620,21519,26647,20029,21385,21169,30782,21382,21033,20616,20363,20432,30178,[12148,31435],31890,27813,[12202,38582],[12050,21147],29827,21737,20457,32852,33714,36830,38256,24265,24604,28063,24088,25947,33080,38142,24651,28860,32451,31918,20937,26753,31921,33391,20004,36742,37327,26238,20142,35845,25769,32842,20698,30103,29134,23525,36797,28518,20102,25730,38243,24278,26009,21015,35010,28872,21155,29454,29747,26519,30967,38678,20020,37051,40158,28107,20955,36161,21533,25294,29618,33777,38646,40836,38083,20278,32666,20940,28789,38517,23725,39046,21478,20196,28316,29705,27060,30827,39311,30041,21016,30244,27969,26611,20845,40857,32843,21657,31548,31423,38534,22404,25314,38471,27004,23044,25602,31699,28431,38475,33446,21346,39045,24208,28809,25523,21348,34383,40065,40595,30860,38706,36335,36162,[12229,40575],28510,31108,24405,38470,25134,39540,21525,38109,20387,26053,23653,23649,32533,34385,27695,24459,29575,28388,32511,23782,25371,23402,28390,21365,20081,25504,30053,25249,36718,20262,20177,27814,32438,35770,33821,34746,32599,36923,38179,31657,39585,35064,33853,27931,39558,32476,22920,[12231,40635],29595,30721,34434,39532,39554,22043,21527,22475,20080,40614,21334,36808,33033,30610,39314,34542,28385,34067,26364,24930,28459,35881,33426,33579,30450,27667,24537,33725,29483,33541,38170,[12113,27611],[12141,30683],38086,21359,33538,20882,24125,35980,36152,20040,29611,26522,26757,37238,38665,29028,27809,30473,23186,38209,27599,32654,26151,23504,22969,23194,38376,38391,20204,33804,33945,27308,30431,38192,29467,26790,23391,30511,37274,38753,31964,36855,35868,24357,[12150,31859],31192,35269,27852,34588,23494,24130,26825,30496,32501,20885,20813,21193,23081,32517,[12207,38754],33495,25551,30596,34256,31186,28218,24217,22937,34065,28781,27665,25279,[12139,30399],25935,24751,38397,26126,34719,40483,38125,21517,21629,35884,{f:2,c:25720},34321,27169,33180,30952,25705,39764,25273,26411,33707,22696,40664,27819,28448,23518,38476,35851,29279,26576,25287,29281,20137,22982,27597,22675,26286,24149,21215,24917,[12106,26408],[12140,30446],30566,29287,31302,25343,21738,21584,38048,37027,23068,32435,27670,20035,22902,32784,22856,21335,30007,38590,22218,25376,33041,24700,38393,28118,21602,39297,20869,23273,33021,22958,38675,20522,27877,23612,25311,20320,21311,33147,36870,28346,34091,25288,24180,30910,25781,25467,24565,23064,37247,40479,23615,25423,32834,23421,21870,38218,38221,28037,24744,26592,29406,20957,23425,25319,27870,[12124,29275],25197,38062,32445,33043,27987,20892,24324,22900,21162,24594,[12069,22899],26262,34384,30111,25386,25062,31983,35834,21734,27431,40485,27572,34261,21589,20598,27812,21866,36276,29228,24085,24597,29750,25293,25490,29260,24472,28227,27966,25856,28504,30424,30928,30460,30036,21028,21467,20051,24222,26049,32810,32982,25243,21638,21032,28846,34957,36305,27873,21624,32986,22521,35060,36180,38506,37197,20329,27803,21943,30406,30768,25256,28921,28558,24429,34028,26842,30844,31735,33192,26379,40527,25447,30896,22383,30738,38713,25209,25259,21128,29749,27607,21860,33086,30130,[12138,30382],21305,30174,20731,23617,35692,31687,20559,[12122,29255],39575,39128,28418,29922,31080,25735,30629,25340,39057,36139,21697,32856,20050,22378,33529,33805,24179,20973,29942,35780,23631,22369,27900,39047,23110,30772,39748,36843,31893,21078,25169,38138,20166,33670,33889,33769,33970,22484,26420,22275,26222,28006,35889,26333,28689,26399,27450,26646,25114,22971,19971,20932,28422,26578,27791,20854,26827,22855,27495,30054,23822,33040,40784,26071,31048,31041,39569,36215,23682,20062,20225,21551,22865,30732,22120,[12115,27668],36804,24323,27773,27875,35755,25488,24688,27965,29301,25190,38030,38085,21315,36801,31614,20191,35878,20094,40660,38065,38067,21069,28508,36963,27973,35892,22545,23884,[12107,27424],27465,26538,21595,33108,32652,22681,34103,24378,25250,27207,38201,25970,24708,26725,30631,20052,20392,24039,38808,25772,32728,23789,20431,31373,20999,33540,19988,24623,31363,38054,20405,20146,31206,29748,21220,33465,25810,31165,23517,27777,38738,36731,27682,20542,21375,28165,25806,26228,27696,24773,39031,35831,24198,29756,31351,31179,19992,37041,29699,27714,22234,37195,27845,36235,21306,34502,26354,36527,23624,39537,28192,21462,23094,40843,36259,21435,22280,39079,26435,37275,27849,20840,30154,25331,[12125,29356],21048,21149,32570,28820,30264,21364,40522,27063,30830,38592,35033,32676,28982,29123,20873,26579,29924,22756,25880,22199,35753,39286,25200,32469,24825,28909,22764,20161,[12040,20154],24525,38887,20219,35748,20995,22922,32427,25172,20173,[12103,26085],25102,33592,33993,33635,34701,29076,28342,23481,32466,20887,25545,26580,[12161,32905],33593,34837,20754,23418,22914,36785,20083,27741,[12042,20837],35109,36719,38446,34122,29790,38160,38384,28070,33509,24369,25746,27922,33832,33134,40131,22622,36187,19977,21441,20254,25955,26705,21971,20007,25620,39578,25195,23234,29791,[12170,33394],28073,26862,20711,33678,30722,26432,21049,27801,32433,20667,21861,29022,31579,26194,29642,33515,26441,[12077,23665],21024,29053,34923,38378,38485,25797,36193,33203,21892,27733,25159,32558,22674,20260,21830,36175,26188,19978,23578,35059,26786,25422,31245,28903,33421,21242,38902,23569,21736,37045,32461,22882,36170,34503,[12166,33292],33293,36198,25668,23556,24913,28041,31038,35774,30775,30003,21627,20280,[12189,36523],28145,23072,32453,31070,27784,23457,23158,29978,32958,24910,28183,22768,[12131,29983],29989,29298,21319,32499,30465,30427,21097,32988,22307,24072,22833,29422,26045,28287,35799,[12075,23608],34417,[12055,21313],[12143,30707],25342,26102,20160,[12215,39135],34432,23454,35782,21490,[12142,30690],20351,23630,39542,22987,24335,[12144,31034],[12064,22763],19990,26623,20107,25325,35475,36893,21183,26159,21980,22124,36866,20181,20365,37322,39280,[12114,27663],24066,24643,23460,35270,35797,25910,[12095,25163],[12216,39318],23432,23551,25480,21806,21463,30246,20861,34092,26530,26803,27530,25234,36755,21460,33298,28113,30095,20070,36174,23408,29087,34223,26257,26329,32626,34560,[12233,40653],[12239,40736],23646,26415,36848,26641,26463,25101,31446,22661,24246,25968,28465,24661,21047,32781,25684,34928,29993,24069,26643,25332,38684,21452,29245,35841,[12116,27700],30561,31246,21550,30636,39034,33308,35828,30805,26388,28865,26031,25749,22070,24605,31169,21496,19997,27515,32902,23546,21987,22235,20282,20284,39282,24051,26494,32824,24578,39042,36865,23435,35772,35829,25628,33368,25822,22013,33487,37221,20439,32032,36895,31903,20723,22609,28335,23487,35785,32899,37240,33948,31639,34429,38539,38543,32485,39635,30862,23681,31319,36930,38567,31071,23385,25439,31499,34001,26797,21766,32553,29712,32034,38145,25152,22604,20182,23427,22905,22612,29549,25374,36427,36367,32974,33492,25260,21488,27888,37214,22826,24577,27760,22349,25674,36138,30251,28393,22363,27264,30192,28525,35885,35848,22374,27631,34962,30899,25506,21497,28845,27748,22616,25642,22530,26848,33179,21776,31958,20504,36538,28108,36255,28907,25487,28059,28372,32486,33796,26691,36867,28120,38518,35752,22871,29305,34276,33150,30140,35466,26799,21076,36386,38161,25552,39064,36420,21884,20307,26367,22159,24789,28053,21059,23625,22825,28155,22635,[12133,3e4],29980,24684,33300,33094,25361,26465,36834,30522,36339,36148,38081,24086,21381,21548,28867,27712,24311,20572,20141,24237,25402,33351,36890,26704,37230,30643,21516,38108,24420,31461,26742,25413,31570,32479,30171,20599,25237,22836,36879,20984,31171,31361,22270,24466,36884,28034,23648,[12063,22303],21520,20820,28237,22242,25512,39059,33151,34581,35114,36864,21534,23663,33216,25302,25176,33073,40501,38464,39534,39548,26925,22949,25299,21822,25366,21703,34521,27964,23043,[12129,29926],34972,27498,22806,35916,24367,28286,29609,39037,20024,28919,23436,30871,25405,26202,30358,24779,23451,23113,19975,33109,27754,29579,20129,26505,[12153,32593],24448,26106,26395,24536,22916,23041,24013,24494,21361,38886,36829,26693,22260,21807,24799,20026,28493,32500,33479,33806,22996,20255,20266,23614,32428,26410,34074,21619,30031,32963,21890,39759,20301,28205,35859,23561,24944,21355,30239,28201,34442,[12098,25991],38395,32441,21563,31283,32010,38382,21985,32705,29934,25373,34583,28065,31389,25105,26017,21351,25569,27779,24043,21596,38056,20044,27745,35820,23627,[12102,26080],33436,26791,21566,21556,[12111,27595],27494,20116,25410,21320,33310,20237,20398,22366,25098,38654,26212,29289,21247,21153,24735,35823,26132,29081,26512,35199,30802,30717,26224,22075,21560,38177,29306,31232,24687,24076,24713,33181,[12067,22805],24796,29060,28911,28330,27728,29312,27268,34989,24109,20064,23219,21916,38115,27927,31995,38553,25103,32454,30606,34430,21283,38686,36758,26247,23777,20384,29421,19979,21414,22799,21523,25472,38184,20808,20185,40092,32420,21688,36132,34900,33335,38386,28046,24358,23244,26174,38505,29616,29486,21439,33146,39301,32673,23466,38519,38480,32447,30456,21410,38262,[12217,39321],31665,35140,28248,20065,32724,31077,35814,24819,21709,20139,39033,24055,27233,20687,21521,35937,33831,30813,38660,21066,21742,22179,38144,28040,23477,28102,26195,[12073,23567],23389,26657,32918,21880,31505,25928,26964,20123,27463,34638,38795,21327,25375,25658,37034,26012,32961,35856,20889,26800,21368,34809,25032,27844,27899,35874,23633,34218,33455,38156,27427,[12191,36763],26032,24571,[12092,24515],20449,34885,26143,33125,29481,24826,20852,21009,22411,24418,37026,[12175,34892],37266,24184,26447,24615,22995,20804,20982,33016,21256,27769,38596,29066,20241,20462,32670,26429,21957,38152,31168,34966,32483,22687,25100,38656,34394,22040,39035,24464,35768,33988,37207,21465,26093,24207,30044,24676,32110,23167,32490,32493,36713,21927,23459,24748,26059,[12126,29572],36873,30307,30505,32474,38772,34203,23398,[12147,31348],38634,[12174,34880],21195,29071,24490,26092,35810,23547,39535,24033,27529,27739,35757,35759,36874,36805,21387,25276,40486,40493,21568,20011,33469,[12123,29273],34460,23830,34905,28079,38597,21713,20122,35766,28937,21693,38409,28895,28153,30416,20005,30740,34578,23721,24310,[12180,35328],39068,38414,28814,27839,22852,25513,30524,34893,28436,33395,22576,29141,21388,30746,38593,21761,24422,28976,23476,35866,39564,27523,22830,40495,31207,26472,25196,20335,30113,[12154,32650],27915,38451,27687,20208,30162,20859,26679,28478,36992,33136,22934,29814,25671,23591,36965,31377,35875,23002,21676,33280,33647,35201,32768,26928,22094,32822,29239,37326,20918,20063,39029,25494,19994,21494,26355,33099,22812,28082,[12032,19968],22777,21307,25558,38129,20381,20234,[12176,34915],39056,22839,36951,31227,20202,33008,30097,27778,23452,23016,24413,26885,34433,20506,24050,[12036,20057],30691,20197,33402,25233,26131,[12194,37009],23673,20159,24441,33222,36920,32900,30123,20134,35028,24847,27589,24518,20041,30410,28322,35811,35758,35850,35793,24322,32764,32716,32462,33589,33643,22240,27575,[12211,38899],38452,23035,21535,38134,28139,23493,39278,23609,24341,38544,21360,33521,27185,23156,40560,24212,32552,33721,{f:2,c:33828},33639,34631,36814,36194,30408,24433,39062,30828,26144,21727,25317,20323,33219,30152,24248,38605,36362,34553,21647,27891,28044,27704,24703,21191,[12132,29992],24189,20248,24736,24551,23588,30001,37038,38080,29369,27833,28216,[12195,37193],26377,21451,21491,20305,37321,35825,[12060,21448],24188,36802,28132,20110,30402,27014,34398,24858,33286,20313,20446,36926,40060,24841,28189,28180,38533,20104,23089,[12204,38632],19982,23679,31161,23431,35821,[12155,32701],[12127,29577],22495,33419,37057,21505,36935,21947,23786,24481,24840,27442,29425,32946,35465,28020,23507,35029,39044,35947,39533,40499,28170,20900,20803,22435,34945,21407,25588,36757,22253,21592,22278,29503,28304,32536,36828,33489,24895,24616,38498,[12104,26352],32422,36234,36291,38053,23731,31908,[12105,26376],24742,38405,32792,20113,37095,21248,38504,20801,36816,34164,37213,26197,38901,23381,21277,30776,26434,26685,21705,28798,23472,36733,20877,22312,21681,25874,26242,36190,36163,33039,33900,36973,31967,20991,34299,26531,26089,28577,34468,36481,22122,36896,30338,28790,29157,36131,25321,21017,27901,36156,24590,22686,24974,26366,36192,25166,21939,28195,26413,36711,38113,38392,30504,26629,27048,21643,20045,28856,35784,25688,25995,23429,31364,20538,23528,30651,27617,35449,31896,27838,30415,26025,36759,23853,23637,34360,26632,21344,25112,31449,28251,32509,27167,31456,24432,28467,24352,25484,28072,26454,19976,24080,36134,20183,32960,30260,38556,25307,26157,25214,27836,36213,29031,32617,20806,32903,21484,36974,25240,21746,34544,36761,32773,38167,34071,36825,27993,29645,26015,30495,29956,30759,33275,36126,38024,20390,26517,30137,35786,38663,25391,38215,38453,33976,25379,30529,24449,29424,20105,24596,25972,25327,27491,25919,24103,30151,37073,35777,33437,26525,[12096,25903],21553,34584,30693,32930,33026,27713,20043,32455,32844,30452,26893,27542,25191,20540,20356,22336,25351,[12108,27490],36286,21482,26088,32440,24535,25370,25527,[12164,33267],33268,32622,24092,23769,21046,26234,31209,31258,36136,28825,30164,28382,27835,31378,20013,30405,24544,38047,34935,32456,31181,32959,37325,20210,20247,[12168,33311],21608,24030,27954,35788,31909,36724,32920,24090,21650,30385,23449,26172,39588,29664,26666,34523,26417,29482,35832,35803,36880,[12149,31481],28891,29038,25284,30633,22065,20027,33879,26609,21161,34496,36142,38136,31569,20303,27880,31069,39547,25235,[12118,29226],25341,19987,30742,36716,25776,36186,31686,26729,24196,35013,22918,25758,22766,29366,26894,38181,36861,36184,22368,32512,35846,20934,25417,25305,21331,26700,29730,33537,37196,21828,30528,28796,27978,20857,21672,36164,23039,28363,28100,23388,32043,20180,31869,28371,[12070,23376],[12163,33258],28173,23383,39683,26837,36394,23447,32508,24635,32437,37049,[12187,36208],22863,25549,31199,[12188,36275],21330,26063,31062,35781,38459,32452,38075,32386,22068,37257,26368,32618,23562,36981,26152,24038,20304,26590,20570,20316,22352,24231,20109,19980,20800,19984,24319,21317,19989,20120,19998,[12224,39730],23404,22121,[12033,20008],31162,[12035,20031],[12052,21269],20039,22829,[12120,29243],21358,27664,22239,32996,39319,27603,30590,40727,[12034,20022],20127,40720,20060,20073,20115,33416,23387,21868,22031,20164,21389,21405,21411,21413,21422,38757,36189,[12053,21274],21493,21286,21294,21310,36188,21350,21347,20994,21e3,21006,21037,21043,{f:2,c:21055},21068,21086,21089,21084,33967,21117,21122,21121,21136,21139,[12044,20866],32596,20155,20163,20169,20162,20200,20193,20203,20190,20251,20211,20258,20324,20213,20261,20263,20233,20267,20318,20327,25912,20314,20317,20319,20311,20274,20285,20342,20340,20369,20361,20355,20367,20350,20347,20394,20348,20396,20372,20454,20456,20458,20421,20442,20451,20444,20433,20447,20472,20521,20556,20467,20524,20495,20526,20525,20478,20508,20492,20517,20520,20606,20547,20565,20552,20558,20588,20603,20645,20647,20649,20666,20694,20742,20717,20716,20710,20718,20743,20747,20189,27709,20312,20325,20430,[12245,40864],27718,31860,20846,24061,40649,39320,20865,22804,[12051,21241],21261,35335,21264,20971,22809,20821,[12039,20128],20822,20147,34926,34980,20149,33044,35026,31104,23348,34819,32696,[12046,20907],20913,20925,20924,20935,[12045,20886],20898,20901,35744,{f:2,c:35750},35754,{f:2,c:35764},35767,{f:2,c:35778},35787,35791,35790,{f:3,c:35794},35798,{f:2,c:35800},35804,{f:2,c:35807},35812,{f:2,c:35816},35822,35824,35827,35830,35833,35836,{f:2,c:35839},35842,35844,35847,35852,35855,{f:2,c:35857},{f:3,c:35860},35865,35867,35864,35869,{f:3,c:35871},35877,35879,{f:2,c:35882},{f:2,c:35886},{f:2,c:35890},{f:2,c:35893},[12057,21353],21370,38429,38434,38433,38449,38442,38461,38460,38466,38473,38484,38495,38503,38508,38514,38516,38536,38541,38551,38576,37015,37019,37021,37017,37036,37025,37044,37043,37046,37050,37048,37040,37071,37061,37054,37072,37060,37063,37075,37094,37090,37084,37079,37083,37099,37103,37118,37124,37154,37150,37155,37169,37167,37177,37187,37190,21005,22850,21154,{f:2,c:21164},21182,21759,21200,21206,21232,21471,29166,30669,[12085,24308],[12048,20981],20988,[12223,39727],[12059,21430],24321,30042,24047,22348,22441,22433,22654,22716,22725,22737,22313,22316,22314,22323,22329,{f:2,c:22318},22364,22331,22338,22377,22405,22379,22406,22396,22395,22376,22381,22390,22387,22445,22436,22412,22450,22479,22439,22452,22419,22432,22485,22488,22490,22489,22482,22456,22516,22511,22520,22500,22493,22539,22541,22525,22509,22528,22558,22553,22596,22560,22629,22636,22657,22665,22682,22656,39336,40729,25087,33401,33405,33407,33423,33418,33448,33412,33422,33425,33431,33433,33451,33464,33470,33456,33480,33482,33507,33432,33463,33454,{f:2,c:33483},33473,33449,33460,33441,33450,33439,33476,33486,33444,33505,33545,33527,33508,33551,33543,33500,33524,33490,33496,33548,33531,33491,33553,33562,33542,{f:2,c:33556},33504,33493,33564,33617,{f:2,c:33627},33544,33682,33596,33588,33585,33691,33630,33583,33615,33607,33603,33631,33600,33559,33632,33581,33594,33587,33638,33637,33640,33563,33641,33644,33642,{f:2,c:33645},33712,33656,{f:2,c:33715},33696,33706,33683,33692,33669,33660,33718,33705,33661,33720,33659,33688,33694,33704,33722,33724,33729,33793,33765,33752,22535,33816,33803,33757,33789,33750,33820,33848,33809,33798,33748,33759,33807,33795,{f:2,c:33784},33770,33733,33728,33830,33776,33761,33884,33873,33882,33881,33907,{f:2,c:33927},33914,33929,33912,33852,33862,33897,33910,33932,33934,33841,33901,33985,33997,34e3,34022,33981,34003,33994,33983,33978,34016,33953,33977,33972,33943,34021,34019,34060,29965,34104,34032,34105,34079,34106,34134,34107,34047,34044,34137,34120,34152,34148,34142,34170,30626,34115,34162,34171,34212,34216,34183,34191,34169,34222,34204,34181,34233,34231,34224,34259,34241,34268,34303,34343,34309,34345,34326,34364,[12086,24318],24328,22844,22849,32823,22869,22874,22872,21263,[12074,23586],23589,23596,23604,25164,25194,25247,25275,25290,25306,25303,25326,25378,25334,25401,25419,25411,25517,25590,25457,25466,25486,25524,25453,25516,25482,25449,25518,25532,25586,25592,25568,25599,25540,25566,25550,25682,25542,25534,25669,25665,25611,25627,25632,25612,25638,25633,25694,25732,25709,25750,25722,{f:2,c:25783},25753,25786,25792,25808,25815,25828,25826,25865,25893,25902,[12087,24331],24530,29977,24337,21343,21489,21501,21481,21480,21499,21522,21526,21510,21579,{f:3,c:21586},21590,21571,21537,21591,21593,21539,21554,21634,21652,21623,21617,21604,{f:2,c:21658},21636,21622,21606,21661,21712,21677,21698,21684,21714,21671,21670,{f:2,c:21715},21618,21667,21717,21691,21695,21708,{f:2,c:21721},21724,{f:2,c:21673},21668,21725,21711,21726,21787,21735,21792,21757,21780,21747,{f:2,c:21794},21775,21777,21799,21802,21863,21903,21941,21833,21869,21825,21845,21823,21840,21820,21815,21846,{f:3,c:21877},21811,21808,21852,21899,21970,21891,21937,21945,21896,21889,21919,21886,21974,21905,21883,21983,{f:2,c:21949},21908,21913,21994,22007,21961,22047,21969,{f:2,c:21995},21972,21990,21981,21956,21999,21989,{f:2,c:22002},{f:2,c:21964},21992,22005,21988,36756,22046,22024,22028,22017,22052,22051,22014,22016,22055,22061,22104,22073,22103,22060,22093,22114,22105,22108,22092,22100,22150,22116,22129,22123,{f:2,c:22139},22149,22163,22191,22228,[12062,22231],22237,22241,22261,22251,22265,22271,22276,22282,22281,22300,24079,24089,24084,24081,24113,{f:2,c:24123},24119,24132,24148,24155,24158,24161,23692,23674,23693,23696,23702,23688,{f:2,c:23704},23697,23706,23708,23733,23714,23741,23724,23723,23729,23715,23745,23735,23748,23762,23780,23755,23781,{f:2,c:23810},23847,23846,23854,23844,23838,23814,23835,23896,23870,23860,23869,23916,23899,23919,23901,23915,23883,23882,23913,23924,23938,23961,23965,35955,23991,24005,[12091,24435],24439,24450,24455,24457,24460,24469,24473,24476,24488,24493,24501,24508,34914,[12090,24417],29357,29360,29364,{f:2,c:29367},29379,29377,29390,29389,29394,29416,29423,29417,29426,29428,29431,29441,29427,29443,{f:2,c:29434},29463,29459,29473,29450,29470,29469,29461,29474,29497,29477,29484,29496,29489,29520,29517,29527,29536,29548,29551,29566,[12167,33307],22821,39143,22820,[12065,22786],39267,{f:6,c:39271},39284,39287,39293,39296,39300,39303,39306,39309,{f:2,c:39312},{f:3,c:39315},24192,24209,24203,24214,24229,24224,24249,24245,24254,24243,36179,24274,24273,24283,24296,24298,33210,24516,24521,24534,24527,24579,24558,24580,24545,24548,24574,{f:2,c:24581},24554,24557,24568,24601,24629,24614,24603,24591,24589,24617,24619,24586,24639,24609,{f:2,c:24696},24699,24698,24642,24682,24701,24726,24730,24749,24733,24707,24722,24716,24731,24812,24763,24753,24797,24792,24774,24794,24756,24864,24870,24853,24867,24820,24832,24846,24875,24906,24949,25004,24980,24999,25015,25044,25077,24541,38579,38377,38379,38385,38387,{f:2,c:38389},38396,38398,{f:2,c:38403},38406,38408,{f:4,c:38410},38415,38418,{f:3,c:38421},{f:2,c:38425},20012,[12121,29247],25109,27701,27732,27740,27722,27811,27781,27792,27796,27788,{f:2,c:27752},27764,27766,27782,27817,27856,27860,27821,{f:2,c:27895},27889,27863,27826,27872,27862,27898,27883,27886,27825,27859,27887,27902,27961,27943,27916,27971,27976,27911,27908,27929,27918,27947,27981,27950,27957,27930,27983,27986,27988,27955,28049,28015,28062,28064,27998,{f:2,c:28051},27996,28e3,28028,28003,28186,28103,28101,28126,28174,28095,28128,28177,28134,28125,28121,28182,28075,28172,28078,28203,28270,28238,28267,28338,28255,28294,{f:2,c:28243},28210,28197,28228,28383,28337,28312,28384,28461,28386,28325,28327,28349,28347,28343,28375,28340,28367,28303,28354,28319,28514,{f:2,c:28486},28452,28437,28409,28463,28470,28491,28532,28458,28425,28457,28553,28557,28556,28536,28530,28540,28538,28625,28617,28583,28601,28598,28610,28641,28654,28638,28640,28655,28698,28707,28699,28729,28725,28751,28766,[12071,23424],23428,23445,23443,23461,23480,29999,39582,25652,23524,23534,35120,23536,36423,35591,36790,36819,36821,36837,36846,36836,36841,36838,36851,36840,36869,36868,36875,36902,36881,36877,36886,36897,{f:2,c:36917},36909,36911,36932,{f:2,c:36945},36944,36968,36952,36962,36955,26297,36980,36989,36994,37e3,36995,37003,[12089,24400],24407,24406,24408,23611,21675,23632,23641,23409,23651,23654,32700,24362,24361,24365,33396,24380,39739,[12076,23662],22913,22915,22925,{f:2,c:22953},22947,22935,22986,22955,22942,22948,22994,22962,22959,22999,22974,{f:2,c:23045},23005,23048,23011,23e3,23033,23052,23049,23090,23092,23057,23075,23059,23104,23143,23114,23125,23100,23138,23157,33004,23210,23195,23159,23162,23230,23275,23218,23250,23252,23224,23264,23267,23281,23254,23270,23256,23260,23305,23319,23318,23346,23351,23360,23573,23580,23386,23397,23411,23377,23379,23394,39541,{f:2,c:39543},39546,39551,39549,{f:2,c:39552},39557,39560,39562,39568,{f:2,c:39570},39574,39576,{f:3,c:39579},{f:2,c:39583},{f:2,c:39586},39589,39591,32415,32417,32419,32421,{f:2,c:32424},32429,32432,32446,{f:3,c:32448},32457,{f:2,c:32459},32464,32468,32471,32475,{f:2,c:32480},32488,32491,{f:2,c:32494},{f:2,c:32497},32525,32502,{f:2,c:32506},32510,{f:3,c:32513},{f:2,c:32519},{f:2,c:32523},32527,{f:2,c:32529},32535,32537,32540,32539,32543,{f:7,c:32545},{f:4,c:32554},{f:5,c:32559},32565,[12083,24186],30079,[12078,24027],30014,37013,29582,29585,29614,29602,29599,29647,29634,29649,29623,29619,29632,29641,29640,29669,29657,39036,29706,29673,29671,29662,29626,29682,29711,29738,29787,29734,29733,29736,29744,29742,29740,29723,29722,29761,29788,29783,29781,29785,29815,29805,29822,29852,29838,{f:2,c:29824},29831,29835,29854,{f:2,c:29864},29840,29863,29906,29882,{f:3,c:38890},26444,26451,26462,26440,26473,26533,26503,26474,26483,26520,26535,26485,26536,26526,26541,26507,26487,26492,26608,26633,26584,26634,26601,26544,26636,26585,26549,26586,26547,26589,26624,26563,26552,26594,26638,26561,26621,{f:2,c:26674},{f:2,c:26720},26702,26722,26692,26724,26755,26653,26709,26726,26689,26727,26688,26686,26698,26697,26665,26805,26767,26740,26743,26771,26731,26818,26990,26876,{f:2,c:26911},26873,26916,26864,26891,26881,26967,26851,26896,26993,26937,26976,26946,26973,27012,26987,27008,27032,27e3,26932,27084,{f:2,c:27015},27086,27017,26982,26979,27001,27035,27047,27067,27051,27053,27092,27057,27073,27082,27103,27029,27104,27021,27135,27183,27117,{f:2,c:27159},27237,27122,27204,27198,27296,27216,27227,27189,27278,27257,27197,27176,27224,27260,27281,27280,27305,27287,27307,29495,29522,{f:2,c:27521},27527,27524,{f:2,c:27538},27533,{f:2,c:27546},27553,27562,36715,36717,{f:3,c:36721},{f:2,c:36725},36728,36727,{f:2,c:36729},36732,36734,{f:2,c:36737},36740,36743,36747,{f:3,c:36749},36760,36762,36558,25099,25111,25115,25119,25122,25121,25125,25124,25132,33255,29935,29940,29951,29967,29969,29971,[12097,25908],{f:3,c:26094},26122,26137,26482,26115,26133,26112,28805,26359,26141,26164,26161,26166,26165,32774,26207,26196,26177,26191,26198,26209,26199,26231,26244,26252,26279,26269,26302,{f:2,c:26331},26342,26345,{f:2,c:36146},36150,36155,36157,36160,{f:2,c:36165},{f:2,c:36168},36167,36173,36181,36185,35271,{f:3,c:35274},{f:4,c:35278},29294,29343,29277,29286,29295,{f:2,c:29310},29316,29323,29325,29327,29330,25352,25394,25520,25663,25816,32772,27626,27635,27645,27637,27641,27653,27655,27654,27661,27669,{f:3,c:27672},27681,27689,27684,27690,27698,25909,25941,25963,29261,29266,29270,29232,34402,21014,32927,32924,32915,32956,26378,32957,32945,32939,32941,32948,32951,{f:4,c:32999},32987,32962,32964,32985,32973,32983,26384,32989,33003,33009,33012,33005,{f:2,c:33037},33010,33020,26389,33042,35930,33078,33054,33068,33048,33074,33096,33100,33107,33140,{f:2,c:33113},33137,33120,33129,{f:2,c:33148},33133,33127,22605,23221,33160,33154,33169,28373,33187,33194,33228,26406,33226,33211,33217,33190,27428,27447,27449,27459,27462,27481,{f:3,c:39121},39125,{f:2,c:39129},[12110,27571],24384,27586,35315,26e3,40785,26003,26044,26054,26052,26051,26060,26062,26066,26070,28800,28828,28822,28829,28859,28864,28855,28843,28849,28904,28874,28944,28947,28950,28975,28977,29043,29020,29032,28997,29042,29002,29048,29050,29080,29107,29109,29096,29088,29152,29140,29159,29177,29213,29224,28780,28952,29030,29113,25150,25149,25155,{f:2,c:25160},31035,31040,31046,31049,{f:2,c:31067},31059,31066,31074,31063,31072,31087,31079,31098,31109,31114,31130,31143,31155,24529,24528,24636,24669,24666,24679,24641,24665,24675,24747,24838,24845,24925,25001,24989,25035,25041,25094,32896,[12160,32895],27795,27894,28156,30710,30712,30720,30729,{f:2,c:30743},30737,26027,30765,{f:2,c:30748},{f:3,c:30777},30751,30780,30757,30764,30755,30761,30798,30829,{f:2,c:30806},30758,30800,30791,30796,30826,30875,30867,30874,30855,30876,30881,30883,30898,30905,30885,30932,30937,30921,30956,30962,30981,30964,30995,31012,31006,31028,40859,[12235,40697],{f:2,c:40699},30449,30468,30477,30457,{f:2,c:30471},30490,30498,30489,30509,30502,30517,30520,{f:2,c:30544},30535,30531,30554,30568,30562,30565,30591,30605,30589,30592,30604,30609,{f:2,c:30623},30640,30645,30653,30010,30016,30030,30027,30024,30043,30066,30073,30083,32600,32609,32607,35400,32616,32628,32625,32633,32641,32638,30413,30437,34866,{f:3,c:38021},38027,38026,{f:2,c:38028},{f:2,c:38031},38036,38039,38037,{f:3,c:38042},{f:2,c:38051},38059,38058,38061,38060,{f:2,c:38063},38066,38068,{f:5,c:38070},{f:2,c:38076},38079,38084,{f:7,c:38088},{f:3,c:38096},{f:3,c:38101},38105,38104,38107,{f:3,c:38110},38114,{f:2,c:38116},{f:2,c:38119},38122,38121,38123,{f:2,c:38126},{f:3,c:38131},38135,38137,{f:2,c:38140},38143,38147,38146,{f:2,c:38150},{f:2,c:38153},{f:3,c:38157},{f:5,c:38162},38168,38171,{f:3,c:38173},38178,{f:2,c:38186},38185,38188,{f:2,c:38193},38196,{f:3,c:38198},38204,{f:2,c:38206},38210,38197,{f:3,c:38212},38217,38220,{f:2,c:38222},{f:3,c:38226},{f:4,c:38230},38235,{f:2,c:38238},38237,{f:2,c:38241},{f:9,c:38244},38255,{f:3,c:38257},38202,30695,30700,38601,31189,31213,31203,31211,31238,23879,31235,31234,31262,31252,31289,31287,31313,40655,39333,31344,30344,30350,30355,30361,30372,29918,29920,29996,40480,40482,{f:5,c:40488},40498,40497,40502,40504,40503,{f:2,c:40505},40510,{f:2,c:40513},40516,{f:4,c:40518},{f:2,c:40523},40526,40529,40533,40535,{f:3,c:40538},40542,40547,{f:7,c:40550},40561,40557,40563,[12135,30098],30100,30102,30112,30109,30124,30115,{f:2,c:30131},30136,30148,30129,30128,30147,30146,30166,30157,30179,30184,30182,30180,30187,30183,30211,30193,30204,30207,30224,30208,30213,30220,30231,30218,30245,30232,30229,30233,30235,30268,30242,30240,30272,30253,30256,30271,30261,30275,30270,30259,30285,30302,30292,30300,30294,30315,30319,32714,31462,{f:2,c:31352},31360,31366,31368,31381,31398,31392,31404,31400,31405,31411,34916,34921,34930,34941,34943,34946,34978,35014,34999,35004,35017,35042,35022,35043,35045,35057,35098,35068,35048,35070,35056,35105,35097,35091,35099,35082,35124,35115,35126,35137,35174,35195,[12134,30091],32997,30386,30388,30684,[12158,32786],32788,32790,32796,32800,32802,{f:3,c:32805},32809,32808,32817,32779,32821,32835,32838,32845,32850,32873,32881,35203,39032,39040,39043,39049,{f:2,c:39052},39055,39060,{f:2,c:39066},{f:2,c:39070},{f:2,c:39073},{f:2,c:39077},[12172,34381],34388,34412,34414,34431,34426,34428,34427,34472,34445,34443,34476,34461,34471,34467,34474,34451,34473,34486,34500,34485,34510,34480,34490,34481,34479,34505,34511,34484,34537,{f:2,c:34545},34541,34547,34512,34579,34526,34548,34527,34520,34513,34563,34567,34552,34568,34570,34573,34569,34595,34619,34590,34597,34606,34586,34622,34632,34612,34609,34601,34615,34623,34690,34594,{f:2,c:34685},34683,34656,34672,34636,34670,34699,34643,34659,34684,34660,34649,34661,34707,34735,34728,34770,34758,34696,34693,34733,34711,34691,34731,34789,34732,34741,34739,34763,34771,34749,34769,34752,34762,34779,34794,34784,34798,34838,34835,34814,34826,34843,34849,34873,34876,[12152,32566],32578,{f:2,c:32580},33296,31482,31485,31496,{f:2,c:31491},31509,31498,31531,31503,31559,31544,31530,31513,31534,31537,31520,31525,31524,31539,31550,31518,31576,31578,31557,31605,31564,31581,31584,31598,31611,31586,31602,31601,31632,{f:2,c:31654},31672,31660,31645,31656,31621,31658,31644,31650,31659,31668,31697,31681,31692,31709,31706,{f:2,c:31717},31722,31756,31742,31740,31759,31766,31755,31775,31786,31782,31800,31809,31808,33278,{f:2,c:33281},33284,33260,34884,{f:3,c:33313},33325,33327,33320,33323,33336,33339,{f:2,c:33331},33342,33348,33353,33355,33359,33370,33375,33384,34942,34949,34952,35032,35039,35166,32669,32671,32679,{f:2,c:32687},32690,31868,25929,31889,31901,31900,31902,31906,31922,{f:2,c:31932},31937,31943,{f:2,c:31948},31944,31941,31959,31976,[12169,33390],26280,32703,32718,32725,32741,32737,32742,32745,32750,32755,[12151,31992],32119,32166,32174,32327,32411,40632,40628,36211,36228,36244,36241,36273,36199,36205,35911,35913,37194,37200,{f:2,c:37198},37220,37218,37217,37232,37225,37231,{f:2,c:37245},37234,37236,37241,37260,37253,37264,37261,37265,{f:2,c:37282},37290,{f:3,c:37293},37301,37300,37306,[12183,35925],40574,36280,36331,36357,36441,36457,36277,36287,36284,36282,36292,{f:2,c:36310},36314,36318,{f:2,c:36302},36315,36294,36332,{f:2,c:36343},36323,36345,36347,36324,36361,36349,36372,36381,36383,36396,36398,36387,36399,36410,36416,36409,36405,36413,36401,36425,{f:2,c:36417},{f:2,c:36433},36426,36464,36470,36476,36463,36468,36485,36495,36500,36496,36508,36510,[12184,35960],35970,35978,35973,35992,35988,26011,35286,35294,35290,35292,35301,35307,35311,35390,35622,38739,38633,38643,38639,38662,38657,38664,38671,38670,38698,38701,38704,38718,40832,40835,{f:6,c:40837},40844,40702,40715,40717,[12203,38585],{f:2,c:38588},38606,38610,30655,38624,37518,37550,37576,37694,37738,37834,37775,37950,37995,40063,40066,{f:4,c:40069},31267,40075,40078,{f:3,c:40080},{f:2,c:40084},{f:2,c:40090},{f:6,c:40094},{f:5,c:40101},40107,{f:2,c:40109},{f:8,c:40112},{f:4,c:40122},{f:4,c:40132},{f:7,c:40138},{f:3,c:40147},{f:3,c:40151},{f:2,c:40156},40159,40162,38780,38789,{f:2,c:38801},38804,38831,38827,38819,38834,38836,39601,39600,39607,40536,39606,39610,39612,39617,39616,39621,39618,{f:2,c:39627},39633,39749,39747,39751,39753,39752,39757,39761,39144,39181,39214,39253,39252,[12221,39647],39649,39654,39663,39659,39675,39661,39673,39688,39695,39699,39711,39715,{f:2,c:40637},32315,40578,{f:2,c:40583},40587,40594,37846,40605,40607,{f:3,c:40667},40672,40671,40674,40681,40679,40677,40682,40687,40738,40748,40751,40761,40759,{f:2,c:40765},40772,12295,{s:13},30362,34297,31001,24859,39599,35158,22761,32631,25850,25943,38930,36774,32070,24171,32129,37770,35607,39165,23542,22577,39825,36649,[12185,35997],37575,29437,20633,24970,32179,31558,30050,25987,24163,38281,37002,32232,36022,35722,36783,36782,27161,40009,30303,28693,28657,36051,25839,39173,25765,37474,37457,39361,35036,36001,21443,34870,27544,24922,24920,29158,33980,33369,20489,28356,21408,20596,28204,23652,35435,25881,25723,34796,39262,35730,32399,37855,29987,38369,39019,22580,22039,[12199,38263],20767,33144,24288,26274,37396,[12190,36554],24505,22645,38515,35183,31281,25074,35488,39425,36978,39347,[12242,40786],29118,34909,34802,23541,30087,36490,31820,32162,37276,37604,38619,30990,20786,35320,34389,20659,30241,38358,21109,37656,32020,32189,36781,35422,36060,32880,24478,21474,36517,31428,37679,36948,24118,36024,25812,21934,37170,25763,33213,24986,35477,24392,30070,25803,40680,34153,27284,25623,23798,31153,23566,29128,37159,25973,28364,36958,32224,39003,40670,22666,38651,28593,37347,35519,35548,37336,38914,37664,35330,26481,21205,26847,20941,[12222,39717],29346,29544,35712,36077,37709,37723,26039,32222,38538,23565,22136,38931,37389,22890,22702,40285,38989,35355,24801,39187,20818,29246,39180,36019,30332,32624,38309,31020,37353,29033,31684,36009,39151,35370,32033,[12214,39131],35513,24290,36027,32027,22707,22894,24996,31966,35920,26963,37586,[12213,39080],30219,39342,32299,35575,40179,33178,36667,25771,36628,36070,24489,36e3,35331,23142,32283,35442,37411,33995,24185,36245,36123,23713,21083,37628,32177,23831,37804,25841,40255,38307,37499,20491,32102,40852,38799,36002,37390,28317,27083,36092,34865,39015,21102,38364,35264,39208,24931,36011,24291,35215,27512,[12244,40860],38312,36556,35437,27331,36020,21130,36645,37707,22283,36942,39405,38867,28450,34399,38305,40372,36032,36703,40251,32005,22778,35703,28396,22057,33775,30059,21123,35441,25079,22750,27489,29872,36996,32233,35594,25582,36637,36036,31330,26371,29172,21295,35569,35496,32362,33911,28222,29554,36008,31117,25802,27231,31309,39249,35663,40388,32318,32221,26997,36655,32026,25824,24190,34186,21137,28639,35336,35352,38555,32380,32e3,22846,33698,38960,36040,37440,20729,39381,27570,30435,22533,31627,38291,33393,32216,32365,27298,40572,25536,25791,31777,20745,34214,27323,37970,36368,36068,[12178,35211],37749,33382,21133,39198,28472,28666,28567,23559,28479,34083,27123,22892,35611,37292,33184,28550,39509,23308,25898,37496,30703,20709,39171,32371,32094,36686,36611,38542,31680,28500,32080,35489,32202,37670,20677,35641,36914,29180,30433,21185,33686,39912,39514,32147,38968,37857,24465,30169,31478,31998,33290,39378,33289,25818,37624,25084,21127,40273,32121,35258,35363,32118,37406,36557,39423,38283,20977,38982,27579,35506,22718,25031,25715,24235,35122,35463,22602,20744,23532,31014,26336,34407,24011,31418,39243,28528,25844,38346,34847,33240,33802,20358,36084,34253,27396,25876,31811,38348,34349,28734,35733,25900,35261,25078,32412,29211,28651,25736,21214,28551,27138,37939,22744,39006,31852,38626,28757,35023,39881,31150,40599,21426,21237,31019,27511,28701,38584,20486,32879,34030,36899,37934,24976,28451,31806,25986,33225,37832,25088,29001,32244,31975,20841,36635,35538,30274,36988,37904,29557,33256,37168,40023,36035,40801,37428,38728,23994,38936,39230,21129,[12243,40845],32894,22184,31840,22751,25871,38580,27155,23105,25695,31757,34310,30439,39025,24300,29200,25796,28407,34396,39791,36034,37682,38520,39522,37569,23650,32311,24942,28670,32209,24018,25891,23423,28772,20098,25476,36650,20523,20374,28138,32184,35542,34367,32645,37007,38012,31854,39486,39409,32097,23229,29802,30908,34718,[12218,39340],39393,21966,36023,[12230,40613],36067,36993,30622,39237,34875,28415,35646,37672,37466,36031,37762,[12200,38272],24758,20497,37683,22818,35598,24396,35219,32191,32236,24287,28357,25003,38313,40180,37528,35628,35584,30045,37385,32013,38627,25747,33126,24817,39719,39186,25836,33193,25862,37312,[12227,40165],32886,22169,38007,37811,27320,29552,23527,25840,28632,37397,32016,33215,28611,36786,30247,35582,27472,40407,27590,22036,28442,30436,40848,36064,22132,40300,39449,39108,38971,36007,34315,24977,35413,28497,38935,25778,37610,20693,27192,35676,33229,[12241,40778],39438,35912,21843,27683,35350,29309,37370,37467,36983,31805,35609,37666,37463,28154,35700,22649,27085,21958,22715,34196,25654,37740,27211,21932,20689,32761,31429,31434,27453,35242,23522,36629,27691,20670,38915,35531,24950,29898,31406,36264,21312,36544,39493,40818,39028,27402,21240,40306,30906,35731,39250,25854,32350,29105,38860,35469,32009,27054,32104,36575,37613,38287,28516,28753,34217,39955,36093,20632,21930,39479,25475,28544,27578,32023,31721,26348,38275,38493,36109,32341,20663,36062,29138,32057,36050,25448,25885,25086,35373,32051,23529,23352,33102,28402,32882,32361,21213,32854,24107,29509,28629,35433,26178,34645,23526,35672,39387,21218,36969,37323,39166,35222,35430,22781,29560,27166,36664,26360,36118,23660,34899,27193,31466,25976,24101,38617,35504,38918,35500,30889,29197,32114,39164,39686,32883,24939,38924,35359,35494,25851,34311,35380,32901,38614,38568,32143,27506,23403,25613,32302,29795,37782,29562,25787,33274,24907,25892,36010,30321,28760,22727,35674,35527,22022,28271,29145,28644,32295,35342,39472,35588,37563,38988,39636,26781,36028,37941,24307,32893,28916,37509,32113,38957,22294,22615,22296,38973,40213,39345,39389,27234,31402,35178,24398,28771,38929,33836,32178,[12209,38859],36949,22285,29234,28656,32173,33894,20553,20702,32239,35586,34907,32862,32011,31337,21839,25790,34680,28198,31401,21978,37794,28879,35491,28961,34154,22626,38695,21209,35492,37675,29351,35186,32722,37521,25138,32048,34662,36676,23805,20448,29433,22151,37697,39854,32406,36066,37532,38289,39023,38570,29694,29563,32291,39201,25010,32171,38002,37129,35443,38911,38917,34157,22210,37559,26313,22063,21332,25406,33029,35559,23531,28681,35613,37573,37313,33288,37561,32137,38920,35377,32210,32396,36562,25080,36984,30316,32098,23416,21211,35426,23563,39348,35347,35338,36956,22739,40201,40232,21854,20126,35357,38329,40573,22196,38996,38331,33399,21421,30831,35578,39511,40230,26954,25562,30221,38525,30306,39178,27171,22575,35617,34277,29242,[12212,38913],26989,33865,37291,37541,38948,36986,20736,34811,34269,20740,25014,32681,35427,35696,35516,35695,32377,34093,38512,37504,39154,38577,27387,23344,40441,25033,32403,29801,34722,29151,29074,34821,36111,31310,21938,25793,20653,30320,36404,20778,24962,37109,37438,29494,35480,36671,39192,[12226,39770],28417,33287,23996,35486,39729,29508,35709,38928,39341,40219,28149,36677,22290,21729,22291,32227,36960,39e3,32004,36493,38e3,38322,38642,37142,38549,36939,34292,37270,26248,38620,36617,25890,26283,36106,36124,33247,38015,26839,31432,36012,25799,21063,28580,36042,36104,36555,37720,38296,35408,40779,20661,27656,30430,26028,36670,23940,26855,25136,32187,24373,28466,24115,36076,33081,36249,34756,36685,37754,36889,35998,37341,20597,35386,37806,38499,24128,30309,37165,35657,32340,32887,22519,34937,32025,25711,25842,24159,36074,28399,37912,32066,31278,33131,34886,35589,36600,30394,26205,39519,35576,35461,29165,30682,22225,36015,37956,31689,39376,23560,30938,36681,36090,27137,33674,35037,22941,22767,29376,37648,36101,22684,32180,35524,28310,28609,36039,28460,32156,32317,32305,37138,35419,32068,38013,21959,21401,21428,38760,36107,21293,21297,36094,21060,21132,21108,20660,20480,20630,20757,20738,20756,20796,20791,20712,20674,20795,20752,20794,20681,31988,40652,22213,40172,35131,33248,35329,35344,35340,35349,35635,35406,35365,35393,35382,35398,35412,35416,35410,35462,35460,35455,35440,35452,35445,35436,35438,35533,35554,35425,35482,35493,{f:2,c:35473},35535,35537,35529,35547,35543,35522,35510,35574,35563,35604,35585,35556,35565,35580,35571,35558,35566,35550,35624,35740,35606,35610,35600,35627,35629,35670,35673,35662,35742,35691,35734,38488,37178,37140,37172,37087,37174,37126,37192,33467,21233,24048,22538,22745,22754,22752,22746,22497,22607,22550,22610,22557,22628,34188,34131,34294,33703,33799,34031,33511,34338,34086,22603,29026,34136,34045,34126,34184,34234,29334,28366,34113,34254,34130,33984,33874,33892,33940,33845,34207,34133,40367,33939,32264,34118,34146,34078,39488,34362,37795,34167,34334,34298,34308,34282,34330,22889,23607,25451,25718,25759,25681,25692,25779,25860,25878,25847,25852,25883,22064,22072,22216,22182,21764,21692,22144,22109,22112,22069,22006,22118,22130,22156,22117,22044,22062,21993,22038,22208,22029,22195,22209,22127,36705,22198,22165,22279,24131,24172,24152,24151,23943,23796,23888,23852,23975,23968,23959,23821,23992,23937,24020,24480,29559,29505,29546,29499,29547,29568,29564,39136,39219,39145,39228,{f:2,c:39146},39149,39156,39177,39185,39195,39223,39231,39235,{f:3,c:39240},39244,39266,24289,36065,25082,25006,24938,24894,24757,24884,25036,24927,25064,24827,24887,24818,24947,24860,24978,38274,38278,38344,38286,38292,38284,38373,38317,38315,39726,38316,38334,38326,39721,38335,38333,38332,38339,38347,38356,38352,38357,38366,28739,28505,28711,28696,28668,28039,28025,28254,28590,28687,28408,28527,28150,28543,28678,28576,28683,28775,28740,28677,28535,28704,28703,28722,28712,28765,39467,36999,36885,37008,23656,24371,23285,23255,23296,23149,23304,23372,23207,23291,23307,23329,23338,23321,39380,39391,39385,39478,39515,39377,39384,39501,39498,39394,39530,39439,39437,39429,39490,39469,39446,39489,39470,39480,{f:2,c:39491},39503,39525,39524,31993,32006,32002,{f:2,c:32007},32394,32028,32021,32019,32058,32050,32049,32272,32060,32064,32063,32093,32078,32115,32134,32131,32136,32190,32186,32203,32212,32196,32158,32172,32185,32163,32176,32199,32217,32215,32249,32242,32354,32230,32246,32241,32267,32225,32265,32285,32287,32286,32301,32266,32273,32381,32313,32309,32306,32326,32325,32392,32346,32338,32366,32382,32368,32367,32408,29859,29771,29903,38922,29885,29759,29833,29862,29908,29914,38873,38878,38876,27050,27370,26776,26838,27141,26783,27355,27379,27368,27359,27273,26895,27208,26984,27071,27194,27292,27410,27422,27357,27111,27407,27414,27372,27354,27384,27315,27367,27299,27347,27358,27556,27550,27566,27563,27567,36564,36571,36594,36603,36708,36601,36604,36587,36580,36706,36602,36606,36618,36615,36613,36626,36646,{f:2,c:36638},36636,36659,36678,36692,25108,25127,29964,26311,26308,26249,26326,36033,36016,36026,36029,36100,36018,36037,36112,36049,36058,36053,36075,36071,36091,35224,35244,35233,35263,35238,35247,35250,35255,27647,27660,27692,29272,26407,33110,33242,33051,33214,33121,33231,27487,{f:2,c:39086},39094,39100,39110,39112,36674,40783,26005,29036,29010,29079,29121,29148,29182,31152,31118,31146,25055,24932,25059,25095,28585,30959,30893,30824,30904,31018,31025,30820,30973,30951,30947,40853,30616,30558,30652,32646,32648,{f:3,c:37330},37337,37335,37333,37367,37351,37348,37702,37365,37369,37384,37414,37445,37393,37392,37377,37415,37380,37413,37376,37434,37478,37431,37427,37461,37437,37432,37470,{f:2,c:37484},37439,37984,37424,37449,37448,37453,37422,37433,37944,37548,37536,37498,37546,37614,37583,37891,37603,37946,37553,37542,37799,37526,37580,37545,37877,37523,37503,37801,37530,37658,37547,37507,37899,37544,37539,37906,37688,37617,37847,37605,37616,37615,37608,37564,37597,37622,{f:2,c:37926},37571,37599,37606,37650,37638,37737,37659,37696,37633,37653,37678,37699,{f:2,c:37639},37663,37657,37733,37703,37750,37716,37732,37802,37744,37764,37860,37848,37928,37767,37836,37784,37816,37823,37798,37808,37813,37964,37858,{f:2,c:37852},37837,37854,37827,37831,37841,37908,37917,37879,37989,37907,37997,37920,38009,37881,37913,37962,37938,37951,37972,37987,37758,31329,40169,40182,40199,40198,40227,40327,40469,40221,40223,40421,40239,40409,40240,40258,40478,40275,40477,40288,40274,40435,40284,40289,40339,40298,40303,40329,40344,40346,40384,40357,40361,40386,40380,40474,40403,40410,40431,40422,40434,40440,40460,40442,40475,30308,30296,30311,30210,{f:2,c:30278},30281,30238,30267,{f:2,c:30317},30313,30322,31431,31414,35168,35123,35165,35143,35128,35172,30392,32814,32812,32889,32885,38919,{f:2,c:38926},38945,38940,28481,38950,38967,38990,38995,39027,39010,39001,39013,39020,39024,34787,34822,34566,34851,34806,34554,34799,34692,34832,34760,34833,34747,34766,32588,31716,31591,31849,31731,31744,31691,31836,31774,31787,31779,31850,31839,33380,33387,35018,32677,31986,31990,31965,32310,40617,36274,37317,37315,40570,36489,36428,36498,36474,36437,36506,36491,36499,36497,36513,36451,36522,36518,35316,35318,38746,38722,38717,38724,40788,40799,40793,40800,40796,40806,40812,40810,40823,[12236,40701],40703,40713,35726,38014,37864,39799,39796,39809,39811,39822,40056,31308,39826,40031,39824,39853,39834,39850,39838,40045,39851,39837,40024,39873,40058,39985,39993,39971,39991,39872,39882,39879,39933,39894,{f:2,c:39914},39905,39908,39911,39901,39906,39920,39899,39924,39892,40029,39944,39952,39949,39954,39945,39935,39968,39986,39981,39976,39973,39977,39987,39998,40008,39995,39989,40005,40022,40020,40018,40039,38851,38845,38857,40379,39631,39638,39637,39768,39758,39255,39260,39714,40695,40690,35180,38342,37686,24390,34068,32404,40803,22137,40725,22081,39662,35079,31296,39091,38308,39693,36852,24409,31339,39138,20642,34193,20760,25458,21067,30543,32397,26310,30637,[12228,40565],22217,40692,28635,25054,30663,28720,40629,34890,38370,38854,31844,32308,38822,40623,22220,39089,27311,32590,31984,20418,32363,40569,22190,39706,33903,31142,31858,39634,38587,32251,35069,30787,{f:10,c:8560},{f:2,c:714},729,8211,8213,8229,8245,8453,8457,{f:4,c:8598},8725,8735,8739,8786,{f:2,c:8806},8895,{f:36,c:9552},{f:15,c:9601},{f:3,c:9619},{f:2,c:9660},{f:4,c:9698},9737,8853,12306,{f:2,c:12317},{f:9,c:12321},12963,{f:2,c:13198},{f:3,c:13212},13217,13252,13262,{f:2,c:13265},13269,65072,65506,65508,8481,12849,8208,12540,{f:2,c:12443},{f:2,c:12541},12294,{f:2,c:12445},{f:10,c:65097},{f:4,c:65108},{f:14,c:65113},{f:4,c:65128},12350,{f:12,c:12272},19970,{f:3,c:19972},19983,19986,19991,{f:3,c:19999},20003,20006,20009,{f:2,c:20014},20017,20019,20021,20023,20028,{f:3,c:20032},20036,20038,20042,20049,20053,20055,{f:2,c:20058},{f:4,c:20066},{f:2,c:20071},{f:6,c:20074},20082,{f:10,c:20084},{f:3,c:20095},{f:2,c:20099},[12037,20101],20103,20106,20112,{f:2,c:20118},20121,{f:2,c:20124},20131,20138,{f:3,c:20143},20148,{f:4,c:20150},{f:3,c:20156},20168,20172,{f:2,c:20175},20178,{f:3,c:20186},20192,20194,{f:2,c:20198},20201,{f:3,c:20205},20209,20212,{f:3,c:20216},20220,20222,20224,{f:7,c:20226},{f:2,c:20235},{f:5,c:20242},{f:2,c:20252},20257,20259,{f:2,c:20264},{f:3,c:20268},20273,20275,20277,20279,20281,20283,{f:5,c:20286},{f:2,c:20292},{f:6,c:20295},20306,20308,20310,{f:2,c:20321},20326,20328,{f:2,c:20330},{f:2,c:20333},{f:2,c:20337},20341,{f:4,c:20343},20349,{f:3,c:20352},20357,20359,20362,20364,20366,20368,{f:2,c:20370},20373,{f:3,c:20376},20380,{f:2,c:20382},{f:2,c:20385},20388,20395,20397,{f:5,c:20400},{f:9,c:20406},{f:2,c:20416},{f:4,c:20422},{f:3,c:20427},{f:5,c:20434},20441,20443,20450,{f:2,c:20452},20455,{f:2,c:20459},20464,20466,{f:4,c:20468},20473,{f:3,c:20475},20479,{f:5,c:20481},{f:2,c:20487},20490,20494,20496,20499,{f:3,c:20501},20507,{f:2,c:20509},20512,{f:3,c:20514},20519,{f:11,c:20527},20539,20541,{f:4,c:20543},{f:3,c:20548},{f:2,c:20554},20557,{f:5,c:20560},{f:4,c:20566},20571,{f:8,c:20573},{f:6,c:20582},{f:7,c:20589},{f:3,c:20600},{f:2,c:20604},{f:4,c:20609},{f:2,c:20614},{f:4,c:20617},{f:8,c:20622},20631,{f:8,c:20634},20644,20646,{f:2,c:20650},{f:4,c:20654},20662,{f:2,c:20664},{f:2,c:20668},{f:3,c:20671},{f:2,c:20675},{f:3,c:20678},{f:5,c:20682},20688,{f:3,c:20690},{f:3,c:20695},{f:3,c:20699},{f:6,c:20703},{f:3,c:20713},{f:4,c:20719},20724,{f:3,c:20726},20730,{f:4,c:20732},20737,20739,20741,20746,{f:4,c:20748},20753,20755,{f:2,c:20758},{f:6,c:20761},20768,{f:8,c:20770},{f:7,c:20779},{f:4,c:20787},{f:2,c:20792},{f:2,c:20797},20802,20807,20810,20812,{f:3,c:20814},20819,{f:3,c:20823},20827,{f:5,c:20829},{f:2,c:20835},{f:2,c:20838},20842,20847,20850,20858,{f:2,c:20862},{f:2,c:20867},{f:2,c:20870},{f:2,c:20874},{f:4,c:20878},{f:2,c:20883},20888,20890,{f:3,c:20893},20897,20899,{f:5,c:20902},{f:2,c:20909},20916,{f:3,c:20920},{f:2,c:20926},{f:3,c:20929},20933,20936,20938,20942,20944,{f:9,c:20946},20956,{f:2,c:20958},{f:2,c:20962},{f:6,c:20965},20972,20974,20978,20980,20983,20990,{f:2,c:20996},21001,{f:2,c:21003},{f:2,c:21007},{f:3,c:21011},21020,{f:2,c:21022},{f:3,c:21025},{f:3,c:21029},21034,21036,21039,{f:2,c:21041},{f:2,c:21044},21052,21054,{f:2,c:21061},{f:2,c:21064},{f:2,c:21070},{f:2,c:21074},21077,{f:4,c:21079},21085,{f:2,c:21087},{f:3,c:21090},21094,21096,{f:3,c:21099},{f:2,c:21104},21107,{f:7,c:21110},21118,21120,{f:3,c:21124},21131,{f:2,c:21134},21138,{f:7,c:21140},21148,{f:4,c:21156},{f:3,c:21166},{f:10,c:21172},21184,21186,{f:3,c:21188},21192,21194,{f:4,c:21196},21201,{f:2,c:21203},21207,21210,21212,{f:2,c:21216},21219,{f:11,c:21221},{f:3,c:21234},{f:2,c:21238},{f:3,c:21243},{f:4,c:21249},21255,{f:4,c:21257},21262,{f:4,c:21265},21272,{f:2,c:21275},{f:2,c:21278},21282,{f:2,c:21284},{f:3,c:21287},{f:2,c:21291},21296,{f:6,c:21298},[12054,21304],{f:2,c:21308},21314,21316,21318,{f:3,c:21323},21328,{f:2,c:21336},21339,21341,21349,21352,21354,{f:2,c:21356},21362,21366,21369,{f:4,c:21371},{f:2,c:21376},21379,{f:2,c:21383},21386,{f:7,c:21390},{f:2,c:21398},{f:2,c:21403},21406,21409,21412,21415,{f:3,c:21418},{f:3,c:21423},21427,21429,{f:4,c:21431},{f:3,c:21436},21440,{f:4,c:21444},{f:3,c:21454},{f:2,c:21458},21461,21466,{f:3,c:21468},21473,21479,21492,21498,{f:3,c:21502},21506,21509,21511,21515,21524,{f:3,c:21528},21532,21538,{f:2,c:21540},21546,21552,21555,{f:2,c:21558},21562,21565,21567,{f:2,c:21569},{f:2,c:21572},21575,21577,{f:4,c:21580},21585,21594,{f:5,c:21597},21603,21605,21607,{f:8,c:21609},21620,{f:2,c:21625},{f:2,c:21630},21633,21635,21637,{f:4,c:21639},21645,21649,21651,{f:2,c:21655},21660,{f:5,c:21662},21669,21678,21680,21682,{f:3,c:21685},{f:2,c:21689},21694,21699,21701,{f:2,c:21706},21718,21720,21723,21728,{f:3,c:21730},{f:2,c:21739},{f:3,c:21743},{f:6,c:21748},21755,21758,21760,{f:2,c:21762},21765,21768,{f:5,c:21770},{f:2,c:21778},{f:6,c:21781},{f:4,c:21788},21793,{f:2,c:21797},{f:2,c:21800},21803,21805,21810,{f:3,c:21812},{f:4,c:21816},21821,21824,21826,21829,{f:2,c:21831},{f:4,c:21835},{f:2,c:21841},21844,{f:5,c:21847},21853,{f:2,c:21855},{f:2,c:21858},{f:2,c:21864},21867,{f:6,c:21871},{f:2,c:21881},21885,21887,{f:2,c:21893},{f:3,c:21900},21904,{f:2,c:21906},{f:3,c:21909},{f:2,c:21914},21918,{f:7,c:21920},{f:2,c:21928},21931,21933,{f:2,c:21935},21940,21942,21944,21946,21948,{f:5,c:21951},21960,{f:2,c:21962},{f:2,c:21967},21973,{f:3,c:21975},21979,21982,21984,21986,21991,{f:2,c:21997},{f:2,c:22e3},22004,{f:5,c:22008},22015,{f:4,c:22018},22023,{f:2,c:22026},{f:4,c:22032},22037,{f:2,c:22041},22045,{f:3,c:22048},{f:2,c:22053},22056,{f:2,c:22058},22067,22071,22074,{f:3,c:22076},22080,{f:10,c:22082},{f:5,c:22095},{f:2,c:22101},{f:2,c:22106},{f:2,c:22110},22113,22115,22119,{f:2,c:22125},22128,22131,22133,22135,22138,{f:3,c:22141},{f:4,c:22145},{f:4,c:22152},22157,{f:3,c:22160},22164,{f:3,c:22166},{f:9,c:22170},{f:2,c:22180},22183,{f:5,c:22185},{f:3,c:22192},22197,{f:4,c:22200},{f:3,c:22205},{f:2,c:22211},{f:2,c:22214},22219,{f:4,c:22221},{f:2,c:22226},{f:2,c:22229},{f:2,c:22232},22236,22243,{f:6,c:22245},22252,{f:2,c:22254},{f:2,c:22258},{f:3,c:22262},{f:2,c:22267},{f:3,c:22272},22277,22284,{f:4,c:22286},{f:2,c:22292},22295,{f:3,c:22297},{f:2,c:22301},{f:3,c:22304},{f:4,c:22308},22315,{f:2,c:22321},{f:5,c:22324},{f:2,c:22332},22335,22337,{f:4,c:22339},{f:2,c:22344},22347,{f:5,c:22354},{f:2,c:22360},{f:2,c:22370},22373,22375,22380,22382,{f:3,c:22384},{f:2,c:22388},{f:3,c:22392},{f:5,c:22397},{f:4,c:22407},{f:5,c:22413},{f:7,c:22420},{f:4,c:22428},22437,22440,22442,22444,{f:3,c:22447},22451,{f:3,c:22453},{f:9,c:22457},{f:7,c:22468},{f:2,c:22476},{f:2,c:22480},22483,{f:2,c:22486},{f:2,c:22491},22494,{f:2,c:22498},{f:8,c:22501},22510,{f:4,c:22512},{f:2,c:22517},{f:2,c:22523},{f:2,c:22526},22529,{f:2,c:22531},{f:2,c:22536},22540,{f:3,c:22542},{f:3,c:22546},{f:2,c:22551},{f:3,c:22554},22559,{f:2,c:22562},{f:5,c:22565},{f:4,c:22571},{f:2,c:22578},{f:14,c:22582},{f:5,c:22597},22606,22608,22611,{f:2,c:22613},{f:5,c:22617},{f:3,c:22623},22627,{f:5,c:22630},{f:8,c:22637},{f:3,c:22646},{f:4,c:22650},22655,22658,22660,{f:3,c:22662},{f:7,c:22667},{f:5,c:22676},22683,22685,{f:8,c:22688},{f:4,c:22698},{f:4,c:22703},{f:7,c:22708},22717,{f:2,c:22719},{f:3,c:22722},22726,{f:9,c:22728},22738,22740,{f:2,c:22742},{f:3,c:22747},22753,22755,{f:4,c:22757},22762,22765,{f:2,c:22769},{f:2,c:22772},{f:2,c:22775},{f:2,c:22779},{f:4,c:22782},22787,{f:2,c:22789},{f:2,c:22792},[12066,22794],{f:2,c:22795},22798,{f:4,c:22800},{f:2,c:22807},22811,{f:2,c:22813},{f:2,c:22816},22819,22822,22824,22828,22832,{f:2,c:22834},{f:2,c:22837},22843,22845,{f:2,c:22847},22851,{f:2,c:22853},22858,{f:2,c:22860},22864,{f:2,c:22866},22873,{f:5,c:22875},22881,{f:2,c:22883},{f:3,c:22886},22891,22893,{f:4,c:22895},22901,22903,{f:3,c:22906},{f:3,c:22910},22917,22921,{f:2,c:22923},{f:4,c:22926},{f:2,c:22932},22936,{f:3,c:22938},{f:4,c:22943},{f:2,c:22950},{f:2,c:22956},{f:2,c:22960},{f:6,c:22963},22970,{f:2,c:22972},{f:7,c:22975},{f:3,c:22983},{f:4,c:22988},{f:2,c:22997},23001,23003,{f:5,c:23006},23012,{f:2,c:23014},{f:3,c:23017},{f:12,c:23021},23034,{f:3,c:23036},23040,23042,{f:2,c:23050},{f:4,c:23053},23058,{f:4,c:23060},{f:3,c:23065},{f:2,c:23069},{f:2,c:23073},23076,{f:3,c:23078},{f:7,c:23082},23091,23093,{f:5,c:23095},{f:3,c:23101},{f:4,c:23106},{f:2,c:23111},{f:10,c:23115},{f:4,c:23126},{f:7,c:23131},{f:3,c:23139},{f:2,c:23144},{f:2,c:23147},{f:6,c:23150},{f:2,c:23160},{f:4,c:23163},{f:18,c:23168},{f:7,c:23187},{f:11,c:23196},{f:2,c:23208},{f:7,c:23211},23220,{f:2,c:23222},{f:4,c:23225},{f:2,c:23231},{f:6,c:23235},{f:2,c:23242},{f:5,c:23245},23251,23253,{f:3,c:23257},{f:3,c:23261},23266,{f:2,c:23268},{f:2,c:23271},23274,{f:5,c:23276},{f:3,c:23282},{f:5,c:23286},{f:4,c:23292},{f:7,c:23297},23306,{f:9,c:23309},23320,{f:7,c:23322},{f:8,c:23330},{f:5,c:23339},23345,23347,{f:2,c:23349},{f:7,c:23353},{f:11,c:23361},{f:3,c:23373},23378,23382,23390,{f:2,c:23392},{f:2,c:23399},{f:3,c:23405},23410,23412,{f:2,c:23414},23417,{f:2,c:23419},23422,23426,23430,23434,{f:2,c:23437},{f:3,c:23440},23444,23446,23455,{f:3,c:23463},{f:4,c:23468},{f:2,c:23473},23479,{f:3,c:23482},{f:2,c:23488},23491,{f:4,c:23496},{f:3,c:23501},23505,{f:9,c:23508},23520,23523,23530,23533,23535,{f:4,c:23537},23543,{f:2,c:23549},23552,{f:2,c:23554},23557,23564,23568,{f:2,c:23570},23575,23577,23579,{f:4,c:23582},23587,23590,{f:4,c:23592},{f:4,c:23597},{f:2,c:23602},{f:2,c:23605},{f:2,c:23619},{f:2,c:23622},{f:2,c:23628},{f:3,c:23634},{f:3,c:23638},{f:4,c:23642},23647,23655,{f:3,c:23657},23661,23664,{f:7,c:23666},{f:4,c:23675},23680,{f:5,c:23683},{f:3,c:23689},{f:2,c:23694},{f:2,c:23698},23701,{f:4,c:23709},{f:5,c:23716},23722,{f:3,c:23726},23730,23732,23734,{f:4,c:23737},23742,23744,{f:2,c:23746},{f:6,c:23749},{f:6,c:23756},{f:6,c:23763},{f:7,c:23770},{f:2,c:23778},23783,23785,{f:2,c:23787},{f:2,c:23790},{f:3,c:23793},23797,{f:4,c:23799},23804,{f:4,c:23806},{f:2,c:23812},{f:5,c:23816},{f:5,c:23823},23829,{f:3,c:23832},{f:2,c:23836},{f:5,c:23839},23845,23848,{f:2,c:23850},{f:5,c:23855},{f:8,c:23861},{f:8,c:23871},{f:2,c:23880},{f:3,c:23885},{f:7,c:23889},{f:2,c:23897},23900,{f:11,c:23902},23914,{f:2,c:23917},{f:4,c:23920},{f:12,c:23925},23939,{f:2,c:23941},{f:15,c:23944},23960,{f:3,c:23962},{f:2,c:23966},{f:6,c:23969},{f:15,c:23976},23993,23995,{f:8,c:23997},{f:5,c:24006},24012,{f:4,c:24014},24019,{f:6,c:24021},24028,{f:2,c:24031},{f:2,c:24035},24042,{f:2,c:24044},{f:2,c:24053},{f:5,c:24056},{f:2,c:24063},24068,24071,{f:3,c:24073},{f:2,c:24077},{f:2,c:24082},24087,{f:7,c:24094},{f:3,c:24104},24108,{f:2,c:24111},24114,{f:2,c:24116},{f:2,c:24121},{f:2,c:24126},24129,{f:6,c:24134},{f:7,c:24141},24150,{f:2,c:24153},{f:2,c:24156},24160,{f:7,c:24164},{f:5,c:24173},24181,24183,{f:3,c:24193},24197,{f:2,c:24200},{f:3,c:24204},24210,24216,24219,24221,{f:4,c:24225},{f:3,c:24232},24236,{f:5,c:24238},24244,{f:4,c:24250},{f:10,c:24255},{f:6,c:24267},{f:2,c:24276},{f:4,c:24279},{f:3,c:24284},{f:4,c:24292},24297,24299,{f:6,c:24301},24309,{f:2,c:24312},{f:3,c:24315},{f:3,c:24325},24329,{f:3,c:24332},24336,24338,24340,24342,{f:2,c:24345},{f:3,c:24348},{f:4,c:24353},24360,{f:2,c:24363},24366,24368,24370,24372,{f:3,c:24374},24379,{f:3,c:24381},{f:5,c:24385},24391,{f:3,c:24393},24397,24399,24401,24404,{f:3,c:24410},{f:3,c:24414},24419,24421,{f:2,c:24423},24427,{f:2,c:24430},24434,{f:3,c:24436},24440,24442,{f:3,c:24445},24451,24454,{f:3,c:24461},{f:2,c:24467},24470,{f:2,c:24474},24477,24479,{f:6,c:24482},{f:2,c:24491},{f:6,c:24495},24502,24504,{f:2,c:24506},{f:5,c:24510},{f:2,c:24519},{f:2,c:24522},24526,{f:3,c:24531},{f:3,c:24538},{f:2,c:24542},{f:2,c:24546},{f:2,c:24549},{f:2,c:24552},24556,{f:2,c:24559},{f:3,c:24562},{f:2,c:24566},{f:2,c:24569},24572,{f:3,c:24583},{f:2,c:24587},{f:2,c:24592},24595,{f:2,c:24599},24602,{f:2,c:24606},{f:3,c:24610},{f:3,c:24620},{f:5,c:24624},{f:5,c:24630},{f:2,c:24637},24640,{f:7,c:24644},24652,{f:2,c:24654},24657,{f:2,c:24659},{f:3,c:24662},{f:2,c:24667},{f:4,c:24670},{f:2,c:24677},24686,{f:2,c:24689},{f:2,c:24692},24695,24702,{f:3,c:24704},{f:4,c:24709},{f:2,c:24714},{f:4,c:24718},24723,24725,{f:3,c:24727},24732,24734,{f:2,c:24737},{f:2,c:24740},24743,{f:2,c:24745},24750,24752,24755,24759,{f:2,c:24761},{f:8,c:24765},{f:3,c:24775},{f:5,c:24780},{f:3,c:24786},{f:2,c:24790},24793,24795,24798,{f:4,c:24802},24810,24821,{f:2,c:24823},{f:4,c:24828},{f:4,c:24834},24839,{f:3,c:24842},{f:5,c:24848},{f:4,c:24854},{f:2,c:24861},{f:2,c:24865},24869,{f:3,c:24872},{f:8,c:24876},{f:2,c:24885},{f:6,c:24888},{f:8,c:24896},24905,24909,{f:2,c:24911},{f:3,c:24914},{f:2,c:24918},24921,{f:2,c:24923},24926,{f:2,c:24928},{f:2,c:24933},24937,{f:2,c:24940},24943,{f:2,c:24945},24948,{f:10,c:24952},{f:7,c:24963},{f:2,c:24972},24975,24979,{f:5,c:24981},{f:2,c:24987},{f:6,c:24990},{f:2,c:24997},25002,25005,{f:3,c:25007},{f:3,c:25011},{f:6,c:25016},{f:3,c:25023},{f:4,c:25027},{f:4,c:25037},25043,{f:9,c:25045},{f:3,c:25056},{f:2,c:25060},25063,{f:9,c:25065},{f:2,c:25075},25081,25083,25085,{f:5,c:25089},25097,25107,25113,{f:3,c:25116},25120,25123,25126,{f:2,c:25128},25131,25133,25135,25137,25141,[12094,25142],{f:5,c:25144},25154,{f:3,c:25156},25162,{f:2,c:25167},{f:3,c:25173},{f:2,c:25177},{f:7,c:25180},{f:2,c:25188},25192,{f:2,c:25201},{f:2,c:25204},{f:2,c:25207},{f:2,c:25210},25213,{f:3,c:25217},{f:4,c:25221},{f:6,c:25227},25236,25241,{f:3,c:25244},25251,{f:2,c:25254},{f:2,c:25257},{f:4,c:25261},{f:3,c:25266},{f:3,c:25270},25274,25278,{f:2,c:25280},25283,25291,25295,25297,25301,{f:2,c:25309},{f:2,c:25312},25316,{f:2,c:25322},25328,25330,25333,{f:4,c:25336},25344,{f:4,c:25347},{f:4,c:25354},{f:2,c:25359},{f:4,c:25362},{f:3,c:25367},25372,{f:2,c:25382},25385,{f:3,c:25388},{f:2,c:25392},{f:6,c:25395},{f:2,c:25403},{f:3,c:25407},25412,{f:2,c:25415},25418,{f:4,c:25425},{f:8,c:25430},25440,{f:3,c:25444},25450,25452,{f:2,c:25455},{f:3,c:25459},{f:2,c:25464},{f:4,c:25468},25473,{f:2,c:25477},25483,25485,25489,{f:3,c:25491},25495,{f:7,c:25497},25505,25508,25510,25515,25519,{f:2,c:25521},{f:2,c:25525},25529,25531,25533,25535,{f:3,c:25537},25541,{f:2,c:25543},{f:3,c:25546},25553,{f:3,c:25555},{f:3,c:25559},{f:3,c:25563},25567,25570,{f:5,c:25572},{f:2,c:25579},{f:3,c:25583},25587,25589,25591,{f:4,c:25593},25598,{f:2,c:25603},{f:5,c:25606},25614,{f:2,c:25617},{f:2,c:25621},{f:3,c:25624},25629,25631,{f:4,c:25634},{f:3,c:25639},25643,{f:6,c:25646},25653,{f:3,c:25655},{f:2,c:25659},25662,25664,{f:2,c:25666},25673,{f:6,c:25675},25683,{f:3,c:25685},{f:3,c:25689},25693,{f:7,c:25696},25704,{f:3,c:25706},25710,{f:3,c:25712},{f:2,c:25716},25719,{f:6,c:25724},25731,25734,{f:8,c:25737},25748,{f:2,c:25751},{f:4,c:25754},{f:3,c:25760},{f:3,c:25766},25770,25775,25777,25780,25782,25785,25789,25795,25798,{f:2,c:25800},25804,25807,25809,25811,{f:2,c:25813},25817,{f:3,c:25819},25823,25825,25827,25829,{f:5,c:25831},{f:2,c:25837},25843,{f:2,c:25845},{f:2,c:25848},25853,25855,{f:3,c:25857},25861,{f:2,c:25863},{f:5,c:25866},{f:2,c:25872},25875,25877,25879,25882,25884,{f:4,c:25886},{f:4,c:25894},25901,{f:4,c:25904},25911,25914,{f:2,c:25916},{f:5,c:25920},{f:2,c:25926},{f:2,c:25930},{f:2,c:25933},25936,{f:3,c:25938},25944,25946,25948,{f:3,c:25951},{f:2,c:25956},{f:4,c:25959},{f:3,c:25965},25969,25971,25974,{f:9,c:25977},{f:3,c:25988},{f:3,c:25992},{f:3,c:25997},26002,26004,26006,26008,26010,{f:2,c:26013},26016,{f:2,c:26018},26022,26024,26026,26030,{f:6,c:26033},26040,{f:2,c:26042},{f:3,c:26046},26050,{f:4,c:26055},26061,{f:2,c:26064},{f:3,c:26067},{f:8,c:26072},26081,{f:2,c:26083},{f:2,c:26090},{f:4,c:26098},{f:2,c:26104},{f:5,c:26107},26113,{f:2,c:26116},{f:3,c:26119},26123,26125,{f:3,c:26128},{f:3,c:26134},{f:3,c:26138},26142,{f:4,c:26145},26150,{f:4,c:26153},26158,26160,{f:2,c:26162},{f:5,c:26167},26173,{f:2,c:26175},{f:7,c:26180},{f:2,c:26189},{f:2,c:26192},{f:2,c:26200},{f:2,c:26203},26206,26208,{f:2,c:26210},26213,26215,{f:5,c:26217},{f:3,c:26225},26229,{f:2,c:26232},{f:3,c:26235},{f:3,c:26239},26243,{f:2,c:26245},{f:2,c:26250},{f:4,c:26253},{f:4,c:26258},{f:5,c:26264},{f:4,c:26270},{f:4,c:26275},{f:2,c:26281},{f:2,c:26284},{f:5,c:26287},{f:4,c:26293},{f:4,c:26298},{f:5,c:26303},26309,26312,{f:12,c:26314},{f:2,c:26327},26330,{f:2,c:26334},{f:5,c:26337},{f:2,c:26343},{f:2,c:26346},{f:3,c:26349},26353,{f:2,c:26357},{f:2,c:26362},26365,{f:2,c:26369},{f:4,c:26372},26380,{f:2,c:26382},{f:3,c:26385},26390,{f:3,c:26392},26396,26398,{f:6,c:26400},26409,26414,26416,{f:2,c:26418},{f:4,c:26422},{f:2,c:26427},{f:2,c:26430},26433,{f:2,c:26436},26439,{f:2,c:26442},26445,26450,{f:2,c:26452},{f:5,c:26455},26461,{f:3,c:26466},{f:2,c:26470},{f:2,c:26475},26478,26484,26486,{f:4,c:26488},26493,26496,{f:2,c:26498},{f:2,c:26501},26504,26506,{f:4,c:26508},{f:4,c:26513},26518,26521,26523,{f:3,c:26527},26532,26534,26537,26540,26542,{f:2,c:26545},26548,{f:8,c:26553},26562,{f:10,c:26565},{f:3,c:26581},26587,26591,26593,{f:2,c:26595},{f:3,c:26598},{f:2,c:26602},{f:2,c:26605},26610,{f:8,c:26613},26622,{f:4,c:26625},26630,26637,26640,26642,{f:2,c:26644},{f:5,c:26648},{f:3,c:26654},{f:7,c:26658},{f:7,c:26667},{f:3,c:26676},{f:2,c:26682},26687,26695,26699,26701,26703,26706,{f:10,c:26710},26730,{f:8,c:26732},26741,{f:9,c:26744},26754,26756,{f:8,c:26759},{f:3,c:26768},{f:3,c:26772},{f:4,c:26777},26782,{f:2,c:26784},{f:3,c:26787},{f:4,c:26793},26798,{f:2,c:26801},26804,{f:10,c:26806},26817,{f:6,c:26819},26826,26828,{f:4,c:26830},{f:2,c:26835},26841,{f:4,c:26843},{f:2,c:26849},{f:3,c:26852},{f:6,c:26856},26863,{f:3,c:26866},{f:3,c:26870},26875,{f:4,c:26877},{f:3,c:26882},{f:5,c:26886},26892,26897,{f:12,c:26899},{f:3,c:26913},{f:8,c:26917},{f:2,c:26926},{f:3,c:26929},{f:4,c:26933},{f:3,c:26938},26942,{f:2,c:26944},{f:7,c:26947},{f:8,c:26955},{f:2,c:26965},{f:2,c:26968},{f:2,c:26971},26975,{f:2,c:26977},{f:2,c:26980},26983,{f:2,c:26985},26988,{f:2,c:26991},{f:3,c:26994},26998,{f:2,c:27002},{f:3,c:27005},27009,27011,27013,{f:3,c:27018},{f:6,c:27022},{f:2,c:27030},{f:2,c:27033},{f:10,c:27037},27049,27052,{f:2,c:27055},{f:2,c:27058},{f:2,c:27061},{f:3,c:27064},{f:3,c:27068},27072,{f:8,c:27074},27087,{f:3,c:27089},{f:6,c:27093},{f:3,c:27100},{f:6,c:27105},{f:5,c:27112},{f:4,c:27118},{f:9,c:27124},27134,27136,{f:2,c:27139},{f:4,c:27142},{f:8,c:27147},{f:3,c:27156},{f:4,c:27162},27168,27170,{f:4,c:27172},27177,{f:4,c:27179},27184,{f:3,c:27186},{f:2,c:27190},{f:2,c:27195},{f:5,c:27199},{f:2,c:27205},{f:2,c:27209},{f:4,c:27212},{f:7,c:27217},27226,{f:3,c:27228},27232,{f:2,c:27235},{f:11,c:27238},{f:7,c:27250},{f:2,c:27258},{f:3,c:27261},{f:3,c:27265},{f:4,c:27269},{f:4,c:27274},27279,{f:2,c:27282},{f:2,c:27285},{f:4,c:27288},{f:3,c:27293},27297,{f:5,c:27300},27306,{f:2,c:27309},{f:3,c:27312},{f:4,c:27316},{f:2,c:27321},{f:7,c:27324},{f:15,c:27332},{f:6,c:27348},27356,{f:7,c:27360},27369,27371,{f:6,c:27373},{f:4,c:27380},{f:2,c:27385},{f:8,c:27388},{f:5,c:27397},{f:4,c:27403},{f:2,c:27408},{f:3,c:27411},{f:7,c:27415},27423,{f:2,c:27429},{f:10,c:27432},{f:4,c:27443},27448,{f:2,c:27451},{f:4,c:27455},{f:2,c:27460},27464,{f:2,c:27466},{f:3,c:27469},{f:8,c:27473},{f:5,c:27482},27488,{f:2,c:27496},{f:7,c:27499},{f:4,c:27507},27514,{f:4,c:27517},27525,27528,27532,{f:4,c:27534},{f:2,c:27540},27543,27545,{f:2,c:27548},{f:2,c:27551},{f:2,c:27554},{f:5,c:27557},{f:2,c:27564},{f:2,c:27568},27574,{f:2,c:27576},{f:3,c:27580},27584,{f:2,c:27587},{f:4,c:27591},27596,27598,{f:2,c:27600},27608,27610,{f:5,c:27612},{f:8,c:27618},{f:3,c:27628},{f:3,c:27632},27636,{f:3,c:27638},{f:3,c:27642},27646,{f:5,c:27648},{f:3,c:27657},27662,27666,27671,{f:3,c:27676},27680,27685,27693,27697,27699,{f:2,c:27702},{f:4,c:27705},{f:2,c:27710},{f:3,c:27715},27720,{f:5,c:27723},{f:3,c:27729},27734,{f:3,c:27736},{f:2,c:27746},{f:3,c:27749},{f:5,c:27755},27761,27763,27765,{f:2,c:27767},{f:3,c:27770},{f:2,c:27775},27780,27783,{f:2,c:27786},{f:2,c:27789},{f:2,c:27793},{f:4,c:27797},27802,{f:3,c:27804},27808,27810,27816,27820,{f:2,c:27823},{f:4,c:27828},27834,{f:4,c:27840},{f:3,c:27846},27851,{f:3,c:27853},{f:2,c:27857},{f:3,c:27864},{f:2,c:27868},27871,27876,{f:2,c:27878},27881,{f:2,c:27884},27890,27892,27897,{f:2,c:27903},{f:2,c:27906},{f:2,c:27909},{f:3,c:27912},27917,{f:3,c:27919},{f:4,c:27923},27928,{f:2,c:27932},{f:6,c:27935},27942,{f:2,c:27944},{f:2,c:27948},{f:2,c:27951},27956,{f:3,c:27958},27962,{f:2,c:27967},27970,27972,27977,27980,27984,{f:4,c:27989},27995,27997,27999,{f:2,c:28001},{f:2,c:28004},{f:2,c:28007},{f:3,c:28011},{f:4,c:28016},{f:2,c:28021},{f:2,c:28026},{f:5,c:28029},{f:2,c:28035},28038,{f:2,c:28042},28045,{f:2,c:28047},28050,{f:5,c:28054},28060,28066,28069,{f:2,c:28076},{f:2,c:28080},{f:2,c:28083},{f:2,c:28086},{f:6,c:28089},{f:3,c:28097},{f:3,c:28104},{f:4,c:28109},{f:4,c:28114},28119,{f:3,c:28122},28127,{f:2,c:28130},28133,{f:3,c:28135},28141,{f:2,c:28143},28146,28148,28152,{f:8,c:28157},{f:4,c:28166},28171,28175,{f:2,c:28178},28181,{f:2,c:28184},{f:2,c:28187},{f:2,c:28190},28194,{f:2,c:28199},28202,28206,{f:2,c:28208},28211,{f:3,c:28213},28217,{f:3,c:28219},{f:4,c:28223},{f:8,c:28229},{f:4,c:28239},28245,28247,{f:2,c:28249},{f:2,c:28252},{f:11,c:28256},{f:2,c:28268},{f:14,c:28272},{f:3,c:28288},28292,{f:2,c:28295},{f:5,c:28298},{f:5,c:28305},28311,{f:3,c:28313},28318,{f:2,c:28320},{f:2,c:28323},28326,{f:2,c:28328},{f:4,c:28331},28336,28339,28341,{f:2,c:28344},28348,{f:3,c:28350},28355,28358,{f:3,c:28360},28365,28368,28370,28374,{f:2,c:28376},{f:3,c:28379},28387,28391,{f:2,c:28394},{f:2,c:28397},{f:2,c:28400},28403,{f:2,c:28405},{f:5,c:28410},28416,{f:3,c:28419},{f:2,c:28423},{f:5,c:28426},{f:3,c:28432},{f:4,c:28438},{f:5,c:28443},28449,{f:4,c:28453},28462,28464,{f:2,c:28468},28471,{f:5,c:28473},28480,{f:4,c:28482},{f:3,c:28488},28492,{f:3,c:28494},{f:2,c:28498},{f:3,c:28501},{f:2,c:28506},28509,{f:3,c:28511},28515,28517,{f:6,c:28519},28529,28531,{f:2,c:28533},28537,28539,{f:2,c:28541},{f:3,c:28545},28549,{f:2,c:28554},{f:8,c:28559},{f:4,c:28568},{f:3,c:28573},{f:2,c:28578},{f:2,c:28581},28584,{f:4,c:28586},{f:2,c:28591},28594,{f:2,c:28596},{f:2,c:28599},{f:6,c:28602},{f:5,c:28612},{f:7,c:28618},{f:2,c:28627},{f:2,c:28630},{f:2,c:28633},{f:2,c:28636},{f:2,c:28642},{f:6,c:28645},{f:2,c:28652},{f:8,c:28658},28667,28669,{f:6,c:28671},{f:2,c:28679},28682,{f:3,c:28684},28688,{f:3,c:28690},{f:2,c:28694},28697,28700,28702,{f:2,c:28705},{f:3,c:28708},{f:7,c:28713},28721,{f:2,c:28723},{f:3,c:28726},{f:4,c:28730},{f:4,c:28735},{f:7,c:28741},{f:2,c:28749},28752,{f:3,c:28754},{f:2,c:28758},{f:4,c:28761},{f:4,c:28767},{f:2,c:28773},{f:3,c:28776},28782,{f:4,c:28785},28791,{f:3,c:28793},28797,{f:4,c:28801},{f:3,c:28806},{f:3,c:28811},{f:3,c:28815},28819,{f:2,c:28823},{f:2,c:28826},{f:13,c:28830},28848,28850,{f:3,c:28852},28858,{f:2,c:28862},{f:4,c:28868},28873,{f:4,c:28875},{f:8,c:28880},28890,{f:3,c:28892},{f:4,c:28896},28901,28906,28910,{f:4,c:28912},{f:2,c:28917},28920,{f:3,c:28922},{f:11,c:28926},{f:5,c:28939},{f:2,c:28945},28948,28951,{f:6,c:28955},{f:4,c:28962},{f:8,c:28967},{f:4,c:28978},{f:14,c:28983},{f:3,c:28998},29003,29005,{f:3,c:29007},{f:9,c:29011},29021,{f:3,c:29023},29027,29029,{f:2,c:29034},29037,{f:3,c:29039},{f:4,c:29044},29049,{f:2,c:29051},{f:6,c:29054},{f:5,c:29061},{f:4,c:29067},{f:2,c:29072},29075,{f:2,c:29077},{f:5,c:29082},{f:7,c:29089},{f:3,c:29097},{f:4,c:29101},29106,29108,{f:3,c:29110},{f:4,c:29114},{f:2,c:29119},29122,{f:4,c:29124},{f:5,c:29129},{f:3,c:29135},29139,{f:3,c:29142},{f:2,c:29146},{f:2,c:29149},{f:4,c:29153},{f:5,c:29160},{f:5,c:29167},{f:4,c:29173},{f:2,c:29178},29181,{f:7,c:29183},{f:6,c:29191},{f:2,c:29198},{f:10,c:29201},29212,{f:10,c:29214},29225,29227,{f:3,c:29229},{f:2,c:29235},29244,{f:7,c:29248},{f:3,c:29257},{f:4,c:29262},{f:3,c:29267},29271,29274,29276,29278,29280,{f:3,c:29283},29288,{f:4,c:29290},{f:2,c:29296},{f:2,c:29299},{f:3,c:29302},{f:2,c:29307},{f:2,c:29314},{f:5,c:29317},29324,29326,{f:2,c:29328},{f:3,c:29331},{f:8,c:29335},{f:2,c:29344},{f:4,c:29347},{f:4,c:29352},29358,{f:3,c:29361},29365,{f:6,c:29370},{f:3,c:29381},{f:4,c:29385},29391,29393,{f:4,c:29395},29400,{f:4,c:29402},29407,{f:6,c:29410},{f:2,c:29418},{f:2,c:29429},{f:3,c:29438},29442,{f:6,c:29444},{f:3,c:29451},{f:4,c:29455},29460,{f:3,c:29464},{f:2,c:29471},{f:2,c:29475},{f:3,c:29478},29485,{f:2,c:29487},{f:2,c:29490},29493,29498,{f:2,c:29500},29504,{f:2,c:29506},{f:7,c:29510},{f:2,c:29518},29521,{f:4,c:29523},{f:8,c:29528},{f:7,c:29537},29545,29550,29553,{f:2,c:29555},29558,29561,29565,29567,{f:3,c:29569},{f:2,c:29573},29576,29578,{f:2,c:29580},{f:2,c:29583},{f:4,c:29586},{f:4,c:29591},{f:3,c:29596},{f:2,c:29600},{f:6,c:29603},29610,{f:2,c:29612},29617,{f:3,c:29620},{f:2,c:29624},{f:4,c:29628},29633,{f:5,c:29635},{f:2,c:29643},29646,{f:7,c:29650},{f:4,c:29658},29663,{f:4,c:29665},29670,29672,{f:3,c:29674},{f:4,c:29678},{f:11,c:29683},{f:4,c:29695},29700,{f:2,c:29703},{f:4,c:29707},{f:9,c:29713},{f:6,c:29724},{f:2,c:29731},29735,29737,29739,29741,29743,{f:2,c:29745},{f:5,c:29751},{f:2,c:29757},29760,{f:9,c:29762},{f:9,c:29772},29782,29784,29789,{f:3,c:29792},{f:5,c:29796},{f:2,c:29803},{f:2,c:29806},{f:5,c:29809},{f:6,c:29816},29823,29826,{f:3,c:29828},29832,29834,{f:2,c:29836},29839,{f:11,c:29841},29853,{f:4,c:29855},{f:2,c:29860},{f:6,c:29866},{f:9,c:29873},{f:2,c:29883},{f:12,c:29886},{f:4,c:29899},{f:2,c:29904},29907,{f:5,c:29909},29915,29917,29919,29921,29925,{f:7,c:29927},{f:4,c:29936},29941,{f:7,c:29944},{f:4,c:29952},{f:7,c:29957},29966,29968,29970,{f:4,c:29972},29979,{f:2,c:29981},{f:3,c:29984},29988,{f:2,c:29990},29994,29998,30004,30006,30009,{f:2,c:30012},30015,{f:4,c:30017},{f:2,c:30022},{f:2,c:30025},30029,{f:4,c:30032},{f:4,c:30037},{f:4,c:30046},{f:2,c:30051},{f:3,c:30055},{f:6,c:30060},30067,30069,30071,{f:5,c:30074},{f:3,c:30080},{f:2,c:30084},{f:3,c:30088},{f:3,c:30092},30096,30099,30101,30104,{f:2,c:30107},30110,30114,{f:5,c:30118},30125,{f:2,c:30134},{f:2,c:30138},{f:3,c:30143},30150,{f:2,c:30155},{f:4,c:30158},30163,30167,30170,{f:2,c:30172},{f:3,c:30175},30181,30185,{f:4,c:30188},{f:2,c:30194},{f:4,c:30197},{f:2,c:30202},{f:2,c:30205},30212,{f:4,c:30214},{f:2,c:30222},{f:4,c:30225},30230,30234,{f:2,c:30236},30243,30248,30252,{f:2,c:30254},{f:2,c:30257},{f:2,c:30262},{f:2,c:30265},30269,30273,{f:2,c:30276},30280,{f:2,c:30282},{f:6,c:30286},30293,30295,{f:3,c:30297},30301,{f:2,c:30304},30310,30312,30314,{f:3,c:30323},[12136,30326],30327,{f:2,c:30329},{f:3,c:30335},30339,30341,{f:2,c:30345},{f:2,c:30348},{f:2,c:30351},30354,{f:2,c:30356},{f:2,c:30359},{f:9,c:30363},{f:9,c:30373},{f:2,c:30383},30387,{f:3,c:30389},30393,{f:4,c:30395},{f:2,c:30400},{f:2,c:30403},30407,30409,{f:2,c:30411},30419,30421,{f:2,c:30425},{f:2,c:30428},30432,30434,30438,{f:6,c:30440},30448,30451,{f:3,c:30453},{f:2,c:30458},30461,{f:2,c:30463},{f:2,c:30466},{f:2,c:30469},30474,30476,{f:11,c:30478},{f:4,c:30491},30497,{f:3,c:30499},30503,{f:3,c:30506},30510,{f:5,c:30512},30521,30523,{f:3,c:30525},30530,{f:3,c:30532},{f:7,c:30536},{f:8,c:30546},{f:2,c:30556},{f:2,c:30559},30564,30567,{f:2,c:30569},{f:12,c:30573},{f:3,c:30586},{f:3,c:30593},{f:6,c:30598},{f:2,c:30607},{f:5,c:30611},{f:5,c:30617},30625,{f:2,c:30627},30630,30632,30635,{f:2,c:30638},{f:2,c:30641},30644,{f:5,c:30646},30654,{f:7,c:30656},{f:5,c:30664},{f:9,c:30670},{f:2,c:30680},{f:5,c:30685},30692,30694,30696,30698,{f:3,c:30704},{f:2,c:30708},30711,{f:4,c:30713},{f:6,c:30723},{f:2,c:30730},{f:3,c:30734},30739,30741,30745,30747,30750,{f:3,c:30752},30756,30760,{f:2,c:30762},{f:2,c:30766},{f:3,c:30769},{f:2,c:30773},30781,30783,{f:2,c:30785},30788,30790,{f:4,c:30792},30797,30799,30801,{f:2,c:30803},{f:5,c:30808},{f:6,c:30814},{f:3,c:30821},30825,{f:7,c:30832},{f:4,c:30840},{f:10,c:30845},30856,{f:2,c:30858},{f:2,c:30863},30866,{f:3,c:30868},30873,{f:2,c:30877},30880,30882,30884,30886,30888,{f:3,c:30890},{f:2,c:30894},{f:3,c:30901},30907,30909,{f:2,c:30911},{f:3,c:30914},{f:3,c:30918},{f:4,c:30924},{f:3,c:30929},{f:3,c:30934},{f:8,c:30939},{f:3,c:30948},{f:3,c:30953},{f:2,c:30957},{f:2,c:30960},30963,{f:2,c:30965},{f:2,c:30968},{f:2,c:30971},{f:3,c:30974},{f:3,c:30978},{f:8,c:30982},{f:4,c:30991},{f:5,c:30996},{f:4,c:31002},{f:5,c:31007},31013,{f:3,c:31015},{f:4,c:31021},{f:2,c:31026},{f:5,c:31029},31037,31039,{f:4,c:31042},31047,{f:9,c:31050},{f:2,c:31060},{f:2,c:31064},31073,{f:2,c:31075},31078,{f:4,c:31081},31086,{f:7,c:31088},31097,{f:5,c:31099},{f:2,c:31106},{f:4,c:31110},{f:2,c:31115},{f:10,c:31120},{f:11,c:31131},{f:2,c:31144},{f:3,c:31147},31151,31154,{f:4,c:31156},[12145,31160],31164,31167,31170,{f:2,c:31172},{f:2,c:31175},31178,31180,{f:3,c:31182},{f:2,c:31187},{f:2,c:31190},{f:6,c:31193},{f:3,c:31200},31205,31208,31210,31212,31214,{f:7,c:31217},{f:2,c:31225},31228,{f:2,c:31230},31233,{f:2,c:31236},{f:4,c:31239},31244,{f:5,c:31247},{f:2,c:31253},{f:2,c:31256},{f:3,c:31259},31263,{f:2,c:31265},{f:10,c:31268},{f:2,c:31279},31282,{f:3,c:31284},31288,31290,31294,{f:5,c:31297},{f:5,c:31303},{f:2,c:31311},{f:5,c:31314},{f:9,c:31320},{f:6,c:31331},31338,{f:4,c:31340},{f:3,c:31345},31349,{f:4,c:31355},31362,31365,31367,{f:4,c:31369},{f:3,c:31374},{f:2,c:31379},{f:3,c:31385},31390,{f:4,c:31393},31399,31403,{f:4,c:31407},{f:2,c:31412},{f:3,c:31415},{f:4,c:31419},{f:4,c:31424},31430,31433,{f:10,c:31436},{f:2,c:31447},{f:4,c:31450},{f:2,c:31457},31460,{f:3,c:31463},{f:2,c:31467},31470,{f:6,c:31472},{f:2,c:31479},{f:2,c:31483},31486,{f:3,c:31488},31493,31495,31497,{f:3,c:31500},31504,{f:2,c:31506},{f:3,c:31510},31514,{f:2,c:31516},31519,{f:3,c:31521},31527,31529,31533,{f:2,c:31535},31538,{f:4,c:31540},31545,31547,31549,{f:6,c:31551},31560,31562,{f:2,c:31565},31571,31573,31575,31577,31580,{f:2,c:31582},31585,{f:4,c:31587},{f:6,c:31592},{f:2,c:31599},{f:2,c:31603},31606,31608,31610,{f:2,c:31612},31615,{f:4,c:31617},{f:5,c:31622},31628,{f:2,c:31630},{f:3,c:31633},31638,{f:4,c:31640},{f:3,c:31646},{f:3,c:31651},{f:3,c:31662},{f:2,c:31666},{f:3,c:31669},{f:7,c:31673},{f:2,c:31682},31685,31688,31690,{f:4,c:31693},31698,{f:5,c:31700},{f:2,c:31707},{f:3,c:31710},{f:2,c:31714},{f:2,c:31719},{f:3,c:31723},{f:2,c:31727},31730,{f:3,c:31732},{f:4,c:31736},31741,31743,{f:6,c:31745},{f:3,c:31752},31758,{f:6,c:31760},{f:7,c:31767},31776,31778,{f:2,c:31780},{f:2,c:31784},{f:12,c:31788},{f:4,c:31801},31810,{f:8,c:31812},{f:14,c:31822},{f:2,c:31837},{f:3,c:31841},{f:4,c:31845},31851,31853,{f:3,c:31855},{f:6,c:31861},{f:11,c:31870},{f:7,c:31882},{f:2,c:31891},31894,{f:3,c:31897},{f:2,c:31904},31907,{f:4,c:31910},{f:3,c:31915},{f:2,c:31919},{f:5,c:31924},{f:2,c:31930},{f:2,c:31935},{f:3,c:31938},31942,31945,31947,{f:7,c:31950},31960,{f:2,c:31962},{f:6,c:31969},{f:6,c:31977},31985,31987,31989,31991,31994,{f:2,c:31996},31999,32001,32003,32012,{f:2,c:32014},{f:2,c:32017},32022,32024,{f:3,c:32029},{f:4,c:32035},{f:3,c:32040},{f:3,c:32044},{f:5,c:32052},32059,{f:2,c:32061},32065,32067,32069,{f:7,c:32071},32079,{f:12,c:32081},{f:2,c:32095},{f:3,c:32099},32103,{f:5,c:32105},{f:2,c:32111},{f:2,c:32116},32120,{f:7,c:32122},32130,{f:2,c:32132},32135,{f:5,c:32138},{f:3,c:32144},{f:8,c:32148},32157,{f:3,c:32159},{f:2,c:32164},{f:4,c:32167},32175,{f:3,c:32181},32188,{f:4,c:32192},{f:2,c:32197},{f:2,c:32200},{f:5,c:32204},32211,{f:2,c:32213},{f:3,c:32218},32223,32226,{f:2,c:32228},32231,{f:2,c:32234},{f:2,c:32237},32240,32243,32245,{f:2,c:32247},32250,{f:12,c:32252},{f:4,c:32268},{f:9,c:32274},32284,{f:3,c:32288},{f:3,c:32292},{f:3,c:32296},32300,{f:2,c:32303},32307,32312,32314,32316,{f:2,c:32319},{f:3,c:32322},{f:10,c:32328},32339,{f:4,c:32342},{f:3,c:32347},{f:3,c:32351},{f:6,c:32355},32364,{f:2,c:32369},{f:5,c:32372},{f:2,c:32378},{f:3,c:32383},{f:5,c:32387},32393,32395,32398,{f:3,c:32400},32405,32407,{f:2,c:32409},{f:2,c:32413},32430,32436,{f:2,c:32443},32470,32484,32492,32505,32522,32528,32542,32567,32569,{f:7,c:32571},32579,{f:6,c:32582},32589,32591,{f:2,c:32594},32598,32601,{f:4,c:32603},32608,{f:5,c:32611},{f:3,c:32619},32623,32627,{f:2,c:32629},32632,{f:4,c:32634},{f:2,c:32639},{f:3,c:32642},32647,32649,32651,32653,{f:5,c:32655},{f:5,c:32661},{f:2,c:32667},32672,{f:2,c:32674},32678,32680,{f:5,c:32682},32689,{f:5,c:32691},{f:2,c:32698},32702,32704,{f:3,c:32706},{f:4,c:32710},32715,32717,{f:3,c:32719},32723,{f:2,c:32726},{f:6,c:32729},{f:3,c:32738},{f:2,c:32743},{f:4,c:32746},32751,32754,{f:5,c:32756},32762,{f:3,c:32765},32770,{f:4,c:32775},{f:2,c:32782},32785,32787,{f:2,c:32794},{f:3,c:32797},32801,{f:2,c:32803},32811,32813,{f:2,c:32815},32818,32820,{f:2,c:32825},32828,32830,{f:2,c:32832},{f:2,c:32836},{f:3,c:32839},{f:4,c:32846},32851,32853,32855,32857,{f:3,c:32859},{f:10,c:32863},{f:4,c:32875},32884,32888,{f:3,c:32890},{f:2,c:32897},32904,32906,{f:6,c:32909},{f:2,c:32916},32919,32921,32926,32931,{f:3,c:32934},32940,32944,32947,{f:2,c:32949},{f:2,c:32952},32955,32965,{f:5,c:32967},{f:7,c:32975},32984,{f:2,c:32991},{f:2,c:32994},32998,33006,33013,33015,33017,33019,{f:4,c:33022},{f:2,c:33027},{f:2,c:33031},{f:2,c:33035},33045,33047,33049,{f:2,c:33052},{f:13,c:33055},{f:2,c:33069},33072,{f:3,c:33075},33079,{f:4,c:33082},{f:7,c:33087},33095,33097,33101,33103,33106,{f:2,c:33111},{f:5,c:33115},{f:3,c:33122},33128,33130,33132,33135,{f:2,c:33138},{f:3,c:33141},33153,{f:5,c:33155},33161,{f:4,c:33163},33168,{f:6,c:33170},33177,{f:2,c:33182},{f:2,c:33185},{f:2,c:33188},33191,{f:8,c:33195},{f:6,c:33204},33212,{f:2,c:33220},{f:2,c:33223},33227,33230,{f:8,c:33232},33241,{f:4,c:33243},{f:2,c:33249},{f:3,c:33252},33257,33259,{f:5,c:33262},{f:5,c:33269},33277,33279,33283,33291,{f:2,c:33294},33297,33299,{f:6,c:33301},33309,33312,{f:4,c:33316},33321,33326,33330,33338,{f:2,c:33340},{f:5,c:33343},{f:2,c:33349},33352,33354,{f:3,c:33356},{f:8,c:33360},{f:4,c:33371},{f:4,c:33376},33381,33383,{f:2,c:33385},{f:2,c:33388},{f:2,c:33397},[12171,33400],{f:2,c:33403},{f:2,c:33408},33411,{f:3,c:33413},33417,33420,33424,{f:4,c:33427},{f:2,c:33434},33438,33440,{f:2,c:33442},33447,33458,{f:2,c:33461},33466,33468,{f:2,c:33471},{f:2,c:33474},{f:2,c:33477},33481,33488,33494,{f:2,c:33497},33501,33506,{f:3,c:33512},{f:3,c:33516},33520,{f:2,c:33522},{f:2,c:33525},33528,33530,{f:5,c:33532},{f:2,c:33546},33549,33552,{f:2,c:33554},33558,{f:2,c:33560},{f:10,c:33565},{f:2,c:33577},33582,33584,33586,33591,33595,{f:3,c:33597},{f:2,c:33601},{f:2,c:33604},33608,{f:5,c:33610},33619,{f:5,c:33621},33629,33634,{f:7,c:33648},{f:2,c:33657},{f:7,c:33662},{f:2,c:33671},{f:3,c:33675},{f:3,c:33679},{f:2,c:33684},33687,{f:2,c:33689},33693,33695,33697,{f:4,c:33699},{f:4,c:33708},33717,33723,{f:2,c:33726},{f:3,c:33730},33734,{f:2,c:33736},33739,{f:2,c:33741},{f:4,c:33744},33749,33751,{f:3,c:33753},33758,{f:3,c:33762},{f:3,c:33766},{f:4,c:33771},{f:5,c:33779},{f:3,c:33786},{f:3,c:33790},33794,33797,{f:2,c:33800},33808,{f:6,c:33810},{f:3,c:33817},{f:6,c:33822},{f:3,c:33833},{f:4,c:33837},{f:3,c:33842},{f:2,c:33846},{f:3,c:33849},{f:8,c:33854},{f:2,c:33863},{f:7,c:33866},{f:4,c:33875},33880,{f:4,c:33885},33890,33893,{f:2,c:33895},33898,33902,33904,33906,33908,33913,{f:7,c:33915},{f:4,c:33923},33930,33933,{f:4,c:33935},{f:2,c:33941},33944,{f:2,c:33946},{f:4,c:33949},{f:13,c:33954},{f:2,c:33968},33971,{f:3,c:33973},33979,33982,{f:2,c:33986},{f:4,c:33989},33996,{f:2,c:33998},34002,{f:2,c:34004},{f:6,c:34007},34014,{f:2,c:34017},34020,{f:5,c:34023},34029,{f:11,c:34033},34046,{f:12,c:34048},{f:4,c:34061},34066,{f:2,c:34069},{f:2,c:34072},{f:3,c:34075},34080,34082,{f:2,c:34084},{f:4,c:34087},{f:9,c:34094},{f:3,c:34110},34114,{f:2,c:34116},34119,{f:3,c:34123},{f:3,c:34127},34132,34135,{f:4,c:34138},{f:3,c:34143},34147,{f:3,c:34149},{f:2,c:34155},{f:4,c:34158},34163,{f:2,c:34165},34168,{f:2,c:34172},{f:5,c:34175},34182,34185,34187,{f:2,c:34189},34192,{f:2,c:34194},{f:6,c:34197},{f:2,c:34205},{f:4,c:34208},34213,34215,{f:3,c:34219},{f:6,c:34225},34232,{f:6,c:34235},{f:7,c:34242},{f:3,c:34250},{f:2,c:34257},34260,{f:6,c:34262},{f:6,c:34270},{f:3,c:34278},{f:9,c:34283},34293,{f:2,c:34295},{f:3,c:34300},{f:4,c:34304},{f:3,c:34312},{f:5,c:34316},{f:4,c:34322},{f:3,c:34327},{f:3,c:34331},{f:3,c:34335},{f:4,c:34339},34344,{f:3,c:34346},{f:10,c:34350},34361,34363,{f:2,c:34365},{f:13,c:34368},{f:2,c:34386},{f:4,c:34390},34395,34397,{f:2,c:34400},{f:4,c:34403},{f:3,c:34408},34413,{f:2,c:34415},{f:7,c:34418},{f:7,c:34435},{f:5,c:34446},34452,{f:6,c:34454},{f:5,c:34462},{f:2,c:34469},34475,{f:2,c:34477},{f:2,c:34482},{f:3,c:34487},{f:5,c:34491},{f:3,c:34497},34501,34504,{f:2,c:34508},{f:2,c:34514},{f:3,c:34517},34522,{f:2,c:34524},{f:4,c:34528},{f:4,c:34533},{f:3,c:34538},34543,{f:3,c:34549},{f:3,c:34555},34559,34561,{f:2,c:34564},{f:2,c:34571},{f:4,c:34574},34580,34582,34585,34587,34589,{f:2,c:34591},34596,{f:3,c:34598},{f:4,c:34602},{f:2,c:34607},{f:2,c:34610},{f:2,c:34613},{f:3,c:34616},{f:2,c:34620},{f:7,c:34624},{f:2,c:34634},34637,{f:4,c:34639},34644,34646,34648,{f:6,c:34650},{f:2,c:34657},{f:7,c:34663},34671,{f:3,c:34673},34677,34679,{f:2,c:34681},{f:3,c:34687},{f:2,c:34694},{f:2,c:34697},34700,{f:5,c:34702},{f:3,c:34708},{f:6,c:34712},{f:2,c:34720},{f:5,c:34723},{f:2,c:34729},34734,{f:3,c:34736},34740,{f:4,c:34742},34748,{f:2,c:34750},{f:3,c:34753},34757,34759,34761,{f:2,c:34764},{f:2,c:34767},{f:7,c:34772},{f:4,c:34780},{f:2,c:34785},34788,{f:4,c:34790},34795,34797,{f:2,c:34800},{f:3,c:34803},{f:2,c:34807},34810,{f:2,c:34812},{f:4,c:34815},34820,{f:3,c:34823},{f:5,c:34827},34834,34836,{f:4,c:34839},{f:3,c:34844},34848,{f:13,c:34852},{f:3,c:34867},{f:2,c:34871},34874,{f:3,c:34877},{f:3,c:34881},{f:3,c:34887},34891,{f:5,c:34894},{f:2,c:34901},34904,34906,34908,{f:3,c:34910},{f:2,c:34918},34922,34925,34927,34929,{f:4,c:34931},34936,{f:3,c:34938},34944,34947,{f:2,c:34950},{f:2,c:34953},34956,{f:4,c:34958},{f:3,c:34963},{f:5,c:34967},{f:5,c:34973},34979,{f:6,c:34981},34988,{f:3,c:34990},{f:5,c:34994},{f:4,c:35e3},{f:4,c:35005},{f:2,c:35011},{f:2,c:35015},{f:3,c:35019},{f:2,c:35024},35027,{f:2,c:35030},{f:2,c:35034},35038,{f:2,c:35040},{f:2,c:35046},{f:7,c:35049},35058,{f:3,c:35061},{f:2,c:35066},{f:3,c:35071},{f:4,c:35075},{f:2,c:35080},{f:5,c:35083},35089,{f:5,c:35092},{f:5,c:35100},{f:3,c:35106},{f:4,c:35110},{f:4,c:35116},35121,35125,35127,{f:2,c:35129},{f:5,c:35132},{f:2,c:35138},{f:2,c:35141},{f:14,c:35144},{f:6,c:35159},{f:3,c:35169},35173,{f:3,c:35175},35179,{f:2,c:35181},{f:2,c:35184},{f:8,c:35187},{f:2,c:35196},[12177,35198],35200,35202,{f:2,c:35204},{f:4,c:35207},{f:3,c:35212},{f:3,c:35216},{f:2,c:35220},35223,{f:8,c:35225},{f:4,c:35234},{f:3,c:35239},35243,{f:2,c:35245},{f:2,c:35248},{f:4,c:35251},{f:2,c:35256},{f:2,c:35259},35262,35267,35277,{f:3,c:35283},{f:3,c:35287},35291,35293,{f:4,c:35295},35300,{f:4,c:35303},{f:3,c:35308},{f:3,c:35312},35317,35319,{f:7,c:35321},{f:3,c:35332},35337,35339,35341,35343,{f:2,c:35345},35348,35351,{f:2,c:35353},35356,35358,{f:3,c:35360},35364,{f:4,c:35366},{f:2,c:35371},{f:3,c:35374},{f:2,c:35378},35381,{f:3,c:35383},{f:3,c:35387},{f:2,c:35391},{f:4,c:35394},35399,{f:5,c:35401},35407,35409,35411,{f:2,c:35414},{f:2,c:35417},{f:2,c:35420},{f:2,c:35423},{f:2,c:35428},{f:2,c:35431},35434,35439,35444,{f:3,c:35446},{f:2,c:35450},{f:2,c:35453},{f:4,c:35456},35464,{f:2,c:35467},{f:3,c:35470},35476,{f:2,c:35478},35481,{f:3,c:35483},35487,35490,35495,{f:3,c:35497},{f:3,c:35501},35505,{f:3,c:35507},{f:2,c:35511},{f:2,c:35514},{f:2,c:35517},{f:2,c:35520},35523,{f:2,c:35525},35528,35530,35532,35534,35536,{f:3,c:35539},{f:3,c:35544},35549,{f:3,c:35551},35555,35557,{f:3,c:35560},35564,{f:2,c:35567},35570,{f:2,c:35572},35577,35579,35581,35583,35587,35590,{f:2,c:35592},{f:3,c:35595},35599,{f:3,c:35601},35605,35608,35612,{f:3,c:35614},{f:4,c:35618},35623,{f:2,c:35625},{f:5,c:35630},{f:5,c:35636},{f:4,c:35642},{f:10,c:35647},{f:4,c:35658},{f:6,c:35664},35671,35675,{f:9,c:35677},{f:4,c:35687},{f:2,c:35693},{f:3,c:35697},{f:2,c:35701},{f:5,c:35704},{f:2,c:35710},{f:9,c:35713},{f:3,c:35723},{f:3,c:35727},35732,{f:5,c:35735},35741,35743,35756,35761,35771,35783,35792,35818,35849,35870,{f:9,c:35896},{f:4,c:35906},{f:2,c:35914},{f:3,c:35917},{f:4,c:35921},{f:4,c:35926},{f:6,c:35931},{f:7,c:35939},{f:7,c:35948},{f:4,c:35956},{f:7,c:35963},{f:2,c:35971},{f:3,c:35974},35979,{f:7,c:35981},{f:3,c:35989},{f:4,c:35993},35999,{f:4,c:36003},{f:2,c:36013},36017,36021,36025,36030,36038,36041,{f:6,c:36043},36052,{f:4,c:36054},36059,36061,36063,36069,{f:2,c:36072},{f:6,c:36078},{f:5,c:36085},{f:5,c:36095},{f:2,c:36102},36105,36108,36110,{f:5,c:36113},{f:4,c:36119},36128,{f:2,c:36177},36183,36191,36197,{f:3,c:36200},36204,{f:2,c:36206},{f:2,c:36209},{f:9,c:36216},{f:2,c:36226},{f:4,c:36230},{f:5,c:36236},{f:2,c:36242},{f:3,c:36246},{f:5,c:36250},{f:3,c:36256},{f:4,c:36260},{f:8,c:36265},{f:2,c:36278},36281,36283,36285,{f:3,c:36288},36293,{f:4,c:36295},36301,36304,{f:4,c:36306},{f:2,c:36312},36316,{f:3,c:36320},{f:3,c:36325},36329,{f:2,c:36333},{f:3,c:36336},36340,36342,36348,{f:7,c:36350},{f:3,c:36358},36363,{f:2,c:36365},{f:3,c:36369},{f:8,c:36373},{f:2,c:36384},{f:5,c:36388},36395,36397,36400,{f:2,c:36402},{f:3,c:36406},{f:2,c:36411},{f:2,c:36414},36419,{f:2,c:36421},{f:4,c:36429},{f:2,c:36435},{f:3,c:36438},{f:9,c:36442},{f:2,c:36452},{f:2,c:36455},{f:2,c:36458},36462,36465,36467,36469,{f:3,c:36471},36475,{f:2,c:36477},36480,{f:3,c:36482},36486,36488,36492,36494,{f:5,c:36501},36507,36509,{f:2,c:36511},{f:3,c:36514},{f:3,c:36519},{f:2,c:36525},{f:2,c:36528},{f:7,c:36531},{f:5,c:36539},{f:9,c:36545},{f:3,c:36559},36563,{f:6,c:36565},{f:3,c:36572},{f:4,c:36576},{f:6,c:36581},{f:6,c:36588},{f:5,c:36595},36605,{f:4,c:36607},36612,36614,36616,{f:7,c:36619},36627,{f:5,c:36630},{f:5,c:36640},{f:2,c:36647},{f:4,c:36651},{f:3,c:36656},{f:4,c:36660},{f:2,c:36665},{f:2,c:36668},{f:2,c:36672},36675,{f:2,c:36679},{f:3,c:36682},{f:5,c:36687},{f:10,c:36693},36704,36707,36709,36714,36736,36748,36754,36765,{f:3,c:36768},{f:2,c:36772},36775,36778,36780,{f:2,c:36787},[12193,36789],{f:2,c:36791},{f:3,c:36794},{f:2,c:36799},36803,36806,{f:5,c:36809},36815,36818,{f:2,c:36822},36826,{f:2,c:36832},36835,36839,36844,36847,{f:2,c:36849},{f:2,c:36853},{f:3,c:36858},{f:2,c:36862},{f:2,c:36871},36876,36878,36883,36888,36892,{f:2,c:36900},{f:6,c:36903},{f:2,c:36912},{f:2,c:36915},36919,{f:2,c:36921},36925,{f:2,c:36927},36931,{f:2,c:36933},{f:3,c:36936},36940,36950,{f:2,c:36953},36957,36959,36961,36964,{f:2,c:36966},{f:3,c:36970},{f:3,c:36975},36979,36982,36985,36987,36990,{f:2,c:36997},37001,{f:3,c:37004},37010,37012,37014,37016,37018,37020,{f:3,c:37022},{f:2,c:37028},{f:3,c:37031},37035,37037,37042,37047,{f:2,c:37052},{f:2,c:37055},{f:2,c:37058},37062,{f:2,c:37064},{f:3,c:37067},37074,{f:3,c:37076},{f:3,c:37080},37086,37088,{f:3,c:37091},{f:2,c:37097},37100,37102,{f:4,c:37104},{f:2,c:37110},{f:4,c:37113},{f:3,c:37119},37123,37125,{f:2,c:37127},{f:8,c:37130},37139,37141,{f:2,c:37143},{f:4,c:37146},{f:3,c:37151},{f:3,c:37156},{f:5,c:37160},37166,37171,37173,{f:2,c:37175},{f:8,c:37179},{f:2,c:37188},37191,37201,{f:4,c:37203},{f:2,c:37208},{f:2,c:37211},{f:2,c:37215},{f:3,c:37222},37227,37229,37235,{f:3,c:37242},{f:5,c:37248},37254,37256,37258,{f:2,c:37262},{f:3,c:37267},{f:3,c:37271},{f:5,c:37277},{f:6,c:37284},{f:4,c:37296},{f:4,c:37302},{f:5,c:37307},37314,37316,[12196,37318],37320,37328,37334,{f:2,c:37338},{f:5,c:37342},{f:2,c:37349},37352,{f:11,c:37354},37366,37368,{f:5,c:37371},{f:2,c:37378},{f:3,c:37381},{f:3,c:37386},37391,{f:2,c:37394},{f:8,c:37398},{f:4,c:37407},37412,{f:6,c:37416},37423,{f:2,c:37425},{f:2,c:37429},{f:2,c:37435},{f:4,c:37441},{f:2,c:37446},{f:3,c:37450},{f:3,c:37454},{f:3,c:37458},37462,{f:2,c:37464},{f:2,c:37468},{f:3,c:37471},{f:3,c:37475},{f:5,c:37479},{f:6,c:37486},{f:3,c:37493},37497,{f:3,c:37500},{f:2,c:37505},37508,{f:8,c:37510},{f:2,c:37519},37522,{f:2,c:37524},37527,37529,37531,{f:3,c:37533},{f:2,c:37537},37540,37543,37549,{f:2,c:37551},{f:5,c:37554},37560,37562,{f:4,c:37565},37570,37572,37574,{f:3,c:37577},{f:2,c:37581},{f:2,c:37584},{f:10,c:37587},37598,{f:3,c:37600},37607,37609,{f:2,c:37611},{f:4,c:37618},37623,{f:3,c:37625},{f:4,c:37629},{f:4,c:37634},{f:7,c:37641},37649,{f:2,c:37651},{f:2,c:37654},{f:3,c:37660},37665,{f:3,c:37667},37671,{f:2,c:37673},{f:2,c:37676},{f:2,c:37680},{f:2,c:37684},37687,{f:5,c:37689},37695,37698,{f:2,c:37700},{f:3,c:37704},37708,{f:6,c:37710},{f:3,c:37717},{f:2,c:37721},{f:8,c:37724},{f:3,c:37734},37739,{f:3,c:37741},{f:4,c:37745},{f:3,c:37751},{f:3,c:37755},{f:3,c:37759},37763,{f:2,c:37765},{f:2,c:37768},{f:4,c:37771},{f:6,c:37776},37783,{f:9,c:37785},{f:2,c:37796},37800,37803,37805,37807,{f:2,c:37809},37812,{f:2,c:37814},{f:6,c:37817},{f:3,c:37824},{f:3,c:37828},37833,37835,{f:3,c:37838},{f:4,c:37842},{f:3,c:37849},37856,37859,{f:3,c:37861},{f:12,c:37865},37878,37880,{f:9,c:37882},{f:7,c:37892},{f:4,c:37900},37905,{f:3,c:37909},{f:3,c:37914},{f:2,c:37918},{f:5,c:37921},{f:5,c:37929},{f:3,c:37935},37940,{f:2,c:37942},37945,{f:3,c:37947},{f:4,c:37952},{f:5,c:37957},37963,{f:5,c:37965},37971,{f:11,c:37973},{f:2,c:37985},37988,{f:5,c:37990},37996,{f:2,c:37998},38001,{f:4,c:38003},38008,{f:2,c:38010},{f:5,c:38016},38033,38038,38040,38087,38095,{f:2,c:38099},38106,38118,38139,38172,38176,38183,38195,38205,38211,38216,38219,38229,38234,38240,38254,{f:2,c:38260},{f:7,c:38264},38273,{f:2,c:38276},{f:2,c:38279},38282,38285,38288,38290,{f:3,c:38293},{f:8,c:38297},38306,{f:2,c:38310},38314,{f:4,c:38318},{f:3,c:38323},{f:2,c:38327},38330,{f:3,c:38336},{f:2,c:38340},38343,38345,{f:3,c:38349},{f:3,c:38353},{f:5,c:38359},38365,{f:2,c:38367},{f:2,c:38371},{f:2,c:38374},38380,38399,38407,38419,38424,38427,38430,38432,{f:7,c:38435},{f:3,c:38443},{f:2,c:38447},{f:4,c:38455},38462,38465,38467,38474,{f:2,c:38478},{f:3,c:38481},{f:2,c:38486},{f:2,c:38489},38492,38494,38496,{f:2,c:38501},38507,{f:3,c:38509},38513,{f:4,c:38521},{f:7,c:38526},38535,38537,38540,{f:3,c:38545},38550,38554,{f:10,c:38557},38569,{f:5,c:38571},38578,38581,38583,38586,38591,{f:2,c:38594},38600,{f:2,c:38602},{f:2,c:38608},{f:2,c:38611},{f:2,c:38615},38618,{f:3,c:38621},38625,{f:4,c:38628},{f:4,c:38635},{f:2,c:38640},{f:2,c:38644},38648,38650,{f:2,c:38652},38655,{f:2,c:38658},38661,{f:3,c:38666},{f:3,c:38672},{f:2,c:38676},{f:5,c:38679},38685,{f:8,c:38687},{f:2,c:38696},{f:2,c:38699},{f:2,c:38702},38705,{f:5,c:38707},{f:3,c:38714},{f:3,c:38719},38723,{f:3,c:38725},{f:8,c:38729},[12205,38737],{f:2,c:38740},{f:2,c:38743},{f:2,c:38748},38751,{f:2,c:38755},{f:2,c:38758},{f:9,c:38762},38773,{f:5,c:38775},{f:8,c:38781},{f:5,c:38790},38796,38798,38800,38803,{f:3,c:38805},{f:7,c:38809},{f:2,c:38817},{f:2,c:38820},{f:4,c:38823},38828,38830,{f:2,c:38832},38835,{f:8,c:38837},{f:5,c:38846},{f:2,c:38852},{f:2,c:38855},38858,{f:6,c:38861},{f:5,c:38868},{f:2,c:38874},38877,{f:7,c:38879},38888,{f:5,c:38894},38900,{f:8,c:38903},38912,38916,38921,38923,38925,{f:3,c:38932},{f:3,c:38937},{f:4,c:38941},{f:2,c:38946},38949,{f:6,c:38951},{f:2,c:38958},{f:6,c:38961},{f:2,c:38969},38972,{f:8,c:38974},{f:5,c:38983},{f:4,c:38991},{f:3,c:38997},39002,{f:2,c:39004},{f:3,c:39007},{f:2,c:39011},39014,{f:3,c:39016},{f:2,c:39021},39026,39051,39054,39058,39061,39065,39075,{f:5,c:39081},39088,39090,{f:2,c:39092},{f:5,c:39095},{f:7,c:39101},39109,39111,{f:5,c:39113},{f:2,c:39119},39124,{f:2,c:39126},{f:2,c:39132},39137,{f:4,c:39139},39148,39150,{f:2,c:39152},39155,{f:7,c:39157},{f:4,c:39167},39172,{f:3,c:39174},39179,{f:2,c:39182},{f:4,c:39188},{f:2,c:39193},{f:2,c:39196},{f:2,c:39199},{f:6,c:39202},{f:5,c:39209},{f:4,c:39215},{f:3,c:39220},{f:4,c:39224},39229,{f:3,c:39232},39236,{f:2,c:39238},{f:4,c:39245},39251,39254,{f:4,c:39256},39261,{f:3,c:39263},39268,39270,39283,{f:2,c:39288},39291,39294,{f:2,c:39298},39305,39308,39310,{f:11,c:39322},{f:2,c:39334},{f:3,c:39337},{f:2,c:39343},39346,{f:12,c:39349},{f:14,c:39362},39379,{f:2,c:39382},39386,39388,39390,39392,{f:10,c:39395},{f:3,c:39406},{f:13,c:39410},39424,{f:3,c:39426},{f:7,c:39430},{f:6,c:39440},{f:2,c:39447},{f:17,c:39450},39468,39471,{f:5,c:39473},{f:5,c:39481},39487,{f:4,c:39494},{f:2,c:39499},39502,{f:5,c:39504},39510,{f:2,c:39512},{f:3,c:39516},{f:2,c:39520},39523,{f:4,c:39526},39531,39538,39555,39561,{f:2,c:39565},{f:2,c:39572},39577,39590,{f:6,c:39593},{f:4,c:39602},39609,39611,{f:3,c:39613},{f:2,c:39619},{f:5,c:39622},{f:2,c:39629},39632,39639,{f:6,c:39641},39648,{f:4,c:39650},{f:4,c:39655},39660,{f:9,c:39664},39674,{f:7,c:39676},{f:2,c:39684},39687,{f:4,c:39689},39694,{f:3,c:39696},{f:6,c:39700},{f:4,c:39707},{f:2,c:39712},39716,39718,39720,{f:4,c:39722},39728,{f:8,c:39731},{f:4,c:39741},39750,{f:3,c:39754},39760,{f:2,c:39762},{f:3,c:39765},39769,{f:20,c:39771},{f:4,c:39792},{f:2,c:39797},{f:9,c:39800},39810,{f:10,c:39812},39823,{f:7,c:39827},{f:2,c:39835},{f:11,c:39839},39852,{f:17,c:39855},{f:5,c:39874},39880,{f:9,c:39883},39893,{f:4,c:39895},39900,{f:3,c:39902},39907,{f:2,c:39909},39913,{f:4,c:39916},{f:3,c:39921},{f:8,c:39925},39934,{f:8,c:39936},{f:3,c:39946},{f:2,c:39950},39953,{f:12,c:39956},{f:2,c:39969},39972,{f:2,c:39974},{f:3,c:39978},{f:3,c:39982},39988,39990,39992,39994,{f:2,c:39996},{f:6,c:39999},{f:2,c:40006},{f:8,c:40010},40019,40021,{f:4,c:40025},40030,{f:7,c:40032},{f:5,c:40040},{f:10,c:40046},40057,40059,{f:2,c:40061},40064,{f:2,c:40067},{f:2,c:40073},40076,40079,40083,{f:4,c:40086},40093,40106,40108,40111,40121,{f:5,c:40126},{f:2,c:40136},{f:2,c:40145},{f:2,c:40154},{f:2,c:40160},{f:2,c:40163},{f:3,c:40166},{f:2,c:40170},{f:6,c:40173},40181,{f:15,c:40183},40200,{f:11,c:40202},{f:5,c:40214},40220,40222,{f:3,c:40224},{f:2,c:40228},40231,{f:6,c:40233},{f:10,c:40241},{f:3,c:40252},{f:2,c:40256},{f:14,c:40259},{f:8,c:40276},{f:2,c:40286},{f:8,c:40290},40299,{f:2,c:40301},{f:2,c:40304},{f:20,c:40307},40328,{f:9,c:40330},{f:4,c:40340},40345,{f:10,c:40347},{f:3,c:40358},{f:5,c:40362},{f:4,c:40368},{f:6,c:40373},{f:3,c:40381},40385,40387,{f:14,c:40389},{f:3,c:40404},40408,{f:10,c:40411},{f:8,c:40423},{f:2,c:40432},{f:4,c:40436},{f:17,c:40443},{f:8,c:40461},{f:4,c:40470},40476,40484,40487,40494,40496,40500,{f:2,c:40507},40512,40525,40528,{f:3,c:40530},40534,40537,40541,{f:4,c:40543},40549,{f:2,c:40558},40562,40564,{f:3,c:40566},40571,{f:2,c:40576},{f:4,c:40579},{f:2,c:40585},{f:6,c:40588},{f:3,c:40596},{f:5,c:40600},40606,{f:5,c:40608},{f:2,c:40615},{f:5,c:40618},{f:4,c:40624},{f:2,c:40630},{f:2,c:40633},40636,{f:4,c:40639},[12232,40643],{f:4,c:40645},{f:2,c:40650},40656,{f:2,c:40658},{f:3,c:40661},{f:2,c:40665},40673,{f:2,c:40675},40678,{f:4,c:40683},{f:2,c:40688},40691,{f:2,c:40693},40696,40698,{f:9,c:40704},40714,40716,40719,{f:2,c:40721},40724,40726,40728,{f:6,c:40730},40737,{f:9,c:40739},{f:2,c:40749},{f:7,c:40752},40760,40762,40764,{f:5,c:40767},{f:5,c:40773},{f:3,c:40780},40787,{f:4,c:40789},{f:2,c:40794},{f:2,c:40797},40802,{f:2,c:40804},{f:3,c:40807},40811,{f:5,c:40813},{f:4,c:40819},{f:7,c:40824},{f:2,c:40833},{f:2,c:40846},{f:3,c:40849},{f:3,c:40854},{f:2,c:40861},{f:5,c:40865},63788,{f:3,c:64013},64017,{f:2,c:64019},64024,{f:3,c:64031},{f:2,c:64035},{f:3,c:64039},11905,[59414,131207],[59415,131209],[59416,131276],11908,13427,13383,11912,11915,59422,13726,13850,13838,11916,11927,14702,14616,59430,14799,14815,14963,14800,{f:2,c:59435},15182,15470,15584,11943,[59441,136663],59442,11946,16470,16735,11950,17207,11955,{f:2,c:11958},[59451,141711],17329,17324,11963,17373,17622,18017,17996,[59459,132361],18211,18217,18300,18317,11978,18759,18810,18813,{f:2,c:18818},{f:2,c:18821},18847,18843,18871,18870,[59476,133533],[59477,147966],19619,{f:3,c:19615},19575,19618,{f:7,c:19731},19886,59492,{s:226},8364,165,0,0,12351,{s:17},12436,{s:14},12535,12537,12536,12538,0,{f:3,c:12339},{f:3,c:12344},{f:3,c:12586},{f:24,c:12704},11904,{f:2,c:11906},{f:3,c:11909},{f:2,c:11913},{f:10,c:11917},{f:2,c:11928},{f:12,c:11931},{f:2,c:11944},{f:3,c:11947},{f:4,c:11951},{f:2,c:11956},{f:3,c:11960},{f:14,c:11964},{f:41,c:11979},{f:71,c:13312},{f:43,c:13384},{f:298,c:13428},{f:111,c:13727},{f:11,c:13839},{f:765,c:13851},{f:85,c:14617},{f:96,c:14703},{f:14,c:14801},{f:147,c:14816},{f:218,c:14964},{f:287,c:15183},{f:113,c:15471},{f:885,c:15585},{f:264,c:16471},{f:471,c:16736},{f:116,c:17208},{f:4,c:17325},{f:43,c:17330},{f:248,c:17374},{f:373,c:17623},{f:20,c:17997},{f:193,c:18018},{f:5,c:18212},{f:82,c:18218},{f:16,c:18301},{f:441,c:18318},{f:50,c:18760},{f:2,c:18811},{f:4,c:18814},18820,{f:20,c:18823},{f:3,c:18844},{f:22,c:18848},{f:703,c:18872},{f:39,c:19576},{f:111,c:19620},{f:148,c:19738},{f:7,c:19887}]};function Vs(e){e.mozCurrentTransform||(e._scaleX=e._scaleX||1,e._scaleY=e._scaleY||1,e._originalSave=e.save,e._originalRestore=e.restore,e._originalRotate=e.rotate,e._originalScale=e.scale,e._originalTranslate=e.translate,e._originalTransform=e.transform,e._originalSetTransform=e.setTransform,e._transformMatrix=[e._scaleX,0,0,e._scaleY,0,0],e._transformStack=[],Object.defineProperty(e,`mozCurrentTransform`,{get:function(){return this._transformMatrix}}),Object.defineProperty(e,`mozCurrentTransformInverse`,{get:function(){var e=this._transformMatrix,t=e[0],n=e[1],r=e[2],i=e[3],a=e[4],o=e[5],s=t*i-n*r,c=n*r-t*i;return[i/s,n/c,r/c,t/s,(i*a-r*o)/c,(n*a-t*o)/s]}}),e.save=function(){var e=this._transformMatrix;this._transformStack.push(e),this._transformMatrix=e.slice(0,6),this._originalSave()},e.restore=function(){var e=this._transformStack.pop();e&&(this._transformMatrix=e,this._originalRestore())},e.translate=function(e,t){var n=this._transformMatrix;n[4]=n[0]*e+n[2]*t+n[4],n[5]=n[1]*e+n[3]*t+n[5],this._originalTranslate(e,t)},e.scale=function(e,t){var n=this._transformMatrix;n[0]*=e,n[1]*=e,n[2]*=t,n[3]*=t,this._originalScale(e,t)},e.transform=function(t,n,r,i,a,o){var s=this._transformMatrix;this._transformMatrix=[s[0]*t+s[2]*n,s[1]*t+s[3]*n,s[0]*r+s[2]*i,s[1]*r+s[3]*i,s[0]*a+s[2]*o+s[4],s[1]*a+s[3]*o+s[5]],e._originalTransform(t,n,r,i,a,o)},e.setTransform=function(t,n,r,i,a,o){this._transformMatrix=[t,n,r,i,a,o],e._originalSetTransform(t,n,r,i,a,o)},e.rotate=function(e){var t=Math.cos(e),n=Math.sin(e),r=this._transformMatrix;this._transformMatrix=[r[0]*t+r[2]*n,r[1]*t+r[3]*n,r[0]*-n+r[2]*t,r[1]*-n+r[3]*t,r[4],r[5]],this._originalRotate(e)})}var Hs,Us=(Hs={},{getCanvas:function(e,t,n,r){var i;if(e in Hs)(i=Hs[e]).canvas.width=t,i.canvas.height=n,i.context.setTransform(1,0,0,1,0,0);else{var a=hi(t,n),o=a.getContext(`2d`);r&&Vs(o),Hs[e]=i={canvas:a,context:o}}return i},clear:function(){Hs={}}}),Ws=function(){function e(e){this.alphaIsShape=!1,this.fontSize=0,this.fontSizeScale=1,this.textMatrix=Gi,this.fontMatrix=yi,this.leading=0,this.x=0,this.y=0,this.lineX=0,this.lineY=0,this.charSpacing=0,this.wordSpacing=0,this.textHScale=1,this.textRenderingMode=bi,this.textRise=0,this.fillColorSpace=la.singletons.gray,this.fillColorSpaceObj=null,this.strokeColorSpace=la.singletons.gray,this.strokeColorSpaceObj=null,this.fillColorObj=null,this.strokeColorObj=null,this.fillColor=`#000000`,this.strokeColor=`#000000`,this.fillAlpha=1,this.strokeAlpha=1,this.lineWidth=1,this.paintFormXObjectDepth=0,this.old=e}return e.prototype={clone:function(){return Object.create(this)},setCurrentPoint:function(e,t){this.x=e,this.y=t}},e}(),Gs=function(){function e(e,t,n,r,i){this.ctx=e,this.current=new Ws,this.stateStack=[],this.pendingClip=null,this.pendingEOFill=!1,this.res=null,this.xobjs=null,this.commonObjs=t,this.objs=n,this.textLayer=r,this.imageLayer=i,this.groupStack=[],this.processingType3=null,this.baseTransform=null,this.baseTransformStack=[],this.groupLevel=0,this.opMode=!0,this.noOpStartIdx=-1,e&&Vs(e)}function t(e,t){if(typeof ImageData<`u`&&t instanceof ImageData)e.putImageData(t,0,0);else{var n=e.createImageData(t.width,t.height),r=t.data,i=n.data;if(`set`in i)i.set(r);else for(var a=0,o=i.length;a<o;a++)i[a]=r[a];e.putImageData(n,0,0)}}var n=[`butt`,`round`,`square`],r=[`miter`,`round`,`bevel`],i={},a={};for(var o in e.prototype={beginDrawing:function(e,t){var n=this.ctx.canvas.width,r=this.ctx.canvas.height;t?this.ctx.clearRect(0,0,n,r):(this.ctx.mozOpaque=!0,this.ctx.save(),this.ctx.fillStyle=`rgb(255, 255, 255)`,this.ctx.fillRect(0,0,n,r),this.ctx.restore());var i=e.transform;this.baseTransform=i.slice(),this.ctx.save(),this.ctx.transform.apply(this.ctx,i),this.textLayer&&this.textLayer.beginLayout(),this.imageLayer&&this.imageLayer.beginLayout()},executeOperatorList:function(e,t,n,r){var i=e.argsArray,a=e.fnArray,o=t||0,s=i.length;if(s==o)return o;for(var c,l=Date.now()+15,u=this.commonObjs,d=this.objs,f=-1;;){if(r&&o===r.nextBreakPoint)return r.breakIt(o,n),o;if((c=a[o])!==H.dependency)f=Ei.indexOf(c),this.opMode?f>=0?(this.opMode=!1,this.noOpStartIdx=f,U(`NO_OP Begin: `+this[c].name+` - `+o)):Ti.indexOf(c)<0&&this[c].apply(this,i[o]):f>=0&&f===this.noOpStartIdx+1&&(this.opMode=!0,this.noOpStartIdx=-1,U(`NO_OP End: `+this[c].name+` - `+o));else for(var p=i[o],m=0,h=p.length;m<h;m++){var g=p[m],_=g.substring(0,2)==`g_`;if(!_&&!d.isResolved(g))return d.get(g,n),o;if(_&&!u.isResolved(g))return u.get(g,n),o}if(++o==s)return o;if(n&&Date.now()>l)return setTimeout(n,0),o}},endDrawing:function(){this.ctx.restore(),Us.clear(),this.textLayer&&this.textLayer.endLayout(),this.imageLayer&&this.imageLayer.endLayout()},setLineWidth:function(e){this.current.lineWidth=e,this.ctx.lineWidth=e},setLineCap:function(e){this.ctx.lineCap=n[e]},setLineJoin:function(e){this.ctx.lineJoin=r[e]},setMiterLimit:function(e){this.ctx.miterLimit=e},setDash:function(e,t){var n=this.ctx;`setLineDash`in n?(n.setLineDash(e),n.lineDashOffset=t):(n.mozDash=e,n.mozDashOffset=t)},setRenderingIntent:function(e){},setFlatness:function(e){},setGState:function(e){for(var t=0,n=e.length;t<n;t++){var r=e[t],i=r[0],a=r[1];switch(i){case`LW`:this.setLineWidth(a);break;case`LC`:this.setLineCap(a);break;case`LJ`:this.setLineJoin(a);break;case`ML`:this.setMiterLimit(a);break;case`D`:this.setDash(a[0],a[1]);break;case`RI`:this.setRenderingIntent(a);break;case`FL`:this.setFlatness(a);break;case`Font`:this.setFont(a[0],a[1]);break;case`CA`:this.current.strokeAlpha=r[1];break;case`ca`:this.current.fillAlpha=r[1],this.ctx.globalAlpha=r[1];break;case`BM`:if(a&&a.name&&a.name!==`Normal`){var o=a.name.replace(/([A-Z])/g,function(e){return`-`+e.toLowerCase()}).substring(1);this.ctx.globalCompositeOperation=o,this.ctx.globalCompositeOperation!==o&&W(`globalCompositeOperation "`+o+`" is not supported`)}else this.ctx.globalCompositeOperation=`source-over`}}},save:function(){this.ctx.save();var e=this.current;this.stateStack.push(e),this.current=e.clone()},restore:function(){var e=this.stateStack.pop();e&&(this.current=e,this.ctx.restore())},transform:function(e,t,n,r,i,a){this.ctx.transform(e,t,n,r,i,a)},moveTo:function(e,t){this.ctx.moveTo(e,t),this.current.setCurrentPoint(e,t)},lineTo:function(e,t){this.ctx.lineTo(e,t),this.current.setCurrentPoint(e,t)},curveTo:function(e,t,n,r,i,a){this.ctx.bezierCurveTo(e,t,n,r,i,a),this.current.setCurrentPoint(i,a)},curveTo2:function(e,t,n,r){var i=this.current;this.ctx.bezierCurveTo(i.x,i.y,e,t,n,r),i.setCurrentPoint(n,r)},curveTo3:function(e,t,n,r){this.curveTo(e,t,n,r,n,r),this.current.setCurrentPoint(n,r)},closePath:function(){this.ctx.closePath()},rectangle:function(e,t,n,r){this.ctx.rect(e,t,n,r)},stroke:function(e){e=e===void 0||e;var t=this.ctx,n=this.current.strokeColor;this.current.lineWidth===0&&(t.lineWidth=this.getSinglePixelWidth()),t.globalAlpha=this.current.strokeAlpha,n&&n.hasOwnProperty(`type`)&&n.type===`Pattern`?(t.save(),t.strokeStyle=n.getPattern(t,this),t.stroke(),t.restore()):t.stroke(),e&&this.consumePath(),t.globalAlpha=this.current.fillAlpha},closeStroke:function(){this.closePath(),this.stroke()},fill:function(e){e=e===void 0||e;var t=this.ctx,n=this.current.fillColor,r=!1;if(n&&n.hasOwnProperty(`type`)&&n.type===`Pattern`&&(t.save(),t.fillStyle=n.getPattern(t,this),r=!0),this.pendingEOFill){if(`mozFillRule`in this.ctx)this.ctx.mozFillRule=`evenodd`,this.ctx.fill(),this.ctx.mozFillRule=`nonzero`;else try{this.ctx.fill(`evenodd`)}catch{this.ctx.fill()}this.pendingEOFill=!1}else this.ctx.fill();r&&t.restore(),e&&this.consumePath()},eoFill:function(){this.pendingEOFill=!0,this.fill()},fillStroke:function(){this.fill(!1),this.stroke(!1),this.consumePath()},eoFillStroke:function(){this.pendingEOFill=!0,this.fillStroke()},closeFillStroke:function(){this.closePath(),this.fillStroke()},closeEOFillStroke:function(){this.pendingEOFill=!0,this.closePath(),this.fillStroke()},endPath:function(){this.consumePath()},clip:function(){this.pendingClip=i},eoClip:function(){this.pendingClip=a},beginText:function(){this.current.textMatrix=Gi,this.current.x=this.current.lineX=0,this.current.y=this.current.lineY=0},endText:function(){if(`pendingTextPaths`in this){var e=this.pendingTextPaths,t=this.ctx;t.save(),t.beginPath();for(var n=0;n<e.length;n++){var r=e[n];t.setTransform.apply(t,r.transform),t.translate(r.x,r.y),r.addToPath(t,r.fontSize)}t.restore(),t.clip(),t.beginPath(),delete this.pendingTextPaths}else this.ctx.beginPath()},setCharSpacing:function(e){this.current.charSpacing=e},setWordSpacing:function(e){this.current.wordSpacing=e},setHScale:function(e){this.current.textHScale=e/100},setLeading:function(e){this.current.leading=-e},setFont:function(e,t){var n=this.commonObjs.get(e),r=this.current;if(n||G(`Can't find font for `+e),r.fontMatrix=n.fontMatrix?n.fontMatrix:yi,r.fontMatrix[0]!==0&&r.fontMatrix[3]!==0||W(`Invalid font matrix for font `+e),t<0?(t=-t,r.fontDirection=-1):r.fontDirection=1,this.current.font=n,this.current.fontSize=t,n.coded)return W(`Found Type3 font (custom Glyph) - `+e+`, trying to decode`),void this.ctx.setFont(n);var i=n.loadedName||`sans-serif`,a=n.black?n.bold?`bolder`:`bold`:n.bold?`bold`:`normal`,o=n.italic?`italic`:`normal`,s=`"`+i+`", `+n.fallbackName,c=t>=16?t:16;this.current.fontSizeScale=c==16?t/16:1;var l=o+` `+a+` `+c+`px `+s;this.ctx.font=l,this.ctx.setFont(n)},setTextRenderingMode:function(e){this.current.textRenderingMode=e},setTextRise:function(e){this.current.textRise=e},moveText:function(e,t){this.current.x=this.current.lineX+=e,this.current.y=this.current.lineY+=t},setLeadingMoveText:function(e,t){this.setLeading(-t),this.moveText(e,t)},setTextMatrix:function(e,t,n,r,i,a){this.current.textMatrix=[e,t,n,r,i,a],this.current.x=this.current.lineX=0,this.current.y=this.current.lineY=0},nextLine:function(){this.moveText(0,this.current.leading)},applyTextTransforms:function(){var e=this.ctx,t=this.current;e.transform.apply(e,t.textMatrix),e.translate(t.x,t.y+t.textRise),t.fontDirection>0?e.scale(t.textHScale,-1):e.scale(-t.textHScale,1)},createTextGeometry:function(){var e={},t=this.ctx,n=this.current.font,r=t.mozCurrentTransform,i=r[0],a=r[1],o=r[2],s=r[3],c=r[4],l=r[5],u=i>=0?Math.sqrt(i*i+a*a):-Math.sqrt(i*i+a*a),d=s>=0?Math.sqrt(o*o+s*s):-Math.sqrt(o*o+s*s),f=Math.atan2(a,i),p=c,m=l;return e.x=p,e.y=m,e.hScale=u,e.vScale=d,e.angle=f,e.spaceWidth=n.spaceWidth,e.fontName=n.loadedName,e.fontFamily=n.fallbackName,e.fontSize=this.current.fontSize,e},paintChar:function(e,t,n){var r,i=this.ctx,a=this.current,o=a.font,s=a.fontSize/a.fontSizeScale,c=a.textRenderingMode,l=c&Ci,u=!!(c&wi);((o.disableFontFace||u)&&(r=o.getPathGenerator(this.commonObjs,e)),o.disableFontFace?(i.save(),i.translate(t,n),i.beginPath(),r(i,s),l!==bi&&l!==Si||i.fill(),l!==xi&&l!==Si||i.stroke(),i.restore()):(l!==bi&&l!==Si||i.fillText(e,t,n),l!==xi&&l!==Si||i.strokeText(e,t,n)),u)&&(this.pendingTextPaths||=[]).push({transform:i.mozCurrentTransform,x:t,y:n,fontSize:s,addToPath:r})},showText:function(e,t){var n,r=this.ctx,i=this.current,a=i.font||{},o=i.fontSize,s=i.fontSizeScale,c=i.charSpacing,l=i.wordSpacing,u=i.textHScale*i.fontDirection,d=i.fontMatrix||yi,f=e.length,p=!(!this.textLayer||!a.coded&&t),m=``,h=0,g=a.vertical,_=a.defaultVMetrics;if(U(`showText called with ${f} glyphs, font type: ${a.coded?`Type3`:a.type||`Unknown`}, textSelection: ${p}`),a.coded){U(`Processing Type3 font with ${f} glyphs`);for(var v=0;v<f;++v)(k=e[v])!==null&&(k.unicode?m+=k.unicode:k.fontChar&&(m+=String.fromCharCode(k.fontChar)));for(U(`Type3 text: ${m}`),r.save(),r.transform.apply(r,i.textMatrix),r.translate(i.x,i.y),r.scale(u,1),p&&(this.save(),r.scale(1,-1),(n=this.createTextGeometry()).type3Text=m,n.fontSize=o,this.restore()),v=0;v<f;++v)if((k=e[v])!==null){this.processingType3=k,this.save(),r.scale(o,o),r.transform.apply(r,d),this.executeOperatorList(k.operatorList),this.restore();var y=(K.applyTransform([k.width,0],d)[0]*o+c)*i.fontDirection;r.translate(y,0),i.x+=y*u,h+=y}else U(`Type3 word break at glyph ${v}`),this.ctx.translate(l,0),i.x+=l*u;if(m){U(`render Type3 text: '${m}', disableFontFace: ${a.disableFontFace}`);var b=o;switch(i.textRenderingMode){case bi:r.fillText(m,0,0,h,b);break;case xi:r.strokeText(m,0,0,h,b);break;case Si:r.fillText(m,0,0,h,b)}}r.restore(),this.processingType3=null}else{r.save();var x=0;if(l!==0){var S=e.filter(e=>e&&(`fontChar`in e||`unicode`in e))[0];!S||S.fontChar!==` `&&S.unicode!==` `||(x=l*o*u)}i.x+=x,this.applyTextTransforms(),i.x-=x;var C=i.lineWidth,w=i.textMatrix[0],T=i.textMatrix[1],E=Math.sqrt(w*w+T*T);E===0||C===0?C=this.getSinglePixelWidth():C/=E,p&&(n=this.createTextGeometry()),s!=1&&(r.scale(s,s),C/=s),r.lineWidth=C;var D=``,O=0;for(v=0;v<f;++v){var k;if((k=e[v])!==null){var A=!1,j=k.fontChar,M=k.vmetric||_;if(g){var N=k.vmetric?M[1]:.5*k.width;N=-N*o*i.fontMatrix[0];var P=M[2]*o*i.fontMatrix[0]}var F,ee,I=(y=M?-M[0]:k.width)*o*i.fontMatrix[0]+c*i.fontDirection,L=k.accent;if(!k.disabled){if(g?(F=N/s,ee=(O+P)/s):(F=O/s,ee=0),a.remeasure&&y>0){var R=y/(1e3*r.measureText(j).width/i.fontSize*i.fontSizeScale);A=!0,r.save(),r.scale(R,1),F/=R}L&&(F+L.offset.x/s,ee-L.offset.y/s)}D+=k.unicode||j,O+=I,h+=I,A&&r.restore()}else O+=i.fontDirection*l}if(g?i.y-=O*u:i.x+=O*u,D&&!a.disableFontFace&&!a.coded)switch(b=o*E*u+3,i.textRenderingMode){case bi:r.fillText(D,0,0,h,b);break;case xi:r.strokeText(D,0,0,h,b);break;case Si:r.fillText(D,0,0,h,b)}r.restore()}return h},showSpacedText:function(e){var t,n=this.ctx,r=this.current,i=r.font,a=r.fontSize,o=.001*r.textHScale*r.fontDirection,s=e.length,c=0,l=!!this.textLayer,u=i.vertical;l&&(n.save(),this.applyTextTransforms(),t=this.createTextGeometry(),n.restore());var d=[],f=i.spaceWidth;if(!i.spaceWidth){var p=na(i.toFontChar)?i.toFontChar.indexOf(32):-1;f=p>=0&&na(i.widths)?i.widths[p]:250}for(var m=0;m<s;++m){var h=e[m];if(Zi(h)){var g=-h*a*o;d.length===0?u?r.y+=g:r.x+=g:Math.abs(h)>=f&&(u?r.y+=g:(this.showText(d,!0),d=[],r.x+=g))}else d=d.concat(h)}if(d.length){var _=this.showText(d,!0);l&&(c+=_)}if(l&&(t.canvasWidth=c,u)){var v=Math.PI/2;t.angle+=v}},nextLineShowText:function(e){this.nextLine(),this.showText(e)},nextLineSetSpacingShowText:function(e,t,n){this.setWordSpacing(e),this.setCharSpacing(t),this.nextLineShowText(n)},setCharWidth:function(e,t){},setCharWidthAndBounds:function(e,t,n,r,i,a){this.rectangle(n,r,i-n,a-r),this.clip(),this.endPath()},setStrokeColorSpace:function(e){this.current.strokeColorSpace=la.fromIR(e)},setFillColorSpace:function(e){this.current.fillColorSpace=la.fromIR(e)},setStrokeColor:function(){var e=this.current.strokeColorSpace.getRgb(arguments,0),t=K.makeCssRgb(e);this.ctx.strokeStyle=t,this.current.strokeColor=t},getColorN_Pattern:function(e,t){if(e[0]==`TilingPattern`){var n,r=e[1],i=t.base;i&&(i.numComps,n=i.getRgb(r,0));var a=new Sa(e,n,this.ctx,this.objs,this.commonObjs,this.baseTransform)}else e[0]==`RadialAxial`||e[0]==`Dummy`?a=ba.shadingFromIR(e):G(`Unkown IR type `+e[0]);return a},setStrokeColorN:function(){var e=this.current.strokeColorSpace;e.name==`Pattern`?this.current.strokeColor=this.getColorN_Pattern(arguments,e):this.setStrokeColor.apply(this,arguments)},setFillColor:function(){var e=this.current.fillColorSpace.getRgb(arguments,0),t=K.makeCssRgb(e);this.ctx.fillStyle=t,this.current.fillColor=t},setFillColorN:function(){var e=this.current.fillColorSpace;e.name==`Pattern`?this.current.fillColor=this.getColorN_Pattern(arguments,e):this.setFillColor.apply(this,arguments)},setStrokeGray:function(e){this.current.strokeColorSpace=la.singletons.gray;var t=this.current.strokeColorSpace.getRgb(arguments,0),n=K.makeCssRgb(t);this.ctx.strokeStyle=n,this.current.strokeColor=n},setFillGray:function(e){this.current.fillColorSpace=la.singletons.gray;var t=this.current.fillColorSpace.getRgb(arguments,0),n=K.makeCssRgb(t);this.ctx.fillStyle=n,this.current.fillColor=n},setStrokeRGBColor:function(e,t,n){this.current.strokeColorSpace=la.singletons.rgb;var r=this.current.strokeColorSpace.getRgb(arguments,0),i=K.makeCssRgb(r);this.ctx.strokeStyle=i,this.current.strokeColor=i},setFillRGBColor:function(e,t,n){this.current.fillColorSpace=la.singletons.rgb;var r=this.current.fillColorSpace.getRgb(arguments,0),i=K.makeCssRgb(r);this.ctx.fillStyle=i,this.current.fillColor=i},setStrokeCMYKColor:function(e,t,n,r){this.current.strokeColorSpace=la.singletons.cmyk;var i=K.makeCssCmyk(arguments);this.ctx.strokeStyle=i,this.current.strokeColor=i},setFillCMYKColor:function(e,t,n,r){this.current.fillColorSpace=la.singletons.cmyk;var i=K.makeCssCmyk(arguments);this.ctx.fillStyle=i,this.current.fillColor=i},shadingFill:function(e){var t=this.ctx;this.save(),t.fillStyle=ba.shadingFromIR(e).getPattern(t,this);var n=t.mozCurrentTransformInverse;if(n){var r=t.canvas,i=r.width,a=r.height,o=K.applyTransform([0,0],n),s=K.applyTransform([0,a],n),c=K.applyTransform([i,0],n),l=K.applyTransform([i,a],n),u=Math.min(o[0],s[0],c[0],l[0]),d=Math.min(o[1],s[1],c[1],l[1]),f=Math.max(o[0],s[0],c[0],l[0]),p=Math.max(o[1],s[1],c[1],l[1]);this.ctx.fillRect(u,d,f-u,p-d)}else this.ctx.fillRect(-1e10,-1e10,2e10,2e10);this.restore()},beginInlineImage:function(){G(`Should not call beginInlineImage`)},beginImageData:function(){G(`Should not call beginImageData`)},paintFormXObjectBegin:function(e,t){if(this.save(),this.current.paintFormXObjectDepth++,this.baseTransformStack.push(this.baseTransform),e&&na(e)&&e.length==6&&this.transform.apply(this,e),this.baseTransform=this.ctx.mozCurrentTransform,t&&na(t)&&t.length==4){var n=t[2]-t[0],r=t[3]-t[1];this.rectangle(t[0],t[1],n,r),this.clip(),this.endPath()}},paintFormXObjectEnd:function(){var e=this.current.paintFormXObjectDepth;do this.restore(),this.current.paintFormXObjectDepth--;while(this.current.paintFormXObjectDepth>=e);this.baseTransform=this.baseTransformStack.pop()},beginGroup:function(e){this.save();var t=this.ctx;e.isolated||U(`TODO: Support non-isolated groups.`),e.knockout&&Oi(`Support knockout groups.`);var n=t.mozCurrentTransform;e.matrix&&t.transform.apply(t,e.matrix),ki(e.bbox,`Bounding box is required.`);var r=K.getAxialAlignedBoundingBox(e.bbox,t.mozCurrentTransform),i=[0,0,t.canvas.width,t.canvas.height];r=K.intersect(r,i)||[0,0,0,0];var a=Math.max(Math.ceil(r[2]-r[0]),1),o=Math.max(Math.ceil(r[3]-r[1]),1),s=Us.getCanvas(`groupAt`+this.groupLevel,a,o,!0).context,c=r[0],l=r[1];s.translate(-c,-l),s.transform.apply(s,n),t.setTransform(1,0,0,1,0,0),t.translate(c,l),function(e,t){for(var n=[`strokeStyle`,`fillStyle`,`fillRule`,`globalAlpha`,`lineWidth`,`lineCap`,`lineJoin`,`miterLimit`,`globalCompositeOperation`,`font`],r=0,i=n.length;r<i;r++){var a=n[r];a in e&&(t[a]=e[a])}`setLineDash`in e?(t.setLineDash(e.getLineDash()),t.lineDashOffset=e.lineDashOffset):`mozDash`in e&&(t.mozDash=e.mozDash,t.mozDashOffset=e.mozDashOffset)}(t,s),this.ctx=s,this.setGState([[`SMask`,`None`],[`BM`,`Normal`],[`ca`,1],[`CA`,1]]),this.groupStack.push(t),this.groupLevel++},endGroup:function(e){this.groupLevel==0&&this.beginGroup(e),this.groupLevel--;var t=this.ctx;this.ctx=this.groupStack.pop(),`imageSmoothingEnabled`in this.ctx?this.ctx.imageSmoothingEnabled=!1:this.ctx.mozImageSmoothingEnabled=!1,this.ctx.drawImage(t.canvas,0,0),this.restore()},beginAnnotations:function(){this.save(),this.current=new Ws},endAnnotations:function(){this.restore()},beginAnnotation:function(e,t,n){if(this.save(),e&&na(e)&&e.length==4){var r=e[2]-e[0],i=e[3]-e[1];this.rectangle(e[0],e[1],r,i),this.clip(),this.endPath()}this.transform.apply(this,t),this.transform.apply(this,n)},endAnnotation:function(){this.restore()},paintJpegXObject:function(e,t,n){var r=this.objs.get(e);r||G(`Dependent image isn't ready yet`),this.save();var i=this.ctx;if(i.scale(1/t,-1/n),i.drawImage(r,0,0,r.width,r.height,0,-n,t,n),this.imageLayer){var a=i.mozCurrentTransformInverse,o=this.getCanvasPosition(0,0);this.imageLayer.appendImage({objId:e,left:o[0],top:o[1],width:t/a[0],height:n/a[3]})}this.restore()},paintImageMaskXObject:function(e){var n=this.ctx,r=e.width,i=e.height,a=this.processingType3;if(a&&!(`compiled`in a)&&(a.compiled=r<=1e3&&i<=1e3?function(e){var t,n,r,i=e.width,a=e.height,o=i+1,s=new Uint8Array(o*(a+1)),c=new Uint8Array([0,2,4,0,1,0,5,4,8,10,0,8,0,2,1,0]),l=3,u=e.data,d=4*i,f=0;for(u[3]!==0&&(s[0]=1,++f),n=1;n<i;n++)u[l]!==u[l+4]&&(s[n]=u[l]?2:1,++f),l+=4;for(u[l]!==0&&(s[n]=2,++f),l+=4,t=1;t<a;t++){r=t*o,u[l-d]!==u[l]&&(s[r]=u[l]?1:8,++f);var p=(u[l]?4:0)+(u[l-d]?8:0);for(n=1;n<i;n++)c[p=(p>>2)+(u[l+4]?4:0)+(u[l-d+4]?8:0)]&&(s[r+n]=c[p],++f),l+=4;if(u[l-d]!==u[l]&&(s[r+n]=u[l]?2:4,++f),l+=4,f>1e3)return null}for(r=t*o,u[l-=d]!==0&&(s[r]=8,++f),n=1;n<i;n++)u[l]!==u[l+4]&&(s[r+n]=u[l]?4:8,++f),l+=4;if(u[l]!==0&&(s[r+n]=4,++f),f>1e3)return null;var m=new Int32Array([0,o,-1,0,-o,0,0,0,1]),h=[];for(t=0;f&&t<=a;t++){for(var g=t*o,_=g+i;g<_&&!s[g];)g++;if(g!==_){var v,y=[g%o,t],b=s[g],x=g;do{var S=m[b];do g+=S;while(!s[g]);(v=s[g])!==5&&v!==10?(b=v,s[g]=0):(b=v&51*b>>4,s[g]&=b>>2|b<<2),y.push(g%o),y.push(g/o|0),--f}while(x!==g);h.push(y),--t}}return function(e){e.save(),e.scale(1/i,-1/a),e.translate(0,-a),e.beginPath();for(var t=0,n=h.length;t<n;t++){var r=h[t];e.moveTo(r[0],r[1]);for(var o=2,s=r.length;o<s;o+=2)e.lineTo(r[o],r[o+1])}e.fill(),e.beginPath(),e.restore()}}({data:e.data,width:r,height:i}):null),a&&a.compiled)a.compiled(n);else{var o=Us.getCanvas(`maskCanvas`,r,i),s=o.context;s.save(),t(s,e),s.globalCompositeOperation=`source-in`;var c=this.current.fillColor;s.fillStyle=c&&c.hasOwnProperty(`type`)&&c.type===`Pattern`?c.getPattern(s,this):c,s.fillRect(0,0,r,i),s.restore(),this.paintInlineImageXObject(o.canvas)}},paintImageMaskXObjectGroup:function(e){for(var n=this.ctx,r=0,i=e.length;r<i;r++){var a=e[r],o=a.width,s=a.height,c=Us.getCanvas(`maskCanvas`,o,s),l=c.context;l.save(),t(l,a),l.globalCompositeOperation=`source-in`;var u=this.current.fillColor;l.fillStyle=u&&u.hasOwnProperty(`type`)&&u.type===`Pattern`?u.getPattern(l,this):u,l.fillRect(0,0,o,s),l.restore(),n.save(),n.transform.apply(n,a.transform),n.scale(1,-1),n.drawImage(c.canvas,0,0,o,s,0,-1,1,1),n.restore()}},paintImageXObject:function(e){var t=this.objs.get(e);t||G(`Dependent image isn't ready yet`),this.paintInlineImageXObject(t)},paintInlineImageXObject:function(e){var n=e.width,r=e.height,i=this.ctx;this.save(),i.scale(1/n,-1/r);var a,o=i.mozCurrentTransformInverse,s=o[0],c=o[1],l=Math.max(Math.sqrt(s*s+c*c),1),u=o[2],d=o[3],f=Math.max(Math.sqrt(u*u+d*d),1);if(e instanceof HTMLElement||!e.data)a=e;else{var p=(_=Us.getCanvas(`inlineImage`,n,r)).context;t(p,e),a=_.canvas}for(var m=n,h=r,g=`prescale1`;l>2&&m>1||f>2&&h>1;){var _,v=m,y=h;l>2&&m>1&&(l/=m/(v=Math.ceil(m/2))),f>2&&h>1&&(f/=h/(y=Math.ceil(h/2))),(p=(_=Us.getCanvas(g,v,y)).context).clearRect(0,0,v,y),p.drawImage(a,0,0,m,h,0,0,v,y),a=_.canvas,m=v,h=y,g=g===`prescale1`?`prescale2`:`prescale1`}if(i.drawImage(a,0,0,m,h,0,-r,n,r),this.imageLayer){var b=this.getCanvasPosition(0,-r);this.imageLayer.appendImage({imgData:e,left:b[0],top:b[1],width:n/o[0],height:r/o[3]})}this.restore()},paintInlineImageXObjectGroup:function(e,n){var r=this.ctx,i=e.width,a=e.height,o=Us.getCanvas(`inlineImage`,i,a);t(o.context,e);for(var s=0,c=n.length;s<c;s++){var l=n[s];if(r.save(),r.transform.apply(r,l.transform),r.scale(1,-1),r.drawImage(o.canvas,l.x,l.y,l.w,l.h,0,-1,1,1),this.imageLayer){var u=this.getCanvasPosition(l.x,l.y);this.imageLayer.appendImage({imgData:e,left:u[0],top:u[1],width:i,height:a})}r.restore()}},markPoint:function(e){},markPointProps:function(e,t){},beginMarkedContent:function(e){},beginMarkedContentProps:function(e,t){},endMarkedContent:function(){},beginCompat:function(){},endCompat:function(){},consumePath:function(){if(this.pendingClip){if(this.pendingClip==a)if(`mozFillRule`in this.ctx)this.ctx.mozFillRule=`evenodd`,this.ctx.clip(),this.ctx.mozFillRule=`nonzero`;else try{this.ctx.clip(`evenodd`)}catch{this.ctx.clip()}else this.ctx.clip();this.pendingClip=null}this.ctx.beginPath()},getSinglePixelWidth:function(e){var t=this.ctx.mozCurrentTransformInverse;return Math.sqrt(Math.max(t[0]*t[0]+t[1]*t[1],t[2]*t[2]+t[3]*t[3]))},getCanvasPosition:function(e,t){var n=this.ctx.mozCurrentTransform;return[n[0]*e+n[2]*t+n[4],n[1]*e+n[3]*t+n[5]]}},H)e.prototype[H[o]]=e.prototype[o];return e}();V.disableFontFace=!1;var Ks={insertRule:function(e){var t=document.getElementById(`PDFJS_FONT_STYLE_TAG`);t||((t=document.createElement(`style`)).id=`PDFJS_FONT_STYLE_TAG`,document.documentElement.getElementsByTagName(`head`)[0].appendChild(t));var n=t.sheet;n.insertRule(e,n.cssRules.length)},clear:function(){var e=document.getElementById(`PDFJS_FONT_STYLE_TAG`);e&&e.parentNode.removeChild(e)},get loadTestFont(){return Pi(this,`loadTestFont`,atob(`T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk/xVFDQAAALwAAAA2aGhlYQdkA+oAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T/hgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA+gDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7//wAAAC7////TAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD/gwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA/gXBIwMAYuL+nz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE/t3Dov6fAH6fAT+fPp8+nwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA==`))},loadTestFontId:0,loadingContext:{requests:[],nextRequestId:0},isSyncFontLoadingSupported:function(){if(_i)return!1;var e=window.navigator.userAgent,t=/Mozilla\/5.0.*?rv:(\d+).*? Gecko/.exec(e);return!!(t&&t[1]>=14)}(),bind:function(e,t){ki(!_i,`bind() shall be called from main thread`);for(var n=[],r=[],i=0,a=e.length;i<a;i++){var o=e[i];if(!o.attached&&!1!==o.loading){o.attached=!0;var s=o.bindDOM();s&&(n.push(s),r.push(o))}}var c=Ks.queueLoadingCallback(t);n.length>0&&!this.isSyncFontLoadingSupported?Ks.prepareFontLoadEvent(n,r,c):c.complete()},queueLoadingCallback:function(e){var t=Ks.loadingContext,n={id:`pdfjs-font-loading-`+ t.nextRequestId++,complete:function(){for(ki(!n.end,`completeRequest() cannot be called twice`),n.end=Date.now();t.requests.length>0&&t.requests[0].end;){var e=t.requests.shift();setTimeout(e.callback,0)}},callback:e,started:Date.now()};return t.requests.push(n),n},prepareFontLoadEvent:function(e,t,n){function r(e,t){return e.charCodeAt(t)<<24|e.charCodeAt(t+1)<<16|e.charCodeAt(t+2)<<8|255&e.charCodeAt(t+3)}function i(e,t,n,r){return f.substring(0,t)+r+f.substring(t+n)}var a,o,s=document.createElement(`canvas`);s.width=1,s.height=1;var c=s.getContext(`2d`),l=0,u,d=`lt`+Date.now()+ this.loadTestFontId++,f=this.loadTestFont,p=1482184792,m=r(f=i(0,976,d.length,d),16);for(a=0,o=d.length-3;a<o;a+=4)m=m-p+r(d,a)|0;a<d.length&&(m=m-p+r(d+`XXX`,a)|0),f=i(0,16,4,(u=m,String.fromCharCode(u>>24&255)+String.fromCharCode(u>>16&255)+String.fromCharCode(u>>8&255)+String.fromCharCode(255&u)));var h=`@font-face { font-family:"`+d+`";src:`+(`url(data:font/opentype;base64,`+btoa(f)+`);`)+`}`;Ks.insertRule(h);var g=[];for(a=0,o=t.length;a<o;a++)g.push(t[a].loadedName);g.push(d);var _=document.createElement(`div`);for(_.setAttribute(`style`,`visibility: hidden;width: 10px; height: 10px;position: absolute; top: 0px; left: 0px;`),a=0,o=g.length;a<o;++a){var v=document.createElement(`span`);v.textContent=`Hi`,v.style.fontFamily=g[a],_.appendChild(v)}document.body.appendChild(_),function e(t,n){if(++l>30)return W(`Load test font never loaded.`),void n();c.font=`30px `+t,c.fillText(`.`,0,20),c.getImageData(0,0,1,1).data[3]>0?n():setTimeout(e.bind(null,t,n))}(d,function(){document.body.removeChild(_),n.complete()})}},qs=function(){function e(e,t,n){if(this.compiledGlyphs={},arguments.length===1){var r=arguments[0];for(var i in r)this[i]=r[i]}}return e.prototype={bindDOM:function(){if(!this.data)return null;if(V.disableFontFace)return this.disableFontFace=!0,null;var e=Ui(this.data),t=this.loadedName,n=`url(data:`+this.mimetype+`;base64,`+window.btoa(e)+`);`,r=`@font-face { font-family:"`+t+`";src:`+n+`}`;return Ks.insertRule(r),V.pdfBug&&`FontInspector`in gi&&gi.FontInspector.enabled&&gi.FontInspector.fontAdded(this,n),r},getPathGenerator:function(e,t){if(!(t in this.compiledGlyphs)){var n=e.get(this.loadedName+`_path_`+t);this.compiledGlyphs[t]=Function(`c`,`size`,n)}return this.compiledGlyphs[t]}},e}();V.Metadata=function(){function e(e){(this.metadata={},typeof e==`string`)&&(e=(e=function(e){return e.replace(/>\\376\\377([^<]+)/g,function(e,t){for(var n=t.replace(/\\([0-3])([0-7])([0-7])/g,function(e,t,n,r){return String.fromCharCode(64*t+8*n+1*r)}),r=``,i=0;i<n.length;i+=2)r+=`&#x`+(65536+(256*n.charCodeAt(i)+n.charCodeAt(i+1))).toString(16).substring(1)+`;`;return`>`+r})}(e)).trim()).startsWith(`<`)&&e.endsWith(`>`)&&(e=new zr().parseFromString(e,`application/xml`),this.metaDocument=e,this.parse())}return e.prototype={parse:function(){var e=this.metaDocument.documentElement;if(e&&e.nodeName.toLowerCase()!==`rdf:rdf`)for(e=e.firstChild;e&&e.nodeName.toLowerCase()!==`rdf:rdf`;)e=e.nextSibling;var t=e?e.nodeName.toLowerCase():null;if(e&&t===`rdf:rdf`&&e.hasChildNodes()){var n,r,i,a,o,s,c,l=e.childNodes;for(a=0,s=l.length;a<s;a++)if((n=l[a]).nodeName.toLowerCase()===`rdf:description`)for(o=0,c=n.childNodes.length;o<c;o++)n.childNodes[o].nodeName.toLowerCase()!==`#text`&&(i=(r=n.childNodes[o]).nodeName.toLowerCase(),this.metadata[i]=r.textContent.trim())}},get:function(e){return this.metadata[e]||null},has:function(e){return this.metadata[e]!==void 0}},e}(),V.maxImageSize=V.maxImageSize===void 0?-1:V.maxImageSize,V.disableFontFace=V.disableFontFace!==void 0&&V.disableFontFace,V.imageResourcesPath=V.imageResourcesPath===void 0?``:V.imageResourcesPath,V.disableWorker=V.disableWorker!==void 0&&V.disableWorker,V.workerSrc=V.workerSrc===void 0?null:V.workerSrc,V.disableRange=V.disableRange!==void 0&&V.disableRange,V.disableAutoFetch=V.disableAutoFetch!==void 0&&V.disableAutoFetch,V.pdfBug=V.pdfBug!==void 0&&V.pdfBug,V.postMessageTransfers=V.postMessageTransfers===void 0||V.postMessageTransfers,V.getDocument=function(e,t,n,r){var i,a,o;typeof e==`string`?e={url:e}:ia(e)?e={data:e}:typeof e!=`object`&&G(`Invalid parameter in getDocument, need either Uint8Array, string or a parameter object`),e.url||e.data||G(`Invalid parameter array, need either .data or .url`);var s={};for(var c in e)c!==`url`||typeof window>`u`?s[c]=e[c]:s[c]=Ai(window.location.href,e[c]);return i=new V.Promise,a=new V.Promise,o=new Xs(i,a,t,r),i.then(function(){o.passwordCallback=n,o.fetchDocument(s)}),a};var Js=function(){function e(e,t){this.pdfInfo=e,this.transport=t}return e.prototype={get numPages(){return this.pdfInfo.numPages},get fingerprint(){return this.pdfInfo.fingerprint},get embeddedFontsUsed(){return this.transport.embeddedFontsUsed},getPage:function(e){return this.transport.getPage(e)},getPageIndex:function(e){return this.transport.getPageIndex(e)},getDestinations:function(){return this.transport.getDestinations()},getJavaScript:function(){var e=new V.Promise,t=this.pdfInfo.javaScript;return e.resolve(t),e},getOutline:function(){var e=new V.Promise,t=this.pdfInfo.outline;return e.resolve(t),e},getMetadata:function(){var e=new V.Promise,t=this.pdfInfo.info,n=this.pdfInfo.metadata;return e.resolve({info:t,metadata:n?new V.Metadata(n):null}),e},isEncrypted:function(){var e=new V.Promise;return e.resolve(this.pdfInfo.encrypted),e},getData:function(){var e=new V.Promise;return this.transport.getData(e),e},dataLoaded:function(){return this.transport.dataLoaded()},cleanup:function(){this.transport.startCleanup()},destroy:function(){this.transport.destroy()}},e}(),Ys=function(){function e(e,t){this.pageInfo=e,this.transport=t,this.stats=new sa,this.stats.enabled=!!gi.PDFJS.enableStats,this.commonObjs=t.commonObjs,this.objs=new Zs,this.receivingOperatorList=!1,this.cleanupAfterRender=!1,this.pendingDestroy=!1,this.renderTasks=[]}return e.prototype={get pageNumber(){return this.pageInfo.pageIndex+1},get rotate(){return this.pageInfo.rotate},get ref(){return this.pageInfo.ref},get view(){return this.pageInfo.view},getViewport:function(e,t){return arguments.length<2&&(t=this.rotate),new V.PageViewport(this.view,e,t,0,0)},getAnnotations:function(){if(this.annotationsPromise)return this.annotationsPromise;var e=new V.Promise;return this.annotationsPromise=e,this.transport.getAnnotations(this.pageInfo.pageIndex),e},render:function(e){var t=this.stats;t.time(`Overall`),this.pendingDestroy=!1,this.displayReadyPromise||(this.receivingOperatorList=!0,this.displayReadyPromise=new q,this.operatorList={fnArray:[],argsArray:[],lastChunk:!1},this.stats.time(`Page Request`),this.transport.messageHandler.send(`RenderPageRequest`,{pageIndex:this.pageNumber-1}));var n=new $s(a,e,this.objs,this.commonObjs,this.operatorList,this.pageNumber);this.renderTasks.push(n);var r=new Qs(n),i=this;function a(e){var a=i.renderTasks.indexOf(n);a>=0&&i.renderTasks.splice(a,1),i.cleanupAfterRender&&(i.pendingDestroy=!0),i._tryDestroy(),e?r.reject(e):r.resolve(),t.timeEnd(`Rendering`),t.timeEnd(`Overall`)}return this.displayReadyPromise.then(function(e){if(i.pendingDestroy)a();else{t.time(`Rendering`);try{n.initalizeGraphics(e),n.operatorListChanged()}catch(e){a(e)}}},function(e){a(e)}),r},getTextContent:function(){var e=new V.Promise;return this.transport.messageHandler.send(`GetTextContent`,{pageIndex:this.pageNumber-1},function(t){e.resolve(t)}),e},getOperationList:function(){var e=new V.Promise;return e.resolve({dependencyFontsID:null,operatorList:null}),e},destroy:function(){this.pendingDestroy=!0,this._tryDestroy()},_tryDestroy:function(){this.pendingDestroy&&this.renderTasks.length===0&&!this.receivingOperatorList&&(delete this.operatorList,delete this.displayReadyPromise,this.objs.clear(),this.pendingDestroy=!1)},_startRenderPage:function(e){this.displayReadyPromise.resolve(e)},_renderPageChunk:function(e){for(var t=0,n=e.length;t<n;t++)this.operatorList.fnArray.push(e.fnArray[t]),this.operatorList.argsArray.push(e.argsArray[t]);for(this.operatorList.lastChunk=e.lastChunk,t=0;t<this.renderTasks.length;t++)this.renderTasks[t].operatorListChanged();e.lastChunk&&(this.receivingOperatorList=!1,this._tryDestroy())}},e}(),Xs=function(){function e(e,t,n,r){if(this.pdfDataRangeTransport=n,this.workerReadyPromise=t,this.progressCallback=r,this.commonObjs=new Zs,this.pageCache=[],this.pagePromises=[],this.embeddedFontsUsed=!1,this.passwordCallback=null,!gi.PDFJS.disableWorker&&typeof Worker<`u`){var i=V.workerSrc;i||G(`No PDFJS.workerSrc specified`);try{var a=new Worker(i),o=new ca(`main`,a);this.messageHandler=o,o.on(`test`,function(t){t&&t.supportTypedArray?(this.worker=a,t.supportTransfers||(V.postMessageTransfers=!1),this.setupMessageHandler(o),e.resolve()):(gi.PDFJS.disableWorker=!0,this.loadFakeWorkerFiles().then(function(){this.setupFakeWorker(),e.resolve()}.bind(this)))}.bind(this));var s=new Uint8Array([V.postMessageTransfers?255:0]);try{o.send(`test`,s,null,[s.buffer])}catch{U(`Cannot use postMessage transfers`),s[0]=0,o.send(`test`,s)}return}catch{U(`The worker has been disabled.`)}}gi.PDFJS.disableWorker=!0,this.loadFakeWorkerFiles().then(function(){this.setupFakeWorker(),e.resolve()}.bind(this))}return e.prototype={destroy:function(){this.pageCache=[],this.pagePromises=[];var e=this;this.messageHandler.send(`Terminate`,null,function(){e.worker&&e.worker.terminate()})},loadFakeWorkerFiles:function(){return V.fakeWorkerFilesLoadedPromise||(V.fakeWorkerFilesLoadedPromise=new q,gi.PDFJS.disableWorker?V.fakeWorkerFilesLoadedPromise.resolve():K.loadScript(V.workerSrc)),V.fakeWorkerFilesLoadedPromise},setupFakeWorker:function(){W(`Setting up fake worker.`);var e={postMessage:function(t){e.onmessage({data:t})},terminate:function(){}},t=new ca(`main`,e);this.setupMessageHandler(t),V.WorkerMessageHandler.setup(t)},setupMessageHandler:function(e){function t(t){e.send(`UpdatePassword`,t)}this.messageHandler=e;var n=this.pdfDataRangeTransport;n&&(n.addRangeListener(function(t,n){e.send(`OnDataRange`,{begin:t,chunk:n})}),n.addProgressListener(function(t){e.send(`OnDataProgress`,{loaded:t})}),e.on(`RequestDataRange`,function(e){n.requestDataRange(e.begin,e.end)},this)),e.on(`GetDoc`,function(e){var t=e.pdfInfo,n=new Js(t,this);this.pdfDocument=n,this.workerReadyPromise.resolve(n)},this),e.on(`NeedPassword`,function(e){if(this.passwordCallback)return this.passwordCallback(t,Fi.NEED_PASSWORD);this.workerReadyPromise.reject(e.exception.message,e.exception)},this),e.on(`IncorrectPassword`,function(e){if(this.passwordCallback)return this.passwordCallback(t,Fi.INCORRECT_PASSWORD);this.workerReadyPromise.reject(e.exception.message,e.exception)},this),e.on(`InvalidPDF`,function(e){this.workerReadyPromise.reject(e.exception.name,e.exception)},this),e.on(`MissingPDF`,function(e){this.workerReadyPromise.reject(e.exception.message,e.exception)},this),e.on(`UnknownError`,function(e){this.workerReadyPromise.reject(e.exception.message,e.exception)},this),e.on(`GetPage`,function(e){var t=e.pageInfo,n=new Ys(t,this);this.pageCache[t.pageIndex]=n,this.pagePromises[t.pageIndex].resolve(n)},this),e.on(`GetAnnotations`,function(e){var t=e.annotations;this.pageCache[e.pageIndex].annotationsPromise.resolve(t)},this),e.on(`StartRenderPage`,function(e){var t=this.pageCache[e.pageIndex];t.stats.timeEnd(`Page Request`),t._startRenderPage(e.transparency)},this),e.on(`RenderPageChunk`,function(e){this.pageCache[e.pageIndex]._renderPageChunk(e.operatorList)},this),e.on(`commonobj`,function(e){var t=e[0],n=e[1];if(!this.commonObjs.hasData(t))switch(n){case`Font`:var r,i=e[2];if(`error`in i){var a=i.error;this.commonObjs.resolve(t,a);break}r=new qs(i),this.commonObjs.resolve(t,r);break;case`FontPath`:this.commonObjs.resolve(t,e[2]);break;default:a(`Got unknown common object type `+n)}},this),e.on(`obj`,function(e){var t=e[0],n=e[1],r=e[2],i=this.pageCache[n];if(!i.objs.hasData(t))switch(r){case`JpegStream`:(function(e,t,n){var r=new Ur;r.onload=function(){n.resolve(e,r)},r.src=`data:image/jpeg;base64,`+r.btoa(t)})(t,a=e[3],i.objs);break;case`Image`:var a=e[3];i.objs.resolve(t,a),`data`in a&&a.data.length>8e6&&(i.cleanupAfterRender=!0);break;default:G(`Got unknown object type `+r)}},this),e.on(`DocProgress`,function(e){this.progressCallback&&this.progressCallback({loaded:e.loaded,total:e.total})},this),e.on(`DocError`,function(e){this.workerReadyPromise.reject(e)},this),e.on(`PageError`,function(e){var t=this.pageCache[e.pageNum-1];t.displayReadyPromise?t.displayReadyPromise.reject(e.error):G(e.error)},this),e.on(`JpegDecode`,function(e,t){var n=e[0],r=e[1];r!=3&&r!=1&&G(`Only 3 component or 1 component can be returned`);var i=new Ur;i.onload=function(){var e=i.width,n=i.height,a=e*n,o=4*a,s=new Uint8Array(a*r),c=hi(e,n).getContext(`2d`);c.drawImage(i,0,0);var l=c.getImageData(0,0,e,n).data;if(r==3)for(var u=0,d=0;u<o;u+=4,d+=3)s[d]=l[u],s[d+1]=l[u+1],s[d+2]=l[u+2];else if(r==1)for(u=0,d=0;u<o;u+=4,d++)s[d]=l[u];t.resolve({data:s,width:e,height:n})}.bind(this),i.src=`data:image/jpeg;base64,`+i.btoa(n)})},fetchDocument:function(e){e.disableAutoFetch=V.disableAutoFetch,e.chunkedViewerLoading=!!this.pdfDataRangeTransport,this.messageHandler.send(`GetDocRequest`,{source:e,disableRange:V.disableRange,maxImageSize:V.maxImageSize,disableFontFace:V.disableFontFace})},getData:function(e){this.messageHandler.send(`GetData`,null,function(t){e.resolve(t)})},dataLoaded:function(){var e=new V.Promise;return this.messageHandler.send(`DataLoaded`,null,function(t){e.resolve(t)}),e},getPage:function(e,t){var n=e-1;return n in this.pagePromises?this.pagePromises[n]:(t=new V.Promise(`Page `+e),this.pagePromises[n]=t,this.messageHandler.send(`GetPageRequest`,{pageIndex:n}),t)},getPageIndex:function(e){var t=new V.Promise;return this.messageHandler.send(`GetPageIndex`,{ref:e},function(e){t.resolve(e)}),t},getAnnotations:function(e){this.messageHandler.send(`GetAnnotationsRequest`,{pageIndex:e})},getDestinations:function(){var e=new V.Promise;return this.messageHandler.send(`GetDestinations`,null,function(t){e.resolve(t)}),e},startCleanup:function(){this.messageHandler.send(`Cleanup`,null,function(){for(var e=0,t=this.pageCache.length;e<t;e++){var n=this.pageCache[e];n&&n.destroy()}this.commonObjs.clear()}.bind(this))}},e}(),Zs=function(){function e(){this.objs={}}return e.prototype={ensureObj:function(e){if(this.objs[e])return this.objs[e];var t={promise:new q(e),data:null,resolved:!1};return this.objs[e]=t,t},get:function(e,t){if(t)return this.ensureObj(e).promise.then(t),null;var n=this.objs[e];return n&&n.resolved?n.data:(W(`Requesting object that isn't resolved yet `+e),null)},resolve:function(e,t){var n=this.ensureObj(e);n.resolved=!0,n.data=t,n.promise.resolve(t)},isResolved:function(e){var t=this.objs;return!!t[e]&&t[e].resolved},hasData:function(e){return this.isResolved(e)},getData:function(e){var t=this.objs;return t[e]&&t[e].resolved?t[e].data:null},clear:function(){this.objs={}}},e}(),Qs=function(){function e(e){this.internalRenderTask=e,q.call(this)}return e.prototype=Object.create(q.prototype),e.prototype.cancel=function(){this.internalRenderTask.cancel()},e}(),$s=function(){function e(e,t,n,r,i,a){this.callback=e,this.params=t,this.objs=n,this.commonObjs=r,this.operatorListIdx=null,this.operatorList=i,this.pageNumber=a,this.running=!1,this.graphicsReadyCallback=null,this.graphicsReady=!1,this.cancelled=!1}return e.prototype={initalizeGraphics:function(e){if(!this.cancelled){V.pdfBug&&`StepperManager`in gi&&gi.StepperManager.enabled&&(this.stepper=gi.StepperManager.create(this.pageNumber-1),this.stepper.init(this.operatorList),this.stepper.nextBreakPoint=this.stepper.getNextBreakPoint());var t=this.params;this.gfx=new Gs(t.canvasContext,this.commonObjs,this.objs,t.textLayer,t.imageLayer),this.gfx.beginDrawing(t.viewport,e),this.operatorListIdx=0,this.graphicsReady=!0,this.graphicsReadyCallback&&this.graphicsReadyCallback()}},cancel:function(){this.running=!1,this.cancelled=!0,this.callback(`cancelled`)},operatorListChanged:function(){this.graphicsReady?(this.stepper&&this.stepper.updateOperatorList(this.operatorList),this.running||this._continue()):this.graphicsReadyCallback||=this._continue.bind(this)},_continue:function(){this.running=!0,this.cancelled||(this.params.continueCallback?this.params.continueCallback(this._next.bind(this)):this._next())},_next:function(){this.cancelled||(this.operatorListIdx=this.gfx.executeOperatorList(this.operatorList,this.operatorListIdx,this._continue.bind(this),this.stepper),this.operatorListIdx===this.operatorList.argsArray.length&&(this.running=!1,this.operatorList.lastChunk&&(this.gfx.endDrawing(),this.callback())))}},e}(),ec=`pdf2json`,tc=`4.0.2`,nc=`PDF file parser that converts PDF binaries to JSON and text, powered by porting a fork of PDF.JS to Node.js`,rc=[`pdf`,`pdf parser`,`pdf2json`,`convert pdf to json`,`convert pdf form to json`,`server side PDF parser`,`port pdf.js to node.js`,`PDF to text`,`PDF text extractor`,`PDF binary to text`,`PDF form extractor`,`command line utility to parse pdf to json`,`JSON`,`javascript`,`PDF canvas`],ic={name:`Modesty Zhang`,email:`modestyz@hotmail.com`,url:`https://www.google.com/search?q=modesty+zhang+site%3Acodeproject.com`},ac=`https://github.com/modesty/pdf2json`,oc={type:`git`,url:`git://github.com/modesty/pdf2json.git`},sc=`./dist/pdfparser.cjs`,cc=`./dist/pdfparser.js`,lc=`./dist/pdfparser.d.ts`,uc={"test:jest":`jest --config ./jest.config.json --detectOpenHandles`,test:`npm run test:jest && npm run parse-r && npm run parse-fd && npm run test:deno && npm run test:bun`,"test:forms":`cd ./test && sh p2j.forms.sh`,"test:misc":`cd ./test && sh p2j.one.sh misc . "Expected: 16 success, 6 fail exception with stack trace" `,parse:`./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form`,"parse-s":`./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s`,"parse-t":`./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t`,"parse-c":`./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t -c`,"parse-m":`./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t -c -m`,"parse-r":`./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -t -c -m -r`,"parse-fd":`./bin/pdf2json.js -f ./test/pdf/fd/form/ -o ./test/target/fd/form -t -c -m -r`,"parse-tb":`./bin/pdf2json.js -f ./test/pdf/misc/i242_testingWithTable.pdf -o ./test/target/misc`,"parse-tc":`./bin/pdf2json.js -f ./test/pdf/misc/i293_pdfpac.pdf -o ./test/target/misc`,"parse-rectFix":`./bin/pdf2json.js -f ./test/pdf/misc/pr298_rect_fix_from_upstream.pdf -o ./test/target/misc`,"parse-e":`./bin/pdf2json.js -f ./test/pdf/misc/i418_precompilato_fake.pdf -o ./test/target/misc`,"build:rollup":`npx rollup -c ./rollup.config.js`,"build:bundle-pdfjs-base":`node rollup/bundle-pdfjs-base.js`,build:`npm run build:bundle-pdfjs-base && npm run build:rollup`,"build:clean":`rm -rf node_modules && rm -f package-lock.json && npm i && npm run build`,"test:deno":`deno --allow-read --allow-write --allow-net --allow-env --no-check ./bin/pdf2json.js -f ./test/pdf/fd/form/ -o ./test/target/fd/form -t -c -m -r`,"test:bun":`bun ./bin/pdf2json.js -f ./test/pdf/fd/form/ -o ./test/target/fd/form -t -c -m -r`},dc={node:`>=20.18.0`},fc={packageManager:{name:`npm`,version:`>=10.2.3`}},pc=`module`,mc={pdf2json:`bin/pdf2json.js`},hc={},gc=[],_c={"@eslint/js":`^9.37.0`,"@rollup/plugin-commonjs":`^28.0.6`,"@rollup/plugin-eslint":`^9.1.0`,"@rollup/plugin-json":`^6.1.0`,"@rollup/plugin-node-resolve":`^16.0.2`,"@rollup/plugin-terser":`^0.4.4`,"@rollup/plugin-typescript":`^12.1.4`,"@types/node":`^24.7.2`,"@typescript-eslint/eslint-plugin":`^8.46.0`,"@typescript-eslint/parser":`^8.46.0`,eslint:`^9.37.0`,jest:`^30.2.0`,rollup:`^4.52.4`,tslib:`^2.6.2`,typescript:`5.9.3`},vc={typescript:`5.9.3`},yc=[{name:`Modesty Zhang`,email:`modestyz@hotmail.com`,url:`https://www.google.com/search?q=modesty+zhang+site%3Acodeproject.com`}],bc=[],xc={url:`http://github.com/modesty/pdf2json/issues`},Sc=`Apache-2.0`,Cc=`https://github.com/modesty/pdf2json/blob/master/readme.md`,wc={".":{types:`./dist/pdfparser.d.ts`,import:`./dist/pdfparser.js`,require:`./dist/pdfparser.cjs`}},Tc={registry:`https://registry.npmjs.com/`,access:`public`},Ec=[`bin/`,`dist/`,`package.json`,`readme.md`,`license.txt`],Dc=Object.freeze({__proto__:null,author:ic,bin:mc,bugs:xc,bundleDependencies:gc,contributors:bc,default:{name:ec,version:tc,description:nc,keywords:rc,author:ic,homepage:ac,repository:oc,main:sc,module:cc,typings:lc,scripts:uc,engines:dc,devEngines:fc,type:pc,bin:mc,dependencies:hc,bundleDependencies:gc,devDependencies:_c,resolutions:vc,maintainers:yc,contributors:bc,bugs:xc,license:Sc,readme:Cc,exports:wc,publishConfig:Tc,files:Ec},dependencies:hc,description:nc,devDependencies:_c,devEngines:fc,engines:dc,exports:wc,files:Ec,homepage:ac,keywords:rc,license:Sc,main:sc,maintainers:yc,module:cc,name:ec,publishConfig:Tc,readme:Cc,repository:oc,resolutions:vc,scripts:uc,type:pc,typings:lc,version:tc}),Oc=`${ec}@${tc} [${ac}]`,kc=1024,Ac=class e{static tabIndex=0;static isWidgetSupported(e){let t=!1;switch(e.fieldType){case`Tx`:case`Ch`:case`Sig`:t=!0;break;case`Btn`:32768&e.fieldFlags?e.fieldType=`Rd`:65536&e.fieldFlags?e.fieldType=`Btn`:e.fieldType=`Cb`,t=!0;break;default:B.warn(`Unsupported: field.fieldType of ${e.fieldType}`)}return t}static isFormElement(t){let n=!1;return t.subtype===`Widget`?n=e.isWidgetSupported(t):B.warn(`Unsupported: field.type of ${t.subtype}`),n}constructor(e,t,n,r){this.field=e,this.viewport=t,this.Fields=n,this.Boxsets=r}static#e(e){let t=e.slice(0);return e[0]>e[2]&&(t[0]=e[2],t[2]=e[0]),e[1]>e[3]&&(t[1]=e[3],t[3]=e[1]),t}#t(t){let n=this.viewport.convertToViewportRectangle(t.rect),r=e.#e(n),i=r[3]-r[1];return t.fieldType===`Tx`?i>22&&(r[1]+=2,i-=2):t.fieldType!==`Ch`&&(r[1]-=3),i=i>=20?i:20,{x:Jr.toFormX(r[0]),y:Jr.toFormY(r[1]),w:Jr.toFormX(r[2]-r[0]),h:Jr.toFormY(i)}}#n(e){let t=0;1&e.fieldFlags&&(t|=kc),2&e.fieldFlags&&(t|=16);let n={id:{Id:e.fullName,EN:0},TI:e.TI,AM:t};return e.alternativeText&&e.alternativeText.length>1&&(n.TU=e.alternativeText),e.alternativeID&&e.alternativeID.length>1&&(n.TM=e.alternativeID),Object.assign(n,this.#t(e))}#r(e){let t=Object.assign({style:48,T:{Name:e.TName||`alpha`,TypeInfo:{}}},this.#n(e));e.MV&&(t.MV=e.MV),e.fieldValue&&(t.V=e.fieldValue),this.Fields.push(t)}#i(e){let t=Object.assign({style:48,T:{Name:`box`,TypeInfo:{}}},this.#n(e));e.fieldValue&&(t.checked=e.fieldValue!==`Off`),this.Boxsets.push({boxes:[t]})}#a(e){let t=Object.assign({style:48,T:{Name:`box`,TypeInfo:{}}},this.#n(e));t.id.Id=e.value,`checked`in e&&(t.checked=e.checked);let n=this.Boxsets.filter(t=>`id`in t&&`Id`in t.id&&t.id.Id===e.fullName)[0];n&&`boxes`in n?n.boxes.push(t):this.Boxsets.push({boxes:[t],id:{Id:e.fullName,EN:0}})}#o(e){let t=Object.assign({style:48,T:{Name:`link`},FL:{form:{Id:e.FL}}},this.#n(e));this.Fields.push(t)}#s(e){let t=Object.assign({style:48,T:{Name:`alpha`,TypeInfo:{}}},this.#n(e));t.w-=.5,t.PL={V:[],D:[]},e.value.forEach((e,n)=>{Array.isArray(e)?(t.PL.D.push(e[0]),t.PL.V.push(e[1])):(t.PL.D.push(e),t.PL.V.push(e))}),e.fieldValue&&(t.V=e.fieldValue),this.Fields.push(t)}#c(e){let t=Object.assign({style:48,T:{Name:`signature`,TypeInfo:{}}},this.#n(e));e.Sig&&(t.Sig={},e.Sig.Name&&(t.Sig.Name=e.Sig.Name),e.Sig.M&&(t.Sig.M=Jr.dateToIso8601(e.Sig.M)),e.Sig.Location&&(t.Sig.Location=e.Sig.Location),e.Sig.Reason&&(t.Sig.Reason=e.Sig.Reason),e.Sig.ContactInfo&&(t.Sig.ContactInfo=e.Sig.ContactInfo)),this.Fields.push(t)}processField(){switch(this.field.TI=e.tabIndex++,this.field.fieldType){case`Tx`:this.#r(this.field);break;case`Cb`:this.#i(this.field);break;case`Rd`:this.#a(this.field);break;case`Btn`:this.#o(this.field);break;case`Ch`:this.#s(this.field);break;case`Sig`:this.#c(this.field)}this.clean()}clean(){delete this.field,delete this.viewport,delete this.Fields,delete this.Boxsets}static getAllFieldsTypes(e){let t=e=>!!(e.AM&kc),n=e=>({id:e.id.Id,type:e.T.Name,calc:t(e),value:e.V||``}),r=[];return e.Pages.forEach(e=>{e.Boxsets.forEach(e=>{e.boxes.length>1?e.boxes.forEach(n=>{r.push({id:e.id.Id,type:`radio`,calc:t(n),value:n.id.Id})}):r.push(n(e.boxes[0]))}),e.Fields.forEach(e=>r.push(n(e)))}),r}static getAllFieldData(e){let t=e=>!!(e.AM&kc);function n(e){return e.T.Name===`box`?e.checked!==void 0&&e.checked:e.V}let r=e=>({id:e.id.Id,type:e.T.Name,calc:t(e),value:n(e)}),i=[];return e.Pages.forEach(e=>{e.Boxsets.forEach(e=>{e.boxes.length>1?e.boxes.forEach(n=>{n.checked&&i.push({id:e.id.Id,type:`radio`,calc:t(n),value:n.id.Id})}):i.push(r(e.boxes[0]))}),e.Fields.forEach(e=>i.push(r(e)))}),i}},jc=class{xmlData=null;ptiPageArray=[];constructor(){this.xmlData=null,this.ptiPageArray=[]}parseXml(e,t){z.default.readFile(e,`utf8`,(e,n)=>{if(e)t(e);else{this.xmlData=n;for(var r=new zr().parseFromString(this.xmlData).documentElement,i=r?r.getElementsByTagName(`field`):[],a=[],o=0;o<i.length;o++){var s=i[o].getAttribute(`id`),c=i[o].getAttribute(`x`),l=i[o].getAttribute(`y`),u=i[o].getAttribute(`width`),d=i[o].getAttribute(`height`),f=i[o].getAttribute(`xsi:type`),p=i[o].getAttribute(`page`),m=i[o].getAttribute(`fontName`),h=i[o].getAttribute(`fontSize`),g={},_=parseInt(c||`0`)-21,v=parseInt(l||`0`)-20,y=parseInt(String(_))+parseInt(u||`0`)-4,b=parseInt(String(v))+parseInt(d||`0`)-4;g.fieldType=`Tx`,f===`Boolean`?g.fieldType=`Btn`:f!==`SSN`&&f!==`Phone`&&f!==`zip`||(g.TName=f?f.toLowerCase():``),g.alternativeText=``,g.fullName=s||``,g.fontSize=h||``,g.fontName=m||``,g.subtype=`Widget`,g.rect=[_,v,y,b],a.push(g),p&&(this.ptiPageArray[parseInt(p)]=a)}}t()})}getFields(e){return this.ptiPageArray[e]}},Mc;(Mc=V)&&(B.log=Mc.log,B.info=Mc.info,B.warn=Mc.warn,B.error=Mc.error,B.verbosity=Mc.verbosity,B.LogManager=Mc.LogManager,typeof Mc.verbosity==`function`&&Mc.verbosity());var Nc=V,Pc=class e{static RenderingStates={INITIAL:0,RUNNING:1,PAUSED:2,FINISHED:3};id=-1;pdfPage=null;ptiParser=null;scale=0;viewport=null;renderingState=-1;Fields=null;Boxsets=null;ctxCanvas=null;#e(e){if(!Ac.isFormElement(e))return void Nc.warn(`NOT valid form element`,e);new Ac(e,this.viewport,this.Fields,this.Boxsets).processField()}constructor(t,n,r,i){this.id=n,this.pdfPage=t,this.ptiParser=i,this.scale=r||1,this.viewport=this.pdfPage.getViewport(this.scale),this.renderingState=e.RenderingStates.INITIAL,this.Fields=[],this.Boxsets=[],this.ctxCanvas={}}get width(){return Jr.toFormX(this.viewport.width)}get height(){return Jr.toFormY(this.viewport.height)}get HLines(){return this.ctxCanvas.HLines}get VLines(){return this.ctxCanvas.VLines}get Fills(){return this.ctxCanvas.Fills}get Texts(){return this.ctxCanvas.Texts}destroy(){this.pdfPage.destroy(),this.pdfPage=null,this.ptiParser=null,this.Fields=null,this.Boxsets=null,this.ctxCanvas=null}getPagePoint(e,t){return this.viewport.convertToPdfPoint(e,t)}parsePage(t,n){if(this.renderingState!==e.RenderingStates.INITIAL)return void n(`Must be in new state before drawing`);this.renderingState=e.RenderingStates.RUNNING;let r=hi(1,1).getContext(`2d`),i=this.#e.bind(this);function a(a){this.renderingState=e.RenderingStates.FINISHED,a?(z.default.error(a),n(`Error: Page ${this.id+1}: ${a.message}`)):(this.ptiParser&&this.ptiParser.getFields(parseInt(this.id)+1).forEach(e=>i(e)),this.ctxCanvas=r.canvas,this.stats=this.pdfPage.stats,Nc.info(`Success: Page ${this.id+1}`),t())}let o={canvasContext:r,viewport:this.viewport};this.pdfPage.render(o).then(e=>{this.pdfPage.getAnnotations().then(e=>{e.forEach(e=>this.#e(e)),a.call(this,null)},e=>n(`pdfPage.getAnnotations error:${e}`))},e=>a.call(this,e))}},Fc=class extends z.EventEmitter{pdfDocument=null;pages=null;rawTextContents=null;needRawText=null;constructor(e){super(),this.pdfDocument=null,this.pages=[],this.rawTextContents=[],this.needRawText=e}raiseErrorEvent(e){return z.default.error(e),z.default.nextTick(()=>this.emit(`pdfjs_parseDataError`,e)),e}raiseReadyEvent(e){return z.default.nextTick(()=>this.emit(`pdfjs_parseDataReady`,e)),e}parsePDFData(e,t){this.resetCurrentObject();let n={password:t,data:e};Nc.getDocument(n).then(e=>this.load(e,1),e=>this.raiseErrorEvent(e))}tryLoadFieldInfoXML(e){let t=`_fieldInfo.xml`,n=e.replace(`.pdf`,t);n.indexOf(t)<1||!z.default.existsSync(n)||(Nc.info(`About to load fieldInfo XML : ${n}`),this.ptiParser=new jc,this.ptiParser.parseXml(n,e=>{e?(Nc.warn(`fieldInfo XML Error: ${JSON.stringify(e)}`),this.ptiParser=null):Nc.info(`fieldInfo XML loaded.`)}))}load(e,t){return this.pdfDocument=e,this.loadMetaData().then(()=>this.loadPages(),e=>this.raiseErrorEvent(`loadMetaData error: ${e}`))}loadMetaData(){return this.pdfDocument.getMetadata().then(e=>{this.documentInfo=e.info,this.metadata=e.metadata?.metadata??{},this.parseMetaData()},e=>this.raiseErrorEvent(`pdfDocument.getMetadata error: ${e}`))}parseMetaData(){let e={Transcoder:Oc,Meta:{...this.documentInfo,Metadata:this.metadata}};this.raiseReadyEvent(e),this.emit(`readable`,e)}loadPages(){let e=this.pdfDocument.numPages,t=[];for(let n=1;n<=e;n++)t.push(this.pdfDocument.getPage(n));let n=Nc.Promise.all(t);return Nc.info(`PDF loaded. pagesCount = ${e}`),n.then(e=>this.parsePage(e,0,1.5),e=>this.raiseErrorEvent(`pagesPromise error: ${e}`))}parsePage(e,t,n){Nc.info(`start to parse page:${t+1}`);let r=e[t],i=new Pc(r,t,n,this.ptiParser);function a(){Nc.info(`complete parsing page:${t+1}`),t===this.pdfDocument.numPages-1?(this.raiseReadyEvent({Pages:this.pages}),z.default.nextTick(()=>this.raiseReadyEvent(null)),this.emit(`data`,null)):z.default.nextTick(()=>this.parsePage(e,++t,n))}i.parsePage(e=>{let n={Width:i.width,Height:i.height,HLines:i.HLines,VLines:i.VLines,Fills:i.Fills,Texts:i.Texts,Fields:i.Fields,Boxsets:i.Boxsets};this.pages.push(n),this.emit(`data`,n),this.needRawText?r.getTextContent().then(e=>{this.rawTextContents.push(e),Nc.info(`complete parsing raw text content:${t+1}`),a.call(this)},e=>this.raiseErrorEvent(`pdfPage.getTextContent error: ${e}`)):a.call(this)},e=>this.raiseErrorEvent(e))}getRawTextContent(){let e=``;return this.needRawText&&this.rawTextContents.forEach((t,n)=>{let r=null;t.bidiTexts.forEach((t,n)=>{let i=r?.15*(r.fontSize||12):2;if(r&&Math.abs(t.y-r.y)<=i){let{spaceWidth:e,startX:n,width:i,textHScale:a}=r,o=n+i*a,s=t.x-o,c=e*a;if(c>0&&s>.3*c){let e=Math.round(s/c);r.str+=` `.repeat(Math.max(1,e))}r.str+=t.str,r.startX=t.x,r.width=t.width,r.spaceWidth=t.spaceWidth,r.textHScale=t.textHScale}else r&&(e+=`${r.str}\r\n`),r={str:t.str,y:t.y,startX:t.x,width:t.width,spaceWidth:t.spaceWidth,textHScale:t.textHScale,fontSize:t.fontSize}}),r&&(e+=r.str),e+=`\r\n----------------Page (${n}) Break----------------\r\n`}),e}getAllFieldsTypes(){return Ac.getAllFieldsTypes({Pages:this.pages||[]})}getAllFieldData(){return Ac.getAllFieldData({Pages:this.pages||[]})}getMergedTextBlocksIfNeeded(){for(let e=0;e<this.pages.length;e++){let t=null,n=this.pages[e];n.Texts.sort(ei.compareBlockPos),n.Texts=n.Texts.filter((e,t)=>{let r=t>0&&ei.areDuplicateBlocks(n.Texts[t-1],e);return r&&Nc.info(`skipped: dup text block: ${e.R[0].T}`),!r});for(let e=0;e<n.Texts.length;e++){let r=n.Texts[e];if(t)if(ei.areAdjacentBlocks(t,r)&&ei.haveSameStyle(t,r)){let e=t.R[0].T,n=r.R[0].T;t.R[0].T+=r.R[0].T,t.w+=r.w,r.merged=!0;let i=t.R[0].T;Nc.info(`merged text block: ${e} + ${n} => ${i}`),t=null}else t=r;else t=r}n.Texts=n.Texts.filter(e=>!e.merged)}return{Pages:this.pages}}resetCurrentObject(){this.pdfDocument&&this.pdfDocument.destroy(),this.pdfDocument=null,this.pages=[],this.rawTextContents=[]}destroy(){this.removeAllListeners(),this.pdfDocument&&this.pdfDocument.destroy(),this.pdfDocument=null,this.pages=null,this.rawTextContents=null}},Ic=class extends z.Transform{static createContentStream(e){let t=new z.Readable({objectMode:!0});return t.push(e),t.push(null),t}static createOutputStream(e,t,n){let r=z.default.createWriteStream(e,{encoding:`utf8`});return r.on(`finish`,()=>t(e)),r.on(`error`,e=>n(e)),r}#e=null;#t=[];#n={Pages:[]};#r=null;constructor(e,t){super(t),this.#e=e,this.#t=[],this.#e.on(`readable`,e=>this.#n={...e,Pages:[]}),this.#e.on(`data`,e=>{e?this.#n.Pages.push(e):(this.push(this.#n),this.#r())})}_transform(e,t,n){this.#t.push(z.Buffer.isBuffer(e)?e:z.Buffer.from(e,t)),n()}_flush(e){this.#r=e,this.#e.parseBuffer(z.Buffer.concat(this.#t))}_destroy(){super.removeAllListeners(),this.#e=null,this.#t=[]}},Lc=class extends z.Transform{constructor(e){super(e),this._readableState.objectMode=!1,this._writableState.objectMode=!0}_transform(e,t,n){this.push(JSON.stringify(e),`utf8`),n()}},Rc=class e extends z.EventEmitter{static get colorDict(){return Wr}static get fontFaceDict(){return Gr}static get fontStyleDict(){return Kr}static get PDFUnit(){return Jr}static get ParserStream(){return Ic}static get StringifyStream(){return Lc}static get pkInfo(){return Dc}static get _PARSER_SIG(){return Oc}static#e=10;static#t={};static#n=0;#r=``;#i=null;#a=null;#o=null;#s=null;#c=null;#l=!1;constructor(t,n,r){super(),e.#n++,this.#i=t,this.#a=null,this.#o=null,this.#s=null,this.#l=!1,this.#c=new Fc(n),this.#r=r}#u(e){e?this.#s={...this.#s||{},...e}:(Nc.info(`PDF parsing completed.`),this.emit(`pdfParser_dataReady`,this.#s))}#d(e){this.#s=null,this.emit(`pdfParser_dataError`,{parserError:e})}#f(t=null){this.#s=null,this.#c?(this.#c.on(`pdfjs_parseDataReady`,e=>this.#u(e)),this.#c.on(`pdfjs_parseDataError`,e=>this.#d(e)),this.#c.on(`readable`,e=>this.emit(`readable`,e)),this.#c.on(`data`,e=>this.emit(`data`,e)),this.#c.on(`error`,e=>this.#d(e)),this.#c.parsePDFData(t||e.#t[this.binBufferKey],this.#r)):this.#d(Error(`PDFJS parser not initialized`))}#p(){if(this.binBufferKey in e.#t)return this.#f(),!0;let t=Object.keys(e.#t);if(t.length>e.#e){let n=t[e.#n%e.#e];e.#t[n]=null,delete e.#t[n],Nc.info(`re-cycled cache for ${n}`)}return!1}get data(){return this.#s}get binBufferKey(){return this.#a===null||this.#o===null?``:this.#a+this.#o}createParserStream(){return new Ic(this,{objectMode:!0,bufferSize:65536})}async loadPDF(t,n){Nc.verbosity(n||1),Nc.info(`about to load PDF file ${t}`),this.#a=t;try{if(this.#o=z.default.statSync(t).mtimeMs,this.#l&&this.#c&&this.#c.tryLoadFieldInfoXML(t),this.#p())return;e.#t[this.binBufferKey]=await(0,z.readFile)(t),Nc.info(`Load OK: ${t}`),this.#f()}catch(e){Nc.error(`Load Failed: ${t} - ${e}`),this.emit(`pdfParser_dataError`,e)}}parseBuffer(e,t){if(Nc.verbosity(t||1),!e?.length||!e.buffer)return void Nc.error(`Error: empty PDF buffer, nothing to parse.`);let n=e;n.buffer.byteLength!==n.length&&(n=z.Buffer.from(n.buffer,0,n.byteLength)),this.#f(n)}getRawTextContent(){return this.#c?.getRawTextContent()||``}getRawTextContentStream(){return Ic.createContentStream(this.getRawTextContent())}getAllFieldsTypes(){return this.#c?.getAllFieldsTypes()||[]}getAllFieldData(){return this.#c?.getAllFieldData()||[]}getAllFieldsTypesStream(){return Ic.createContentStream(this.getAllFieldsTypes())}getMergedTextBlocksIfNeeded(){return this.#c?.getMergedTextBlocksIfNeeded()||{}}getMergedTextBlocksStream(){return Ic.createContentStream(this.getMergedTextBlocksIfNeeded())}resetPDFJS(t){this.#c?.destroy(),this.#c=new Fc(t),e.#n++}destroy(){super.removeAllListeners(),this.#i&&=(this.#i.destroy?.(),null),this.#a=null,this.#o=null,this.#s=null,this.#l=!1,this.#c?.destroy(),this.#c=null,e.#n--}};async function zc(e){return new Promise((t,n)=>{let r=new Rc;r.on(`pdfParser_dataError`,e=>n(e)),r.on(`pdfParser_dataReady`,e=>{t({pages:Bc(e),metadata:e.Meta||{}})}),r.parseBuffer(e)})}function Bc(e){return(e.Pages||e.data?.Pages||[]).map((e,t)=>{let n=(e.Texts||[]).map(e=>{let t=e.R?.[0],n=``;if(t?.T)try{n=decodeURIComponent(t.T)}catch{n=t.T}let r=t?.TS||[0,0,0,0];return{text:n,x:e.x||0,y:e.y||0,width:e.w||0,fontSize:r[1]||0,isBold:r[2]===1,isItalic:r[3]===1}}),r=(e.HLines||[]).map(e=>({x:e.x||0,y:e.y||0,length:e.l||0,width:e.w||0})),i=(e.VLines||[]).map(e=>({x:e.x||0,y:e.y||0,length:e.l||0,width:e.w||0}));return{pageNumber:t+1,width:e.Width||0,height:e.Height||0,texts:n,hLines:r,vLines:i}})}var Vc={34(e,t,n){var r=n(4901);e.exports=function(e){return typeof e==`object`?e!==null:r(e)}},81(e,t,n){var r=n(9565),i=n(9306),a=n(8551),o=n(6823),s=n(851),c=TypeError;e.exports=function(e,t){var n=arguments.length<2?s(e):t;if(i(n))return a(r(n,e));throw new c(o(e)+` is not iterable`)}},116(e,t,n){var r=n(6518),i=n(9565),a=n(2652),o=n(9306),s=n(8551),c=n(1767),l=n(9539),u=n(4549)(`find`,TypeError);r({target:`Iterator`,proto:!0,real:!0,forced:u},{find:function(e){s(this);try{o(e)}catch(e){l(this,`throw`,e)}if(u)return i(u,this,e);var t=c(this),n=0;return a(t,function(t,r){if(e(t,n++))return r(t)},{IS_RECORD:!0,INTERRUPTED:!0}).result}})},283(e,t,n){var r=n(9504),i=n(9039),a=n(4901),o=n(9297),s=n(3724),c=n(350).CONFIGURABLE,l=n(3706),u=n(1181),d=u.enforce,f=u.get,p=String,m=Object.defineProperty,h=r(``.slice),g=r(``.replace),_=r([].join),v=s&&!i(function(){return m(function(){},`length`,{value:8}).length!==8}),y=String(String).split(`String`),b=e.exports=function(e,t,n){h(p(t),0,7)===`Symbol(`&&(t=`[`+g(p(t),/^Symbol\(([^)]*)\).*$/,`$1`)+`]`),n&&n.getter&&(t=`get `+t),n&&n.setter&&(t=`set `+t),(!o(e,`name`)||c&&e.name!==t)&&(s?m(e,`name`,{value:t,configurable:!0}):e.name=t),v&&n&&o(n,`arity`)&&e.length!==n.arity&&m(e,`length`,{value:n.arity});try{n&&o(n,`constructor`)&&n.constructor?s&&m(e,`prototype`,{writable:!1}):e.prototype&&=void 0}catch{}var r=d(e);return o(r,`source`)||(r.source=_(y,typeof t==`string`?t:``)),e};Function.prototype.toString=b(function(){return a(this)&&f(this).source||l(this)},`toString`)},350(e,t,n){var r=n(3724),i=n(9297),a=Function.prototype,o=r&&Object.getOwnPropertyDescriptor,s=i(a,`name`);e.exports={EXISTS:s,PROPER:s&&(function(){}).name===`something`,CONFIGURABLE:s&&(!r||r&&o(a,`name`).configurable)}},397(e,t,n){e.exports=n(7751)(`document`,`documentElement`)},421(e){e.exports={}},456(e,t,n){var r=n(6518),i=n(4576),a=n(9504),o=n(4154),s=n(5169),c=a(1.1.toString),l=i.Uint8Array,u=!l||!l.prototype.toHex||!(function(){try{return new l([255,255,255,255,255,255,255,255]).toHex()===`ffffffffffffffff`}catch{return!1}})();l&&r({target:`Uint8Array`,proto:!0,forced:u},{toHex:function(){o(this),s(this.buffer);for(var e=``,t=0,n=this.length;t<n;t++){var r=c(this[t],16);e+=r.length===1?`0`+r:r}return e}})},507(e,t,n){var r=n(9565);e.exports=function(e,t,n){for(var i=n?e:e.iterator,a=e.next,o,s;!(o=r(a,i)).done;)if(s=t(o.value),s!==void 0)return s}},531(e,t,n){var r=n(6518),i=n(9565),a=n(9306),o=n(8551),s=n(1767),c=n(8646),l=n(9462),u=n(9539),d=n(6395),f=n(684),p=n(4549),m=!d&&!f(`flatMap`,function(){}),h=!d&&!m&&p(`flatMap`,TypeError),g=d||m||h,_=l(function(){for(var e=this.iterator,t=this.mapper,n,r;;){if(r=this.inner)try{if(n=o(i(r.next,r.iterator)),!n.done)return n.value;this.inner=null}catch(t){u(e,`throw`,t)}if(n=o(i(this.next,e)),this.done=!!n.done)return;try{this.inner=c(t(n.value,this.counter++),!1)}catch(t){u(e,`throw`,t)}}});r({target:`Iterator`,proto:!0,real:!0,forced:g},{flatMap:function(e){o(this);try{a(e)}catch(e){u(this,`throw`,e)}return h?i(h,this,e):new _(s(this),{mapper:e,inner:null})}})},616(e,t,n){e.exports=!n(9039)(function(){var e=(function(){}).bind();return typeof e!=`function`||e.hasOwnProperty(`prototype`)})},655(e,t,n){var r=n(6955),i=String;e.exports=function(e){if(r(e)===`Symbol`)throw TypeError(`Cannot convert a Symbol value to a string`);return i(e)}},679(e,t,n){var r=n(1625),i=TypeError;e.exports=function(e,t){if(r(t,e))return e;throw new i(`Incorrect invocation`)}},684(e){e.exports=function(e,t){var n=typeof Iterator==`function`&&Iterator.prototype[e];if(n)try{n.call({next:null},t).next()}catch{return!0}}},741(e){var t=Math.ceil,n=Math.floor;e.exports=Math.trunc||function(e){var r=+e;return(r>0?n:t)(r)}},757(e,t,n){var r=n(7751),i=n(4901),a=n(1625),o=n(7040),s=Object;e.exports=o?function(e){return typeof e==`symbol`}:function(e){var t=r(`Symbol`);return i(t)&&a(t.prototype,s(e))}},851(e,t,n){var r=n(6955),i=n(5966),a=n(4117),o=n(6269),s=n(8227)(`iterator`);e.exports=function(e){if(!a(e))return i(e,s)||i(e,`@@iterator`)||o[r(e)]}},944(e){var t=TypeError;e.exports=function(e){var n=e&&e.alphabet;if(n===void 0||n===`base64`||n===`base64url`)return n||`base64`;throw new t("Incorrect `alphabet` option")}},1072(e,t,n){var r=n(1828),i=n(8727);e.exports=Object.keys||function(e){return r(e,i)}},1103(e){e.exports=function(e){try{return{error:!1,value:e()}}catch(e){return{error:!0,value:e}}}},1108(e,t,n){var r=n(6955);e.exports=function(e){var t=r(e);return t===`BigInt64Array`||t===`BigUint64Array`}},1148(e,t,n){var r=n(6518),i=n(9565),a=n(2652),o=n(9306),s=n(8551),c=n(1767),l=n(9539),u=n(4549)(`every`,TypeError);r({target:`Iterator`,proto:!0,real:!0,forced:u},{every:function(e){s(this);try{o(e)}catch(e){l(this,`throw`,e)}if(u)return i(u,this,e);var t=c(this),n=0;return!a(t,function(t,r){if(!e(t,n++))return r()},{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},1181(e,t,n){var r=n(8622),i=n(4576),a=n(34),o=n(6699),s=n(9297),c=n(7629),l=n(6119),u=n(421),d=`Object already initialized`,f=i.TypeError,p=i.WeakMap,m,h,g,_=function(e){return g(e)?h(e):m(e,{})},v=function(e){return function(t){var n;if(!a(t)||(n=h(t)).type!==e)throw new f(`Incompatible receiver, `+e+` required`);return n}};if(r||c.state){var y=c.state||=new p;y.get=y.get,y.has=y.has,y.set=y.set,m=function(e,t){if(y.has(e))throw new f(d);return t.facade=e,y.set(e,t),t},h=function(e){return y.get(e)||{}},g=function(e){return y.has(e)}}else{var b=l(`state`);u[b]=!0,m=function(e,t){if(s(e,b))throw new f(d);return t.facade=e,o(e,b,t),t},h=function(e){return s(e,b)?e[b]:{}},g=function(e){return s(e,b)}}e.exports={set:m,get:h,has:g,enforce:_,getterFor:v}},1291(e,t,n){var r=n(741);e.exports=function(e){var t=+e;return t!==t||t===0?0:r(t)}},1385(e,t,n){var r=n(9539);e.exports=function(e,t,n){for(var i=e.length-1;i>=0;i--)if(e[i]!==void 0)try{n=r(e[i].iterator,t,n)}catch(e){t=`throw`,n=e}if(t===`throw`)throw n;return n}},1548(e,t,n){var r=n(4576),i=n(9039),a=n(9519),o=n(4215),s=r.structuredClone;e.exports=!!s&&!i(function(){if(o===`DENO`&&a>92||o===`NODE`&&a>94||o===`BROWSER`&&a>97)return!1;var e=new ArrayBuffer(8),t=s(e,{transfer:[e]});return e.byteLength!==0||t.byteLength!==8})},1549(e,t,n){n(6632)},1625(e,t,n){e.exports=n(9504)({}.isPrototypeOf)},1689(e,t,n){var r=n(6518),i=n(4576),a=n(8745),o=n(7680),s=n(6043),c=n(9306),l=n(1103),u=i.Promise,d=!1;r({target:`Promise`,stat:!0,forced:!u||!u.try||l(function(){u.try(function(e){d=e===8},8)}).error||!d},{try:function(e){var t=arguments.length>1?o(arguments,1):[],n=s.f(this),r=l(function(){return a(c(e),void 0,t)});return(r.error?n.reject:n.resolve)(r.value),n.promise}})},1698(e,t,n){var r=n(6518),i=n(4204),a=n(9835);r({target:`Set`,proto:!0,real:!0,forced:!n(4916)(`union`)||!a(`union`)},{union:i})},1701(e,t,n){var r=n(6518),i=n(9565),a=n(9306),o=n(8551),s=n(1767),c=n(9462),l=n(6319),u=n(9539),d=n(684),f=n(4549),p=n(6395),m=!p&&!d(`map`,function(){}),h=!p&&!m&&f(`map`,TypeError),g=p||m||h,_=c(function(){var e=this.iterator,t=o(i(this.next,e));if(!(this.done=!!t.done))return l(e,this.mapper,[t.value,this.counter++],!0)});r({target:`Iterator`,proto:!0,real:!0,forced:g},{map:function(e){o(this);try{a(e)}catch(e){u(this,`throw`,e)}return h?i(h,this,e):new _(s(this),{mapper:e})}})},1767(e){e.exports=function(e){return{iterator:e,next:e.next,done:!1}}},1828(e,t,n){var r=n(9504),i=n(9297),a=n(5397),o=n(9617).indexOf,s=n(421),c=r([].push);e.exports=function(e,t){var n=a(e),r=0,l=[],u;for(u in n)!i(s,u)&&i(n,u)&&c(l,u);for(;t.length>r;)i(n,u=t[r++])&&(~o(l,u)||c(l,u));return l}},2106(e,t,n){var r=n(283),i=n(4913);e.exports=function(e,t,n){return n.get&&r(n.get,t,{getter:!0}),n.set&&r(n.set,t,{setter:!0}),i.f(e,t,n)}},2140(e,t,n){var r=n(8227)(`toStringTag`),i={};i[r]=`z`,e.exports=String(i)===`[object z]`},2195(e,t,n){var r=n(9504),i=r({}.toString),a=r(``.slice);e.exports=function(e){return a(i(e),8,-1)}},2211(e,t,n){e.exports=!n(9039)(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype})},2303(e,t,n){var r=n(4576),i=n(9504),a=r.Uint8Array,o=r.SyntaxError,s=r.parseInt,c=Math.min,l=/[^\da-f]/i,u=i(l.exec),d=i(``.slice);e.exports=function(e,t){var n=e.length;if(n%2!=0)throw new o(`String should be an even number of characters`);for(var r=t?c(t.length,n/2):n/2,i=t||new a(r),f=0,p=0;p<r;){var m=d(e,f,f+=2);if(u(l,m))throw new o(`String should only contain hex characters`);i[p++]=s(m,16)}return{bytes:i,read:f}}},2360(e,t,n){var r=n(8551),i=n(6801),a=n(8727),o=n(421),s=n(397),c=n(4055),l=n(6119),u=`>`,d=`<`,f=`prototype`,p=`script`,m=l(`IE_PROTO`),h=function(){},g=function(e){return d+p+u+e+d+`/`+p+u},_=function(e){e.write(g(``)),e.close();var t=e.parentWindow.Object;return e=null,t},v=function(){var e=c(`iframe`),t=`java`+p+`:`,n;return e.style.display=`none`,s.appendChild(e),e.src=String(t),n=e.contentWindow.document,n.open(),n.write(g(`document.F=Object`)),n.close(),n.F},y,b=function(){try{y=new ActiveXObject(`htmlfile`)}catch{}b=typeof document<`u`?document.domain&&y?_(y):v():_(y);for(var e=a.length;e--;)delete b[f][a[e]];return b()};o[m]=!0,e.exports=Object.create||function(e,t){var n;return e===null?n=b():(h[f]=r(e),n=new h,h[f]=null,n[m]=e),t===void 0?n:i.f(n,t)}},2475(e,t,n){var r=n(6518),i=n(8527);r({target:`Set`,proto:!0,real:!0,forced:!n(4916)(`isSupersetOf`,function(e){return!e})},{isSupersetOf:i})},2489(e,t,n){var r=n(6518),i=n(9565),a=n(9306),o=n(8551),s=n(1767),c=n(9462),l=n(6319),u=n(6395),d=n(9539),f=n(684),p=n(4549),m=!u&&!f(`filter`,function(){}),h=!u&&!m&&p(`filter`,TypeError),g=u||m||h,_=c(function(){for(var e=this.iterator,t=this.predicate,n=this.next,r,a,s;;){if(r=o(i(n,e)),a=this.done=!!r.done,a)return;if(s=r.value,l(e,t,[s,this.counter++],!0))return s}});r({target:`Iterator`,proto:!0,real:!0,forced:g},{filter:function(e){o(this);try{a(e)}catch(e){d(this,`throw`,e)}return h?i(h,this,e):new _(s(this),{predicate:e})}})},2529(e){e.exports=function(e,t){return{value:e,done:t}}},2603(e,t,n){var r=n(655);e.exports=function(e,t){return e===void 0?arguments.length<2?``:t:r(e)}},2652(e,t,n){var r=n(6080),i=n(9565),a=n(8551),o=n(6823),s=n(4209),c=n(6198),l=n(1625),u=n(81),d=n(851),f=n(9539),p=TypeError,m=function(e,t){this.stopped=e,this.result=t},h=m.prototype;e.exports=function(e,t,n){var g=n&&n.that,_=!!(n&&n.AS_ENTRIES),v=!!(n&&n.IS_RECORD),y=!!(n&&n.IS_ITERATOR),b=!!(n&&n.INTERRUPTED),x=r(t,g),S,C,w,T,E,D,O,k=function(e){return S&&f(S,`normal`),new m(!0,e)},A=function(e){return _?(a(e),b?x(e[0],e[1],k):x(e[0],e[1])):b?x(e,k):x(e)};if(v)S=e.iterator;else if(y)S=e;else{if(C=d(e),!C)throw new p(o(e)+` is not iterable`);if(s(C)){for(w=0,T=c(e);T>w;w++)if(E=A(e[w]),E&&l(h,E))return E;return new m(!1)}S=u(e,C)}for(D=v?e.next:S.next;!(O=i(D,S)).done;){try{E=A(O.value)}catch(e){f(S,`throw`,e)}if(typeof E==`object`&&E&&l(h,E))return E}return new m(!1)}},2777(e,t,n){var r=n(9565),i=n(34),a=n(757),o=n(5966),s=n(4270),c=n(8227),l=TypeError,u=c(`toPrimitive`);e.exports=function(e,t){if(!i(e)||a(e))return e;var n=o(e,u),c;if(n){if(t===void 0&&(t=`default`),c=r(n,e,t),!i(c)||a(c))return c;throw new l(`Can't convert object to primitive value`)}return t===void 0&&(t=`number`),s(e,t)}},2787(e,t,n){var r=n(9297),i=n(4901),a=n(8981),o=n(6119),s=n(2211),c=o(`IE_PROTO`),l=Object,u=l.prototype;e.exports=s?l.getPrototypeOf:function(e){var t=a(e);if(r(t,c))return t[c];var n=t.constructor;return i(n)&&t instanceof n?n.prototype:t instanceof l?u:null}},2796(e,t,n){var r=n(9039),i=n(4901),a=/#|\.prototype\./,o=function(e,t){var n=c[s(e)];return n===u?!0:n===l?!1:i(t)?r(t):!!t},s=o.normalize=function(e){return String(e).replace(a,`.`).toLowerCase()},c=o.data={},l=o.NATIVE=`N`,u=o.POLYFILL=`P`;e.exports=o},2804(e){var t=`ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789`,n=t+`+/`,r=t+`-_`,i=function(e){for(var t={},n=0;n<64;n++)t[e.charAt(n)]=n;return t};e.exports={i2c:n,c2i:i(n),i2cUrl:r,c2iUrl:i(r)}},2812(e){var t=TypeError;e.exports=function(e,n){if(e<n)throw new t(`Not enough arguments`);return e}},2839(e,t,n){var r=n(4576).navigator,i=r&&r.userAgent;e.exports=i?String(i):``},2967(e,t,n){var r=n(6706),i=n(34),a=n(7750),o=n(3506);e.exports=Object.setPrototypeOf||(`__proto__`in{}?function(){var e=!1,t={},n;try{n=r(Object.prototype,`__proto__`,`set`),n(t,[]),e=t instanceof Array}catch{}return function(t,r){return a(t),o(r),i(t)&&(e?n(t,r):t.__proto__=r),t}}():void 0)},3068(e,t,n){var r=n(6518),i=n(9504),a=n(2652),o=RangeError,s=TypeError,c=1/0,l=NaN,u=Math.abs,d=Math.pow,f=i([].push),p=d(2,1023),m=d(2,53)-1,h=Number.MAX_VALUE,g=d(2,971),_={},v={},y={},b={},x={},S=function(e,t){var n=e+t;return{hi:n,lo:t-(n-e)}};r({target:`Math`,stat:!0},{sumPrecise:function(e){var t=[],n=0,r=b;switch(a(e,function(e){if(++n>=m)throw new o(`Maximum allowed index exceeded`);if(typeof e!=`number`)throw new s(`Value is not a number`);r!==_&&(e===e?e===c?r=r===v?_:y:e===-c?r=r===y?_:v:(e!==0||1/e===c)&&(r===b||r===x)&&(r=x,f(t,e)):r=_)}),r){case _:return l;case v:return-c;case y:return c;case b:return-0}for(var i=[],d=0,C,w,T,E,D,O,k=0;k<t.length;k++){C=t[k];for(var A=0,j=0;j<i.length;j++){if(w=i[j],u(C)<u(w)&&(O=C,C=w,w=O),T=S(C,w),E=T.hi,D=T.lo,u(E)===c){var M=E===c?1:-1;d+=M,C=C-M*p-M*p,u(C)<u(w)&&(O=C,C=w,w=O),T=S(C,w),E=T.hi,D=T.lo}D!==0&&(i[A++]=D),C=E}i.length=A,C!==0&&f(i,C)}var N=i.length-1;if(E=0,D=0,d!==0){var P=N>=0?i[N]:0;if(N--,u(d)>1||d>0&&P>0||d<0&&P<0)return d>0?c:-c;if(T=S(d*p,P/2),E=T.hi,D=T.lo,D*=2,u(2*E)===c)return E>0?E===p&&D===-(g/2)&&N>=0&&i[N]<0?h:c:E===-p&&D===g/2&&N>=0&&i[N]>0?-h:-c;D!==0&&(i[++N]=D,D=0),E*=2}for(;N>=0&&(T=S(E,i[N--]),E=T.hi,D=T.lo,D===0););return N>=0&&(D<0&&i[N]<0||D>0&&i[N]>0)&&(w=D*2,C=E+w,w===C-E&&(E=C)),E}})},3167(e,t,n){var r=n(4901),i=n(34),a=n(2967);e.exports=function(e,t,n){var o,s;return a&&r(o=t.constructor)&&o!==n&&i(s=o.prototype)&&s!==n.prototype&&a(e,s),e}},3238(e,t,n){var r=n(4576),i=n(7811),a=n(7394),o=r.DataView;e.exports=function(e){if(!i||a(e)!==0)return!1;try{return new o(e),!1}catch{return!0}}},3392(e,t,n){var r=n(9504),i=0,a=Math.random(),o=r(1.1.toString);e.exports=function(e){return`Symbol(`+(e===void 0?``:e)+`)_`+o(++i+a,36)}},3440(e,t,n){var r=n(7080),i=n(4402),a=n(9286),o=n(5170),s=n(3789),c=n(8469),l=n(507),u=i.has,d=i.remove;e.exports=function(e){var t=r(this),n=s(e),i=a(t);return o(t)<=n.size?c(t,function(e){n.includes(e)&&d(i,e)}):l(n.getIterator(),function(e){u(i,e)&&d(i,e)}),i}},3463(e){var t=TypeError;e.exports=function(e){if(typeof e==`string`)return e;throw new t(`Argument is not a string`)}},3506(e,t,n){var r=n(3925),i=String,a=TypeError;e.exports=function(e){if(r(e))return e;throw new a(`Can't set `+i(e)+` as a prototype`)}},3579(e,t,n){var r=n(6518),i=n(9565),a=n(2652),o=n(9306),s=n(8551),c=n(1767),l=n(9539),u=n(4549)(`some`,TypeError);r({target:`Iterator`,proto:!0,real:!0,forced:u},{some:function(e){s(this);try{o(e)}catch(e){l(this,`throw`,e)}if(u)return i(u,this,e);var t=c(this),n=0;return a(t,function(t,r){if(e(t,n++))return r()},{IS_RECORD:!0,INTERRUPTED:!0}).stopped}})},3650(e,t,n){var r=n(7080),i=n(4402),a=n(9286),o=n(3789),s=n(507),c=i.add,l=i.has,u=i.remove;e.exports=function(e){var t=r(this),n=o(e).getIterator(),i=a(t);return s(n,function(e){l(t,e)?u(i,e):c(i,e)}),i}},3706(e,t,n){var r=n(9504),i=n(4901),a=n(7629),o=r(Function.toString);i(a.inspectSource)||(a.inspectSource=function(e){return o(e)}),e.exports=a.inspectSource},3717(e,t){t.f=Object.getOwnPropertySymbols},3724(e,t,n){e.exports=!n(9039)(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})},3789(e,t,n){var r=n(9306),i=n(8551),a=n(9565),o=n(1291),s=n(1767),c=`Invalid size`,l=RangeError,u=TypeError,d=Math.max,f=function(e,t){this.set=e,this.size=d(t,0),this.has=r(e.has),this.keys=r(e.keys)};f.prototype={getIterator:function(){return s(i(a(this.keys,this.set)))},includes:function(e){return a(this.has,this.set,e)}},e.exports=function(e){i(e);var t=+e.size;if(t!==t)throw new u(c);var n=o(t);if(n<0)throw new l(c);return new f(e,n)}},3838(e,t,n){var r=n(7080),i=n(5170),a=n(8469),o=n(3789);e.exports=function(e){var t=r(this),n=o(e);return i(t)>n.size?!1:a(t,function(e){if(!n.includes(e))return!1},!0)!==!1}},3853(e,t,n){var r=n(6518),i=n(4449);r({target:`Set`,proto:!0,real:!0,forced:!n(4916)(`isDisjointFrom`,function(e){return!e})},{isDisjointFrom:i})},3925(e,t,n){var r=n(34);e.exports=function(e){return r(e)||e===null}},3972(e,t,n){var r=n(34),i=String,a=TypeError;e.exports=function(e){if(e===void 0||r(e))return e;throw new a(i(e)+` is not an object or undefined`)}},4055(e,t,n){var r=n(4576),i=n(34),a=r.document,o=i(a)&&i(a.createElement);e.exports=function(e){return o?a.createElement(e):{}}},4114(e,t,n){var r=n(6518),i=n(8981),a=n(6198),o=n(4527),s=n(6837);r({target:`Array`,proto:!0,arity:1,forced:n(9039)(function(){return[].push.call({length:4294967296},1)!==4294967297})||!function(){try{Object.defineProperty([],`length`,{writable:!1}).push()}catch(e){return e instanceof TypeError}}()},{push:function(e){var t=i(this),n=a(t),r=arguments.length;s(n+r);for(var c=0;c<r;c++)t[n]=arguments[c],n++;return o(t,n),n}})},4117(e){e.exports=function(e){return e==null}},4149(e){var t=RangeError;e.exports=function(e){if(e===e)return e;throw new t(`NaN is not allowed`)}},4154(e,t,n){var r=n(6955),i=TypeError;e.exports=function(e){if(r(e)===`Uint8Array`)return e;throw new i(`Argument is not an Uint8Array`)}},4204(e,t,n){var r=n(7080),i=n(4402).add,a=n(9286),o=n(3789),s=n(507);e.exports=function(e){var t=r(this),n=o(e).getIterator(),c=a(t);return s(n,function(e){i(c,e)}),c}},4209(e,t,n){var r=n(8227),i=n(6269),a=r(`iterator`),o=Array.prototype;e.exports=function(e){return e!==void 0&&(i.Array===e||o[a]===e)}},4215(e,t,n){var r=n(4576),i=n(2839),a=n(2195),o=function(e){return i.slice(0,e.length)===e};e.exports=(function(){return o(`Bun/`)?`BUN`:o(`Cloudflare-Workers`)?`CLOUDFLARE`:o(`Deno/`)?`DENO`:o(`Node.js/`)?`NODE`:r.Bun&&typeof Bun.version==`string`?`BUN`:r.Deno&&typeof Deno.version==`object`?`DENO`:a(r.process)===`process`?`NODE`:r.window&&r.document?`BROWSER`:`REST`})()},4226(e,t,n){var r=n(6518),i=n(4576),a=n(3463),o=n(4154),s=n(5169),c=n(2303);i.Uint8Array&&r({target:`Uint8Array`,proto:!0},{setFromHex:function(e){o(this),a(e),s(this.buffer);var t=c(e,this).read;return{read:t,written:t/2}}})},4235(e,t,n){n(3068)},4270(e,t,n){var r=n(9565),i=n(4901),a=n(34),o=TypeError;e.exports=function(e,t){var n,s;if(t===`string`&&i(n=e.toString)&&!a(s=r(n,e))||i(n=e.valueOf)&&!a(s=r(n,e))||t!==`string`&&i(n=e.toString)&&!a(s=r(n,e)))return s;throw new o(`Can't convert object to primitive value`)}},4376(e,t,n){var r=n(2195);e.exports=Array.isArray||function(e){return r(e)===`Array`}},4402(e,t,n){var r=n(9504),i=Set.prototype;e.exports={Set,add:r(i.add),has:r(i.has),remove:r(i.delete),proto:i}},4449(e,t,n){var r=n(7080),i=n(4402).has,a=n(5170),o=n(3789),s=n(8469),c=n(507),l=n(9539);e.exports=function(e){var t=r(this),n=o(e);if(a(t)<=n.size)return s(t,function(e){if(n.includes(e))return!1},!0)!==!1;var u=n.getIterator();return c(u,function(e){if(i(t,e))return l(u,`normal`,!1)})!==!1}},4483(e,t,n){var r=n(4576),i=n(9429),a=n(1548),o=r.structuredClone,s=r.ArrayBuffer,c=r.MessageChannel,l=!1,u,d,f,p;if(a)l=function(e){o(e,{transfer:[e]})};else if(s)try{c||(u=i(`worker_threads`),u&&(c=u.MessageChannel)),c&&(d=new c,f=new s(2),p=function(e){d.port1.postMessage(null,[e])},f.byteLength===2&&(p(f),f.byteLength===0&&(l=p)))}catch{}e.exports=l},4495(e,t,n){var r=n(9519),i=n(9039),a=n(4576).String;e.exports=!!Object.getOwnPropertySymbols&&!i(function(){var e=Symbol(`symbol detection`);return!a(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&r&&r<41})},4527(e,t,n){var r=n(3724),i=n(4376),a=TypeError,o=Object.getOwnPropertyDescriptor;e.exports=r&&!function(){if(this!==void 0)return!0;try{Object.defineProperty([],`length`,{writable:!1}).length=1}catch(e){return e instanceof TypeError}}()?function(e,t){if(i(e)&&!o(e,`length`).writable)throw new a(`Cannot set read only .length`);return e.length=t}:function(e,t){return e.length=t}},4549(e,t,n){var r=n(4576);e.exports=function(e,t){var n=r.Iterator,i=n&&n.prototype,a=i&&i[e],o=!1;if(a)try{a.call({next:function(){return{done:!0}},return:function(){o=!0}},-1)}catch(e){e instanceof t||(o=!1)}if(!o)return a}},4576(e){var t=function(e){return e&&e.Math===Math&&e};e.exports=t(typeof globalThis==`object`&&globalThis)||t(typeof window==`object`&&window)||t(typeof self==`object`&&self)||t(typeof global==`object`&&global)||t(typeof this==`object`&&this)||(function(){return this})()||Function(`return this`)()},4603(e,t,n){var r=n(6840),i=n(9504),a=n(655),o=n(2812),s=URLSearchParams,c=s.prototype,l=i(c.append),u=i(c.delete),d=i(c.forEach),f=i([].push),p=new s(`a=1&a=2&b=3`);p.delete(`a`,1),p.delete(`b`,void 0),p+``!=`a=2`&&r(c,`delete`,function(e){var t=arguments.length,n=t<2?void 0:arguments[1];if(t&&n===void 0)return u(this,e);var r=[];d(this,function(e,t){f(r,{key:t,value:e})}),o(t,1);for(var i=a(e),s=a(n),c=0,p=0,m=!1,h=r.length,g;c<h;)g=r[c++],m||g.key===i?(m=!0,u(this,g.key)):p++;for(;p<h;)g=r[p++],g.key===i&&g.value===s||l(this,g.key,g.value)},{enumerable:!0,unsafe:!0})},4628(e,t,n){var r=n(6518),i=n(6043);r({target:`Promise`,stat:!0},{withResolvers:function(){var e=i.f(this);return{promise:e.promise,resolve:e.resolve,reject:e.reject}}})},4644(e,t,n){var r=n(7811),i=n(3724),a=n(4576),o=n(4901),s=n(34),c=n(9297),l=n(6955),u=n(6823),d=n(6699),f=n(6840),p=n(2106),m=n(1625),h=n(2787),g=n(2967),_=n(8227),v=n(3392),y=n(1181),b=y.enforce,x=y.get,S=a.Int8Array,C=S&&S.prototype,w=a.Uint8ClampedArray,T=w&&w.prototype,E=S&&h(S),D=C&&h(C),O=Object.prototype,k=a.TypeError,A=_(`toStringTag`),j=v(`TYPED_ARRAY_TAG`),M=`TypedArrayConstructor`,N=r&&!!g&&l(a.opera)!==`Opera`,P=!1,F,ee,I,L={Int8Array:1,Uint8Array:1,Uint8ClampedArray:1,Int16Array:2,Uint16Array:2,Int32Array:4,Uint32Array:4,Float32Array:4,Float64Array:8},R={BigInt64Array:8,BigUint64Array:8},te=function(e){if(!s(e))return!1;var t=l(e);return t===`DataView`||c(L,t)||c(R,t)},ne=function(e){var t=h(e);if(s(t)){var n=x(t);return n&&c(n,M)?n[M]:ne(t)}},re=function(e){if(!s(e))return!1;var t=l(e);return c(L,t)||c(R,t)},ie=function(e){if(re(e))return e;throw new k(`Target is not a typed array`)},ae=function(e){if(o(e)&&(!g||m(E,e)))return e;throw new k(u(e)+` is not a typed array constructor`)},oe=function(e,t,n,r){if(i){if(n)for(var o in L){var s=a[o];if(s&&c(s.prototype,e))try{delete s.prototype[e]}catch{try{s.prototype[e]=t}catch{}}}(!D[e]||n)&&f(D,e,n?t:N&&C[e]||t,r)}},se=function(e,t,n){var r,o;if(i){if(g){if(n){for(r in L)if(o=a[r],o&&c(o,e))try{delete o[e]}catch{}}if(!E[e]||n)try{return f(E,e,n?t:N&&E[e]||t)}catch{}else return}for(r in L)o=a[r],o&&(!o[e]||n)&&f(o,e,t)}};for(F in L)ee=a[F],I=ee&&ee.prototype,I?b(I)[M]=ee:N=!1;for(F in R)ee=a[F],I=ee&&ee.prototype,I&&(b(I)[M]=ee);if((!N||!o(E)||E===Function.prototype)&&(E=function(){throw new k(`Incorrect invocation`)},N))for(F in L)a[F]&&g(a[F],E);if((!N||!D||D===O)&&(D=E.prototype,N))for(F in L)a[F]&&g(a[F].prototype,D);if(N&&h(T)!==D&&g(T,D),i&&!c(D,A))for(F in P=!0,p(D,A,{configurable:!0,get:function(){return s(this)?this[j]:void 0}}),L)a[F]&&d(a[F],j,F);e.exports={NATIVE_ARRAY_BUFFER_VIEWS:N,TYPED_ARRAY_TAG:P&&j,aTypedArray:ie,aTypedArrayConstructor:ae,exportTypedArrayMethod:oe,exportTypedArrayStaticMethod:se,getTypedArrayConstructor:ne,isView:te,isTypedArray:re,TypedArray:E,TypedArrayPrototype:D}},4659(e,t,n){var r=n(3724),i=n(4913),a=n(6980);e.exports=function(e,t,n){r?i.f(e,t,a(0,n)):e[t]=n}},4901(e){var t=typeof document==`object`&&document.all;e.exports=t===void 0&&t!==void 0?function(e){return typeof e==`function`||e===t}:function(e){return typeof e==`function`}},4913(e,t,n){var r=n(3724),i=n(5917),a=n(8686),o=n(8551),s=n(6969),c=TypeError,l=Object.defineProperty,u=Object.getOwnPropertyDescriptor,d=`enumerable`,f=`configurable`,p=`writable`;t.f=r?a?function(e,t,n){if(o(e),t=s(t),o(n),typeof e==`function`&&t===`prototype`&&`value`in n&&p in n&&!n[p]){var r=u(e,t);r&&r[p]&&(e[t]=n.value,n={configurable:f in n?n[f]:r[f],enumerable:d in n?n[d]:r[d],writable:!1})}return l(e,t,n)}:l:function(e,t,n){if(o(e),t=s(t),o(n),i)try{return l(e,t,n)}catch{}if(`get`in n||`set`in n)throw new c(`Accessors not supported`);return`value`in n&&(e[t]=n.value),e}},4916(e,t,n){var r=n(7751),i=function(e){return{size:e,has:function(){return!1},keys:function(){return{next:function(){return{done:!0}}}}}},a=function(e){return{size:e,has:function(){return!0},keys:function(){throw Error(`e`)}}};e.exports=function(e,t){var n=r(`Set`);try{new n()[e](i(0));try{return new n()[e](i(-1)),!1}catch{if(!t)return!0;try{return new n()[e](a(-1/0)),!1}catch{return t(new n([1,2])[e](a(1/0)))}}}catch{return!1}}},4972(e,t,n){var r=n(6518),i=n(9565),a=n(8551),o=n(1767),s=n(4149),c=n(9590),l=n(9462),u=n(9539),d=n(4549),f=n(6395),p=!f&&d(`take`,RangeError),m=l(function(){var e=this.iterator;if(!this.remaining--)return this.done=!0,u(e,`normal`,void 0);var t=a(i(this.next,e));if(!(this.done=!!t.done))return t.value});r({target:`Iterator`,proto:!0,real:!0,forced:f||p},{take:function(e){a(this);var t;try{t=c(s(+e))}catch(e){u(this,`throw`,e)}return p?i(p,this,t):new m(o(this),{remaining:t})}})},4979(e,t,n){var r=n(6518),i=n(4576),a=n(7751),o=n(6980),s=n(4913).f,c=n(9297),l=n(679),u=n(3167),d=n(2603),f=n(5002),p=n(8574),m=n(3724),h=n(6395),g=`DOMException`,_=a(`Error`),v=a(g),y=function(){l(this,b);var e=arguments.length,t=d(e<1?void 0:arguments[0]),n=new v(t,d(e<2?void 0:arguments[1],`Error`)),r=new _(t);return r.name=g,s(n,`stack`,o(1,p(r.stack,1))),u(n,this,y),n},b=y.prototype=v.prototype,x=`stack`in new _(g),S=`stack`in new v(1,2),C=v&&m&&Object.getOwnPropertyDescriptor(i,g),w=!!C&&!(C.writable&&C.configurable),T=x&&!w&&!S;r({global:!0,constructor:!0,forced:h||T},{DOMException:T?y:v});var E=a(g),D=E.prototype;if(D.constructor!==E){for(var O in h||s(D,`constructor`,o(1,E)),f)if(c(f,O)){var k=f[O],A=k.s;c(E,A)||s(E,A,o(6,k.c))}}},5002(e){e.exports={IndexSizeError:{s:`INDEX_SIZE_ERR`,c:1,m:1},DOMStringSizeError:{s:`DOMSTRING_SIZE_ERR`,c:2,m:0},HierarchyRequestError:{s:`HIERARCHY_REQUEST_ERR`,c:3,m:1},WrongDocumentError:{s:`WRONG_DOCUMENT_ERR`,c:4,m:1},InvalidCharacterError:{s:`INVALID_CHARACTER_ERR`,c:5,m:1},NoDataAllowedError:{s:`NO_DATA_ALLOWED_ERR`,c:6,m:0},NoModificationAllowedError:{s:`NO_MODIFICATION_ALLOWED_ERR`,c:7,m:1},NotFoundError:{s:`NOT_FOUND_ERR`,c:8,m:1},NotSupportedError:{s:`NOT_SUPPORTED_ERR`,c:9,m:1},InUseAttributeError:{s:`INUSE_ATTRIBUTE_ERR`,c:10,m:1},InvalidStateError:{s:`INVALID_STATE_ERR`,c:11,m:1},SyntaxError:{s:`SYNTAX_ERR`,c:12,m:1},InvalidModificationError:{s:`INVALID_MODIFICATION_ERR`,c:13,m:1},NamespaceError:{s:`NAMESPACE_ERR`,c:14,m:1},InvalidAccessError:{s:`INVALID_ACCESS_ERR`,c:15,m:1},ValidationError:{s:`VALIDATION_ERR`,c:16,m:0},TypeMismatchError:{s:`TYPE_MISMATCH_ERR`,c:17,m:1},SecurityError:{s:`SECURITY_ERR`,c:18,m:1},NetworkError:{s:`NETWORK_ERR`,c:19,m:1},AbortError:{s:`ABORT_ERR`,c:20,m:1},URLMismatchError:{s:`URL_MISMATCH_ERR`,c:21,m:1},QuotaExceededError:{s:`QUOTA_EXCEEDED_ERR`,c:22,m:1},TimeoutError:{s:`TIMEOUT_ERR`,c:23,m:1},InvalidNodeTypeError:{s:`INVALID_NODE_TYPE_ERR`,c:24,m:1},DataCloneError:{s:`DATA_CLONE_ERR`,c:25,m:1}}},5024(e,t,n){var r=n(6518),i=n(3650),a=n(9835);r({target:`Set`,proto:!0,real:!0,forced:!n(4916)(`symmetricDifference`)||!a(`symmetricDifference`)},{symmetricDifference:i})},5031(e,t,n){var r=n(7751),i=n(9504),a=n(8480),o=n(3717),s=n(8551),c=i([].concat);e.exports=r(`Reflect`,`ownKeys`)||function(e){var t=a.f(s(e)),n=o.f;return n?c(t,n(e)):t}},5169(e,t,n){var r=n(3238),i=TypeError;e.exports=function(e){if(r(e))throw new i(`ArrayBuffer is detached`);return e}},5170(e,t,n){e.exports=n(6706)(n(4402).proto,`size`,`get`)||function(e){return e.size}},5213(e,t,n){var r=n(6518),i=n(4576),a=n(5370),o=n(9143),s=i.Uint8Array,c=!s||!s.fromBase64||!function(){try{s.fromBase64(`a`);return}catch{}try{s.fromBase64(``,null)}catch{return!0}}();s&&r({target:`Uint8Array`,stat:!0,forced:c},{fromBase64:function(e){return a(s,o(e,arguments.length>1?arguments[1]:void 0,null,9007199254740991).bytes)}})},5370(e,t,n){var r=n(6198);e.exports=function(e,t,n){for(var i=0,a=arguments.length>2?n:r(t),o=new e(a);a>i;)o[i]=t[i++];return o}},5397(e,t,n){var r=n(7055),i=n(7750);e.exports=function(e){return r(i(e))}},5610(e,t,n){var r=n(1291),i=Math.max,a=Math.min;e.exports=function(e,t){var n=r(e);return n<0?i(n+t,0):a(n,t)}},5623(e,t,n){n(456)},5636(e,t,n){var r=n(4576),i=n(9504),a=n(6706),o=n(7696),s=n(5169),c=n(7394),l=n(4483),u=n(1548),d=r.structuredClone,f=r.ArrayBuffer,p=r.DataView,m=Math.min,h=f.prototype,g=p.prototype,_=i(h.slice),v=a(h,`resizable`,`get`),y=a(h,`maxByteLength`,`get`),b=i(g.getInt8),x=i(g.setInt8);e.exports=(u||l)&&function(e,t,n){var r=c(e),i=t===void 0?r:o(t),a=!v||!v(e),h;if(s(e),u&&(e=d(e,{transfer:[e]}),r===i&&(n||a)))return e;if(r>=i&&(!n||a))h=_(e,0,i);else{h=new f(i,n&&!a&&y?{maxByteLength:y(e)}:void 0);for(var g=new p(e),S=new p(h),C=m(i,r),w=0;w<C;w++)x(S,w,b(g,w))}return u||l(e),h}},5745(e,t,n){var r=n(7629);e.exports=function(e,t){return r[e]||(r[e]=t||{})}},5781(e,t,n){var r=n(6518),i=n(7751),a=n(2812),o=n(655),s=n(7416),c=i(`URL`);r({target:`URL`,stat:!0,forced:!s},{parse:function(e){var t=a(arguments.length,1),n=o(e),r=t<2||arguments[1]===void 0?void 0:o(arguments[1]);try{return new c(n,r)}catch{return null}}})},5854(e,t,n){var r=n(2777),i=TypeError;e.exports=function(e){var t=r(e,`number`);if(typeof t==`number`)throw new i(`Can't convert number to bigint`);return BigInt(t)}},5876(e,t,n){var r=n(6518),i=n(3838);r({target:`Set`,proto:!0,real:!0,forced:!n(4916)(`isSubsetOf`,function(e){return e})},{isSubsetOf:i})},5917(e,t,n){var r=n(3724),i=n(9039),a=n(4055);e.exports=!r&&!i(function(){return Object.defineProperty(a(`div`),`a`,{get:function(){return 7}}).a!==7})},5966(e,t,n){var r=n(9306),i=n(4117);e.exports=function(e,t){var n=e[t];return i(n)?void 0:r(n)}},6043(e,t,n){var r=n(9306),i=TypeError,a=function(e){var t,n;this.promise=new e(function(e,r){if(t!==void 0||n!==void 0)throw new i(`Bad Promise constructor`);t=e,n=r}),this.resolve=r(t),this.reject=r(n)};e.exports.f=function(e){return new a(e)}},6080(e,t,n){var r=n(7476),i=n(9306),a=n(616),o=r(r.bind);e.exports=function(e,t){return i(e),t===void 0?e:a?o(e,t):function(){return e.apply(t,arguments)}}},6119(e,t,n){var r=n(5745),i=n(3392),a=r(`keys`);e.exports=function(e){return a[e]||(a[e]=i(e))}},6193(e,t,n){e.exports=n(4215)===`NODE`},6198(e,t,n){var r=n(8014);e.exports=function(e){return r(e.length)}},6269(e){e.exports={}},6279(e,t,n){var r=n(6840);e.exports=function(e,t,n){for(var i in t)r(e,i,t[i],n);return e}},6319(e,t,n){var r=n(8551),i=n(9539);e.exports=function(e,t,n,a){try{return a?t(r(n)[0],n[1]):t(n)}catch(t){i(e,`throw`,t)}}},6395(e){e.exports=!1},6518(e,t,n){var r=n(4576),i=n(7347).f,a=n(6699),o=n(6840),s=n(9433),c=n(7740),l=n(2796);e.exports=function(e,t){var n=e.target,u=e.global,d=e.stat,f,p=u?r:d?r[n]||s(n,{}):r[n]&&r[n].prototype,m,h,g,_;if(p)for(m in t){if(g=t[m],e.dontCallGetSet?(_=i(p,m),h=_&&_.value):h=p[m],f=l(u?m:n+(d?`.`:`#`)+m,e.forced),!f&&h!==void 0){if(typeof g==typeof h)continue;c(g,h)}(e.sham||h&&h.sham)&&a(g,`sham`,!0),o(p,m,g,e)}}},6573(e,t,n){var r=n(3724),i=n(2106),a=n(3238),o=ArrayBuffer.prototype;r&&!(`detached`in o)&&i(o,`detached`,{configurable:!0,get:function(){return a(this)}})},6632(e,t,n){var r=n(6518),i=n(4576),a=n(9143),o=n(4154),s=i.Uint8Array,c=!s||!s.prototype.setFromBase64||!function(){var e=new s([255,255,255,255,255]);try{e.setFromBase64(``,null);return}catch{}try{e.setFromBase64(`a`);return}catch{}try{e.setFromBase64(`MjYyZg===`)}catch{return e[0]===50&&e[1]===54&&e[2]===50&&e[3]===255&&e[4]===255}}();s&&r({target:`Uint8Array`,proto:!0,forced:c},{setFromBase64:function(e){o(this);var t=a(e,arguments.length>1?arguments[1]:void 0,this,this.length);return{read:t.read,written:t.written}}})},6699(e,t,n){var r=n(3724),i=n(4913),a=n(6980);e.exports=r?function(e,t,n){return i.f(e,t,a(1,n))}:function(e,t,n){return e[t]=n,e}},6706(e,t,n){var r=n(9504),i=n(9306);e.exports=function(e,t,n){try{return r(i(Object.getOwnPropertyDescriptor(e,t)[n]))}catch{}}},6801(e,t,n){var r=n(3724),i=n(8686),a=n(4913),o=n(8551),s=n(5397),c=n(1072);t.f=r&&!i?Object.defineProperties:function(e,t){o(e);for(var n=s(t),r=c(t),i=r.length,l=0,u;i>l;)a.f(e,u=r[l++],n[u]);return e}},6823(e){var t=String;e.exports=function(e){try{return t(e)}catch{return`Object`}}},6837(e){var t=TypeError,n=9007199254740991;e.exports=function(e){if(e>n)throw t(`Maximum allowed index exceeded`);return e}},6840(e,t,n){var r=n(4901),i=n(4913),a=n(283),o=n(9433);e.exports=function(e,t,n,s){s||={};var c=s.enumerable,l=s.name===void 0?t:s.name;if(r(n)&&a(n,l,s),s.global)c?e[t]=n:o(t,n);else{try{s.unsafe?e[t]&&(c=!0):delete e[t]}catch{}c?e[t]=n:i.f(e,t,{value:n,enumerable:!1,configurable:!s.nonConfigurable,writable:!s.nonWritable})}return e}},6955(e,t,n){var r=n(2140),i=n(4901),a=n(2195),o=n(8227)(`toStringTag`),s=Object,c=a(function(){return arguments}())===`Arguments`,l=function(e,t){try{return e[t]}catch{}};e.exports=r?a:function(e){var t,n,r;return e===void 0?`Undefined`:e===null?`Null`:typeof(n=l(t=s(e),o))==`string`?n:c?a(t):(r=a(t))===`Object`&&i(t.callee)?`Arguments`:r}},6969(e,t,n){var r=n(2777),i=n(757);e.exports=function(e){var t=r(e,`string`);return i(t)?t:t+``}},6980(e){e.exports=function(e,t){return{enumerable:!(e&1),configurable:!(e&2),writable:!(e&4),value:t}}},7040(e,t,n){e.exports=n(4495)&&!Symbol.sham&&typeof Symbol.iterator==`symbol`},7055(e,t,n){var r=n(9504),i=n(9039),a=n(2195),o=Object,s=r(``.split);e.exports=i(function(){return!o(`z`).propertyIsEnumerable(0)})?function(e){return a(e)===`String`?s(e,``):o(e)}:o},7080(e,t,n){var r=n(4402).has;e.exports=function(e){return r(e),e}},7347(e,t,n){var r=n(3724),i=n(9565),a=n(8773),o=n(6980),s=n(5397),c=n(6969),l=n(9297),u=n(5917),d=Object.getOwnPropertyDescriptor;t.f=r?d:function(e,t){if(e=s(e),t=c(t),u)try{return d(e,t)}catch{}if(l(e,t))return o(!i(a.f,e,t),e[t])}},7394(e,t,n){var r=n(4576),i=n(6706),a=n(2195),o=r.ArrayBuffer,s=r.TypeError;e.exports=o&&i(o.prototype,`byteLength`,`get`)||function(e){if(a(e)!==`ArrayBuffer`)throw new s(`ArrayBuffer expected`);return e.byteLength}},7416(e,t,n){var r=n(9039),i=n(8227),a=n(3724),o=n(6395),s=i(`iterator`);e.exports=!r(function(){var e=new URL(`b?a=1&b=2&c=3`,`https://a`),t=e.searchParams,n=new URLSearchParams(`a=1&a=2&b=3`),r=``;return e.pathname=`c%20d`,t.forEach(function(e,n){t.delete(`b`),r+=n+e}),n.delete(`a`,2),n.delete(`b`,void 0),o&&(!e.toJSON||!n.has(`a`,1)||n.has(`a`,2)||!n.has(`a`,void 0)||n.has(`b`))||!t.size&&(o||!a)||!t.sort||e.href!==`https://a/c%20d?a=1&c=3`||t.get(`c`)!==`3`||String(new URLSearchParams(`?a=1`))!==`a=1`||!t[s]||new URL(`https://a@b`).username!==`a`||new URLSearchParams(new URLSearchParams(`a=b`)).get(`a`)!==`b`||new URL(`https://тест`).host!==`xn--e1aybc`||new URL(`https://a#б`).hash!==`#%D0%B1`||r!==`a1c3`||new URL(`https://x`,void 0).host!==`x`})},7476(e,t,n){var r=n(2195),i=n(9504);e.exports=function(e){if(r(e)===`Function`)return i(e)}},7566(e,t,n){var r=n(6840),i=n(9504),a=n(655),o=n(2812),s=URLSearchParams,c=s.prototype,l=i(c.getAll),u=i(c.has),d=new s(`a=1`);(d.has(`a`,2)||!d.has(`a`,void 0))&&r(c,`has`,function(e){var t=arguments.length,n=t<2?void 0:arguments[1];if(t&&n===void 0)return u(this,e);var r=l(this,e);o(t,1);for(var i=a(n),s=0;s<r.length;)if(r[s++]===i)return!0;return!1},{enumerable:!0,unsafe:!0})},7588(e,t,n){var r=n(6518),i=n(9565),a=n(2652),o=n(9306),s=n(8551),c=n(1767),l=n(9539),u=n(4549)(`forEach`,TypeError);r({target:`Iterator`,proto:!0,real:!0,forced:u},{forEach:function(e){s(this);try{o(e)}catch(e){l(this,`throw`,e)}if(u)return i(u,this,e);var t=c(this),n=0;a(t,function(t){e(t,n++)},{IS_RECORD:!0})}})},7629(e,t,n){var r=n(6395),i=n(4576),a=n(9433),o=`__core-js_shared__`,s=e.exports=i[o]||a(o,{});(s.versions||=[]).push({version:`3.47.0`,mode:r?`pure`:`global`,copyright:`© 2014-2025 Denis Pushkarev (zloirock.ru), 2025 CoreJS Company (core-js.io)`,license:`https://github.com/zloirock/core-js/blob/v3.47.0/LICENSE`,source:`https://github.com/zloirock/core-js`})},7642(e,t,n){var r=n(6518),i=n(3440),a=n(9039);r({target:`Set`,proto:!0,real:!0,forced:!n(4916)(`difference`,function(e){return e.size===0})||a(function(){var e={size:1,has:function(){return!0},keys:function(){var e=0;return{next:function(){var n=e++>1;return t.has(1)&&t.clear(),{done:n,value:2}}}}},t=new Set([1,2,3,4]);return t.difference(e).size!==3})},{difference:i})},7657(e,t,n){var r=n(9039),i=n(4901),a=n(34),o=n(2360),s=n(2787),c=n(6840),l=n(8227),u=n(6395),d=l(`iterator`),f=!1,p,m,h;[].keys&&(h=[].keys(),`next`in h?(m=s(s(h)),m!==Object.prototype&&(p=m)):f=!0),!a(p)||r(function(){var e={};return p[d].call(e)!==e})?p={}:u&&(p=o(p)),i(p[d])||c(p,d,function(){return this}),e.exports={IteratorPrototype:p,BUGGY_SAFARI_ITERATORS:f}},7680(e,t,n){e.exports=n(9504)([].slice)},7696(e,t,n){var r=n(1291),i=n(8014),a=RangeError;e.exports=function(e){if(e===void 0)return 0;var t=r(e),n=i(t);if(t!==n)throw new a(`Wrong length or index`);return n}},7740(e,t,n){var r=n(9297),i=n(5031),a=n(7347),o=n(4913);e.exports=function(e,t,n){for(var s=i(t),c=o.f,l=a.f,u=0;u<s.length;u++){var d=s[u];!r(e,d)&&!(n&&r(n,d))&&c(e,d,l(t,d))}}},7750(e,t,n){var r=n(4117),i=TypeError;e.exports=function(e){if(r(e))throw new i(`Can't call method on `+e);return e}},7751(e,t,n){var r=n(4576),i=n(4901),a=function(e){return i(e)?e:void 0};e.exports=function(e,t){return arguments.length<2?a(r[e]):r[e]&&r[e][t]}},7811(e){e.exports=typeof ArrayBuffer<`u`&&typeof DataView<`u`},7936(e,t,n){var r=n(6518),i=n(5636);i&&r({target:`ArrayBuffer`,proto:!0},{transferToFixedLength:function(){return i(this,arguments.length?arguments[0]:void 0,!1)}})},8004(e,t,n){var r=n(6518),i=n(9039),a=n(8750);r({target:`Set`,proto:!0,real:!0,forced:!n(4916)(`intersection`,function(e){return e.size===2&&e.has(1)&&e.has(2)})||i(function(){return String(Array.from(new Set([1,2,3]).intersection(new Set([3,2]))))!==`3,2`})},{intersection:a})},8014(e,t,n){var r=n(1291),i=Math.min;e.exports=function(e){var t=r(e);return t>0?i(t,9007199254740991):0}},8100(e,t,n){var r=n(6518),i=n(5636);i&&r({target:`ArrayBuffer`,proto:!0},{transfer:function(){return i(this,arguments.length?arguments[0]:void 0,!0)}})},8111(e,t,n){var r=n(6518),i=n(4576),a=n(679),o=n(8551),s=n(4901),c=n(2787),l=n(2106),u=n(4659),d=n(9039),f=n(9297),p=n(8227),m=n(7657).IteratorPrototype,h=n(3724),g=n(6395),_=`constructor`,v=`Iterator`,y=p(`toStringTag`),b=TypeError,x=i[v],S=g||!s(x)||x.prototype!==m||!d(function(){x({})}),C=function(){if(a(this,m),c(this)===m)throw new b(`Abstract class Iterator not directly constructable`)},w=function(e,t){h?l(m,e,{configurable:!0,get:function(){return t},set:function(t){if(o(this),this===m)throw new b(`You can't redefine this property`);f(this,e)?this[e]=t:u(this,e,t)}}):m[e]=t};f(m,y)||w(y,v),(S||!f(m,_)||m[_]===Object)&&w(_,C),C.prototype=m,r({global:!0,constructor:!0,forced:S},{Iterator:C})},8227(e,t,n){var r=n(4576),i=n(5745),a=n(9297),o=n(3392),s=n(4495),c=n(7040),l=r.Symbol,u=i(`wks`),d=c?l.for||l:l&&l.withoutSetter||o;e.exports=function(e){return a(u,e)||(u[e]=s&&a(l,e)?l[e]:d(`Symbol.`+e)),u[e]}},8235(e,t,n){var r=n(9504),i=n(9297),a=SyntaxError,o=parseInt,s=String.fromCharCode,c=r(``.charAt),l=r(``.slice),u=r(/./.exec),d={'\\"':`"`,"\\\\":`\\`,"\\/":`/`,"\\b":`\b`,"\\f":`\f`,"\\n":`
|
|
11
|
+
`,"\\r":`\r`,"\\t":` `},f=/^[\da-f]{4}$/i,p=/^[\u0000-\u001F]$/;e.exports=function(e,t){for(var n=!0,r=``;t<e.length;){var m=c(e,t);if(m===`\\`){var h=l(e,t,t+2);if(i(d,h))r+=d[h],t+=2;else if(h===`\\u`){t+=2;var g=l(e,t,t+4);if(!u(f,g))throw new a(`Bad Unicode escape at: `+t);r+=s(o(g,16)),t+=4}else throw new a(`Unknown escape sequence: "`+h+`"`)}else if(m===`"`){n=!1,t++;break}else{if(u(p,m))throw new a(`Bad control character in string literal at: `+t);r+=m,t++}}if(n)throw new a(`Unterminated string at: `+t);return{value:r,end:t}}},8237(e,t,n){var r=n(6518),i=n(2652),a=n(9306),o=n(8551),s=n(1767),c=n(9539),l=n(4549),u=n(8745),d=n(9039),f=TypeError,p=d(function(){[].keys().reduce(function(){},void 0)}),m=!p&&l(`reduce`,f);r({target:`Iterator`,proto:!0,real:!0,forced:p||m},{reduce:function(e){o(this);try{a(e)}catch(e){c(this,`throw`,e)}var t=arguments.length<2,n=t?void 0:arguments[1];if(m)return u(m,this,t?[e]:[e,n]);var r=s(this),l=0;if(i(r,function(r){t?(t=!1,n=r):n=e(n,r,l),l++},{IS_RECORD:!0}),t)throw new f(`Reduce of empty iterator with no initial value`);return n}})},8335(e,t,n){n(9112)},8469(e,t,n){var r=n(9504),i=n(507),a=n(4402),o=a.Set,s=a.proto,c=r(s.forEach),l=r(s.keys),u=l(new o).next;e.exports=function(e,t,n){return n?i({iterator:l(e),next:u},t):c(e,t)}},8480(e,t,n){var r=n(1828),i=n(8727).concat(`length`,`prototype`);t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},8527(e,t,n){var r=n(7080),i=n(4402).has,a=n(5170),o=n(3789),s=n(507),c=n(9539);e.exports=function(e){var t=r(this),n=o(e);if(a(t)<n.size)return!1;var l=n.getIterator();return s(l,function(e){if(!i(t,e))return c(l,`normal`,!1)})!==!1}},8551(e,t,n){var r=n(34),i=String,a=TypeError;e.exports=function(e){if(r(e))return e;throw new a(i(e)+` is not an object`)}},8574(e,t,n){var r=n(9504),i=Error,a=r(``.replace),o=(function(e){return String(new i(e).stack)})(`zxcasd`),s=/\n\s*at [^:]*:[^\n]*/,c=s.test(o);e.exports=function(e,t){if(c&&typeof e==`string`&&!i.prepareStackTrace)for(;t--;)e=a(e,s,``);return e}},8622(e,t,n){var r=n(4576),i=n(4901),a=r.WeakMap;e.exports=i(a)&&/native code/.test(String(a))},8646(e,t,n){var r=n(9565),i=n(8551),a=n(1767),o=n(851);e.exports=function(e,t){(!t||typeof e!=`string`)&&i(e);var n=o(e);return a(i(n===void 0?e:r(n,e)))}},8686(e,t,n){var r=n(3724),i=n(9039);e.exports=r&&i(function(){return Object.defineProperty(function(){},`prototype`,{value:42,writable:!1}).prototype!==42})},8721(e,t,n){var r=n(3724),i=n(9504),a=n(2106),o=URLSearchParams.prototype,s=i(o.forEach);r&&!(`size`in o)&&a(o,`size`,{get:function(){var e=0;return s(this,function(){e++}),e},configurable:!0,enumerable:!0})},8727(e){e.exports=[`constructor`,`hasOwnProperty`,`isPrototypeOf`,`propertyIsEnumerable`,`toLocaleString`,`toString`,`valueOf`]},8745(e,t,n){var r=n(616),i=Function.prototype,a=i.apply,o=i.call;e.exports=typeof Reflect==`object`&&Reflect.apply||(r?o.bind(a):function(){return o.apply(a,arguments)})},8750(e,t,n){var r=n(7080),i=n(4402),a=n(5170),o=n(3789),s=n(8469),c=n(507),l=i.Set,u=i.add,d=i.has;e.exports=function(e){var t=r(this),n=o(e),i=new l;return a(t)>n.size?c(n.getIterator(),function(e){d(t,e)&&u(i,e)}):s(t,function(e){n.includes(e)&&u(i,e)}),i}},8773(e,t){var n={}.propertyIsEnumerable,r=Object.getOwnPropertyDescriptor;t.f=r&&!n.call({1:2},1)?function(e){var t=r(this,e);return!!t&&t.enumerable}:n},8981(e,t,n){var r=n(7750),i=Object;e.exports=function(e){return i(r(e))}},9039(e){e.exports=function(e){try{return!!e()}catch{return!0}}},9112(e,t,n){var r=n(6518),i=n(3724),a=n(4576),o=n(7751),s=n(9504),c=n(9565),l=n(4901),u=n(34),d=n(4376),f=n(9297),p=n(655),m=n(6198),h=n(4659),g=n(9039),_=n(8235),v=n(4495),y=a.JSON,b=a.Number,x=a.SyntaxError,S=y&&y.parse,C=o(`Object`,`keys`),w=Object.getOwnPropertyDescriptor,T=s(``.charAt),E=s(``.slice),D=s(/./.exec),O=s([].push),k=/^\d$/,A=/^[1-9]$/,j=/^[\d-]$/,M=/^[\t\n\r ]$/,N=0,P=1,F=function(e,t){e=p(e);var n=new R(e,0,``),r=n.parse(),i=r.value,a=n.skip(M,r.end);if(a<e.length)throw new x(`Unexpected extra character: "`+T(e,a)+`" after the parsed data at: `+a);return l(t)?ee({"":i},``,t,r):i},ee=function(e,t,n,r){var i=e[t],a=r&&i===r.value,o=a&&typeof r.source==`string`?{source:r.source}:{},s,l,p,h,g;if(u(i)){var _=d(i),v=a?r.nodes:_?[]:{};if(_)for(s=v.length,p=m(i),h=0;h<p;h++)I(i,h,ee(i,``+h,n,h<s?v[h]:void 0));else for(l=C(i),p=m(l),h=0;h<p;h++)g=l[h],I(i,g,ee(i,g,n,f(v,g)?v[g]:void 0))}return c(n,e,t,i,o)},I=function(e,t,n){if(i){var r=w(e,t);if(r&&!r.configurable)return}n===void 0?delete e[t]:h(e,t,n)},L=function(e,t,n,r){this.value=e,this.end=t,this.source=n,this.nodes=r},R=function(e,t){this.source=e,this.index=t};R.prototype={fork:function(e){return new R(this.source,e)},parse:function(){var e=this.source,t=this.skip(M,this.index),n=this.fork(t),r=T(e,t);if(D(j,r))return n.number();switch(r){case`{`:return n.object();case`[`:return n.array();case`"`:return n.string();case`t`:return n.keyword(!0);case`f`:return n.keyword(!1);case`n`:return n.keyword(null)}throw new x(`Unexpected character: "`+r+`" at: `+t)},node:function(e,t,n,r,i){return new L(t,r,e?null:E(this.source,n,r),i)},object:function(){for(var e=this.source,t=this.index+1,n=!1,r={},i={};t<e.length;){if(t=this.until([`"`,`}`],t),T(e,t)===`}`&&!n){t++;break}var a=this.fork(t).string(),o=a.value;t=a.end,t=this.until([`:`],t)+1,t=this.skip(M,t),a=this.fork(t).parse(),h(i,o,a),h(r,o,a.value),t=this.until([`,`,`}`],a.end);var s=T(e,t);if(s===`,`)n=!0,t++;else if(s===`}`){t++;break}}return this.node(P,r,this.index,t,i)},array:function(){for(var e=this.source,t=this.index+1,n=!1,r=[],i=[];t<e.length;){if(t=this.skip(M,t),T(e,t)===`]`&&!n){t++;break}var a=this.fork(t).parse();if(O(i,a),O(r,a.value),t=this.until([`,`,`]`],a.end),T(e,t)===`,`)n=!0,t++;else if(T(e,t)===`]`){t++;break}}return this.node(P,r,this.index,t,i)},string:function(){var e=this.index,t=_(this.source,this.index+1);return this.node(N,t.value,e,t.end)},number:function(){var e=this.source,t=this.index,n=t;if(T(e,n)===`-`&&n++,T(e,n)===`0`)n++;else if(D(A,T(e,n)))n=this.skip(k,n+1);else throw new x(`Failed to parse number at: `+n);if(T(e,n)===`.`&&(n=this.skip(k,n+1)),T(e,n)===`e`||T(e,n)===`E`){n++,(T(e,n)===`+`||T(e,n)===`-`)&&n++;var r=n;if(n=this.skip(k,n),r===n)throw new x(`Failed to parse number's exponent value at: `+n)}return this.node(N,b(E(e,t,n)),t,n)},keyword:function(e){var t=``+e,n=this.index,r=n+t.length;if(E(this.source,n,r)!==t)throw new x(`Failed to parse value at: `+n);return this.node(N,e,n,r)},skip:function(e,t){for(var n=this.source;t<n.length&&D(e,T(n,t));t++);return t},until:function(e,t){t=this.skip(M,t);for(var n=T(this.source,t),r=0;r<e.length;r++)if(e[r]===n)return t;throw new x(`Unexpected character: "`+n+`" at: `+t)}};var te=g(function(){var e=`9007199254740993`,t;return S(e,function(e,n,r){t=r.source}),t!==e}),ne=v&&!g(function(){return 1/S(`-0 `)!=-1/0});r({target:`JSON`,stat:!0,forced:te},{parse:function(e,t){return ne&&!l(t)?S(e):F(e,t)}})},9143(e,t,n){var r=n(4576),i=n(9504),a=n(3972),o=n(3463),s=n(9297),c=n(2804),l=n(944),u=n(5169),d=c.c2i,f=c.c2iUrl,p=r.SyntaxError,m=r.TypeError,h=i(``.charAt),g=function(e,t){for(var n=e.length;t<n;t++){var r=h(e,t);if(r!==` `&&r!==` `&&r!==`
|
|
12
|
+
`&&r!==`\f`&&r!==`\r`)break}return t},_=function(e,t,n){var r=e.length;r<4&&(e+=r===2?`AA`:`A`);var i=(t[h(e,0)]<<18)+(t[h(e,1)]<<12)+(t[h(e,2)]<<6)+t[h(e,3)],a=[i>>16&255,i>>8&255,i&255];if(r===2){if(n&&a[1]!==0)throw new p(`Extra bits`);return[a[0]]}if(r===3){if(n&&a[2]!==0)throw new p(`Extra bits`);return[a[0],a[1]]}return a},v=function(e,t,n){for(var r=t.length,i=0;i<r;i++)e[n+i]=t[i];return n+r};e.exports=function(e,t,n,r){o(e),a(t);var i=l(t)===`base64`?d:f,c=t?t.lastChunkHandling:void 0;if(c===void 0&&(c=`loose`),c!==`loose`&&c!==`strict`&&c!==`stop-before-partial`)throw new m("Incorrect `lastChunkHandling` option");n&&u(n.buffer);var y=e.length,b=n||[],x=0,S=0,C=``,w=0;if(r)for(;;){if(w=g(e,w),w===y){if(C.length>0){if(c===`stop-before-partial`)break;if(c===`loose`){if(C.length===1)throw new p(`Malformed padding: exactly one additional character`);x=v(b,_(C,i,!1),x)}else throw new p(`Missing padding`)}S=y;break}var T=h(e,w);if(++w,T===`=`){if(C.length<2)throw new p(`Padding is too early`);if(w=g(e,w),C.length===2){if(w===y){if(c===`stop-before-partial`)break;throw new p(`Malformed padding: only one =`)}h(e,w)===`=`&&(++w,w=g(e,w))}if(w<y)throw new p(`Unexpected character after padding`);x=v(b,_(C,i,c===`strict`),x),S=y;break}if(!s(i,T))throw new p(`Unexpected character`);var E=r-x;if(E===1&&C.length===2||E===2&&C.length===3||(C+=T,C.length===4&&(x=v(b,_(C,i,!1),x),C=``,S=w,x===r)))break}return{bytes:b,read:S,written:x}}},9286(e,t,n){var r=n(4402),i=n(8469),a=r.Set,o=r.add;e.exports=function(e){var t=new a;return i(e,function(e){o(t,e)}),t}},9297(e,t,n){var r=n(9504),i=n(8981),a=r({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return a(i(e),t)}},9306(e,t,n){var r=n(4901),i=n(6823),a=TypeError;e.exports=function(e){if(r(e))return e;throw new a(i(e)+` is not a function`)}},9314(e,t,n){var r=n(6518),i=n(9565),a=n(8551),o=n(1767),s=n(4149),c=n(9590),l=n(9539),u=n(9462),d=n(684),f=n(4549),p=n(6395),m=!p&&!d(`drop`,0),h=!p&&!m&&f(`drop`,RangeError),g=p||m||h,_=u(function(){for(var e=this.iterator,t=this.next,n,r;this.remaining;)if(this.remaining--,n=a(i(t,e)),r=this.done=!!n.done,r)return;if(n=a(i(t,e)),r=this.done=!!n.done,!r)return n.value});r({target:`Iterator`,proto:!0,real:!0,forced:g},{drop:function(e){a(this);var t;try{t=c(s(+e))}catch(e){l(this,`throw`,e)}return h?i(h,this,t):new _(o(this),{remaining:t})}})},9429(e,t,n){var r=n(4576),i=n(6193);e.exports=function(e){if(i){try{return r.process.getBuiltinModule(e)}catch{}try{return Function(`return require("`+e+`")`)()}catch{}}}},9432(e,t,n){n(5213)},9433(e,t,n){var r=n(4576),i=Object.defineProperty;e.exports=function(e,t){try{i(r,e,{value:t,configurable:!0,writable:!0})}catch{r[e]=t}return t}},9462(e,t,n){var r=n(9565),i=n(2360),a=n(6699),o=n(6279),s=n(8227),c=n(1181),l=n(5966),u=n(7657).IteratorPrototype,d=n(2529),f=n(9539),p=n(1385),m=s(`toStringTag`),h=`IteratorHelper`,g=`WrapForValidIterator`,_=`normal`,v=`throw`,y=c.set,b=function(e){var t=c.getterFor(e?g:h);return o(i(u),{next:function(){var n=t(this);if(e)return n.nextHandler();if(n.done)return d(void 0,!0);try{var r=n.nextHandler();return n.returnHandlerResult?r:d(r,n.done)}catch(e){throw n.done=!0,e}},return:function(){var n=t(this),i=n.iterator;if(n.done=!0,e){var a=l(i,`return`);return a?r(a,i):d(void 0,!0)}if(n.inner)try{f(n.inner.iterator,_)}catch(e){return f(i,v,e)}if(n.openIters)try{p(n.openIters,_)}catch(e){return f(i,v,e)}return i&&f(i,_),d(void 0,!0)}})},x=b(!0),S=b(!1);a(S,m,`Iterator Helper`),e.exports=function(e,t,n){var r=function(r,i){i?(i.iterator=r.iterator,i.next=r.next):i=r,i.type=t?g:h,i.returnHandlerResult=!!n,i.nextHandler=e,i.counter=0,i.done=!1,y(this,i)};return r.prototype=t?x:S,r}},9486(e,t,n){var r=n(6518),i=n(4576),a=n(9504),o=n(3972),s=n(4154),c=n(5169),l=n(2804),u=n(944),d=l.i2c,f=l.i2cUrl,p=a(``.charAt),m=i.Uint8Array,h=!m||!m.prototype.toBase64||!function(){try{new m().toBase64(null)}catch{return!0}}();m&&r({target:`Uint8Array`,proto:!0,forced:h},{toBase64:function(){var e=s(this),t=arguments.length?o(arguments[0]):void 0,n=u(t)===`base64`?d:f,r=!!t&&!!t.omitPadding;c(this.buffer);for(var i=``,a=0,l=e.length,m,h=function(e){return p(n,m>>6*e&63)};a+2<l;a+=3)m=(e[a]<<16)+(e[a+1]<<8)+e[a+2],i+=h(3)+h(2)+h(1)+h(0);return a+2===l?(m=(e[a]<<16)+(e[a+1]<<8),i+=h(3)+h(2)+h(1)+(r?``:`=`)):a+1===l&&(m=e[a]<<16,i+=h(3)+h(2)+(r?``:`==`)),i}})},9504(e,t,n){var r=n(616),i=Function.prototype,a=i.call,o=r&&i.bind.bind(a,a);e.exports=r?o:function(e){return function(){return a.apply(e,arguments)}}},9519(e,t,n){var r=n(4576),i=n(2839),a=r.process,o=r.Deno,s=a&&a.versions||o&&o.version,c=s&&s.v8,l,u;c&&(l=c.split(`.`),u=l[0]>0&&l[0]<4?1:+(l[0]+l[1])),!u&&i&&(l=i.match(/Edge\/(\d+)/),(!l||l[1]>=74)&&(l=i.match(/Chrome\/(\d+)/),l&&(u=+l[1]))),e.exports=u},9539(e,t,n){var r=n(9565),i=n(8551),a=n(5966);e.exports=function(e,t,n){var o,s;i(e);try{if(o=a(e,`return`),!o){if(t===`throw`)throw n;return n}o=r(o,e)}catch(e){s=!0,o=e}if(t===`throw`)throw n;if(s)throw o;return i(o),n}},9565(e,t,n){var r=n(616),i=Function.prototype.call;e.exports=r?i.bind(i):function(){return i.apply(i,arguments)}},9577(e,t,n){var r=n(9928),i=n(4644),a=n(1108),o=n(1291),s=n(5854),c=i.aTypedArray,l=i.getTypedArrayConstructor,u=i.exportTypedArrayMethod,d=function(){try{new Int8Array(1).with(2,{valueOf:function(){throw 8}})}catch(e){return e===8}}(),f=d&&function(){try{new Int8Array(1).with(-.5,1)}catch{return!0}}();u(`with`,{with:function(e,t){var n=c(this),i=o(e),u=a(n)?s(t):+t;return r(n,l(n),i,u)}}.with,!d||f)},9590(e,t,n){var r=n(1291),i=RangeError;e.exports=function(e){var t=r(e);if(t<0)throw new i(`The argument can't be less than 0`);return t}},9617(e,t,n){var r=n(5397),i=n(5610),a=n(6198),o=function(e){return function(t,n,o){var s=r(t),c=a(s);if(c===0)return!e&&-1;var l=i(o,c),u;if(e&&n!==n){for(;c>l;)if(u=s[l++],u!==u)return!0}else for(;c>l;l++)if((e||l in s)&&s[l]===n)return e||l||0;return!e&&-1}};e.exports={includes:o(!0),indexOf:o(!1)}},9631(e,t,n){n(9486)},9797(e,t,n){n(4226)},9835(e){e.exports=function(e){try{var t=new Set,n=t[e]({size:0,has:function(){return!0},keys:function(){return Object.defineProperty({},`next`,{get:function(){return t.clear(),t.add(4),function(){return{done:!0}}}})}});return n.size===1&&n.values().next().value===4}catch{return!1}}},9928(e,t,n){var r=n(6198),i=n(1291),a=RangeError;e.exports=function(e,t,n,o){var s=r(e),c=i(n),l=c<0?s+c:c;if(l>=s||l<0)throw new a(`Incorrect index`);for(var u=new t(s),d=0;d<s;d++)u[d]=d===l?o:e[d];return u}}},Hc={};function J(e){var t=Hc[e];if(t!==void 0)return t.exports;var n=Hc[e]={exports:{}};return Vc[e].call(n.exports,n,n.exports,J),n.exports}J.d=(e,t)=>{for(var n in t)J.o(t,n)&&!J.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},J.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),J(4114),J(6573),J(8100),J(7936),J(8111),J(8237),J(9577),J(4235),J(1549),J(9797),J(9631),J(5623),J(5781);var Uc=typeof process==`object`&&process+``==`[object process]`&&!process.versions.nw&&!(process.versions.electron&&process.type&&process.type!==`browser`),Wc=[.001,0,0,.001,0,0],Gc=1.35;.35/Gc;var Kc={ANY:1,DISPLAY:2,PRINT:4,SAVE:8,ANNOTATIONS_FORMS:16,ANNOTATIONS_STORAGE:32,ANNOTATIONS_DISABLE:64,IS_EDITING:128,OPLIST:256},qc={DISABLE:0,ENABLE:1,ENABLE_FORMS:2,ENABLE_STORAGE:3},Jc=`pdfjs_internal_editor_`,Y={DISABLE:-1,NONE:0,FREETEXT:3,HIGHLIGHT:9,STAMP:13,INK:15,POPUP:16,SIGNATURE:101,COMMENT:102},Yc={RESIZE:1,CREATE:2,FREETEXT_SIZE:11,FREETEXT_COLOR:12,FREETEXT_OPACITY:13,INK_COLOR:21,INK_THICKNESS:22,INK_OPACITY:23,HIGHLIGHT_COLOR:31,HIGHLIGHT_THICKNESS:32,HIGHLIGHT_FREE:33,HIGHLIGHT_SHOW_ALL:34,DRAW_STEP:41},Xc={PRINT:4,MODIFY_CONTENTS:8,COPY:16,MODIFY_ANNOTATIONS:32,FILL_INTERACTIVE_FORMS:256,COPY_FOR_ACCESSIBILITY:512,ASSEMBLE:1024,PRINT_HIGH_QUALITY:2048},Zc={TRIANGLES:1,LATTICE:2,PATCH:3},Qc={FILL:0,STROKE:1,FILL_STROKE:2,INVISIBLE:3,FILL_ADD_TO_PATH:4,STROKE_ADD_TO_PATH:5,FILL_STROKE_ADD_TO_PATH:6,ADD_TO_PATH:7,FILL_STROKE_MASK:3,ADD_TO_PATH_FLAG:4},$c={GRAYSCALE_1BPP:1,RGB_24BPP:2,RGBA_32BPP:3},el={TEXT:1,LINK:2,FREETEXT:3,LINE:4,SQUARE:5,CIRCLE:6,POLYGON:7,POLYLINE:8,HIGHLIGHT:9,UNDERLINE:10,SQUIGGLY:11,STRIKEOUT:12,STAMP:13,CARET:14,INK:15,POPUP:16,FILEATTACHMENT:17,SOUND:18,MOVIE:19,WIDGET:20,SCREEN:21,PRINTERMARK:22,TRAPNET:23,WATERMARK:24,THREED:25,REDACT:26},tl={SOLID:1,DASHED:2,BEVELED:3,INSET:4,UNDERLINE:5},nl={ERRORS:0,WARNINGS:1,INFOS:5},rl={dependency:1,setLineWidth:2,setLineCap:3,setLineJoin:4,setMiterLimit:5,setDash:6,setRenderingIntent:7,setFlatness:8,setGState:9,save:10,restore:11,transform:12,moveTo:13,lineTo:14,curveTo:15,curveTo2:16,curveTo3:17,closePath:18,rectangle:19,stroke:20,closeStroke:21,fill:22,eoFill:23,fillStroke:24,eoFillStroke:25,closeFillStroke:26,closeEOFillStroke:27,endPath:28,clip:29,eoClip:30,beginText:31,endText:32,setCharSpacing:33,setWordSpacing:34,setHScale:35,setLeading:36,setFont:37,setTextRenderingMode:38,setTextRise:39,moveText:40,setLeadingMoveText:41,setTextMatrix:42,nextLine:43,showText:44,showSpacedText:45,nextLineShowText:46,nextLineSetSpacingShowText:47,setCharWidth:48,setCharWidthAndBounds:49,setStrokeColorSpace:50,setFillColorSpace:51,setStrokeColor:52,setStrokeColorN:53,setFillColor:54,setFillColorN:55,setStrokeGray:56,setFillGray:57,setStrokeRGBColor:58,setFillRGBColor:59,setStrokeCMYKColor:60,setFillCMYKColor:61,shadingFill:62,beginInlineImage:63,beginImageData:64,endInlineImage:65,paintXObject:66,markPoint:67,markPointProps:68,beginMarkedContent:69,beginMarkedContentProps:70,endMarkedContent:71,beginCompat:72,endCompat:73,paintFormXObjectBegin:74,paintFormXObjectEnd:75,beginGroup:76,endGroup:77,beginAnnotation:80,endAnnotation:81,paintImageMaskXObject:83,paintImageMaskXObjectGroup:84,paintImageXObject:85,paintInlineImageXObject:86,paintInlineImageXObjectGroup:87,paintImageXObjectRepeat:88,paintImageMaskXObjectRepeat:89,paintSolidColorImageMask:90,constructPath:91,setStrokeTransparent:92,setFillTransparent:93,rawFillPath:94},il={moveTo:0,lineTo:1,curveTo:2,quadraticCurveTo:3,closePath:4},al={NEED_PASSWORD:1,INCORRECT_PASSWORD:2},ol=nl.WARNINGS;function sl(e){Number.isInteger(e)&&(ol=e)}function cl(){return ol}function ll(e){ol>=nl.INFOS&&console.info(`Info: ${e}`)}function X(e){ol>=nl.WARNINGS&&console.warn(`Warning: ${e}`)}function ul(e){throw Error(e)}function dl(e,t){e||ul(t)}function fl(e){switch(e?.protocol){case`http:`:case`https:`:case`ftp:`:case`mailto:`:case`tel:`:return!0;default:return!1}}function pl(e,t=null,n=null){if(!e)return null;if(n&&typeof e==`string`&&(n.addDefaultProtocol&&e.startsWith(`www.`)&&e.match(/\./g)?.length>=2&&(e=`http://${e}`),n.tryConvertEncoding))try{e=kl(e)}catch{}let r=t?URL.parse(e,t):URL.parse(e);return fl(r)?r:null}function ml(e,t,n=!1){let r=URL.parse(e);return r?(r.hash=t,r.href):n&&pl(e,`http://example.com`)?e.split(`#`,1)[0]+`${t?`#${t}`:``}`:``}function Z(e,t,n,r=!1){return Object.defineProperty(e,t,{value:n,enumerable:!r,configurable:!0,writable:!1}),n}var hl=function(){function e(e,t){this.message=e,this.name=t}return e.prototype=Error(),e.constructor=e,e}(),gl=class extends hl{constructor(e,t){super(e,`PasswordException`),this.code=t}},_l=class extends hl{constructor(e,t){super(e,`UnknownErrorException`),this.details=t}},vl=class extends hl{constructor(e){super(e,`InvalidPDFException`)}},yl=class extends hl{constructor(e,t,n){super(e,`ResponseException`),this.status=t,this.missing=n}},bl=class extends hl{constructor(e){super(e,`FormatError`)}},xl=class extends hl{constructor(e){super(e,`AbortException`)}};function Sl(e){(typeof e!=`object`||e?.length===void 0)&&ul(`Invalid argument for bytesToString`);let t=e.length,n=8192;if(t<n)return String.fromCharCode.apply(null,e);let r=[];for(let i=0;i<t;i+=n){let a=Math.min(i+n,t),o=e.subarray(i,a);r.push(String.fromCharCode.apply(null,o))}return r.join(``)}function Cl(e){typeof e!=`string`&&ul(`Invalid argument for stringToBytes`);let t=e.length,n=new Uint8Array(t);for(let r=0;r<t;++r)n[r]=e.charCodeAt(r)&255;return n}function wl(e){return String.fromCharCode(e>>24&255,e>>16&255,e>>8&255,e&255)}function Tl(){let e=new Uint8Array(4);return e[0]=1,new Uint32Array(e.buffer,0,1)[0]===1}function El(){try{return Function(``),!0}catch{return!1}}var Dl=class{static get isLittleEndian(){return Z(this,`isLittleEndian`,Tl())}static get isEvalSupported(){return Z(this,`isEvalSupported`,El())}static get isOffscreenCanvasSupported(){return Z(this,`isOffscreenCanvasSupported`,typeof OffscreenCanvas<`u`)}static get isImageDecoderSupported(){return Z(this,`isImageDecoderSupported`,typeof ImageDecoder<`u`)}static get isFloat16ArraySupported(){return Z(this,`isFloat16ArraySupported`,typeof Float16Array<`u`)}static get isSanitizerSupported(){return Z(this,`isSanitizerSupported`,typeof Sanitizer<`u`)}static get platform(){let{platform:e,userAgent:t}=navigator;return Z(this,`platform`,{isAndroid:t.includes(`Android`),isLinux:e.includes(`Linux`),isMac:e.includes(`Mac`),isWindows:e.includes(`Win`),isFirefox:t.includes(`Firefox`)})}static get isCSSRoundSupported(){return Z(this,`isCSSRoundSupported`,globalThis.CSS?.supports?.(`width: round(1.5px, 1px)`))}},Ol=Array.from(Array(256).keys(),e=>e.toString(16).padStart(2,`0`)),Q=class{static makeHexColor(e,t,n){return`#${Ol[e]}${Ol[t]}${Ol[n]}`}static domMatrixToTransform(e){return[e.a,e.b,e.c,e.d,e.e,e.f]}static scaleMinMax(e,t){let n;e[0]?(e[0]<0&&(n=t[0],t[0]=t[2],t[2]=n),t[0]*=e[0],t[2]*=e[0],e[3]<0&&(n=t[1],t[1]=t[3],t[3]=n),t[1]*=e[3],t[3]*=e[3]):(n=t[0],t[0]=t[1],t[1]=n,n=t[2],t[2]=t[3],t[3]=n,e[1]<0&&(n=t[1],t[1]=t[3],t[3]=n),t[1]*=e[1],t[3]*=e[1],e[2]<0&&(n=t[0],t[0]=t[2],t[2]=n),t[0]*=e[2],t[2]*=e[2]),t[0]+=e[4],t[1]+=e[5],t[2]+=e[4],t[3]+=e[5]}static transform(e,t){return[e[0]*t[0]+e[2]*t[1],e[1]*t[0]+e[3]*t[1],e[0]*t[2]+e[2]*t[3],e[1]*t[2]+e[3]*t[3],e[0]*t[4]+e[2]*t[5]+e[4],e[1]*t[4]+e[3]*t[5]+e[5]]}static multiplyByDOMMatrix(e,t){return[e[0]*t.a+e[2]*t.b,e[1]*t.a+e[3]*t.b,e[0]*t.c+e[2]*t.d,e[1]*t.c+e[3]*t.d,e[0]*t.e+e[2]*t.f+e[4],e[1]*t.e+e[3]*t.f+e[5]]}static applyTransform(e,t,n=0){let r=e[n],i=e[n+1];e[n]=r*t[0]+i*t[2]+t[4],e[n+1]=r*t[1]+i*t[3]+t[5]}static applyTransformToBezier(e,t,n=0){let r=t[0],i=t[1],a=t[2],o=t[3],s=t[4],c=t[5];for(let t=0;t<6;t+=2){let l=e[n+t],u=e[n+t+1];e[n+t]=l*r+u*a+s,e[n+t+1]=l*i+u*o+c}}static applyInverseTransform(e,t){let n=e[0],r=e[1],i=t[0]*t[3]-t[1]*t[2];e[0]=(n*t[3]-r*t[2]+t[2]*t[5]-t[4]*t[3])/i,e[1]=(-n*t[1]+r*t[0]+t[4]*t[1]-t[5]*t[0])/i}static axialAlignedBoundingBox(e,t,n){let r=t[0],i=t[1],a=t[2],o=t[3],s=t[4],c=t[5],l=e[0],u=e[1],d=e[2],f=e[3],p=r*l+s,m=p,h=r*d+s,g=h,_=o*u+c,v=_,y=o*f+c,b=y;if(i!==0||a!==0){let e=i*l,t=i*d,n=a*u,r=a*f;p+=n,g+=n,h+=r,m+=r,_+=e,b+=e,y+=t,v+=t}n[0]=Math.min(n[0],p,h,m,g),n[1]=Math.min(n[1],_,y,v,b),n[2]=Math.max(n[2],p,h,m,g),n[3]=Math.max(n[3],_,y,v,b)}static inverseTransform(e){let t=e[0]*e[3]-e[1]*e[2];return[e[3]/t,-e[1]/t,-e[2]/t,e[0]/t,(e[2]*e[5]-e[4]*e[3])/t,(e[4]*e[1]-e[5]*e[0])/t]}static singularValueDecompose2dScale(e,t){let n=e[0],r=e[1],i=e[2],a=e[3],o=n**2+r**2,s=n*i+r*a,c=i**2+a**2,l=(o+c)/2,u=Math.sqrt(l**2-(o*c-s**2));t[0]=Math.sqrt(l+u||1),t[1]=Math.sqrt(l-u||1)}static normalizeRect(e){let t=e.slice(0);return e[0]>e[2]&&(t[0]=e[2],t[2]=e[0]),e[1]>e[3]&&(t[1]=e[3],t[3]=e[1]),t}static intersect(e,t){let n=Math.max(Math.min(e[0],e[2]),Math.min(t[0],t[2])),r=Math.min(Math.max(e[0],e[2]),Math.max(t[0],t[2]));if(n>r)return null;let i=Math.max(Math.min(e[1],e[3]),Math.min(t[1],t[3])),a=Math.min(Math.max(e[1],e[3]),Math.max(t[1],t[3]));return i>a?null:[n,i,r,a]}static pointBoundingBox(e,t,n){n[0]=Math.min(n[0],e),n[1]=Math.min(n[1],t),n[2]=Math.max(n[2],e),n[3]=Math.max(n[3],t)}static rectBoundingBox(e,t,n,r,i){i[0]=Math.min(i[0],e,n),i[1]=Math.min(i[1],t,r),i[2]=Math.max(i[2],e,n),i[3]=Math.max(i[3],t,r)}static#e(e,t,n,r,i,a,o,s,c,l){if(c<=0||c>=1)return;let u=1-c,d=c*c,f=d*c,p=u*(u*(u*e+3*c*t)+3*d*n)+f*r,m=u*(u*(u*i+3*c*a)+3*d*o)+f*s;l[0]=Math.min(l[0],p),l[1]=Math.min(l[1],m),l[2]=Math.max(l[2],p),l[3]=Math.max(l[3],m)}static#t(e,t,n,r,i,a,o,s,c,l,u,d){if(Math.abs(c)<1e-12){Math.abs(l)>=1e-12&&this.#e(e,t,n,r,i,a,o,s,-u/l,d);return}let f=l**2-4*u*c;if(f<0)return;let p=Math.sqrt(f),m=2*c;this.#e(e,t,n,r,i,a,o,s,(-l+p)/m,d),this.#e(e,t,n,r,i,a,o,s,(-l-p)/m,d)}static bezierBoundingBox(e,t,n,r,i,a,o,s,c){c[0]=Math.min(c[0],e,o),c[1]=Math.min(c[1],t,s),c[2]=Math.max(c[2],e,o),c[3]=Math.max(c[3],t,s),this.#t(e,n,i,o,t,r,a,s,3*(-e+3*(n-i)+o),6*(e-2*n+i),3*(n-e),c),this.#t(e,n,i,o,t,r,a,s,3*(-t+3*(r-a)+s),6*(t-2*r+a),3*(r-t),c)}};function kl(e){return decodeURIComponent(escape(e))}var Al=null,jl=null;function Ml(e){return Al||(Al=/([\u00a0\u00b5\u037e\u0eb3\u2000-\u200a\u202f\u2126\ufb00-\ufb04\ufb06\ufb20-\ufb36\ufb38-\ufb3c\ufb3e\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufba1\ufba4-\ufba9\ufbae-\ufbb1\ufbd3-\ufbdc\ufbde-\ufbe7\ufbea-\ufbf8\ufbfc-\ufbfd\ufc00-\ufc5d\ufc64-\ufcf1\ufcf5-\ufd3d\ufd88\ufdf4\ufdfa-\ufdfb\ufe71\ufe77\ufe79\ufe7b\ufe7d]+)|(\ufb05+)/gu,jl=new Map([[`ſt`,`ſt`]])),e.replaceAll(Al,(e,t,n)=>t?t.normalize(`NFKC`):jl.get(n))}function Nl(){if(typeof crypto.randomUUID==`function`)return crypto.randomUUID();let e=new Uint8Array(32);return crypto.getRandomValues(e),Sl(e)}var Pl=`pdfjs_internal_id_`;function Fl(e,t,n){if(!Array.isArray(n)||n.length<2)return!1;let[r,i,...a]=n;if(!e(r)&&!Number.isInteger(r)||!t(i))return!1;let o=a.length,s=!0;switch(i.name){case`XYZ`:if(o<2||o>3)return!1;break;case`Fit`:case`FitB`:return o===0;case`FitH`:case`FitBH`:case`FitV`:case`FitBV`:if(o>1)return!1;break;case`FitR`:if(o!==4)return!1;s=!1;break;default:return!1}for(let e of a)if(!(typeof e==`number`||s&&e===null))return!1;return!0}function Il(e,t,n){return Math.min(Math.max(e,t),n)}typeof Math.sumPrecise!=`function`&&(Math.sumPrecise=function(e){return e.reduce((e,t)=>e+t,0)}),typeof AbortSignal.any!=`function`&&(AbortSignal.any=function(e){let t=new AbortController,{signal:n}=t;for(let r of e)if(r.aborted)return t.abort(r.reason),n;for(let r of e)r.addEventListener(`abort`,()=>{t.abort(r.reason)},{signal:n});return n}),J(1701),J(4603),J(7566),J(8721);var Ll=class e{static textContent(t){let n=[],r={items:n,styles:Object.create(null)};function i(t){if(!t)return;let r=null,a=t.name;if(a===`#text`)r=t.value;else if(e.shouldBuildText(a))t?.attributes?.textContent?r=t.attributes.textContent:t.value&&(r=t.value);else return;if(r!==null&&n.push({str:r}),t.children)for(let e of t.children)i(e)}return i(t),r}static shouldBuildText(e){return!(e===`textarea`||e===`input`||e===`option`||e===`select`)}},Rl=class{static setupStorage(e,t,n,r,i){let a=r.getValue(t,{value:null});switch(n.name){case`textarea`:if(a.value!==null&&(e.textContent=a.value),i===`print`)break;e.addEventListener(`input`,e=>{r.setValue(t,{value:e.target.value})});break;case`input`:if(n.attributes.type===`radio`||n.attributes.type===`checkbox`){if(a.value===n.attributes.xfaOn?e.setAttribute(`checked`,!0):a.value===n.attributes.xfaOff&&e.removeAttribute(`checked`),i===`print`)break;e.addEventListener(`change`,e=>{r.setValue(t,{value:e.target.checked?e.target.getAttribute(`xfaOn`):e.target.getAttribute(`xfaOff`)})})}else{if(a.value!==null&&e.setAttribute(`value`,a.value),i===`print`)break;e.addEventListener(`input`,e=>{r.setValue(t,{value:e.target.value})})}break;case`select`:if(a.value!==null){e.setAttribute(`value`,a.value);for(let e of n.children)e.attributes.value===a.value?e.attributes.selected=!0:e.attributes.hasOwnProperty(`selected`)&&delete e.attributes.selected}e.addEventListener(`input`,e=>{let n=e.target.options,i=n.selectedIndex===-1?``:n[n.selectedIndex].value;r.setValue(t,{value:i})});break}}static setAttributes({html:e,element:t,storage:n=null,intent:r,linkService:i}){let{attributes:a}=t,o=e instanceof HTMLAnchorElement;a.type===`radio`&&(a.name=`${a.name}-${r}`);for(let[t,n]of Object.entries(a))if(n!=null)switch(t){case`class`:n.length&&e.setAttribute(t,n.join(` `));break;case`dataId`:break;case`id`:e.setAttribute(`data-element-id`,n);break;case`style`:Object.assign(e.style,n);break;case`textContent`:e.textContent=n;break;default:(!o||t!==`href`&&t!==`newWindow`)&&e.setAttribute(t,n)}o&&i.addLinkAttributes(e,a.href,a.newWindow),n&&a.dataId&&this.setupStorage(e,a.dataId,t,n)}static render(e){let t=e.annotationStorage,n=e.linkService,r=e.xfaHtml,i=e.intent||`display`,a=document.createElement(r.name);r.attributes&&this.setAttributes({html:a,element:r,intent:i,linkService:n});let o=i!==`richText`,s=e.div;if(s.append(a),e.viewport){let t=`matrix(${e.viewport.transform.join(`,`)})`;s.style.transform=t}o&&s.setAttribute(`class`,`xfaLayer xfaFont`);let c=[];if(r.children.length===0){if(r.value){let e=document.createTextNode(r.value);a.append(e),o&&Ll.shouldBuildText(r.name)&&c.push(e)}return{textDivs:c}}let l=[[r,-1,a]];for(;l.length>0;){let[e,r,a]=l.at(-1);if(r+1===e.children.length){l.pop();continue}let s=e.children[++l.at(-1)[1]];if(s===null)continue;let{name:u}=s;if(u===`#text`){let e=document.createTextNode(s.value);c.push(e),a.append(e);continue}let d=s?.attributes?.xmlns?document.createElementNS(s.attributes.xmlns,u):document.createElement(u);if(a.append(d),s.attributes&&this.setAttributes({html:d,element:s,storage:t,intent:i,linkService:n}),s.children?.length>0)l.push([s,-1,d]);else if(s.value){let e=document.createTextNode(s.value);o&&Ll.shouldBuildText(u)&&c.push(e),d.append(e)}}for(let e of s.querySelectorAll(`.xfaNonInteractive input, .xfaNonInteractive textarea`))e.setAttribute(`readOnly`,!0);return{textDivs:c}}static update(e){let t=`matrix(${e.viewport.transform.join(`,`)})`;e.div.style.transform=t,e.div.hidden=!1}},zl=`http://www.w3.org/2000/svg`,Bl=class{static CSS=96;static PDF=72;static PDF_TO_CSS_UNITS=this.CSS/this.PDF};async function Vl(e,t=`text`){if(Yl(e,document.baseURI)){let n=await fetch(e);if(!n.ok)throw Error(n.statusText);switch(t){case`arraybuffer`:return n.arrayBuffer();case`blob`:return n.blob();case`json`:return n.json()}return n.text()}return new Promise((n,r)=>{let i=new XMLHttpRequest;i.open(`GET`,e,!0),i.responseType=t,i.onreadystatechange=()=>{if(i.readyState===XMLHttpRequest.DONE){if(i.status===200||i.status===0){switch(t){case`arraybuffer`:case`blob`:case`json`:n(i.response);return}n(i.responseText);return}r(Error(i.statusText))}},i.send(null)})}var Hl=class e{constructor({viewBox:e,userUnit:t,scale:n,rotation:r,offsetX:i=0,offsetY:a=0,dontFlip:o=!1}){this.viewBox=e,this.userUnit=t,this.scale=n,this.rotation=r,this.offsetX=i,this.offsetY=a,n*=t;let s=(e[2]+e[0])/2,c=(e[3]+e[1])/2,l,u,d,f;switch(r%=360,r<0&&(r+=360),r){case 180:l=-1,u=0,d=0,f=1;break;case 90:l=0,u=1,d=1,f=0;break;case 270:l=0,u=-1,d=-1,f=0;break;case 0:l=1,u=0,d=0,f=-1;break;default:throw Error(`PageViewport: Invalid rotation, must be a multiple of 90 degrees.`)}o&&(d=-d,f=-f);let p,m,h,g;l===0?(p=Math.abs(c-e[1])*n+i,m=Math.abs(s-e[0])*n+a,h=(e[3]-e[1])*n,g=(e[2]-e[0])*n):(p=Math.abs(s-e[0])*n+i,m=Math.abs(c-e[1])*n+a,h=(e[2]-e[0])*n,g=(e[3]-e[1])*n),this.transform=[l*n,u*n,d*n,f*n,p-l*n*s-d*n*c,m-u*n*s-f*n*c],this.width=h,this.height=g}get rawDims(){let e=this.viewBox;return Z(this,`rawDims`,{pageWidth:e[2]-e[0],pageHeight:e[3]-e[1],pageX:e[0],pageY:e[1]})}clone({scale:t=this.scale,rotation:n=this.rotation,offsetX:r=this.offsetX,offsetY:i=this.offsetY,dontFlip:a=!1}={}){return new e({viewBox:this.viewBox.slice(),userUnit:this.userUnit,scale:t,rotation:n,offsetX:r,offsetY:i,dontFlip:a})}convertToViewportPoint(e,t){let n=[e,t];return Q.applyTransform(n,this.transform),n}convertToViewportRectangle(e){let t=[e[0],e[1]];Q.applyTransform(t,this.transform);let n=[e[2],e[3]];return Q.applyTransform(n,this.transform),[t[0],t[1],n[0],n[1]]}convertToPdfPoint(e,t){let n=[e,t];return Q.applyInverseTransform(n,this.transform),n}},Ul=class extends hl{constructor(e,t=0){super(e,`RenderingCancelledException`),this.extraDelay=t}};function Wl(e){let t=e.length,n=0;for(;n<t&&e[n].trim()===``;)n++;return e.substring(n,n+5).toLowerCase()===`data:`}function Gl(e){return typeof e==`string`&&/\.pdf$/i.test(e)}function Kl(e){return[e]=e.split(/[#?]/,1),e.substring(e.lastIndexOf(`/`)+1)}function ql(e,t=`document.pdf`){if(typeof e!=`string`)return t;if(Wl(e))return X(`getPdfFilenameFromUrl: ignore "data:"-URL for performance reasons.`),t;let n=(e=>{try{return new URL(e)}catch{try{return new URL(decodeURIComponent(e))}catch{try{return new URL(e,`https://foo.bar`)}catch{try{return new URL(decodeURIComponent(e),`https://foo.bar`)}catch{return null}}}}})(e);if(!n)return t;let r=e=>{try{let t=decodeURIComponent(e);return t.includes(`/`)?(t=t.split(`/`).at(-1),t.test(/^\.pdf$/i)?t:e):t}catch{return e}},i=/\.pdf$/i,a=n.pathname.split(`/`).at(-1);if(i.test(a))return r(a);if(n.searchParams.size>0){let e=Array.from(n.searchParams.values()).reverse();for(let t of e)if(i.test(t))return r(t);let t=Array.from(n.searchParams.keys()).reverse();for(let e of t)if(i.test(e))return r(e)}if(n.hash){let e=/[^/?#=]+\.pdf\b(?!.*\.pdf\b)/i.exec(n.hash);if(e)return r(e[0])}return t}var Jl=class{started=Object.create(null);times=[];time(e){e in this.started&&X(`Timer is already running for ${e}`),this.started[e]=Date.now()}timeEnd(e){e in this.started||X(`Timer has not been started for ${e}`),this.times.push({name:e,start:this.started[e],end:Date.now()}),delete this.started[e]}toString(){let e=[],t=0;for(let{name:e}of this.times)t=Math.max(e.length,t);for(let{name:n,start:r,end:i}of this.times)e.push(`${n.padEnd(t)} ${i-r}ms\n`);return e.join(``)}};function Yl(e,t){let n=t?URL.parse(e,t):URL.parse(e);return n?.protocol===`http:`||n?.protocol===`https:`}function Xl(e){e.preventDefault()}function Zl(e){e.preventDefault(),e.stopPropagation()}function Ql(e){console.log(`Deprecated API usage: `+e)}var $l=class{static#e;static toDateObject(e){if(e instanceof Date)return e;if(!e||typeof e!=`string`)return null;this.#e||=RegExp(`^D:(\\d{4})(\\d{2})?(\\d{2})?(\\d{2})?(\\d{2})?(\\d{2})?([Z|+|-])?(\\d{2})?'?(\\d{2})?'?`);let t=this.#e.exec(e);if(!t)return null;let n=parseInt(t[1],10),r=parseInt(t[2],10);r=r>=1&&r<=12?r-1:0;let i=parseInt(t[3],10);i=i>=1&&i<=31?i:1;let a=parseInt(t[4],10);a=a>=0&&a<=23?a:0;let o=parseInt(t[5],10);o=o>=0&&o<=59?o:0;let s=parseInt(t[6],10);s=s>=0&&s<=59?s:0;let c=t[7]||`Z`,l=parseInt(t[8],10);l=l>=0&&l<=23?l:0;let u=parseInt(t[9],10)||0;return u=u>=0&&u<=59?u:0,c===`-`?(a+=l,o+=u):c===`+`&&(a-=l,o-=u),new Date(Date.UTC(n,r,i,a,o,s))}};function eu(e,{scale:t=1,rotation:n=0}){let{width:r,height:i}=e.attributes.style;return new Hl({viewBox:[0,0,parseInt(r),parseInt(i)],userUnit:1,scale:t,rotation:n})}function tu(e){if(e.startsWith(`#`)){let t=parseInt(e.slice(1),16);return[(t&16711680)>>16,(t&65280)>>8,t&255]}return e.startsWith(`rgb(`)?e.slice(4,-1).split(`,`).map(e=>parseInt(e)):e.startsWith(`rgba(`)?e.slice(5,-1).split(`,`).map(e=>parseInt(e)).slice(0,3):(X(`Not a valid color format: "${e}"`),[0,0,0])}function nu(e){let t=document.createElement(`span`);t.style.visibility=`hidden`,t.style.colorScheme=`only light`,document.body.append(t);for(let n of e.keys()){t.style.color=n;let r=window.getComputedStyle(t).color;e.set(n,tu(r))}t.remove()}function ru(e){let{a:t,b:n,c:r,d:i,e:a,f:o}=e.getTransform();return[t,n,r,i,a,o]}function iu(e){let{a:t,b:n,c:r,d:i,e:a,f:o}=e.getTransform().invertSelf();return[t,n,r,i,a,o]}function au(e,t,n=!1,r=!0){if(t instanceof Hl){let{pageWidth:r,pageHeight:i}=t.rawDims,{style:a}=e,o=Dl.isCSSRoundSupported,s=`var(--total-scale-factor) * ${r}px`,c=`var(--total-scale-factor) * ${i}px`,l=o?`round(down, ${s}, var(--scale-round-x))`:`calc(${s})`,u=o?`round(down, ${c}, var(--scale-round-y))`:`calc(${c})`;!n||t.rotation%180==0?(a.width=l,a.height=u):(a.width=u,a.height=l)}r&&e.setAttribute(`data-main-rotation`,t.rotation)}var ou=class e{constructor(){let{pixelRatio:t}=e;this.sx=t,this.sy=t}get scaled(){return this.sx!==1||this.sy!==1}get symmetric(){return this.sx===this.sy}limitCanvas(t,n,r,i,a=-1){let o=1/0,s=1/0,c=1/0;r=e.capPixels(r,a),r>0&&(o=Math.sqrt(r/(t*n))),i!==-1&&(s=i/t,c=i/n);let l=Math.min(o,s,c);return this.sx>l||this.sy>l?(this.sx=l,this.sy=l,!0):!1}static get pixelRatio(){return globalThis.devicePixelRatio||1}static capPixels(e,t){if(t>=0){let n=Math.ceil(window.screen.availWidth*window.screen.availHeight*this.pixelRatio**2*(1+t/100));return e>0?Math.min(e,n):n}return e}},su=[`image/apng`,`image/avif`,`image/bmp`,`image/gif`,`image/jpeg`,`image/png`,`image/svg+xml`,`image/webp`,`image/x-icon`],cu=class{static get isDarkMode(){return Z(this,`isDarkMode`,!!window?.matchMedia?.(`(prefers-color-scheme: dark)`).matches)}},lu=class{static get commentForegroundColor(){let e=document.createElement(`span`);e.classList.add(`comment`,`sidebar`);let{style:t}=e;t.width=t.height=`0`,t.display=`none`,t.color=`var(--comment-fg-color)`,document.body.append(e);let{color:n}=window.getComputedStyle(e);return e.remove(),Z(this,`commentForegroundColor`,tu(n))}};function uu(e,t,n,r){r=Math.min(Math.max(r??1,0),1);let i=255*(1-r);return e=Math.round(e*r+i),t=Math.round(t*r+i),n=Math.round(n*r+i),[e,t,n]}function du(e,t){let n=e[0]/255,r=e[1]/255,i=e[2]/255,a=Math.max(n,r,i),o=Math.min(n,r,i),s=(a+o)/2;if(a===o)t[0]=t[1]=0;else{let e=a-o;switch(t[1]=s<.5?e/(a+o):e/(2-a-o),a){case n:t[0]=((r-i)/e+(r<i?6:0))*60;break;case r:t[0]=((i-n)/e+2)*60;break;case i:t[0]=((n-r)/e+4)*60;break}}t[2]=s}function fu(e,t){let n=e[0],r=e[1],i=e[2],a=(1-Math.abs(2*i-1))*r,o=a*(1-Math.abs(n/60%2-1)),s=i-a/2;switch(Math.floor(n/60)){case 0:t[0]=a+s,t[1]=o+s,t[2]=s;break;case 1:t[0]=o+s,t[1]=a+s,t[2]=s;break;case 2:t[0]=s,t[1]=a+s,t[2]=o+s;break;case 3:t[0]=s,t[1]=o+s,t[2]=a+s;break;case 4:t[0]=o+s,t[1]=s,t[2]=a+s;break;case 5:case 6:t[0]=a+s,t[1]=s,t[2]=o+s;break}}function pu(e){return e<=.03928?e/12.92:((e+.055)/1.055)**2.4}function mu(e,t,n){fu(e,n),n.map(pu);let r=.2126*n[0]+.7152*n[1]+.0722*n[2];fu(t,n),n.map(pu);let i=.2126*n[0]+.7152*n[1]+.0722*n[2];return r>i?(r+.05)/(i+.05):(i+.05)/(r+.05)}var hu=new Map;function gu(e,t){let n=e[0]+e[1]*256+e[2]*65536+t[0]*16777216+t[1]*4294967296+t[2]*1099511627776,r=hu.get(n);if(r)return r;let i=new Float32Array(9),a=i.subarray(0,3),o=i.subarray(3,6);du(e,o);let s=i.subarray(6,9);du(t,s);let c=s[2]<.5,l=c?12:4.5;if(o[2]=c?Math.sqrt(o[2]):1-Math.sqrt(1-o[2]),mu(o,s,a)<l){let e,t;for(c?(e=o[2],t=1):(e=0,t=o[2]);t-e>.005;){let n=o[2]=(e+t)/2;c===mu(o,s,a)<l?e=n:t=n}o[2]=c?t:e}return fu(o,a),r=Q.makeHexColor(Math.round(a[0]*255),Math.round(a[1]*255),Math.round(a[2]*255)),hu.set(n,r),r}function _u({html:e,dir:t,className:n},r){let i=document.createDocumentFragment();if(typeof e==`string`){let n=document.createElement(`p`);n.dir=t||`auto`;let r=e.split(/(?:\r\n?|\n)/);for(let e=0,t=r.length;e<t;++e){let i=r[e];n.append(document.createTextNode(i)),e<t-1&&n.append(document.createElement(`br`))}i.append(n)}else Rl.render({xfaHtml:e,div:i,intent:`richText`});i.firstElementChild.classList.add(`richText`,n),r.append(i)}function vu(e){let t=new Path2D;if(!e)return t;for(let n=0,r=e.length;n<r;)switch(e[n++]){case il.moveTo:t.moveTo(e[n++],e[n++]);break;case il.lineTo:t.lineTo(e[n++],e[n++]);break;case il.curveTo:t.bezierCurveTo(e[n++],e[n++],e[n++],e[n++],e[n++],e[n++]);break;case il.quadraticCurveTo:t.quadraticCurveTo(e[n++],e[n++],e[n++],e[n++]);break;case il.closePath:t.closePath();break;default:X(`Unrecognized drawing path operator: ${e[n-1]}`);break}return t}var yu=class e{static#e=null;static#t=null;static#n=null;static#r=0;static#i=[];get pagesNumber(){return e.#r}set pagesNumber(t){e.#r!==t&&(e.#r=t,t===0&&(e.#t=null,e.#e=null))}addListener(t){e.#i.push(t)}removeListener(t){let n=e.#i.indexOf(t);n>=0&&e.#i.splice(n,1)}#a(){for(let t of e.#i)t()}#o(t){if(e.#t)return;let n=e.#r,r=new Uint32Array(3*n),i=e.#t=r.subarray(0,n),a=e.#e=r.subarray(n,2*n);if(t)for(let e=0;e<n;e++)i[e]=a[e]=e+1;e.#n=r.subarray(2*n)}movePages(t,n,r){this.#o(!0);let i=e.#t,a=e.#e;e.#n.set(a);let o=n.length,s=new Uint32Array(o),c=0;for(let e=0;e<o;e++){let t=n[e]-1;s[e]=i[t],t<r&&(c+=1)}let l=e.#r,u=r-c,d=l-o;u=Il(u,0,d);for(let e=0,n=0;e<l;e++)t.has(e+1)||(i[n++]=i[e]);i.copyWithin(u+o,u,d),i.set(s,u);let f=!1;for(let e=0,t=l;e<t;e++){let t=i[e];f||=t!==e+1,a[t-1]=e+1}this.#a(),f||(this.pagesNumber=0)}hasBeenAltered(){return e.#t!==null}getPageMappingForSaving(){return{pageIndices:e.#e?e.#e.map(e=>e-1):null}}getPrevPageNumber(t){return e.#n[e.#t[t-1]-1]}getPageNumber(t){return e.#e?.[t-1]??t}getPageId(t){return e.#t?.[t-1]??t}static get instance(){return Z(this,`instance`,new e)}getMapping(){return e.#t.subarray(0,this.pagesNumber)}};J(4972),J(4628),J(7642),J(8004),J(3853),J(5876),J(2475),J(5024),J(1698),J(4979),J(9314),J(1148),J(3579),J(8335);var bu=class e{#e=null;#t=null;#n;#r=null;#i=null;#a=null;#o=null;#s=null;static#c=null;constructor(t){this.#n=t,e.#c||=Object.freeze({freetext:`pdfjs-editor-remove-freetext-button`,highlight:`pdfjs-editor-remove-highlight-button`,ink:`pdfjs-editor-remove-ink-button`,stamp:`pdfjs-editor-remove-stamp-button`,signature:`pdfjs-editor-remove-signature-button`})}render(){let t=this.#e=document.createElement(`div`);t.classList.add(`editToolbar`,`hidden`),t.setAttribute(`role`,`toolbar`);let n=this.#n._uiManager._signal;n instanceof AbortSignal&&!n.aborted&&(t.addEventListener(`contextmenu`,Xl,{signal:n}),t.addEventListener(`pointerdown`,e.#l,{signal:n}));let r=this.#r=document.createElement(`div`);r.className=`buttons`,t.append(r);let i=this.#n.toolbarPosition;if(i){let{style:e}=t;e.insetInlineEnd=`${100*(this.#n._uiManager.direction===`ltr`?1-i[0]:i[0])}%`,e.top=`calc(${100*i[1]}% + var(--editor-toolbar-vert-offset))`}return t}get div(){return this.#e}static#l(e){e.stopPropagation()}#u(e){this.#n._focusEventsAllowed=!1,Zl(e)}#d(e){this.#n._focusEventsAllowed=!0,Zl(e)}#f(e){let t=this.#n._uiManager._signal;return!(t instanceof AbortSignal)||t.aborted?!1:(e.addEventListener(`focusin`,this.#u.bind(this),{capture:!0,signal:t}),e.addEventListener(`focusout`,this.#d.bind(this),{capture:!0,signal:t}),e.addEventListener(`contextmenu`,Xl,{signal:t}),!0)}hide(){this.#e.classList.add(`hidden`),this.#t?.hideDropdown()}show(){this.#e.classList.remove(`hidden`),this.#i?.shown(),this.#a?.shown()}addDeleteButton(){let{editorType:t,_uiManager:n}=this.#n,r=document.createElement(`button`);r.classList.add(`basic`,`deleteButton`),r.tabIndex=0,r.setAttribute(`data-l10n-id`,e.#c[t]),this.#f(r)&&r.addEventListener(`click`,e=>{n.delete()},{signal:n._signal}),this.#r.append(r)}get#p(){let e=document.createElement(`div`);return e.className=`divider`,e}async addAltText(e){let t=await e.render();this.#f(t),this.#r.append(t,this.#p),this.#i=e}addComment(e,t=null){if(this.#a)return;let n=e.renderForToolbar();if(!n)return;this.#f(n);let r=this.#o=this.#p;t?(this.#r.insertBefore(n,t),this.#r.insertBefore(r,t)):this.#r.append(n,r),this.#a=e,e.toolbar=this}addColorPicker(e){if(this.#t)return;this.#t=e;let t=e.renderButton();this.#f(t),this.#r.append(t,this.#p)}async addEditSignatureButton(e){let t=this.#s=await e.renderEditButton(this.#n);this.#f(t),this.#r.append(t,this.#p)}removeButton(e){switch(e){case`comment`:this.#a?.removeToolbarCommentButton(),this.#a=null,this.#o?.remove(),this.#o=null;break}}async addButton(e,t){switch(e){case`colorPicker`:t&&this.addColorPicker(t);break;case`altText`:t&&await this.addAltText(t);break;case`editSignature`:t&&await this.addEditSignatureButton(t);break;case`delete`:this.addDeleteButton();break;case`comment`:t&&this.addComment(t);break}}async addButtonBefore(e,t,n){if(!t&&e===`comment`)return;let r=this.#r.querySelector(n);r&&e===`comment`&&this.addComment(t,r)}updateEditSignatureButton(e){this.#s&&(this.#s.title=e)}remove(){this.#e.remove(),this.#t?.destroy(),this.#t=null}},xu=class{#e=null;#t=null;#n;constructor(e){this.#n=e}#r(){let e=this.#t=document.createElement(`div`);e.className=`editToolbar`,e.setAttribute(`role`,`toolbar`);let t=this.#n._signal;t instanceof AbortSignal&&!t.aborted&&e.addEventListener(`contextmenu`,Xl,{signal:t});let n=this.#e=document.createElement(`div`);return n.className=`buttons`,e.append(n),this.#n.hasCommentManager()&&this.#a(`commentButton`,`pdfjs-comment-floating-button`,`pdfjs-comment-floating-button-label`,()=>{this.#n.commentSelection(`floating_button`)}),this.#a(`highlightButton`,`pdfjs-highlight-floating-button1`,`pdfjs-highlight-floating-button-label`,()=>{this.#n.highlightSelection(`floating_button`)}),e}#i(e,t){let n=0,r=0;for(let i of e){let e=i.y+i.height;if(e<n)continue;let a=i.x+(t?i.width:0);if(e>n){r=a,n=e;continue}t?a>r&&(r=a):a<r&&(r=a)}return[t?1-r:r,n]}show(e,t,n){let[r,i]=this.#i(t,n),{style:a}=this.#t||=this.#r();e.append(this.#t),a.insetInlineEnd=`${100*r}%`,a.top=`calc(${100*i}% + var(--editor-toolbar-vert-offset))`}hide(){this.#t.remove()}#a(e,t,n,r){let i=document.createElement(`button`);i.classList.add(`basic`,e),i.tabIndex=0,i.setAttribute(`data-l10n-id`,t);let a=document.createElement(`span`);i.append(a),a.className=`visuallyHidden`,a.setAttribute(`data-l10n-id`,n);let o=this.#n._signal;o instanceof AbortSignal&&!o.aborted&&(i.addEventListener(`contextmenu`,Xl,{signal:o}),i.addEventListener(`click`,r,{signal:o})),this.#e.append(i)}};function Su(e,t,n){for(let r of n)t.addEventListener(r,e[r].bind(e))}var Cu=class e{static#e=NaN;static#t=null;static#n=NaN;static#r=null;static initializeAndAddPointerId(t){(e.#t||=new Set).add(t)}static setPointer(t,n){e.#e||=n,e.#r??=t}static setTimeStamp(t){e.#n=t}static isSamePointerId(t){return e.#e===t}static isSamePointerIdOrRemove(t){return e.#e===t?!0:(e.#t?.delete(t),!1)}static isSamePointerType(t){return e.#r===t}static isInitializedAndDifferentPointerType(t){return e.#r!==null&&!e.isSamePointerType(t)}static isSameTimeStamp(t){return e.#n===t}static isUsingMultiplePointers(){return e.#t?.size>=1}static clearPointerType(){e.#r=null}static clearPointerIds(){e.#e=NaN,e.#t=null}static clearTimeStamp(){e.#n=NaN}},wu=class{#e=0;get id(){return`${Jc}${this.#e++}`}},Tu=class e{#e=Nl();#t=0;#n=null;static get _isSVGFittingCanvas(){let e=new OffscreenCanvas(1,3).getContext(`2d`,{willReadFrequently:!0}),t=new Image;t.src=`data:image/svg+xml;charset=UTF-8,<svg viewBox="0 0 1 1" width="1" height="1" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" style="fill:red;"/></svg>`;let n=t.decode().then(()=>(e.drawImage(t,0,0,1,1,0,0,1,3),new Uint32Array(e.getImageData(0,0,1,1).data.buffer)[0]===0));return Z(this,`_isSVGFittingCanvas`,n)}async#r(t,n){this.#n||=new Map;let r=this.#n.get(t);if(r===null)return null;if(r?.bitmap)return r.refCounter+=1,r;try{r||={bitmap:null,id:`image_${this.#e}_${this.#t++}`,refCounter:0,isSvg:!1};let t;if(typeof n==`string`?(r.url=n,t=await Vl(n,`blob`)):n instanceof File?t=r.file=n:n instanceof Blob&&(t=n),t.type===`image/svg+xml`){let n=e._isSVGFittingCanvas,i=new FileReader,a=new Image,o=new Promise((e,t)=>{a.onload=()=>{r.bitmap=a,r.isSvg=!0,e()},i.onload=async()=>{let e=r.svgUrl=i.result;a.src=await n?`${e}#svgView(preserveAspectRatio(none))`:e},a.onerror=i.onerror=t});i.readAsDataURL(t),await o}else r.bitmap=await createImageBitmap(t);r.refCounter=1}catch(e){X(e),r=null}return this.#n.set(t,r),r&&this.#n.set(r.id,r),r}async getFromFile(e){let{lastModified:t,name:n,size:r,type:i}=e;return this.#r(`${t}_${n}_${r}_${i}`,e)}async getFromUrl(e){return this.#r(e,e)}async getFromBlob(e,t){let n=await t;return this.#r(e,n)}async getFromId(e){this.#n||=new Map;let t=this.#n.get(e);if(!t)return null;if(t.bitmap)return t.refCounter+=1,t;if(t.file)return this.getFromFile(t.file);if(t.blobPromise){let{blobPromise:e}=t;return delete t.blobPromise,this.getFromBlob(t.id,e)}return this.getFromUrl(t.url)}getFromCanvas(e,t){this.#n||=new Map;let n=this.#n.get(e);if(n?.bitmap)return n.refCounter+=1,n;let r=new OffscreenCanvas(t.width,t.height);return r.getContext(`2d`).drawImage(t,0,0),n={bitmap:r.transferToImageBitmap(),id:`image_${this.#e}_${this.#t++}`,refCounter:1,isSvg:!1},this.#n.set(e,n),this.#n.set(n.id,n),n}getSvgUrl(e){let t=this.#n.get(e);return t?.isSvg?t.svgUrl:null}deleteId(e){this.#n||=new Map;let t=this.#n.get(e);if(!t||(--t.refCounter,t.refCounter!==0))return;let{bitmap:n}=t;if(!t.url&&!t.file){let e=new OffscreenCanvas(n.width,n.height);e.getContext(`bitmaprenderer`).transferFromImageBitmap(n),t.blobPromise=e.convertToBlob()}n.close?.(),t.bitmap=null}isValidId(e){return e.startsWith(`image_${this.#e}_`)}},Eu=class{#e=[];#t=!1;#n;#r=-1;constructor(e=128){this.#n=e}add({cmd:e,undo:t,post:n,mustExec:r,type:i=NaN,overwriteIfSameType:a=!1,keepUndo:o=!1}){if(r&&e(),this.#t)return;let s={cmd:e,undo:t,post:n,type:i};if(this.#r===-1){this.#e.length>0&&(this.#e.length=0),this.#r=0,this.#e.push(s);return}if(a&&this.#e[this.#r].type===i){o&&(s.undo=this.#e[this.#r].undo),this.#e[this.#r]=s;return}let c=this.#r+1;c===this.#n?this.#e.splice(0,1):(this.#r=c,c<this.#e.length&&this.#e.splice(c)),this.#e.push(s)}undo(){if(this.#r===-1)return;this.#t=!0;let{undo:e,post:t}=this.#e[this.#r];e(),t?.(),this.#t=!1,--this.#r}redo(){if(this.#r<this.#e.length-1){this.#r+=1,this.#t=!0;let{cmd:e,post:t}=this.#e[this.#r];e(),t?.(),this.#t=!1}}hasSomethingToUndo(){return this.#r!==-1}hasSomethingToRedo(){return this.#r<this.#e.length-1}cleanType(e){if(this.#r!==-1){for(let t=this.#r;t>=0;t--)if(this.#e[t].type!==e){this.#e.splice(t+1,this.#r-t),this.#r=t;return}this.#e.length=0,this.#r=-1}}destroy(){this.#e=null}},Du=class{constructor(e){this.buffer=[],this.callbacks=new Map,this.allKeys=new Set;let{isMac:t}=Dl.platform;for(let[n,r,i={}]of e)for(let e of n){let n=e.startsWith(`mac+`);t&&n?(this.callbacks.set(e.slice(4),{callback:r,options:i}),this.allKeys.add(e.split(`+`).at(-1))):!t&&!n&&(this.callbacks.set(e,{callback:r,options:i}),this.allKeys.add(e.split(`+`).at(-1)))}}#e(e){e.altKey&&this.buffer.push(`alt`),e.ctrlKey&&this.buffer.push(`ctrl`),e.metaKey&&this.buffer.push(`meta`),e.shiftKey&&this.buffer.push(`shift`),this.buffer.push(e.key);let t=this.buffer.join(`+`);return this.buffer.length=0,t}exec(e,t){if(!this.allKeys.has(t.key))return;let n=this.callbacks.get(this.#e(t));if(!n)return;let{callback:r,options:{bubbles:i=!1,args:a=[],checker:o=null}}=n;o&&!o(e,t)||(r.bind(e,...a,t)(),i||Zl(t))}},Ou=class e{static _colorsMapping=new Map([[`CanvasText`,[0,0,0]],[`Canvas`,[255,255,255]]]);get _colors(){let e=new Map([[`CanvasText`,null],[`Canvas`,null]]);return nu(e),Z(this,`_colors`,e)}convert(t){let n=tu(t);if(!window.matchMedia(`(forced-colors: active)`).matches)return n;for(let[t,r]of this._colors)if(r.every((e,t)=>e===n[t]))return e._colorsMapping.get(t);return n}getHexCode(e){let t=this._colors.get(e);return t?Q.makeHexColor(...t):e}},ku=class e{#e=new AbortController;#t=null;#n=null;#r=new Map;#i=new Map;#a=null;#o=null;#s=null;#c=new Eu;#l=null;#u=null;#d=null;#f=0;#p=new Set;#m=null;#h=null;#g=new Set;_editorUndoBar=null;#_=!1;#v=!1;#y=!1;#b=null;#x=null;#S=null;#C=null;#w=!1;#T=null;#E=new wu;#D=!1;#O=!1;#k=!1;#A=null;#j=null;#M=null;#N=null;#P=null;#F=Y.NONE;#I=new Set;#L=null;#R=null;#z=null;#B=null;#V=null;#H={isEditing:!1,isEmpty:!0,hasSomethingToUndo:!1,hasSomethingToRedo:!1,hasSelectedEditor:!1,hasSelectedText:!1};#U=[0,0];#W=null;#G=null;#K=null;#q=null;#J=null;static TRANSLATE_SMALL=1;static TRANSLATE_BIG=10;static get _keyboardManager(){let t=e.prototype,n=e=>e.#G.contains(document.activeElement)&&document.activeElement.tagName!==`BUTTON`&&e.hasSomethingToControl(),r=(e,{target:t})=>{if(t instanceof HTMLInputElement){let{type:e}=t;return e!==`text`&&e!==`number`}return!0},i=this.TRANSLATE_SMALL,a=this.TRANSLATE_BIG;return Z(this,`_keyboardManager`,new Du([[[`ctrl+a`,`mac+meta+a`],t.selectAll,{checker:r}],[[`ctrl+z`,`mac+meta+z`],t.undo,{checker:r}],[[`ctrl+y`,`ctrl+shift+z`,`mac+meta+shift+z`,`ctrl+shift+Z`,`mac+meta+shift+Z`],t.redo,{checker:r}],[[`Backspace`,`alt+Backspace`,`ctrl+Backspace`,`shift+Backspace`,`mac+Backspace`,`mac+alt+Backspace`,`mac+ctrl+Backspace`,`Delete`,`ctrl+Delete`,`shift+Delete`,`mac+Delete`],t.delete,{checker:r}],[[`Enter`,`mac+Enter`],t.addNewEditorFromKeyboard,{checker:(e,{target:t})=>!(t instanceof HTMLButtonElement)&&e.#G.contains(t)&&!e.isEnterHandled}],[[` `,`mac+ `],t.addNewEditorFromKeyboard,{checker:(e,{target:t})=>!(t instanceof HTMLButtonElement)&&e.#G.contains(document.activeElement)}],[[`Escape`,`mac+Escape`],t.unselectAll],[[`ArrowLeft`,`mac+ArrowLeft`],t.translateSelectedEditors,{args:[-i,0],checker:n}],[[`ctrl+ArrowLeft`,`mac+shift+ArrowLeft`],t.translateSelectedEditors,{args:[-a,0],checker:n}],[[`ArrowRight`,`mac+ArrowRight`],t.translateSelectedEditors,{args:[i,0],checker:n}],[[`ctrl+ArrowRight`,`mac+shift+ArrowRight`],t.translateSelectedEditors,{args:[a,0],checker:n}],[[`ArrowUp`,`mac+ArrowUp`],t.translateSelectedEditors,{args:[0,-i],checker:n}],[[`ctrl+ArrowUp`,`mac+shift+ArrowUp`],t.translateSelectedEditors,{args:[0,-a],checker:n}],[[`ArrowDown`,`mac+ArrowDown`],t.translateSelectedEditors,{args:[0,i],checker:n}],[[`ctrl+ArrowDown`,`mac+shift+ArrowDown`],t.translateSelectedEditors,{args:[0,a],checker:n}]]))}constructor(e,t,n,r,i,a,o,s,c,l,u,d,f,p,m,h){let g=this._signal=this.#e.signal;this.#G=e,this.#K=t,this.#q=n,this.#a=r,this.#l=i,this.#R=a,this.#V=s,this._eventBus=o,o._on(`editingaction`,this.onEditingAction.bind(this),{signal:g}),o._on(`pagechanging`,this.onPageChanging.bind(this),{signal:g}),o._on(`scalechanging`,this.onScaleChanging.bind(this),{signal:g}),o._on(`rotationchanging`,this.onRotationChanging.bind(this),{signal:g}),o._on(`setpreference`,this.onSetPreference.bind(this),{signal:g}),o._on(`switchannotationeditorparams`,e=>this.updateParams(e.type,e.value),{signal:g}),o._on(`pagesedited`,this.onPagesEdited.bind(this),{signal:g}),window.addEventListener(`pointerdown`,()=>{this.#O=!0},{capture:!0,signal:g}),window.addEventListener(`pointerup`,()=>{this.#O=!1},{capture:!0,signal:g}),this.#ee(),this.#se(),this.#re(),this.#o=s.annotationStorage,this.#b=s.filterFactory,this.#z=c,this.#C=l||null,this.#_=u,this.#v=d,this.#y=f,this.#P=p||null,this.viewParameters={realScale:Bl.PDF_TO_CSS_UNITS,rotation:0},this.isShiftKeyDown=!1,this._editorUndoBar=m||null,this._supportsPinchToZoom=h!==!1,i?.setSidebarUiManager(this)}destroy(){this.#J?.resolve(),this.#J=null,this.#e?.abort(),this.#e=null,this._signal=null;for(let e of this.#i.values())e.destroy();this.#i.clear(),this.#r.clear(),this.#g.clear(),this.#N?.clear(),this.#t=null,this.#I.clear(),this.#c.destroy(),this.#a?.destroy(),this.#l?.destroy(),this.#R?.destroy(),this.#T?.hide(),this.#T=null,this.#M?.destroy(),this.#M=null,this.#n=null,this.#x&&=(clearTimeout(this.#x),null),this.#W&&=(clearTimeout(this.#W),null),this._editorUndoBar?.destroy(),this.#V=null}combinedSignal(e){return AbortSignal.any([this._signal,e.signal])}get mlManager(){return this.#P}get useNewAltTextFlow(){return this.#v}get useNewAltTextWhenAddingImage(){return this.#y}get hcmFilter(){return Z(this,`hcmFilter`,this.#z?this.#b.addHCMFilter(this.#z.foreground,this.#z.background):`none`)}get direction(){return Z(this,`direction`,getComputedStyle(this.#G).direction)}get _highlightColors(){return Z(this,`_highlightColors`,this.#C?new Map(this.#C.split(`,`).map(e=>(e=e.split(`=`).map(e=>e.trim()),e[1]=e[1].toUpperCase(),e))):null)}get highlightColors(){let{_highlightColors:e}=this;if(!e)return Z(this,`highlightColors`,null);let t=new Map,n=!!this.#z;for(let[r,i]of e){let e=r.endsWith(`_HCM`);if(n&&e){t.set(r.replace(`_HCM`,``),i);continue}!n&&!e&&t.set(r,i)}return Z(this,`highlightColors`,t)}get highlightColorNames(){return Z(this,`highlightColorNames`,this.highlightColors?new Map(Array.from(this.highlightColors,e=>e.reverse())):null)}getNonHCMColor(e){if(!this._highlightColors)return e;let t=this.highlightColorNames.get(e);return this._highlightColors.get(t)||e}getNonHCMColorName(e){return this.highlightColorNames.get(e)||e}setCurrentDrawingSession(e){e?(this.unselectAll(),this.disableUserSelect(!0)):this.disableUserSelect(!1),this.#d=e}setMainHighlightColorPicker(e){this.#M=e}editAltText(e,t=!1){this.#a?.editAltText(this,e,t)}hasCommentManager(){return!!this.#l}editComment(e,t,n,r){this.#l?.showDialog(this,e,t,n,r)}selectComment(e,t){(this.#i.get(e)?.getEditorByUID(t))?.toggleComment(!0,!0)}updateComment(e){this.#l?.updateComment(e.getData())}updatePopupColor(e){this.#l?.updatePopupColor(e)}removeComment(e){this.#l?.removeComments([e.uid])}deleteComment(e,t){let n=()=>{e.comment=t};this.addCommands({cmd:()=>{this._editorUndoBar?.show(n,`comment`),this.toggleComment(null),e.comment=null},undo:n,mustExec:!0})}toggleComment(e,t,n=void 0){this.#l?.toggleCommentPopup(e,t,n)}makeCommentColor(e,t){return e&&this.#l?.makeCommentColor(e,t)||null}getCommentDialogElement(){return this.#l?.dialogElement||null}async waitForEditorsRendered(e){if(this.#i.has(e-1))return;let{resolve:t,promise:n}=Promise.withResolvers(),r=n=>{n.pageNumber===e&&(this._eventBus._off(`editorsrendered`,r),t())};this._eventBus.on(`editorsrendered`,r),await n}getSignature(e){this.#R?.getSignature({uiManager:this,editor:e})}get signatureManager(){return this.#R}switchToMode(e,t){this._eventBus.on(`annotationeditormodechanged`,t,{once:!0,signal:this._signal}),this._eventBus.dispatch(`showannotationeditorui`,{source:this,mode:e})}setPreference(e,t){this._eventBus.dispatch(`setpreference`,{source:this,name:e,value:t})}onSetPreference({name:e,value:t}){switch(e){case`enableNewAltTextWhenAddingImage`:this.#y=t;break}}onPagesEdited({pagesMapper:e}){for(let t of this.#r.values())t.updatePageIndex(e.getPrevPageNumber(t.pageIndex+1)-1);let t=this.#i,n=this.#i=new Map;for(let[r,i]of t){let t=e.getPrevPageNumber(r+1)-1;if(t===-1){i.destroy();continue}n.set(t,i),i.updatePageIndex(t)}}onPageChanging({pageNumber:e}){this.#f=e-1}focusMainContainer(){this.#G.focus()}findParent(e,t){for(let n of this.#i.values()){let{x:r,y:i,width:a,height:o}=n.div.getBoundingClientRect();if(e>=r&&e<=r+a&&t>=i&&t<=i+o)return n}return null}disableUserSelect(e=!1){this.#K.classList.toggle(`noUserSelect`,e)}addShouldRescale(e){this.#g.add(e)}removeShouldRescale(e){this.#g.delete(e)}onScaleChanging({scale:e}){this.commitOrRemove(),this.viewParameters.realScale=e*Bl.PDF_TO_CSS_UNITS;for(let e of this.#g)e.onScaleChanging();this.#d?.onScaleChanging()}onRotationChanging({pagesRotation:e}){this.commitOrRemove(),this.viewParameters.rotation=e}#Y({anchorNode:e}){return e.nodeType===Node.TEXT_NODE?e.parentElement:e}#X(e){let{currentLayer:t}=this;if(t.hasTextLayer(e))return t;for(let t of this.#i.values())if(t.hasTextLayer(e))return t;return null}highlightSelection(e=``,t=!1){let n=document.getSelection();if(!n||n.isCollapsed)return;let{anchorNode:r,anchorOffset:i,focusNode:a,focusOffset:o}=n,s=n.toString(),c=this.#Y(n).closest(`.textLayer`),l=this.getSelectionBoxes(c);if(!l)return;n.empty();let u=this.#X(c),d=this.#F===Y.NONE,f=()=>{let n=u?.createAndAddNewEditor({x:0,y:0},!1,{methodOfCreation:e,boxes:l,anchorNode:r,anchorOffset:i,focusNode:a,focusOffset:o,text:s});d&&this.showAllEditors(`highlight`,!0,!0),t&&n?.editComment()};if(d){this.switchToMode(Y.HIGHLIGHT,f);return}f()}commentSelection(e=``){this.highlightSelection(e,!0)}#Z(){let e=document.getSelection();if(!e||e.isCollapsed)return;let t=this.#Y(e).closest(`.textLayer`),n=this.getSelectionBoxes(t);n&&(this.#T||=new xu(this),this.#T.show(t,n,this.direction===`ltr`))}getAndRemoveDataFromAnnotationStorage(e){if(!this.#o)return null;let t=`${Jc}${e}`,n=this.#o.getRawValue(t);return n&&this.#o.remove(t),n}addToAnnotationStorage(e){!e.isEmpty()&&this.#o&&!this.#o.has(e.id)&&this.#o.setValue(e.id,e)}a11yAlert(e,t=null){let n=this.#q;n&&(n.setAttribute(`data-l10n-id`,e),t?n.setAttribute(`data-l10n-args`,JSON.stringify(t)):n.removeAttribute(`data-l10n-args`))}#Q(){let e=document.getSelection();if(!e||e.isCollapsed){this.#L&&(this.#T?.hide(),this.#L=null,this.#ce({hasSelectedText:!1}));return}let{anchorNode:t}=e;if(t===this.#L)return;let n=this.#Y(e).closest(`.textLayer`);if(!n){this.#L&&(this.#T?.hide(),this.#L=null,this.#ce({hasSelectedText:!1}));return}if(this.#T?.hide(),this.#L=t,this.#ce({hasSelectedText:!0}),!(this.#F!==Y.HIGHLIGHT&&this.#F!==Y.NONE)&&(this.#F===Y.HIGHLIGHT&&this.showAllEditors(`highlight`,!0,!0),this.#w=this.isShiftKeyDown,!this.isShiftKeyDown)){let e=this.#F===Y.HIGHLIGHT?this.#X(n):null;if(e?.toggleDrawing(),this.#O){let t=new AbortController,n=this.combinedSignal(t),r=n=>{n.type===`pointerup`&&n.button!==0||(t.abort(),e?.toggleDrawing(!0),n.type===`pointerup`&&this.#$(`main_toolbar`))};window.addEventListener(`pointerup`,r,{signal:n}),window.addEventListener(`blur`,r,{signal:n})}else e?.toggleDrawing(!0),this.#$(`main_toolbar`)}}#$(e=``){this.#F===Y.HIGHLIGHT?this.highlightSelection(e):this.#_&&this.#Z()}#ee(){document.addEventListener(`selectionchange`,this.#Q.bind(this),{signal:this._signal})}#te(){if(this.#S)return;this.#S=new AbortController;let e=this.combinedSignal(this.#S);window.addEventListener(`focus`,this.focus.bind(this),{signal:e}),window.addEventListener(`blur`,this.blur.bind(this),{signal:e})}#ne(){this.#S?.abort(),this.#S=null}blur(){if(this.isShiftKeyDown=!1,this.#w&&(this.#w=!1,this.#$(`main_toolbar`)),!this.hasSelection)return;let{activeElement:e}=document;for(let t of this.#I)if(t.div.contains(e)){this.#j=[t,e],t._focusEventsAllowed=!1;break}}focus(){if(!this.#j)return;let[e,t]=this.#j;this.#j=null,t.addEventListener(`focusin`,()=>{e._focusEventsAllowed=!0},{once:!0,signal:this._signal}),t.focus()}#re(){if(this.#A)return;this.#A=new AbortController;let e=this.combinedSignal(this.#A);window.addEventListener(`keydown`,this.keydown.bind(this),{signal:e}),window.addEventListener(`keyup`,this.keyup.bind(this),{signal:e})}#ie(){this.#A?.abort(),this.#A=null}#ae(){if(this.#u)return;this.#u=new AbortController;let e=this.combinedSignal(this.#u);document.addEventListener(`copy`,this.copy.bind(this),{signal:e}),document.addEventListener(`cut`,this.cut.bind(this),{signal:e}),document.addEventListener(`paste`,this.paste.bind(this),{signal:e})}#oe(){this.#u?.abort(),this.#u=null}#se(){let e=this._signal;document.addEventListener(`dragover`,this.dragOver.bind(this),{signal:e}),document.addEventListener(`drop`,this.drop.bind(this),{signal:e})}addEditListeners(){this.#re(),this.setEditingState(!0)}removeEditListeners(){this.#ie(),this.setEditingState(!1)}dragOver(e){for(let{type:t}of e.dataTransfer.items)for(let n of this.#h)if(n.isHandlingMimeForPasting(t)){e.dataTransfer.dropEffect=`copy`,e.preventDefault();return}}drop(e){for(let t of e.dataTransfer.items)for(let n of this.#h)if(n.isHandlingMimeForPasting(t.type)){n.paste(t,this.currentLayer),e.preventDefault();return}}copy(e){if(e.preventDefault(),this.#t?.commitOrRemove(),!this.hasSelection)return;let t=[];for(let e of this.#I){let n=e.serialize(!0);n&&t.push(n)}t.length!==0&&e.clipboardData.setData(`application/pdfjs`,JSON.stringify(t))}cut(e){this.copy(e),this.delete()}async paste(e){e.preventDefault();let{clipboardData:t}=e;for(let e of t.items)for(let t of this.#h)if(t.isHandlingMimeForPasting(e.type)){t.paste(e,this.currentLayer);return}let n=t.getData(`application/pdfjs`);if(!n)return;try{n=JSON.parse(n)}catch(e){X(`paste: "${e.message}".`);return}if(!Array.isArray(n))return;this.unselectAll();let r=this.currentLayer;try{let e=[];for(let t of n){let n=await r.deserialize(t);if(!n)return;e.push(n)}this.addCommands({cmd:()=>{for(let t of e)this.#fe(t);this.#he(e)},undo:()=>{for(let t of e)t.remove()},mustExec:!0})}catch(e){X(`paste: "${e.message}".`)}}keydown(t){!this.isShiftKeyDown&&t.key===`Shift`&&(this.isShiftKeyDown=!0),this.#F!==Y.NONE&&!this.isEditorHandlingKeyboard&&e._keyboardManager.exec(this,t)}keyup(e){this.isShiftKeyDown&&e.key===`Shift`&&(this.isShiftKeyDown=!1,this.#w&&(this.#w=!1,this.#$(`main_toolbar`)))}onEditingAction({name:e}){switch(e){case`undo`:case`redo`:case`delete`:case`selectAll`:this[e]();break;case`highlightSelection`:this.highlightSelection(`context_menu`);break;case`commentSelection`:this.commentSelection(`context_menu`);break}}#ce(e){Object.entries(e).some(([e,t])=>this.#H[e]!==t)&&(this._eventBus.dispatch(`annotationeditorstateschanged`,{source:this,details:Object.assign(this.#H,e)}),this.#F===Y.HIGHLIGHT&&e.hasSelectedEditor===!1&&this.#le([[Yc.HIGHLIGHT_FREE,!0]]))}#le(e){this._eventBus.dispatch(`annotationeditorparamschanged`,{source:this,details:e})}setEditingState(e){e?(this.#te(),this.#ae(),this.#ce({isEditing:this.#F!==Y.NONE,isEmpty:this.#me(),hasSomethingToUndo:this.#c.hasSomethingToUndo(),hasSomethingToRedo:this.#c.hasSomethingToRedo(),hasSelectedEditor:!1})):(this.#ne(),this.#oe(),this.#ce({isEditing:!1}),this.disableUserSelect(!1))}registerEditorTypes(e){if(!this.#h){this.#h=e;for(let e of this.#h)this.#le(e.defaultPropertiesToUpdate)}}getId(){return this.#E.id}get currentLayer(){return this.#i.get(this.#f)}getLayer(e){return this.#i.get(e)}get currentPageIndex(){return this.#f}addLayer(e){this.#i.set(e.pageIndex,e),this.#D?e.enable():e.disable()}removeLayer(e){this.#i.delete(e.pageIndex)}async updateMode(e,t=null,n=!1,r=!1,i=!1,a=!1){if(this.#F!==e&&!(this.#J&&(await this.#J.promise,!this.#J))){if(this.#J=Promise.withResolvers(),this.#d?.commitOrRemove(),this.#F===Y.POPUP&&this.#l?.hideSidebar(),this.#l?.destroyPopup(),this.#F=e,e===Y.NONE){this.setEditingState(!1),this.#de();for(let e of this.#r.values())e.hideStandaloneCommentButton();this._editorUndoBar?.hide(),this.toggleComment(null),this.#J.resolve();return}for(let e of this.#r.values())e.addStandaloneCommentButton();e===Y.SIGNATURE&&await this.#R?.loadSignatures(),n&&Cu.clearPointerType(),this.setEditingState(!0),await this.#ue(),this.unselectAll();for(let t of this.#i.values())t.updateMode(e);if(e===Y.POPUP){this.#n||=await this.#V.getAnnotationsByType(new Set(this.#h.map(e=>e._editorType)));let e=new Set,t=[];for(let n of this.#r.values()){let{annotationElementId:r,hasComment:i,deleted:a}=n;r&&e.add(r),i&&!a&&t.push(n.getData())}for(let n of this.#n){let{id:r,popupRef:i,contentsObj:a}=n;i&&a?.str&&!e.has(r)&&!this.#p.has(r)&&t.push(n)}this.#l?.showSidebar(t)}if(!t){r&&this.addNewEditorFromKeyboard(),this.#J.resolve();return}for(let e of this.#r.values())e.uid===t?(this.setSelected(e),a?e.editComment():i?e.enterInEditMode():e.focus()):e.unselect();this.#J.resolve()}}addNewEditorFromKeyboard(){this.currentLayer.canCreateNewEmptyEditor()&&this.currentLayer.addNewEditor()}updateToolbar(e){e.mode!==this.#F&&this._eventBus.dispatch(`switchannotationeditormode`,{source:this,...e})}updateParams(e,t){if(this.#h){switch(e){case Yc.CREATE:this.currentLayer.addNewEditor(t);return;case Yc.HIGHLIGHT_SHOW_ALL:this._eventBus.dispatch(`reporttelemetry`,{source:this,details:{type:`editing`,data:{type:`highlight`,action:`toggle_visibility`}}}),(this.#B||=new Map).set(e,t),this.showAllEditors(`highlight`,t);break}if(this.hasSelection)for(let n of this.#I)n.updateParams(e,t);else for(let n of this.#h)n.updateDefaultParams(e,t)}}showAllEditors(e,t,n=!1){for(let n of this.#r.values())n.editorType===e&&n.show(t);(this.#B?.get(Yc.HIGHLIGHT_SHOW_ALL)??!0)!==t&&this.#le([[Yc.HIGHLIGHT_SHOW_ALL,t]])}enableWaiting(e=!1){if(this.#k!==e){this.#k=e;for(let t of this.#i.values())e?t.disableClick():t.enableClick(),t.div.classList.toggle(`waiting`,e)}}async#ue(){if(!this.#D){this.#D=!0;let e=[];for(let t of this.#i.values())e.push(t.enable());await Promise.all(e);for(let e of this.#r.values())e.enable()}}#de(){if(this.unselectAll(),this.#D){this.#D=!1;for(let e of this.#i.values())e.disable();for(let e of this.#r.values())e.disable()}}*getEditors(e){for(let t of this.#r.values())t.pageIndex===e&&(yield t)}getEditor(e){return this.#r.get(e)}addEditor(e){this.#r.set(e.id,e)}removeEditor(e){e.div.contains(document.activeElement)&&(this.#x&&clearTimeout(this.#x),this.#x=setTimeout(()=>{this.focusMainContainer(),this.#x=null},0)),this.#r.delete(e.id),e.annotationElementId&&this.#N?.delete(e.annotationElementId),this.unselect(e),(!e.annotationElementId||!this.#p.has(e.annotationElementId))&&this.#o?.remove(e.id)}addDeletedAnnotationElement(e){this.#p.add(e.annotationElementId),this.addChangedExistingAnnotation(e),e.deleted=!0}isDeletedAnnotationElement(e){return this.#p.has(e)}removeDeletedAnnotationElement(e){this.#p.delete(e.annotationElementId),this.removeChangedExistingAnnotation(e),e.deleted=!1}#fe(e){let t=this.#i.get(e.pageIndex);t?t.addOrRebuild(e):(this.addEditor(e),this.addToAnnotationStorage(e))}setActiveEditor(e){this.#t!==e&&(this.#t=e,e&&this.#le(e.propertiesToUpdate))}get#pe(){let e=null;for(e of this.#I);return e}updateUI(e){this.#pe===e&&this.#le(e.propertiesToUpdate)}updateUIForDefaultProperties(e){this.#le(e.defaultPropertiesToUpdate)}toggleSelected(e){if(this.#I.has(e)){this.#I.delete(e),e.unselect(),this.#ce({hasSelectedEditor:this.hasSelection});return}this.#I.add(e),e.select(),this.#le(e.propertiesToUpdate),this.#ce({hasSelectedEditor:!0})}setSelected(e){this.updateToolbar({mode:e.mode,editId:e.uid}),this.#d?.commitOrRemove();for(let t of this.#I)t!==e&&t.unselect();this.#I.clear(),this.#I.add(e),e.select(),this.#le(e.propertiesToUpdate),this.#ce({hasSelectedEditor:!0})}isSelected(e){return this.#I.has(e)}get firstSelectedEditor(){return this.#I.values().next().value}unselect(e){e.unselect(),this.#I.delete(e),this.#ce({hasSelectedEditor:this.hasSelection})}get hasSelection(){return this.#I.size!==0}get isEnterHandled(){return this.#I.size===1&&this.firstSelectedEditor.isEnterHandled}undo(){this.#c.undo(),this.#ce({hasSomethingToUndo:this.#c.hasSomethingToUndo(),hasSomethingToRedo:!0,isEmpty:this.#me()}),this._editorUndoBar?.hide()}redo(){this.#c.redo(),this.#ce({hasSomethingToUndo:!0,hasSomethingToRedo:this.#c.hasSomethingToRedo(),isEmpty:this.#me()})}addCommands(e){this.#c.add(e),this.#ce({hasSomethingToUndo:!0,hasSomethingToRedo:!1,isEmpty:this.#me()})}cleanUndoStack(e){this.#c.cleanType(e)}#me(){if(this.#r.size===0)return!0;if(this.#r.size===1)for(let e of this.#r.values())return e.isEmpty();return!1}delete(){this.commitOrRemove();let e=this.currentLayer?.endDrawingSession(!0);if(!this.hasSelection&&!e)return;let t=e?[e]:[...this.#I],n=()=>{this._editorUndoBar?.show(r,t.length===1?t[0].editorType:t.length);for(let e of t)e.remove()},r=()=>{for(let e of t)this.#fe(e)};this.addCommands({cmd:n,undo:r,mustExec:!0})}commitOrRemove(){this.#t?.commitOrRemove()}hasSomethingToControl(){return this.#t||this.hasSelection}#he(e){for(let e of this.#I)e.unselect();this.#I.clear();for(let t of e)t.isEmpty()||(this.#I.add(t),t.select());this.#ce({hasSelectedEditor:this.hasSelection})}selectAll(){for(let e of this.#I)e.commit();this.#he(this.#r.values())}unselectAll(){if(!(this.#t&&(this.#t.commitOrRemove(),this.#F!==Y.NONE))&&!this.#d?.commitOrRemove()&&this.hasSelection){for(let e of this.#I)e.unselect();this.#I.clear(),this.#ce({hasSelectedEditor:!1})}}translateSelectedEditors(e,t,n=!1){if(n||this.commitOrRemove(),!this.hasSelection)return;this.#U[0]+=e,this.#U[1]+=t;let[r,i]=this.#U,a=[...this.#I];this.#W&&clearTimeout(this.#W),this.#W=setTimeout(()=>{this.#W=null,this.#U[0]=this.#U[1]=0,this.addCommands({cmd:()=>{for(let e of a)this.#r.has(e.id)&&(e.translateInPage(r,i),e.translationDone())},undo:()=>{for(let e of a)this.#r.has(e.id)&&(e.translateInPage(-r,-i),e.translationDone())},mustExec:!1})},1e3);for(let n of a)n.translateInPage(e,t),n.translationDone()}setUpDragSession(){if(this.hasSelection){this.disableUserSelect(!0),this.#m=new Map;for(let e of this.#I)this.#m.set(e,{savedX:e.x,savedY:e.y,savedPageIndex:e.pageIndex,newX:0,newY:0,newPageIndex:-1})}}endDragSession(){if(!this.#m)return!1;this.disableUserSelect(!1);let e=this.#m;this.#m=null;let t=!1;for(let[{x:n,y:r,pageIndex:i},a]of e)a.newX=n,a.newY=r,a.newPageIndex=i,t||=n!==a.savedX||r!==a.savedY||i!==a.savedPageIndex;if(!t)return!1;let n=(e,t,n,r)=>{if(this.#r.has(e.id)){let i=this.#i.get(r);i?e._setParentAndPosition(i,t,n):(e.pageIndex=r,e.x=t,e.y=n)}};return this.addCommands({cmd:()=>{for(let[t,{newX:r,newY:i,newPageIndex:a}]of e)n(t,r,i,a)},undo:()=>{for(let[t,{savedX:r,savedY:i,savedPageIndex:a}]of e)n(t,r,i,a)},mustExec:!0}),!0}dragSelectedEditors(e,t){if(this.#m)for(let n of this.#m.keys())n.drag(e,t)}rebuild(e){if(e.parent===null){let t=this.getLayer(e.pageIndex);t?(t.changeParent(e),t.addOrRebuild(e)):(this.addEditor(e),this.addToAnnotationStorage(e),e.rebuild())}else e.parent.addOrRebuild(e)}get isEditorHandlingKeyboard(){return this.getActive()?.shouldGetKeyboardEvents()||this.#I.size===1&&this.firstSelectedEditor.shouldGetKeyboardEvents()}isActive(e){return this.#t===e}getActive(){return this.#t}getMode(){return this.#F}isEditingMode(){return this.#F!==Y.NONE}get imageManager(){return Z(this,`imageManager`,new Tu)}getSelectionBoxes(e){if(!e)return null;let t=document.getSelection();for(let n=0,r=t.rangeCount;n<r;n++)if(!e.contains(t.getRangeAt(n).commonAncestorContainer))return null;let{x:n,y:r,width:i,height:a}=e.getBoundingClientRect(),o;switch(e.getAttribute(`data-main-rotation`)){case`90`:o=(e,t,o,s)=>({x:(t-r)/a,y:1-(e+o-n)/i,width:s/a,height:o/i});break;case`180`:o=(e,t,o,s)=>({x:1-(e+o-n)/i,y:1-(t+s-r)/a,width:o/i,height:s/a});break;case`270`:o=(e,t,o,s)=>({x:1-(t+s-r)/a,y:(e-n)/i,width:s/a,height:o/i});break;default:o=(e,t,o,s)=>({x:(e-n)/i,y:(t-r)/a,width:o/i,height:s/a});break}let s=[];for(let e=0,n=t.rangeCount;e<n;e++){let n=t.getRangeAt(e);if(!n.collapsed)for(let{x:e,y:t,width:r,height:i}of n.getClientRects())r===0||i===0||s.push(o(e,t,r,i))}return s.length===0?null:s}addChangedExistingAnnotation({annotationElementId:e,id:t}){(this.#s||=new Map).set(e,t)}removeChangedExistingAnnotation({annotationElementId:e}){this.#s?.delete(e)}renderAnnotationElement(e){let t=this.#s?.get(e.data.id);if(!t)return;let n=this.#o.getRawValue(t);n&&(this.#F===Y.NONE&&!n.hasBeenModified||n.renderAnnotationElement(e))}setMissingCanvas(e,t,n){let r=this.#N?.get(e);r&&(r.setCanvas(t,n),this.#N.delete(e))}addMissingCanvas(e,t){(this.#N||=new Map).set(e,t)}},Au=class e{#e=null;#t=!1;#n=null;#r=null;#i=null;#a=null;#o=!1;#s=null;#c=null;#l=null;#u=null;#d=!1;static#f=null;static _l10n=null;constructor(t){this.#c=t,this.#d=t._uiManager.useNewAltTextFlow,e.#f||=Object.freeze({added:`pdfjs-editor-new-alt-text-added-button`,"added-label":`pdfjs-editor-new-alt-text-added-button-label`,missing:`pdfjs-editor-new-alt-text-missing-button`,"missing-label":`pdfjs-editor-new-alt-text-missing-button-label`,review:`pdfjs-editor-new-alt-text-to-review-button`,"review-label":`pdfjs-editor-new-alt-text-to-review-button-label`})}static initialize(t){e._l10n??=t}async render(){let t=this.#n=document.createElement(`button`);t.className=`altText`,t.tabIndex=`0`;let n=this.#r=document.createElement(`span`);t.append(n),this.#d?(t.classList.add(`new`),t.setAttribute(`data-l10n-id`,e.#f.missing),n.setAttribute(`data-l10n-id`,e.#f[`missing-label`])):(t.setAttribute(`data-l10n-id`,`pdfjs-editor-alt-text-button`),n.setAttribute(`data-l10n-id`,`pdfjs-editor-alt-text-button-label`));let r=this.#c._uiManager._signal;t.addEventListener(`contextmenu`,Xl,{signal:r}),t.addEventListener(`pointerdown`,e=>e.stopPropagation(),{signal:r});let i=e=>{e.preventDefault(),this.#c._uiManager.editAltText(this.#c),this.#d&&this.#c._reportTelemetry({action:`pdfjs.image.alt_text.image_status_label_clicked`,data:{label:this.#p}})};return t.addEventListener(`click`,i,{capture:!0,signal:r}),t.addEventListener(`keydown`,e=>{e.target===t&&e.key===`Enter`&&(this.#o=!0,i(e))},{signal:r}),await this.#m(),t}get#p(){return this.#e&&`added`||this.#e===null&&this.guessedText&&`review`||`missing`}finish(){this.#n&&(this.#n.focus({focusVisible:this.#o}),this.#o=!1)}isEmpty(){return this.#d?this.#e===null:!this.#e&&!this.#t}hasData(){return this.#d?this.#e!==null||!!this.#l:this.isEmpty()}get guessedText(){return this.#l}async setGuessedText(t){this.#e===null&&(this.#l=t,this.#u=await e._l10n.get(`pdfjs-editor-new-alt-text-generated-alt-text-with-disclaimer`,{generatedAltText:t}),this.#m())}toggleAltTextBadge(e=!1){if(!this.#d||this.#e){this.#s?.remove(),this.#s=null;return}if(!this.#s){let e=this.#s=document.createElement(`div`);e.className=`noAltTextBadge`,this.#c.div.append(e)}this.#s.classList.toggle(`hidden`,!e)}serialize(e){let t=this.#e;return!e&&this.#l===t&&(t=this.#u),{altText:t,decorative:this.#t,guessedText:this.#l,textWithDisclaimer:this.#u}}get data(){return{altText:this.#e,decorative:this.#t}}set data({altText:e,decorative:t,guessedText:n,textWithDisclaimer:r,cancel:i=!1}){n&&(this.#l=n,this.#u=r),!(this.#e===e&&this.#t===t)&&(i||(this.#e=e,this.#t=t),this.#m())}toggle(e=!1){this.#n&&(!e&&this.#a&&(clearTimeout(this.#a),this.#a=null),this.#n.disabled=!e)}shown(){this.#c._reportTelemetry({action:`pdfjs.image.alt_text.image_status_label_displayed`,data:{label:this.#p}})}destroy(){this.#n?.remove(),this.#n=null,this.#r=null,this.#i=null,this.#s?.remove(),this.#s=null}async#m(){let t=this.#n;if(!t)return;if(this.#d){if(t.classList.toggle(`done`,!!this.#e),t.setAttribute(`data-l10n-id`,e.#f[this.#p]),this.#r?.setAttribute(`data-l10n-id`,e.#f[`${this.#p}-label`]),!this.#e){this.#i?.remove();return}}else{if(!this.#e&&!this.#t){t.classList.remove(`done`),this.#i?.remove();return}t.classList.add(`done`),t.setAttribute(`data-l10n-id`,`pdfjs-editor-alt-text-edit-button`)}let n=this.#i;if(!n){this.#i=n=document.createElement(`span`),n.className=`tooltip`,n.setAttribute(`role`,`tooltip`),n.id=`alt-text-tooltip-${this.#c.id}`;let e=this.#c._uiManager._signal;e.addEventListener(`abort`,()=>{clearTimeout(this.#a),this.#a=null},{once:!0}),t.addEventListener(`mouseenter`,()=>{this.#a=setTimeout(()=>{this.#a=null,this.#i.classList.add(`show`),this.#c._reportTelemetry({action:`alt_text_tooltip`})},100)},{signal:e}),t.addEventListener(`mouseleave`,()=>{this.#a&&=(clearTimeout(this.#a),null),this.#i?.classList.remove(`show`)},{signal:e})}this.#t?n.setAttribute(`data-l10n-id`,`pdfjs-editor-alt-text-decorative-tooltip`):(n.removeAttribute(`data-l10n-id`),n.textContent=this.#e),n.parentNode||t.append(n),this.#c.getElementForAltText()?.setAttribute(`aria-describedby`,n.id)}},ju=class{#e=null;#t=null;#n=!1;#r=null;#i=null;#a=null;#o=null;#s=null;#c=!1;#l=null;constructor(e){this.#r=e}renderForToolbar(){let e=this.#t=document.createElement(`button`);return e.className=`comment`,this.#u(e,!1)}renderForStandalone(){let e=this.#e=document.createElement(`button`);e.className=`annotationCommentButton`;let t=this.#r.commentButtonPosition;if(t){let{style:n}=e;n.insetInlineEnd=`calc(${100*(this.#r._uiManager.direction===`ltr`?1-t[0]:t[0])}% - var(--comment-button-dim))`,n.top=`calc(${100*t[1]}% - var(--comment-button-dim))`;let r=this.#r.commentButtonColor;r&&(n.backgroundColor=r)}return this.#u(e,!0)}focusButton(){setTimeout(()=>{(this.#e??this.#t)?.focus()},0)}onUpdatedColor(){if(!this.#e)return;let e=this.#r.commentButtonColor;e&&(this.#e.style.backgroundColor=e),this.#r._uiManager.updatePopupColor(this.#r)}get commentButtonWidth(){return(this.#e?.getBoundingClientRect().width??0)/this.#r.parent.boundingClientRect.width}get commentPopupPositionInLayer(){if(this.#l)return this.#l;if(!this.#e)return null;let{x:e,y:t,height:n}=this.#e.getBoundingClientRect(),{x:r,y:i,width:a,height:o}=this.#r.parent.boundingClientRect;return[(e-r)/a,(t+n-i)/o]}set commentPopupPositionInLayer(e){this.#l=e}hasDefaultPopupPosition(){return this.#l===null}removeStandaloneCommentButton(){this.#e?.remove(),this.#e=null}removeToolbarCommentButton(){this.#t?.remove(),this.#t=null}setCommentButtonStates({selected:e,hasPopup:t}){this.#e&&(this.#e.classList.toggle(`selected`,e),this.#e.ariaExpanded=t)}#u(e,t){if(!this.#r._uiManager.hasCommentManager())return null;e.tabIndex=`0`,e.ariaHasPopup=`dialog`,t?(e.ariaControls=`commentPopup`,e.setAttribute(`data-l10n-id`,`pdfjs-show-comment-button`)):(e.ariaControlsElements=[this.#r._uiManager.getCommentDialogElement()],e.setAttribute(`data-l10n-id`,`pdfjs-editor-add-comment-button`));let n=this.#r._uiManager._signal;if(!(n instanceof AbortSignal)||n.aborted)return e;e.addEventListener(`contextmenu`,Xl,{signal:n}),t&&(e.addEventListener(`focusin`,e=>{this.#r._focusEventsAllowed=!1,Zl(e)},{capture:!0,signal:n}),e.addEventListener(`focusout`,e=>{this.#r._focusEventsAllowed=!0,Zl(e)},{capture:!0,signal:n})),e.addEventListener(`pointerdown`,e=>e.stopPropagation(),{signal:n});let r=t=>{t.preventDefault(),e===this.#t?this.edit():this.#r.toggleComment(!0)};return e.addEventListener(`click`,r,{capture:!0,signal:n}),e.addEventListener(`keydown`,t=>{t.target===e&&t.key===`Enter`&&(this.#n=!0,r(t))},{signal:n}),e.addEventListener(`pointerenter`,()=>{this.#r.toggleComment(!1,!0)},{signal:n}),e.addEventListener(`pointerleave`,()=>{this.#r.toggleComment(!1,!1)},{signal:n}),e}edit(e){let t=this.commentPopupPositionInLayer,n,r;if(t)[n,r]=t;else{[n,r]=this.#r.commentButtonPosition;let{width:e,height:t,x:i,y:a}=this.#r;n=i+n*e,r=a+r*t}let i=this.#r.parent.boundingClientRect,{x:a,y:o,width:s,height:c}=i;this.#r._uiManager.editComment(this.#r,a+n*s,o+r*c,{...e,parentDimensions:i})}finish(){this.#t&&(this.#t.focus({focusVisible:this.#n}),this.#n=!1)}isDeleted(){return this.#c||this.#o===``}isEmpty(){return this.#o===null}hasBeenEdited(){return this.isDeleted()||this.#o!==this.#i}serialize(){return this.data}get data(){return{text:this.#o,richText:this.#a,date:this.#s,deleted:this.isDeleted()}}set data(e){if(e!==this.#o&&(this.#a=null),e===null){this.#o=``,this.#c=!0;return}this.#o=e,this.#s=new Date,this.#c=!1}restoreData({text:e,richText:t,date:n}){this.#o=e,this.#a=t,this.#s=n,this.#c=!1}setInitialText(e,t=null){this.#i=e,this.data=e,this.#s=null,this.#a=t}shown(){}destroy(){this.#t?.remove(),this.#t=null,this.#e?.remove(),this.#e=null,this.#o=``,this.#a=null,this.#s=null,this.#r=null,this.#n=!1,this.#c=!1}},Mu=class e{#e;#t=!1;#n=null;#r;#i;#a;#o;#s=null;#c;#l=null;#u;#d=null;constructor({container:e,isPinchingDisabled:t=null,isPinchingStopped:n=null,onPinchStart:r=null,onPinching:i=null,onPinchEnd:a=null,signal:o}){this.#e=e,this.#n=n,this.#r=t,this.#i=r,this.#a=i,this.#o=a,this.#u=new AbortController,this.#c=AbortSignal.any([o,this.#u.signal]),e.addEventListener(`touchstart`,this.#f.bind(this),{passive:!1,signal:this.#c})}get MIN_TOUCH_DISTANCE_TO_PINCH(){return 35/ou.pixelRatio}#f(e){if(this.#r?.())return;if(e.touches.length===1){if(this.#s)return;let e=this.#s=new AbortController,t=AbortSignal.any([this.#c,e.signal]),n=this.#e,r={capture:!0,signal:t,passive:!1},i=e=>{e.pointerType===`touch`&&(this.#s?.abort(),this.#s=null)};n.addEventListener(`pointerdown`,e=>{e.pointerType===`touch`&&(Zl(e),i(e))},r),n.addEventListener(`pointerup`,i,r),n.addEventListener(`pointercancel`,i,r);return}if(!this.#d){this.#d=new AbortController;let e=AbortSignal.any([this.#c,this.#d.signal]),t=this.#e,n={signal:e,capture:!1,passive:!1};t.addEventListener(`touchmove`,this.#p.bind(this),n);let r=this.#m.bind(this);t.addEventListener(`touchend`,r,n),t.addEventListener(`touchcancel`,r,n),n.capture=!0,t.addEventListener(`pointerdown`,Zl,n),t.addEventListener(`pointermove`,Zl,n),t.addEventListener(`pointercancel`,Zl,n),t.addEventListener(`pointerup`,Zl,n),this.#i?.()}if(Zl(e),e.touches.length!==2||this.#n?.()){this.#l=null;return}let[t,n]=e.touches;t.identifier>n.identifier&&([t,n]=[n,t]),this.#l={touch0X:t.screenX,touch0Y:t.screenY,touch1X:n.screenX,touch1Y:n.screenY}}#p(t){if(!this.#l||t.touches.length!==2)return;Zl(t);let[n,r]=t.touches;n.identifier>r.identifier&&([n,r]=[r,n]);let{screenX:i,screenY:a}=n,{screenX:o,screenY:s}=r,c=this.#l,{touch0X:l,touch0Y:u,touch1X:d,touch1Y:f}=c,p=d-l,m=f-u,h=o-i,g=s-a,_=Math.hypot(h,g)||1,v=Math.hypot(p,m)||1;if(!this.#t&&Math.abs(v-_)<=e.MIN_TOUCH_DISTANCE_TO_PINCH)return;if(c.touch0X=i,c.touch0Y=a,c.touch1X=o,c.touch1Y=s,!this.#t){this.#t=!0;return}let y=[(i+o)/2,(a+s)/2];this.#a?.(y,v,_)}#m(e){e.touches.length>=2||(this.#d&&(this.#d.abort(),this.#d=null,this.#o?.()),this.#l&&(Zl(e),this.#l=null,this.#t=!1))}destroy(){this.#u?.abort(),this.#u=null,this.#s?.abort(),this.#s=null}},Nu=class e{#e=null;#t=null;#n=null;#r=null;#i=null;#a=!1;#o=null;#s=``;#c=null;#l=null;#u=null;#d=null;#f=null;#p=``;#m=!1;#h=null;#g=!1;#_=!1;#v=!1;#y=null;#b=0;#x=0;#S=null;#C=null;isSelected=!1;_isCopy=!1;_editToolbar=null;_initialOptions=Object.create(null);_initialData=null;_isVisible=!0;_uiManager=null;_focusEventsAllowed=!0;static _l10n=null;static _l10nResizer=null;#w=!1;#T=e._zIndex++;static _borderLineWidth=-1;static _colorManager=new Ou;static _zIndex=1;static _telemetryTimeout=1e3;static get _resizerKeyboardManager(){let t=e.prototype._resizeWithKeyboard,n=ku.TRANSLATE_SMALL,r=ku.TRANSLATE_BIG;return Z(this,`_resizerKeyboardManager`,new Du([[[`ArrowLeft`,`mac+ArrowLeft`],t,{args:[-n,0]}],[[`ctrl+ArrowLeft`,`mac+shift+ArrowLeft`],t,{args:[-r,0]}],[[`ArrowRight`,`mac+ArrowRight`],t,{args:[n,0]}],[[`ctrl+ArrowRight`,`mac+shift+ArrowRight`],t,{args:[r,0]}],[[`ArrowUp`,`mac+ArrowUp`],t,{args:[0,-n]}],[[`ctrl+ArrowUp`,`mac+shift+ArrowUp`],t,{args:[0,-r]}],[[`ArrowDown`,`mac+ArrowDown`],t,{args:[0,n]}],[[`ctrl+ArrowDown`,`mac+shift+ArrowDown`],t,{args:[0,r]}],[[`Escape`,`mac+Escape`],e.prototype._stopResizingWithKeyboard]]))}constructor(e){this.parent=e.parent,this.id=e.id,this.width=this.height=null,this.pageIndex=e.parent.pageIndex,this.name=e.name,this.div=null,this._uiManager=e.uiManager,this.annotationElementId=null,this._willKeepAspectRatio=!1,this._initialOptions.isCentered=e.isCentered,this._structTreeParentId=null,this.annotationElementId=e.annotationElementId||null,this.creationDate=e.creationDate||new Date,this.modificationDate=e.modificationDate||null,this.canAddComment=!0;let{rotation:t,rawDims:{pageWidth:n,pageHeight:r,pageX:i,pageY:a}}=this.parent.viewport;this.rotation=t,this.pageRotation=(360+t-this._uiManager.viewParameters.rotation)%360,this.pageDimensions=[n,r],this.pageTranslation=[i,a];let[o,s]=this.parentDimensions;this.x=e.x/o,this.y=e.y/s,this.isAttachedToDOM=!1,this.deleted=!1}updatePageIndex(e){this.pageIndex=e}get editorType(){return Object.getPrototypeOf(this).constructor._type}get mode(){return Object.getPrototypeOf(this).constructor._editorType}static get isDrawer(){return!1}static get _defaultLineColor(){return Z(this,`_defaultLineColor`,this._colorManager.getHexCode(`CanvasText`))}static deleteAnnotationElement(e){let t=new Pu({id:e.parent.getNextId(),parent:e.parent,uiManager:e._uiManager});t.annotationElementId=e.annotationElementId,t.deleted=!0,t._uiManager.addToAnnotationStorage(t)}static initialize(t,n){if(e._l10n??=t,e._l10nResizer||=Object.freeze({topLeft:`pdfjs-editor-resizer-top-left`,topMiddle:`pdfjs-editor-resizer-top-middle`,topRight:`pdfjs-editor-resizer-top-right`,middleRight:`pdfjs-editor-resizer-middle-right`,bottomRight:`pdfjs-editor-resizer-bottom-right`,bottomMiddle:`pdfjs-editor-resizer-bottom-middle`,bottomLeft:`pdfjs-editor-resizer-bottom-left`,middleLeft:`pdfjs-editor-resizer-middle-left`}),e._borderLineWidth!==-1)return;let r=getComputedStyle(document.documentElement);e._borderLineWidth=parseFloat(r.getPropertyValue(`--outline-width`))||0}static updateDefaultParams(e,t){}static get defaultPropertiesToUpdate(){return[]}static isHandlingMimeForPasting(e){return!1}static paste(e,t){ul(`Not implemented`)}get propertiesToUpdate(){return[]}get _isDraggable(){return this.#w}set _isDraggable(e){this.#w=e,this.div?.classList.toggle(`draggable`,e)}get uid(){return this.annotationElementId||this.id}get isEnterHandled(){return!0}center(){let[e,t]=this.pageDimensions;switch(this.parentRotation){case 90:this.x-=this.height*t/(e*2),this.y+=this.width*e/(t*2);break;case 180:this.x+=this.width/2,this.y+=this.height/2;break;case 270:this.x+=this.height*t/(e*2),this.y-=this.width*e/(t*2);break;default:this.x-=this.width/2,this.y-=this.height/2;break}this.fixAndSetPosition()}addCommands(e){this._uiManager.addCommands(e)}get currentLayer(){return this._uiManager.currentLayer}setInBackground(){this.div.style.zIndex=0}setInForeground(){this.div.style.zIndex=this.#T}setParent(e){e===null?(this.#W(),this.#d?.remove(),this.#d=null):(this.pageIndex=e.pageIndex,this.pageDimensions=e.pageDimensions),this.parent=e}focusin(e){this._focusEventsAllowed&&(this.#m?this.#m=!1:this.parent.setSelected(this))}focusout(e){this._focusEventsAllowed&&this.isAttachedToDOM&&(e.relatedTarget?.closest(`#${this.id}`)||(e.preventDefault(),this.parent?.isMultipleSelection||this.commitOrRemove()))}commitOrRemove(){this.isEmpty()?this.remove():this.commit()}commit(){this.isInEditMode()&&this.addToAnnotationStorage()}addToAnnotationStorage(){this._uiManager.addToAnnotationStorage(this)}setAt(e,t,n,r){let[i,a]=this.parentDimensions;[n,r]=this.screenToPageTranslation(n,r),this.x=(e+n)/i,this.y=(t+r)/a,this.fixAndSetPosition()}_moveAfterPaste(e,t){let[n,r]=this.parentDimensions;this.setAt(e*n,t*r,this.width*n,this.height*r),this._onTranslated()}#E([e,t],n,r){[n,r]=this.screenToPageTranslation(n,r),this.x+=n/e,this.y+=r/t,this._onTranslating(this.x,this.y),this.fixAndSetPosition()}translate(e,t){this.#E(this.parentDimensions,e,t)}translateInPage(e,t){this.#h||=[this.x,this.y,this.width,this.height],this.#E(this.pageDimensions,e,t),this.div.scrollIntoView({block:`nearest`})}translationDone(){this._onTranslated(this.x,this.y)}drag(e,t){this.#h||=[this.x,this.y,this.width,this.height];let{div:n,parentDimensions:[r,i]}=this;if(this.x+=e/r,this.y+=t/i,this.parent&&(this.x<0||this.x>1||this.y<0||this.y>1)){let{x:e,y:t}=this.div.getBoundingClientRect();this.parent.findNewParent(this,e,t)&&(this.x-=Math.floor(this.x),this.y-=Math.floor(this.y))}let{x:a,y:o}=this,[s,c]=this.getBaseTranslation();a+=s,o+=c;let{style:l}=n;l.left=`${(100*a).toFixed(2)}%`,l.top=`${(100*o).toFixed(2)}%`,this._onTranslating(a,o),n.scrollIntoView({block:`nearest`})}_onTranslating(e,t){}_onTranslated(e,t){}get _hasBeenMoved(){return!!this.#h&&(this.#h[0]!==this.x||this.#h[1]!==this.y)}get _hasBeenResized(){return!!this.#h&&(this.#h[2]!==this.width||this.#h[3]!==this.height)}getBaseTranslation(){let[t,n]=this.parentDimensions,{_borderLineWidth:r}=e,i=r/t,a=r/n;switch(this.rotation){case 90:return[-i,a];case 180:return[i,a];case 270:return[i,-a];default:return[-i,-a]}}get _mustFixPosition(){return!0}fixAndSetPosition(e=this.rotation){let{div:{style:t},pageDimensions:[n,r]}=this,{x:i,y:a,width:o,height:s}=this;if(o*=n,s*=r,i*=n,a*=r,this._mustFixPosition)switch(e){case 0:i=Il(i,0,n-o),a=Il(a,0,r-s);break;case 90:i=Il(i,0,n-s),a=Il(a,o,r);break;case 180:i=Il(i,o,n),a=Il(a,s,r);break;case 270:i=Il(i,s,n),a=Il(a,0,r-o);break}this.x=i/=n,this.y=a/=r;let[c,l]=this.getBaseTranslation();i+=c,a+=l,t.left=`${(100*i).toFixed(2)}%`,t.top=`${(100*a).toFixed(2)}%`,this.moveInDOM()}static#D(e,t,n){switch(n){case 90:return[t,-e];case 180:return[-e,-t];case 270:return[-t,e];default:return[e,t]}}screenToPageTranslation(t,n){return e.#D(t,n,this.parentRotation)}pageTranslationToScreen(t,n){return e.#D(t,n,360-this.parentRotation)}#O(e){switch(e){case 90:{let[e,t]=this.pageDimensions;return[0,-e/t,t/e,0]}case 180:return[-1,0,0,-1];case 270:{let[e,t]=this.pageDimensions;return[0,e/t,-t/e,0]}default:return[1,0,0,1]}}get parentScale(){return this._uiManager.viewParameters.realScale}get parentRotation(){return(this._uiManager.viewParameters.rotation+this.pageRotation)%360}get parentDimensions(){let{parentScale:e,pageDimensions:[t,n]}=this;return[t*e,n*e]}setDims(){let{div:{style:e},width:t,height:n}=this;e.width=`${(100*t).toFixed(2)}%`,e.height=`${(100*n).toFixed(2)}%`}getInitialTranslation(){return[0,0]}#k(){if(this.#c)return;this.#c=document.createElement(`div`),this.#c.classList.add(`resizers`);let e=this._willKeepAspectRatio?[`topLeft`,`topRight`,`bottomRight`,`bottomLeft`]:[`topLeft`,`topMiddle`,`topRight`,`middleRight`,`bottomRight`,`bottomMiddle`,`bottomLeft`,`middleLeft`],t=this._uiManager._signal;for(let n of e){let e=document.createElement(`div`);this.#c.append(e),e.classList.add(`resizer`,n),e.setAttribute(`data-resizer-name`,n),e.addEventListener(`pointerdown`,this.#A.bind(this,n),{signal:t}),e.addEventListener(`contextmenu`,Xl,{signal:t}),e.tabIndex=-1}this.div.prepend(this.#c)}#A(e,t){t.preventDefault();let{isMac:n}=Dl.platform;if(t.button!==0||t.ctrlKey&&n)return;this.#n?.toggle(!1);let r=this._isDraggable;this._isDraggable=!1,this.#l=[t.screenX,t.screenY];let i=new AbortController,a=this._uiManager.combinedSignal(i);this.parent.togglePointerEvents(!1),window.addEventListener(`pointermove`,this.#N.bind(this,e),{passive:!0,capture:!0,signal:a}),window.addEventListener(`touchmove`,Zl,{passive:!1,signal:a}),window.addEventListener(`contextmenu`,Xl,{signal:a}),this.#u={savedX:this.x,savedY:this.y,savedWidth:this.width,savedHeight:this.height};let o=this.parent.div.style.cursor,s=this.div.style.cursor;this.div.style.cursor=this.parent.div.style.cursor=window.getComputedStyle(t.target).cursor;let c=()=>{i.abort(),this.parent.togglePointerEvents(!0),this.#n?.toggle(!0),this._isDraggable=r,this.parent.div.style.cursor=o,this.div.style.cursor=s,this.#M()};window.addEventListener(`pointerup`,c,{signal:a}),window.addEventListener(`blur`,c,{signal:a})}#j(e,t,n,r){this.width=n,this.height=r,this.x=e,this.y=t,this.setDims(),this.fixAndSetPosition(),this._onResized()}_onResized(){}#M(){if(!this.#u)return;let{savedX:e,savedY:t,savedWidth:n,savedHeight:r}=this.#u;this.#u=null;let i=this.x,a=this.y,o=this.width,s=this.height;i===e&&a===t&&o===n&&s===r||this.addCommands({cmd:this.#j.bind(this,i,a,o,s),undo:this.#j.bind(this,e,t,n,r),mustExec:!0})}static _round(e){return Math.round(e*1e4)/1e4}#N(t,n){let[r,i]=this.parentDimensions,a=this.x,o=this.y,s=this.width,c=this.height,l=e.MIN_SIZE/r,u=e.MIN_SIZE/i,d=this.#O(this.rotation),f=(e,t)=>[d[0]*e+d[2]*t,d[1]*e+d[3]*t],p=this.#O(360-this.rotation),m=(e,t)=>[p[0]*e+p[2]*t,p[1]*e+p[3]*t],h,g,_=!1,v=!1;switch(t){case`topLeft`:_=!0,h=(e,t)=>[0,0],g=(e,t)=>[e,t];break;case`topMiddle`:h=(e,t)=>[e/2,0],g=(e,t)=>[e/2,t];break;case`topRight`:_=!0,h=(e,t)=>[e,0],g=(e,t)=>[0,t];break;case`middleRight`:v=!0,h=(e,t)=>[e,t/2],g=(e,t)=>[0,t/2];break;case`bottomRight`:_=!0,h=(e,t)=>[e,t],g=(e,t)=>[0,0];break;case`bottomMiddle`:h=(e,t)=>[e/2,t],g=(e,t)=>[e/2,0];break;case`bottomLeft`:_=!0,h=(e,t)=>[0,t],g=(e,t)=>[e,0];break;case`middleLeft`:v=!0,h=(e,t)=>[0,t/2],g=(e,t)=>[e,t/2];break}let y=h(s,c),b=g(s,c),x=f(...b),S=e._round(a+x[0]),C=e._round(o+x[1]),w=1,T=1,E,D;if(n.fromKeyboard)({deltaX:E,deltaY:D}=n);else{let{screenX:e,screenY:t}=n,[r,i]=this.#l;[E,D]=this.screenToPageTranslation(e-r,t-i),this.#l[0]=e,this.#l[1]=t}if([E,D]=m(E/r,D/i),_){let e=Math.hypot(s,c);w=T=Math.max(Math.min(Math.hypot(b[0]-y[0]-E,b[1]-y[1]-D)/e,1/s,1/c),l/s,u/c)}else v?w=Il(Math.abs(b[0]-y[0]-E),l,1)/s:T=Il(Math.abs(b[1]-y[1]-D),u,1)/c;let O=e._round(s*w),k=e._round(c*T);x=f(...g(O,k));let A=S-x[0],j=C-x[1];this.#h||=[this.x,this.y,this.width,this.height],this.width=O,this.height=k,this.x=A,this.y=j,this.setDims(),this.fixAndSetPosition(),this._onResizing()}_onResizing(){}altTextFinish(){this.#n?.finish()}get toolbarButtons(){return null}async addEditToolbar(){if(this._editToolbar||this.#_)return this._editToolbar;this._editToolbar=new bu(this),this.div.append(this._editToolbar.render());let{toolbarButtons:e}=this;if(e)for(let[t,n]of e)await this._editToolbar.addButton(t,n);return this.hasComment||this._editToolbar.addButton(`comment`,this.addCommentButton()),this._editToolbar.addButton(`delete`),this._editToolbar}addCommentButtonInToolbar(){this._editToolbar?.addButtonBefore(`comment`,this.addCommentButton(),`.deleteButton`)}removeCommentButtonFromToolbar(){this._editToolbar?.removeButton(`comment`)}removeEditToolbar(){this._editToolbar?.remove(),this._editToolbar=null,this.#n?.destroy()}addContainer(e){let t=this._editToolbar?.div;t?t.before(e):this.div.append(e)}getClientDimensions(){return this.div.getBoundingClientRect()}createAltText(){return this.#n||(Au.initialize(e._l10n),this.#n=new Au(this),this.#e&&=(this.#n.data=this.#e,null)),this.#n}get altTextData(){return this.#n?.data}set altTextData(e){this.#n&&(this.#n.data=e)}get guessedAltText(){return this.#n?.guessedText}async setGuessedAltText(e){await this.#n?.setGuessedText(e)}serializeAltText(e){return this.#n?.serialize(e)}hasAltText(){return!!this.#n&&!this.#n.isEmpty()}hasAltTextData(){return this.#n?.hasData()??!1}focusCommentButton(){this.#r?.focusButton()}addCommentButton(){return this.canAddComment?this.#r||=new ju(this):null}addStandaloneCommentButton(){if(this._uiManager.hasCommentManager()){if(this.#i){this._uiManager.isEditingMode()&&this.#i.classList.remove(`hidden`);return}this.hasComment&&(this.#i=this.#r.renderForStandalone(),this.div.append(this.#i))}}removeStandaloneCommentButton(){this.#r.removeStandaloneCommentButton(),this.#i=null}hideStandaloneCommentButton(){this.#i?.classList.add(`hidden`)}get comment(){if(!this.#r)return null;let{data:{richText:e,text:t,date:n,deleted:r}}=this.#r;return{text:t,richText:e,date:n,deleted:r,color:this.getNonHCMColor(),opacity:this.opacity??1}}set comment(e){this.#r||=new ju(this),typeof e==`object`&&e?this.#r.restoreData(e):this.#r.data=e,this.hasComment?(this.removeCommentButtonFromToolbar(),this.addStandaloneCommentButton(),this._uiManager.updateComment(this)):(this.addCommentButtonInToolbar(),this.removeStandaloneCommentButton(),this._uiManager.removeComment(this))}setCommentData({comment:e,popupRef:t,richText:n}){if(!t||(this.#r||=new ju(this),this.#r.setInitialText(e,n),!this.annotationElementId))return;let r=this._uiManager.getAndRemoveDataFromAnnotationStorage(this.annotationElementId);r&&this.updateFromAnnotationLayer(r)}get hasEditedComment(){return this.#r?.hasBeenEdited()}get hasDeletedComment(){return this.#r?.isDeleted()}get hasComment(){return!!this.#r&&!this.#r.isEmpty()&&!this.#r.isDeleted()}async editComment(e){this.#r||=new ju(this),this.#r.edit(e)}toggleComment(e,t=void 0){this.hasComment&&this._uiManager.toggleComment(this,e,t)}setSelectedCommentButton(e){this.#r.setSelectedButton(e)}addComment(e){if(this.hasEditedComment){let[,,,t]=e.rect,[n]=this.pageDimensions,[r]=this.pageTranslation,i=r+n+1,a=t-100,o=i+180;e.popup={contents:this.comment.text,deleted:this.comment.deleted,rect:[i,a,o,t]}}}updateFromAnnotationLayer({popup:{contents:e,deleted:t}}){this.#r.data=t?null:e}get parentBoundingClientRect(){return this.parent.boundingClientRect}render(){let e=this.div=document.createElement(`div`);e.setAttribute(`data-editor-rotation`,(360-this.rotation)%360),e.className=this.name,e.setAttribute(`id`,this.id),e.tabIndex=this.#a?-1:0,e.setAttribute(`role`,`application`),this.defaultL10nId&&e.setAttribute(`data-l10n-id`,this.defaultL10nId),this._isVisible||e.classList.add(`hidden`),this.setInForeground(),this.#z();let[t,n]=this.parentDimensions;this.parentRotation%180!=0&&(e.style.maxWidth=`${(100*n/t).toFixed(2)}%`,e.style.maxHeight=`${(100*t/n).toFixed(2)}%`);let[r,i]=this.getInitialTranslation();return this.translate(r,i),Su(this,e,[`keydown`,`pointerdown`,`dblclick`]),this.isResizable&&this._uiManager._supportsPinchToZoom&&(this.#C||=new Mu({container:e,isPinchingDisabled:()=>!this.isSelected,onPinchStart:this.#P.bind(this),onPinching:this.#F.bind(this),onPinchEnd:this.#I.bind(this),signal:this._uiManager._signal})),this.addStandaloneCommentButton(),this._uiManager._editorUndoBar?.hide(),e}#P(){this.#u={savedX:this.x,savedY:this.y,savedWidth:this.width,savedHeight:this.height},this.#n?.toggle(!1),this.parent.togglePointerEvents(!1)}#F(t,n,r){let i=.7,a=r/n*i+1-i;if(a===1)return;let o=this.#O(this.rotation),s=(e,t)=>[o[0]*e+o[2]*t,o[1]*e+o[3]*t],[c,l]=this.parentDimensions,u=this.x,d=this.y,f=this.width,p=this.height,m=e.MIN_SIZE/c,h=e.MIN_SIZE/l;a=Math.max(Math.min(a,1/f,1/p),m/f,h/p);let g=e._round(f*a),_=e._round(p*a);if(g===f&&_===p)return;this.#h||=[u,d,f,p];let v=s(f/2,p/2),y=e._round(u+v[0]),b=e._round(d+v[1]),x=s(g/2,_/2);this.x=y-x[0],this.y=b-x[1],this.width=g,this.height=_,this.setDims(),this.fixAndSetPosition(),this._onResizing()}#I(){this.#n?.toggle(!0),this.parent.togglePointerEvents(!0),this.#M()}pointerdown(e){let{isMac:t}=Dl.platform;if(e.button!==0||e.ctrlKey&&t){e.preventDefault();return}if(this.#m=!0,this._isDraggable){this.#R(e);return}this.#L(e)}#L(e){let{isMac:t}=Dl.platform;e.ctrlKey&&!t||e.shiftKey||e.metaKey&&t?this.parent.toggleSelected(this):this.parent.setSelected(this)}#R(e){let{isSelected:t}=this;this._uiManager.setUpDragSession();let n=!1,r=new AbortController,i=this._uiManager.combinedSignal(r),a={capture:!0,passive:!1,signal:i},o=e=>{r.abort(),this.#o=null,this.#m=!1,this._uiManager.endDragSession()||this.#L(e),n&&this._onStopDragging()};t&&(this.#b=e.clientX,this.#x=e.clientY,this.#o=e.pointerId,this.#s=e.pointerType,window.addEventListener(`pointermove`,e=>{n||(n=!0,this._uiManager.toggleComment(this,!0,!1),this._onStartDragging());let{clientX:t,clientY:r,pointerId:i}=e;if(i!==this.#o){Zl(e);return}let[a,o]=this.screenToPageTranslation(t-this.#b,r-this.#x);this.#b=t,this.#x=r,this._uiManager.dragSelectedEditors(a,o)},a),window.addEventListener(`touchmove`,Zl,a),window.addEventListener(`pointerdown`,e=>{e.pointerType===this.#s&&(this.#C||e.isPrimary)&&o(e),Zl(e)},a));let s=e=>{if(!this.#o||this.#o===e.pointerId){o(e);return}Zl(e)};window.addEventListener(`pointerup`,s,{signal:i}),window.addEventListener(`blur`,s,{signal:i})}_onStartDragging(){}_onStopDragging(){}moveInDOM(){this.#y&&clearTimeout(this.#y),this.#y=setTimeout(()=>{this.#y=null,this.parent?.moveEditorInDOM(this)},0)}_setParentAndPosition(e,t,n){e.changeParent(this),this.x=t,this.y=n,this.fixAndSetPosition(),this._onTranslated()}getRect(e,t,n=this.rotation){let r=this.parentScale,[i,a]=this.pageDimensions,[o,s]=this.pageTranslation,c=e/r,l=t/r,u=this.x*i,d=this.y*a,f=this.width*i,p=this.height*a;switch(n){case 0:return[u+c+o,a-d-l-p+s,u+c+f+o,a-d-l+s];case 90:return[u+l+o,a-d+c+s,u+l+p+o,a-d+c+f+s];case 180:return[u-c-f+o,a-d+l+s,u-c+o,a-d+l+p+s];case 270:return[u-l-p+o,a-d-c-f+s,u-l+o,a-d-c+s];default:throw Error(`Invalid rotation`)}}getRectInCurrentCoords(e,t){let[n,r,i,a]=e,o=i-n,s=a-r;switch(this.rotation){case 0:return[n,t-a,o,s];case 90:return[n,t-r,s,o];case 180:return[i,t-r,o,s];case 270:return[i,t-a,s,o];default:throw Error(`Invalid rotation`)}}getPDFRect(){return this.getRect(0,0)}getNonHCMColor(){return this.color&&e._colorManager.convert(this._uiManager.getNonHCMColor(this.color))}onUpdatedColor(){this.#r?.onUpdatedColor()}getData(){let{comment:{text:e,color:t,date:n,opacity:r,deleted:i,richText:a},uid:o,pageIndex:s,creationDate:c,modificationDate:l}=this;return{id:o,pageIndex:s,rect:this.getPDFRect(),richText:a,contentsObj:{str:e},creationDate:c,modificationDate:n||l,popupRef:!i,color:t,opacity:r}}onceAdded(e){}isEmpty(){return!1}enableEditMode(){return this.isInEditMode()?!1:(this.parent.setEditingState(!1),this.#_=!0,!0)}disableEditMode(){return this.isInEditMode()?(this.parent.setEditingState(!0),this.#_=!1,!0):!1}isInEditMode(){return this.#_}shouldGetKeyboardEvents(){return this.#v}needsToBeRebuilt(){return this.div&&!this.isAttachedToDOM}get isOnScreen(){let{top:e,left:t,bottom:n,right:r}=this.getClientDimensions(),{innerHeight:i,innerWidth:a}=window;return t<a&&r>0&&e<i&&n>0}#z(){if(this.#f||!this.div)return;this.#f=new AbortController;let e=this._uiManager.combinedSignal(this.#f);this.div.addEventListener(`focusin`,this.focusin.bind(this),{signal:e}),this.div.addEventListener(`focusout`,this.focusout.bind(this),{signal:e})}rebuild(){this.#z()}rotate(e){}resize(){}serializeDeleted(){return{id:this.annotationElementId,deleted:!0,pageIndex:this.pageIndex,popupRef:this._initialData?.popupRef||``}}serialize(e=!1,t=null){return{annotationType:this.mode,pageIndex:this.pageIndex,rect:this.getPDFRect(),rotation:this.rotation,structTreeParentId:this._structTreeParentId,popupRef:this._initialData?.popupRef||``}}static async deserialize(e,t,n){let r=new this.prototype.constructor({parent:t,id:t.getNextId(),uiManager:n,annotationElementId:e.annotationElementId,creationDate:e.creationDate,modificationDate:e.modificationDate});r.rotation=e.rotation,r.#e=e.accessibilityData,r._isCopy=e.isCopy||!1;let[i,a]=r.pageDimensions,[o,s,c,l]=r.getRectInCurrentCoords(e.rect,a);return r.x=o/i,r.y=s/a,r.width=c/i,r.height=l/a,r}get hasBeenModified(){return!!this.annotationElementId&&(this.deleted||this.serialize()!==null)}remove(){if(this.#f?.abort(),this.#f=null,this.isEmpty()||this.commit(),this.parent?this.parent.remove(this):this._uiManager.removeEditor(this),this.hideCommentPopup(),this.#y&&=(clearTimeout(this.#y),null),this.#W(),this.removeEditToolbar(),this.#S){for(let e of this.#S.values())clearTimeout(e);this.#S=null}this.parent=null,this.#C?.destroy(),this.#C=null,this.#d?.remove(),this.#d=null}get isResizable(){return!1}makeResizable(){this.isResizable&&(this.#k(),this.#c.classList.remove(`hidden`))}get toolbarPosition(){return null}get commentButtonPosition(){return this._uiManager.direction===`ltr`?[1,0]:[0,0]}get commentButtonPositionInPage(){let{commentButtonPosition:[t,n]}=this,[r,i,a,o]=this.getPDFRect();return[e._round(r+(a-r)*t),e._round(i+(o-i)*(1-n))]}get commentButtonColor(){return this._uiManager.makeCommentColor(this.getNonHCMColor(),this.opacity)}get commentPopupPosition(){return this.#r.commentPopupPositionInLayer}set commentPopupPosition(e){this.#r.commentPopupPositionInLayer=e}hasDefaultPopupPosition(){return this.#r.hasDefaultPopupPosition()}get commentButtonWidth(){return this.#r.commentButtonWidth}get elementBeforePopup(){return this.div}setCommentButtonStates(e){this.#r?.setCommentButtonStates(e)}keydown(t){if(!this.isResizable||t.target!==this.div||t.key!==`Enter`)return;this._uiManager.setSelected(this),this.#u={savedX:this.x,savedY:this.y,savedWidth:this.width,savedHeight:this.height};let n=this.#c.children;if(!this.#t){this.#t=Array.from(n);let t=this.#B.bind(this),r=this.#V.bind(this),i=this._uiManager._signal;for(let n of this.#t){let a=n.getAttribute(`data-resizer-name`);n.setAttribute(`role`,`spinbutton`),n.addEventListener(`keydown`,t,{signal:i}),n.addEventListener(`blur`,r,{signal:i}),n.addEventListener(`focus`,this.#H.bind(this,a),{signal:i}),n.setAttribute(`data-l10n-id`,e._l10nResizer[a])}}let r=this.#t[0],i=0;for(let e of n){if(e===r)break;i++}let a=(360-this.rotation+this.parentRotation)%360/90*(this.#t.length/4);if(a!==i){if(a<i)for(let e=0;e<i-a;e++)this.#c.append(this.#c.firstElementChild);else if(a>i)for(let e=0;e<a-i;e++)this.#c.firstElementChild.before(this.#c.lastElementChild);let t=0;for(let r of n){let n=this.#t[t++].getAttribute(`data-resizer-name`);r.setAttribute(`data-l10n-id`,e._l10nResizer[n])}}this.#U(0),this.#v=!0,this.#c.firstElementChild.focus({focusVisible:!0}),t.preventDefault(),t.stopImmediatePropagation()}#B(t){e._resizerKeyboardManager.exec(this,t)}#V(e){this.#v&&e.relatedTarget?.parentNode!==this.#c&&this.#W()}#H(e){this.#p=this.#v?e:``}#U(e){if(this.#t)for(let t of this.#t)t.tabIndex=e}_resizeWithKeyboard(e,t){this.#v&&this.#N(this.#p,{deltaX:e,deltaY:t,fromKeyboard:!0})}#W(){this.#v=!1,this.#U(-1),this.#M()}_stopResizingWithKeyboard(){this.#W(),this.div.focus()}select(){if(this.isSelected&&this._editToolbar){this._editToolbar.show();return}if(this.isSelected=!0,this.makeResizable(),this.div?.classList.add(`selectedEditor`),!this._editToolbar){this.addEditToolbar().then(()=>{this.div?.classList.contains(`selectedEditor`)&&this._editToolbar?.show()});return}this._editToolbar?.show(),this.#n?.toggleAltTextBadge(!1)}focus(){this.div&&!this.div.contains(document.activeElement)&&setTimeout(()=>this.div?.focus({preventScroll:!0}),0)}unselect(){this.isSelected&&(this.isSelected=!1,this.#c?.classList.add(`hidden`),this.div?.classList.remove(`selectedEditor`),this.div?.contains(document.activeElement)&&this._uiManager.currentLayer.div.focus({preventScroll:!0}),this._editToolbar?.hide(),this.#n?.toggleAltTextBadge(!0),this.hideCommentPopup())}hideCommentPopup(){this.hasComment&&this._uiManager.toggleComment(null)}updateParams(e,t){}disableEditing(){}enableEditing(){}get canChangeContent(){return!1}enterInEditMode(){this.canChangeContent&&(this.enableEditMode(),this.div.focus())}dblclick(e){e.target.nodeName!==`BUTTON`&&(this.enterInEditMode(),this.parent.updateToolbar({mode:this.constructor._editorType,editId:this.uid}))}getElementForAltText(){return this.div}get contentDiv(){return this.div}get isEditing(){return this.#g}set isEditing(e){this.#g=e,this.parent&&(e?(this.parent.setSelected(this),this.parent.setActiveEditor(this)):this.parent.setActiveEditor(null))}static get MIN_SIZE(){return 16}static canCreateNewEmptyEditor(){return!0}get telemetryInitialData(){return{action:`added`}}get telemetryFinalData(){return null}_reportTelemetry(t,n=!1){if(n){this.#S||=new Map;let{action:n}=t,r=this.#S.get(n);r&&clearTimeout(r),r=setTimeout(()=>{this._reportTelemetry(t),this.#S.delete(n),this.#S.size===0&&(this.#S=null)},e._telemetryTimeout),this.#S.set(n,r);return}t.type||=this.editorType,this._uiManager._eventBus.dispatch(`reporttelemetry`,{source:this,details:{type:`editing`,data:t}})}show(e=this._isVisible){this.div.classList.toggle(`hidden`,!e),this._isVisible=e}enable(){this.div&&(this.div.tabIndex=0),this.#a=!1}disable(){this.div&&(this.div.tabIndex=-1),this.#a=!0}updateFakeAnnotationElement(e){if(!this.#d&&!this.deleted){this.#d=e.addFakeAnnotation(this);return}if(this.deleted){this.#d.remove(),this.#d=null;return}(this.hasEditedComment||this._hasBeenMoved||this._hasBeenResized)&&this.#d.updateEdited({rect:this.getPDFRect(),popup:this.comment})}renderAnnotationElement(e){if(this.deleted)return e.hide(),null;let t=e.container.querySelector(`.annotationContent`);if(!t)t=document.createElement(`div`),t.classList.add(`annotationContent`,this.editorType),e.container.prepend(t);else if(t.nodeName===`CANVAS`){let e=t;t=document.createElement(`div`),t.classList.add(`annotationContent`,this.editorType),e.before(t)}return t}resetAnnotationElement(e){let{firstElementChild:t}=e.container;t?.nodeName===`DIV`&&t.classList.contains(`annotationContent`)&&t.remove()}},Pu=class extends Nu{constructor(e){super(e),this.annotationElementId=e.annotationElementId,this.deleted=!0}serialize(){return this.serializeDeleted()}},Fu=3285377520,Iu=4294901760,Lu=65535,Ru=class{constructor(e){this.h1=e?e&4294967295:Fu,this.h2=e?e&4294967295:Fu}update(e){let t,n;if(typeof e==`string`){t=new Uint8Array(e.length*2),n=0;for(let r=0,i=e.length;r<i;r++){let i=e.charCodeAt(r);i<=255?t[n++]=i:(t[n++]=i>>>8,t[n++]=i&255)}}else if(ArrayBuffer.isView(e))t=e.slice(),n=t.byteLength;else throw Error(`Invalid data format, must be a string or TypedArray.`);let r=n>>2,i=n-r*4,a=new Uint32Array(t.buffer,0,r),o=0,s=0,c=this.h1,l=this.h2,u=3432918353,d=461845907,f=u&Lu,p=d&Lu;for(let e=0;e<r;e++)e&1?(o=a[e],o=o*u&Iu|o*f&Lu,o=o<<15|o>>>17,o=o*d&Iu|o*p&Lu,c^=o,c=c<<13|c>>>19,c=c*5+3864292196):(s=a[e],s=s*u&Iu|s*f&Lu,s=s<<15|s>>>17,s=s*d&Iu|s*p&Lu,l^=s,l=l<<13|l>>>19,l=l*5+3864292196);switch(o=0,i){case 3:o^=t[r*4+2]<<16;case 2:o^=t[r*4+1]<<8;case 1:o^=t[r*4],o=o*u&Iu|o*f&Lu,o=o<<15|o>>>17,o=o*d&Iu|o*p&Lu,r&1?c^=o:l^=o}this.h1=c,this.h2=l}hexdigest(){let e=this.h1,t=this.h2;return e^=t>>>1,e=e*3981806797&Iu|e*36045&Lu,t=t*4283543511&Iu|((t<<16|e>>>16)*2950163797&Iu)>>>16,e^=t>>>1,e=e*444984403&Iu|e*60499&Lu,t=t*3301882366&Iu|((t<<16|e>>>16)*3120437893&Iu)>>>16,e^=t>>>1,(e>>>0).toString(16).padStart(8,`0`)+(t>>>0).toString(16).padStart(8,`0`)}},zu=Object.freeze({map:null,hash:``,transfer:void 0}),Bu=class{#e=!1;#t=null;#n=null;#r=new Map;constructor(){this.onSetModified=null,this.onResetModified=null,this.onAnnotationEditor=null}getValue(e,t){let n=this.#r.get(e);return n===void 0?t:Object.assign(t,n)}getRawValue(e){return this.#r.get(e)}remove(e){let t=this.#r.get(e);if(t!==void 0&&(t instanceof Nu&&this.#n.delete(t.annotationElementId),this.#r.delete(e),this.#r.size===0&&this.resetModified(),typeof this.onAnnotationEditor==`function`)){for(let e of this.#r.values())if(e instanceof Nu)return;this.onAnnotationEditor(null)}}setValue(e,t){let n=this.#r.get(e),r=!1;if(n!==void 0)for(let[e,i]of Object.entries(t))n[e]!==i&&(r=!0,n[e]=i);else r=!0,this.#r.set(e,t);r&&this.#i(),t instanceof Nu&&((this.#n||=new Map).set(t.annotationElementId,t),typeof this.onAnnotationEditor==`function`&&this.onAnnotationEditor(t.constructor._type))}has(e){return this.#r.has(e)}get size(){return this.#r.size}#i(){this.#e||(this.#e=!0,typeof this.onSetModified==`function`&&this.onSetModified())}resetModified(){this.#e&&(this.#e=!1,typeof this.onResetModified==`function`&&this.onResetModified())}get print(){return new Vu(this)}get serializable(){if(this.#r.size===0)return zu;let e=new Map,t=new Ru,n=[],r=Object.create(null),i=!1;for(let[n,a]of this.#r){let o=a instanceof Nu?a.serialize(!1,r):a;a.page&&(a.pageIndex=a.page._pageIndex,delete a.page),o&&(e.set(n,o),t.update(`${n}:${JSON.stringify(o)}`),i||=!!o.bitmap)}if(i)for(let t of e.values())t.bitmap&&n.push(t.bitmap);return e.size>0?{map:e,hash:t.hexdigest(),transfer:n}:zu}get editorStats(){let e=null,t=new Map,n=0,r=0;for(let i of this.#r.values()){if(!(i instanceof Nu)){i.popup&&(i.popup.deleted?r+=1:n+=1);continue}i.isCommentDeleted?r+=1:i.hasEditedComment&&(n+=1);let a=i.telemetryFinalData;if(!a)continue;let{type:o}=a;t.has(o)||t.set(o,Object.getPrototypeOf(i).constructor),e||=Object.create(null);let s=e[o]||=new Map;for(let[e,t]of Object.entries(a)){if(e===`type`)continue;let n=s.get(e);n||(n=new Map,s.set(e,n));let r=n.get(t)??0;n.set(t,r+1)}}if((r>0||n>0)&&(e||=Object.create(null),e.comments={deleted:r,edited:n}),!e)return null;for(let[n,r]of t)e[n]=r.computeTelemetryFinalData(e[n]);return e}resetModifiedIds(){this.#t=null}updateEditor(e,t){let n=this.#n?.get(e);return n?(n.updateFromAnnotationLayer(t),!0):!1}getEditor(e){return this.#n?.get(e)||null}get modifiedIds(){if(this.#t)return this.#t;let e=[];if(this.#n)for(let t of this.#n.values())t.serialize()&&e.push(t.annotationElementId);return this.#t={ids:new Set(e),hash:e.join(`,`)}}[Symbol.iterator](){return this.#r.entries()}},Vu=class extends Bu{#e;constructor(e){super();let{map:t,hash:n,transfer:r}=e.serializable;this.#e={map:structuredClone(t,r?{transfer:r}:null),hash:n,transfer:r}}get print(){ul(`Should not call PrintAnnotationStorage.print`)}get serializable(){return this.#e}get modifiedIds(){return Z(this,`modifiedIds`,{ids:new Set,hash:``})}},Hu=class{#e=new Set;constructor({ownerDocument:e=globalThis.document,styleElement:t=null}){this._document=e,this.nativeFontFaces=new Set,this.styleElement=null,this.loadingRequests=[],this.loadTestFontId=0}addNativeFontFace(e){this.nativeFontFaces.add(e),this._document.fonts.add(e)}removeNativeFontFace(e){this.nativeFontFaces.delete(e),this._document.fonts.delete(e)}insertRule(e){this.styleElement||(this.styleElement=this._document.createElement(`style`),this._document.documentElement.getElementsByTagName(`head`)[0].append(this.styleElement));let t=this.styleElement.sheet;t.insertRule(e,t.cssRules.length)}clear(){for(let e of this.nativeFontFaces)this._document.fonts.delete(e);this.nativeFontFaces.clear(),this.#e.clear(),this.styleElement&&=(this.styleElement.remove(),null)}async loadSystemFont({systemFontInfo:e,disableFontFace:t,_inspectFont:n}){if(!(!e||this.#e.has(e.loadedName))){if(dl(!t,"loadSystemFont shouldn't be called when `disableFontFace` is set."),this.isFontLoadingAPISupported){let{loadedName:t,src:r,style:i}=e,a=new FontFace(t,r,i);this.addNativeFontFace(a);try{await a.load(),this.#e.add(t),n?.(e)}catch{X(`Cannot load system font: ${e.baseFontName}, installing it could help to improve PDF rendering.`),this.removeNativeFontFace(a)}return}ul(`Not implemented: loadSystemFont without the Font Loading API.`)}}async bind(e){if(e.attached||e.missingFile&&!e.systemFontInfo)return;if(e.attached=!0,e.systemFontInfo){await this.loadSystemFont(e);return}if(this.isFontLoadingAPISupported){let t=e.createNativeFontFace();if(t){this.addNativeFontFace(t);try{await t.loaded}catch(n){throw X(`Failed to load font '${t.family}': '${n}'.`),e.disableFontFace=!0,n}}return}let t=e.createFontFaceRule();if(t){if(this.insertRule(t),this.isSyncFontLoadingSupported)return;await new Promise(t=>{let n=this._queueLoadingCallback(t);this._prepareFontLoadEvent(e,n)})}}get isFontLoadingAPISupported(){let e=!!this._document?.fonts;return Z(this,`isFontLoadingAPISupported`,e)}get isSyncFontLoadingSupported(){return Z(this,`isSyncFontLoadingSupported`,Uc||Dl.platform.isFirefox)}_queueLoadingCallback(e){function t(){for(dl(!r.done,`completeRequest() cannot be called twice.`),r.done=!0;n.length>0&&n[0].done;){let e=n.shift();setTimeout(e.callback,0)}}let{loadingRequests:n}=this,r={done:!1,complete:t,callback:e};return n.push(r),r}get _loadTestFont(){let e=atob(`T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk/xVFDQAAALwAAAA2aGhlYQdkA+oAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T/hgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA+gDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7//wAAAC7////TAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD/gwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA/gXBIwMAYuL+nz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE/t3Dov6fAH6fAT+fPp8+nwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA==`);return Z(this,`_loadTestFont`,e)}_prepareFontLoadEvent(e,t){function n(e,t){return e.charCodeAt(t)<<24|e.charCodeAt(t+1)<<16|e.charCodeAt(t+2)<<8|e.charCodeAt(t+3)&255}function r(e,t,n,r){let i=e.substring(0,t),a=e.substring(t+n);return i+r+a}let i,a,o=this._document.createElement(`canvas`);o.width=1,o.height=1;let s=o.getContext(`2d`),c=0;function l(e,t){if(++c>30){X(`Load test font never loaded.`),t();return}if(s.font=`30px `+e,s.fillText(`.`,0,20),s.getImageData(0,0,1,1).data[3]>0){t();return}setTimeout(l.bind(null,e,t))}let u=`lt${Date.now()}${this.loadTestFontId++}`,d=this._loadTestFont;d=r(d,976,u.length,u);let f=1482184792,p=n(d,16);for(i=0,a=u.length-3;i<a;i+=4)p=p-f+n(u,i)|0;i<u.length&&(p=p-f+n(u+`XXX`,i)|0),d=r(d,16,4,wl(p));let m=`@font-face {font-family:"${u}";src:${`url(data:font/opentype;base64,${btoa(d)});`}}`;this.insertRule(m);let h=this._document.createElement(`div`);h.style.visibility=`hidden`,h.style.width=h.style.height=`10px`,h.style.position=`absolute`,h.style.top=h.style.left=`0px`;for(let t of[e.loadedName,u]){let e=this._document.createElement(`span`);e.textContent=`Hi`,e.style.fontFamily=t,h.append(e)}this._document.body.append(h),l(u,()=>{h.remove(),t.complete()})}},Uu=class{#e;constructor(e,t=null,n,r){this.compiledGlyphs=Object.create(null),this.#e=e,this._inspectFont=t,n&&Object.assign(this,n),r&&(this.charProcOperatorList=r)}createNativeFontFace(){if(!this.data||this.disableFontFace)return null;let e;if(!this.cssFontInfo)e=new FontFace(this.loadedName,this.data,{});else{let t={weight:this.cssFontInfo.fontWeight};this.cssFontInfo.italicAngle&&(t.style=`oblique ${this.cssFontInfo.italicAngle}deg`),e=new FontFace(this.cssFontInfo.fontFamily,this.data,t)}return this._inspectFont?.(this),e}createFontFaceRule(){if(!this.data||this.disableFontFace)return null;let e=`url(data:${this.mimetype};base64,${this.data.toBase64()});`,t;if(!this.cssFontInfo)t=`@font-face {font-family:"${this.loadedName}";src:${e}}`;else{let n=`font-weight: ${this.cssFontInfo.fontWeight};`;this.cssFontInfo.italicAngle&&(n+=`font-style: oblique ${this.cssFontInfo.italicAngle}deg;`),t=`@font-face {font-family:"${this.cssFontInfo.fontFamily}";${n}src:${e}}`}return this._inspectFont?.(this,e),t}getPathGenerator(e,t){if(this.compiledGlyphs[t]!==void 0)return this.compiledGlyphs[t];let n=this.loadedName+`_path_`+t,r;try{r=e.get(n)}catch(e){X(`getPathGenerator - ignoring character: "${e}".`)}let i=vu(r?.path);return this.fontExtraProperties||e.delete(n),this.compiledGlyphs[t]=i}get black(){return this.#e.black}get bold(){return this.#e.bold}get disableFontFace(){return this.#e.disableFontFace??!1}set disableFontFace(e){Z(this,`disableFontFace`,!!e)}get fontExtraProperties(){return this.#e.fontExtraProperties??!1}get isInvalidPDFjsFont(){return this.#e.isInvalidPDFjsFont}get isType3Font(){return this.#e.isType3Font}get italic(){return this.#e.italic}get missingFile(){return this.#e.missingFile}get remeasure(){return this.#e.remeasure}get vertical(){return this.#e.vertical}get ascent(){return this.#e.ascent}get defaultWidth(){return this.#e.defaultWidth}get descent(){return this.#e.descent}get bbox(){return this.#e.bbox}set bbox(e){Z(this,`bbox`,e)}get fontMatrix(){return this.#e.fontMatrix}get fallbackName(){return this.#e.fallbackName}get loadedName(){return this.#e.loadedName}get mimetype(){return this.#e.mimetype}get name(){return this.#e.name}get data(){return this.#e.data}clearData(){this.#e.clearData()}get cssFontInfo(){return this.#e.cssFontInfo}get systemFontInfo(){return this.#e.systemFontInfo}get defaultVMetrics(){return this.#e.defaultVMetrics}},Wu=class e{#e;#t;#n;static strings=[`fontFamily`,`fontWeight`,`italicAngle`];static write(t){let n=new TextEncoder,r={},i=0;for(let a of e.strings){let e=n.encode(t[a]);r[a]=e,i+=4+e.length}let a=new ArrayBuffer(i),o=new Uint8Array(a),s=new DataView(a),c=0;for(let t of e.strings){let e=r[t],n=e.length;s.setUint32(c,n),o.set(e,c+4),c+=4+n}return dl(c===a.byteLength,`CssFontInfo.write: Buffer overflow`),a}constructor(e){this.#e=e,this.#t=new DataView(this.#e),this.#n=new TextDecoder}#r(t){dl(t<e.strings.length,`Invalid string index`);let n=0;for(let e=0;e<t;e++)n+=this.#t.getUint32(n)+4;let r=this.#t.getUint32(n);return this.#n.decode(new Uint8Array(this.#e,n+4,r))}get fontFamily(){return this.#r(0)}get fontWeight(){return this.#r(1)}get italicAngle(){return this.#r(2)}},Gu=class e{#e;#t;#n;static strings=[`css`,`loadedName`,`baseFontName`,`src`];static write(t){let n=new TextEncoder,r={},i=0;for(let a of e.strings){let e=n.encode(t[a]);r[a]=e,i+=4+e.length}i+=4;let a,o,s=1+i;t.style&&(a=n.encode(t.style.style),o=n.encode(t.style.weight),s+=4+a.length+4+o.length);let c=new ArrayBuffer(s),l=new Uint8Array(c),u=new DataView(c),d=0;u.setUint8(d++,t.guessFallback?1:0),u.setUint32(d,0),d+=4,i=0;for(let t of e.strings){let e=r[t],n=e.length;i+=4+n,u.setUint32(d,n),l.set(e,d+4),d+=4+n}return u.setUint32(d-i-4,i),t.style&&(u.setUint32(d,a.length),l.set(a,d+4),d+=4+a.length,u.setUint32(d,o.length),l.set(o,d+4),d+=4+o.length),dl(d<=c.byteLength,`SubstitionInfo.write: Buffer overflow`),c.transferToFixedLength(d)}constructor(e){this.#e=e,this.#t=new DataView(this.#e),this.#n=new TextDecoder}get guessFallback(){return this.#t.getUint8(0)!==0}#r(t){dl(t<e.strings.length,`Invalid string index`);let n=5;for(let e=0;e<t;e++)n+=this.#t.getUint32(n)+4;let r=this.#t.getUint32(n);return this.#n.decode(new Uint8Array(this.#e,n+4,r))}get css(){return this.#r(0)}get loadedName(){return this.#r(1)}get baseFontName(){return this.#r(2)}get src(){return this.#r(3)}get style(){let e=1;e+=4+this.#t.getUint32(e);let t=this.#t.getUint32(e),n=this.#n.decode(new Uint8Array(this.#e,e+4,t));e+=4+t;let r=this.#t.getUint32(e);return{style:n,weight:this.#n.decode(new Uint8Array(this.#e,e+4,r))}}},Ku=class e{static bools=[`black`,`bold`,`disableFontFace`,`fontExtraProperties`,`isInvalidPDFjsFont`,`isType3Font`,`italic`,`missingFile`,`remeasure`,`vertical`];static numbers=[`ascent`,`defaultWidth`,`descent`];static strings=[`fallbackName`,`loadedName`,`mimetype`,`name`];static#e=Math.ceil(this.bools.length*2/8);static#t=this.#e+this.numbers.length*8;static#n=this.#t+1+8;static#r=this.#n+1+48;static#i=this.#r+1+6;#a;#o;#s;constructor({data:e,extra:t}){this.#a=e,this.#o=new TextDecoder,this.#s=new DataView(this.#a),t&&Object.assign(this,t)}#c(t){dl(t<e.bools.length,`Invalid boolean index`);let n=Math.floor(t/4),r=t*2%8,i=this.#s.getUint8(n)>>r&3;return i===0?void 0:i===2}get black(){return this.#c(0)}get bold(){return this.#c(1)}get disableFontFace(){return this.#c(2)}get fontExtraProperties(){return this.#c(3)}get isInvalidPDFjsFont(){return this.#c(4)}get isType3Font(){return this.#c(5)}get italic(){return this.#c(6)}get missingFile(){return this.#c(7)}get remeasure(){return this.#c(8)}get vertical(){return this.#c(9)}#l(t){return dl(t<e.numbers.length,`Invalid number index`),this.#s.getFloat64(e.#e+t*8)}get ascent(){return this.#l(0)}get defaultWidth(){return this.#l(1)}get descent(){return this.#l(2)}get bbox(){let t=e.#t;if(this.#s.getUint8(t)===0)return;t+=1;let n=[];for(let e=0;e<4;e++)n.push(this.#s.getInt16(t,!0)),t+=2;return n}get fontMatrix(){let t=e.#n;if(this.#s.getUint8(t)===0)return;t+=1;let n=[];for(let e=0;e<6;e++)n.push(this.#s.getFloat64(t,!0)),t+=8;return n}get defaultVMetrics(){let t=e.#r;if(this.#s.getUint8(t)===0)return;t+=1;let n=[];for(let e=0;e<3;e++)n.push(this.#s.getInt16(t,!0)),t+=2;return n}#u(t){dl(t<e.strings.length,`Invalid string index`);let n=e.#i+4;for(let e=0;e<t;e++)n+=this.#s.getUint32(n)+4;let r=this.#s.getUint32(n),i=new Uint8Array(r);return i.set(new Uint8Array(this.#a,n+4,r)),this.#o.decode(i)}get fallbackName(){return this.#u(0)}get loadedName(){return this.#u(1)}get mimetype(){return this.#u(2)}get name(){return this.#u(3)}get data(){let t=e.#i,n=this.#s.getUint32(t);t+=4+n;let r=this.#s.getUint32(t);t+=4+r;let i=this.#s.getUint32(t);t+=4+i;let a=this.#s.getUint32(t);if(a!==0)return new Uint8Array(this.#a,t+4,a)}clearData(){let t=e.#i,n=this.#s.getUint32(t);t+=4+n;let r=this.#s.getUint32(t);t+=4+r;let i=this.#s.getUint32(t);t+=4+i;let a=this.#s.getUint32(t);new Uint8Array(this.#a,t+4,a).fill(0),this.#s.setUint32(t,0)}get cssFontInfo(){let t=e.#i,n=this.#s.getUint32(t);t+=4+n;let r=this.#s.getUint32(t);t+=4+r;let i=this.#s.getUint32(t);if(i===0)return null;let a=new Uint8Array(i);return a.set(new Uint8Array(this.#a,t+4,i)),new Wu(a.buffer)}get systemFontInfo(){let t=e.#i,n=this.#s.getUint32(t);t+=4+n;let r=this.#s.getUint32(t);if(r===0)return null;let i=new Uint8Array(r);return i.set(new Uint8Array(this.#a,t+4,r)),new Gu(i.buffer)}static write(t){let n=t.systemFontInfo?Gu.write(t.systemFontInfo):null,r=t.cssFontInfo?Wu.write(t.cssFontInfo):null,i=new TextEncoder,a={},o=0;for(let n of e.strings)a[n]=i.encode(t[n]),o+=4+a[n].length;let s=e.#i+4+o+4+(n?n.byteLength:0)+4+(r?r.byteLength:0)+4+(t.data?t.data.length:0),c=new ArrayBuffer(s),l=new Uint8Array(c),u=new DataView(c),d=0,f=e.bools.length,p=0,m=0;for(let n=0;n<f;n++){let r=t[e.bools[n]];p|=(r===void 0?0:r?2:1)<<m,m+=2,(m===8||n===f-1)&&(u.setUint8(d++,p),p=0,m=0)}dl(d===e.#e,`FontInfo.write: Boolean properties offset mismatch`);for(let n of e.numbers)u.setFloat64(d,t[n]),d+=8;if(dl(d===e.#t,`FontInfo.write: Number properties offset mismatch`),t.bbox){u.setUint8(d++,4);for(let e of t.bbox)u.setInt16(d,e,!0),d+=2}else u.setUint8(d++,0),d+=8;if(dl(d===e.#n,`FontInfo.write: BBox properties offset mismatch`),t.fontMatrix){u.setUint8(d++,6);for(let e of t.fontMatrix)u.setFloat64(d,e,!0),d+=8}else u.setUint8(d++,0),d+=48;if(dl(d===e.#r,`FontInfo.write: FontMatrix properties offset mismatch`),t.defaultVMetrics){u.setUint8(d++,1);for(let e of t.defaultVMetrics)u.setInt16(d,e,!0),d+=2}else u.setUint8(d++,0),d+=6;dl(d===e.#i,`FontInfo.write: DefaultVMetrics properties offset mismatch`),u.setUint32(e.#i,0),d+=4;for(let t of e.strings){let e=a[t],n=e.length;u.setUint32(d,n),l.set(e,d+4),d+=4+n}if(u.setUint32(e.#i,d-e.#i-4),!n)u.setUint32(d,0),d+=4;else{let e=n.byteLength;u.setUint32(d,e),dl(d+4+e<=c.byteLength,`FontInfo.write: Buffer overflow at systemFontInfo`),l.set(new Uint8Array(n),d+4),d+=4+e}if(!r)u.setUint32(d,0),d+=4;else{let e=r.byteLength;u.setUint32(d,e),dl(d+4+e<=c.byteLength,`FontInfo.write: Buffer overflow at cssFontInfo`),l.set(new Uint8Array(r),d+4),d+=4+e}return t.data===void 0?(u.setUint32(d,0),d+=4):(u.setUint32(d,t.data.length),l.set(t.data,d+4),d+=4+t.data.length),dl(d<=c.byteLength,`FontInfo.write: Buffer overflow`),c.transferToFixedLength(d)}},qu=class e{static#e=0;static#t=1;static#n=2;static#r=3;static#i=4;static#a=8;static#o=12;static#s=16;constructor(e){this.buffer=e,this.view=new DataView(e),this.data=new Uint8Array(e)}static write(t){let n,r=null,i=[],a=[],o=[],s=[],c=null,l=null;switch(t[0]){case`RadialAxial`:n=t[1]===`axial`?1:2,r=t[2],o=t[3],n===1?i.push(...t[4],...t[5]):i.push(t[4][0],t[4][1],t[6],t[5][0],t[5][1],t[7]);break;case`Mesh`:n=3,c=t[1],i=t[2],a=t[3],s=t[4]||[],r=t[6],l=t[7];break;default:throw Error(`Unsupported pattern type: ${t[0]}`)}let u=Math.floor(i.length/2),d=Math.floor(a.length/3),f=o.length,p=s.length,m=0;for(let e of s)m+=1,m=Math.ceil(m/4)*4,m+=4+e.coords.length*4,m+=4+e.colors.length*4,e.verticesPerRow!==void 0&&(m+=4);let h=20+u*8+d*3+f*8+(r?16:0)+(l?3:0)+m,g=new ArrayBuffer(h),_=new DataView(g),v=new Uint8Array(g);_.setUint8(e.#e,n),_.setUint8(e.#t,r?1:0),_.setUint8(e.#n,l?1:0),_.setUint8(e.#r,c),_.setUint32(e.#i,u,!0),_.setUint32(e.#a,d,!0),_.setUint32(e.#o,f,!0),_.setUint32(e.#s,p,!0);let y=20;new Float32Array(g,y,u*2).set(i),y+=u*8,v.set(a,y),y+=d*3;for(let[e,t]of o)_.setFloat32(y,e,!0),y+=4,_.setUint32(y,parseInt(t.slice(1),16),!0),y+=4;if(r)for(let e of r)_.setFloat32(y,e,!0),y+=4;l&&(v.set(l,y),y+=3);for(let e=0;e<s.length;e++){let t=s[e];_.setUint8(y,t.type),y+=1,y=Math.ceil(y/4)*4,_.setUint32(y,t.coords.length,!0),y+=4,new Int32Array(g,y,t.coords.length).set(t.coords),y+=t.coords.length*4,_.setUint32(y,t.colors.length,!0),y+=4,new Int32Array(g,y,t.colors.length).set(t.colors),y+=t.colors.length*4,t.verticesPerRow!==void 0&&(_.setUint32(y,t.verticesPerRow,!0),y+=4)}return g}getIR(){let t=this.view,n=this.data[e.#e],r=!!this.data[e.#t],i=!!this.data[e.#n],a=t.getUint32(e.#i,!0),o=t.getUint32(e.#a,!0),s=t.getUint32(e.#o,!0),c=t.getUint32(e.#s,!0),l=20,u=new Float32Array(this.buffer,l,a*2);l+=a*8;let d=new Uint8Array(this.buffer,l,o*3);l+=o*3;let f=[];for(let e=0;e<s;++e){let e=t.getFloat32(l,!0);l+=4;let n=t.getUint32(l,!0);l+=4,f.push([e,`#${n.toString(16).padStart(6,`0`)}`])}let p=null;if(r){p=[];for(let e=0;e<4;++e)p.push(t.getFloat32(l,!0)),l+=4}let m=null;i&&(m=new Uint8Array(this.buffer,l,3),l+=3);let h=[];for(let e=0;e<c;++e){let e=t.getUint8(l);l+=1,l=Math.ceil(l/4)*4;let n=t.getUint32(l,!0);l+=4;let r=new Int32Array(this.buffer,l,n);l+=n*4;let i=t.getUint32(l,!0);l+=4;let a=new Int32Array(this.buffer,l,i);l+=i*4;let o={type:e,coords:r,colors:a};e===Zc.LATTICE&&(o.verticesPerRow=t.getUint32(l,!0),l+=4),h.push(o)}if(n===1)return[`RadialAxial`,`axial`,p,f,Array.from(u.slice(0,2)),Array.from(u.slice(2,4)),null,null];if(n===2)return[`RadialAxial`,`radial`,p,f,[u[0],u[1]],[u[3],u[4]],u[2],u[5]];if(n===3){let t=this.data[e.#r],n=null;if(u.length>0){let e=u[0],t=u[0],r=u[1],i=u[1];for(let n=0;n<u.length;n+=2){let a=u[n],o=u[n+1];e=e>a?a:e,r=r>o?o:r,t=t<a?a:t,i=i<o?o:i}n=[e,r,t,i]}return[`Mesh`,t,u,d,h,n,p,m]}throw Error(`Unsupported pattern kind: ${n}`)}},Ju=class{static write(e){let t,n;return Dl.isFloat16ArraySupported?(n=new ArrayBuffer(e.length*2),t=new Float16Array(n)):(n=new ArrayBuffer(e.length*4),t=new Float32Array(n)),t.set(e),n}#e;constructor(e){this.#e=e}get path(){return Dl.isFloat16ArraySupported?new Float16Array(this.#e):new Float32Array(this.#e)}};function Yu(e){if(e instanceof URL)return e.href;if(typeof e==`string`){if(Uc)return e;let t=URL.parse(e,window.location);if(t)return t.href}throw Error(`Invalid PDF url data: either string or URL-object is expected in the url property.`)}function Xu(e){if(Uc&&typeof Buffer<`u`&&e instanceof Buffer)throw Error("Please provide binary data as `Uint8Array`, rather than `Buffer`.");if(e instanceof Uint8Array&&e.byteLength===e.buffer.byteLength)return e;if(typeof e==`string`)return Cl(e);if(e instanceof ArrayBuffer||ArrayBuffer.isView(e)||typeof e==`object`&&!isNaN(e?.length))return new Uint8Array(e);throw Error(`Invalid PDF binary data: either TypedArray, string, or array-like object is expected in the data property.`)}function Zu(e){if(typeof e!=`string`)return null;if(e.endsWith(`/`))return e;throw Error(`Invalid factory url: "${e}" must include trailing slash.`)}var Qu=e=>typeof e==`object`&&Number.isInteger(e?.num)&&e.num>=0&&Number.isInteger(e?.gen)&&e.gen>=0,$u=Fl.bind(null,Qu,e=>typeof e==`object`&&typeof e?.name==`string`),ed=class{#e=new Map;#t=Promise.resolve();postMessage(e,t){let n={data:structuredClone(e,t?{transfer:t}:null)};this.#t.then(()=>{for(let[e]of this.#e)e.call(this,n)})}addEventListener(e,t,n=null){let r=null;if(n?.signal instanceof AbortSignal){let{signal:i}=n;if(i.aborted){X("LoopbackPort - cannot use an `aborted` signal.");return}let a=()=>this.removeEventListener(e,t);r=()=>i.removeEventListener(`abort`,a),i.addEventListener(`abort`,a)}this.#e.set(t,r)}removeEventListener(e,t){this.#e.get(t)?.(),this.#e.delete(t)}terminate(){for(let[,e]of this.#e)e?.();this.#e.clear()}};J(1689);var td={DATA:1,ERROR:2},nd={CANCEL:1,CANCEL_COMPLETE:2,CLOSE:3,ENQUEUE:4,ERROR:5,PULL:6,PULL_COMPLETE:7,START_COMPLETE:8};function rd(){}function id(e){if(e instanceof xl||e instanceof vl||e instanceof gl||e instanceof yl||e instanceof _l)return e;switch(e instanceof Error||typeof e==`object`&&e||ul(`wrapReason: Expected "reason" to be a (possibly cloned) Error.`),e.name){case`AbortException`:return new xl(e.message);case`InvalidPDFException`:return new vl(e.message);case`PasswordException`:return new gl(e.message,e.code);case`ResponseException`:return new yl(e.message,e.status,e.missing);case`UnknownErrorException`:return new _l(e.message,e.details)}return new _l(e.message,e.toString())}var ad=class{#e=new AbortController;constructor(e,t,n){this.sourceName=e,this.targetName=t,this.comObj=n,this.callbackId=1,this.streamId=1,this.streamSinks=Object.create(null),this.streamControllers=Object.create(null),this.callbackCapabilities=Object.create(null),this.actionHandler=Object.create(null),n.addEventListener(`message`,this.#t.bind(this),{signal:this.#e.signal})}#t({data:e}){if(e.targetName!==this.sourceName)return;if(e.stream){this.#r(e);return}if(e.callback){let t=e.callbackId,n=this.callbackCapabilities[t];if(!n)throw Error(`Cannot resolve callback ${t}`);if(delete this.callbackCapabilities[t],e.callback===td.DATA)n.resolve(e.data);else if(e.callback===td.ERROR)n.reject(id(e.reason));else throw Error(`Unexpected callback case`);return}let t=this.actionHandler[e.action];if(!t)throw Error(`Unknown action from worker: ${e.action}`);if(e.callbackId){let n=this.sourceName,r=e.sourceName,i=this.comObj;Promise.try(t,e.data).then(function(t){i.postMessage({sourceName:n,targetName:r,callback:td.DATA,callbackId:e.callbackId,data:t})},function(t){i.postMessage({sourceName:n,targetName:r,callback:td.ERROR,callbackId:e.callbackId,reason:id(t)})});return}if(e.streamId){this.#n(e);return}t(e.data)}on(e,t){let n=this.actionHandler;if(n[e])throw Error(`There is already an actionName called "${e}"`);n[e]=t}send(e,t,n){this.comObj.postMessage({sourceName:this.sourceName,targetName:this.targetName,action:e,data:t},n)}sendWithPromise(e,t,n){let r=this.callbackId++,i=Promise.withResolvers();this.callbackCapabilities[r]=i;try{this.comObj.postMessage({sourceName:this.sourceName,targetName:this.targetName,action:e,callbackId:r,data:t},n)}catch(e){i.reject(e)}return i.promise}sendWithStream(e,t,n,r){let i=this.streamId++,a=this.sourceName,o=this.targetName,s=this.comObj;return new ReadableStream({start:n=>{let c=Promise.withResolvers();return this.streamControllers[i]={controller:n,startCall:c,pullCall:null,cancelCall:null,isClosed:!1},s.postMessage({sourceName:a,targetName:o,action:e,streamId:i,data:t,desiredSize:n.desiredSize},r),c.promise},pull:e=>{let t=Promise.withResolvers();return this.streamControllers[i].pullCall=t,s.postMessage({sourceName:a,targetName:o,stream:nd.PULL,streamId:i,desiredSize:e.desiredSize}),t.promise},cancel:e=>{dl(e instanceof Error,`cancel must have a valid reason`);let t=Promise.withResolvers();return this.streamControllers[i].cancelCall=t,this.streamControllers[i].isClosed=!0,s.postMessage({sourceName:a,targetName:o,stream:nd.CANCEL,streamId:i,reason:id(e)}),t.promise}},n)}#n(e){let t=e.streamId,n=this.sourceName,r=e.sourceName,i=this.comObj,a=this,o=this.actionHandler[e.action],s={enqueue(e,a=1,o){if(this.isCancelled)return;let s=this.desiredSize;this.desiredSize-=a,s>0&&this.desiredSize<=0&&(this.sinkCapability=Promise.withResolvers(),this.ready=this.sinkCapability.promise),i.postMessage({sourceName:n,targetName:r,stream:nd.ENQUEUE,streamId:t,chunk:e},o)},close(){this.isCancelled||(this.isCancelled=!0,i.postMessage({sourceName:n,targetName:r,stream:nd.CLOSE,streamId:t}),delete a.streamSinks[t])},error(e){dl(e instanceof Error,`error must have a valid reason`),!this.isCancelled&&(this.isCancelled=!0,i.postMessage({sourceName:n,targetName:r,stream:nd.ERROR,streamId:t,reason:id(e)}))},sinkCapability:Promise.withResolvers(),onPull:null,onCancel:null,isCancelled:!1,desiredSize:e.desiredSize,ready:null};s.sinkCapability.resolve(),s.ready=s.sinkCapability.promise,this.streamSinks[t]=s,Promise.try(o,e.data,s).then(function(){i.postMessage({sourceName:n,targetName:r,stream:nd.START_COMPLETE,streamId:t,success:!0})},function(e){i.postMessage({sourceName:n,targetName:r,stream:nd.START_COMPLETE,streamId:t,reason:id(e)})})}#r(e){let t=e.streamId,n=this.sourceName,r=e.sourceName,i=this.comObj,a=this.streamControllers[t],o=this.streamSinks[t];switch(e.stream){case nd.START_COMPLETE:e.success?a.startCall.resolve():a.startCall.reject(id(e.reason));break;case nd.PULL_COMPLETE:e.success?a.pullCall.resolve():a.pullCall.reject(id(e.reason));break;case nd.PULL:if(!o){i.postMessage({sourceName:n,targetName:r,stream:nd.PULL_COMPLETE,streamId:t,success:!0});break}o.desiredSize<=0&&e.desiredSize>0&&o.sinkCapability.resolve(),o.desiredSize=e.desiredSize,Promise.try(o.onPull||rd).then(function(){i.postMessage({sourceName:n,targetName:r,stream:nd.PULL_COMPLETE,streamId:t,success:!0})},function(e){i.postMessage({sourceName:n,targetName:r,stream:nd.PULL_COMPLETE,streamId:t,reason:id(e)})});break;case nd.ENQUEUE:if(dl(a,`enqueue should have stream controller`),a.isClosed)break;a.controller.enqueue(e.chunk);break;case nd.CLOSE:if(dl(a,`close should have stream controller`),a.isClosed)break;a.isClosed=!0,a.controller.close(),this.#i(a,t);break;case nd.ERROR:dl(a,`error should have stream controller`),a.controller.error(id(e.reason)),this.#i(a,t);break;case nd.CANCEL_COMPLETE:e.success?a.cancelCall.resolve():a.cancelCall.reject(id(e.reason)),this.#i(a,t);break;case nd.CANCEL:if(!o)break;let s=id(e.reason);Promise.try(o.onCancel||rd,s).then(function(){i.postMessage({sourceName:n,targetName:r,stream:nd.CANCEL_COMPLETE,streamId:t,success:!0})},function(e){i.postMessage({sourceName:n,targetName:r,stream:nd.CANCEL_COMPLETE,streamId:t,reason:id(e)})}),o.sinkCapability.reject(s),o.isCancelled=!0,delete this.streamSinks[t];break;default:throw Error(`Unexpected stream case`)}}async#i(e,t){await Promise.allSettled([e.startCall?.promise,e.pullCall?.promise,e.cancelCall?.promise]),delete this.streamControllers[t]}destroy(){this.#e?.abort(),this.#e=null}},od=class{#e=!1;constructor({enableHWA:e=!1}){this.#e=e}create(e,t){if(e<=0||t<=0)throw Error(`Invalid canvas size`);let n=this._createCanvas(e,t);return{canvas:n,context:n.getContext(`2d`,{willReadFrequently:!this.#e})}}reset(e,t,n){if(!e.canvas)throw Error(`Canvas is not specified`);if(t<=0||n<=0)throw Error(`Invalid canvas size`);e.canvas.width=t,e.canvas.height=n}destroy(e){if(!e.canvas)throw Error(`Canvas is not specified`);e.canvas.width=0,e.canvas.height=0,e.canvas=null,e.context=null}_createCanvas(e,t){ul("Abstract method `_createCanvas` called.")}},sd=class extends od{constructor({ownerDocument:e=globalThis.document,enableHWA:t=!1}){super({enableHWA:t}),this._document=e}_createCanvas(e,t){let n=this._document.createElement(`canvas`);return n.width=e,n.height=t,n}},cd=class{constructor({baseUrl:e=null,isCompressed:t=!0}){this.baseUrl=e,this.isCompressed=t}async fetch({name:e}){if(!this.baseUrl)throw Error("Ensure that the `cMapUrl` and `cMapPacked` API parameters are provided.");if(!e)throw Error(`CMap name must be specified.`);let t=this.baseUrl+e+(this.isCompressed?`.bcmap`:``);return this._fetch(t).then(e=>({cMapData:e,isCompressed:this.isCompressed})).catch(e=>{throw Error(`Unable to load ${this.isCompressed?`binary `:``}CMap at: ${t}`)})}async _fetch(e){ul("Abstract method `_fetch` called.")}},ld=class extends cd{async _fetch(e){let t=await Vl(e,this.isCompressed?`arraybuffer`:`text`);return t instanceof ArrayBuffer?new Uint8Array(t):Cl(t)}};J(2489);var ud=class{addFilter(e){return`none`}addHCMFilter(e,t){return`none`}addAlphaFilter(e){return`none`}addLuminosityFilter(e){return`none`}addHighlightHCMFilter(e,t,n,r,i){return`none`}destroy(e=!1){}},dd=class extends ud{#e;#t;#n;#r;#i;#a;#o=0;constructor({docId:e,ownerDocument:t=globalThis.document}){super(),this.#r=e,this.#i=t}get#s(){return this.#t||=new Map}get#c(){return this.#a||=new Map}get#l(){if(!this.#n){let e=this.#i.createElement(`div`),{style:t}=e;t.visibility=`hidden`,t.contain=`strict`,t.width=t.height=0,t.position=`absolute`,t.top=t.left=0,t.zIndex=-1;let n=this.#i.createElementNS(zl,`svg`);n.setAttribute(`width`,0),n.setAttribute(`height`,0),this.#n=this.#i.createElementNS(zl,`defs`),e.append(n),n.append(this.#n),this.#i.body.append(e)}return this.#n}#u(e){if(e.length===1){let t=e[0],n=Array(256);for(let e=0;e<256;e++)n[e]=t[e]/255;let r=n.join(`,`);return[r,r,r]}let[t,n,r]=e,i=Array(256),a=Array(256),o=Array(256);for(let e=0;e<256;e++)i[e]=t[e]/255,a[e]=n[e]/255,o[e]=r[e]/255;return[i.join(`,`),a.join(`,`),o.join(`,`)]}#d(e){if(this.#e===void 0){this.#e=``;let e=this.#i.URL;e!==this.#i.baseURI&&(Wl(e)?X(`#createUrl: ignore "data:"-URL for performance reasons.`):this.#e=ml(e,``))}return`url(${this.#e}#${e})`}addFilter(e){if(!e)return`none`;let t=this.#s.get(e);if(t)return t;let[n,r,i]=this.#u(e),a=e.length===1?n:`${n}${r}${i}`;if(t=this.#s.get(a),t)return this.#s.set(e,t),t;let o=`g_${this.#r}_transfer_map_${this.#o++}`,s=this.#d(o);this.#s.set(e,s),this.#s.set(a,s);let c=this.#m(o);return this.#g(n,r,i,c),s}addHCMFilter(e,t){let n=`${e}-${t}`,r=`base`,i=this.#c.get(r);if(i?.key===n||(i?(i.filter?.remove(),i.key=n,i.url=`none`,i.filter=null):(i={key:n,url:`none`,filter:null},this.#c.set(r,i)),!e||!t))return i.url;let a=this.#v(e);e=Q.makeHexColor(...a);let o=this.#v(t);if(t=Q.makeHexColor(...o),this.#l.style.color=``,e===`#000000`&&t===`#ffffff`||e===t)return i.url;let s=Array(256);for(let e=0;e<=255;e++){let t=e/255;s[e]=t<=.03928?t/12.92:((t+.055)/1.055)**2.4}let c=s.join(`,`),l=`g_${this.#r}_hcm_filter`,u=i.filter=this.#m(l);this.#g(c,c,c,u),this.#p(u);let d=(e,t)=>{let n=a[e]/255,r=o[e]/255,i=Array(t+1);for(let e=0;e<=t;e++)i[e]=n+e/t*(r-n);return i.join(`,`)};return this.#g(d(0,5),d(1,5),d(2,5),u),i.url=this.#d(l),i.url}addAlphaFilter(e){let t=this.#s.get(e);if(t)return t;let[n]=this.#u([e]),r=`alpha_${n}`;if(t=this.#s.get(r),t)return this.#s.set(e,t),t;let i=`g_${this.#r}_alpha_map_${this.#o++}`,a=this.#d(i);this.#s.set(e,a),this.#s.set(r,a);let o=this.#m(i);return this.#_(n,o),a}addLuminosityFilter(e){let t=this.#s.get(e||`luminosity`);if(t)return t;let n,r;if(e?([n]=this.#u([e]),r=`luminosity_${n}`):r=`luminosity`,t=this.#s.get(r),t)return this.#s.set(e,t),t;let i=`g_${this.#r}_luminosity_map_${this.#o++}`,a=this.#d(i);this.#s.set(e,a),this.#s.set(r,a);let o=this.#m(i);return this.#f(o),e&&this.#_(n,o),a}addHighlightHCMFilter(e,t,n,r,i){let a=`${t}-${n}-${r}-${i}`,o=this.#c.get(e);if(o?.key===a||(o?(o.filter?.remove(),o.key=a,o.url=`none`,o.filter=null):(o={key:a,url:`none`,filter:null},this.#c.set(e,o)),!t||!n))return o.url;let[s,c]=[t,n].map(this.#v.bind(this)),l=Math.round(.2126*s[0]+.7152*s[1]+.0722*s[2]),u=Math.round(.2126*c[0]+.7152*c[1]+.0722*c[2]),[d,f]=[r,i].map(this.#v.bind(this));u<l&&([l,u,d,f]=[u,l,f,d]),this.#l.style.color=``;let p=(e,t,n)=>{let r=Array(256),i=(u-l)/n,a=e/255,o=(t-e)/(255*n),s=0;for(let e=0;e<=n;e++){let t=Math.round(l+e*i),n=a+e*o;for(let e=s;e<=t;e++)r[e]=n;s=t+1}for(let e=s;e<256;e++)r[e]=r[s-1];return r.join(`,`)},m=`g_${this.#r}_hcm_${e}_filter`,h=o.filter=this.#m(m);return this.#p(h),this.#g(p(d[0],f[0],5),p(d[1],f[1],5),p(d[2],f[2],5),h),o.url=this.#d(m),o.url}destroy(e=!1){e&&this.#a?.size||(this.#n?.parentNode.parentNode.remove(),this.#n=null,this.#t?.clear(),this.#t=null,this.#a?.clear(),this.#a=null,this.#o=0)}#f(e){let t=this.#i.createElementNS(zl,`feColorMatrix`);t.setAttribute(`type`,`matrix`),t.setAttribute(`values`,`0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0.59 0.11 0 0`),e.append(t)}#p(e){let t=this.#i.createElementNS(zl,`feColorMatrix`);t.setAttribute(`type`,`matrix`),t.setAttribute(`values`,`0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0`),e.append(t)}#m(e){let t=this.#i.createElementNS(zl,`filter`);return t.setAttribute(`color-interpolation-filters`,`sRGB`),t.setAttribute(`id`,e),this.#l.append(t),t}#h(e,t,n){let r=this.#i.createElementNS(zl,t);r.setAttribute(`type`,`discrete`),r.setAttribute(`tableValues`,n),e.append(r)}#g(e,t,n,r){let i=this.#i.createElementNS(zl,`feComponentTransfer`);r.append(i),this.#h(i,`feFuncR`,e),this.#h(i,`feFuncG`,t),this.#h(i,`feFuncB`,n)}#_(e,t){let n=this.#i.createElementNS(zl,`feComponentTransfer`);t.append(n),this.#h(n,`feFuncA`,e)}#v(e){return this.#l.style.color=e,tu(getComputedStyle(this.#l).getPropertyValue(`color`))}},fd=class{constructor({baseUrl:e=null}){this.baseUrl=e}async fetch({filename:e}){if(!this.baseUrl)throw Error("Ensure that the `standardFontDataUrl` API parameter is provided.");if(!e)throw Error(`Font filename must be specified.`);let t=`${this.baseUrl}${e}`;return this._fetch(t).catch(e=>{throw Error(`Unable to load font data at: ${t}`)})}async _fetch(e){ul("Abstract method `_fetch` called.")}},pd=class extends fd{async _fetch(e){let t=await Vl(e,`arraybuffer`);return new Uint8Array(t)}},md=class{constructor({baseUrl:e=null}){this.baseUrl=e}async fetch({filename:e}){if(!this.baseUrl)throw Error("Ensure that the `wasmUrl` API parameter is provided.");if(!e)throw Error(`Wasm filename must be specified.`);let t=`${this.baseUrl}${e}`;return this._fetch(t).catch(e=>{throw Error(`Unable to load wasm data at: ${t}`)})}async _fetch(e){ul("Abstract method `_fetch` called.")}},hd=class extends md{async _fetch(e){let t=await Vl(e,`arraybuffer`);return new Uint8Array(t)}};if(Uc){let e;try{let t=process.getBuiltinModule(`module`).createRequire({}.url);try{e=t(`@napi-rs/canvas`)}catch(e){X(`Cannot load "@napi-rs/canvas" package: "${e}".`)}}catch(e){X(`Cannot access the \`require\` function: "${e}".`)}globalThis.DOMMatrix||(e?.DOMMatrix?globalThis.DOMMatrix=e.DOMMatrix:X("Cannot polyfill `DOMMatrix`, rendering may be broken.")),globalThis.ImageData||(e?.ImageData?globalThis.ImageData=e.ImageData:X("Cannot polyfill `ImageData`, rendering may be broken.")),globalThis.Path2D||(e?.Path2D?globalThis.Path2D=e.Path2D:X("Cannot polyfill `Path2D`, rendering may be broken.")),globalThis.navigator?.language||(globalThis.navigator={language:`en-US`,platform:``,userAgent:``})}async function gd(e){let t=await process.getBuiltinModule(`fs`).promises.readFile(e);return new Uint8Array(t)}var _d=class extends ud{},vd=class extends od{_createCanvas(e,t){return process.getBuiltinModule(`module`).createRequire({}.url)(`@napi-rs/canvas`).createCanvas(e,t)}},yd=class extends cd{async _fetch(e){return gd(e)}},bd=class extends fd{async _fetch(e){return gd(e)}},xd=class extends md{async _fetch(e){return gd(e)}};J(7588);var Sd=`__forcedDependency`,{floor:Cd,ceil:wd}=Math;function Td(e,t,n,r,i,a){e[t*4+0]=Math.min(e[t*4+0],n),e[t*4+1]=Math.min(e[t*4+1],r),e[t*4+2]=Math.max(e[t*4+2],i),e[t*4+3]=Math.max(e[t*4+3],a)}var Ed=new Uint32Array(new Uint8Array([255,255,0,0]).buffer)[0],Dd=class{#e;#t;constructor(e,t){this.#e=e,this.#t=t}get length(){return this.#e.length}isEmpty(e){return this.#e[e]===Ed}minX(e){return this.#t[e*4+0]/256}minY(e){return this.#t[e*4+1]/256}maxX(e){return(this.#t[e*4+2]+1)/256}maxY(e){return(this.#t[e*4+3]+1)/256}},Od=(e,t)=>{if(!e)return;let n=e.get(t);return n||(n={dependencies:new Set,isRenderingOperation:!1},e.set(t,n)),n},kd=class{#e={__proto__:null};#t={__proto__:null,transform:[],moveText:[],sameLineText:[],[Sd]:[]};#n=new Map;#r=[];#i=[];#a=[[1,0,0,1,0,0]];#o=[-1/0,-1/0,1/0,1/0];#s=new Float64Array([1/0,1/0,-1/0,-1/0]);#c=-1;#l=new Set;#u=new Map;#d=new Map;#f;#p;#m;#h;#g;constructor(e,t,n=!1){this.#f=e.width,this.#p=e.height,this.#_(t),n&&(this.#g=new Map)}growOperationsCount(e){e>=this.#h.length&&this.#_(e,this.#h)}#_(e,t){let n=new ArrayBuffer(e*4);this.#m=new Uint8ClampedArray(n),this.#h=new Uint32Array(n),t&&t.length>0?(this.#h.set(t),this.#h.fill(Ed,t.length)):this.#h.fill(Ed)}save(e){return this.#e={__proto__:this.#e},this.#t={__proto__:this.#t,transform:{__proto__:this.#t.transform},moveText:{__proto__:this.#t.moveText},sameLineText:{__proto__:this.#t.sameLineText},[Sd]:{__proto__:this.#t[Sd]}},this.#o={__proto__:this.#o},this.#r.push(e),this}restore(e){let t=Object.getPrototypeOf(this.#e);if(t===null)return this;this.#e=t,this.#t=Object.getPrototypeOf(this.#t),this.#o=Object.getPrototypeOf(this.#o);let n=this.#r.pop();return n!==void 0&&(Od(this.#g,e)?.dependencies.add(n),this.#h[e]=this.#h[n]),this}recordOpenMarker(e){return this.#r.push(e),this}getOpenMarker(){return this.#r.length===0?null:this.#r.at(-1)}recordCloseMarker(e){let t=this.#r.pop();return t!==void 0&&(Od(this.#g,e)?.dependencies.add(t),this.#h[e]=this.#h[t]),this}beginMarkedContent(e){return this.#i.push(e),this}endMarkedContent(e){let t=this.#i.pop();return t!==void 0&&(Od(this.#g,e)?.dependencies.add(t),this.#h[e]=this.#h[t]),this}pushBaseTransform(e){return this.#a.push(Q.multiplyByDOMMatrix(this.#a.at(-1),e.getTransform())),this}popBaseTransform(){return this.#a.length>1&&this.#a.pop(),this}recordSimpleData(e,t){return this.#e[e]=t,this}recordIncrementalData(e,t){return this.#t[e].push(t),this}resetIncrementalData(e,t){return this.#t[e].length=0,this}recordNamedData(e,t){return this.#n.set(e,t),this}recordSimpleDataFromNamed(e,t,n){this.#e[e]=this.#n.get(t)??n}recordFutureForcedDependency(e,t){return this.recordIncrementalData(Sd,t),this}inheritSimpleDataAsFutureForcedDependencies(e){for(let t of e)t in this.#e&&this.recordFutureForcedDependency(t,this.#e[t]);return this}inheritPendingDependenciesAsFutureForcedDependencies(){for(let e of this.#l)this.recordFutureForcedDependency(Sd,e);return this}resetBBox(e){return this.#c!==e&&(this.#c=e,this.#s[0]=1/0,this.#s[1]=1/0,this.#s[2]=-1/0,this.#s[3]=-1/0),this}recordClipBox(e,t,n,r,i,a){let o=Q.multiplyByDOMMatrix(this.#a.at(-1),t.getTransform()),s=[1/0,1/0,-1/0,-1/0];Q.axialAlignedBoundingBox([n,i,r,a],o,s);let c=Q.intersect(this.#o,s);return c?(this.#o[0]=c[0],this.#o[1]=c[1],this.#o[2]=c[2],this.#o[3]=c[3]):(this.#o[0]=this.#o[1]=1/0,this.#o[2]=this.#o[3]=-1/0),this}recordBBox(e,t,n,r,i,a){let o=this.#o;if(o[0]===1/0)return this;let s=Q.multiplyByDOMMatrix(this.#a.at(-1),t.getTransform());if(o[0]===-1/0)return Q.axialAlignedBoundingBox([n,i,r,a],s,this.#s),this;let c=[1/0,1/0,-1/0,-1/0];return Q.axialAlignedBoundingBox([n,i,r,a],s,c),this.#s[0]=Math.min(this.#s[0],Math.max(c[0],o[0])),this.#s[1]=Math.min(this.#s[1],Math.max(c[1],o[1])),this.#s[2]=Math.max(this.#s[2],Math.min(c[2],o[2])),this.#s[3]=Math.max(this.#s[3],Math.min(c[3],o[3])),this}recordCharacterBBox(e,t,n,r=1,i=0,a=0,o){let s=n.bbox,c,l;if(s&&(c=s[2]!==s[0]&&s[3]!==s[1]&&this.#d.get(n),c!==!1&&(l=[0,0,0,0],Q.axialAlignedBoundingBox(s,n.fontMatrix,l),(r!==1||i!==0||a!==0)&&Q.scaleMinMax([r,0,0,-r,i,a],l),c)))return this.recordBBox(e,t,l[0],l[2],l[1],l[3]);if(!o)return this.recordFullPageBBox(e);let u=o();return s&&l&&c===void 0&&(c=l[0]<=i-u.actualBoundingBoxLeft&&l[2]>=i+u.actualBoundingBoxRight&&l[1]<=a-u.actualBoundingBoxAscent&&l[3]>=a+u.actualBoundingBoxDescent,this.#d.set(n,c),c)?this.recordBBox(e,t,l[0],l[2],l[1],l[3]):this.recordBBox(e,t,i-u.actualBoundingBoxLeft,i+u.actualBoundingBoxRight,a-u.actualBoundingBoxAscent,a+u.actualBoundingBoxDescent)}recordFullPageBBox(e){return this.#s[0]=Math.max(0,this.#o[0]),this.#s[1]=Math.max(0,this.#o[1]),this.#s[2]=Math.min(this.#f,this.#o[2]),this.#s[3]=Math.min(this.#p,this.#o[3]),this}getSimpleIndex(e){return this.#e[e]}recordDependencies(e,t){let n=this.#l,r=this.#e,i=this.#t;for(let e of t)e in this.#e?n.add(r[e]):e in i&&i[e].forEach(n.add,n);return this}recordNamedDependency(e,t){return this.#n.has(t)&&this.#l.add(this.#n.get(t)),this}recordOperation(e,t=!1){if(this.recordDependencies(e,[Sd]),this.#g){let t=Od(this.#g,e),{dependencies:n}=t;this.#l.forEach(n.add,n),this.#r.forEach(n.add,n),this.#i.forEach(n.add,n),n.delete(e),t.isRenderingOperation=!0}if(this.#c===e){let n=Cd(this.#s[0]*256/this.#f),r=Cd(this.#s[1]*256/this.#p),i=wd(this.#s[2]*256/this.#f),a=wd(this.#s[3]*256/this.#p);Td(this.#m,e,n,r,i,a);for(let t of this.#l)t!==e&&Td(this.#m,t,n,r,i,a);for(let t of this.#r)t!==e&&Td(this.#m,t,n,r,i,a);for(let t of this.#i)t!==e&&Td(this.#m,t,n,r,i,a);t||(this.#l.clear(),this.#c=-1)}return this}recordShowTextOperation(e,t=!1){let n=Array.from(this.#l);this.recordOperation(e,t),this.recordIncrementalData(`sameLineText`,e);for(let e of n)this.recordIncrementalData(`sameLineText`,e);return this}bboxToClipBoxDropOperation(e,t=!1){return this.#c===e&&(this.#c=-1,this.#o[0]=Math.max(this.#o[0],this.#s[0]),this.#o[1]=Math.max(this.#o[1],this.#s[1]),this.#o[2]=Math.min(this.#o[2],this.#s[2]),this.#o[3]=Math.min(this.#o[3],this.#s[3]),t||this.#l.clear()),this}_takePendingDependencies(){let e=this.#l;return this.#l=new Set,e}_extractOperation(e){let t=this.#u.get(e);return this.#u.delete(e),t}_pushPendingDependencies(e){for(let t of e)this.#l.add(t)}take(){return this.#d.clear(),new Dd(this.#h,this.#m)}takeDebugMetadata(){return this.#g}},Ad=class e{#e;#t;#n;#r=0;#i=0;constructor(t,n,r){if(t instanceof e&&t.#n===!!r)return t;this.#e=t,this.#t=n,this.#n=!!r}growOperationsCount(){throw Error(`Unreachable`)}save(e){return this.#i++,this.#e.save(this.#t),this}restore(e){return this.#i>0&&(this.#e.restore(this.#t),this.#i--),this}recordOpenMarker(e){return this.#r++,this}getOpenMarker(){return this.#r>0?this.#t:this.#e.getOpenMarker()}recordCloseMarker(e){return this.#r--,this}beginMarkedContent(e){return this}endMarkedContent(e){return this}pushBaseTransform(e){return this.#e.pushBaseTransform(e),this}popBaseTransform(){return this.#e.popBaseTransform(),this}recordSimpleData(e,t){return this.#e.recordSimpleData(e,this.#t),this}recordIncrementalData(e,t){return this.#e.recordIncrementalData(e,this.#t),this}resetIncrementalData(e,t){return this.#e.resetIncrementalData(e,this.#t),this}recordNamedData(e,t){return this}recordSimpleDataFromNamed(e,t,n){return this.#e.recordSimpleDataFromNamed(e,t,this.#t),this}recordFutureForcedDependency(e,t){return this.#e.recordFutureForcedDependency(e,this.#t),this}inheritSimpleDataAsFutureForcedDependencies(e){return this.#e.inheritSimpleDataAsFutureForcedDependencies(e),this}inheritPendingDependenciesAsFutureForcedDependencies(){return this.#e.inheritPendingDependenciesAsFutureForcedDependencies(),this}resetBBox(e){return this.#n||this.#e.resetBBox(this.#t),this}recordClipBox(e,t,n,r,i,a){return this.#n||this.#e.recordClipBox(this.#t,t,n,r,i,a),this}recordBBox(e,t,n,r,i,a){return this.#n||this.#e.recordBBox(this.#t,t,n,r,i,a),this}recordCharacterBBox(e,t,n,r,i,a,o){return this.#n||this.#e.recordCharacterBBox(this.#t,t,n,r,i,a,o),this}recordFullPageBBox(e){return this.#n||this.#e.recordFullPageBBox(this.#t),this}getSimpleIndex(e){return this.#e.getSimpleIndex(e)}recordDependencies(e,t){return this.#e.recordDependencies(this.#t,t),this}recordNamedDependency(e,t){return this.#e.recordNamedDependency(this.#t,t),this}recordOperation(e){return this.#e.recordOperation(this.#t,!0),this}recordShowTextOperation(e){return this.#e.recordShowTextOperation(this.#t,!0),this}bboxToClipBoxDropOperation(e){return this.#n||this.#e.bboxToClipBoxDropOperation(this.#t,!0),this}take(){throw Error(`Unreachable`)}takeDebugMetadata(){throw Error(`Unreachable`)}},jd={stroke:[`path`,`transform`,`filter`,`strokeColor`,`strokeAlpha`,`lineWidth`,`lineCap`,`lineJoin`,`miterLimit`,`dash`],fill:[`path`,`transform`,`filter`,`fillColor`,`fillAlpha`,`globalCompositeOperation`,`SMask`],imageXObject:[`transform`,`SMask`,`filter`,`fillAlpha`,`strokeAlpha`,`globalCompositeOperation`],rawFillPath:[`filter`,`fillColor`,`fillAlpha`],showText:[`transform`,`leading`,`charSpacing`,`wordSpacing`,`hScale`,`textRise`,`moveText`,`textMatrix`,`font`,`fontObj`,`filter`,`fillColor`,`textRenderingMode`,`SMask`,`fillAlpha`,`strokeAlpha`,`globalCompositeOperation`,`sameLineText`],transform:[`transform`],transformAndFill:[`transform`,`fillColor`]},Md={FILL:`Fill`,STROKE:`Stroke`,SHADING:`Shading`};function Nd(e,t){if(!t)return;let n=t[2]-t[0],r=t[3]-t[1],i=new Path2D;i.rect(t[0],t[1],n,r),e.clip(i)}var Pd=class{isModifyingCurrentTransform(){return!1}getPattern(){ul("Abstract method `getPattern` called.")}},Fd=class extends Pd{constructor(e){super(),this._type=e[1],this._bbox=e[2],this._colorStops=e[3],this._p0=e[4],this._p1=e[5],this._r0=e[6],this._r1=e[7],this.matrix=null}isOriginBased(){return this._p0[0]===0&&this._p0[1]===0&&(!this.isRadial()||this._p1[0]===0&&this._p1[1]===0)}isRadial(){return this._type===`radial`}_createGradient(e,t=null){let n,r=this._p0,i=this._p1;if(t&&(r=r.slice(),i=i.slice(),Q.applyTransform(r,t),Q.applyTransform(i,t)),this._type===`axial`)n=e.createLinearGradient(r[0],r[1],i[0],i[1]);else if(this._type===`radial`){let a=this._r0,o=this._r1;if(t){let e=new Float32Array(2);Q.singularValueDecompose2dScale(t,e),a*=e[0],o*=e[0]}n=e.createRadialGradient(r[0],r[1],a,i[0],i[1],o)}for(let e of this._colorStops)n.addColorStop(e[0],e[1]);return n}getPattern(e,t,n,r){let i;if(r===Md.STROKE||r===Md.FILL){if(this.isOriginBased()){let r=Q.transform(n,t.baseTransform);this.matrix&&(r=Q.transform(r,this.matrix));let i=.001,a=Math.hypot(r[0],r[1]),o=Math.hypot(r[2],r[3]),s=(r[0]*r[2]+r[1]*r[3])/(a*o);if(Math.abs(s)<i)if(this.isRadial()){if(Math.abs(a-o)<i)return this._createGradient(e,r)}else return this._createGradient(e,r)}let a=t.current.getClippedPathBoundingBox(r,ru(e))||[0,0,0,0],o=Math.ceil(a[2]-a[0])||1,s=Math.ceil(a[3]-a[1])||1,c=t.cachedCanvases.getCanvas(`pattern`,o,s),l=c.context;l.clearRect(0,0,l.canvas.width,l.canvas.height),l.beginPath(),l.rect(0,0,l.canvas.width,l.canvas.height),l.translate(-a[0],-a[1]),n=Q.transform(n,[1,0,0,1,a[0],a[1]]),l.transform(...t.baseTransform),this.matrix&&l.transform(...this.matrix),Nd(l,this._bbox),l.fillStyle=this._createGradient(l),l.fill(),i=e.createPattern(c.canvas,`no-repeat`);let u=new DOMMatrix(n);i.setTransform(u)}else Nd(e,this._bbox),i=this._createGradient(e);return i}};function Id(e,t,n,r,i,a,o,s){let c=t.coords,l=t.colors,u=e.data,d=e.width*4,f;c[n+1]>c[r+1]&&(f=n,n=r,r=f,f=a,a=o,o=f),c[r+1]>c[i+1]&&(f=r,r=i,i=f,f=o,o=s,s=f),c[n+1]>c[r+1]&&(f=n,n=r,r=f,f=a,a=o,o=f);let p=(c[n]+t.offsetX)*t.scaleX,m=(c[n+1]+t.offsetY)*t.scaleY,h=(c[r]+t.offsetX)*t.scaleX,g=(c[r+1]+t.offsetY)*t.scaleY,_=(c[i]+t.offsetX)*t.scaleX,v=(c[i+1]+t.offsetY)*t.scaleY;if(m>=v)return;let y=l[a],b=l[a+1],x=l[a+2],S=l[o],C=l[o+1],w=l[o+2],T=l[s],E=l[s+1],D=l[s+2],O=Math.round(m),k=Math.round(v),A,j,M,N,P,F,ee,I;for(let e=O;e<=k;e++){if(e<g){let t=e<m?0:(m-e)/(m-g);A=p-(p-h)*t,j=y-(y-S)*t,M=b-(b-C)*t,N=x-(x-w)*t}else{let t;t=e>v?1:g===v?0:(g-e)/(g-v),A=h-(h-_)*t,j=S-(S-T)*t,M=C-(C-E)*t,N=w-(w-D)*t}let t;t=e<m?0:e>v?1:(m-e)/(m-v),P=p-(p-_)*t,F=y-(y-T)*t,ee=b-(b-E)*t,I=x-(x-D)*t;let n=Math.round(Math.min(A,P)),r=Math.round(Math.max(A,P)),i=d*e+n*4;for(let e=n;e<=r;e++)t=(A-e)/(A-P),t<0?t=0:t>1&&(t=1),u[i++]=j-(j-F)*t|0,u[i++]=M-(M-ee)*t|0,u[i++]=N-(N-I)*t|0,u[i++]=255}}function Ld(e,t,n){let r=t.coords,i=t.colors,a,o;switch(t.type){case Zc.LATTICE:let s=t.verticesPerRow,c=Math.floor(r.length/s)-1,l=s-1;for(a=0;a<c;a++){let t=a*s;for(let a=0;a<l;a++,t++)Id(e,n,r[t],r[t+1],r[t+s],i[t],i[t+1],i[t+s]),Id(e,n,r[t+s+1],r[t+1],r[t+s],i[t+s+1],i[t+1],i[t+s])}break;case Zc.TRIANGLES:for(a=0,o=r.length;a<o;a+=3)Id(e,n,r[a],r[a+1],r[a+2],i[a],i[a+1],i[a+2]);break;default:throw Error(`illegal figure`)}}var Rd=class extends Pd{constructor(e){super(),this._coords=e[2],this._colors=e[3],this._figures=e[4],this._bounds=e[5],this._bbox=e[6],this._background=e[7],this.matrix=null}_createMeshCanvas(e,t,n){let r=1.1,i=3e3,a=Math.floor(this._bounds[0]),o=Math.floor(this._bounds[1]),s=Math.ceil(this._bounds[2])-a,c=Math.ceil(this._bounds[3])-o,l=Math.min(Math.ceil(Math.abs(s*e[0]*r)),i),u=Math.min(Math.ceil(Math.abs(c*e[1]*r)),i),d=s/l,f=c/u,p={coords:this._coords,colors:this._colors,offsetX:-a,offsetY:-o,scaleX:1/d,scaleY:1/f},m=l+4,h=u+4,g=n.getCanvas(`mesh`,m,h),_=g.context,v=_.createImageData(l,u);if(t){let e=v.data;for(let n=0,r=e.length;n<r;n+=4)e[n]=t[0],e[n+1]=t[1],e[n+2]=t[2],e[n+3]=255}for(let e of this._figures)Ld(v,e,p);return _.putImageData(v,2,2),{canvas:g.canvas,offsetX:a-2*d,offsetY:o-2*f,scaleX:d,scaleY:f}}isModifyingCurrentTransform(){return!0}getPattern(e,t,n,r){Nd(e,this._bbox);let i=new Float32Array(2);if(r===Md.SHADING)Q.singularValueDecompose2dScale(ru(e),i);else if(this.matrix){Q.singularValueDecompose2dScale(this.matrix,i);let[e,n]=i;Q.singularValueDecompose2dScale(t.baseTransform,i),i[0]*=e,i[1]*=n}else Q.singularValueDecompose2dScale(t.baseTransform,i);let a=this._createMeshCanvas(i,r===Md.SHADING?null:this._background,t.cachedCanvases);return r!==Md.SHADING&&(e.setTransform(...t.baseTransform),this.matrix&&e.transform(...this.matrix)),e.translate(a.offsetX,a.offsetY),e.scale(a.scaleX,a.scaleY),e.createPattern(a.canvas,`no-repeat`)}},zd=class extends Pd{getPattern(){return`hotpink`}};function Bd(e){switch(e[0]){case`RadialAxial`:return new Fd(e);case`Mesh`:return new Rd(e);case`Dummy`:return new zd}throw Error(`Unknown IR type: ${e[0]}`)}var Vd={COLORED:1,UNCOLORED:2},Hd=class e{static MAX_PATTERN_SIZE=3e3;constructor(e,t,n,r){this.color=e[1],this.operatorList=e[2],this.matrix=e[3],this.bbox=e[4],this.xstep=e[5],this.ystep=e[6],this.paintType=e[7],this.tilingType=e[8],this.ctx=t,this.canvasGraphicsFactory=n,this.baseTransform=r}createPatternCanvas(e,t){let{bbox:n,operatorList:r,paintType:i,tilingType:a,color:o,canvasGraphicsFactory:s}=this,{xstep:c,ystep:l}=this;c=Math.abs(c),l=Math.abs(l),ll(`TilingType: `+a);let u=n[0],d=n[1],f=n[2],p=n[3],m=f-u,h=p-d,g=new Float32Array(2);Q.singularValueDecompose2dScale(this.matrix,g);let[_,v]=g;Q.singularValueDecompose2dScale(this.baseTransform,g);let y=_*g[0],b=v*g[1],x=m,S=h,C=!1,w=!1,T=Math.ceil(c*y),E=Math.ceil(l*b),D=Math.ceil(m*y),O=Math.ceil(h*b);T>=D?x=c:C=!0,E>=O?S=l:w=!0;let k=this.getSizeAndScale(x,this.ctx.canvas.width,y),A=this.getSizeAndScale(S,this.ctx.canvas.height,b),j=e.cachedCanvases.getCanvas(`pattern`,k.size,A.size),M=j.context,N=s.createCanvasGraphics(M,t);if(N.groupLevel=e.groupLevel,this.setFillAndStrokeStyleToContext(N,i,o),M.translate(-k.scale*u,-A.scale*d),N.transform(0,k.scale,0,0,A.scale,0,0),M.save(),N.dependencyTracker?.save(),this.clipBbox(N,u,d,f,p),N.baseTransform=ru(N.ctx),N.executeOperatorList(r),N.endDrawing(),N.dependencyTracker?.restore(),M.restore(),C||w){let t=j.canvas;C&&(x=c),w&&(S=l);let n=this.getSizeAndScale(x,this.ctx.canvas.width,y),r=this.getSizeAndScale(S,this.ctx.canvas.height,b),i=n.size,a=r.size,o=e.cachedCanvases.getCanvas(`pattern-workaround`,i,a),s=o.context,f=C?Math.floor(m/c):0,p=w?Math.floor(h/l):0;for(let e=0;e<=f;e++)for(let n=0;n<=p;n++)s.drawImage(t,i*e,a*n,i,a,0,0,i,a);return{canvas:o.canvas,scaleX:n.scale,scaleY:r.scale,offsetX:u,offsetY:d}}return{canvas:j.canvas,scaleX:k.scale,scaleY:A.scale,offsetX:u,offsetY:d}}getSizeAndScale(t,n,r){let i=Math.max(e.MAX_PATTERN_SIZE,n),a=Math.ceil(t*r);return a>=i?a=i:r=a/t,{scale:r,size:a}}clipBbox(e,t,n,r,i){let a=r-t,o=i-n;e.ctx.rect(t,n,a,o),Q.axialAlignedBoundingBox([t,n,r,i],ru(e.ctx),e.current.minMax),e.clip(),e.endPath()}setFillAndStrokeStyleToContext(e,t,n){let r=e.ctx,i=e.current;switch(t){case Vd.COLORED:let{fillStyle:e,strokeStyle:a}=this.ctx;r.fillStyle=i.fillColor=e,r.strokeStyle=i.strokeColor=a;break;case Vd.UNCOLORED:r.fillStyle=r.strokeStyle=n,i.fillColor=i.strokeColor=n;break;default:throw new bl(`Unsupported paint type: ${t}`)}}isModifyingCurrentTransform(){return!1}getPattern(e,t,n,r,i){let a=n;r!==Md.SHADING&&(a=Q.transform(a,t.baseTransform),this.matrix&&(a=Q.transform(a,this.matrix)));let o=this.createPatternCanvas(t,i),s=new DOMMatrix(a);s=s.translate(o.offsetX,o.offsetY),s=s.scale(1/o.scaleX,1/o.scaleY);let c=e.createPattern(o.canvas,`repeat`);return c.setTransform(s),c}};function Ud({src:e,srcPos:t=0,dest:n,width:r,height:i,nonBlackColor:a=4294967295,inverseDecode:o=!1}){let s=Dl.isLittleEndian?4278190080:255,[c,l]=o?[a,s]:[s,a],u=r>>3,d=r&7,f=e.length;n=new Uint32Array(n.buffer);let p=0;for(let r=0;r<i;r++){for(let r=t+u;t<r;t++){let r=t<f?e[t]:255;n[p++]=r&128?l:c,n[p++]=r&64?l:c,n[p++]=r&32?l:c,n[p++]=r&16?l:c,n[p++]=r&8?l:c,n[p++]=r&4?l:c,n[p++]=r&2?l:c,n[p++]=r&1?l:c}if(d===0)continue;let r=t<f?e[t++]:255;for(let e=0;e<d;e++)n[p++]=r&1<<7-e?l:c}return{srcPos:t,destPos:p}}var Wd=16,Gd=100,Kd=15,qd=10,Jd=16,Yd=new DOMMatrix,Xd=new Float32Array(2),Zd=new Float32Array([1/0,1/0,-1/0,-1/0]);function Qd(e,t){if(e._removeMirroring)throw Error(`Context is already forwarding operations.`);e.__originalSave=e.save,e.__originalRestore=e.restore,e.__originalRotate=e.rotate,e.__originalScale=e.scale,e.__originalTranslate=e.translate,e.__originalTransform=e.transform,e.__originalSetTransform=e.setTransform,e.__originalResetTransform=e.resetTransform,e.__originalClip=e.clip,e.__originalMoveTo=e.moveTo,e.__originalLineTo=e.lineTo,e.__originalBezierCurveTo=e.bezierCurveTo,e.__originalRect=e.rect,e.__originalClosePath=e.closePath,e.__originalBeginPath=e.beginPath,e._removeMirroring=()=>{e.save=e.__originalSave,e.restore=e.__originalRestore,e.rotate=e.__originalRotate,e.scale=e.__originalScale,e.translate=e.__originalTranslate,e.transform=e.__originalTransform,e.setTransform=e.__originalSetTransform,e.resetTransform=e.__originalResetTransform,e.clip=e.__originalClip,e.moveTo=e.__originalMoveTo,e.lineTo=e.__originalLineTo,e.bezierCurveTo=e.__originalBezierCurveTo,e.rect=e.__originalRect,e.closePath=e.__originalClosePath,e.beginPath=e.__originalBeginPath,delete e._removeMirroring},e.save=function(){t.save(),this.__originalSave()},e.restore=function(){t.restore(),this.__originalRestore()},e.translate=function(e,n){t.translate(e,n),this.__originalTranslate(e,n)},e.scale=function(e,n){t.scale(e,n),this.__originalScale(e,n)},e.transform=function(e,n,r,i,a,o){t.transform(e,n,r,i,a,o),this.__originalTransform(e,n,r,i,a,o)},e.setTransform=function(e,n,r,i,a,o){t.setTransform(e,n,r,i,a,o),this.__originalSetTransform(e,n,r,i,a,o)},e.resetTransform=function(){t.resetTransform(),this.__originalResetTransform()},e.rotate=function(e){t.rotate(e),this.__originalRotate(e)},e.clip=function(e){t.clip(e),this.__originalClip(e)},e.moveTo=function(e,n){t.moveTo(e,n),this.__originalMoveTo(e,n)},e.lineTo=function(e,n){t.lineTo(e,n),this.__originalLineTo(e,n)},e.bezierCurveTo=function(e,n,r,i,a,o){t.bezierCurveTo(e,n,r,i,a,o),this.__originalBezierCurveTo(e,n,r,i,a,o)},e.rect=function(e,n,r,i){t.rect(e,n,r,i),this.__originalRect(e,n,r,i)},e.closePath=function(){t.closePath(),this.__originalClosePath()},e.beginPath=function(){t.beginPath(),this.__originalBeginPath()}}var $d=class{constructor(e){this.canvasFactory=e,this.cache=Object.create(null)}getCanvas(e,t,n){let r;return this.cache[e]===void 0?(r=this.canvasFactory.create(t,n),this.cache[e]=r):(r=this.cache[e],this.canvasFactory.reset(r,t,n)),r}delete(e){delete this.cache[e]}clear(){for(let e in this.cache){let t=this.cache[e];this.canvasFactory.destroy(t),delete this.cache[e]}}};function ef(e,t,n,r,i,a,o,s,c,l){let[u,d,f,p,m,h]=ru(e);if(d===0&&f===0){let g=o*u+m,_=Math.round(g),v=s*p+h,y=Math.round(v),b=(o+c)*u+m,x=Math.abs(Math.round(b)-_)||1,S=(s+l)*p+h,C=Math.abs(Math.round(S)-y)||1;return e.setTransform(Math.sign(u),0,0,Math.sign(p),_,y),e.drawImage(t,n,r,i,a,0,0,x,C),e.setTransform(u,d,f,p,m,h),[x,C]}if(u===0&&p===0){let g=s*f+m,_=Math.round(g),v=o*d+h,y=Math.round(v),b=(s+l)*f+m,x=Math.abs(Math.round(b)-_)||1,S=(o+c)*d+h,C=Math.abs(Math.round(S)-y)||1;return e.setTransform(0,Math.sign(d),Math.sign(f),0,_,y),e.drawImage(t,n,r,i,a,0,0,C,x),e.setTransform(u,d,f,p,m,h),[C,x]}e.drawImage(t,n,r,i,a,o,s,c,l);let g=Math.hypot(u,d),_=Math.hypot(f,p);return[g*c,_*l]}var tf=class{alphaIsShape=!1;fontSize=0;fontSizeScale=1;textMatrix=null;textMatrixScale=1;fontMatrix=Wc;leading=0;x=0;y=0;lineX=0;lineY=0;charSpacing=0;wordSpacing=0;textHScale=1;textRenderingMode=Qc.FILL;textRise=0;fillColor=`#000000`;strokeColor=`#000000`;patternFill=!1;patternStroke=!1;fillAlpha=1;strokeAlpha=1;lineWidth=1;activeSMask=null;transferMaps=`none`;constructor(e,t,n){n?.(this),this.clipBox=new Float32Array([0,0,e,t]),this.minMax=Zd.slice()}clone(){let e=Object.create(this);return e.clipBox=this.clipBox.slice(),e.minMax=this.minMax.slice(),e}getPathBoundingBox(e=Md.FILL,t=null){let n=this.minMax.slice();if(e===Md.STROKE){t||ul(`Stroke bounding box must include transform.`),Q.singularValueDecompose2dScale(t,Xd);let e=Xd[0]*this.lineWidth/2,r=Xd[1]*this.lineWidth/2;n[0]-=e,n[1]-=r,n[2]+=e,n[3]+=r}return n}updateClipFromPath(){let e=Q.intersect(this.clipBox,this.getPathBoundingBox());this.startNewPathAndClipBox(e||[0,0,0,0])}isEmptyClip(){return this.minMax[0]===1/0}startNewPathAndClipBox(e){this.clipBox.set(e,0),this.minMax.set(Zd,0)}getClippedPathBoundingBox(e=Md.FILL,t=null){return Q.intersect(this.clipBox,this.getPathBoundingBox(e,t))}};function nf(e,t){if(t instanceof ImageData){e.putImageData(t,0,0);return}let n=t.height,r=t.width,i=n%Jd,a=(n-i)/Jd,o=i===0?a:a+1,s=e.createImageData(r,Jd),c=0,l,u=t.data,d=s.data,f,p,m,h;if(t.kind===$c.GRAYSCALE_1BPP){let t=u.byteLength,n=new Uint32Array(d.buffer,0,d.byteLength>>2),h=n.length,g=r+7>>3,_=4294967295,v=Dl.isLittleEndian?4278190080:255;for(f=0;f<o;f++){for(m=f<a?Jd:i,l=0,p=0;p<m;p++){let e=t-c,i=0,a=e>g?r:e*8-7,o=a&-8,s=0,d=0;for(;i<o;i+=8)d=u[c++],n[l++]=d&128?_:v,n[l++]=d&64?_:v,n[l++]=d&32?_:v,n[l++]=d&16?_:v,n[l++]=d&8?_:v,n[l++]=d&4?_:v,n[l++]=d&2?_:v,n[l++]=d&1?_:v;for(;i<a;i++)s===0&&(d=u[c++],s=128),n[l++]=d&s?_:v,s>>=1}for(;l<h;)n[l++]=0;e.putImageData(s,0,f*Jd)}}else if(t.kind===$c.RGBA_32BPP){for(p=0,h=r*Jd*4,f=0;f<a;f++)d.set(u.subarray(c,c+h)),c+=h,e.putImageData(s,0,p),p+=Jd;f<o&&(h=r*i*4,d.set(u.subarray(c,c+h)),e.putImageData(s,0,p))}else if(t.kind===$c.RGB_24BPP)for(m=Jd,h=r*m,f=0;f<o;f++){for(f>=a&&(m=i,h=r*m),l=0,p=h;p--;)d[l++]=u[c++],d[l++]=u[c++],d[l++]=u[c++],d[l++]=255;e.putImageData(s,0,f*Jd)}else throw Error(`bad image kind: ${t.kind}`)}function rf(e,t){if(t.bitmap){e.drawImage(t.bitmap,0,0);return}let n=t.height,r=t.width,i=n%Jd,a=(n-i)/Jd,o=i===0?a:a+1,s=e.createImageData(r,Jd),c=0,l=t.data,u=s.data;for(let t=0;t<o;t++){let n=t<a?Jd:i;({srcPos:c}=Ud({src:l,srcPos:c,dest:u,width:r,height:n,nonBlackColor:0})),e.putImageData(s,0,t*Jd)}}function af(e,t){for(let n of[`strokeStyle`,`fillStyle`,`fillRule`,`globalAlpha`,`lineWidth`,`lineCap`,`lineJoin`,`miterLimit`,`globalCompositeOperation`,`font`,`filter`])e[n]!==void 0&&(t[n]=e[n]);e.setLineDash!==void 0&&(t.setLineDash(e.getLineDash()),t.lineDashOffset=e.lineDashOffset)}function of(e){e.strokeStyle=e.fillStyle=`#000000`,e.fillRule=`nonzero`,e.globalAlpha=1,e.lineWidth=1,e.lineCap=`butt`,e.lineJoin=`miter`,e.miterLimit=10,e.globalCompositeOperation=`source-over`,e.font=`10px sans-serif`,e.setLineDash!==void 0&&(e.setLineDash([]),e.lineDashOffset=0);let{filter:t}=e;t!==`none`&&t!==``&&(e.filter=`none`)}function sf(e,t){if(t)return!0;Q.singularValueDecompose2dScale(e,Xd);let n=Math.fround(ou.pixelRatio*Bl.PDF_TO_CSS_UNITS);return Xd[0]<=n&&Xd[1]<=n}var cf=[`butt`,`round`,`square`],lf=[`miter`,`round`,`bevel`],uf={},df={},ff=class e{constructor(e,t,n,r,i,{optionalContentConfig:a,markedContentStack:o=null},s,c,l){this.ctx=e,this.current=new tf(this.ctx.canvas.width,this.ctx.canvas.height),this.stateStack=[],this.pendingClip=null,this.pendingEOFill=!1,this.res=null,this.xobjs=null,this.commonObjs=t,this.objs=n,this.canvasFactory=r,this.filterFactory=i,this.groupStack=[],this.baseTransform=null,this.baseTransformStack=[],this.groupLevel=0,this.smaskStack=[],this.smaskCounter=0,this.tempSMask=null,this.suspendedCtx=null,this.contentVisible=!0,this.markedContentStack=o||[],this.optionalContentConfig=a,this.cachedCanvases=new $d(this.canvasFactory),this.cachedPatterns=new Map,this.annotationCanvasMap=s,this.viewportScale=1,this.outputScaleX=1,this.outputScaleY=1,this.pageColors=c,this._cachedScaleForStroking=[-1,0],this._cachedGetSinglePixelWidth=null,this._cachedBitmapsMap=new Map,this.dependencyTracker=l??null}getObject(e,t,n=null){return typeof t==`string`?(this.dependencyTracker?.recordNamedDependency(e,t),t.startsWith(`g_`)?this.commonObjs.get(t):this.objs.get(t)):n}beginDrawing({transform:e,viewport:t,transparency:n=!1,background:r=null}){let i=this.ctx.canvas.width,a=this.ctx.canvas.height,o=this.ctx.fillStyle;if(this.ctx.fillStyle=r||`#ffffff`,this.ctx.fillRect(0,0,i,a),this.ctx.fillStyle=o,n){let e=this.cachedCanvases.getCanvas(`transparent`,i,a);this.compositeCtx=this.ctx,this.transparentCanvas=e.canvas,this.ctx=e.context,this.ctx.save(),this.ctx.transform(...ru(this.compositeCtx))}this.ctx.save(),of(this.ctx),e&&(this.ctx.transform(...e),this.outputScaleX=e[0],this.outputScaleY=e[0]),this.ctx.transform(...t.transform),this.viewportScale=t.scale,this.baseTransform=ru(this.ctx)}executeOperatorList(e,t,n,r,i){let a=e.argsArray,o=e.fnArray,s=t||0,c=a.length;if(c===s)return s;let l=c-s>qd&&typeof n==`function`,u=l?Date.now()+Kd:0,d=0,f=this.commonObjs,p=this.objs,m,h;for(;;){if(r!==void 0&&s===r.nextBreakPoint)return r.breakIt(s,n),s;if(!i||i(s))if(m=o[s],h=a[s]??null,m!==rl.dependency)h===null?this[m](s):this[m](s,...h);else for(let e of h){this.dependencyTracker?.recordNamedData(e,s);let t=e.startsWith(`g_`)?f:p;if(!t.has(e))return t.get(e,n),s}if(s++,s===c)return s;if(l&&++d>qd){if(Date.now()>u)return n(),s;d=0}}}#e(){for(;this.stateStack.length||this.inSMaskMode;)this.restore();this.current.activeSMask=null,this.ctx.restore(),this.transparentCanvas&&=(this.ctx=this.compositeCtx,this.ctx.save(),this.ctx.setTransform(1,0,0,1,0,0),this.ctx.drawImage(this.transparentCanvas,0,0),this.ctx.restore(),null)}endDrawing(){this.#e(),this.cachedCanvases.clear(),this.cachedPatterns.clear();for(let e of this._cachedBitmapsMap.values()){for(let t of e.values())typeof HTMLCanvasElement<`u`&&t instanceof HTMLCanvasElement&&(t.width=t.height=0);e.clear()}this._cachedBitmapsMap.clear(),this.#t()}#t(){if(this.pageColors){let e=this.filterFactory.addHCMFilter(this.pageColors.foreground,this.pageColors.background);if(e!==`none`){let t=this.ctx.filter;this.ctx.filter=e,this.ctx.drawImage(this.ctx.canvas,0,0),this.ctx.filter=t}}}_scaleImage(e,t){let n=e.width??e.displayWidth,r=e.height??e.displayHeight,i=Math.max(Math.hypot(t[0],t[1]),1),a=Math.max(Math.hypot(t[2],t[3]),1),o=n,s=r,c=`prescale1`,l,u;for(;i>2&&o>1||a>2&&s>1;){let t=o,n=s;i>2&&o>1&&(t=o>=16384?Math.floor(o/2)-1||1:Math.ceil(o/2),i/=o/t),a>2&&s>1&&(n=s>=16384?Math.floor(s/2)-1||1:Math.ceil(s)/2,a/=s/n),l=this.cachedCanvases.getCanvas(c,t,n),u=l.context,u.clearRect(0,0,t,n),u.drawImage(e,0,0,o,s,0,0,t,n),e=l.canvas,o=t,s=n,c=c===`prescale1`?`prescale2`:`prescale1`}return{img:e,paintWidth:o,paintHeight:s}}_createMaskCanvas(e,t){let n=this.ctx,{width:r,height:i}=t,a=this.current.fillColor,o=this.current.patternFill,s=ru(n),c,l,u,d;if((t.bitmap||t.data)&&t.count>1){let n=t.bitmap||t.data.buffer;l=JSON.stringify(o?s:[s.slice(0,4),a]),c=this._cachedBitmapsMap.get(n),c||(c=new Map,this._cachedBitmapsMap.set(n,c));let r=c.get(l);if(r&&!o){let t=Math.round(Math.min(s[0],s[2])+s[4]),n=Math.round(Math.min(s[1],s[3])+s[5]);return this.dependencyTracker?.recordDependencies(e,jd.transformAndFill),{canvas:r,offsetX:t,offsetY:n}}u=r}u||(d=this.cachedCanvases.getCanvas(`maskCanvas`,r,i),rf(d.context,t));let f=Q.transform(s,[1/r,0,0,-1/i,0,0]);f=Q.transform(f,[1,0,0,1,0,-i]);let p=Zd.slice();Q.axialAlignedBoundingBox([0,0,r,i],f,p);let[m,h,g,_]=p,v=Math.round(g-m)||1,y=Math.round(_-h)||1,b=this.cachedCanvases.getCanvas(`fillCanvas`,v,y),x=b.context,S=m,C=h;x.translate(-S,-C),x.transform(...f),u||(u=this._scaleImage(d.canvas,iu(x)),u=u.img,c&&o&&c.set(l,u)),x.imageSmoothingEnabled=sf(ru(x),t.interpolate),ef(x,u,0,0,u.width,u.height,0,0,r,i),x.globalCompositeOperation=`source-in`;let w=Q.transform(iu(x),[1,0,0,1,-S,-C]);return x.fillStyle=o?a.getPattern(n,this,w,Md.FILL,e):a,x.fillRect(0,0,r,i),c&&!o&&(this.cachedCanvases.delete(`fillCanvas`),c.set(l,b.canvas)),this.dependencyTracker?.recordDependencies(e,jd.transformAndFill),{canvas:b.canvas,offsetX:Math.round(S),offsetY:Math.round(C)}}setLineWidth(e,t){this.dependencyTracker?.recordSimpleData(`lineWidth`,e),t!==this.current.lineWidth&&(this._cachedScaleForStroking[0]=-1),this.current.lineWidth=t,this.ctx.lineWidth=t}setLineCap(e,t){this.dependencyTracker?.recordSimpleData(`lineCap`,e),this.ctx.lineCap=cf[t]}setLineJoin(e,t){this.dependencyTracker?.recordSimpleData(`lineJoin`,e),this.ctx.lineJoin=lf[t]}setMiterLimit(e,t){this.dependencyTracker?.recordSimpleData(`miterLimit`,e),this.ctx.miterLimit=t}setDash(e,t,n){this.dependencyTracker?.recordSimpleData(`dash`,e);let r=this.ctx;r.setLineDash!==void 0&&(r.setLineDash(t),r.lineDashOffset=n)}setRenderingIntent(e,t){}setFlatness(e,t){}setGState(e,t){for(let[n,r]of t)switch(n){case`LW`:this.setLineWidth(e,r);break;case`LC`:this.setLineCap(e,r);break;case`LJ`:this.setLineJoin(e,r);break;case`ML`:this.setMiterLimit(e,r);break;case`D`:this.setDash(e,r[0],r[1]);break;case`RI`:this.setRenderingIntent(e,r);break;case`FL`:this.setFlatness(e,r);break;case`Font`:this.setFont(e,r[0],r[1]);break;case`CA`:this.dependencyTracker?.recordSimpleData(`strokeAlpha`,e),this.current.strokeAlpha=r;break;case`ca`:this.dependencyTracker?.recordSimpleData(`fillAlpha`,e),this.ctx.globalAlpha=this.current.fillAlpha=r;break;case`BM`:this.dependencyTracker?.recordSimpleData(`globalCompositeOperation`,e),this.ctx.globalCompositeOperation=r;break;case`SMask`:this.dependencyTracker?.recordSimpleData(`SMask`,e),this.current.activeSMask=r?this.tempSMask:null,this.tempSMask=null,this.checkSMaskState();break;case`TR`:this.dependencyTracker?.recordSimpleData(`filter`,e),this.ctx.filter=this.current.transferMaps=this.filterFactory.addFilter(r);break}}get inSMaskMode(){return!!this.suspendedCtx}checkSMaskState(){let e=this.inSMaskMode;this.current.activeSMask&&!e?this.beginSMaskMode():!this.current.activeSMask&&e&&this.endSMaskMode()}beginSMaskMode(e){if(this.inSMaskMode)throw Error(`beginSMaskMode called while already in smask mode`);let t=this.ctx.canvas.width,n=this.ctx.canvas.height,r=`smaskGroupAt`+this.groupLevel,i=this.cachedCanvases.getCanvas(r,t,n);this.suspendedCtx=this.ctx;let a=this.ctx=i.context;a.setTransform(this.suspendedCtx.getTransform()),af(this.suspendedCtx,a),Qd(a,this.suspendedCtx),this.setGState(e,[[`BM`,`source-over`]])}endSMaskMode(){if(!this.inSMaskMode)throw Error(`endSMaskMode called while not in smask mode`);this.ctx._removeMirroring(),af(this.ctx,this.suspendedCtx),this.ctx=this.suspendedCtx,this.suspendedCtx=null}compose(e){if(!this.current.activeSMask)return;e?(e[0]=Math.floor(e[0]),e[1]=Math.floor(e[1]),e[2]=Math.ceil(e[2]),e[3]=Math.ceil(e[3])):e=[0,0,this.ctx.canvas.width,this.ctx.canvas.height];let t=this.current.activeSMask,n=this.suspendedCtx;this.composeSMask(n,t,this.ctx,e),this.ctx.save(),this.ctx.setTransform(1,0,0,1,0,0),this.ctx.clearRect(0,0,this.ctx.canvas.width,this.ctx.canvas.height),this.ctx.restore()}composeSMask(e,t,n,r){let i=r[0],a=r[1],o=r[2]-i,s=r[3]-a;o===0||s===0||(this.genericComposeSMask(t.context,n,o,s,t.subtype,t.backdrop,t.transferMap,i,a,t.offsetX,t.offsetY),e.save(),e.globalAlpha=1,e.globalCompositeOperation=`source-over`,e.setTransform(1,0,0,1,0,0),e.drawImage(n.canvas,0,0),e.restore())}genericComposeSMask(e,t,n,r,i,a,o,s,c,l,u){let d=e.canvas,f=s-l,p=c-u;if(a)if(f<0||p<0||f+n>d.width||p+r>d.height){let e=this.cachedCanvases.getCanvas(`maskExtension`,n,r),t=e.context;t.drawImage(d,-f,-p),t.globalCompositeOperation=`destination-atop`,t.fillStyle=a,t.fillRect(0,0,n,r),t.globalCompositeOperation=`source-over`,d=e.canvas,f=p=0}else{e.save(),e.globalAlpha=1,e.setTransform(1,0,0,1,0,0);let t=new Path2D;t.rect(f,p,n,r),e.clip(t),e.globalCompositeOperation=`destination-atop`,e.fillStyle=a,e.fillRect(f,p,n,r),e.restore()}t.save(),t.globalAlpha=1,t.setTransform(1,0,0,1,0,0),i===`Alpha`&&o?t.filter=this.filterFactory.addAlphaFilter(o):i===`Luminosity`&&(t.filter=this.filterFactory.addLuminosityFilter(o));let m=new Path2D;m.rect(s,c,n,r),t.clip(m),t.globalCompositeOperation=`destination-in`,t.drawImage(d,f,p,n,r,s,c,n,r),t.restore()}save(e){this.inSMaskMode&&af(this.ctx,this.suspendedCtx),this.ctx.save();let t=this.current;this.stateStack.push(t),this.current=t.clone(),this.dependencyTracker?.save(e)}restore(e){if(this.dependencyTracker?.restore(e),this.stateStack.length===0){this.inSMaskMode&&this.endSMaskMode();return}this.current=this.stateStack.pop(),this.ctx.restore(),this.inSMaskMode&&af(this.suspendedCtx,this.ctx),this.checkSMaskState(),this.pendingClip=null,this._cachedScaleForStroking[0]=-1,this._cachedGetSinglePixelWidth=null}transform(e,t,n,r,i,a,o){this.dependencyTracker?.recordIncrementalData(`transform`,e),this.ctx.transform(t,n,r,i,a,o),this._cachedScaleForStroking[0]=-1,this._cachedGetSinglePixelWidth=null}constructPath(e,t,n,r){let[i]=n;if(!r){i||=n[0]=new Path2D,this[t](e,i);return}if(this.dependencyTracker!==null){let n=t===rl.stroke?this.current.lineWidth/2:0;this.dependencyTracker.resetBBox(e).recordBBox(e,this.ctx,r[0]-n,r[2]+n,r[1]-n,r[3]+n).recordDependencies(e,[`transform`])}i instanceof Path2D||(i=n[0]=vu(i)),Q.axialAlignedBoundingBox(r,ru(this.ctx),this.current.minMax),this[t](e,i),this._pathStartIdx=e}closePath(e){this.ctx.closePath()}stroke(e,t,n=!0){let r=this.ctx,i=this.current.strokeColor;if(r.globalAlpha=this.current.strokeAlpha,this.contentVisible)if(typeof i==`object`&&i?.getPattern){let n=i.isModifyingCurrentTransform()?r.getTransform():null;if(r.save(),r.strokeStyle=i.getPattern(r,this,iu(r),Md.STROKE,e),n){let e=new Path2D;e.addPath(t,r.getTransform().invertSelf().multiplySelf(n)),t=e}this.rescaleAndStroke(t,!1),r.restore()}else this.rescaleAndStroke(t,!0);this.dependencyTracker?.recordDependencies(e,jd.stroke),n&&this.consumePath(e,t,this.current.getClippedPathBoundingBox(Md.STROKE,ru(this.ctx))),r.globalAlpha=this.current.fillAlpha}closeStroke(e,t){this.stroke(e,t)}fill(e,t,n=!0){let r=this.ctx,i=this.current.fillColor,a=this.current.patternFill,o=!1;if(a){let n=i.isModifyingCurrentTransform()?r.getTransform():null;if(this.dependencyTracker?.save(e),r.save(),r.fillStyle=i.getPattern(r,this,iu(r),Md.FILL,e),n){let e=new Path2D;e.addPath(t,r.getTransform().invertSelf().multiplySelf(n)),t=e}o=!0}let s=this.current.getClippedPathBoundingBox();this.contentVisible&&s!==null&&(this.pendingEOFill?(r.fill(t,`evenodd`),this.pendingEOFill=!1):r.fill(t)),this.dependencyTracker?.recordDependencies(e,jd.fill),o&&(r.restore(),this.dependencyTracker?.restore(e)),n&&this.consumePath(e,t,s)}eoFill(e,t){this.pendingEOFill=!0,this.fill(e,t)}fillStroke(e,t){this.fill(e,t,!1),this.stroke(e,t,!1),this.consumePath(e,t)}eoFillStroke(e,t){this.pendingEOFill=!0,this.fillStroke(e,t)}closeFillStroke(e,t){this.fillStroke(e,t)}closeEOFillStroke(e,t){this.pendingEOFill=!0,this.fillStroke(e,t)}endPath(e,t){this.consumePath(e,t)}rawFillPath(e,t){this.ctx.fill(t),this.dependencyTracker?.recordDependencies(e,jd.rawFillPath).recordOperation(e)}clip(e){this.dependencyTracker?.recordFutureForcedDependency(`clipMode`,e),this.pendingClip=uf}eoClip(e){this.dependencyTracker?.recordFutureForcedDependency(`clipMode`,e),this.pendingClip=df}beginText(e){this.current.textMatrix=null,this.current.textMatrixScale=1,this.current.x=this.current.lineX=0,this.current.y=this.current.lineY=0,this.dependencyTracker?.recordOpenMarker(e).resetIncrementalData(`sameLineText`).resetIncrementalData(`moveText`,e)}endText(e){let t=this.pendingTextPaths,n=this.ctx;if(this.dependencyTracker){let{dependencyTracker:n}=this;t!==void 0&&n.recordFutureForcedDependency(`textClip`,n.getOpenMarker()).recordFutureForcedDependency(`textClip`,e),n.recordCloseMarker(e)}if(t!==void 0){let e=new Path2D,r=n.getTransform().invertSelf();for(let{transform:n,x:i,y:a,fontSize:o,path:s}of t)s&&e.addPath(s,new DOMMatrix(n).preMultiplySelf(r).translate(i,a).scale(o,-o));n.clip(e)}delete this.pendingTextPaths}setCharSpacing(e,t){this.dependencyTracker?.recordSimpleData(`charSpacing`,e),this.current.charSpacing=t}setWordSpacing(e,t){this.dependencyTracker?.recordSimpleData(`wordSpacing`,e),this.current.wordSpacing=t}setHScale(e,t){this.dependencyTracker?.recordSimpleData(`hScale`,e),this.current.textHScale=t/100}setLeading(e,t){this.dependencyTracker?.recordSimpleData(`leading`,e),this.current.leading=-t}setFont(e,t,n){this.dependencyTracker?.recordSimpleData(`font`,e).recordSimpleDataFromNamed(`fontObj`,t,e);let r=this.commonObjs.get(t),i=this.current;if(!r)throw Error(`Can't find font for ${t}`);if(i.fontMatrix=r.fontMatrix||Wc,(i.fontMatrix[0]===0||i.fontMatrix[3]===0)&&X(`Invalid font matrix for font `+t),n<0?(n=-n,i.fontDirection=-1):i.fontDirection=1,this.current.font=r,this.current.fontSize=n,r.isType3Font)return;let a=r.loadedName||`sans-serif`,o=r.systemFontInfo?.css||`"${a}", ${r.fallbackName}`,s=`normal`;r.black?s=`900`:r.bold&&(s=`bold`);let c=r.italic?`italic`:`normal`,l=n;n<Wd?l=Wd:n>Gd&&(l=Gd),this.current.fontSizeScale=n/l,this.ctx.font=`${c} ${s} ${l}px ${o}`}setTextRenderingMode(e,t){this.dependencyTracker?.recordSimpleData(`textRenderingMode`,e),this.current.textRenderingMode=t}setTextRise(e,t){this.dependencyTracker?.recordSimpleData(`textRise`,e),this.current.textRise=t}moveText(e,t,n){this.dependencyTracker?.resetIncrementalData(`sameLineText`).recordIncrementalData(`moveText`,e),this.current.x=this.current.lineX+=t,this.current.y=this.current.lineY+=n}setLeadingMoveText(e,t,n){this.setLeading(e,-n),this.moveText(e,t,n)}setTextMatrix(e,t){this.dependencyTracker?.resetIncrementalData(`sameLineText`).recordSimpleData(`textMatrix`,e);let{current:n}=this;n.textMatrix=t,n.textMatrixScale=Math.hypot(t[0],t[1]),n.x=n.lineX=0,n.y=n.lineY=0}nextLine(e){this.moveText(e,0,this.current.leading),this.dependencyTracker?.recordIncrementalData(`moveText`,this.dependencyTracker.getSimpleIndex(`leading`)??e)}#n(e,t,n){let r=new Path2D;return r.addPath(e,new DOMMatrix(n).invertSelf().multiplySelf(t)),r}paintChar(e,t,n,r,i,a){let o=this.ctx,s=this.current,c=s.font,l=s.textRenderingMode,u=s.fontSize/s.fontSizeScale,d=l&Qc.FILL_STROKE_MASK,f=!!(l&Qc.ADD_TO_PATH_FLAG),p=s.patternFill&&!c.missingFile,m=s.patternStroke&&!c.missingFile,h;if((c.disableFontFace||f||p||m)&&!c.missingFile&&(h=c.getPathGenerator(this.commonObjs,t)),h&&(c.disableFontFace||p||m)){o.save(),o.translate(n,r),o.scale(u,-u),this.dependencyTracker?.recordCharacterBBox(e,o,c);let t;if(d===Qc.FILL||d===Qc.FILL_STROKE)if(i){t=o.getTransform(),o.setTransform(...i);let e=this.#n(h,t,i);o.fill(e)}else o.fill(h);if(d===Qc.STROKE||d===Qc.FILL_STROKE)if(a){t||=o.getTransform(),o.setTransform(...a);let{a:e,b:n,c:r,d:i}=t,s=Q.inverseTransform(a),c=Q.transform([e,n,r,i,0,0],s);Q.singularValueDecompose2dScale(c,Xd),o.lineWidth*=Math.max(Xd[0],Xd[1])/u,o.stroke(this.#n(h,t,a))}else o.lineWidth/=u,o.stroke(h);o.restore()}else (d===Qc.FILL||d===Qc.FILL_STROKE)&&(o.fillText(t,n,r),this.dependencyTracker?.recordCharacterBBox(e,o,c,u,n,r,()=>o.measureText(t))),(d===Qc.STROKE||d===Qc.FILL_STROKE)&&(this.dependencyTracker&&this.dependencyTracker?.recordCharacterBBox(e,o,c,u,n,r,()=>o.measureText(t)).recordDependencies(e,jd.stroke),o.strokeText(t,n,r));f&&((this.pendingTextPaths||=[]).push({transform:ru(o),x:n,y:r,fontSize:u,path:h}),this.dependencyTracker?.recordCharacterBBox(e,o,c,u,n,r))}get isFontSubpixelAAEnabled(){let{context:e}=this.cachedCanvases.getCanvas(`isFontSubpixelAAEnabled`,10,10);e.scale(1.5,1),e.fillText(`I`,0,10);let t=e.getImageData(0,0,10,10).data,n=!1;for(let e=3;e<t.length;e+=4)if(t[e]>0&&t[e]<255){n=!0;break}return Z(this,`isFontSubpixelAAEnabled`,n)}showText(e,t){this.dependencyTracker&&(this.dependencyTracker.recordDependencies(e,jd.showText).resetBBox(e),this.current.textRenderingMode&Qc.ADD_TO_PATH_FLAG&&this.dependencyTracker.recordFutureForcedDependency(`textClip`,e).inheritPendingDependenciesAsFutureForcedDependencies());let n=this.current,r=n.font;if(r.isType3Font){this.showType3Text(e,t),this.dependencyTracker?.recordShowTextOperation(e);return}let i=n.fontSize;if(i===0){this.dependencyTracker?.recordOperation(e);return}let a=this.ctx,o=n.fontSizeScale,s=n.charSpacing,c=n.wordSpacing,l=n.fontDirection,u=n.textHScale*l,d=t.length,f=r.vertical,p=f?1:-1,m=r.defaultVMetrics,h=i*n.fontMatrix[0],g=n.textRenderingMode===Qc.FILL&&!r.disableFontFace&&!n.patternFill;a.save(),n.textMatrix&&a.transform(...n.textMatrix),a.translate(n.x,n.y+n.textRise),l>0?a.scale(u,-1):a.scale(u,1);let _,v,y=n.textRenderingMode&Qc.FILL_STROKE_MASK,b=y===Qc.FILL||y===Qc.FILL_STROKE,x=y===Qc.STROKE||y===Qc.FILL_STROKE;if(b&&n.patternFill){a.save();let t=n.fillColor.getPattern(a,this,iu(a),Md.FILL,e);_=ru(a),a.restore(),a.fillStyle=t}if(x&&n.patternStroke){a.save();let t=n.strokeColor.getPattern(a,this,iu(a),Md.STROKE,e);v=ru(a),a.restore(),a.strokeStyle=t}let S=n.lineWidth,C=n.textMatrixScale;if(C===0||S===0?x&&(S=this.getSinglePixelWidth()):S/=C,o!==1&&(a.scale(o,o),S/=o),a.lineWidth=S,r.isInvalidPDFjsFont){let r=[],i=0;for(let e of t)r.push(e.unicode),i+=e.width;let o=r.join(``);if(a.fillText(o,0,0),this.dependencyTracker!==null){let t=a.measureText(o);this.dependencyTracker.recordBBox(e,this.ctx,-t.actualBoundingBoxLeft,t.actualBoundingBoxRight,-t.actualBoundingBoxAscent,t.actualBoundingBoxDescent).recordShowTextOperation(e)}n.x+=i*h*u,a.restore(),this.compose();return}let w=0,T;for(T=0;T<d;++T){let n=t[T];if(typeof n==`number`){w+=p*n*i/1e3;continue}let u=!1,d=(n.isSpace?c:0)+s,y=n.fontChar,b=n.accent,x,S,C=n.width;if(f){let e=n.vmetric||m,t=-(n.vmetric?e[1]:C*.5)*h,r=e[2]*h;C=e?-e[0]:C,x=t/o,S=(w+r)/o}else x=w/o,S=0;let E;if(r.remeasure&&C>0){E=a.measureText(y);let e=E.width*1e3/i*o;if(C<e&&this.isFontSubpixelAAEnabled){let t=C/e;u=!0,a.save(),a.scale(t,1),x/=t}else C!==e&&(x+=(C-e)/2e3*i/o)}if(this.contentVisible&&(n.isInFont||r.missingFile)){if(g&&!b)a.fillText(y,x,S),this.dependencyTracker?.recordCharacterBBox(e,a,E?{bbox:null}:r,i/o,x,S,()=>E??a.measureText(y));else if(this.paintChar(e,y,x,S,_,v),b){let t=x+i*b.offset.x/o,n=S-i*b.offset.y/o;this.paintChar(e,b.fontChar,t,n,_,v)}}let D=f?C*h-d*l:C*h+d*l;w+=D,u&&a.restore()}f?n.y-=w:n.x+=w*u,a.restore(),this.compose(),this.dependencyTracker?.recordShowTextOperation(e)}showType3Text(e,t){let n=this.ctx,r=this.current,i=r.font,a=r.fontSize,o=r.fontDirection,s=i.vertical?1:-1,c=r.charSpacing,l=r.wordSpacing,u=r.textHScale*o,d=r.fontMatrix||Wc,f=t.length,p=r.textRenderingMode===Qc.INVISIBLE,m,h,g,_;if(p||a===0)return;this._cachedScaleForStroking[0]=-1,this._cachedGetSinglePixelWidth=null,n.save(),r.textMatrix&&n.transform(...r.textMatrix),n.translate(r.x,r.y+r.textRise),n.scale(u,o);let v=this.dependencyTracker;for(this.dependencyTracker=v?new Ad(v,e):null,m=0;m<f;++m){if(h=t[m],typeof h==`number`){_=s*h*a/1e3,this.ctx.translate(_,0),r.x+=_*u;continue}let e=(h.isSpace?l:0)+c,o=i.charProcOperatorList[h.operatorListId];o?this.contentVisible&&(this.save(),n.scale(a,a),n.transform(...d),this.executeOperatorList(o),this.restore()):X(`Type3 character "${h.operatorListId}" is not available.`);let f=[h.width,0];Q.applyTransform(f,d),g=f[0]*a+e,n.translate(g,0),r.x+=g*u}n.restore(),v&&(this.dependencyTracker=v)}setCharWidth(e,t,n){}setCharWidthAndBounds(e,t,n,r,i,a,o){let s=new Path2D;s.rect(r,i,a-r,o-i),this.ctx.clip(s),this.dependencyTracker?.recordBBox(e,this.ctx,r,a,i,o).recordClipBox(e,this.ctx,r,a,i,o),this.endPath(e)}getColorN_Pattern(t,n){let r;if(n[0]===`TilingPattern`){let t=this.baseTransform||ru(this.ctx);r=new Hd(n,this.ctx,{createCanvasGraphics:(t,n)=>new e(t,this.commonObjs,this.objs,this.canvasFactory,this.filterFactory,{optionalContentConfig:this.optionalContentConfig,markedContentStack:this.markedContentStack},void 0,void 0,this.dependencyTracker?new Ad(this.dependencyTracker,n,!0):null)},t)}else r=this._getPattern(t,n[1],n[2]);return r}setStrokeColorN(e,...t){this.dependencyTracker?.recordSimpleData(`strokeColor`,e),this.current.strokeColor=this.getColorN_Pattern(e,t),this.current.patternStroke=!0}setFillColorN(e,...t){this.dependencyTracker?.recordSimpleData(`fillColor`,e),this.current.fillColor=this.getColorN_Pattern(e,t),this.current.patternFill=!0}setStrokeRGBColor(e,t){this.dependencyTracker?.recordSimpleData(`strokeColor`,e),this.ctx.strokeStyle=this.current.strokeColor=t,this.current.patternStroke=!1}setStrokeTransparent(e){this.dependencyTracker?.recordSimpleData(`strokeColor`,e),this.ctx.strokeStyle=this.current.strokeColor=`transparent`,this.current.patternStroke=!1}setFillRGBColor(e,t){this.dependencyTracker?.recordSimpleData(`fillColor`,e),this.ctx.fillStyle=this.current.fillColor=t,this.current.patternFill=!1}setFillTransparent(e){this.dependencyTracker?.recordSimpleData(`fillColor`,e),this.ctx.fillStyle=this.current.fillColor=`transparent`,this.current.patternFill=!1}_getPattern(e,t,n=null){let r;return this.cachedPatterns.has(t)?r=this.cachedPatterns.get(t):(r=Bd(this.getObject(e,t)),this.cachedPatterns.set(t,r)),n&&(r.matrix=n),r}shadingFill(e,t){if(!this.contentVisible)return;let n=this.ctx;this.save(e),n.fillStyle=this._getPattern(e,t).getPattern(n,this,iu(n),Md.SHADING,e);let r=iu(n);if(r){let{width:e,height:t}=n.canvas,i=Zd.slice();Q.axialAlignedBoundingBox([0,0,e,t],r,i);let[a,o,s,c]=i;this.ctx.fillRect(a,o,s-a,c-o)}else this.ctx.fillRect(-1e10,-1e10,2e10,2e10);this.dependencyTracker?.resetBBox(e).recordFullPageBBox(e).recordDependencies(e,jd.transform).recordDependencies(e,jd.fill).recordOperation(e),this.compose(this.current.getClippedPathBoundingBox()),this.restore(e)}beginInlineImage(){ul(`Should not call beginInlineImage`)}beginImageData(){ul(`Should not call beginImageData`)}paintFormXObjectBegin(e,t,n){if(this.contentVisible&&(this.save(e),this.baseTransformStack.push(this.baseTransform),t&&this.transform(e,...t),this.baseTransform=ru(this.ctx),n)){Q.axialAlignedBoundingBox(n,this.baseTransform,this.current.minMax);let[t,r,i,a]=n,o=new Path2D;o.rect(t,r,i-t,a-r),this.ctx.clip(o),this.dependencyTracker?.recordClipBox(e,this.ctx,t,i,r,a),this.endPath(e)}}paintFormXObjectEnd(e){this.contentVisible&&(this.restore(e),this.baseTransform=this.baseTransformStack.pop())}beginGroup(e,t){if(!this.contentVisible)return;this.save(e),this.inSMaskMode&&(this.endSMaskMode(),this.current.activeSMask=null);let n=this.ctx;t.isolated||ll(`TODO: Support non-isolated groups.`),t.knockout&&X(`Knockout groups not supported.`);let r=ru(n);if(t.matrix&&n.transform(...t.matrix),!t.bbox)throw Error(`Bounding box is required.`);let i=Zd.slice();Q.axialAlignedBoundingBox(t.bbox,ru(n),i);let a=[0,0,n.canvas.width,n.canvas.height];i=Q.intersect(i,a)||[0,0,0,0];let o=Math.floor(i[0]),s=Math.floor(i[1]),c=Math.max(Math.ceil(i[2])-o,1),l=Math.max(Math.ceil(i[3])-s,1);this.current.startNewPathAndClipBox([0,0,c,l]);let u=`groupAt`+this.groupLevel;t.smask&&(u+=`_smask_`+ this.smaskCounter++%2);let d=this.cachedCanvases.getCanvas(u,c,l),f=d.context;f.translate(-o,-s),f.transform(...r);let p=new Path2D,[m,h,g,_]=t.bbox;if(p.rect(m,h,g-m,_-h),t.matrix){let e=new Path2D;e.addPath(p,new DOMMatrix(t.matrix)),p=e}f.clip(p),t.smask&&this.smaskStack.push({canvas:d.canvas,context:f,offsetX:o,offsetY:s,subtype:t.smask.subtype,backdrop:t.smask.backdrop,transferMap:t.smask.transferMap||null,startTransformInverse:null}),(!t.smask||this.dependencyTracker)&&(n.setTransform(1,0,0,1,0,0),n.translate(o,s),n.save()),af(n,f),this.ctx=f,this.dependencyTracker?.inheritSimpleDataAsFutureForcedDependencies([`fillAlpha`,`strokeAlpha`,`globalCompositeOperation`]).pushBaseTransform(n),this.setGState(e,[[`BM`,`source-over`],[`ca`,1],[`CA`,1]]),this.groupStack.push(n),this.groupLevel++}endGroup(e,t){if(!this.contentVisible)return;this.groupLevel--;let n=this.ctx;if(this.ctx=this.groupStack.pop(),this.ctx.imageSmoothingEnabled=!1,this.dependencyTracker?.popBaseTransform(),t.smask)this.tempSMask=this.smaskStack.pop(),this.restore(e),this.dependencyTracker&&this.ctx.restore();else{this.ctx.restore();let t=ru(this.ctx);this.restore(e),this.ctx.save(),this.ctx.setTransform(...t);let r=Zd.slice();Q.axialAlignedBoundingBox([0,0,n.canvas.width,n.canvas.height],t,r),this.ctx.drawImage(n.canvas,0,0),this.ctx.restore(),this.compose(r)}}beginAnnotation(e,t,n,r,i,a){if(this.#e(),of(this.ctx),this.ctx.save(),this.save(e),this.baseTransform&&this.ctx.setTransform(...this.baseTransform),n){let i=n[2]-n[0],o=n[3]-n[1];if(a&&this.annotationCanvasMap){r=r.slice(),r[4]-=n[0],r[5]-=n[1],n=n.slice(),n[0]=n[1]=0,n[2]=i,n[3]=o,Q.singularValueDecompose2dScale(ru(this.ctx),Xd);let{viewportScale:e}=this,a=Math.ceil(i*this.outputScaleX*e),s=Math.ceil(o*this.outputScaleY*e);this.annotationCanvas=this.canvasFactory.create(a,s);let{canvas:c,context:l}=this.annotationCanvas;this.annotationCanvasMap.set(t,c),this.annotationCanvas.savedCtx=this.ctx,this.ctx=l,this.ctx.save(),this.ctx.setTransform(Xd[0],0,0,-Xd[1],0,o*Xd[1]),of(this.ctx)}else{of(this.ctx),this.endPath(e);let t=new Path2D;t.rect(n[0],n[1],i,o),this.ctx.clip(t)}}this.current=new tf(this.ctx.canvas.width,this.ctx.canvas.height),this.transform(e,...r),this.transform(e,...i)}endAnnotation(e){this.annotationCanvas&&(this.ctx.restore(),this.#t(),this.ctx=this.annotationCanvas.savedCtx,delete this.annotationCanvas.savedCtx,delete this.annotationCanvas)}paintImageMaskXObject(e,t){if(!this.contentVisible)return;let n=t.count;t=this.getObject(e,t.data,t),t.count=n;let r=this.ctx,i=this._createMaskCanvas(e,t),a=i.canvas;r.save(),r.setTransform(1,0,0,1,0,0),r.drawImage(a,i.offsetX,i.offsetY),this.dependencyTracker?.resetBBox(e).recordBBox(e,this.ctx,i.offsetX,i.offsetX+a.width,i.offsetY,i.offsetY+a.height).recordOperation(e),r.restore(),this.compose()}paintImageMaskXObjectRepeat(e,t,n,r=0,i=0,a,o){if(!this.contentVisible)return;t=this.getObject(e,t.data,t);let s=this.ctx;s.save();let c=ru(s);s.transform(n,r,i,a,0,0);let l=this._createMaskCanvas(e,t);s.setTransform(1,0,0,1,l.offsetX-c[4],l.offsetY-c[5]),this.dependencyTracker?.resetBBox(e);for(let t=0,u=o.length;t<u;t+=2){let u=Q.transform(c,[n,r,i,a,o[t],o[t+1]]);s.drawImage(l.canvas,u[4],u[5]),this.dependencyTracker?.recordBBox(e,this.ctx,u[4],u[4]+l.canvas.width,u[5],u[5]+l.canvas.height)}s.restore(),this.compose(),this.dependencyTracker?.recordOperation(e)}paintImageMaskXObjectGroup(e,t){if(!this.contentVisible)return;let n=this.ctx,r=this.current.fillColor,i=this.current.patternFill;this.dependencyTracker?.resetBBox(e).recordDependencies(e,jd.transformAndFill);for(let a of t){let{data:t,width:o,height:s,transform:c}=a,l=this.cachedCanvases.getCanvas(`maskCanvas`,o,s),u=l.context;u.save(),rf(u,this.getObject(e,t,a)),u.globalCompositeOperation=`source-in`,u.fillStyle=i?r.getPattern(u,this,iu(n),Md.FILL,e):r,u.fillRect(0,0,o,s),u.restore(),n.save(),n.transform(...c),n.scale(1,-1),ef(n,l.canvas,0,0,o,s,0,-1,1,1),this.dependencyTracker?.recordBBox(e,n,0,o,0,s),n.restore()}this.compose(),this.dependencyTracker?.recordOperation(e)}paintImageXObject(e,t){if(!this.contentVisible)return;let n=this.getObject(e,t);if(!n){X(`Dependent image isn't ready yet`);return}this.paintInlineImageXObject(e,n)}paintImageXObjectRepeat(e,t,n,r,i){if(!this.contentVisible)return;let a=this.getObject(e,t);if(!a){X(`Dependent image isn't ready yet`);return}let o=a.width,s=a.height,c=[];for(let e=0,t=i.length;e<t;e+=2)c.push({transform:[n,0,0,r,i[e],i[e+1]],x:0,y:0,w:o,h:s});this.paintInlineImageXObjectGroup(e,a,c)}applyTransferMapsToCanvas(e){return this.current.transferMaps!==`none`&&(e.filter=this.current.transferMaps,e.drawImage(e.canvas,0,0),e.filter=`none`),e.canvas}applyTransferMapsToBitmap(e){if(this.current.transferMaps===`none`)return e.bitmap;let{bitmap:t,width:n,height:r}=e,i=this.cachedCanvases.getCanvas(`inlineImage`,n,r),a=i.context;return a.filter=this.current.transferMaps,a.drawImage(t,0,0),a.filter=`none`,i.canvas}paintInlineImageXObject(e,t){if(!this.contentVisible)return;let n=t.width,r=t.height,i=this.ctx;this.save(e);let{filter:a}=i;a!==`none`&&a!==``&&(i.filter=`none`),i.scale(1/n,-1/r);let o;if(t.bitmap)o=this.applyTransferMapsToBitmap(t);else if(typeof HTMLElement==`function`&&t instanceof HTMLElement||!t.data)o=t;else{let e=this.cachedCanvases.getCanvas(`inlineImage`,n,r).context;nf(e,t),o=this.applyTransferMapsToCanvas(e)}let s=this._scaleImage(o,iu(i));i.imageSmoothingEnabled=sf(ru(i),t.interpolate),this.dependencyTracker?.resetBBox(e).recordBBox(e,i,0,n,-r,0).recordDependencies(e,jd.imageXObject).recordOperation(e),ef(i,s.img,0,0,s.paintWidth,s.paintHeight,0,-r,n,r),this.compose(),this.restore(e)}paintInlineImageXObjectGroup(e,t,n){if(!this.contentVisible)return;let r=this.ctx,i;if(t.bitmap)i=t.bitmap;else{let e=t.width,n=t.height,r=this.cachedCanvases.getCanvas(`inlineImage`,e,n).context;nf(r,t),i=this.applyTransferMapsToCanvas(r)}this.dependencyTracker?.resetBBox(e);for(let t of n)r.save(),r.transform(...t.transform),r.scale(1,-1),ef(r,i,t.x,t.y,t.w,t.h,0,-1,1,1),this.dependencyTracker?.recordBBox(e,r,0,1,-1,0),r.restore();this.dependencyTracker?.recordOperation(e),this.compose()}paintSolidColorImageMask(e){this.contentVisible&&(this.dependencyTracker?.resetBBox(e).recordBBox(e,this.ctx,0,1,0,1).recordDependencies(e,jd.fill).recordOperation(e),this.ctx.fillRect(0,0,1,1),this.compose())}markPoint(e,t){}markPointProps(e,t,n){}beginMarkedContent(e,t){this.dependencyTracker?.beginMarkedContent(e),this.markedContentStack.push({visible:!0})}beginMarkedContentProps(e,t,n){this.dependencyTracker?.beginMarkedContent(e),t===`OC`?this.markedContentStack.push({visible:this.optionalContentConfig.isVisible(n)}):this.markedContentStack.push({visible:!0}),this.contentVisible=this.isContentVisible()}endMarkedContent(e){this.dependencyTracker?.endMarkedContent(e),this.markedContentStack.pop(),this.contentVisible=this.isContentVisible()}beginCompat(e){}endCompat(e){}consumePath(e,t,n){let r=this.current.isEmptyClip();this.pendingClip&&this.current.updateClipFromPath(),this.pendingClip||this.compose(n);let i=this.ctx;this.pendingClip?(r||(this.pendingClip===df?i.clip(t,`evenodd`):i.clip(t)),this.pendingClip=null,this.dependencyTracker?.bboxToClipBoxDropOperation(e).recordFutureForcedDependency(`clipPath`,e)):this.dependencyTracker?.recordOperation(e),this.current.startNewPathAndClipBox(this.current.clipBox)}getSinglePixelWidth(){if(!this._cachedGetSinglePixelWidth){let e=ru(this.ctx);if(e[1]===0&&e[2]===0)this._cachedGetSinglePixelWidth=1/Math.min(Math.abs(e[0]),Math.abs(e[3]));else{let t=Math.abs(e[0]*e[3]-e[2]*e[1]),n=Math.hypot(e[0],e[2]),r=Math.hypot(e[1],e[3]);this._cachedGetSinglePixelWidth=Math.max(n,r)/t}}return this._cachedGetSinglePixelWidth}getScaleForStroking(){if(this._cachedScaleForStroking[0]===-1){let{lineWidth:e}=this.current,{a:t,b:n,c:r,d:i}=this.ctx.getTransform(),a,o;if(n===0&&r===0){let n=Math.abs(t),r=Math.abs(i);if(n===r)if(e===0)a=o=1/n;else{let t=n*e;a=o=t<1?1/t:1}else if(e===0)a=1/n,o=1/r;else{let t=n*e,i=r*e;a=t<1?1/t:1,o=i<1?1/i:1}}else{let s=Math.abs(t*i-n*r),c=Math.hypot(t,n),l=Math.hypot(r,i);if(e===0)a=l/s,o=c/s;else{let t=e*s;a=l>t?l/t:1,o=c>t?c/t:1}}this._cachedScaleForStroking[0]=a,this._cachedScaleForStroking[1]=o}return this._cachedScaleForStroking}rescaleAndStroke(e,t){let{ctx:n,current:{lineWidth:r}}=this,[i,a]=this.getScaleForStroking();if(i===a){n.lineWidth=(r||1)*i,n.stroke(e);return}let o=n.getLineDash();t&&n.save(),n.scale(i,a),Yd.a=1/i,Yd.d=1/a;let s=new Path2D;if(s.addPath(e,Yd),o.length>0){let e=Math.max(i,a);n.setLineDash(o.map(t=>t/e)),n.lineDashOffset/=e}n.lineWidth=r||1,n.stroke(s),t&&n.restore()}isContentVisible(){for(let e=this.markedContentStack.length-1;e>=0;e--)if(!this.markedContentStack[e].visible)return!1;return!0}};for(let e in rl)ff.prototype[e]!==void 0&&(ff.prototype[rl[e]]=ff.prototype[e]);var pf=class{static#e=null;static#t=``;static get workerPort(){return this.#e}static set workerPort(e){if(!(typeof Worker<`u`&&e instanceof Worker)&&e!==null)throw Error("Invalid `workerPort` type.");this.#e=e}static get workerSrc(){return this.#t}static set workerSrc(e){if(typeof e!=`string`)throw Error("Invalid `workerSrc` type.");this.#t=e}},mf=class{#e;#t;constructor({parsedData:e,rawData:t}){this.#e=e,this.#t=t}getRaw(){return this.#t}get(e){return this.#e.get(e)??null}[Symbol.iterator](){return this.#e.entries()}},hf=Symbol(`INTERNAL`),gf=class{#e=!1;#t=!1;#n=!1;#r=!0;constructor(e,{name:t,intent:n,usage:r,rbGroups:i}){this.#e=!!(e&Kc.DISPLAY),this.#t=!!(e&Kc.PRINT),this.name=t,this.intent=n,this.usage=r,this.rbGroups=i}get visible(){if(this.#n)return this.#r;if(!this.#r)return!1;let{print:e,view:t}=this.usage;return this.#e?t?.viewState!==`OFF`:this.#t?e?.printState!==`OFF`:!0}_setVisible(e,t,n=!1){e!==hf&&ul("Internal method `_setVisible` called."),this.#n=n,this.#r=t}},_f=class{#e=null;#t=new Map;#n=null;#r=null;constructor(e,t=Kc.DISPLAY){if(this.renderingIntent=t,this.name=null,this.creator=null,e!==null){this.name=e.name,this.creator=e.creator,this.#r=e.order;for(let n of e.groups)this.#t.set(n.id,new gf(t,n));if(e.baseState===`OFF`)for(let e of this.#t.values())e._setVisible(hf,!1);for(let t of e.on)this.#t.get(t)._setVisible(hf,!0);for(let t of e.off)this.#t.get(t)._setVisible(hf,!1);this.#n=this.getHash()}}#i(e){let t=e.length;if(t<2)return!0;let n=e[0];for(let r=1;r<t;r++){let t=e[r],i;if(Array.isArray(t))i=this.#i(t);else if(this.#t.has(t))i=this.#t.get(t).visible;else return X(`Optional content group not found: ${t}`),!0;switch(n){case`And`:if(!i)return!1;break;case`Or`:if(i)return!0;break;case`Not`:return!i;default:return!0}}return n===`And`}isVisible(e){if(this.#t.size===0)return!0;if(!e)return ll(`Optional content group not defined.`),!0;if(e.type===`OCG`)return this.#t.has(e.id)?this.#t.get(e.id).visible:(X(`Optional content group not found: ${e.id}`),!0);if(e.type===`OCMD`){if(e.expression)return this.#i(e.expression);if(!e.policy||e.policy===`AnyOn`){for(let t of e.ids){if(!this.#t.has(t))return X(`Optional content group not found: ${t}`),!0;if(this.#t.get(t).visible)return!0}return!1}else if(e.policy===`AllOn`){for(let t of e.ids){if(!this.#t.has(t))return X(`Optional content group not found: ${t}`),!0;if(!this.#t.get(t).visible)return!1}return!0}else if(e.policy===`AnyOff`){for(let t of e.ids){if(!this.#t.has(t))return X(`Optional content group not found: ${t}`),!0;if(!this.#t.get(t).visible)return!0}return!1}else if(e.policy===`AllOff`){for(let t of e.ids){if(!this.#t.has(t))return X(`Optional content group not found: ${t}`),!0;if(this.#t.get(t).visible)return!1}return!0}return X(`Unknown optional content policy ${e.policy}.`),!0}return X(`Unknown group type ${e.type}.`),!0}setVisibility(e,t=!0,n=!0){let r=this.#t.get(e);if(!r){X(`Optional content group not found: ${e}`);return}if(n&&t&&r.rbGroups.length)for(let t of r.rbGroups)for(let n of t)n!==e&&this.#t.get(n)?._setVisible(hf,!1,!0);r._setVisible(hf,!!t,!0),this.#e=null}setOCGState({state:e,preserveRB:t}){let n;for(let r of e){switch(r){case`ON`:case`OFF`:case`Toggle`:n=r;continue}let e=this.#t.get(r);if(e)switch(n){case`ON`:this.setVisibility(r,!0,t);break;case`OFF`:this.setVisibility(r,!1,t);break;case`Toggle`:this.setVisibility(r,!e.visible,t);break}}this.#e=null}get hasInitialVisibility(){return this.#n===null||this.getHash()===this.#n}getOrder(){return this.#t.size?this.#r?this.#r.slice():[...this.#t.keys()]:null}getGroup(e){return this.#t.get(e)||null}getHash(){if(this.#e!==null)return this.#e;let e=new Ru;for(let[t,n]of this.#t)e.update(`${t}:${n.visible}`);return this.#e=e.hexdigest()}[Symbol.iterator](){return this.#t.entries()}};J(116);var vf=class{#e=null;#t=null;_fullReader=null;_rangeReaders=new Set;_source=null;constructor(e,t,n){this._source=e,this.#e=t,this.#t=n}get _progressiveDataLength(){return this._fullReader?._loaded??0}getFullReader(){return dl(!this._fullReader,`BasePDFStream.getFullReader can only be called once.`),this._fullReader=new this.#e(this)}getRangeReader(e,t){if(t<=this._progressiveDataLength)return null;let n=new this.#t(this,e,t);return this._rangeReaders.add(n),n}cancelAllRequests(e){this._fullReader?.cancel(e);for(let t of new Set(this._rangeReaders))t.cancel(e)}},yf=class{onProgress=null;_contentLength=0;_filename=null;_headersCapability=Promise.withResolvers();_isRangeSupported=!1;_isStreamingSupported=!1;_loaded=0;_stream=null;constructor(e){this._stream=e}get headersReady(){return this._headersCapability.promise}get filename(){return this._filename}get contentLength(){return this._contentLength}get isRangeSupported(){return this._isRangeSupported}get isStreamingSupported(){return this._isStreamingSupported}async read(){ul("Abstract method `read` called")}cancel(e){ul("Abstract method `cancel` called")}},bf=class{_stream=null;constructor(e,t,n){this._stream=e}async read(){ul("Abstract method `read` called")}cancel(e){ul("Abstract method `cancel` called")}};function xf(e){return e instanceof Uint8Array&&e.byteLength===e.buffer.byteLength?e.buffer:new Uint8Array(e).buffer}var Sf=class extends vf{_progressiveDone=!1;_queuedChunks=[];constructor(e){super(e,Cf,wf);let{pdfDataRangeTransport:t}=e,{initialData:n,progressiveDone:r}=t;if(n?.length>0){let e=xf(n);this._queuedChunks.push(e)}this._progressiveDone=r,t.addRangeListener((e,t)=>{this.#e(e,t)}),t.addProgressListener((e,t)=>{t!==void 0&&this._fullReader?.onProgress?.({loaded:e,total:t})}),t.addProgressiveReadListener(e=>{this.#e(void 0,e)}),t.addProgressiveDoneListener(()=>{this._fullReader?.progressiveDone(),this._progressiveDone=!0}),t.transportReady()}#e(e,t){let n=xf(t);if(e===void 0)this._fullReader?this._fullReader._enqueue(n):this._queuedChunks.push(n);else{let t=this._rangeReaders.keys().find(t=>t._begin===e);dl(t,"#onReceiveData - no `PDFDataTransportStreamRangeReader` instance found."),t._enqueue(n)}}getFullReader(){let e=super.getFullReader();return this._queuedChunks=null,e}getRangeReader(e,t){let n=super.getRangeReader(e,t);return n&&(n.onDone=()=>this._rangeReaders.delete(n),this._source.pdfDataRangeTransport.requestDataRange(e,t)),n}cancelAllRequests(e){super.cancelAllRequests(e),this._source.pdfDataRangeTransport.abort()}},Cf=class extends yf{_done=!1;_queuedChunks=null;_requests=[];constructor(e){super(e);let{pdfDataRangeTransport:t,disableRange:n,disableStream:r}=e._source,{length:i,contentDispositionFilename:a}=t;this._queuedChunks=e._queuedChunks||[];for(let e of this._queuedChunks)this._loaded+=e.byteLength;this._done=e._progressiveDone,this._contentLength=i,this._isStreamingSupported=!r,this._isRangeSupported=!n,Gl(a)&&(this._filename=a),this._headersCapability.resolve()}_enqueue(e){this._done||(this._requests.length>0?this._requests.shift().resolve({value:e,done:!1}):this._queuedChunks.push(e),this._loaded+=e.byteLength)}async read(){if(this._queuedChunks.length>0)return{value:this._queuedChunks.shift(),done:!1};if(this._done)return{value:void 0,done:!0};let e=Promise.withResolvers();return this._requests.push(e),e.promise}cancel(e){this._done=!0;for(let e of this._requests)e.resolve({value:void 0,done:!0});this._requests.length=0}progressiveDone(){this._done||=!0}},wf=class extends bf{onDone=null;_begin=-1;_done=!1;_queuedChunk=null;_requests=[];constructor(e,t,n){super(e,t,n),this._begin=t}_enqueue(e){if(!this._done){if(this._requests.length===0)this._queuedChunk=e;else{this._requests.shift().resolve({value:e,done:!1});for(let e of this._requests)e.resolve({value:void 0,done:!0});this._requests.length=0}this._done=!0,this.onDone?.()}}async read(){if(this._queuedChunk){let e=this._queuedChunk;return this._queuedChunk=null,{value:e,done:!1}}if(this._done)return{value:void 0,done:!0};let e=Promise.withResolvers();return this._requests.push(e),e.promise}cancel(e){this._done=!0;for(let e of this._requests)e.resolve({value:void 0,done:!0});this._requests.length=0,this.onDone?.()}};function Tf(e){let t=!0,n=r(`filename\\*`,`i`).exec(e);if(n){n=n[1];let e=s(n);return e=unescape(e),e=c(e),e=l(e),a(e)}if(n=o(e),n)return a(l(n));if(n=r(`filename`,`i`).exec(e),n){n=n[1];let e=s(n);return e=l(e),a(e)}function r(e,t){return RegExp(`(?:^|;)\\s*`+e+`\\s*=\\s*([^";\\s][^;\\s]*|"(?:[^"\\\\]|\\\\"?)+"?)`,t)}function i(e,n){if(e){if(!/^[\x00-\xFF]+$/.test(n))return n;try{let r=new TextDecoder(e,{fatal:!0}),i=Cl(n);n=r.decode(i),t=!1}catch{}}return n}function a(e){return t&&/[\x80-\xff]/.test(e)&&(e=i(`utf-8`,e),t&&(e=i(`iso-8859-1`,e))),e}function o(e){let t=[],n,i=r(`filename\\*((?!0\\d)\\d+)(\\*?)`,`ig`);for(;(n=i.exec(e))!==null;){let[,e,r,i]=n;if(e=parseInt(e,10),e in t){if(e===0)break;continue}t[e]=[r,i]}let a=[];for(let e=0;e<t.length&&e in t;++e){let[n,r]=t[e];r=s(r),n&&(r=unescape(r),e===0&&(r=c(r))),a.push(r)}return a.join(``)}function s(e){if(e.startsWith(`"`)){let t=e.slice(1).split(`\\"`);for(let e=0;e<t.length;++e){let n=t[e].indexOf(`"`);n!==-1&&(t[e]=t[e].slice(0,n),t.length=e+1),t[e]=t[e].replaceAll(/\\(.)/g,`$1`)}e=t.join(`"`)}return e}function c(e){let t=e.indexOf(`'`);return t===-1?e:i(e.slice(0,t),e.slice(t+1).replace(/^[^']*'/,``))}function l(e){return!e.startsWith(`=?`)||/[\x00-\x19\x80-\xff]/.test(e)?e:e.replaceAll(/=\?([\w-]*)\?([QqBb])\?((?:[^?]|\?(?!=))*)\?=/g,function(e,t,n,r){if(n===`q`||n===`Q`)return r=r.replaceAll(`_`,` `),r=r.replaceAll(/=([0-9a-fA-F]{2})/g,function(e,t){return String.fromCharCode(parseInt(t,16))}),i(t,r);try{r=atob(r)}catch{}return i(t,r)})}return``}function Ef(e,t){let n=new Headers;if(!e||!t||typeof t!=`object`)return n;for(let e in t){let r=t[e];r!==void 0&&n.append(e,r)}return n}function Df(e){return URL.parse(e)?.origin??null}function Of({responseHeaders:e,isHttp:t,rangeChunkSize:n,disableRange:r}){let i={allowRangeRequests:!1,suggestedLength:void 0},a=parseInt(e.get(`Content-Length`),10);return!Number.isInteger(a)||(i.suggestedLength=a,a<=2*n)||r||!t||e.get(`Accept-Ranges`)!==`bytes`||(e.get(`Content-Encoding`)||`identity`)!==`identity`||(i.allowRangeRequests=!0),i}function kf(e){let t=e.get(`Content-Disposition`);if(t){let e=Tf(t);if(e.includes(`%`))try{e=decodeURIComponent(e)}catch{}if(Gl(e))return e}return null}function Af(e,t){return new yl(`Unexpected server response (${e}) while retrieving PDF "${t}".`,e,e===404||e===0&&t.startsWith(`file:`))}function jf(e,t){if(e!==t)throw Error(`Expected range response-origin "${e}" to match "${t}".`)}function Mf(e,t,n,r){return fetch(e,{method:`GET`,headers:t,signal:r.signal,mode:`cors`,credentials:n?`include`:`same-origin`,redirect:`follow`})}function Nf(e,t){if(e!==200&&e!==206)throw Af(e,t)}function Pf(e){return e instanceof Uint8Array?e.buffer:e instanceof ArrayBuffer?e:(X(`getArrayBuffer - unexpected data format: ${e}`),new Uint8Array(e).buffer)}var Ff=class extends vf{_responseOrigin=null;constructor(e){super(e,If,Lf),this.isHttp=/^https?:/i.test(e.url),this.headers=Ef(this.isHttp,e.httpHeaders)}},If=class extends yf{_abortController=new AbortController;_reader=null;constructor(e){super(e);let{disableRange:t,disableStream:n,length:r,rangeChunkSize:i,url:a,withCredentials:o}=e._source;this._contentLength=r,this._isStreamingSupported=!n,this._isRangeSupported=!t,Mf(a,new Headers(e.headers),o,this._abortController).then(n=>{e._responseOrigin=Df(n.url),Nf(n.status,a),this._reader=n.body.getReader();let r=n.headers,{allowRangeRequests:o,suggestedLength:s}=Of({responseHeaders:r,isHttp:e.isHttp,rangeChunkSize:i,disableRange:t});this._isRangeSupported=o,this._contentLength=s||this._contentLength,this._filename=kf(r),!this._isStreamingSupported&&this._isRangeSupported&&this.cancel(new xl(`Streaming is disabled.`)),this._headersCapability.resolve()}).catch(this._headersCapability.reject)}async read(){await this._headersCapability.promise;let{value:e,done:t}=await this._reader.read();return t?{value:e,done:t}:(this._loaded+=e.byteLength,this.onProgress?.({loaded:this._loaded,total:this._contentLength}),{value:Pf(e),done:!1})}cancel(e){this._reader?.cancel(e),this._abortController.abort()}},Lf=class extends bf{_abortController=new AbortController;_readCapability=Promise.withResolvers();_reader=null;constructor(e,t,n){super(e,t,n);let{url:r,withCredentials:i}=e._source,a=new Headers(e.headers);a.append(`Range`,`bytes=${t}-${n-1}`),Mf(r,a,i,this._abortController).then(t=>{jf(Df(t.url),e._responseOrigin),Nf(t.status,r),this._reader=t.body.getReader(),this._readCapability.resolve()}).catch(this._readCapability.reject)}async read(){await this._readCapability.promise;let{value:e,done:t}=await this._reader.read();return t?{value:e,done:t}:{value:Pf(e),done:!1}}cancel(e){this._reader?.cancel(e),this._abortController.abort()}},Rf=200,zf=206;function Bf(e){return typeof e==`string`?Cl(e).buffer:e}var Vf=class extends vf{#e=new WeakMap;_responseOrigin=null;constructor(e){super(e,Hf,Uf),this.url=e.url,this.isHttp=/^https?:/i.test(this.url),this.headers=Ef(this.isHttp,e.httpHeaders)}_request(e){let t=new XMLHttpRequest,n={validateStatus:null,onHeadersReceived:e.onHeadersReceived,onDone:e.onDone,onError:e.onError,onProgress:e.onProgress};this.#e.set(t,n),t.open(`GET`,this.url),t.withCredentials=this._source.withCredentials;for(let[e,n]of this.headers)t.setRequestHeader(e,n);return this.isHttp&&`begin`in e&&`end`in e?(t.setRequestHeader(`Range`,`bytes=${e.begin}-${e.end-1}`),n.validateStatus=e=>e===zf||e===Rf):n.validateStatus=e=>e===Rf,t.responseType=`arraybuffer`,dl(e.onError,"Expected `onError` callback to be provided."),t.onerror=()=>e.onError(t.status),t.onreadystatechange=this.#n.bind(this,t),t.onprogress=this.#t.bind(this,t),t.send(null),t}#t(e,t){this.#e.get(e)?.onProgress?.(t)}#n(e,t){let n=this.#e.get(e);if(!n||(e.readyState>=2&&n.onHeadersReceived&&(n.onHeadersReceived(),delete n.onHeadersReceived),e.readyState!==4)||!this.#e.has(e))return;if(this.#e.delete(e),e.status===0&&this.isHttp){n.onError(e.status);return}let r=e.status||Rf;if(!n.validateStatus(r)){n.onError(e.status);return}let i=Bf(e.response);if(r===zf){let t=e.getResponseHeader(`Content-Range`);/bytes (\d+)-(\d+)\/(\d+)/.test(t)?n.onDone(i):(X(`Missing or invalid "Content-Range" header.`),n.onError(0))}else i?n.onDone(i):n.onError(e.status)}_abortRequest(e){this.#e.has(e)&&(this.#e.delete(e),e.abort())}getRangeReader(e,t){let n=super.getRangeReader(e,t);return n&&(n.onClosed=()=>this._rangeReaders.delete(n)),n}},Hf=class extends yf{_cachedChunks=[];_done=!1;_requests=[];_storedError=null;constructor(e){super(e);let{length:t}=e._source;this._contentLength=t,this._fullRequestXhr=e._request({onHeadersReceived:this.#e.bind(this),onDone:this.#t.bind(this),onError:this.#n.bind(this),onProgress:this.#r.bind(this)})}#e(){let e=this._stream,{disableRange:t,rangeChunkSize:n}=e._source,r=this._fullRequestXhr;e._responseOrigin=Df(r.responseURL);let i=r.getAllResponseHeaders(),a=new Headers(i?i.trimStart().replace(/[^\S ]+$/,``).split(/[\r\n]+/).map(e=>{let[t,...n]=e.split(`: `);return[t,n.join(`: `)]}):[]),{allowRangeRequests:o,suggestedLength:s}=Of({responseHeaders:a,isHttp:e.isHttp,rangeChunkSize:n,disableRange:t});o&&(this._isRangeSupported=!0),this._contentLength=s||this._contentLength,this._filename=kf(a),this._isRangeSupported&&e._abortRequest(r),this._headersCapability.resolve()}#t(e){if(this._requests.length>0?this._requests.shift().resolve({value:e,done:!1}):this._cachedChunks.push(e),this._done=!0,!(this._cachedChunks.length>0)){for(let e of this._requests)e.resolve({value:void 0,done:!0});this._requests.length=0}}#n(e){this._storedError=Af(e,this._stream.url),this._headersCapability.reject(this._storedError);for(let e of this._requests)e.reject(this._storedError);this._requests.length=0,this._cachedChunks.length=0}#r(e){this.onProgress?.({loaded:e.loaded,total:e.lengthComputable?e.total:this._contentLength})}async read(){if(await this._headersCapability.promise,this._storedError)throw this._storedError;if(this._cachedChunks.length>0)return{value:this._cachedChunks.shift(),done:!1};if(this._done)return{value:void 0,done:!0};let e=Promise.withResolvers();return this._requests.push(e),e.promise}cancel(e){this._done=!0,this._headersCapability.reject(e);for(let e of this._requests)e.resolve({value:void 0,done:!0});this._requests.length=0,this._stream._abortRequest(this._fullRequestXhr),this._fullRequestXhr=null}},Uf=class extends bf{onClosed=null;_done=!1;_queuedChunk=null;_requests=[];_storedError=null;constructor(e,t,n){super(e,t,n),this._requestXhr=e._request({begin:t,end:n,onHeadersReceived:this.#e.bind(this),onDone:this.#t.bind(this),onError:this.#n.bind(this),onProgress:null})}#e(){let e=Df(this._requestXhr?.responseURL);try{jf(e,this._stream._responseOrigin)}catch(e){this._storedError=e,this.#n(0)}}#t(e){this._requests.length>0?this._requests.shift().resolve({value:e,done:!1}):this._queuedChunk=e,this._done=!0;for(let e of this._requests)e.resolve({value:void 0,done:!0});this._requests.length=0,this.onClosed?.()}#n(e){this._storedError??=Af(e,this._stream.url);for(let e of this._requests)e.reject(this._storedError);this._requests.length=0,this._queuedChunk=null}async read(){if(this._storedError)throw this._storedError;if(this._queuedChunk!==null){let e=this._queuedChunk;return this._queuedChunk=null,{value:e,done:!1}}if(this._done)return{value:void 0,done:!0};let e=Promise.withResolvers();return this._requests.push(e),e.promise}cancel(e){this._done=!0;for(let e of this._requests)e.resolve({value:void 0,done:!0});this._requests.length=0,this._stream._abortRequest(this._requestXhr),this.onClosed?.()}},Wf=/^[a-z][a-z0-9\-+.]+:/i;function Gf(e){if(Wf.test(e))return new URL(e);let t=process.getBuiltinModule(`url`);return new URL(t.pathToFileURL(e))}function Kf(e){let{Readable:t}=process.getBuiltinModule(`stream`);return typeof t.toWeb==`function`?t.toWeb(e):process.getBuiltinModule(`module`).createRequire({}.url)(`node-readable-to-web-readable-stream`).makeDefaultReadableStreamFromNodeReadable(e)}function qf(e){return e instanceof Uint8Array?e.buffer:e instanceof ArrayBuffer?e:(X(`getArrayBuffer - unexpected data format: ${e}`),new Uint8Array(e).buffer)}var Jf=class extends vf{constructor(e){super(e,Yf,Xf),this.url=Gf(e.url),dl(this.url.protocol===`file:`,`PDFNodeStream only supports file:// URLs.`)}},Yf=class extends yf{_reader=null;constructor(e){super(e);let{disableRange:t,disableStream:n,length:r,rangeChunkSize:i}=e._source;this._contentLength=r,this._isStreamingSupported=!n,this._isRangeSupported=!t;let a=e.url,o=process.getBuiltinModule(`fs`);o.promises.lstat(a).then(e=>{this._reader=Kf(o.createReadStream(a)).getReader();let{size:t}=e;t<=2*i&&(this._isRangeSupported=!1),this._contentLength=t,!this._isStreamingSupported&&this._isRangeSupported&&this.cancel(new xl(`Streaming is disabled.`)),this._headersCapability.resolve()}).catch(e=>{e.code===`ENOENT`&&(e=Af(0,a.href)),this._headersCapability.reject(e)})}async read(){await this._headersCapability.promise;let{value:e,done:t}=await this._reader.read();return t?{value:e,done:t}:(this._loaded+=e.length,this.onProgress?.({loaded:this._loaded,total:this._contentLength}),{value:qf(e),done:!1})}cancel(e){this._reader?.cancel(e)}},Xf=class extends bf{_readCapability=Promise.withResolvers();_reader=null;constructor(e,t,n){super(e,t,n);let r=e.url,i=process.getBuiltinModule(`fs`);try{this._reader=Kf(i.createReadStream(r,{start:t,end:n-1})).getReader(),this._readCapability.resolve()}catch(e){this._readCapability.reject(e)}}async read(){await this._readCapability.promise;let{value:e,done:t}=await this._reader.read();return t?{value:e,done:t}:{value:qf(e),done:!1}}cancel(e){this._reader?.cancel(e)}},Zf=Symbol(`INITIAL_DATA`),Qf=class{#e=Object.create(null);#t(e){return this.#e[e]||={...Promise.withResolvers(),data:Zf}}get(e,t=null){if(t){let n=this.#t(e);return n.promise.then(()=>t(n.data)),null}let n=this.#e[e];if(!n||n.data===Zf)throw Error(`Requesting object that isn't resolved yet ${e}.`);return n.data}has(e){let t=this.#e[e];return!!t&&t.data!==Zf}delete(e){let t=this.#e[e];return!t||t.data===Zf?!1:(delete this.#e[e],!0)}resolve(e,t=null){let n=this.#t(e);n.data=t,n.resolve()}clear(){for(let e in this.#e){let{data:t}=this.#e[e];t?.bitmap?.close()}this.#e=Object.create(null)}*[Symbol.iterator](){for(let e in this.#e){let{data:t}=this.#e[e];t!==Zf&&(yield[e,t])}}},$f=1e5,ep=30,tp=class e{#e=Promise.withResolvers();#t=null;#n=!1;#r=!!globalThis.FontInspector?.enabled;#i=null;#a=null;#o=0;#s=0;#c=null;#l=null;#u=0;#d=0;#f=Object.create(null);#p=[];#m=null;#h=[];#g=new WeakMap;#_=null;static#v=new Map;static#y=new Map;static#b=new WeakMap;static#x=null;static#S=new Set;constructor({textContentSource:t,container:n,viewport:r}){if(t instanceof ReadableStream)this.#m=t;else if(typeof t==`object`)this.#m=new ReadableStream({start(e){e.enqueue(t),e.close()}});else throw Error(`No "textContentSource" parameter specified.`);this.#t=this.#l=n,this.#d=r.scale*ou.pixelRatio,this.#u=r.rotation,this.#a={div:null,properties:null,ctx:null};let{pageWidth:i,pageHeight:a,pageX:o,pageY:s}=r.rawDims;this.#_=[1,0,0,-1,-o,s+a],this.#s=i,this.#o=a,e.#O(),n.style.setProperty(`--min-font-size`,e.#x),au(n,r),this.#e.promise.finally(()=>{e.#S.delete(this),this.#a=null,this.#f=null}).catch(()=>{})}static get fontFamilyMap(){let{isWindows:e,isFirefox:t}=Dl.platform;return Z(this,`fontFamilyMap`,new Map([[`sans-serif`,`${e&&t?`Calibri, `:``}sans-serif`],[`monospace`,`${e&&t?`Lucida Console, `:``}monospace`]]))}render(){let t=()=>{this.#c.read().then(({value:e,done:n})=>{if(n){this.#e.resolve();return}this.#i??=e.lang,Object.assign(this.#f,e.styles),this.#C(e.items),t()},this.#e.reject)};return this.#c=this.#m.getReader(),e.#S.add(this),t(),this.#e.promise}update({viewport:t,onBefore:n=null}){let r=t.scale*ou.pixelRatio,i=t.rotation;if(i!==this.#u&&(n?.(),this.#u=i,au(this.#l,{rotation:i})),r!==this.#d){n?.(),this.#d=r;let t={div:null,properties:null,ctx:e.#E(this.#i)};for(let e of this.#h)t.properties=this.#g.get(e),t.div=e,this.#T(t)}}cancel(){let e=new xl(`TextLayer task cancelled.`);this.#c?.cancel(e).catch(()=>{}),this.#c=null,this.#e.reject(e)}get textDivs(){return this.#h}get textContentItemsStr(){return this.#p}#C(t){if(this.#n)return;this.#a.ctx??=e.#E(this.#i);let n=this.#h,r=this.#p;for(let e of t){if(n.length>$f){X(`Ignoring additional textDivs for performance reasons.`),this.#n=!0;return}if(e.str===void 0){if(e.type===`beginMarkedContentProps`||e.type===`beginMarkedContent`){let t=this.#t;this.#t=document.createElement(`span`),this.#t.classList.add(`markedContent`),e.id&&this.#t.setAttribute(`id`,`${e.id}`),e.tag===`Artifact`&&(this.#t.ariaHidden=!0),t.append(this.#t)}else e.type===`endMarkedContent`&&(this.#t=this.#t.parentNode);continue}r.push(e.str),this.#w(e)}}#w(t){let n=document.createElement(`span`),r={angle:0,canvasWidth:0,hasText:t.str!==``,hasEOL:t.hasEOL,fontSize:0};this.#h.push(n);let i=Q.transform(this.#_,t.transform),a=Math.atan2(i[1],i[0]),o=this.#f[t.fontName];o.vertical&&(a+=Math.PI/2);let s=this.#r&&o.fontSubstitution||o.fontFamily;s=e.fontFamilyMap.get(s)||s;let c=Math.hypot(i[2],i[3]),l=c*e.#k(s,o,this.#i),u,d;a===0?(u=i[4],d=i[5]-l):(u=i[4]+l*Math.sin(a),d=i[5]-l*Math.cos(a));let f=n.style;f.left=`${(100*u/this.#s).toFixed(2)}%`,f.top=`${(100*d/this.#o).toFixed(2)}%`,f.setProperty(`--font-height`,`${c.toFixed(2)}px`),f.fontFamily=s,r.fontSize=c,n.setAttribute(`role`,`presentation`),n.textContent=t.str,n.dir=t.dir,this.#r&&(n.dataset.fontName=o.fontSubstitutionLoadedName||t.fontName),a!==0&&(r.angle=180/Math.PI*a);let p=!1;if(t.str.length>1)p=!0;else if(t.str!==` `&&t.transform[0]!==t.transform[3]){let e=Math.abs(t.transform[0]),n=Math.abs(t.transform[3]);e!==n&&Math.max(e,n)/Math.min(e,n)>1.5&&(p=!0)}if(p&&(r.canvasWidth=o.vertical?t.height:t.width),this.#g.set(n,r),this.#a.div=n,this.#a.properties=r,this.#T(this.#a),r.hasText&&this.#t.append(n),r.hasEOL){let e=document.createElement(`br`);e.setAttribute(`role`,`presentation`),this.#t.append(e)}}#T(t){let{div:n,properties:r,ctx:i}=t,{style:a}=n;if(r.canvasWidth!==0&&r.hasText){let{fontFamily:t}=a,{canvasWidth:o,fontSize:s}=r;e.#D(i,s*this.#d,t);let{width:c}=i.measureText(n.textContent);c>0&&a.setProperty(`--scale-x`,o*this.#d/c)}r.angle!==0&&a.setProperty(`--rotate`,`${r.angle}deg`)}static cleanup(){if(!(this.#S.size>0)){this.#v.clear();for(let{canvas:e}of this.#y.values())e.remove();this.#y.clear()}}static#E(e=null){let t=this.#y.get(e||=``);if(!t){let n=document.createElement(`canvas`);n.className=`hiddenCanvasElement`,n.lang=e,document.body.append(n),t=n.getContext(`2d`,{alpha:!1,willReadFrequently:!0}),this.#y.set(e,t),this.#b.set(t,{size:0,family:``})}return t}static#D(e,t,n){let r=this.#b.get(e);t===r.size&&n===r.family||(e.font=`${t}px ${n}`,r.size=t,r.family=n)}static#O(){if(this.#x!==null)return;let e=document.createElement(`div`);e.style.opacity=0,e.style.lineHeight=1,e.style.fontSize=`1px`,e.style.position=`absolute`,e.textContent=`X`,document.body.append(e),this.#x=e.getBoundingClientRect().height,e.remove()}static#k(e,t,n){let r=this.#v.get(e);if(r)return r;let i=this.#E(n);i.canvas.width=i.canvas.height=ep,this.#D(i,ep,e);let a=i.measureText(``),o=a.fontBoundingBoxAscent,s=Math.abs(a.fontBoundingBoxDescent);i.canvas.width=i.canvas.height=0;let c=.8;return o?c=o/(o+s):(Dl.platform.isFirefox&&X("Enable the `dom.textMetrics.fontBoundingBox.enabled` preference in `about:config` to improve TextLayer rendering."),t.ascent?c=t.ascent:t.descent&&(c=1+t.descent)),this.#v.set(e,c),c}},np=100;function rp(e={}){typeof e==`string`||e instanceof URL?e={url:e}:(e instanceof ArrayBuffer||ArrayBuffer.isView(e))&&(e={data:e});let t=new ip,{docId:n}=t,r=e.url?Yu(e.url):null,i=e.data?Xu(e.data):null,a=e.httpHeaders||null,o=e.withCredentials===!0,s=e.password??null,c=e.range instanceof ap?e.range:null,l=Number.isInteger(e.rangeChunkSize)&&e.rangeChunkSize>0?e.rangeChunkSize:2**16,u=e.worker instanceof cp?e.worker:null,d=e.verbosity,f=typeof e.docBaseUrl==`string`&&!Wl(e.docBaseUrl)?e.docBaseUrl:null,p=Zu(e.cMapUrl),m=e.cMapPacked!==!1,h=e.CMapReaderFactory||(Uc?yd:ld),g=Zu(e.iccUrl),_=Zu(e.standardFontDataUrl),v=e.StandardFontDataFactory||(Uc?bd:pd),y=Zu(e.wasmUrl),b=e.WasmFactory||(Uc?xd:hd),x=e.stopAtErrors!==!0,S=Number.isInteger(e.maxImageSize)&&e.maxImageSize>-1?e.maxImageSize:-1,C=e.isEvalSupported!==!1,w=typeof e.isOffscreenCanvasSupported==`boolean`?e.isOffscreenCanvasSupported:!Uc,T=typeof e.isImageDecoderSupported==`boolean`?e.isImageDecoderSupported:!Uc&&(Dl.platform.isFirefox||!globalThis.chrome),E=Number.isInteger(e.canvasMaxAreaInBytes)?e.canvasMaxAreaInBytes:-1,D=typeof e.disableFontFace==`boolean`?e.disableFontFace:Uc,O=e.fontExtraProperties===!0,k=e.enableXfa===!0,A=e.ownerDocument||globalThis.document,j=e.disableRange===!0,M=e.disableStream===!0,N=e.disableAutoFetch===!0,P=e.pdfBug===!0,F=e.CanvasFactory||(Uc?vd:sd),ee=e.FilterFactory||(Uc?_d:dd),I=e.enableHWA===!0,L=e.useWasm!==!1,R=c?c.length:e.length??NaN,te=typeof e.useSystemFonts==`boolean`?e.useSystemFonts:!Uc&&!D,ne=typeof e.useWorkerFetch==`boolean`?e.useWorkerFetch:!!(h===ld&&v===pd&&b===hd&&p&&_&&y&&Yl(p,document.baseURI)&&Yl(_,document.baseURI)&&Yl(y,document.baseURI));sl(d);let re={canvasFactory:new F({ownerDocument:A,enableHWA:I}),filterFactory:new ee({docId:n,ownerDocument:A}),cMapReaderFactory:ne?null:new h({baseUrl:p,isCompressed:m}),standardFontDataFactory:ne?null:new v({baseUrl:_}),wasmFactory:ne?null:new b({baseUrl:y})};u||(u=cp.create({verbosity:d,port:pf.workerPort}),t._worker=u);let ie={docId:n,apiVersion:`5.4.624`,data:i,password:s,disableAutoFetch:N,rangeChunkSize:l,length:R,docBaseUrl:f,enableXfa:k,evaluatorOptions:{maxImageSize:S,disableFontFace:D,ignoreErrors:x,isEvalSupported:C,isOffscreenCanvasSupported:w,isImageDecoderSupported:T,canvasMaxAreaInBytes:E,fontExtraProperties:O,useSystemFonts:te,useWasm:L,useWorkerFetch:ne,cMapUrl:p,iccUrl:g,standardFontDataUrl:_,wasmUrl:y}},ae={ownerDocument:A,pdfBug:P,styleElement:null,enableHWA:I,loadingParams:{disableAutoFetch:N,enableXfa:k}};return u.promise.then(function(){if(t.destroyed)throw Error(`Loading aborted`);if(u.destroyed)throw Error(`Worker was destroyed`);let e=u.messageHandler.sendWithPromise(`GetDocRequest`,ie,i?[i.buffer]:null),s;if(c)s=new Sf({pdfDataRangeTransport:c,disableRange:j,disableStream:M});else if(!i){if(!r)throw Error("getDocument - no `url` parameter provided.");s=new(Yl(r)?Ff:Uc?Jf:Vf)({url:r,length:R,httpHeaders:a,withCredentials:o,rangeChunkSize:l,disableRange:j,disableStream:M})}return e.then(e=>{if(t.destroyed)throw Error(`Loading aborted`);if(u.destroyed)throw Error(`Worker was destroyed`);let r=new ad(n,e,u.port);t._transport=new lp(r,t,s,ae,re),r.send(`Ready`,null)})}).catch(t._capability.reject),t}var ip=class e{static#e=0;_capability=Promise.withResolvers();_transport=null;_worker=null;docId=`d${e.#e++}`;destroyed=!1;onPassword=null;onProgress=null;get promise(){return this._capability.promise}async destroy(){this.destroyed=!0;try{this._worker?.port&&(this._worker._pendingDestroy=!0),await this._transport?.destroy()}catch(e){throw this._worker?.port&&delete this._worker._pendingDestroy,e}this._transport=null,this._worker?.destroy(),this._worker=null}async getData(){return this._transport.getData()}},ap=class{#e=Promise.withResolvers();#t=[];#n=[];#r=[];#i=[];constructor(e,t,n=!1,r=null){this.length=e,this.initialData=t,this.progressiveDone=n,this.contentDispositionFilename=r}addRangeListener(e){this.#i.push(e)}addProgressListener(e){this.#r.push(e)}addProgressiveReadListener(e){this.#n.push(e)}addProgressiveDoneListener(e){this.#t.push(e)}onDataRange(e,t){for(let n of this.#i)n(e,t)}onDataProgress(e,t){this.#e.promise.then(()=>{for(let n of this.#r)n(e,t)})}onDataProgressiveRead(e){this.#e.promise.then(()=>{for(let t of this.#n)t(e)})}onDataProgressiveDone(){this.#e.promise.then(()=>{for(let e of this.#t)e()})}transportReady(){this.#e.resolve()}requestDataRange(e,t){ul(`Abstract method PDFDataRangeTransport.requestDataRange`)}abort(){}},op=class{constructor(e,t){this._pdfInfo=e,this._transport=t}get annotationStorage(){return this._transport.annotationStorage}get canvasFactory(){return this._transport.canvasFactory}get filterFactory(){return this._transport.filterFactory}get numPages(){return this._pdfInfo.numPages}get fingerprints(){return this._pdfInfo.fingerprints}get isPureXfa(){return Z(this,`isPureXfa`,!!this._transport._htmlForXfa)}get allXfaHtml(){return this._transport._htmlForXfa}getPage(e){return this._transport.getPage(e)}getPageIndex(e){return this._transport.getPageIndex(e)}getDestinations(){return this._transport.getDestinations()}getDestination(e){return this._transport.getDestination(e)}getPageLabels(){return this._transport.getPageLabels()}getPageLayout(){return this._transport.getPageLayout()}getPageMode(){return this._transport.getPageMode()}getViewerPreferences(){return this._transport.getViewerPreferences()}getOpenAction(){return this._transport.getOpenAction()}getAttachments(){return this._transport.getAttachments()}getAnnotationsByType(e,t){return this._transport.getAnnotationsByType(e,t)}getJSActions(){return this._transport.getDocJSActions()}getOutline(){return this._transport.getOutline()}getOptionalContentConfig({intent:e=`display`}={}){let{renderingIntent:t}=this._transport.getRenderingIntent(e);return this._transport.getOptionalContentConfig(t)}getPermissions(){return this._transport.getPermissions()}getMetadata(){return this._transport.getMetadata()}getMarkInfo(){return this._transport.getMarkInfo()}getData(){return this._transport.getData()}saveDocument(){return this._transport.saveDocument()}extractPages(e){return this._transport.extractPages(e)}getDownloadInfo(){return this._transport.downloadInfoCapability.promise}cleanup(e=!1){return this._transport.startCleanup(e||this.isPureXfa)}destroy(){return this.loadingTask.destroy()}cachedPageNumber(e){return this._transport.cachedPageNumber(e)}get loadingParams(){return this._transport.loadingParams}get loadingTask(){return this._transport.loadingTask}getFieldObjects(){return this._transport.getFieldObjects()}hasJSActions(){return this._transport.hasJSActions()}getCalculationOrderIds(){return this._transport.getCalculationOrderIds()}},sp=class{#e=!1;#t=yu.instance;constructor(e,t,n,r=!1){this._pageIndex=e,this._pageInfo=t,this._transport=n,this._stats=r?new Jl:null,this._pdfBug=r,this.commonObjs=n.commonObjs,this.objs=new Qf,this._intentStates=new Map,this.destroyed=!1,this.recordedBBoxes=null}get pageNumber(){return this._pageIndex+1}set pageNumber(e){this._pageIndex=e-1}get rotate(){return this._pageInfo.rotate}get ref(){return this._pageInfo.ref}get userUnit(){return this._pageInfo.userUnit}get view(){return this._pageInfo.view}getViewport({scale:e,rotation:t=this.rotate,offsetX:n=0,offsetY:r=0,dontFlip:i=!1}={}){return new Hl({viewBox:this.view,userUnit:this.userUnit,scale:e,rotation:t,offsetX:n,offsetY:r,dontFlip:i})}getAnnotations({intent:e=`display`}={}){let{renderingIntent:t}=this._transport.getRenderingIntent(e);return this._transport.getAnnotations(this._pageIndex,t)}getJSActions(){return this._transport.getPageJSActions(this._pageIndex)}get filterFactory(){return this._transport.filterFactory}get isPureXfa(){return Z(this,`isPureXfa`,!!this._transport._htmlForXfa)}async getXfa(){return this._transport._htmlForXfa?.children[this._pageIndex]||null}render({canvasContext:e,canvas:t=e.canvas,viewport:n,intent:r=`display`,annotationMode:i=qc.ENABLE,transform:a=null,background:o=null,optionalContentConfigPromise:s=null,annotationCanvasMap:c=null,pageColors:l=null,printAnnotationStorage:u=null,isEditing:d=!1,recordOperations:f=!1,operationsFilter:p=null}){this._stats?.time(`Overall`);let m=this._transport.getRenderingIntent(r,i,u,d),{renderingIntent:h,cacheKey:g}=m;this.#e=!1,s||=this._transport.getOptionalContentConfig(h);let _=this._intentStates.get(g);_||(_=Object.create(null),this._intentStates.set(g,_)),_.streamReaderCancelTimeout&&(clearTimeout(_.streamReaderCancelTimeout),_.streamReaderCancelTimeout=null);let v=!!(h&Kc.PRINT);_.displayReadyCapability||(_.displayReadyCapability=Promise.withResolvers(),_.operatorList={fnArray:[],argsArray:[],lastChunk:!1,separateAnnots:null},this._stats?.time(`Page Request`),this._pumpOperatorList(m));let y=!!(this._pdfBug&&globalThis.StepperManager?.enabled),b=!this.recordedBBoxes&&(f||y),x=e=>{if(_.renderTasks.delete(S),b){let e=S.gfx?.dependencyTracker.take();e&&(S.stepper&&S.stepper.setOperatorBBoxes(e,S.gfx.dependencyTracker.takeDebugMetadata()),f&&(this.recordedBBoxes=e))}v&&(this.#e=!0),this.#n(),e?(S.capability.reject(e),this._abortOperatorList({intentState:_,reason:e instanceof Error?e:Error(e)})):S.capability.resolve(),this._stats&&(this._stats.timeEnd(`Rendering`),this._stats.timeEnd(`Overall`),globalThis.Stats?.enabled&&globalThis.Stats.add(this.pageNumber,this._stats))},S=new dp({callback:x,params:{canvas:t,canvasContext:e,dependencyTracker:b?new kd(t,_.operatorList.length,y):null,viewport:n,transform:a,background:o},objs:this.objs,commonObjs:this.commonObjs,annotationCanvasMap:c,operatorList:_.operatorList,pageIndex:this._pageIndex,canvasFactory:this._transport.canvasFactory,filterFactory:this._transport.filterFactory,useRequestAnimationFrame:!v,pdfBug:this._pdfBug,pageColors:l,enableHWA:this._transport.enableHWA,operationsFilter:p});(_.renderTasks||=new Set).add(S);let C=S.task;return Promise.all([_.displayReadyCapability.promise,s]).then(([e,t])=>{if(this.destroyed){x();return}if(this._stats?.time(`Rendering`),!(t.renderingIntent&h))throw Error("Must use the same `intent`-argument when calling the `PDFPageProxy.render` and `PDFDocumentProxy.getOptionalContentConfig` methods.");S.initializeGraphics({transparency:e,optionalContentConfig:t}),S.operatorListChanged()}).catch(x),C}getOperatorList({intent:e=`display`,annotationMode:t=qc.ENABLE,printAnnotationStorage:n=null,isEditing:r=!1}={}){function i(){o.operatorList.lastChunk&&(o.opListReadCapability.resolve(o.operatorList),o.renderTasks.delete(s))}let a=this._transport.getRenderingIntent(e,t,n,r,!0),o=this._intentStates.get(a.cacheKey);o||(o=Object.create(null),this._intentStates.set(a.cacheKey,o));let s;return o.opListReadCapability||(s=Object.create(null),s.operatorListChanged=i,o.opListReadCapability=Promise.withResolvers(),(o.renderTasks||=new Set).add(s),o.operatorList={fnArray:[],argsArray:[],lastChunk:!1,separateAnnots:null},this._stats?.time(`Page Request`),this._pumpOperatorList(a)),o.opListReadCapability.promise}streamTextContent({includeMarkedContent:e=!1,disableNormalization:t=!1}={}){return this._transport.messageHandler.sendWithStream(`GetTextContent`,{pageId:this.#t.getPageId(this._pageIndex+1)-1,pageIndex:this._pageIndex,includeMarkedContent:e===!0,disableNormalization:t===!0},{highWaterMark:100,size(e){return e.items.length}})}getTextContent(e={}){if(this._transport._htmlForXfa)return this.getXfa().then(e=>Ll.textContent(e));let t=this.streamTextContent(e);return new Promise(function(e,n){function r(){i.read().then(function({value:t,done:n}){if(n){e(a);return}a.lang??=t.lang,Object.assign(a.styles,t.styles),a.items.push(...t.items),r()},n)}let i=t.getReader(),a={items:[],styles:Object.create(null),lang:null};r()})}getStructTree(){return this._transport.getStructTree(this._pageIndex)}_destroy(){this.destroyed=!0;let e=[];for(let t of this._intentStates.values())if(this._abortOperatorList({intentState:t,reason:Error(`Page was destroyed.`),force:!0}),!t.opListReadCapability)for(let n of t.renderTasks)e.push(n.completed),n.cancel();return this.objs.clear(),this.#e=!1,Promise.all(e)}cleanup(e=!1){this.#e=!0;let t=this.#n();return e&&t&&(this._stats&&=new Jl),t}#n(){if(!this.#e||this.destroyed)return!1;for(let{renderTasks:e,operatorList:t}of this._intentStates.values())if(e.size>0||!t.lastChunk)return!1;return this._intentStates.clear(),this.objs.clear(),this.#e=!1,!0}_startRenderPage(e,t){let n=this._intentStates.get(t);n&&(this._stats?.timeEnd(`Page Request`),n.displayReadyCapability?.resolve(e))}_renderPageChunk(e,t){for(let n=0,r=e.length;n<r;n++)t.operatorList.fnArray.push(e.fnArray[n]),t.operatorList.argsArray.push(e.argsArray[n]);t.operatorList.lastChunk=e.lastChunk,t.operatorList.separateAnnots=e.separateAnnots;for(let e of t.renderTasks)e.operatorListChanged();e.lastChunk&&this.#n()}_pumpOperatorList({renderingIntent:e,cacheKey:t,annotationStorageSerializable:n,modifiedIds:r}){let{map:i,transfer:a}=n,o=this._transport.messageHandler.sendWithStream(`GetOperatorList`,{pageId:this.#t.getPageId(this._pageIndex+1)-1,pageIndex:this._pageIndex,intent:e,cacheKey:t,annotationStorage:i,modifiedIds:r},a).getReader(),s=this._intentStates.get(t);s.streamReader=o;let c=()=>{o.read().then(({value:e,done:t})=>{if(t){s.streamReader=null;return}this._transport.destroyed||(this._renderPageChunk(e,s),c())},e=>{if(s.streamReader=null,!this._transport.destroyed){if(s.operatorList){s.operatorList.lastChunk=!0;for(let e of s.renderTasks)e.operatorListChanged();this.#n()}if(s.displayReadyCapability)s.displayReadyCapability.reject(e);else if(s.opListReadCapability)s.opListReadCapability.reject(e);else throw e}})};c()}_abortOperatorList({intentState:e,reason:t,force:n=!1}){if(e.streamReader){if(e.streamReaderCancelTimeout&&=(clearTimeout(e.streamReaderCancelTimeout),null),!n){if(e.renderTasks.size>0)return;if(t instanceof Ul){let n=np;t.extraDelay>0&&t.extraDelay<1e3&&(n+=t.extraDelay),e.streamReaderCancelTimeout=setTimeout(()=>{e.streamReaderCancelTimeout=null,this._abortOperatorList({intentState:e,reason:t,force:!0})},n);return}}if(e.streamReader.cancel(new xl(t.message)).catch(()=>{}),e.streamReader=null,!this._transport.destroyed){for(let[t,n]of this._intentStates)if(n===e){this._intentStates.delete(t);break}this.cleanup()}}}get stats(){return this._stats}},cp=class e{#e=Promise.withResolvers();#t=null;#n=null;#r=null;static#i=0;static#a=!1;static#o=new WeakMap;static{Uc&&(this.#a=!0,pf.workerSrc||=`./pdf.worker.mjs`),this._isSameOrigin=(e,t)=>{let n=URL.parse(e);if(!n?.origin||n.origin===`null`)return!1;let r=new URL(t,n);return n.origin===r.origin},this._createCDNWrapper=e=>{let t=`await import("${e}");`;return URL.createObjectURL(new Blob([t],{type:`text/javascript`}))},this.fromPort=e=>{if(Ql("`PDFWorker.fromPort` - please use `PDFWorker.create` instead."),!e?.port)throw Error(`PDFWorker.fromPort - invalid method signature.`);return this.create(e)}}constructor({name:t=null,port:n=null,verbosity:r=cl()}={}){if(this.name=t,this.destroyed=!1,this.verbosity=r,n){if(e.#o.has(n))throw Error(`Cannot use more than one PDFWorker per port.`);e.#o.set(n,this),this.#c(n)}else this.#l()}get promise(){return this.#e.promise}#s(){this.#e.resolve(),this.#t.send(`configure`,{verbosity:this.verbosity})}get port(){return this.#n}get messageHandler(){return this.#t}#c(e){this.#n=e,this.#t=new ad(`main`,`worker`,e),this.#t.on(`ready`,()=>{}),this.#s()}#l(){if(e.#a||e.#d){this.#u();return}let{workerSrc:t}=e;try{e._isSameOrigin(window.location,t)||(t=e._createCDNWrapper(new URL(t,window.location).href));let n=new Worker(t,{type:`module`}),r=new ad(`main`,`worker`,n),i=()=>{a.abort(),r.destroy(),n.terminate(),this.destroyed?this.#e.reject(Error(`Worker was destroyed`)):this.#u()},a=new AbortController;n.addEventListener(`error`,()=>{this.#r||i()},{signal:a.signal}),r.on(`test`,e=>{if(a.abort(),this.destroyed||!e){i();return}this.#t=r,this.#n=n,this.#r=n,this.#s()}),r.on(`ready`,e=>{if(a.abort(),this.destroyed){i();return}try{o()}catch{this.#u()}});let o=()=>{let e=new Uint8Array;r.send(`test`,e,[e.buffer])};o();return}catch{ll(`The worker has been disabled.`)}this.#u()}#u(){e.#a||=(X(`Setting up fake worker.`),!0),e._setupFakeWorkerGlobal.then(t=>{if(this.destroyed){this.#e.reject(Error(`Worker was destroyed`));return}let n=new ed;this.#n=n;let r=`fake${e.#i++}`,i=new ad(r+`_worker`,r,n);t.setup(i,n),this.#t=new ad(r,r+`_worker`,n),this.#s()}).catch(e=>{this.#e.reject(Error(`Setting up fake worker failed: "${e.message}".`))})}destroy(){this.destroyed=!0,this.#r?.terminate(),this.#r=null,e.#o.delete(this.#n),this.#n=null,this.#t?.destroy(),this.#t=null}static create(t){let n=this.#o.get(t?.port);if(n){if(n._pendingDestroy)throw Error("PDFWorker.create - the worker is being destroyed.\nPlease remember to await `PDFDocumentLoadingTask.destroy()`-calls.");return n}return new e(t)}static get workerSrc(){if(pf.workerSrc)return pf.workerSrc;throw Error(`No "GlobalWorkerOptions.workerSrc" specified.`)}static get#d(){try{return globalThis.pdfjsWorker?.WorkerMessageHandler||null}catch{return null}}static get _setupFakeWorkerGlobal(){return Z(this,`_setupFakeWorkerGlobal`,(async()=>this.#d?this.#d:(await import(this.workerSrc)).WorkerMessageHandler)())}},lp=class{downloadInfoCapability=Promise.withResolvers();#e=null;#t=new Map;#n=null;#r=new Map;#i=new Map;#a=new Map;#o=null;#s=yu.instance;constructor(e,t,n,r,i){this.messageHandler=e,this.loadingTask=t,this.#n=n,this.commonObjs=new Qf,this.fontLoader=new Hu({ownerDocument:r.ownerDocument,styleElement:r.styleElement}),this.enableHWA=r.enableHWA,this.loadingParams=r.loadingParams,this._params=r,this.canvasFactory=i.canvasFactory,this.filterFactory=i.filterFactory,this.cMapReaderFactory=i.cMapReaderFactory,this.standardFontDataFactory=i.standardFontDataFactory,this.wasmFactory=i.wasmFactory,this.destroyed=!1,this.destroyCapability=null,this.setupMessageHandler(),this.#s.addListener(this.#c.bind(this))}#c(){let e=new Map,t=new Map;for(let n=0,r=this.#s.pagesNumber;n<r;n++){let r=this.#s.getPrevPageNumber(n+1)-1,i=this.#r.get(r);i&&e.set(n,i);let a=this.#i.get(r);a&&t.set(n,a)}this.#r=e,this.#i=t}#l(e,t=null){let n=this.#t.get(e);if(n)return n;let r=this.messageHandler.sendWithPromise(e,t);return this.#t.set(e,r),r}#u({loaded:e,total:t}){this.loadingTask.onProgress?.({loaded:e,total:t,percent:Il(Math.round(e/t*100),0,100)})}get annotationStorage(){return Z(this,`annotationStorage`,new Bu)}getRenderingIntent(e,t=qc.ENABLE,n=null,r=!1,i=!1){let a=Kc.DISPLAY,o=zu;switch(e){case`any`:a=Kc.ANY;break;case`display`:break;case`print`:a=Kc.PRINT;break;default:X(`getRenderingIntent - invalid intent: ${e}`)}let s=a&Kc.PRINT&&n instanceof Vu?n:this.annotationStorage;switch(t){case qc.DISABLE:a+=Kc.ANNOTATIONS_DISABLE;break;case qc.ENABLE:break;case qc.ENABLE_FORMS:a+=Kc.ANNOTATIONS_FORMS;break;case qc.ENABLE_STORAGE:a+=Kc.ANNOTATIONS_STORAGE,o=s.serializable;break;default:X(`getRenderingIntent - invalid annotationMode: ${t}`)}r&&(a+=Kc.IS_EDITING),i&&(a+=Kc.OPLIST);let{ids:c,hash:l}=s.modifiedIds,u=[a,o.hash,l];return{renderingIntent:a,cacheKey:u.join(`_`),annotationStorageSerializable:o,modifiedIds:c}}destroy(){if(this.destroyCapability)return this.destroyCapability.promise;this.destroyed=!0,this.destroyCapability=Promise.withResolvers(),this.#o?.reject(Error(`Worker was destroyed during onPassword callback`));let e=[];for(let t of this.#r.values())e.push(t._destroy());this.#r.clear(),this.#i.clear(),this.#a.clear(),this.hasOwnProperty(`annotationStorage`)&&this.annotationStorage.resetModified();let t=this.messageHandler.sendWithPromise(`Terminate`,null);return e.push(t),Promise.all(e).then(()=>{this.commonObjs.clear(),this.fontLoader.clear(),this.#t.clear(),this.filterFactory.destroy(),tp.cleanup(),this.#n?.cancelAllRequests(new xl(`Worker was terminated.`)),this.messageHandler?.destroy(),this.messageHandler=null,this.destroyCapability.resolve()},this.destroyCapability.reject),this.destroyCapability.promise}setupMessageHandler(){let{messageHandler:e,loadingTask:t}=this;e.on(`GetReader`,(e,t)=>{dl(this.#n,"GetReader - no `BasePDFStream` instance available."),this.#e=this.#n.getFullReader(),this.#e.onProgress=e=>this.#u(e),t.onPull=()=>{this.#e.read().then(function({value:e,done:n}){if(n){t.close();return}dl(e instanceof ArrayBuffer,`GetReader - expected an ArrayBuffer.`),t.enqueue(new Uint8Array(e),1,[e])}).catch(e=>{t.error(e)})},t.onCancel=e=>{this.#e.cancel(e),t.ready.catch(e=>{if(!this.destroyed)throw e})}}),e.on(`ReaderHeadersReady`,async e=>{await this.#e.headersReady;let{isStreamingSupported:t,isRangeSupported:n,contentLength:r}=this.#e;return t&&n&&(this.#e.onProgress=null),{isStreamingSupported:t,isRangeSupported:n,contentLength:r}}),e.on(`GetRangeReader`,(e,t)=>{dl(this.#n,"GetRangeReader - no `BasePDFStream` instance available.");let n=this.#n.getRangeReader(e.begin,e.end);if(!n){t.close();return}t.onPull=()=>{n.read().then(function({value:e,done:n}){if(n){t.close();return}dl(e instanceof ArrayBuffer,`GetRangeReader - expected an ArrayBuffer.`),t.enqueue(new Uint8Array(e),1,[e])}).catch(e=>{t.error(e)})},t.onCancel=e=>{n.cancel(e),t.ready.catch(e=>{if(!this.destroyed)throw e})}}),e.on(`GetDoc`,({pdfInfo:e})=>{this.#s.pagesNumber=e.numPages,this._numPages=e.numPages,this._htmlForXfa=e.htmlForXfa,delete e.htmlForXfa,t._capability.resolve(new op(e,this))}),e.on(`DocException`,e=>{t._capability.reject(id(e))}),e.on(`PasswordRequest`,e=>{this.#o=Promise.withResolvers();try{if(!t.onPassword)throw id(e);t.onPassword(e=>{e instanceof Error?this.#o.reject(e):this.#o.resolve({password:e})},e.code)}catch(e){this.#o.reject(e)}return this.#o.promise}),e.on(`DataLoaded`,e=>{this.#u({loaded:e.length,total:e.length}),this.downloadInfoCapability.resolve(e)}),e.on(`StartRenderPage`,e=>{this.destroyed||this.#r.get(e.pageIndex)._startRenderPage(e.transparency,e.cacheKey)}),e.on(`commonobj`,([t,n,r])=>{if(this.destroyed||this.commonObjs.has(t))return null;switch(n){case`Font`:if(`error`in r){let e=r.error;X(`Error during font loading: ${e}`),this.commonObjs.resolve(t,e);break}let i=new Uu(new Ku(r),this._params.pdfBug&&globalThis.FontInspector?.enabled?(e,t)=>globalThis.FontInspector.fontAdded(e,t):null,r.extra,r.charProcOperatorList);this.fontLoader.bind(i).catch(()=>e.sendWithPromise(`FontFallback`,{id:t})).finally(()=>{!i.fontExtraProperties&&i.data&&i.clearData(),this.commonObjs.resolve(t,i)});break;case`CopyLocalImage`:let{imageRef:a}=r;dl(a,`The imageRef must be defined.`);for(let e of this.#r.values())for(let[,n]of e.objs)if(n?.ref===a)return n.dataLen?(this.commonObjs.resolve(t,structuredClone(n)),n.dataLen):null;break;case`FontPath`:this.commonObjs.resolve(t,new Ju(r));break;case`Image`:this.commonObjs.resolve(t,r);break;case`Pattern`:let o=new qu(r);this.commonObjs.resolve(t,o.getIR());break;default:throw Error(`Got unknown common object type ${n}`)}return null}),e.on(`obj`,([e,t,n,r])=>{if(this.destroyed)return;let i=this.#r.get(t);if(!i.objs.has(e)){if(i._intentStates.size===0){r?.bitmap?.close();return}switch(n){case`Image`:case`Pattern`:i.objs.resolve(e,r);break;default:throw Error(`Got unknown object type ${n}`)}}}),e.on(`DocProgress`,e=>{this.destroyed||this.#u(e)}),e.on(`FetchBinaryData`,async e=>{if(this.destroyed)throw Error(`Worker was destroyed.`);let t=this[e.type];if(!t)throw Error(`${e.type} not initialized, see the \`useWorkerFetch\` parameter.`);return t.fetch(e)})}getData(){return this.messageHandler.sendWithPromise(`GetData`,null)}saveDocument(){this.annotationStorage.size<=0&&X("saveDocument called while `annotationStorage` is empty, please use the getData-method instead.");let{map:e,transfer:t}=this.annotationStorage.serializable;return this.messageHandler.sendWithPromise(`SaveDocument`,{isPureXfa:!!this._htmlForXfa,numPages:this._numPages,annotationStorage:e,filename:this.#e?.filename??null},t).finally(()=>{this.annotationStorage.resetModified()})}extractPages(e){return this.messageHandler.sendWithPromise(`ExtractPages`,{pageInfos:e})}getPage(e){if(!Number.isInteger(e)||e<=0||e>this.#s.pagesNumber)return Promise.reject(Error(`Invalid page request.`));let t=e-1,n=this.#s.getPageId(e)-1,r=this.#i.get(t);if(r)return r;let i=this.messageHandler.sendWithPromise(`GetPage`,{pageIndex:n}).then(e=>{if(this.destroyed)throw Error(`Transport destroyed`);e.refStr&&this.#a.set(e.refStr,n);let r=new sp(t,e,this,this._params.pdfBug);return this.#r.set(t,r),r});return this.#i.set(t,i),i}async getPageIndex(e){if(!Qu(e))throw Error(`Invalid pageIndex request.`);let t=await this.messageHandler.sendWithPromise(`GetPageIndex`,{num:e.num,gen:e.gen});return this.#s.getPageNumber(t+1)-1}getAnnotations(e,t){return this.messageHandler.sendWithPromise(`GetAnnotations`,{pageIndex:this.#s.getPageId(e+1)-1,intent:t})}getFieldObjects(){return this.#l(`GetFieldObjects`)}hasJSActions(){return this.#l(`HasJSActions`)}getCalculationOrderIds(){return this.messageHandler.sendWithPromise(`GetCalculationOrderIds`,null)}getDestinations(){return this.messageHandler.sendWithPromise(`GetDestinations`,null)}getDestination(e){return typeof e==`string`?this.messageHandler.sendWithPromise(`GetDestination`,{id:e}):Promise.reject(Error(`Invalid destination request.`))}getPageLabels(){return this.messageHandler.sendWithPromise(`GetPageLabels`,null)}getPageLayout(){return this.messageHandler.sendWithPromise(`GetPageLayout`,null)}getPageMode(){return this.messageHandler.sendWithPromise(`GetPageMode`,null)}getViewerPreferences(){return this.messageHandler.sendWithPromise(`GetViewerPreferences`,null)}getOpenAction(){return this.messageHandler.sendWithPromise(`GetOpenAction`,null)}getAttachments(){return this.messageHandler.sendWithPromise(`GetAttachments`,null)}getAnnotationsByType(e,t){return this.messageHandler.sendWithPromise(`GetAnnotationsByType`,{types:e,pageIndexesToSkip:t})}getDocJSActions(){return this.#l(`GetDocJSActions`)}getPageJSActions(e){return this.messageHandler.sendWithPromise(`GetPageJSActions`,{pageIndex:this.#s.getPageId(e+1)-1})}getStructTree(e){return this.messageHandler.sendWithPromise(`GetStructTree`,{pageIndex:this.#s.getPageId(e+1)-1})}getOutline(){return this.messageHandler.sendWithPromise(`GetOutline`,null)}getOptionalContentConfig(e){return this.#l(`GetOptionalContentConfig`).then(t=>new _f(t,e))}getPermissions(){return this.messageHandler.sendWithPromise(`GetPermissions`,null)}getMetadata(){let e=`GetMetadata`,t=this.#t.get(e);if(t)return t;let n=this.messageHandler.sendWithPromise(e,null).then(e=>({info:e[0],metadata:e[1]?new mf(e[1]):null,contentDispositionFilename:this.#e?.filename??null,contentLength:this.#e?.contentLength??null,hasStructTree:e[2]}));return this.#t.set(e,n),n}getMarkInfo(){return this.messageHandler.sendWithPromise(`GetMarkInfo`,null)}async startCleanup(e=!1){if(!this.destroyed){await this.messageHandler.sendWithPromise(`Cleanup`,null);for(let e of this.#r.values())if(!e.cleanup())throw Error(`startCleanup: Page ${e.pageNumber} is currently rendering.`);this.commonObjs.clear(),e||this.fontLoader.clear(),this.#t.clear(),this.filterFactory.destroy(!0),tp.cleanup()}}cachedPageNumber(e){if(!Qu(e))return null;let t=e.gen===0?`${e.num}R`:`${e.num}R${e.gen}`,n=this.#a.get(t);return n>=0?this.#s.getPageNumber(n+1):null}},up=class{_internalRenderTask=null;onContinue=null;onError=null;constructor(e){this._internalRenderTask=e}get promise(){return this._internalRenderTask.capability.promise}cancel(e=0){this._internalRenderTask.cancel(null,e)}get separateAnnots(){let{separateAnnots:e}=this._internalRenderTask.operatorList;if(!e)return!1;let{annotationCanvasMap:t}=this._internalRenderTask;return e.form||e.canvas&&t?.size>0}},dp=class e{#e=null;static#t=new WeakSet;constructor({callback:e,params:t,objs:n,commonObjs:r,annotationCanvasMap:i,operatorList:a,pageIndex:o,canvasFactory:s,filterFactory:c,useRequestAnimationFrame:l=!1,pdfBug:u=!1,pageColors:d=null,enableHWA:f=!1,operationsFilter:p=null}){this.callback=e,this.params=t,this.objs=n,this.commonObjs=r,this.annotationCanvasMap=i,this.operatorListIdx=null,this.operatorList=a,this._pageIndex=o,this.canvasFactory=s,this.filterFactory=c,this._pdfBug=u,this.pageColors=d,this.running=!1,this.graphicsReadyCallback=null,this.graphicsReady=!1,this._useRequestAnimationFrame=l===!0&&typeof window<`u`,this.cancelled=!1,this.capability=Promise.withResolvers(),this.task=new up(this),this._cancelBound=this.cancel.bind(this),this._continueBound=this._continue.bind(this),this._scheduleNextBound=this._scheduleNext.bind(this),this._nextBound=this._next.bind(this),this._canvas=t.canvas,this._canvasContext=t.canvas?null:t.canvasContext,this._enableHWA=f,this._dependencyTracker=t.dependencyTracker,this._operationsFilter=p}get completed(){return this.capability.promise.catch(function(){})}initializeGraphics({transparency:t=!1,optionalContentConfig:n}){if(this.cancelled)return;if(this._canvas){if(e.#t.has(this._canvas))throw Error(`Cannot use the same canvas during multiple render() operations. Use different canvas or ensure previous operations were cancelled or completed.`);e.#t.add(this._canvas)}this._pdfBug&&globalThis.StepperManager?.enabled&&(this.stepper=globalThis.StepperManager.create(this._pageIndex),this.stepper.init(this.operatorList),this.stepper.nextBreakPoint=this.stepper.getNextBreakPoint());let{viewport:r,transform:i,background:a,dependencyTracker:o}=this.params;this.gfx=new ff(this._canvasContext||this._canvas.getContext(`2d`,{alpha:!1,willReadFrequently:!this._enableHWA}),this.commonObjs,this.objs,this.canvasFactory,this.filterFactory,{optionalContentConfig:n},this.annotationCanvasMap,this.pageColors,o),this.gfx.beginDrawing({transform:i,viewport:r,transparency:t,background:a}),this.operatorListIdx=0,this.graphicsReady=!0,this.graphicsReadyCallback?.()}cancel(t=null,n=0){this.running=!1,this.cancelled=!0,this.gfx?.endDrawing(),this.#e&&=(window.cancelAnimationFrame(this.#e),null),e.#t.delete(this._canvas),t||=new Ul(`Rendering cancelled, page ${this._pageIndex+1}`,n),this.callback(t),this.task.onError?.(t)}operatorListChanged(){if(!this.graphicsReady){this.graphicsReadyCallback||=this._continueBound;return}this.gfx.dependencyTracker?.growOperationsCount(this.operatorList.fnArray.length),this.stepper?.updateOperatorList(this.operatorList),!this.running&&this._continue()}_continue(){this.running=!0,!this.cancelled&&(this.task.onContinue?this.task.onContinue(this._scheduleNextBound):this._scheduleNext())}_scheduleNext(){this._useRequestAnimationFrame?this.#e=window.requestAnimationFrame(()=>{this.#e=null,this._nextBound().catch(this._cancelBound)}):Promise.resolve().then(this._nextBound).catch(this._cancelBound)}async _next(){this.cancelled||(this.operatorListIdx=this.gfx.executeOperatorList(this.operatorList,this.operatorListIdx,this._continueBound,this.stepper,this._operationsFilter),this.operatorListIdx===this.operatorList.argsArray.length&&(this.running=!1,this.operatorList.lastChunk&&(this.gfx.endDrawing(),e.#t.delete(this._canvas),this.callback())))}},fp=`5.4.624`,pp=`384c6208b`,mp=class e{#e=null;#t=null;#n;#r=null;#i=!1;#a=!1;#o=null;#s;#c=null;#l=null;static#u=null;static get _keyboardManager(){return Z(this,`_keyboardManager`,new Du([[[`Escape`,`mac+Escape`],e.prototype._hideDropdownFromKeyboard],[[` `,`mac+ `],e.prototype._colorSelectFromKeyboard],[[`ArrowDown`,`ArrowRight`,`mac+ArrowDown`,`mac+ArrowRight`],e.prototype._moveToNext],[[`ArrowUp`,`ArrowLeft`,`mac+ArrowUp`,`mac+ArrowLeft`],e.prototype._moveToPrevious],[[`Home`,`mac+Home`],e.prototype._moveToBeginning],[[`End`,`mac+End`],e.prototype._moveToEnd]]))}constructor({editor:t=null,uiManager:n=null}){t?(this.#a=!1,this.#o=t):this.#a=!0,this.#l=t?._uiManager||n,this.#s=this.#l._eventBus,this.#n=t?.color?.toUpperCase()||this.#l?.highlightColors.values().next().value||`#FFFF98`,e.#u||=Object.freeze({blue:`pdfjs-editor-colorpicker-blue`,green:`pdfjs-editor-colorpicker-green`,pink:`pdfjs-editor-colorpicker-pink`,red:`pdfjs-editor-colorpicker-red`,yellow:`pdfjs-editor-colorpicker-yellow`})}renderButton(){let e=this.#e=document.createElement(`button`);e.className=`colorPicker`,e.tabIndex=`0`,e.setAttribute(`data-l10n-id`,`pdfjs-editor-colorpicker-button`),e.ariaHasPopup=`true`,this.#o&&(e.ariaControls=`${this.#o.id}_colorpicker_dropdown`);let t=this.#l._signal;e.addEventListener(`click`,this.#m.bind(this),{signal:t}),e.addEventListener(`keydown`,this.#p.bind(this),{signal:t});let n=this.#t=document.createElement(`span`);return n.className=`swatch`,n.ariaHidden=`true`,n.style.backgroundColor=this.#n,e.append(n),e}renderMainDropdown(){let e=this.#r=this.#d();return e.ariaOrientation=`horizontal`,e.ariaLabelledBy=`highlightColorPickerLabel`,e}#d(){let t=document.createElement(`div`),n=this.#l._signal;t.addEventListener(`contextmenu`,Xl,{signal:n}),t.className=`dropdown`,t.role=`listbox`,t.ariaMultiSelectable=`false`,t.ariaOrientation=`vertical`,t.setAttribute(`data-l10n-id`,`pdfjs-editor-colorpicker-dropdown`),this.#o&&(t.id=`${this.#o.id}_colorpicker_dropdown`);for(let[r,i]of this.#l.highlightColors){let a=document.createElement(`button`);a.tabIndex=`0`,a.role=`option`,a.setAttribute(`data-color`,i),a.title=r,a.setAttribute(`data-l10n-id`,e.#u[r]);let o=document.createElement(`span`);a.append(o),o.className=`swatch`,o.style.backgroundColor=i,a.ariaSelected=i===this.#n,a.addEventListener(`click`,this.#f.bind(this,i),{signal:n}),t.append(a)}return t.addEventListener(`keydown`,this.#p.bind(this),{signal:n}),t}#f(e,t){t.stopPropagation(),this.#s.dispatch(`switchannotationeditorparams`,{source:this,type:Yc.HIGHLIGHT_COLOR,value:e}),this.updateColor(e)}_colorSelectFromKeyboard(e){if(e.target===this.#e){this.#m(e);return}let t=e.target.getAttribute(`data-color`);t&&this.#f(t,e)}_moveToNext(e){if(!this.#g){this.#m(e);return}if(e.target===this.#e){this.#r.firstElementChild?.focus();return}e.target.nextSibling?.focus()}_moveToPrevious(e){if(e.target===this.#r?.firstElementChild||e.target===this.#e){this.#g&&this._hideDropdownFromKeyboard();return}this.#g||this.#m(e),e.target.previousSibling?.focus()}_moveToBeginning(e){if(!this.#g){this.#m(e);return}this.#r.firstElementChild?.focus()}_moveToEnd(e){if(!this.#g){this.#m(e);return}this.#r.lastElementChild?.focus()}#p(t){e._keyboardManager.exec(this,t)}#m(e){if(this.#g){this.hideDropdown();return}if(this.#i=e.detail===0,this.#c||(this.#c=new AbortController,window.addEventListener(`pointerdown`,this.#h.bind(this),{signal:this.#l.combinedSignal(this.#c)})),this.#e.ariaExpanded=`true`,this.#r){this.#r.classList.remove(`hidden`);return}let t=this.#r=this.#d();this.#e.append(t)}#h(e){this.#r?.contains(e.target)||this.hideDropdown()}hideDropdown(){this.#r?.classList.add(`hidden`),this.#e.ariaExpanded=`false`,this.#c?.abort(),this.#c=null}get#g(){return this.#r&&!this.#r.classList.contains(`hidden`)}_hideDropdownFromKeyboard(){if(!this.#a){if(!this.#g){this.#o?.unselect();return}this.hideDropdown(),this.#e.focus({preventScroll:!0,focusVisible:this.#i})}}updateColor(e){if(this.#t&&(this.#t.style.backgroundColor=e),!this.#r)return;let t=this.#l.highlightColors.values();for(let n of this.#r.children)n.ariaSelected=t.next().value===e.toUpperCase()}destroy(){this.#e?.remove(),this.#e=null,this.#t=null,this.#r?.remove(),this.#r=null}},hp=class e{#e=null;#t=null;#n=null;static#r=null;constructor(t){this.#t=t,this.#n=t._uiManager,e.#r||=Object.freeze({freetext:`pdfjs-editor-color-picker-free-text-input`,ink:`pdfjs-editor-color-picker-ink-input`})}renderButton(){if(this.#e)return this.#e;let{editorType:t,colorType:n,color:r}=this.#t,i=this.#e=document.createElement(`input`);return i.type=`color`,i.value=r||`#000000`,i.className=`basicColorPicker`,i.tabIndex=0,i.setAttribute(`data-l10n-id`,e.#r[t]),i.addEventListener(`input`,()=>{this.#n.updateParams(n,i.value)},{signal:this.#n._signal}),i}update(e){this.#e&&(this.#e.value=e)}destroy(){this.#e?.remove(),this.#e=null}hideDropdown(){}};J(531);function gp(e){return Math.floor(Math.max(0,Math.min(1,e))*255).toString(16).padStart(2,`0`)}function _p(e){return Math.max(0,Math.min(255,255*e))}var vp=class{static CMYK_G([e,t,n,r]){return[`G`,1-Math.min(1,.3*e+.59*n+.11*t+r)]}static G_CMYK([e]){return[`CMYK`,0,0,0,1-e]}static G_RGB([e]){return[`RGB`,e,e,e]}static G_rgb([e]){return e=_p(e),[e,e,e]}static G_HTML([e]){let t=gp(e);return`#${t}${t}${t}`}static RGB_G([e,t,n]){return[`G`,.3*e+.59*t+.11*n]}static RGB_rgb(e){return e.map(_p)}static RGB_HTML(e){return`#${e.map(gp).join(``)}`}static T_HTML(){return`#00000000`}static T_rgb(){return[null]}static CMYK_RGB([e,t,n,r]){return[`RGB`,1-Math.min(1,e+r),1-Math.min(1,n+r),1-Math.min(1,t+r)]}static CMYK_rgb([e,t,n,r]){return[_p(1-Math.min(1,e+r)),_p(1-Math.min(1,n+r)),_p(1-Math.min(1,t+r))]}static CMYK_HTML(e){let t=this.CMYK_RGB(e).slice(1);return this.RGB_HTML(t)}static RGB_CMYK([e,t,n]){let r=1-e,i=1-t,a=1-n;return[`CMYK`,r,i,a,Math.min(r,i,a)]}},yp=class{create(e,t,n=!1){if(e<=0||t<=0)throw Error(`Invalid SVG dimensions`);let r=this._createSVG(`svg:svg`);return r.setAttribute(`version`,`1.1`),n||(r.setAttribute(`width`,`${e}px`),r.setAttribute(`height`,`${t}px`)),r.setAttribute(`preserveAspectRatio`,`none`),r.setAttribute(`viewBox`,`0 0 ${e} ${t}`),r}createElement(e){if(typeof e!=`string`)throw Error(`Invalid SVG element type`);return this._createSVG(e)}_createSVG(e){ul("Abstract method `_createSVG` called.")}},bp=class extends yp{_createSVG(e){return document.createElementNS(zl,e)}},xp=9,Sp=new WeakSet,Cp=new Date().getTimezoneOffset()*60*1e3,wp=class{static create(e){switch(e.data.annotationType){case el.LINK:return new Dp(e);case el.TEXT:return new Op(e);case el.WIDGET:switch(e.data.fieldType){case`Tx`:return new Ap(e);case`Btn`:return e.data.radioButton?new Np(e):e.data.checkBox?new Mp(e):new Pp(e);case`Ch`:return new Fp(e);case`Sig`:return new jp(e)}return new kp(e);case el.POPUP:return new Ip(e);case el.FREETEXT:return new Rp(e);case el.LINE:return new zp(e);case el.SQUARE:return new Bp(e);case el.CIRCLE:return new Vp(e);case el.POLYLINE:return new Hp(e);case el.CARET:return new Wp(e);case el.INK:return new Gp(e);case el.POLYGON:return new Up(e);case el.HIGHLIGHT:return new Kp(e);case el.UNDERLINE:return new qp(e);case el.SQUIGGLY:return new Jp(e);case el.STRIKEOUT:return new Yp(e);case el.STAMP:return new Xp(e);case el.FILEATTACHMENT:return new Zp(e);default:return new Tp(e)}}},Tp=class e{#e=null;#t=!1;#n=null;constructor(e,{isRenderable:t=!1,ignoreBorder:n=!1,createQuadrilaterals:r=!1}={}){this.isRenderable=t,this.data=e.data,this.layer=e.layer,this.linkService=e.linkService,this.downloadManager=e.downloadManager,this.imageResourcesPath=e.imageResourcesPath,this.renderForms=e.renderForms,this.svgFactory=e.svgFactory,this.annotationStorage=e.annotationStorage,this.enableComment=e.enableComment,this.enableScripting=e.enableScripting,this.hasJSActions=e.hasJSActions,this._fieldObjects=e.fieldObjects,this.parent=e.parent,this.hasOwnCommentButton=!1,t&&(this.contentElement=this.container=this._createContainer(n)),r&&this._createQuadrilaterals()}static _hasPopupData({contentsObj:e,richText:t}){return!!(e?.str||t?.str)}get _isEditable(){return this.data.isEditable}get hasPopupData(){return e._hasPopupData(this.data)||this.enableComment&&!!this.commentText}get commentData(){let{data:e}=this,t=this.annotationStorage?.getEditor(e.id);return t?t.getData():e}get hasCommentButton(){return this.enableComment&&this.hasPopupElement}get commentButtonPosition(){let e=this.annotationStorage?.getEditor(this.data.id);if(e)return e.commentButtonPositionInPage;let{quadPoints:t,inkLists:n,rect:r}=this.data,i=-1/0,a=-1/0;if(t?.length>=8){for(let e=0;e<t.length;e+=8)t[e+1]>a?(a=t[e+1],i=t[e+2]):t[e+1]===a&&(i=Math.max(i,t[e+2]));return[i,a]}if(n?.length>=1){for(let e of n)for(let t=0,n=e.length;t<n;t+=2)e[t+1]>a?(a=e[t+1],i=e[t]):e[t+1]===a&&(i=Math.max(i,e[t]));if(i!==1/0)return[i,a]}return r?[r[2],r[3]]:null}_normalizePoint(e){let{page:{view:t},viewport:{rawDims:{pageWidth:n,pageHeight:r,pageX:i,pageY:a}}}=this.parent;return e[1]=t[3]-e[1]+t[1],e[0]=100*(e[0]-i)/n,e[1]=100*(e[1]-a)/r,e}get commentText(){let{data:e}=this;return this.annotationStorage.getRawValue(`${Jc}${e.id}`)?.popup?.contents||e.contentsObj?.str||``}set commentText(e){let{data:t}=this,n={deleted:!e,contents:e||``};this.annotationStorage.updateEditor(t.id,{popup:n})||this.annotationStorage.setValue(`${Jc}${t.id}`,{id:t.id,annotationType:t.annotationType,page:this.parent.page,popup:n,popupRef:t.popupRef,modificationDate:new Date}),e||this.removePopup()}removePopup(){(this.#n?.popup||this.popup)?.remove(),this.#n=this.popup=null}updateEdited(e){if(!this.container)return;e.rect&&(this.#e||={rect:this.data.rect.slice(0)});let{rect:t,popup:n}=e;t&&this.#r(t);let r=this.#n?.popup||this.popup;!r&&n?.text&&(this._createPopup(n),r=this.#n.popup),r&&(r.updateEdited(e),n?.deleted&&(r.remove(),this.#n=null,this.popup=null))}resetEdited(){this.#e&&=(this.#r(this.#e.rect),this.#n?.popup.resetEdited(),null)}#r(e){let{container:{style:t},data:{rect:n,rotation:r},parent:{viewport:{rawDims:{pageWidth:i,pageHeight:a,pageX:o,pageY:s}}}}=this;n?.splice(0,4,...e),t.left=`${100*(e[0]-o)/i}%`,t.top=`${100*(a-e[3]+s)/a}%`,r===0?(t.width=`${100*(e[2]-e[0])/i}%`,t.height=`${100*(e[3]-e[1])/a}%`):this.setRotation(r)}_createContainer(e){let{data:t,parent:{page:n,viewport:r}}=this,i=document.createElement(`section`);i.setAttribute(`data-annotation-id`,t.id),!(this instanceof kp)&&!(this instanceof Dp)&&(i.tabIndex=0);let{style:a}=i;if(a.zIndex=this.parent.zIndex,this.parent.zIndex+=2,t.alternativeText&&(i.title=t.alternativeText),t.noRotate&&i.classList.add(`norotate`),!t.rect||this instanceof Ip){let{rotation:e}=t;return!t.hasOwnCanvas&&e!==0&&this.setRotation(e,i),i}let{width:o,height:s}=this;if(!e&&t.borderStyle.width>0){a.borderWidth=`${t.borderStyle.width}px`;let e=t.borderStyle.horizontalCornerRadius,n=t.borderStyle.verticalCornerRadius;switch(e>0||n>0?a.borderRadius=`calc(${e}px * var(--total-scale-factor)) / calc(${n}px * var(--total-scale-factor))`:this instanceof Np&&(a.borderRadius=`calc(${o}px * var(--total-scale-factor)) / calc(${s}px * var(--total-scale-factor))`),t.borderStyle.style){case tl.SOLID:a.borderStyle=`solid`;break;case tl.DASHED:a.borderStyle=`dashed`;break;case tl.BEVELED:X(`Unimplemented border style: beveled`);break;case tl.INSET:X(`Unimplemented border style: inset`);break;case tl.UNDERLINE:a.borderBottomStyle=`solid`;break;default:break}let r=t.borderColor||null;r?(this.#t=!0,a.borderColor=Q.makeHexColor(r[0]|0,r[1]|0,r[2]|0)):a.borderWidth=0}let c=Q.normalizeRect([t.rect[0],n.view[3]-t.rect[1]+n.view[1],t.rect[2],n.view[3]-t.rect[3]+n.view[1]]),{pageWidth:l,pageHeight:u,pageX:d,pageY:f}=r.rawDims;a.left=`${100*(c[0]-d)/l}%`,a.top=`${100*(c[1]-f)/u}%`;let{rotation:p}=t;return t.hasOwnCanvas||p===0?(a.width=`${100*o/l}%`,a.height=`${100*s/u}%`):this.setRotation(p,i),i}setRotation(e,t=this.container){if(!this.data.rect)return;let{pageWidth:n,pageHeight:r}=this.parent.viewport.rawDims,{width:i,height:a}=this;e%180!=0&&([i,a]=[a,i]),t.style.width=`${100*i/n}%`,t.style.height=`${100*a/r}%`,t.setAttribute(`data-main-rotation`,(360-e)%360)}get _commonActions(){let e=(e,t,n)=>{let r=n.detail[e],i=r[0],a=r.slice(1);n.target.style[t]=vp[`${i}_HTML`](a),this.annotationStorage.setValue(this.data.id,{[t]:vp[`${i}_rgb`](a)})};return Z(this,`_commonActions`,{display:e=>{let{display:t}=e.detail,n=t%2==1;this.container.style.visibility=n?`hidden`:`visible`,this.annotationStorage.setValue(this.data.id,{noView:n,noPrint:t===1||t===2})},print:e=>{this.annotationStorage.setValue(this.data.id,{noPrint:!e.detail.print})},hidden:e=>{let{hidden:t}=e.detail;this.container.style.visibility=t?`hidden`:`visible`,this.annotationStorage.setValue(this.data.id,{noPrint:t,noView:t})},focus:e=>{setTimeout(()=>e.target.focus({preventScroll:!1}),0)},userName:e=>{e.target.title=e.detail.userName},readonly:e=>{e.target.disabled=e.detail.readonly},required:e=>{this._setRequired(e.target,e.detail.required)},bgColor:t=>{e(`bgColor`,`backgroundColor`,t)},fillColor:t=>{e(`fillColor`,`backgroundColor`,t)},fgColor:t=>{e(`fgColor`,`color`,t)},textColor:t=>{e(`textColor`,`color`,t)},borderColor:t=>{e(`borderColor`,`borderColor`,t)},strokeColor:t=>{e(`strokeColor`,`borderColor`,t)},rotation:e=>{let t=e.detail.rotation;this.setRotation(t),this.annotationStorage.setValue(this.data.id,{rotation:t})}})}_dispatchEventFromSandbox(e,t){let n=this._commonActions;for(let r of Object.keys(t.detail))(e[r]||n[r])?.(t)}_setDefaultPropertiesFromJS(e){if(!this.enableScripting)return;let t=this.annotationStorage.getRawValue(this.data.id);if(!t)return;let n=this._commonActions;for(let[r,i]of Object.entries(t)){let a=n[r];a&&(a({detail:{[r]:i},target:e}),delete t[r])}}_createQuadrilaterals(){if(!this.container)return;let{quadPoints:e}=this.data;if(!e)return;let[t,n,r,i]=this.data.rect.map(e=>Math.fround(e));if(e.length===8){let[a,o,s,c]=e.subarray(2,6);if(r===a&&i===o&&t===s&&n===c)return}let{style:a}=this.container,o;if(this.#t){let{borderColor:e,borderWidth:t}=a;a.borderWidth=0,o=[`url('data:image/svg+xml;utf8,`,`<svg xmlns="http://www.w3.org/2000/svg"`,` preserveAspectRatio="none" viewBox="0 0 1 1">`,`<g fill="transparent" stroke="${e}" stroke-width="${t}">`],this.container.classList.add(`hasBorder`)}let s=r-t,c=i-n,{svgFactory:l}=this,u=l.createElement(`svg`);u.classList.add(`quadrilateralsContainer`),u.setAttribute(`width`,0),u.setAttribute(`height`,0),u.role=`none`;let d=l.createElement(`defs`);u.append(d);let f=l.createElement(`clipPath`),p=`clippath_${this.data.id}`;f.setAttribute(`id`,p),f.setAttribute(`clipPathUnits`,`objectBoundingBox`),d.append(f);for(let n=2,r=e.length;n<r;n+=8){let r=e[n],a=e[n+1],u=e[n+2],d=e[n+3],p=l.createElement(`rect`),m=(u-t)/s,h=(i-a)/c,g=(r-u)/s,_=(a-d)/c;p.setAttribute(`x`,m),p.setAttribute(`y`,h),p.setAttribute(`width`,g),p.setAttribute(`height`,_),f.append(p),o?.push(`<rect vector-effect="non-scaling-stroke" x="${m}" y="${h}" width="${g}" height="${_}"/>`)}this.#t&&(o.push(`</g></svg>')`),a.backgroundImage=o.join(``)),this.container.append(u),this.container.style.clipPath=`url(#${p})`}_createPopup(e=null){let{data:t}=this,n,r;e?(n={str:e.text},r=e.date):(n=t.contentsObj,r=t.modificationDate),this.#n=new Ip({data:{color:t.color,titleObj:t.titleObj,modificationDate:r,contentsObj:n,richText:t.richText,parentRect:t.rect,borderStyle:0,id:`popup_${t.id}`,rotation:t.rotation,noRotate:!0},linkService:this.linkService,parent:this.parent,elements:[this]})}get hasPopupElement(){return!!(this.#n||this.popup||this.data.popupRef)}get extraPopupElement(){return this.#n}render(){ul("Abstract method `AnnotationElement.render` called")}_getElementsByName(e,t=null){let n=[];if(this._fieldObjects){let r=this._fieldObjects[e];if(r)for(let{page:e,id:i,exportValues:a}of r){if(e===-1||i===t)continue;let r=typeof a==`string`?a:null,o=document.querySelector(`[data-element-id="${i}"]`);if(o&&!Sp.has(o)){X(`_getElementsByName - element not allowed: ${i}`);continue}n.push({id:i,exportValue:r,domElement:o})}return n}for(let r of document.getElementsByName(e)){let{exportValue:e}=r,i=r.getAttribute(`data-element-id`);i!==t&&Sp.has(r)&&n.push({id:i,exportValue:e,domElement:r})}return n}show(){this.container&&(this.container.hidden=!1),this.popup?.maybeShow()}hide(){this.container&&(this.container.hidden=!0),this.popup?.forceHide()}getElementsToTriggerPopup(){return this.container}addHighlightArea(){let e=this.getElementsToTriggerPopup();if(Array.isArray(e))for(let t of e)t.classList.add(`highlightArea`);else e.classList.add(`highlightArea`)}_editOnDoubleClick(){if(!this._isEditable)return;let{annotationEditorType:e,data:{id:t}}=this;this.container.addEventListener(`dblclick`,()=>{this.linkService.eventBus?.dispatch(`switchannotationeditormode`,{source:this,mode:e,editId:t,mustEnterInEditMode:!0})})}get width(){return this.data.rect[2]-this.data.rect[0]}get height(){return this.data.rect[3]-this.data.rect[1]}},Ep=class extends Tp{constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0}),this.editor=e.editor}render(){return this.container.className=`editorAnnotation`,this.container}createOrUpdatePopup(){let{editor:e}=this;e.hasComment&&this._createPopup(e.comment)}get hasCommentButton(){return this.enableComment&&this.editor.hasComment}get commentButtonPosition(){return this.editor.commentButtonPositionInPage}get commentText(){return this.editor.comment.text}set commentText(e){this.editor.comment=e,e||this.removePopup()}get commentData(){return this.editor.getData()}remove(){this.parent.removeAnnotation(this.data.id),this.container.remove(),this.container=null,this.removePopup()}},Dp=class extends Tp{constructor(e,t=null){super(e,{isRenderable:!0,ignoreBorder:!!t?.ignoreBorder,createQuadrilaterals:!0}),this.isTooltipOnly=e.data.isTooltipOnly}render(){let{data:e,linkService:t}=this,n=document.createElement(`a`);n.setAttribute(`data-element-id`,e.id);let r=!1;return e.url?(t.addLinkAttributes(n,e.url,e.newWindow),r=!0):e.action?(this._bindNamedAction(n,e.action,e.overlaidText),r=!0):e.attachment?(this.#t(n,e.attachment,e.overlaidText,e.attachmentDest),r=!0):e.setOCGState?(this.#n(n,e.setOCGState,e.overlaidText),r=!0):e.dest?(this._bindLink(n,e.dest,e.overlaidText),r=!0):(e.actions&&(e.actions.Action||e.actions[`Mouse Up`]||e.actions[`Mouse Down`])&&this.enableScripting&&this.hasJSActions&&(this._bindJSAction(n,e),r=!0),e.resetForm?(this._bindResetFormAction(n,e.resetForm),r=!0):this.isTooltipOnly&&!r&&(this._bindLink(n,``),r=!0)),this.container.classList.add(`linkAnnotation`),r&&(this.contentElement=n,this.container.append(n)),this.container}#e(){this.container.setAttribute(`data-internal-link`,``)}_bindLink(e,t,n=``){e.href=this.linkService.getDestinationHash(t),e.onclick=()=>(t&&this.linkService.goToDestination(t),!1),(t||t===``)&&this.#e(),n&&(e.title=n)}_bindNamedAction(e,t,n=``){e.href=this.linkService.getAnchorUrl(``),e.onclick=()=>(this.linkService.executeNamedAction(t),!1),n&&(e.title=n),this.#e()}#t(e,t,n=``,r=null){e.href=this.linkService.getAnchorUrl(``),t.description?e.title=t.description:n&&(e.title=n),e.onclick=()=>(this.downloadManager?.openOrDownloadData(t.content,t.filename,r),!1),this.#e()}#n(e,t,n=``){e.href=this.linkService.getAnchorUrl(``),e.onclick=()=>(this.linkService.executeSetOCGState(t),!1),n&&(e.title=n),this.#e()}_bindJSAction(e,t){e.href=this.linkService.getAnchorUrl(``);let n=new Map([[`Action`,`onclick`],[`Mouse Up`,`onmouseup`],[`Mouse Down`,`onmousedown`]]);for(let r of Object.keys(t.actions)){let i=n.get(r);i&&(e[i]=()=>(this.linkService.eventBus?.dispatch(`dispatcheventinsandbox`,{source:this,detail:{id:t.id,name:r}}),!1))}t.overlaidText&&(e.title=t.overlaidText),e.onclick||=()=>!1,this.#e()}_bindResetFormAction(e,t){let n=e.onclick;if(n||(e.href=this.linkService.getAnchorUrl(``)),this.#e(),!this._fieldObjects){X('_bindResetFormAction - "resetForm" action not supported, ensure that the `fieldObjects` parameter is provided.'),n||(e.onclick=()=>!1);return}e.onclick=()=>{n?.();let{fields:e,refs:r,include:i}=t,a=[];if(e.length!==0||r.length!==0){let t=new Set(r);for(let n of e){let e=this._fieldObjects[n]||[];for(let{id:n}of e)t.add(n)}for(let e of Object.values(this._fieldObjects))for(let n of e)t.has(n.id)===i&&a.push(n)}else for(let e of Object.values(this._fieldObjects))a.push(...e);let o=this.annotationStorage,s=[];for(let e of a){let{id:t}=e;switch(s.push(t),e.type){case`text`:{let n=e.defaultValue||``;o.setValue(t,{value:n});break}case`checkbox`:case`radiobutton`:{let n=e.defaultValue===e.exportValues;o.setValue(t,{value:n});break}case`combobox`:case`listbox`:{let n=e.defaultValue||``;o.setValue(t,{value:n});break}default:continue}let n=document.querySelector(`[data-element-id="${t}"]`);if(n){if(!Sp.has(n)){X(`_bindResetFormAction - element not allowed: ${t}`);continue}n.dispatchEvent(new Event(`resetform`))}}return this.enableScripting&&this.linkService.eventBus?.dispatch(`dispatcheventinsandbox`,{source:this,detail:{id:`app`,ids:s,name:`ResetForm`}}),!1}}},Op=class extends Tp{constructor(e){super(e,{isRenderable:!0})}render(){this.container.classList.add(`textAnnotation`);let e=document.createElement(`img`);return e.src=this.imageResourcesPath+`annotation-`+this.data.name.toLowerCase()+`.svg`,e.setAttribute(`data-l10n-id`,`pdfjs-text-annotation-type`),e.setAttribute(`data-l10n-args`,JSON.stringify({type:this.data.name})),!this.data.popupRef&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container.append(e),this.container}},kp=class extends Tp{render(){return this.container}showElementAndHideCanvas(e){this.data.hasOwnCanvas&&(e.previousSibling?.nodeName===`CANVAS`&&(e.previousSibling.hidden=!0),e.hidden=!1)}_getKeyModifier(e){return Dl.platform.isMac?e.metaKey:e.ctrlKey}_setEventListener(e,t,n,r,i){n.includes(`mouse`)?e.addEventListener(n,e=>{this.linkService.eventBus?.dispatch(`dispatcheventinsandbox`,{source:this,detail:{id:this.data.id,name:r,value:i(e),shift:e.shiftKey,modifier:this._getKeyModifier(e)}})}):e.addEventListener(n,e=>{if(n===`blur`){if(!t.focused||!e.relatedTarget)return;t.focused=!1}else if(n===`focus`){if(t.focused)return;t.focused=!0}i&&this.linkService.eventBus?.dispatch(`dispatcheventinsandbox`,{source:this,detail:{id:this.data.id,name:r,value:i(e)}})})}_setEventListeners(e,t,n,r){for(let[i,a]of n)(a===`Action`||this.data.actions?.[a])&&((a===`Focus`||a===`Blur`)&&(t||={focused:!1}),this._setEventListener(e,t,i,a,r),a===`Focus`&&!this.data.actions?.Blur?this._setEventListener(e,t,`blur`,`Blur`,null):a===`Blur`&&!this.data.actions?.Focus&&this._setEventListener(e,t,`focus`,`Focus`,null))}_setBackgroundColor(e){let t=this.data.backgroundColor||null;e.style.backgroundColor=t===null?`transparent`:Q.makeHexColor(t[0],t[1],t[2])}_setTextStyle(e){let t=[`left`,`center`,`right`],{fontColor:n}=this.data.defaultAppearanceData,r=this.data.defaultAppearanceData.fontSize||xp,i=e.style,a,o=e=>Math.round(10*e)/10;if(this.data.multiLine){let e=Math.abs(this.data.rect[3]-this.data.rect[1]-2),t=e/(Math.round(e/(Gc*r))||1);a=Math.min(r,o(t/Gc))}else{let e=Math.abs(this.data.rect[3]-this.data.rect[1]-2);a=Math.min(r,o(e/Gc))}i.fontSize=`calc(${a}px * var(--total-scale-factor))`,i.color=Q.makeHexColor(n[0],n[1],n[2]),this.data.textAlignment!==null&&(i.textAlign=t[this.data.textAlignment])}_setRequired(e,t){t?e.setAttribute(`required`,!0):e.removeAttribute(`required`),e.setAttribute(`aria-required`,t)}},Ap=class extends kp{constructor(e){let t=e.renderForms||e.data.hasOwnCanvas||!e.data.hasAppearance&&!!e.data.fieldValue;super(e,{isRenderable:t})}setPropertyOnSiblings(e,t,n,r){let i=this.annotationStorage;for(let a of this._getElementsByName(e.name,e.id))a.domElement&&(a.domElement[t]=n),i.setValue(a.id,{[r]:n})}render(){let e=this.annotationStorage,t=this.data.id;this.container.classList.add(`textWidgetAnnotation`);let n=null;if(this.renderForms){let r=e.getValue(t,{value:this.data.fieldValue}),i=r.value||``,a=e.getValue(t,{charLimit:this.data.maxLen}).charLimit;a&&i.length>a&&(i=i.slice(0,a));let o=r.formattedValue||this.data.textContent?.join(`
|
|
13
|
+
`)||null;o&&this.data.comb&&(o=o.replaceAll(/\s+/g,``));let s={userValue:i,formattedValue:o,lastCommittedValue:null,commitKey:1,focused:!1};this.data.multiLine?(n=document.createElement(`textarea`),n.textContent=o??i,this.data.doNotScroll&&(n.style.overflowY=`hidden`)):(n=document.createElement(`input`),n.type=this.data.password?`password`:`text`,n.setAttribute(`value`,o??i),this.data.doNotScroll&&(n.style.overflowX=`hidden`)),this.data.hasOwnCanvas&&(n.hidden=!0),Sp.add(n),this.contentElement=n,n.setAttribute(`data-element-id`,t),n.disabled=this.data.readOnly,n.name=this.data.fieldName,n.tabIndex=0;let{datetimeFormat:c,datetimeType:l,timeStep:u}=this.data,d=!!l&&this.enableScripting;c&&(n.title=c),this._setRequired(n,this.data.required),a&&(n.maxLength=a),n.addEventListener(`input`,r=>{e.setValue(t,{value:r.target.value}),this.setPropertyOnSiblings(n,`value`,r.target.value,`value`),s.formattedValue=null}),n.addEventListener(`resetform`,e=>{let t=this.data.defaultFieldValue??``;n.value=s.userValue=t,s.formattedValue=null});let f=e=>{let{formattedValue:t}=s;t!=null&&(e.target.value=t),e.target.scrollLeft=0};if(this.enableScripting&&this.hasJSActions){n.addEventListener(`focus`,e=>{if(s.focused)return;let{target:t}=e;if(d&&(t.type=l,u&&(t.step=u)),s.userValue){let e=s.userValue;if(d)if(l===`time`){let n=new Date(e);t.value=[n.getHours(),n.getMinutes(),n.getSeconds()].map(e=>e.toString().padStart(2,`0`)).join(`:`)}else t.value=new Date(e-Cp).toISOString().split(l===`date`?`T`:`.`,1)[0];else t.value=e}s.lastCommittedValue=t.value,s.commitKey=1,this.data.actions?.Focus||(s.focused=!0)}),n.addEventListener(`updatefromsandbox`,n=>{this.showElementAndHideCanvas(n.target),this._dispatchEventFromSandbox({value(n){s.userValue=n.detail.value??``,d||e.setValue(t,{value:s.userValue.toString()}),n.target.value=s.userValue},formattedValue(n){let{formattedValue:r}=n.detail;s.formattedValue=r,r!=null&&n.target!==document.activeElement&&(n.target.value=r);let i={formattedValue:r};d&&(i.value=r),e.setValue(t,i)},selRange(e){e.target.setSelectionRange(...e.detail.selRange)},charLimit:n=>{let{charLimit:r}=n.detail,{target:i}=n;if(r===0){i.removeAttribute(`maxLength`);return}i.setAttribute(`maxLength`,r);let a=s.userValue;!a||a.length<=r||(a=a.slice(0,r),i.value=s.userValue=a,e.setValue(t,{value:a}),this.linkService.eventBus?.dispatch(`dispatcheventinsandbox`,{source:this,detail:{id:t,name:`Keystroke`,value:a,willCommit:!0,commitKey:1,selStart:i.selectionStart,selEnd:i.selectionEnd}}))}},n)}),n.addEventListener(`keydown`,e=>{s.commitKey=1;let n=-1;if(e.key===`Escape`?n=0:e.key===`Enter`&&!this.data.multiLine?n=2:e.key===`Tab`&&(s.commitKey=3),n===-1)return;let{value:r}=e.target;s.lastCommittedValue!==r&&(s.lastCommittedValue=r,s.userValue=r,this.linkService.eventBus?.dispatch(`dispatcheventinsandbox`,{source:this,detail:{id:t,name:`Keystroke`,value:r,willCommit:!0,commitKey:n,selStart:e.target.selectionStart,selEnd:e.target.selectionEnd}}))});let r=f;f=null,n.addEventListener(`blur`,e=>{if(!s.focused||!e.relatedTarget)return;this.data.actions?.Blur||(s.focused=!1);let{target:n}=e,{value:i}=n;if(d){if(i&&l===`time`){let e=i.split(`:`).map(e=>parseInt(e,10));i=new Date(2e3,0,1,e[0],e[1],e[2]||0).valueOf(),n.step=``}else i.includes(`T`)||(i=`${i}T00:00`),i=new Date(i).valueOf();n.type=`text`}s.userValue=i,s.lastCommittedValue!==i&&this.linkService.eventBus?.dispatch(`dispatcheventinsandbox`,{source:this,detail:{id:t,name:`Keystroke`,value:i,willCommit:!0,commitKey:s.commitKey,selStart:e.target.selectionStart,selEnd:e.target.selectionEnd}}),r(e)}),this.data.actions?.Keystroke&&n.addEventListener(`beforeinput`,e=>{s.lastCommittedValue=null;let{data:n,target:r}=e,{value:i,selectionStart:a,selectionEnd:o}=r,c=a,l=o;switch(e.inputType){case`deleteWordBackward`:{let e=i.substring(0,a).match(/\w*[^\w]*$/);e&&(c-=e[0].length);break}case`deleteWordForward`:{let e=i.substring(a).match(/^[^\w]*\w*/);e&&(l+=e[0].length);break}case`deleteContentBackward`:a===o&&--c;break;case`deleteContentForward`:a===o&&(l+=1);break}e.preventDefault(),this.linkService.eventBus?.dispatch(`dispatcheventinsandbox`,{source:this,detail:{id:t,name:`Keystroke`,value:i,change:n||``,willCommit:!1,selStart:c,selEnd:l}})}),this._setEventListeners(n,s,[[`focus`,`Focus`],[`blur`,`Blur`],[`mousedown`,`Mouse Down`],[`mouseenter`,`Mouse Enter`],[`mouseleave`,`Mouse Exit`],[`mouseup`,`Mouse Up`]],e=>e.target.value)}if(f&&n.addEventListener(`blur`,f),this.data.comb){let e=(this.data.rect[2]-this.data.rect[0])/a;n.classList.add(`comb`),n.style.letterSpacing=`calc(${e}px * var(--total-scale-factor) - 1ch)`}}else n=document.createElement(`div`),n.textContent=this.data.fieldValue,n.style.verticalAlign=`middle`,n.style.display=`table-cell`,this.data.hasOwnCanvas&&(n.hidden=!0);return this._setTextStyle(n),this._setBackgroundColor(n),this._setDefaultPropertiesFromJS(n),this.container.append(n),this.container}},jp=class extends kp{constructor(e){super(e,{isRenderable:!!e.data.hasOwnCanvas})}},Mp=class extends kp{constructor(e){super(e,{isRenderable:e.renderForms})}render(){let e=this.annotationStorage,t=this.data,n=t.id,r=e.getValue(n,{value:t.exportValue===t.fieldValue}).value;typeof r==`string`&&(r=r!==`Off`,e.setValue(n,{value:r})),this.container.classList.add(`buttonWidgetAnnotation`,`checkBox`);let i=document.createElement(`input`);return Sp.add(i),i.setAttribute(`data-element-id`,n),i.disabled=t.readOnly,this._setRequired(i,this.data.required),i.type=`checkbox`,i.name=t.fieldName,r&&i.setAttribute(`checked`,!0),i.setAttribute(`exportValue`,t.exportValue),i.tabIndex=0,i.addEventListener(`change`,r=>{let{name:i,checked:a}=r.target;for(let r of this._getElementsByName(i,n)){let n=a&&r.exportValue===t.exportValue;r.domElement&&(r.domElement.checked=n),e.setValue(r.id,{value:n})}e.setValue(n,{value:a})}),i.addEventListener(`resetform`,e=>{let n=t.defaultFieldValue||`Off`;e.target.checked=n===t.exportValue}),this.enableScripting&&this.hasJSActions&&(i.addEventListener(`updatefromsandbox`,t=>{this._dispatchEventFromSandbox({value(t){t.target.checked=t.detail.value!==`Off`,e.setValue(n,{value:t.target.checked})}},t)}),this._setEventListeners(i,null,[[`change`,`Validate`],[`change`,`Action`],[`focus`,`Focus`],[`blur`,`Blur`],[`mousedown`,`Mouse Down`],[`mouseenter`,`Mouse Enter`],[`mouseleave`,`Mouse Exit`],[`mouseup`,`Mouse Up`]],e=>e.target.checked)),this._setBackgroundColor(i),this._setDefaultPropertiesFromJS(i),this.container.append(i),this.container}},Np=class extends kp{constructor(e){super(e,{isRenderable:e.renderForms})}render(){this.container.classList.add(`buttonWidgetAnnotation`,`radioButton`);let e=this.annotationStorage,t=this.data,n=t.id,r=e.getValue(n,{value:t.fieldValue===t.buttonValue}).value;if(typeof r==`string`&&(r=r!==t.buttonValue,e.setValue(n,{value:r})),r)for(let r of this._getElementsByName(t.fieldName,n))e.setValue(r.id,{value:!1});let i=document.createElement(`input`);if(Sp.add(i),i.setAttribute(`data-element-id`,n),i.disabled=t.readOnly,this._setRequired(i,this.data.required),i.type=`radio`,i.name=t.fieldName,r&&i.setAttribute(`checked`,!0),i.tabIndex=0,i.addEventListener(`change`,t=>{let{name:r,checked:i}=t.target;for(let t of this._getElementsByName(r,n))e.setValue(t.id,{value:!1});e.setValue(n,{value:i})}),i.addEventListener(`resetform`,e=>{let n=t.defaultFieldValue;e.target.checked=n!=null&&n===t.buttonValue}),this.enableScripting&&this.hasJSActions){let r=t.buttonValue;i.addEventListener(`updatefromsandbox`,t=>{this._dispatchEventFromSandbox({value:t=>{let i=r===t.detail.value;for(let r of this._getElementsByName(t.target.name)){let t=i&&r.id===n;r.domElement&&(r.domElement.checked=t),e.setValue(r.id,{value:t})}}},t)}),this._setEventListeners(i,null,[[`change`,`Validate`],[`change`,`Action`],[`focus`,`Focus`],[`blur`,`Blur`],[`mousedown`,`Mouse Down`],[`mouseenter`,`Mouse Enter`],[`mouseleave`,`Mouse Exit`],[`mouseup`,`Mouse Up`]],e=>e.target.checked)}return this._setBackgroundColor(i),this._setDefaultPropertiesFromJS(i),this.container.append(i),this.container}},Pp=class extends Dp{constructor(e){super(e,{ignoreBorder:e.data.hasAppearance})}render(){let e=super.render();e.classList.add(`buttonWidgetAnnotation`,`pushButton`);let t=e.lastChild;return this.enableScripting&&this.hasJSActions&&t&&(this._setDefaultPropertiesFromJS(t),t.addEventListener(`updatefromsandbox`,e=>{this._dispatchEventFromSandbox({},e)})),e}},Fp=class extends kp{constructor(e){super(e,{isRenderable:e.renderForms})}render(){this.container.classList.add(`choiceWidgetAnnotation`);let e=this.annotationStorage,t=this.data.id,n=e.getValue(t,{value:this.data.fieldValue}),r=document.createElement(`select`);Sp.add(r),r.setAttribute(`data-element-id`,t),r.disabled=this.data.readOnly,this._setRequired(r,this.data.required),r.name=this.data.fieldName,r.tabIndex=0;let i=this.data.combo&&this.data.options.length>0;this.data.combo||(r.size=this.data.options.length,this.data.multiSelect&&(r.multiple=!0)),r.addEventListener(`resetform`,e=>{let t=this.data.defaultFieldValue;for(let e of r.options)e.selected=e.value===t});for(let e of this.data.options){let t=document.createElement(`option`);t.textContent=e.displayValue,t.value=e.exportValue,n.value.includes(e.exportValue)&&(t.setAttribute(`selected`,!0),i=!1),r.append(t)}let a=null;if(i){let e=document.createElement(`option`);e.value=` `,e.setAttribute(`hidden`,!0),e.setAttribute(`selected`,!0),r.prepend(e),a=()=>{e.remove(),r.removeEventListener(`input`,a),a=null},r.addEventListener(`input`,a)}let o=e=>{let t=e?`value`:`textContent`,{options:n,multiple:i}=r;return i?Array.prototype.filter.call(n,e=>e.selected).map(e=>e[t]):n.selectedIndex===-1?null:n[n.selectedIndex][t]},s=o(!1),c=e=>{let t=e.target.options;return Array.prototype.map.call(t,e=>({displayValue:e.textContent,exportValue:e.value}))};return this.enableScripting&&this.hasJSActions?(r.addEventListener(`updatefromsandbox`,n=>{this._dispatchEventFromSandbox({value(n){a?.();let i=n.detail.value,c=new Set(Array.isArray(i)?i:[i]);for(let e of r.options)e.selected=c.has(e.value);e.setValue(t,{value:o(!0)}),s=o(!1)},multipleSelection(e){r.multiple=!0},remove(n){let i=r.options,a=n.detail.remove;i[a].selected=!1,r.remove(a),i.length>0&&Array.prototype.findIndex.call(i,e=>e.selected)===-1&&(i[0].selected=!0),e.setValue(t,{value:o(!0),items:c(n)}),s=o(!1)},clear(n){for(;r.length!==0;)r.remove(0);e.setValue(t,{value:null,items:[]}),s=o(!1)},insert(n){let{index:i,displayValue:a,exportValue:l}=n.detail.insert,u=r.children[i],d=document.createElement(`option`);d.textContent=a,d.value=l,u?u.before(d):r.append(d),e.setValue(t,{value:o(!0),items:c(n)}),s=o(!1)},items(n){let{items:i}=n.detail;for(;r.length!==0;)r.remove(0);for(let e of i){let{displayValue:t,exportValue:n}=e,i=document.createElement(`option`);i.textContent=t,i.value=n,r.append(i)}r.options.length>0&&(r.options[0].selected=!0),e.setValue(t,{value:o(!0),items:c(n)}),s=o(!1)},indices(n){let r=new Set(n.detail.indices);for(let e of n.target.options)e.selected=r.has(e.index);e.setValue(t,{value:o(!0)}),s=o(!1)},editable(e){e.target.disabled=!e.detail.editable}},n)}),r.addEventListener(`input`,n=>{let r=o(!0),i=o(!1);e.setValue(t,{value:r}),n.preventDefault(),this.linkService.eventBus?.dispatch(`dispatcheventinsandbox`,{source:this,detail:{id:t,name:`Keystroke`,value:s,change:i,changeEx:r,willCommit:!1,commitKey:1,keyDown:!1}})}),this._setEventListeners(r,null,[[`focus`,`Focus`],[`blur`,`Blur`],[`mousedown`,`Mouse Down`],[`mouseenter`,`Mouse Enter`],[`mouseleave`,`Mouse Exit`],[`mouseup`,`Mouse Up`],[`input`,`Action`],[`input`,`Validate`]],e=>e.target.value)):r.addEventListener(`input`,function(n){e.setValue(t,{value:o(!0)})}),this.data.combo&&this._setTextStyle(r),this._setBackgroundColor(r),this._setDefaultPropertiesFromJS(r),this.container.append(r),this.container}},Ip=class extends Tp{constructor(e){let{data:t,elements:n,parent:r}=e,i=!!r._commentManager;if(super(e,{isRenderable:!i&&Tp._hasPopupData(t)}),this.elements=n,i&&Tp._hasPopupData(t)){let e=this.popup=this.#e();for(let t of n)t.popup=e}else this.popup=null}#e(){return new Lp({container:this.container,color:this.data.color,titleObj:this.data.titleObj,modificationDate:this.data.modificationDate||this.data.creationDate,contentsObj:this.data.contentsObj,richText:this.data.richText,rect:this.data.rect,parentRect:this.data.parentRect||null,parent:this.parent,elements:this.elements,open:this.data.open,commentManager:this.parent._commentManager})}render(){let{container:e}=this;e.classList.add(`popupAnnotation`),e.role=`comment`;let t=this.popup=this.#e(),n=[];for(let e of this.elements)e.popup=t,e.container.ariaHasPopup=`dialog`,n.push(e.data.id),e.addHighlightArea();return this.container.setAttribute(`aria-controls`,n.map(e=>`${Pl}${e}`).join(`,`)),this.container}},Lp=class{#e=null;#t=this.#P.bind(this);#n=this.#R.bind(this);#r=this.#L.bind(this);#i=this.#I.bind(this);#a=null;#o=null;#s=null;#c=null;#l=null;#u=null;#d=null;#f=!1;#p=null;#m=null;#h=null;#g=null;#_=null;#v=null;#y=null;#b=null;#x=null;#S=null;#C=!1;#w=null;#T=null;constructor({container:e,color:t,elements:n,titleObj:r,modificationDate:i,contentsObj:a,richText:o,parent:s,rect:c,parentRect:l,open:u,commentManager:d=null}){this.#o=e,this.#x=r,this.#s=a,this.#b=o,this.#u=s,this.#a=t,this.#y=c,this.#d=l,this.#l=n,this.#e=d,this.#w=n[0],this.#c=$l.toDateObject(i),this.trigger=n.flatMap(e=>e.getElementsToTriggerPopup()),d||(this.#E(),this.#o.hidden=!0,u&&this.#I())}#E(){if(this.#m)return;this.#m=new AbortController;let{signal:e}=this.#m;for(let t of this.trigger)t.addEventListener(`click`,this.#i,{signal:e}),t.addEventListener(`pointerenter`,this.#r,{signal:e}),t.addEventListener(`pointerleave`,this.#n,{signal:e}),t.classList.add(`popupTriggerArea`);for(let t of this.#l)t.container?.addEventListener(`keydown`,this.#t,{signal:e})}#D(){let e=this.#l.find(e=>e.hasCommentButton);e&&(this.#_=e._normalizePoint(e.commentButtonPosition))}renderCommentButton(){if(this.#g){this.#g.parentNode||this.#w.container.after(this.#g);return}if(this.#_||this.#D(),!this.#_)return;let{signal:e}=this.#m=new AbortController,t=this.#w.hasOwnCommentButton,n=()=>{this.#e.toggleCommentPopup(this,!0,void 0,!t)},r=()=>{this.#e.toggleCommentPopup(this,!1,!0,!t)},i=()=>{this.#e.toggleCommentPopup(this,!1,!1)};if(t){this.#g=this.#w.container;for(let t of this.trigger)t.ariaHasPopup=`dialog`,t.ariaControls=`commentPopup`,t.addEventListener(`keydown`,this.#t,{signal:e}),t.addEventListener(`click`,n,{signal:e}),t.addEventListener(`pointerenter`,r,{signal:e}),t.addEventListener(`pointerleave`,i,{signal:e}),t.classList.add(`popupTriggerArea`)}else{let t=this.#g=document.createElement(`button`);t.className=`annotationCommentButton`;let a=this.#w.container;t.style.zIndex=a.style.zIndex+1,t.tabIndex=0,t.ariaHasPopup=`dialog`,t.ariaControls=`commentPopup`,t.setAttribute(`data-l10n-id`,`pdfjs-show-comment-button`),this.#k(),this.#O(),t.addEventListener(`keydown`,this.#t,{signal:e}),t.addEventListener(`click`,n,{signal:e}),t.addEventListener(`pointerenter`,r,{signal:e}),t.addEventListener(`pointerleave`,i,{signal:e}),a.after(t)}}#O(){if(this.#w.extraPopupElement&&!this.#w.editor)return;this.#g||this.renderCommentButton();let[e,t]=this.#_,{style:n}=this.#g;n.left=`calc(${e}%)`,n.top=`calc(${t}% - var(--comment-button-dim))`}#k(){this.#w.extraPopupElement||(this.#g||this.renderCommentButton(),this.#g.style.backgroundColor=this.commentButtonColor||``)}get commentButtonColor(){let{color:e,opacity:t}=this.#w.commentData;return e?this.#u._commentManager.makeCommentColor(e,t):null}focusCommentButton(){setTimeout(()=>{this.#g?.focus()},0)}getData(){let{richText:e,color:t,opacity:n,creationDate:r,modificationDate:i}=this.#w.commentData;return{contentsObj:{str:this.comment},richText:e,color:t,opacity:n,creationDate:r,modificationDate:i}}get elementBeforePopup(){return this.#g}get comment(){return this.#T||=this.#w.commentText,this.#T}set comment(e){e!==this.comment&&(this.#w.commentText=this.#T=e)}focus(){this.#w.container?.focus()}get parentBoundingClientRect(){return this.#w.layer.getBoundingClientRect()}setCommentButtonStates({selected:e,hasPopup:t}){this.#g&&(this.#g.classList.toggle(`selected`,e),this.#g.ariaExpanded=t)}setSelectedCommentButton(e){this.#g.classList.toggle(`selected`,e)}get commentPopupPosition(){if(this.#v)return this.#v;let{x:e,y:t,height:n}=this.#g.getBoundingClientRect(),{x:r,y:i,width:a,height:o}=this.#w.layer.getBoundingClientRect();return[(e-r)/a,(t+n-i)/o]}set commentPopupPosition(e){this.#v=e}hasDefaultPopupPosition(){return this.#v===null}get commentButtonPosition(){return this.#_}get commentButtonWidth(){return this.#g.getBoundingClientRect().width/this.parentBoundingClientRect.width}editComment(e){let[t,n]=this.#v||this.commentButtonPosition.map(e=>e/100),r=this.parentBoundingClientRect,{x:i,y:a,width:o,height:s}=r;this.#e.showDialog(null,this,i+t*o,a+n*s,{...e,parentDimensions:r})}render(){if(this.#p)return;let e=this.#p=document.createElement(`div`);if(e.className=`popup`,this.#a){let t=e.style.outlineColor=Q.makeHexColor(...this.#a);e.style.backgroundColor=`color-mix(in srgb, ${t} 30%, white)`}let t=document.createElement(`span`);if(t.className=`header`,this.#x?.str){let e=document.createElement(`span`);e.className=`title`,t.append(e),{dir:e.dir,str:e.textContent}=this.#x}if(e.append(t),this.#c){let e=document.createElement(`time`);e.className=`popupDate`,e.setAttribute(`data-l10n-id`,`pdfjs-annotation-date-time-string`),e.setAttribute(`data-l10n-args`,JSON.stringify({dateObj:this.#c.valueOf()})),e.dateTime=this.#c.toISOString(),t.append(e)}_u({html:this.#A||this.#s.str,dir:this.#s?.dir,className:`popupContent`},e),this.#o.append(e)}get#A(){let e=this.#b,t=this.#s;return e?.str&&(!t?.str||t.str===e.str)&&this.#b.html||null}get#j(){return this.#A?.attributes?.style?.fontSize||0}get#M(){return this.#A?.attributes?.style?.color||null}#N(e){let t=[],n={str:e,html:{name:`div`,attributes:{dir:`auto`},children:[{name:`p`,children:t}]}},r={style:{color:this.#M,fontSize:this.#j?`calc(${this.#j}px * var(--total-scale-factor))`:``}};for(let n of e.split(`
|
|
14
|
+
`))t.push({name:`span`,value:n,attributes:r});return n}#P(e){e.altKey||e.shiftKey||e.ctrlKey||e.metaKey||(e.key===`Enter`||e.key===`Escape`&&this.#f)&&this.#I()}updateEdited({rect:e,popup:t,deleted:n}){if(this.#e){n?(this.remove(),this.#T=null):t&&(t.deleted?this.remove():(this.#k(),this.#T=t.text)),e&&(this.#_=null,this.#D(),this.#O());return}if(n||t?.deleted){this.remove();return}this.#E(),this.#S||={contentsObj:this.#s,richText:this.#b},e&&(this.#h=null),t&&t.text&&(this.#b=this.#N(t.text),this.#c=$l.toDateObject(t.date),this.#s=null),this.#p?.remove(),this.#p=null}resetEdited(){this.#S&&({contentsObj:this.#s,richText:this.#b}=this.#S,this.#S=null,this.#p?.remove(),this.#p=null,this.#h=null)}remove(){if(this.#m?.abort(),this.#m=null,this.#p?.remove(),this.#p=null,this.#C=!1,this.#f=!1,this.#g?.remove(),this.#g=null,this.trigger)for(let e of this.trigger)e.classList.remove(`popupTriggerArea`)}#F(){if(this.#h!==null)return;let{page:{view:e},viewport:{rawDims:{pageWidth:t,pageHeight:n,pageX:r,pageY:i}}}=this.#u,a=!!this.#d,o=a?this.#d:this.#y;for(let e of this.#l)if(!o||Q.intersect(e.data.rect,o)!==null){o=e.data.rect,a=!0;break}let s=Q.normalizeRect([o[0],e[3]-o[1]+e[1],o[2],e[3]-o[3]+e[1]]),c=a?o[2]-o[0]+5:0,l=s[0]+c,u=s[1];this.#h=[100*(l-r)/t,100*(u-i)/n];let{style:d}=this.#o;d.left=`${this.#h[0]}%`,d.top=`${this.#h[1]}%`}#I(){if(this.#e){this.#e.toggleCommentPopup(this,!1);return}this.#f=!this.#f,this.#f?(this.#L(),this.#o.addEventListener(`click`,this.#i),this.#o.addEventListener(`keydown`,this.#t)):(this.#R(),this.#o.removeEventListener(`click`,this.#i),this.#o.removeEventListener(`keydown`,this.#t))}#L(){this.#p||this.render(),this.isVisible?this.#f&&this.#o.classList.add(`focused`):(this.#F(),this.#o.hidden=!1,this.#o.style.zIndex=parseInt(this.#o.style.zIndex)+1e3)}#R(){this.#o.classList.remove(`focused`),!(this.#f||!this.isVisible)&&(this.#o.hidden=!0,this.#o.style.zIndex=parseInt(this.#o.style.zIndex)-1e3)}forceHide(){this.#C=this.isVisible,this.#C&&(this.#o.hidden=!0)}maybeShow(){this.#e||(this.#E(),this.#C&&(this.#p||this.#L(),this.#C=!1,this.#o.hidden=!1))}get isVisible(){return this.#e?!1:this.#o.hidden===!1}},Rp=class extends Tp{constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0}),this.textContent=e.data.textContent,this.textPosition=e.data.textPosition,this.annotationEditorType=Y.FREETEXT}render(){if(this.container.classList.add(`freeTextAnnotation`),this.textContent){let e=this.contentElement=document.createElement(`div`);e.classList.add(`annotationTextContent`),e.setAttribute(`role`,`comment`);for(let t of this.textContent){let n=document.createElement(`span`);n.textContent=t,e.append(n)}this.container.append(e)}return!this.data.popupRef&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this._editOnDoubleClick(),this.container}},zp=class extends Tp{#e=null;constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0})}render(){this.container.classList.add(`lineAnnotation`);let{data:e,width:t,height:n}=this,r=this.svgFactory.create(t,n,!0),i=this.#e=this.svgFactory.createElement(`svg:line`);return i.setAttribute(`x1`,e.rect[2]-e.lineCoordinates[0]),i.setAttribute(`y1`,e.rect[3]-e.lineCoordinates[1]),i.setAttribute(`x2`,e.rect[2]-e.lineCoordinates[2]),i.setAttribute(`y2`,e.rect[3]-e.lineCoordinates[3]),i.setAttribute(`stroke-width`,e.borderStyle.width||1),i.setAttribute(`stroke`,`transparent`),i.setAttribute(`fill`,`transparent`),r.append(i),this.container.append(r),!e.popupRef&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container}getElementsToTriggerPopup(){return this.#e}addHighlightArea(){this.container.classList.add(`highlightArea`)}},Bp=class extends Tp{#e=null;constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0})}render(){this.container.classList.add(`squareAnnotation`);let{data:e,width:t,height:n}=this,r=this.svgFactory.create(t,n,!0),i=e.borderStyle.width,a=this.#e=this.svgFactory.createElement(`svg:rect`);return a.setAttribute(`x`,i/2),a.setAttribute(`y`,i/2),a.setAttribute(`width`,t-i),a.setAttribute(`height`,n-i),a.setAttribute(`stroke-width`,i||1),a.setAttribute(`stroke`,`transparent`),a.setAttribute(`fill`,`transparent`),r.append(a),this.container.append(r),!e.popupRef&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container}getElementsToTriggerPopup(){return this.#e}addHighlightArea(){this.container.classList.add(`highlightArea`)}},Vp=class extends Tp{#e=null;constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0})}render(){this.container.classList.add(`circleAnnotation`);let{data:e,width:t,height:n}=this,r=this.svgFactory.create(t,n,!0),i=e.borderStyle.width,a=this.#e=this.svgFactory.createElement(`svg:ellipse`);return a.setAttribute(`cx`,t/2),a.setAttribute(`cy`,n/2),a.setAttribute(`rx`,t/2-i/2),a.setAttribute(`ry`,n/2-i/2),a.setAttribute(`stroke-width`,i||1),a.setAttribute(`stroke`,`transparent`),a.setAttribute(`fill`,`transparent`),r.append(a),this.container.append(r),!e.popupRef&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container}getElementsToTriggerPopup(){return this.#e}addHighlightArea(){this.container.classList.add(`highlightArea`)}},Hp=class extends Tp{#e=null;constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0}),this.containerClassName=`polylineAnnotation`,this.svgElementName=`svg:polyline`}render(){this.container.classList.add(this.containerClassName);let{data:{rect:e,vertices:t,borderStyle:n,popupRef:r},width:i,height:a}=this;if(!t)return this.container;let o=this.svgFactory.create(i,a,!0),s=[];for(let n=0,r=t.length;n<r;n+=2){let r=t[n]-e[0],i=e[3]-t[n+1];s.push(`${r},${i}`)}s=s.join(` `);let c=this.#e=this.svgFactory.createElement(this.svgElementName);return c.setAttribute(`points`,s),c.setAttribute(`stroke-width`,n.width||1),c.setAttribute(`stroke`,`transparent`),c.setAttribute(`fill`,`transparent`),o.append(c),this.container.append(o),!r&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container}getElementsToTriggerPopup(){return this.#e}addHighlightArea(){this.container.classList.add(`highlightArea`)}},Up=class extends Hp{constructor(e){super(e),this.containerClassName=`polygonAnnotation`,this.svgElementName=`svg:polygon`}},Wp=class extends Tp{constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0})}render(){return this.container.classList.add(`caretAnnotation`),!this.data.popupRef&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container}},Gp=class extends Tp{#e=null;#t=[];constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0}),this.containerClassName=`inkAnnotation`,this.svgElementName=`svg:polyline`,this.annotationEditorType=this.data.it===`InkHighlight`?Y.HIGHLIGHT:Y.INK}#n(e,t){switch(e){case 90:return{transform:`rotate(90) translate(${-t[0]},${t[1]}) scale(1,-1)`,width:t[3]-t[1],height:t[2]-t[0]};case 180:return{transform:`rotate(180) translate(${-t[2]},${t[1]}) scale(1,-1)`,width:t[2]-t[0],height:t[3]-t[1]};case 270:return{transform:`rotate(270) translate(${-t[2]},${t[3]}) scale(1,-1)`,width:t[3]-t[1],height:t[2]-t[0]};default:return{transform:`translate(${-t[0]},${t[3]}) scale(1,-1)`,width:t[2]-t[0],height:t[3]-t[1]}}}render(){this.container.classList.add(this.containerClassName);let{data:{rect:e,rotation:t,inkLists:n,borderStyle:r,popupRef:i}}=this,{transform:a,width:o,height:s}=this.#n(t,e),c=this.svgFactory.create(o,s,!0),l=this.#e=this.svgFactory.createElement(`svg:g`);c.append(l),l.setAttribute(`stroke-width`,r.width||1),l.setAttribute(`stroke-linecap`,`round`),l.setAttribute(`stroke-linejoin`,`round`),l.setAttribute(`stroke-miterlimit`,10),l.setAttribute(`stroke`,`transparent`),l.setAttribute(`fill`,`transparent`),l.setAttribute(`transform`,a);for(let e=0,t=n.length;e<t;e++){let t=this.svgFactory.createElement(this.svgElementName);this.#t.push(t),t.setAttribute(`points`,n[e].join(`,`)),l.append(t)}return!i&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container.append(c),this._editOnDoubleClick(),this.container}updateEdited(e){super.updateEdited(e);let{thickness:t,points:n,rect:r}=e,i=this.#e;if(t>=0&&i.setAttribute(`stroke-width`,t||1),n)for(let e=0,t=this.#t.length;e<t;e++)this.#t[e].setAttribute(`points`,n[e].join(`,`));if(r){let{transform:e,width:t,height:n}=this.#n(this.data.rotation,r);i.parentElement.setAttribute(`viewBox`,`0 0 ${t} ${n}`),i.setAttribute(`transform`,e)}}getElementsToTriggerPopup(){return this.#t}addHighlightArea(){this.container.classList.add(`highlightArea`)}},Kp=class extends Tp{constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0,createQuadrilaterals:!0}),this.annotationEditorType=Y.HIGHLIGHT}render(){let{data:{overlaidText:e,popupRef:t}}=this;if(!t&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container.classList.add(`highlightAnnotation`),this._editOnDoubleClick(),e){let t=document.createElement(`mark`);t.classList.add(`overlaidText`),t.textContent=e,this.container.append(t)}return this.container}},qp=class extends Tp{constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0,createQuadrilaterals:!0})}render(){let{data:{overlaidText:e,popupRef:t}}=this;if(!t&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container.classList.add(`underlineAnnotation`),e){let t=document.createElement(`u`);t.classList.add(`overlaidText`),t.textContent=e,this.container.append(t)}return this.container}},Jp=class extends Tp{constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0,createQuadrilaterals:!0})}render(){let{data:{overlaidText:e,popupRef:t}}=this;if(!t&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container.classList.add(`squigglyAnnotation`),e){let t=document.createElement(`u`);t.classList.add(`overlaidText`),t.textContent=e,this.container.append(t)}return this.container}},Yp=class extends Tp{constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0,createQuadrilaterals:!0})}render(){let{data:{overlaidText:e,popupRef:t}}=this;if(!t&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this.container.classList.add(`strikeoutAnnotation`),e){let t=document.createElement(`s`);t.classList.add(`overlaidText`),t.textContent=e,this.container.append(t)}return this.container}},Xp=class extends Tp{constructor(e){super(e,{isRenderable:!0,ignoreBorder:!0}),this.annotationEditorType=Y.STAMP}render(){return this.container.classList.add(`stampAnnotation`),this.container.setAttribute(`role`,`img`),!this.data.popupRef&&this.hasPopupData&&(this.hasOwnCommentButton=!0,this._createPopup()),this._editOnDoubleClick(),this.container}},Zp=class extends Tp{#e=null;constructor(e){super(e,{isRenderable:!0});let{file:t}=this.data;this.filename=t.filename,this.content=t.content,this.linkService.eventBus?.dispatch(`fileattachmentannotation`,{source:this,...t})}render(){this.container.classList.add(`fileAttachmentAnnotation`);let{container:e,data:t}=this,n;t.hasAppearance||t.fillAlpha===0?n=document.createElement(`div`):(n=document.createElement(`img`),n.src=`${this.imageResourcesPath}annotation-${/paperclip/i.test(t.name)?`paperclip`:`pushpin`}.svg`,t.fillAlpha&&t.fillAlpha<1&&(n.style=`filter: opacity(${Math.round(t.fillAlpha*100)}%);`)),n.addEventListener(`dblclick`,this.#t.bind(this)),this.#e=n;let{isMac:r}=Dl.platform;return e.addEventListener(`keydown`,e=>{e.key===`Enter`&&(r?e.metaKey:e.ctrlKey)&&this.#t()}),!t.popupRef&&this.hasPopupData?(this.hasOwnCommentButton=!0,this._createPopup()):n.classList.add(`popupTriggerArea`),e.append(n),e}getElementsToTriggerPopup(){return this.#e}addHighlightArea(){this.container.classList.add(`highlightArea`)}#t(){this.downloadManager?.openOrDownloadData(this.content,this.filename)}},Qp=class e{#e=null;#t=null;#n=null;#r=new Map;#i=null;#a=null;#o=[];#s=!1;constructor({div:e,accessibilityManager:t,annotationCanvasMap:n,annotationEditorUIManager:r,page:i,viewport:a,structTreeLayer:o,commentManager:s,linkService:c,annotationStorage:l}){this.div=e,this.#e=t,this.#t=n,this.#i=o||null,this.#a=c||null,this.#n=l||new Bu,this.page=i,this.viewport=a,this.zIndex=0,this._annotationEditorUIManager=r,this._commentManager=s||null}hasEditableAnnotations(){return this.#r.size>0}async render(e){let{annotations:t}=e,n=this.div;au(n,this.viewport);let r=new Map,i=[],a={data:null,layer:n,linkService:this.#a,downloadManager:e.downloadManager,imageResourcesPath:e.imageResourcesPath||``,renderForms:e.renderForms!==!1,svgFactory:new bp,annotationStorage:this.#n,enableComment:e.enableComment===!0,enableScripting:e.enableScripting===!0,hasJSActions:e.hasJSActions,fieldObjects:e.fieldObjects,parent:this,elements:null};for(let e of t){if(e.noHTML)continue;let t=e.annotationType===el.POPUP;if(t){let t=r.get(e.id);if(!t)continue;if(!this._commentManager){i.push(e);continue}a.elements=t}else if(e.rect[2]===e.rect[0]||e.rect[3]===e.rect[1])continue;a.data=e;let n=wp.create(a);if(!n.isRenderable)continue;if(!t&&(this.#o.push(n),e.popupRef)){let t=r.get(e.popupRef);t?t.push(n):r.set(e.popupRef,[n])}let o=n.render();e.hidden&&(o.style.visibility=`hidden`),n._isEditable&&(this.#r.set(n.data.id,n),this._annotationEditorUIManager?.renderAnnotationElement(n))}await this.#c();for(let e of i){let t=a.elements=r.get(e.id);a.data=e;let n=wp.create(a);if(!n.isRenderable)continue;let i=n.render();n.contentElement.id=`${Pl}${e.id}`,e.hidden&&(i.style.visibility=`hidden`),t.at(-1).container.after(i)}this.#l()}async#c(){if(this.#o.length===0)return;this.div.replaceChildren();let e=[];if(!this.#s){this.#s=!0;for(let{contentElement:t,data:{id:n}}of this.#o){let r=t.id=`${Pl}${n}`;e.push(this.#i?.getAriaAttributes(r).then(e=>{if(e)for(let[n,r]of e)t.setAttribute(n,r)}))}}this.#o.sort(({data:{rect:[e,t,n,r]}},{data:{rect:[i,a,o,s]}})=>{if(e===n&&t===r)return 1;if(i===o&&a===s)return-1;let c=r,l=t,u=(t+r)/2,d=s,f=a,p=(a+s)/2;return u>=d&&p<=l?-1:p>=c&&u<=f?1:(e+n)/2-(i+o)/2});let t=document.createDocumentFragment();for(let e of this.#o)t.append(e.container),this._commentManager?(e.extraPopupElement?.popup||e.popup)?.renderCommentButton():e.extraPopupElement&&t.append(e.extraPopupElement.render());if(this.div.append(t),await Promise.all(e),this.#e)for(let e of this.#o)this.#e.addPointerInTextLayer(e.contentElement,!1)}async addLinkAnnotations(t){let n={data:null,layer:this.div,linkService:this.#a,svgFactory:new bp,parent:this};for(let r of t){r.borderStyle||=e._defaultBorderStyle,n.data=r;let t=wp.create(n);t.isRenderable&&(t.render(),t.contentElement.id=`${Pl}${r.id}`,this.#o.push(t))}await this.#c()}update({viewport:e}){let t=this.div;this.viewport=e,au(t,{rotation:e.rotation}),this.#l(),t.hidden=!1}#l(){if(!this.#t)return;let e=this.div;for(let[t,n]of this.#t){let r=e.querySelector(`[data-annotation-id="${t}"]`);if(!r)continue;n.className=`annotationContent`;let{firstChild:i}=r;i?i.nodeName===`CANVAS`?i.replaceWith(n):i.classList.contains(`annotationContent`)?i.after(n):i.before(n):r.append(n);let a=this.#r.get(t);a&&(a._hasNoCanvas?(this._annotationEditorUIManager?.setMissingCanvas(t,r.id,n),a._hasNoCanvas=!1):a.canvas=n)}this.#t.clear()}getEditableAnnotations(){return Array.from(this.#r.values())}getEditableAnnotation(e){return this.#r.get(e)}addFakeAnnotation(e){let{div:t}=this,{id:n,rotation:r}=e,i=new Ep({data:{id:n,rect:e.getPDFRect(),rotation:r},editor:e,layer:t,parent:this,enableComment:!!this._commentManager,linkService:this.#a,annotationStorage:this.#n});return i.render(),i.contentElement.id=`${Pl}${n}`,i.createOrUpdatePopup(),this.#o.push(i),i}removeAnnotation(e){let t=this.#o.findIndex(t=>t.data.id===e);if(t<0)return;let[n]=this.#o.splice(t,1);this.#e?.removePointerInTextLayer(n.contentElement)}updateFakeAnnotations(e){if(e.length!==0){for(let t of e)t.updateFakeAnnotationElement(this);this.#c()}}togglePointerEvents(e=!1){this.div.classList.toggle(`disabled`,!e)}static get _defaultBorderStyle(){return Z(this,`_defaultBorderStyle`,Object.freeze({width:1,rawWidth:1,style:tl.SOLID,dashArray:[3],horizontalCornerRadius:0,verticalCornerRadius:0}))}},$p=/\r\n?|\n/g,em=class e extends Nu{#e=``;#t=`${this.id}-editor`;#n=null;#r;_colorPicker=null;static _freeTextDefaultContent=``;static _internalPadding=0;static _defaultColor=null;static _defaultFontSize=10;static get _keyboardManager(){let t=e.prototype,n=e=>e.isEmpty(),r=ku.TRANSLATE_SMALL,i=ku.TRANSLATE_BIG;return Z(this,`_keyboardManager`,new Du([[[`ctrl+s`,`mac+meta+s`,`ctrl+p`,`mac+meta+p`],t.commitOrRemove,{bubbles:!0}],[[`ctrl+Enter`,`mac+meta+Enter`,`Escape`,`mac+Escape`],t.commitOrRemove],[[`ArrowLeft`,`mac+ArrowLeft`],t._translateEmpty,{args:[-r,0],checker:n}],[[`ctrl+ArrowLeft`,`mac+shift+ArrowLeft`],t._translateEmpty,{args:[-i,0],checker:n}],[[`ArrowRight`,`mac+ArrowRight`],t._translateEmpty,{args:[r,0],checker:n}],[[`ctrl+ArrowRight`,`mac+shift+ArrowRight`],t._translateEmpty,{args:[i,0],checker:n}],[[`ArrowUp`,`mac+ArrowUp`],t._translateEmpty,{args:[0,-r],checker:n}],[[`ctrl+ArrowUp`,`mac+shift+ArrowUp`],t._translateEmpty,{args:[0,-i],checker:n}],[[`ArrowDown`,`mac+ArrowDown`],t._translateEmpty,{args:[0,r],checker:n}],[[`ctrl+ArrowDown`,`mac+shift+ArrowDown`],t._translateEmpty,{args:[0,i],checker:n}]]))}static _type=`freetext`;static _editorType=Y.FREETEXT;constructor(t){super({...t,name:`freeTextEditor`}),this.color=t.color||e._defaultColor||Nu._defaultLineColor,this.#r=t.fontSize||e._defaultFontSize,this.annotationElementId||this._uiManager.a11yAlert(`pdfjs-editor-freetext-added-alert`),this.canAddComment=!1}static initialize(e,t){Nu.initialize(e,t);let n=getComputedStyle(document.documentElement);this._internalPadding=parseFloat(n.getPropertyValue(`--freetext-padding`))}static updateDefaultParams(t,n){switch(t){case Yc.FREETEXT_SIZE:e._defaultFontSize=n;break;case Yc.FREETEXT_COLOR:e._defaultColor=n;break}}updateParams(e,t){switch(e){case Yc.FREETEXT_SIZE:this.#i(t);break;case Yc.FREETEXT_COLOR:this.#a(t);break}}static get defaultPropertiesToUpdate(){return[[Yc.FREETEXT_SIZE,e._defaultFontSize],[Yc.FREETEXT_COLOR,e._defaultColor||Nu._defaultLineColor]]}get propertiesToUpdate(){return[[Yc.FREETEXT_SIZE,this.#r],[Yc.FREETEXT_COLOR,this.color]]}get toolbarButtons(){return this._colorPicker||=new hp(this),[[`colorPicker`,this._colorPicker]]}get colorType(){return Yc.FREETEXT_COLOR}#i(e){let t=e=>{this.editorDiv.style.fontSize=`calc(${e}px * var(--total-scale-factor))`,this.translate(0,-(e-this.#r)*this.parentScale),this.#r=e,this.#s()},n=this.#r;this.addCommands({cmd:t.bind(this,e),undo:t.bind(this,n),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:Yc.FREETEXT_SIZE,overwriteIfSameType:!0,keepUndo:!0})}onUpdatedColor(){this.editorDiv.style.color=this.color,this._colorPicker?.update(this.color),super.onUpdatedColor()}#a(e){let t=e=>{this.color=e,this.onUpdatedColor()},n=this.color;this.addCommands({cmd:t.bind(this,e),undo:t.bind(this,n),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:Yc.FREETEXT_COLOR,overwriteIfSameType:!0,keepUndo:!0})}_translateEmpty(e,t){this._uiManager.translateSelectedEditors(e,t,!0)}getInitialTranslation(){let t=this.parentScale;return[-e._internalPadding*t,-(e._internalPadding+this.#r)*t]}rebuild(){this.parent&&(super.rebuild(),this.div!==null&&(this.isAttachedToDOM||this.parent.add(this)))}enableEditMode(){if(!super.enableEditMode())return!1;this.overlayDiv.classList.remove(`enabled`),this.editorDiv.contentEditable=!0,this._isDraggable=!1,this.div.removeAttribute(`aria-activedescendant`),this.#n=new AbortController;let e=this._uiManager.combinedSignal(this.#n);return this.editorDiv.addEventListener(`keydown`,this.editorDivKeydown.bind(this),{signal:e}),this.editorDiv.addEventListener(`focus`,this.editorDivFocus.bind(this),{signal:e}),this.editorDiv.addEventListener(`blur`,this.editorDivBlur.bind(this),{signal:e}),this.editorDiv.addEventListener(`input`,this.editorDivInput.bind(this),{signal:e}),this.editorDiv.addEventListener(`paste`,this.editorDivPaste.bind(this),{signal:e}),!0}disableEditMode(){return super.disableEditMode()?(this.overlayDiv.classList.add(`enabled`),this.editorDiv.contentEditable=!1,this.div.setAttribute(`aria-activedescendant`,this.#t),this._isDraggable=!0,this.#n?.abort(),this.#n=null,this.div.focus({preventScroll:!0}),this.isEditing=!1,this.parent.div.classList.add(`freetextEditing`),!0):!1}focusin(e){this._focusEventsAllowed&&(super.focusin(e),e.target!==this.editorDiv&&this.editorDiv.focus())}onceAdded(e){this.width||(this.enableEditMode(),e&&this.editorDiv.focus(),this._initialOptions?.isCentered&&this.center(),this._initialOptions=null)}isEmpty(){return!this.editorDiv||this.editorDiv.innerText.trim()===``}remove(){this.isEditing=!1,this.parent&&(this.parent.setEditingState(!0),this.parent.div.classList.add(`freetextEditing`)),super.remove()}#o(){let t=[];this.editorDiv.normalize();let n=null;for(let r of this.editorDiv.childNodes)n?.nodeType===Node.TEXT_NODE&&r.nodeName===`BR`||(t.push(e.#c(r)),n=r);return t.join(`
|
|
15
|
+
`)}#s(){let[e,t]=this.parentDimensions,n;if(this.isAttachedToDOM)n=this.div.getBoundingClientRect();else{let{currentLayer:e,div:t}=this,r=t.style.display,i=t.classList.contains(`hidden`);t.classList.remove(`hidden`),t.style.display=`hidden`,e.div.append(this.div),n=t.getBoundingClientRect(),t.remove(),t.style.display=r,t.classList.toggle(`hidden`,i)}this.rotation%180==this.parentRotation%180?(this.width=n.width/e,this.height=n.height/t):(this.width=n.height/e,this.height=n.width/t),this.fixAndSetPosition()}commit(){if(!this.isInEditMode())return;super.commit(),this.disableEditMode();let e=this.#e,t=this.#e=this.#o().trimEnd();if(e===t)return;let n=e=>{if(this.#e=e,!e){this.remove();return}this.#l(),this._uiManager.rebuild(this),this.#s()};this.addCommands({cmd:()=>{n(t)},undo:()=>{n(e)},mustExec:!1}),this.#s()}shouldGetKeyboardEvents(){return this.isInEditMode()}enterInEditMode(){this.enableEditMode(),this.editorDiv.focus()}keydown(e){e.target===this.div&&e.key===`Enter`&&(this.enterInEditMode(),e.preventDefault())}editorDivKeydown(t){e._keyboardManager.exec(this,t)}editorDivFocus(e){this.isEditing=!0}editorDivBlur(e){this.isEditing=!1}editorDivInput(e){this.parent.div.classList.toggle(`freetextEditing`,this.isEmpty())}disableEditing(){this.editorDiv.setAttribute(`role`,`comment`),this.editorDiv.removeAttribute(`aria-multiline`)}enableEditing(){this.editorDiv.setAttribute(`role`,`textbox`),this.editorDiv.setAttribute(`aria-multiline`,!0)}get canChangeContent(){return!0}render(){if(this.div)return this.div;let e,t;(this._isCopy||this.annotationElementId)&&(e=this.x,t=this.y),super.render(),this.editorDiv=document.createElement(`div`),this.editorDiv.className=`internal`,this.editorDiv.setAttribute(`id`,this.#t),this.editorDiv.setAttribute(`data-l10n-id`,`pdfjs-free-text2`),this.editorDiv.setAttribute(`data-l10n-attrs`,`default-content`),this.enableEditing(),this.editorDiv.contentEditable=!0;let{style:n}=this.editorDiv;if(n.fontSize=`calc(${this.#r}px * var(--total-scale-factor))`,n.color=this.color,this.div.append(this.editorDiv),this.overlayDiv=document.createElement(`div`),this.overlayDiv.classList.add(`overlay`,`enabled`),this.div.append(this.overlayDiv),this._isCopy||this.annotationElementId){let[n,r]=this.parentDimensions;if(this.annotationElementId){let{position:i}=this._initialData,[a,o]=this.getInitialTranslation();[a,o]=this.pageTranslationToScreen(a,o);let[s,c]=this.pageDimensions,[l,u]=this.pageTranslation,d,f;switch(this.rotation){case 0:d=e+(i[0]-l)/s,f=t+this.height-(i[1]-u)/c;break;case 90:d=e+(i[0]-l)/s,f=t-(i[1]-u)/c,[a,o]=[o,-a];break;case 180:d=e-this.width+(i[0]-l)/s,f=t-(i[1]-u)/c,[a,o]=[-a,-o];break;case 270:d=e+(i[0]-l-this.height*c)/s,f=t+(i[1]-u-this.width*s)/c,[a,o]=[-o,a];break}this.setAt(d*n,f*r,a,o)}else this._moveAfterPaste(e,t);this.#l(),this._isDraggable=!0,this.editorDiv.contentEditable=!1}else this._isDraggable=!1,this.editorDiv.contentEditable=!0;return this.div}static#c(e){return(e.nodeType===Node.TEXT_NODE?e.nodeValue:e.innerText).replaceAll($p,``)}editorDivPaste(t){let n=t.clipboardData||window.clipboardData,{types:r}=n;if(r.length===1&&r[0]===`text/plain`)return;t.preventDefault();let i=e.#d(n.getData(`text`)||``).replaceAll($p,`
|
|
16
|
+
`);if(!i)return;let a=window.getSelection();if(!a.rangeCount)return;this.editorDiv.normalize(),a.deleteFromDocument();let o=a.getRangeAt(0);if(!i.includes(`
|
|
17
|
+
`)){o.insertNode(document.createTextNode(i)),this.editorDiv.normalize(),a.collapseToStart();return}let{startContainer:s,startOffset:c}=o,l=[],u=[];if(s.nodeType===Node.TEXT_NODE){let t=s.parentElement;if(u.push(s.nodeValue.slice(c).replaceAll($p,``)),t!==this.editorDiv){let n=l;for(let r of this.editorDiv.childNodes){if(r===t){n=u;continue}n.push(e.#c(r))}}l.push(s.nodeValue.slice(0,c).replaceAll($p,``))}else if(s===this.editorDiv){let t=l,n=0;for(let r of this.editorDiv.childNodes)n++===c&&(t=u),t.push(e.#c(r))}this.#e=`${l.join(`
|
|
18
|
+
`)}${i}${u.join(`
|
|
19
|
+
`)}`,this.#l();let d=new Range,f=Math.sumPrecise(l.map(e=>e.length));for(let{firstChild:e}of this.editorDiv.childNodes)if(e.nodeType===Node.TEXT_NODE){let t=e.nodeValue.length;if(f<=t){d.setStart(e,f),d.setEnd(e,f);break}f-=t}a.removeAllRanges(),a.addRange(d)}#l(){if(this.editorDiv.replaceChildren(),this.#e)for(let e of this.#e.split(`
|
|
20
|
+
`)){let t=document.createElement(`div`);t.append(e?document.createTextNode(e):document.createElement(`br`)),this.editorDiv.append(t)}}#u(){return this.#e.replaceAll(`\xA0`,` `)}static#d(e){return e.replaceAll(` `,`\xA0`)}get contentDiv(){return this.editorDiv}getPDFRect(){let t=e._internalPadding*this.parentScale;return this.getRect(t,t)}static async deserialize(t,n,r){let i=null;if(t instanceof Rp){let{data:{defaultAppearanceData:{fontSize:e,fontColor:n},rect:r,rotation:a,id:o,popupRef:s,richText:c,contentsObj:l,creationDate:u,modificationDate:d},textContent:f,textPosition:p,parent:{page:{pageNumber:m}}}=t;if(!f||f.length===0)return null;i=t={annotationType:Y.FREETEXT,color:Array.from(n),fontSize:e,value:f.join(`
|
|
21
|
+
`),position:p,pageIndex:m-1,rect:r.slice(0),rotation:a,annotationElementId:o,id:o,deleted:!1,popupRef:s,comment:l?.str||null,richText:c,creationDate:u,modificationDate:d}}let a=await super.deserialize(t,n,r);return a.#r=t.fontSize,a.color=Q.makeHexColor(...t.color),a.#e=e.#d(t.value),a._initialData=i,t.comment&&a.setCommentData(t),a}serialize(e=!1){if(this.isEmpty())return null;if(this.deleted)return this.serializeDeleted();let t=Nu._colorManager.convert(this.isAttachedToDOM?getComputedStyle(this.editorDiv).color:this.color),n=Object.assign(super.serialize(e),{color:t,fontSize:this.#r,value:this.#u()});return this.addComment(n),e?(n.isCopy=!0,n):this.annotationElementId&&!this.#f(n)?null:(n.id=this.annotationElementId,n)}#f(e){let{value:t,fontSize:n,color:r,pageIndex:i}=this._initialData;return this.hasEditedComment||this._hasBeenMoved||e.value!==t||e.fontSize!==n||e.color.some((e,t)=>e!==r[t])||e.pageIndex!==i}renderAnnotationElement(e){let t=super.renderAnnotationElement(e);if(!t)return null;let{style:n}=t;n.fontSize=`calc(${this.#r}px * var(--total-scale-factor))`,n.color=this.color,t.replaceChildren();for(let e of this.#e.split(`
|
|
22
|
+
`)){let n=document.createElement(`div`);n.append(e?document.createTextNode(e):document.createElement(`br`)),t.append(n)}return e.updateEdited({rect:this.getPDFRect(),popup:this._uiManager.hasCommentManager()||this.hasEditedComment?this.comment:{text:this.#e}}),t}resetAnnotationElement(e){super.resetAnnotationElement(e),e.resetEdited()}},$=class{static PRECISION=1e-4;toSVGPath(){ul("Abstract method `toSVGPath` must be implemented.")}get box(){ul("Abstract getter `box` must be implemented.")}serialize(e,t){ul("Abstract method `serialize` must be implemented.")}static _rescale(e,t,n,r,i,a){a||=new Float32Array(e.length);for(let o=0,s=e.length;o<s;o+=2)a[o]=t+e[o]*r,a[o+1]=n+e[o+1]*i;return a}static _rescaleAndSwap(e,t,n,r,i,a){a||=new Float32Array(e.length);for(let o=0,s=e.length;o<s;o+=2)a[o]=t+e[o+1]*r,a[o+1]=n+e[o]*i;return a}static _translate(e,t,n,r){r||=new Float32Array(e.length);for(let i=0,a=e.length;i<a;i+=2)r[i]=t+e[i],r[i+1]=n+e[i+1];return r}static svgRound(e){return Math.round(e*1e4)}static _normalizePoint(e,t,n,r,i){switch(i){case 90:return[1-t/n,e/r];case 180:return[1-e/n,1-t/r];case 270:return[t/n,1-e/r];default:return[e/n,t/r]}}static _normalizePagePoint(e,t,n){switch(n){case 90:return[1-t,e];case 180:return[1-e,1-t];case 270:return[t,1-e];default:return[e,t]}}static createBezierPoints(e,t,n,r,i,a){return[(e+5*n)/6,(t+5*r)/6,(5*n+i)/6,(5*r+a)/6,(n+i)/2,(r+a)/2]}},tm=class e{#e;#t=[];#n;#r;#i=[];#a=new Float32Array(18);#o;#s;#c;#l;#u;#d;#f=[];static#p=8;static#m=2;static#h=e.#p+e.#m;constructor({x:t,y:n},r,i,a,o,s=0){this.#e=r,this.#d=a*i,this.#r=o,this.#a.set([NaN,NaN,NaN,NaN,t,n],6),this.#n=s,this.#l=e.#p*i,this.#c=e.#h*i,this.#u=i,this.#f.push(t,n)}isEmpty(){return isNaN(this.#a[8])}#g(){let e=this.#a.subarray(4,6),t=this.#a.subarray(16,18),[n,r,i,a]=this.#e;return[(this.#o+(e[0]-t[0])/2-n)/i,(this.#s+(e[1]-t[1])/2-r)/a,(this.#o+(t[0]-e[0])/2-n)/i,(this.#s+(t[1]-e[1])/2-r)/a]}add({x:e,y:t}){this.#o=e,this.#s=t;let[n,r,i,a]=this.#e,[o,s,c,l]=this.#a.subarray(8,12),u=e-c,d=t-l,f=Math.hypot(u,d);if(f<this.#c)return!1;let p=f-this.#l,m=p/f,h=m*u,g=m*d,_=o,v=s;o=c,s=l,c+=h,l+=g,this.#f?.push(e,t);let y=-g/p,b=h/p,x=y*this.#d,S=b*this.#d;return this.#a.set(this.#a.subarray(2,8),0),this.#a.set([c+x,l+S],4),this.#a.set(this.#a.subarray(14,18),12),this.#a.set([c-x,l-S],16),isNaN(this.#a[6])?(this.#i.length===0&&(this.#a.set([o+x,s+S],2),this.#i.push(NaN,NaN,NaN,NaN,(o+x-n)/i,(s+S-r)/a),this.#a.set([o-x,s-S],14),this.#t.push(NaN,NaN,NaN,NaN,(o-x-n)/i,(s-S-r)/a)),this.#a.set([_,v,o,s,c,l],6),!this.isEmpty()):(this.#a.set([_,v,o,s,c,l],6),Math.abs(Math.atan2(v-s,_-o)-Math.atan2(g,h))<Math.PI/2?([o,s,c,l]=this.#a.subarray(2,6),this.#i.push(NaN,NaN,NaN,NaN,((o+c)/2-n)/i,((s+l)/2-r)/a),[o,s,_,v]=this.#a.subarray(14,18),this.#t.push(NaN,NaN,NaN,NaN,((_+o)/2-n)/i,((v+s)/2-r)/a),!0):([_,v,o,s,c,l]=this.#a.subarray(0,6),this.#i.push(((_+5*o)/6-n)/i,((v+5*s)/6-r)/a,((5*o+c)/6-n)/i,((5*s+l)/6-r)/a,((o+c)/2-n)/i,((s+l)/2-r)/a),[c,l,o,s,_,v]=this.#a.subarray(12,18),this.#t.push(((_+5*o)/6-n)/i,((v+5*s)/6-r)/a,((5*o+c)/6-n)/i,((5*s+l)/6-r)/a,((o+c)/2-n)/i,((s+l)/2-r)/a),!0))}toSVGPath(){if(this.isEmpty())return``;let e=this.#i,t=this.#t;if(isNaN(this.#a[6])&&!this.isEmpty())return this.#_();let n=[];n.push(`M${e[4]} ${e[5]}`);for(let t=6;t<e.length;t+=6)isNaN(e[t])?n.push(`L${e[t+4]} ${e[t+5]}`):n.push(`C${e[t]} ${e[t+1]} ${e[t+2]} ${e[t+3]} ${e[t+4]} ${e[t+5]}`);this.#y(n);for(let e=t.length-6;e>=6;e-=6)isNaN(t[e])?n.push(`L${t[e+4]} ${t[e+5]}`):n.push(`C${t[e]} ${t[e+1]} ${t[e+2]} ${t[e+3]} ${t[e+4]} ${t[e+5]}`);return this.#v(n),n.join(` `)}#_(){let[e,t,n,r]=this.#e,[i,a,o,s]=this.#g();return`M${(this.#a[2]-e)/n} ${(this.#a[3]-t)/r} L${(this.#a[4]-e)/n} ${(this.#a[5]-t)/r} L${i} ${a} L${o} ${s} L${(this.#a[16]-e)/n} ${(this.#a[17]-t)/r} L${(this.#a[14]-e)/n} ${(this.#a[15]-t)/r} Z`}#v(e){let t=this.#t;e.push(`L${t[4]} ${t[5]} Z`)}#y(e){let[t,n,r,i]=this.#e,a=this.#a.subarray(4,6),o=this.#a.subarray(16,18),[s,c,l,u]=this.#g();e.push(`L${(a[0]-t)/r} ${(a[1]-n)/i} L${s} ${c} L${l} ${u} L${(o[0]-t)/r} ${(o[1]-n)/i}`)}newFreeDrawOutline(e,t,n,r,i,a){return new nm(e,t,n,r,i,a)}getOutlines(){let e=this.#i,t=this.#t,n=this.#a,[r,i,a,o]=this.#e,s=new Float32Array((this.#f?.length??0)+2);for(let e=0,t=s.length-2;e<t;e+=2)s[e]=(this.#f[e]-r)/a,s[e+1]=(this.#f[e+1]-i)/o;if(s[s.length-2]=(this.#o-r)/a,s[s.length-1]=(this.#s-i)/o,isNaN(n[6])&&!this.isEmpty())return this.#b(s);let c=new Float32Array(this.#i.length+24+this.#t.length),l=e.length;for(let t=0;t<l;t+=2){if(isNaN(e[t])){c[t]=c[t+1]=NaN;continue}c[t]=e[t],c[t+1]=e[t+1]}l=this.#S(c,l);for(let e=t.length-6;e>=6;e-=6)for(let n=0;n<6;n+=2){if(isNaN(t[e+n])){c[l]=c[l+1]=NaN,l+=2;continue}c[l]=t[e+n],c[l+1]=t[e+n+1],l+=2}return this.#x(c,l),this.newFreeDrawOutline(c,s,this.#e,this.#u,this.#n,this.#r)}#b(e){let t=this.#a,[n,r,i,a]=this.#e,[o,s,c,l]=this.#g(),u=new Float32Array(36);return u.set([NaN,NaN,NaN,NaN,(t[2]-n)/i,(t[3]-r)/a,NaN,NaN,NaN,NaN,(t[4]-n)/i,(t[5]-r)/a,NaN,NaN,NaN,NaN,o,s,NaN,NaN,NaN,NaN,c,l,NaN,NaN,NaN,NaN,(t[16]-n)/i,(t[17]-r)/a,NaN,NaN,NaN,NaN,(t[14]-n)/i,(t[15]-r)/a],0),this.newFreeDrawOutline(u,e,this.#e,this.#u,this.#n,this.#r)}#x(e,t){let n=this.#t;return e.set([NaN,NaN,NaN,NaN,n[4],n[5]],t),t+=6}#S(e,t){let n=this.#a.subarray(4,6),r=this.#a.subarray(16,18),[i,a,o,s]=this.#e,[c,l,u,d]=this.#g();return e.set([NaN,NaN,NaN,NaN,(n[0]-i)/o,(n[1]-a)/s,NaN,NaN,NaN,NaN,c,l,NaN,NaN,NaN,NaN,u,d,NaN,NaN,NaN,NaN,(r[0]-i)/o,(r[1]-a)/s],t),t+=24}},nm=class extends ${#e;#t=new Float32Array(4);#n;#r;#i;#a;#o;constructor(e,t,n,r,i,a){super(),this.#o=e,this.#i=t,this.#e=n,this.#a=r,this.#n=i,this.#r=a,this.firstPoint=[NaN,NaN],this.lastPoint=[NaN,NaN],this.#s(a);let[o,s,c,l]=this.#t;for(let t=0,n=e.length;t<n;t+=2)e[t]=(e[t]-o)/c,e[t+1]=(e[t+1]-s)/l;for(let e=0,n=t.length;e<n;e+=2)t[e]=(t[e]-o)/c,t[e+1]=(t[e+1]-s)/l}toSVGPath(){let e=[`M${this.#o[4]} ${this.#o[5]}`];for(let t=6,n=this.#o.length;t<n;t+=6){if(isNaN(this.#o[t])){e.push(`L${this.#o[t+4]} ${this.#o[t+5]}`);continue}e.push(`C${this.#o[t]} ${this.#o[t+1]} ${this.#o[t+2]} ${this.#o[t+3]} ${this.#o[t+4]} ${this.#o[t+5]}`)}return e.push(`Z`),e.join(` `)}serialize([e,t,n,r],i){let a=n-e,o=r-t,s,c;switch(i){case 0:s=$._rescale(this.#o,e,r,a,-o),c=$._rescale(this.#i,e,r,a,-o);break;case 90:s=$._rescaleAndSwap(this.#o,e,t,a,o),c=$._rescaleAndSwap(this.#i,e,t,a,o);break;case 180:s=$._rescale(this.#o,n,t,-a,o),c=$._rescale(this.#i,n,t,-a,o);break;case 270:s=$._rescaleAndSwap(this.#o,n,r,-a,-o),c=$._rescaleAndSwap(this.#i,n,r,-a,-o);break}return{outline:Array.from(s),points:[Array.from(c)]}}#s(e){let t=this.#o,n=t[4],r=t[5],i=[n,r,n,r],a=n,o=r,s=n,c=r,l=e?Math.max:Math.min,u=new Float32Array(4);for(let e=6,d=t.length;e<d;e+=6){let d=t[e+4],f=t[e+5];isNaN(t[e])?(Q.pointBoundingBox(d,f,i),o>f?(a=d,o=f):o===f&&(a=l(a,d)),c<f?(s=d,c=f):c===f&&(s=l(s,d))):(u[0]=u[1]=1/0,u[2]=u[3]=-1/0,Q.bezierBoundingBox(n,r,...t.slice(e,e+6),u),Q.rectBoundingBox(u[0],u[1],u[2],u[3],i),o>u[1]?(a=u[0],o=u[1]):o===u[1]&&(a=l(a,u[0])),c<u[3]?(s=u[2],c=u[3]):c===u[3]&&(s=l(s,u[2]))),n=d,r=f}let d=this.#t;d[0]=i[0]-this.#n,d[1]=i[1]-this.#n,d[2]=i[2]-i[0]+2*this.#n,d[3]=i[3]-i[1]+2*this.#n,this.firstPoint=[a,o],this.lastPoint=[s,c]}get box(){return this.#t}newOutliner(e,t,n,r,i,a=0){return new tm(e,t,n,r,i,a)}getNewOutline(e,t){let[n,r,i,a]=this.#t,[o,s,c,l]=this.#e,u=i*c,d=a*l,f=n*c+o,p=r*l+s,m=this.newOutliner({x:this.#i[0]*u+f,y:this.#i[1]*d+p},this.#e,this.#a,e,this.#r,t??this.#n);for(let e=2;e<this.#i.length;e+=2)m.add({x:this.#i[e]*u+f,y:this.#i[e+1]*d+p});return m.getOutlines()}},rm=class{#e;#t;#n;#r=[];#i=[];constructor(e,t=0,n=0,r=!0){let i=[1/0,1/0,-1/0,-1/0],a=10**-4;for(let{x:n,y:r,width:o,height:s}of e){let e=Math.floor((n-t)/a)*a,c=Math.ceil((n+o+t)/a)*a,l=Math.floor((r-t)/a)*a,u=Math.ceil((r+s+t)/a)*a,d=[e,l,u,!0],f=[c,l,u,!1];this.#r.push(d,f),Q.rectBoundingBox(e,l,c,u,i)}let o=i[2]-i[0]+2*n,s=i[3]-i[1]+2*n,c=i[0]-n,l=i[1]-n,u=r?-1/0:1/0,d=1/0,f=this.#r.at(r?-1:-2),p=[f[0],f[2]];for(let e of this.#r){let[t,n,i,a]=e;!a&&r?n<d?(d=n,u=t):n===d&&(u=Math.max(u,t)):a&&!r&&(n<d?(d=n,u=t):n===d&&(u=Math.min(u,t))),e[0]=(t-c)/o,e[1]=(n-l)/s,e[2]=(i-l)/s}this.#e=new Float32Array([c,l,o,s]),this.#t=[u,d],this.#n=p}getOutlines(){this.#r.sort((e,t)=>e[0]-t[0]||e[1]-t[1]||e[2]-t[2]);let e=[];for(let t of this.#r)t[3]?(e.push(...this.#l(t)),this.#s(t)):(this.#c(t),e.push(...this.#l(t)));return this.#a(e)}#a(e){let t=[],n=new Set;for(let n of e){let[e,r,i]=n;t.push([e,r,n],[e,i,n])}t.sort((e,t)=>e[1]-t[1]||e[0]-t[0]);for(let e=0,r=t.length;e<r;e+=2){let r=t[e][2],i=t[e+1][2];r.push(i),i.push(r),n.add(r),n.add(i)}let r=[],i;for(;n.size>0;){let e=n.values().next().value,[t,a,o,s,c]=e;n.delete(e);let l=t,u=a;for(i=[t,o],r.push(i);;){let e;if(n.has(s))e=s;else if(n.has(c))e=c;else break;n.delete(e),[t,a,o,s,c]=e,l!==t&&(i.push(l,u,t,u===a?a:o),l=t),u=u===a?o:a}i.push(l,u)}return new im(r,this.#e,this.#t,this.#n)}#o(e){let t=this.#i,n=0,r=t.length-1;for(;n<=r;){let i=n+r>>1,a=t[i][0];if(a===e)return i;a<e?n=i+1:r=i-1}return r+1}#s([,e,t]){let n=this.#o(e);this.#i.splice(n,0,[e,t])}#c([,e,t]){let n=this.#o(e);for(let r=n;r<this.#i.length;r++){let[n,i]=this.#i[r];if(n!==e)break;if(n===e&&i===t){this.#i.splice(r,1);return}}for(let r=n-1;r>=0;r--){let[n,i]=this.#i[r];if(n!==e)break;if(n===e&&i===t){this.#i.splice(r,1);return}}}#l(e){let[t,n,r]=e,i=[[t,n,r]],a=this.#o(r);for(let e=0;e<a;e++){let[n,r]=this.#i[e];for(let e=0,a=i.length;e<a;e++){let[,o,s]=i[e];if(!(r<=o||s<=n)){if(o>=n){if(s>r)i[e][1]=r;else{if(a===1)return[];i.splice(e,1),e--,a--}continue}i[e][2]=n,s>r&&i.push([t,r,s])}}}return i}},im=class extends ${#e;#t;constructor(e,t,n,r){super(),this.#t=e,this.#e=t,this.firstPoint=n,this.lastPoint=r}toSVGPath(){let e=[];for(let t of this.#t){let[n,r]=t;e.push(`M${n} ${r}`);for(let i=2;i<t.length;i+=2){let a=t[i],o=t[i+1];a===n?(e.push(`V${o}`),r=o):o===r&&(e.push(`H${a}`),n=a)}e.push(`Z`)}return e.join(` `)}serialize([e,t,n,r],i){let a=[],o=n-e,s=r-t;for(let t of this.#t){let n=Array(t.length);for(let i=0;i<t.length;i+=2)n[i]=e+t[i]*o,n[i+1]=r-t[i+1]*s;a.push(n)}return a}get box(){return this.#e}get classNamesForOutlining(){return[`highlightOutline`]}},am=class extends tm{newFreeDrawOutline(e,t,n,r,i,a){return new om(e,t,n,r,i,a)}},om=class extends nm{newOutliner(e,t,n,r,i,a=0){return new am(e,t,n,r,i,a)}},sm=class e extends Nu{#e=null;#t=0;#n;#r=null;#i=null;#a=null;#o=null;#s=0;#c=null;#l=null;#u=null;#d=!1;#f=null;#p=null;#m=null;#h=``;#g;#_=``;static _defaultColor=null;static _defaultOpacity=1;static _defaultThickness=12;static _type=`highlight`;static _editorType=Y.HIGHLIGHT;static _freeHighlightId=-1;static _freeHighlight=null;static _freeHighlightClipId=``;static get _keyboardManager(){let t=e.prototype;return Z(this,`_keyboardManager`,new Du([[[`ArrowLeft`,`mac+ArrowLeft`],t._moveCaret,{args:[0]}],[[`ArrowRight`,`mac+ArrowRight`],t._moveCaret,{args:[1]}],[[`ArrowUp`,`mac+ArrowUp`],t._moveCaret,{args:[2]}],[[`ArrowDown`,`mac+ArrowDown`],t._moveCaret,{args:[3]}]]))}constructor(t){super({...t,name:`highlightEditor`}),this.color=t.color||e._defaultColor,this.#g=t.thickness||e._defaultThickness,this.opacity=t.opacity||e._defaultOpacity,this.#n=t.boxes||null,this.#_=t.methodOfCreation||``,this.#h=t.text||``,this._isDraggable=!1,this.defaultL10nId=`pdfjs-editor-highlight-editor`,t.highlightId>-1?(this.#d=!0,this.#y(t),this.#w()):this.#n&&(this.#e=t.anchorNode,this.#t=t.anchorOffset,this.#o=t.focusNode,this.#s=t.focusOffset,this.#v(),this.#w(),this.rotate(this.rotation)),this.annotationElementId||this._uiManager.a11yAlert(`pdfjs-editor-highlight-added-alert`)}get telemetryInitialData(){return{action:`added`,type:this.#d?`free_highlight`:`highlight`,color:this._uiManager.getNonHCMColorName(this.color),thickness:this.#g,methodOfCreation:this.#_}}get telemetryFinalData(){return{type:`highlight`,color:this._uiManager.getNonHCMColorName(this.color)}}static computeTelemetryFinalData(e){return{numberOfColors:e.get(`color`).size}}#v(){this.#l=new rm(this.#n,.001).getOutlines(),[this.x,this.y,this.width,this.height]=this.#l.box,this.#a=new rm(this.#n,.0025,.001,this._uiManager.direction===`ltr`).getOutlines();let{firstPoint:e}=this.#l;this.#f=[(e[0]-this.x)/this.width,(e[1]-this.y)/this.height];let{lastPoint:t}=this.#a;this.#p=[(t[0]-this.x)/this.width,(t[1]-this.y)/this.height]}#y({highlightOutlines:t,highlightId:n,clipPathId:r}){if(this.#l=t,this.#a=t.getNewOutline(this.#g/2+1.5,.0025),n>=0)this.#u=n,this.#r=r,this.parent.drawLayer.finalizeDraw(n,{bbox:t.box,path:{d:t.toSVGPath()}}),this.#m=this.parent.drawLayer.drawOutline({rootClass:{highlightOutline:!0,free:!0},bbox:this.#a.box,path:{d:this.#a.toSVGPath()}},!0);else if(this.parent){let n=this.parent.viewport.rotation;this.parent.drawLayer.updateProperties(this.#u,{bbox:e.#T(this.#l.box,(n-this.rotation+360)%360),path:{d:t.toSVGPath()}}),this.parent.drawLayer.updateProperties(this.#m,{bbox:e.#T(this.#a.box,n),path:{d:this.#a.toSVGPath()}})}let[i,a,o,s]=t.box;switch(this.rotation){case 0:this.x=i,this.y=a,this.width=o,this.height=s;break;case 90:{let[e,t]=this.parentDimensions;this.x=a,this.y=1-i,this.width=o*t/e,this.height=s*e/t;break}case 180:this.x=1-i,this.y=1-a,this.width=o,this.height=s;break;case 270:{let[e,t]=this.parentDimensions;this.x=1-a,this.y=i,this.width=o*t/e,this.height=s*e/t;break}}let{firstPoint:c}=t;this.#f=[(c[0]-i)/o,(c[1]-a)/s];let{lastPoint:l}=this.#a;this.#p=[(l[0]-i)/o,(l[1]-a)/s]}static initialize(t,n){Nu.initialize(t,n),e._defaultColor||=n.highlightColors?.values().next().value||`#fff066`}static updateDefaultParams(t,n){switch(t){case Yc.HIGHLIGHT_COLOR:e._defaultColor=n;break;case Yc.HIGHLIGHT_THICKNESS:e._defaultThickness=n;break}}translateInPage(e,t){}get toolbarPosition(){return this.#p}get commentButtonPosition(){return this.#f}updateParams(e,t){switch(e){case Yc.HIGHLIGHT_COLOR:this.#b(t);break;case Yc.HIGHLIGHT_THICKNESS:this.#x(t);break}}static get defaultPropertiesToUpdate(){return[[Yc.HIGHLIGHT_COLOR,e._defaultColor],[Yc.HIGHLIGHT_THICKNESS,e._defaultThickness]]}get propertiesToUpdate(){return[[Yc.HIGHLIGHT_COLOR,this.color||e._defaultColor],[Yc.HIGHLIGHT_THICKNESS,this.#g||e._defaultThickness],[Yc.HIGHLIGHT_FREE,this.#d]]}onUpdatedColor(){this.parent?.drawLayer.updateProperties(this.#u,{root:{fill:this.color,"fill-opacity":this.opacity}}),this.#i?.updateColor(this.color),super.onUpdatedColor()}#b(t){let n=(e,t)=>{this.color=e,this.opacity=t,this.onUpdatedColor()},r=this.color,i=this.opacity;this.addCommands({cmd:n.bind(this,t,e._defaultOpacity),undo:n.bind(this,r,i),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:Yc.HIGHLIGHT_COLOR,overwriteIfSameType:!0,keepUndo:!0}),this._reportTelemetry({action:`color_changed`,color:this._uiManager.getNonHCMColorName(t)},!0)}#x(e){let t=this.#g,n=e=>{this.#g=e,this.#S(e)};this.addCommands({cmd:n.bind(this,e),undo:n.bind(this,t),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:Yc.INK_THICKNESS,overwriteIfSameType:!0,keepUndo:!0}),this._reportTelemetry({action:`thickness_changed`,thickness:e},!0)}get toolbarButtons(){return this._uiManager.highlightColors?[[`colorPicker`,this.#i=new mp({editor:this})]]:super.toolbarButtons}disableEditing(){super.disableEditing(),this.div.classList.toggle(`disabled`,!0)}enableEditing(){super.enableEditing(),this.div.classList.toggle(`disabled`,!1)}fixAndSetPosition(){return super.fixAndSetPosition(this.#O())}getBaseTranslation(){return[0,0]}getRect(e,t){return super.getRect(e,t,this.#O())}onceAdded(e){this.annotationElementId||this.parent.addUndoableEditor(this),e&&this.div.focus()}remove(){this.#C(),this._reportTelemetry({action:`deleted`}),super.remove()}rebuild(){this.parent&&(super.rebuild(),this.div!==null&&(this.#w(),this.isAttachedToDOM||this.parent.add(this)))}setParent(e){let t=!1;this.parent&&!e?this.#C():e&&(this.#w(e),t=!this.parent&&this.div?.classList.contains(`selectedEditor`)),super.setParent(e),this.show(this._isVisible),t&&this.select()}#S(e){this.#d&&(this.#y({highlightOutlines:this.#l.getNewOutline(e/2)}),this.fixAndSetPosition(),this.setDims())}#C(){this.#u===null||!this.parent||(this.parent.drawLayer.remove(this.#u),this.#u=null,this.parent.drawLayer.remove(this.#m),this.#m=null)}#w(e=this.parent){this.#u===null&&({id:this.#u,clipPathId:this.#r}=e.drawLayer.draw({bbox:this.#l.box,root:{viewBox:`0 0 1 1`,fill:this.color,"fill-opacity":this.opacity},rootClass:{highlight:!0,free:this.#d},path:{d:this.#l.toSVGPath()}},!1,!0),this.#m=e.drawLayer.drawOutline({rootClass:{highlightOutline:!0,free:this.#d},bbox:this.#a.box,path:{d:this.#a.toSVGPath()}},this.#d),this.#c&&(this.#c.style.clipPath=this.#r))}static#T([e,t,n,r],i){switch(i){case 90:return[1-t-r,e,r,n];case 180:return[1-e-n,1-t-r,n,r];case 270:return[t,1-e-n,r,n]}return[e,t,n,r]}rotate(t){let{drawLayer:n}=this.parent,r;this.#d?(t=(t-this.rotation+360)%360,r=e.#T(this.#l.box,t)):r=e.#T([this.x,this.y,this.width,this.height],t),n.updateProperties(this.#u,{bbox:r,root:{"data-main-rotation":t}}),n.updateProperties(this.#m,{bbox:e.#T(this.#a.box,t),root:{"data-main-rotation":t}})}render(){if(this.div)return this.div;let e=super.render();this.#h&&(e.setAttribute(`aria-label`,this.#h),e.setAttribute(`role`,`mark`)),this.#d?e.classList.add(`free`):this.div.addEventListener(`keydown`,this.#E.bind(this),{signal:this._uiManager._signal});let t=this.#c=document.createElement(`div`);return e.append(t),t.setAttribute(`aria-hidden`,`true`),t.className=`internal`,t.style.clipPath=this.#r,this.setDims(),Su(this,this.#c,[`pointerover`,`pointerleave`]),this.enableEditing(),e}pointerover(){this.isSelected||this.parent?.drawLayer.updateProperties(this.#m,{rootClass:{hovered:!0}})}pointerleave(){this.isSelected||this.parent?.drawLayer.updateProperties(this.#m,{rootClass:{hovered:!1}})}#E(t){e._keyboardManager.exec(this,t)}_moveCaret(e){switch(this.parent.unselect(this),e){case 0:case 2:this.#D(!0);break;case 1:case 3:this.#D(!1);break}}#D(e){if(!this.#e)return;let t=window.getSelection();e?t.setPosition(this.#e,this.#t):t.setPosition(this.#o,this.#s)}select(){super.select(),this.#m&&this.parent?.drawLayer.updateProperties(this.#m,{rootClass:{hovered:!1,selected:!0}})}unselect(){super.unselect(),this.#m&&(this.parent?.drawLayer.updateProperties(this.#m,{rootClass:{selected:!1}}),this.#d||this.#D(!1))}get _mustFixPosition(){return!this.#d}show(e=this._isVisible){super.show(e),this.parent&&(this.parent.drawLayer.updateProperties(this.#u,{rootClass:{hidden:!e}}),this.parent.drawLayer.updateProperties(this.#m,{rootClass:{hidden:!e}}))}#O(){return this.#d?this.rotation:0}#k(){if(this.#d)return null;let[e,t]=this.pageDimensions,[n,r]=this.pageTranslation,i=this.#n,a=new Float32Array(i.length*8),o=0;for(let{x:s,y:c,width:l,height:u}of i){let i=s*e+n,d=(1-c)*t+r;a[o]=a[o+4]=i,a[o+1]=a[o+3]=d,a[o+2]=a[o+6]=i+l*e,a[o+5]=a[o+7]=d-u*t,o+=8}return a}#A(e){return this.#l.serialize(e,this.#O())}static startHighlighting(e,t,{target:n,x:r,y:i}){let{x:a,y:o,width:s,height:c}=n.getBoundingClientRect(),l=new AbortController,u=e.combinedSignal(l),d=t=>{l.abort(),this.#M(e,t)};window.addEventListener(`blur`,d,{signal:u}),window.addEventListener(`pointerup`,d,{signal:u}),window.addEventListener(`pointerdown`,Zl,{capture:!0,passive:!1,signal:u}),window.addEventListener(`contextmenu`,Xl,{signal:u}),n.addEventListener(`pointermove`,this.#j.bind(this,e),{signal:u}),this._freeHighlight=new am({x:r,y:i},[a,o,s,c],e.scale,this._defaultThickness/2,t,.001),{id:this._freeHighlightId,clipPathId:this._freeHighlightClipId}=e.drawLayer.draw({bbox:[0,0,1,1],root:{viewBox:`0 0 1 1`,fill:this._defaultColor,"fill-opacity":this._defaultOpacity},rootClass:{highlight:!0,free:!0},path:{d:this._freeHighlight.toSVGPath()}},!0,!0)}static#j(e,t){this._freeHighlight.add(t)&&e.drawLayer.updateProperties(this._freeHighlightId,{path:{d:this._freeHighlight.toSVGPath()}})}static#M(e,t){this._freeHighlight.isEmpty()?e.drawLayer.remove(this._freeHighlightId):e.createAndAddNewEditor(t,!1,{highlightId:this._freeHighlightId,highlightOutlines:this._freeHighlight.getOutlines(),clipPathId:this._freeHighlightClipId,methodOfCreation:`main_toolbar`}),this._freeHighlightId=-1,this._freeHighlight=null,this._freeHighlightClipId=``}static async deserialize(e,t,n){let r=null;if(e instanceof Kp){let{data:{quadPoints:t,rect:n,rotation:i,id:a,color:o,opacity:s,popupRef:c,richText:l,contentsObj:u,creationDate:d,modificationDate:f},parent:{page:{pageNumber:p}}}=e;r=e={annotationType:Y.HIGHLIGHT,color:Array.from(o),opacity:s,quadPoints:t,boxes:null,pageIndex:p-1,rect:n.slice(0),rotation:i,annotationElementId:a,id:a,deleted:!1,popupRef:c,richText:l,comment:u?.str||null,creationDate:d,modificationDate:f}}else if(e instanceof Gp){let{data:{inkLists:t,rect:n,rotation:i,id:a,color:o,borderStyle:{rawWidth:s},popupRef:c,richText:l,contentsObj:u,creationDate:d,modificationDate:f},parent:{page:{pageNumber:p}}}=e;r=e={annotationType:Y.HIGHLIGHT,color:Array.from(o),thickness:s,inkLists:t,boxes:null,pageIndex:p-1,rect:n.slice(0),rotation:i,annotationElementId:a,id:a,deleted:!1,popupRef:c,richText:l,comment:u?.str||null,creationDate:d,modificationDate:f}}let{color:i,quadPoints:a,inkLists:o,opacity:s}=e,c=await super.deserialize(e,t,n);c.color=Q.makeHexColor(...i),c.opacity=s||1,o&&(c.#g=e.thickness),c._initialData=r,e.comment&&c.setCommentData(e);let[l,u]=c.pageDimensions,[d,f]=c.pageTranslation;if(a){let e=c.#n=[];for(let t=0;t<a.length;t+=8)e.push({x:(a[t]-d)/l,y:1-(a[t+1]-f)/u,width:(a[t+2]-a[t])/l,height:(a[t+1]-a[t+5])/u});c.#v(),c.#w(),c.rotate(c.rotation)}else if(o){c.#d=!0;let e=o[0],n={x:e[0]-d,y:u-(e[1]-f)},r=new am(n,[0,0,l,u],1,c.#g/2,!0,.001);for(let t=0,i=e.length;t<i;t+=2)n.x=e[t]-d,n.y=u-(e[t+1]-f),r.add(n);let{id:i,clipPathId:a}=t.drawLayer.draw({bbox:[0,0,1,1],root:{viewBox:`0 0 1 1`,fill:c.color,"fill-opacity":c._defaultOpacity},rootClass:{highlight:!0,free:!0},path:{d:r.toSVGPath()}},!0,!0);c.#y({highlightOutlines:r.getOutlines(),highlightId:i,clipPathId:a}),c.#w(),c.rotate(c.parentRotation)}return c}serialize(e=!1){if(this.isEmpty()||e)return null;if(this.deleted)return this.serializeDeleted();let t=Nu._colorManager.convert(this._uiManager.getNonHCMColor(this.color)),n=super.serialize(e);return Object.assign(n,{color:t,opacity:this.opacity,thickness:this.#g,quadPoints:this.#k(),outlines:this.#A(n.rect)}),this.addComment(n),this.annotationElementId&&!this.#N(n)?null:(n.id=this.annotationElementId,n)}#N(e){let{color:t}=this._initialData;return this.hasEditedComment||e.color.some((e,n)=>e!==t[n])}renderAnnotationElement(e){return this.deleted?(e.hide(),null):(e.updateEdited({rect:this.getPDFRect(),popup:this.comment}),null)}static canCreateNewEmptyEditor(){return!1}},cm=class{#e=Object.create(null);updateProperty(e,t){this[e]=t,this.updateSVGProperty(e,t)}updateProperties(e){if(e)for(let[t,n]of Object.entries(e))t.startsWith(`_`)||this.updateProperty(t,n)}updateSVGProperty(e,t){this.#e[e]=t}toSVGProperties(){let e=this.#e;return this.#e=Object.create(null),{root:e}}reset(){this.#e=Object.create(null)}updateAll(e=this){this.updateProperties(e)}clone(){ul(`Not implemented`)}},lm=class e extends Nu{#e=null;#t;_colorPicker=null;_drawId=null;static _currentDrawId=-1;static _currentParent=null;static#n=null;static#r=null;static#i=null;static _INNER_MARGIN=3;constructor(e){super(e),this.#t=e.mustBeCommitted||!1,this._addOutlines(e)}onUpdatedColor(){this._colorPicker?.update(this.color),super.onUpdatedColor()}_addOutlines(e){e.drawOutlines&&(this.#a(e),this.#c())}#a({drawOutlines:e,drawId:t,drawingOptions:n}){this.#e=e,this._drawingOptions||=n,this.annotationElementId||this._uiManager.a11yAlert(`pdfjs-editor-${this.editorType}-added-alert`),t>=0?(this._drawId=t,this.parent.drawLayer.finalizeDraw(t,e.defaultProperties)):this._drawId=this.#o(e,this.parent),this.#d(e.box)}#o(t,n){let{id:r}=n.drawLayer.draw(e._mergeSVGProperties(this._drawingOptions.toSVGProperties(),t.defaultSVGProperties),!1,!1);return r}static _mergeSVGProperties(e,t){let n=new Set(Object.keys(e));for(let[r,i]of Object.entries(t))n.has(r)?Object.assign(e[r],i):e[r]=i;return e}static getDefaultDrawingOptions(e){ul(`Not implemented`)}static get typesMap(){ul(`Not implemented`)}static get isDrawer(){return!0}static get supportMultipleDrawings(){return!1}static updateDefaultParams(t,n){let r=this.typesMap.get(t);r&&this._defaultDrawingOptions.updateProperty(r,n),this._currentParent&&(e.#n.updateProperty(r,n),this._currentParent.drawLayer.updateProperties(this._currentDrawId,this._defaultDrawingOptions.toSVGProperties()))}updateParams(e,t){let n=this.constructor.typesMap.get(e);n&&this._updateProperty(e,n,t)}static get defaultPropertiesToUpdate(){let e=[],t=this._defaultDrawingOptions;for(let[n,r]of this.typesMap)e.push([n,t[r]]);return e}get propertiesToUpdate(){let e=[],{_drawingOptions:t}=this;for(let[n,r]of this.constructor.typesMap)e.push([n,t[r]]);return e}_updateProperty(e,t,n){let r=this._drawingOptions,i=r[t],a=n=>{r.updateProperty(t,n);let i=this.#e.updateProperty(t,n);i&&this.#d(i),this.parent?.drawLayer.updateProperties(this._drawId,r.toSVGProperties()),e===this.colorType&&this.onUpdatedColor()};this.addCommands({cmd:a.bind(this,n),undo:a.bind(this,i),post:this._uiManager.updateUI.bind(this._uiManager,this),mustExec:!0,type:e,overwriteIfSameType:!0,keepUndo:!0})}_onResizing(){this.parent?.drawLayer.updateProperties(this._drawId,e._mergeSVGProperties(this.#e.getPathResizingSVGProperties(this.#u()),{bbox:this.#f()}))}_onResized(){this.parent?.drawLayer.updateProperties(this._drawId,e._mergeSVGProperties(this.#e.getPathResizedSVGProperties(this.#u()),{bbox:this.#f()}))}_onTranslating(e,t){this.parent?.drawLayer.updateProperties(this._drawId,{bbox:this.#f()})}_onTranslated(){this.parent?.drawLayer.updateProperties(this._drawId,e._mergeSVGProperties(this.#e.getPathTranslatedSVGProperties(this.#u(),this.parentDimensions),{bbox:this.#f()}))}_onStartDragging(){this.parent?.drawLayer.updateProperties(this._drawId,{rootClass:{moving:!0}})}_onStopDragging(){this.parent?.drawLayer.updateProperties(this._drawId,{rootClass:{moving:!1}})}commit(){super.commit(),this.disableEditMode(),this.disableEditing()}disableEditing(){super.disableEditing(),this.div.classList.toggle(`disabled`,!0)}enableEditing(){super.enableEditing(),this.div.classList.toggle(`disabled`,!1)}getBaseTranslation(){return[0,0]}get isResizable(){return!0}onceAdded(e){this.annotationElementId||this.parent.addUndoableEditor(this),this._isDraggable=!0,this.#t&&(this.#t=!1,this.commit(),this.parent.setSelected(this),e&&this.isOnScreen&&this.div.focus())}remove(){this.#s(),super.remove()}rebuild(){this.parent&&(super.rebuild(),this.div!==null&&(this.#c(),this.#d(this.#e.box),this.isAttachedToDOM||this.parent.add(this)))}setParent(e){let t=!1;this.parent&&!e?(this._uiManager.removeShouldRescale(this),this.#s()):e&&(this._uiManager.addShouldRescale(this),this.#c(e),t=!this.parent&&this.div?.classList.contains(`selectedEditor`)),super.setParent(e),t&&this.select()}#s(){this._drawId===null||!this.parent||(this.parent.drawLayer.remove(this._drawId),this._drawId=null,this._drawingOptions.reset())}#c(e=this.parent){if(!(this._drawId!==null&&this.parent===e)){if(this._drawId!==null){this.parent.drawLayer.updateParent(this._drawId,e.drawLayer);return}this._drawingOptions.updateAll(),this._drawId=this.#o(this.#e,e)}}#l([e,t,n,r]){let{parentDimensions:[i,a],rotation:o}=this;switch(o){case 90:return[t,1-e,a/i*n,i/a*r];case 180:return[1-e,1-t,n,r];case 270:return[1-t,e,a/i*n,i/a*r];default:return[e,t,n,r]}}#u(){let{x:e,y:t,width:n,height:r,parentDimensions:[i,a],rotation:o}=this;switch(o){case 90:return[1-t,e,i/a*n,a/i*r];case 180:return[1-e,1-t,n,r];case 270:return[t,1-e,i/a*n,a/i*r];default:return[e,t,n,r]}}#d(e){[this.x,this.y,this.width,this.height]=this.#l(e),this.div&&(this.fixAndSetPosition(),this.setDims()),this._onResized()}#f(){let{x:e,y:t,width:n,height:r,rotation:i,parentRotation:a,parentDimensions:[o,s]}=this;switch((i*4+a)/90){case 1:return[1-t-r,e,r,n];case 2:return[1-e-n,1-t-r,n,r];case 3:return[t,1-e-n,r,n];case 4:return[e,t-o/s*n,s/o*r,o/s*n];case 5:return[1-t,e,o/s*n,s/o*r];case 6:return[1-e-s/o*r,1-t,s/o*r,o/s*n];case 7:return[t-o/s*n,1-e-s/o*r,o/s*n,s/o*r];case 8:return[e-n,t-r,n,r];case 9:return[1-t,e-n,r,n];case 10:return[1-e,1-t,n,r];case 11:return[t-r,1-e,r,n];case 12:return[e-s/o*r,t,s/o*r,o/s*n];case 13:return[1-t-o/s*n,e-s/o*r,o/s*n,s/o*r];case 14:return[1-e,1-t-o/s*n,s/o*r,o/s*n];case 15:return[t,1-e,o/s*n,s/o*r];default:return[e,t,n,r]}}rotate(){this.parent&&this.parent.drawLayer.updateProperties(this._drawId,e._mergeSVGProperties({bbox:this.#f()},this.#e.updateRotation((this.parentRotation-this.rotation+360)%360)))}onScaleChanging(){this.parent&&this.#d(this.#e.updateParentDimensions(this.parentDimensions,this.parent.scale))}static onScaleChangingWhenDrawing(){}render(){if(this.div)return this.div;let e,t;this._isCopy&&(e=this.x,t=this.y);let n=super.render();n.classList.add(`draw`);let r=document.createElement(`div`);return n.append(r),r.setAttribute(`aria-hidden`,`true`),r.className=`internal`,this.setDims(),this._uiManager.addShouldRescale(this),this.disableEditing(),this._isCopy&&this._moveAfterPaste(e,t),n}static createDrawerInstance(e,t,n,r,i){ul(`Not implemented`)}static startDrawing(t,n,r,i){let{target:a,offsetX:o,offsetY:s,pointerId:c,pointerType:l}=i;if(Cu.isInitializedAndDifferentPointerType(l))return;let{viewport:{rotation:u}}=t,{width:d,height:f}=a.getBoundingClientRect(),p=e.#r=new AbortController,m=t.combinedSignal(p);if(Cu.setPointer(l,c),window.addEventListener(`pointerup`,e=>{Cu.isSamePointerIdOrRemove(e.pointerId)&&this._endDraw(e)},{signal:m}),window.addEventListener(`pointercancel`,e=>{Cu.isSamePointerIdOrRemove(e.pointerId)&&this._currentParent.endDrawingSession()},{signal:m}),window.addEventListener(`pointerdown`,t=>{Cu.isSamePointerType(t.pointerType)&&(Cu.initializeAndAddPointerId(t.pointerId),e.#n.isCancellable()&&(e.#n.removeLastElement(),e.#n.isEmpty()?this._currentParent.endDrawingSession(!0):this._endDraw(null)))},{capture:!0,passive:!1,signal:m}),window.addEventListener(`contextmenu`,Xl,{signal:m}),a.addEventListener(`pointermove`,this._drawMove.bind(this),{signal:m}),a.addEventListener(`touchmove`,e=>{Cu.isSameTimeStamp(e.timeStamp)&&Zl(e)},{signal:m}),t.toggleDrawing(),n._editorUndoBar?.hide(),e.#n){t.drawLayer.updateProperties(this._currentDrawId,e.#n.startNew(o,s,d,f,u));return}n.updateUIForDefaultProperties(this),e.#n=this.createDrawerInstance(o,s,d,f,u),e.#i=this.getDefaultDrawingOptions(),this._currentParent=t,{id:this._currentDrawId}=t.drawLayer.draw(this._mergeSVGProperties(e.#i.toSVGProperties(),e.#n.defaultSVGProperties),!0,!1)}static _drawMove(t){if(Cu.isSameTimeStamp(t.timeStamp),!e.#n)return;let{offsetX:n,offsetY:r,pointerId:i}=t;if(Cu.isSamePointerId(i)){if(Cu.isUsingMultiplePointers()){this._endDraw(t);return}this._currentParent.drawLayer.updateProperties(this._currentDrawId,e.#n.add(n,r)),Cu.setTimeStamp(t.timeStamp),Zl(t)}}static _cleanup(t){t&&(this._currentDrawId=-1,this._currentParent=null,e.#n=null,e.#i=null,Cu.clearTimeStamp()),e.#r&&(e.#r.abort(),e.#r=null,Cu.clearPointerIds())}static _endDraw(t){let n=this._currentParent;if(n){if(n.toggleDrawing(!0),this._cleanup(!1),t?.target===n.div&&n.drawLayer.updateProperties(this._currentDrawId,e.#n.end(t.offsetX,t.offsetY)),this.supportMultipleDrawings){let t=e.#n,r=this._currentDrawId,i=t.getLastElement();n.addCommands({cmd:()=>{n.drawLayer.updateProperties(r,t.setLastElement(i))},undo:()=>{n.drawLayer.updateProperties(r,t.removeLastElement())},mustExec:!1,type:Yc.DRAW_STEP});return}this.endDrawing(!1)}}static endDrawing(t){let n=this._currentParent;if(!n)return null;if(n.toggleDrawing(!0),n.cleanUndoStack(Yc.DRAW_STEP),!e.#n.isEmpty()){let{pageDimensions:[r,i],scale:a}=n,o=n.createAndAddNewEditor({offsetX:0,offsetY:0},!1,{drawId:this._currentDrawId,drawOutlines:e.#n.getOutlines(r*a,i*a,a,this._INNER_MARGIN),drawingOptions:e.#i,mustBeCommitted:!t});return this._cleanup(!0),o}return n.drawLayer.remove(this._currentDrawId),this._cleanup(!0),null}createDrawingOptions(e){}static deserializeDraw(e,t,n,r,i,a){ul(`Not implemented`)}static async deserialize(e,t,n){let{rawDims:{pageWidth:r,pageHeight:i,pageX:a,pageY:o}}=t.viewport,s=this.deserializeDraw(a,o,r,i,this._INNER_MARGIN,e),c=await super.deserialize(e,t,n);return c.createDrawingOptions(e),c.#a({drawOutlines:s}),c.#c(),c.onScaleChanging(),c.rotate(),c}serializeDraw(e){let[t,n]=this.pageTranslation,[r,i]=this.pageDimensions;return this.#e.serialize([t,n,r,i],e)}renderAnnotationElement(e){return e.updateEdited({rect:this.getPDFRect()}),null}static canCreateNewEmptyEditor(){return!1}},um=class{#e=new Float64Array(6);#t;#n;#r;#i;#a;#o=``;#s=0;#c=new dm;#l;#u;constructor(e,t,n,r,i,a){this.#l=n,this.#u=r,this.#r=i,this.#i=a,[e,t]=this.#d(e,t);let o=this.#t=[NaN,NaN,NaN,NaN,e,t];this.#a=[e,t],this.#n=[{line:o,points:this.#a}],this.#e.set(o,0)}updateProperty(e,t){e===`stroke-width`&&(this.#i=t)}#d(e,t){return $._normalizePoint(e,t,this.#l,this.#u,this.#r)}isEmpty(){return!this.#n||this.#n.length===0}isCancellable(){return this.#a.length<=10}add(e,t){[e,t]=this.#d(e,t);let[n,r,i,a]=this.#e.subarray(2,6),o=e-i,s=t-a;return Math.hypot(this.#l*o,this.#u*s)<=2?null:(this.#a.push(e,t),isNaN(n)?(this.#e.set([i,a,e,t],2),this.#t.push(NaN,NaN,NaN,NaN,e,t),{path:{d:this.toSVGPath()}}):(isNaN(this.#e[0])&&this.#t.splice(6,6),this.#e.set([n,r,i,a,e,t],0),this.#t.push(...$.createBezierPoints(n,r,i,a,e,t)),{path:{d:this.toSVGPath()}}))}end(e,t){return this.add(e,t)||(this.#a.length===2?{path:{d:this.toSVGPath()}}:null)}startNew(e,t,n,r,i){this.#l=n,this.#u=r,this.#r=i,[e,t]=this.#d(e,t);let a=this.#t=[NaN,NaN,NaN,NaN,e,t];this.#a=[e,t];let o=this.#n.at(-1);return o&&(o.line=new Float32Array(o.line),o.points=new Float32Array(o.points)),this.#n.push({line:a,points:this.#a}),this.#e.set(a,0),this.#s=0,this.toSVGPath(),null}getLastElement(){return this.#n.at(-1)}setLastElement(e){return this.#n?(this.#n.push(e),this.#t=e.line,this.#a=e.points,this.#s=0,{path:{d:this.toSVGPath()}}):this.#c.setLastElement(e)}removeLastElement(){if(!this.#n)return this.#c.removeLastElement();this.#n.pop(),this.#o=``;for(let e=0,t=this.#n.length;e<t;e++){let{line:t,points:n}=this.#n[e];this.#t=t,this.#a=n,this.#s=0,this.toSVGPath()}return{path:{d:this.#o}}}toSVGPath(){let e=$.svgRound(this.#t[4]),t=$.svgRound(this.#t[5]);if(this.#a.length===2)return this.#o=`${this.#o} M ${e} ${t} Z`,this.#o;if(this.#a.length<=6){let n=this.#o.lastIndexOf(`M`);this.#o=`${this.#o.slice(0,n)} M ${e} ${t}`,this.#s=6}if(this.#a.length===4){let e=$.svgRound(this.#t[10]),t=$.svgRound(this.#t[11]);return this.#o=`${this.#o} L ${e} ${t}`,this.#s=12,this.#o}let n=[];this.#s===0&&(n.push(`M ${e} ${t}`),this.#s=6);for(let e=this.#s,t=this.#t.length;e<t;e+=6){let[t,r,i,a,o,s]=this.#t.slice(e,e+6).map($.svgRound);n.push(`C${t} ${r} ${i} ${a} ${o} ${s}`)}return this.#o+=n.join(` `),this.#s=this.#t.length,this.#o}getOutlines(e,t,n,r){let i=this.#n.at(-1);return i.line=new Float32Array(i.line),i.points=new Float32Array(i.points),this.#c.build(this.#n,e,t,n,this.#r,this.#i,r),this.#e=null,this.#t=null,this.#n=null,this.#o=null,this.#c}get defaultSVGProperties(){return{root:{viewBox:`0 0 10000 10000`},rootClass:{draw:!0},bbox:[0,0,1,1]}}},dm=class extends ${#e;#t=0;#n;#r;#i;#a;#o;#s;#c;build(e,t,n,r,i,a,o){this.#i=t,this.#a=n,this.#o=r,this.#s=i,this.#c=a,this.#n=o??0,this.#r=e,this.#d()}get thickness(){return this.#c}setLastElement(e){return this.#r.push(e),{path:{d:this.toSVGPath()}}}removeLastElement(){return this.#r.pop(),{path:{d:this.toSVGPath()}}}toSVGPath(){let e=[];for(let{line:t}of this.#r){if(e.push(`M${$.svgRound(t[4])} ${$.svgRound(t[5])}`),t.length===6){e.push(`Z`);continue}if(t.length===12&&isNaN(t[6])){e.push(`L${$.svgRound(t[10])} ${$.svgRound(t[11])}`);continue}for(let n=6,r=t.length;n<r;n+=6){let[r,i,a,o,s,c]=t.subarray(n,n+6).map($.svgRound);e.push(`C${r} ${i} ${a} ${o} ${s} ${c}`)}}return e.join(``)}serialize([e,t,n,r],i){let a=[],o=[],[s,c,l,u]=this.#u(),d,f,p,m,h,g,_,v,y;switch(this.#s){case 0:y=$._rescale,d=e,f=t+r,p=n,m=-r,h=e+s*n,g=t+(1-c-u)*r,_=e+(s+l)*n,v=t+(1-c)*r;break;case 90:y=$._rescaleAndSwap,d=e,f=t,p=n,m=r,h=e+c*n,g=t+s*r,_=e+(c+u)*n,v=t+(s+l)*r;break;case 180:y=$._rescale,d=e+n,f=t,p=-n,m=r,h=e+(1-s-l)*n,g=t+c*r,_=e+(1-s)*n,v=t+(c+u)*r;break;case 270:y=$._rescaleAndSwap,d=e+n,f=t+r,p=-n,m=-r,h=e+(1-c-u)*n,g=t+(1-s-l)*r,_=e+(1-c)*n,v=t+(1-s)*r;break}for(let{line:e,points:t}of this.#r)a.push(y(e,d,f,p,m,i?Array(e.length):null)),o.push(y(t,d,f,p,m,i?Array(t.length):null));return{lines:a,points:o,rect:[h,g,_,v]}}static deserialize(e,t,n,r,i,{paths:{lines:a,points:o},rotation:s,thickness:c}){let l=[],u,d,f,p,m;switch(s){case 0:m=$._rescale,u=-e/n,d=t/r+1,f=1/n,p=-1/r;break;case 90:m=$._rescaleAndSwap,u=-t/r,d=-e/n,f=1/r,p=1/n;break;case 180:m=$._rescale,u=e/n+1,d=-t/r,f=-1/n,p=1/r;break;case 270:m=$._rescaleAndSwap,u=t/r+1,d=e/n+1,f=-1/r,p=-1/n;break}if(!a){a=[];for(let e of o){let t=e.length;if(t===2){a.push(new Float32Array([NaN,NaN,NaN,NaN,e[0],e[1]]));continue}if(t===4){a.push(new Float32Array([NaN,NaN,NaN,NaN,e[0],e[1],NaN,NaN,NaN,NaN,e[2],e[3]]));continue}let n=new Float32Array(3*(t-2));a.push(n);let[r,i,o,s]=e.subarray(0,4);n.set([NaN,NaN,NaN,NaN,r,i],0);for(let a=4;a<t;a+=2){let t=e[a],c=e[a+1];n.set($.createBezierPoints(r,i,o,s,t,c),(a-2)*3),[r,i,o,s]=[o,s,t,c]}}}for(let e=0,t=a.length;e<t;e++)l.push({line:m(a[e].map(e=>e??NaN),u,d,f,p),points:m(o[e].map(e=>e??NaN),u,d,f,p)});let h=new this.prototype.constructor;return h.build(l,n,r,1,s,c,i),h}#l(e=this.#c){let t=this.#n+e/2*this.#o;return this.#s%180==0?[t/this.#i,t/this.#a]:[t/this.#a,t/this.#i]}#u(){let[e,t,n,r]=this.#e,[i,a]=this.#l(0);return[e+i,t+a,n-2*i,r-2*a]}#d(){let e=this.#e=new Float32Array([1/0,1/0,-1/0,-1/0]);for(let{line:t}of this.#r){if(t.length<=12){for(let n=4,r=t.length;n<r;n+=6)Q.pointBoundingBox(t[n],t[n+1],e);continue}let n=t[4],r=t[5];for(let i=6,a=t.length;i<a;i+=6){let[a,o,s,c,l,u]=t.subarray(i,i+6);Q.bezierBoundingBox(n,r,a,o,s,c,l,u,e),n=l,r=u}}let[t,n]=this.#l();e[0]=Il(e[0]-t,0,1),e[1]=Il(e[1]-n,0,1),e[2]=Il(e[2]+t,0,1),e[3]=Il(e[3]+n,0,1),e[2]-=e[0],e[3]-=e[1]}get box(){return this.#e}updateProperty(e,t){return e===`stroke-width`?this.#f(t):null}#f(e){let[t,n]=this.#l();this.#c=e;let[r,i]=this.#l(),[a,o]=[r-t,i-n],s=this.#e;return s[0]-=a,s[1]-=o,s[2]+=2*a,s[3]+=2*o,s}updateParentDimensions([e,t],n){let[r,i]=this.#l();this.#i=e,this.#a=t,this.#o=n;let[a,o]=this.#l(),s=a-r,c=o-i,l=this.#e;return l[0]-=s,l[1]-=c,l[2]+=2*s,l[3]+=2*c,l}updateRotation(e){return this.#t=e,{path:{transform:this.rotationTransform}}}get viewBox(){return this.#e.map($.svgRound).join(` `)}get defaultProperties(){let[e,t]=this.#e;return{root:{viewBox:this.viewBox},path:{"transform-origin":`${$.svgRound(e)} ${$.svgRound(t)}`}}}get rotationTransform(){let[,,e,t]=this.#e,n=0,r=0,i=0,a=0,o=0,s=0;switch(this.#t){case 90:r=t/e,i=-e/t,o=e;break;case 180:n=-1,a=-1,o=e,s=t;break;case 270:r=-t/e,i=e/t,s=t;break;default:return``}return`matrix(${n} ${r} ${i} ${a} ${$.svgRound(o)} ${$.svgRound(s)})`}getPathResizingSVGProperties([e,t,n,r]){let[i,a]=this.#l(),[o,s,c,l]=this.#e;if(Math.abs(c-i)<=$.PRECISION||Math.abs(l-a)<=$.PRECISION){let i=e+n/2-(o+c/2),a=t+r/2-(s+l/2);return{path:{"transform-origin":`${$.svgRound(e)} ${$.svgRound(t)}`,transform:`${this.rotationTransform} translate(${i} ${a})`}}}let u=(n-2*i)/(c-2*i),d=(r-2*a)/(l-2*a),f=c/n,p=l/r;return{path:{"transform-origin":`${$.svgRound(o)} ${$.svgRound(s)}`,transform:`${this.rotationTransform} scale(${f} ${p}) translate(${$.svgRound(i)} ${$.svgRound(a)}) scale(${u} ${d}) translate(${$.svgRound(-i)} ${$.svgRound(-a)})`}}}getPathResizedSVGProperties([e,t,n,r]){let[i,a]=this.#l(),o=this.#e,[s,c,l,u]=o;if(o[0]=e,o[1]=t,o[2]=n,o[3]=r,Math.abs(l-i)<=$.PRECISION||Math.abs(u-a)<=$.PRECISION){let i=e+n/2-(s+l/2),a=t+r/2-(c+u/2);for(let{line:e,points:t}of this.#r)$._translate(e,i,a,e),$._translate(t,i,a,t);return{root:{viewBox:this.viewBox},path:{"transform-origin":`${$.svgRound(e)} ${$.svgRound(t)}`,transform:this.rotationTransform||null,d:this.toSVGPath()}}}let d=(n-2*i)/(l-2*i),f=(r-2*a)/(u-2*a),p=-d*(s+i)+e+i,m=-f*(c+a)+t+a;if(d!==1||f!==1||p!==0||m!==0)for(let{line:e,points:t}of this.#r)$._rescale(e,p,m,d,f,e),$._rescale(t,p,m,d,f,t);return{root:{viewBox:this.viewBox},path:{"transform-origin":`${$.svgRound(e)} ${$.svgRound(t)}`,transform:this.rotationTransform||null,d:this.toSVGPath()}}}getPathTranslatedSVGProperties([e,t],n){let[r,i]=n,a=this.#e,o=e-a[0],s=t-a[1];if(this.#i===r&&this.#a===i)for(let{line:e,points:t}of this.#r)$._translate(e,o,s,e),$._translate(t,o,s,t);else{let e=this.#i/r,t=this.#a/i;this.#i=r,this.#a=i;for(let{line:n,points:r}of this.#r)$._rescale(n,o,s,e,t,n),$._rescale(r,o,s,e,t,r);a[2]*=e,a[3]*=t}return a[0]=e,a[1]=t,{root:{viewBox:this.viewBox},path:{d:this.toSVGPath(),"transform-origin":`${$.svgRound(e)} ${$.svgRound(t)}`}}}get defaultSVGProperties(){let e=this.#e;return{root:{viewBox:this.viewBox},rootClass:{draw:!0},path:{d:this.toSVGPath(),"transform-origin":`${$.svgRound(e[0])} ${$.svgRound(e[1])}`,transform:this.rotationTransform||null},bbox:e}}},fm=class e extends cm{constructor(e){super(),this._viewParameters=e,super.updateProperties({fill:`none`,stroke:Nu._defaultLineColor,"stroke-opacity":1,"stroke-width":1,"stroke-linecap":`round`,"stroke-linejoin":`round`,"stroke-miterlimit":10})}updateSVGProperty(e,t){e===`stroke-width`&&(t??=this[`stroke-width`],t*=this._viewParameters.realScale),super.updateSVGProperty(e,t)}clone(){let t=new e(this._viewParameters);return t.updateAll(this),t}},pm=class e extends lm{static _type=`ink`;static _editorType=Y.INK;static _defaultDrawingOptions=null;constructor(e){super({...e,name:`inkEditor`}),this._willKeepAspectRatio=!0,this.defaultL10nId=`pdfjs-editor-ink-editor`}static initialize(e,t){Nu.initialize(e,t),this._defaultDrawingOptions=new fm(t.viewParameters)}static getDefaultDrawingOptions(e){let t=this._defaultDrawingOptions.clone();return t.updateProperties(e),t}static get supportMultipleDrawings(){return!0}static get typesMap(){return Z(this,`typesMap`,new Map([[Yc.INK_THICKNESS,`stroke-width`],[Yc.INK_COLOR,`stroke`],[Yc.INK_OPACITY,`stroke-opacity`]]))}static createDrawerInstance(e,t,n,r,i){return new um(e,t,n,r,i,this._defaultDrawingOptions[`stroke-width`])}static deserializeDraw(e,t,n,r,i,a){return dm.deserialize(e,t,n,r,i,a)}static async deserialize(e,t,n){let r=null;if(e instanceof Gp){let{data:{inkLists:t,rect:n,rotation:i,id:a,color:o,opacity:s,borderStyle:{rawWidth:c},popupRef:l,richText:u,contentsObj:d,creationDate:f,modificationDate:p},parent:{page:{pageNumber:m}}}=e;r=e={annotationType:Y.INK,color:Array.from(o),thickness:c,opacity:s,paths:{points:t},boxes:null,pageIndex:m-1,rect:n.slice(0),rotation:i,annotationElementId:a,id:a,deleted:!1,popupRef:l,richText:u,comment:d?.str||null,creationDate:f,modificationDate:p}}let i=await super.deserialize(e,t,n);return i._initialData=r,e.comment&&i.setCommentData(e),i}get toolbarButtons(){return this._colorPicker||=new hp(this),[[`colorPicker`,this._colorPicker]]}get colorType(){return Yc.INK_COLOR}get color(){return this._drawingOptions.stroke}get opacity(){return this._drawingOptions[`stroke-opacity`]}onScaleChanging(){if(!this.parent)return;super.onScaleChanging();let{_drawId:e,_drawingOptions:t,parent:n}=this;t.updateSVGProperty(`stroke-width`),n.drawLayer.updateProperties(e,t.toSVGProperties())}static onScaleChangingWhenDrawing(){let e=this._currentParent;e&&(super.onScaleChangingWhenDrawing(),this._defaultDrawingOptions.updateSVGProperty(`stroke-width`),e.drawLayer.updateProperties(this._currentDrawId,this._defaultDrawingOptions.toSVGProperties()))}createDrawingOptions({color:t,thickness:n,opacity:r}){this._drawingOptions=e.getDefaultDrawingOptions({stroke:Q.makeHexColor(...t),"stroke-width":n,"stroke-opacity":r})}serialize(e=!1){if(this.isEmpty())return null;if(this.deleted)return this.serializeDeleted();let{lines:t,points:n}=this.serializeDraw(e),{_drawingOptions:{stroke:r,"stroke-opacity":i,"stroke-width":a}}=this,o=Object.assign(super.serialize(e),{color:Nu._colorManager.convert(r),opacity:i,thickness:a,paths:{lines:t,points:n}});return this.addComment(o),e?(o.isCopy=!0,o):this.annotationElementId&&!this.#e(o)?null:(o.id=this.annotationElementId,o)}#e(e){let{color:t,thickness:n,opacity:r,pageIndex:i}=this._initialData;return this.hasEditedComment||this._hasBeenMoved||this._hasBeenResized||e.color.some((e,n)=>e!==t[n])||e.thickness!==n||e.opacity!==r||e.pageIndex!==i}renderAnnotationElement(e){if(this.deleted)return e.hide(),null;let{points:t,rect:n}=this.serializeDraw(!1);return e.updateEdited({rect:n,thickness:this._drawingOptions[`stroke-width`],points:t,popup:this.comment}),null}},mm=class extends dm{toSVGPath(){let e=super.toSVGPath();return e.endsWith(`Z`)||(e+=`Z`),e}};J(9432);var hm=8,gm=3,_m=class{static#e={maxDim:512,sigmaSFactor:.02,sigmaR:25,kernelSize:16};static#t(e,t,n,r){return n-=e,r-=t,n===0?r>0?0:4:n===1?r+6:2-r}static#n=new Int32Array([0,1,-1,1,-1,0,-1,-1,0,-1,1,-1,1,0,1,1]);static#r(e,t,n,r,i,a,o){let s=this.#t(n,r,i,a);for(let i=0;i<8;i++){let a=(-i+s-o+16)%8,c=this.#n[2*a],l=this.#n[2*a+1];if(e[(n+c)*t+(r+l)]!==0)return a}return-1}static#i(e,t,n,r,i,a,o){let s=this.#t(n,r,i,a);for(let i=0;i<8;i++){let a=(i+s+o+16)%8,c=this.#n[2*a],l=this.#n[2*a+1];if(e[(n+c)*t+(r+l)]!==0)return a}return-1}static#a(e,t,n,r){let i=e.length,a=new Int32Array(i);for(let t=0;t<i;t++)a[t]=e[t]<=r?1:0;for(let e=1;e<n-1;e++)a[e*t]=a[e*t+t-1]=0;for(let e=0;e<t;e++)a[e]=a[t*n-1-e]=0;let o=1,s,c=[];for(let e=1;e<n-1;e++){s=1;for(let n=1;n<t-1;n++){let r=e*t+n,i=a[r];if(i===0)continue;let l=e,u=n;if(i===1&&a[r-1]===0)o+=1,--u;else if(i>=1&&a[r+1]===0)o+=1,u+=1,i>1&&(s=i);else{i!==1&&(s=Math.abs(i));continue}let d=[n,e],f=u===n+1,p={isHole:f,points:d,id:o,parent:0};c.push(p);let m;for(let e of c)if(e.id===s){m=e;break}m?m.isHole?p.parent=f?m.parent:s:p.parent=f?s:m.parent:p.parent=f?s:0;let h=this.#r(a,t,e,n,l,u,0);if(h===-1){a[r]=-o,a[r]!==1&&(s=Math.abs(a[r]));continue}let g=this.#n[2*h],_=this.#n[2*h+1],v=e+g,y=n+_;l=v,u=y;let b=e,x=n;for(;;){let i=this.#i(a,t,b,x,l,u,1);g=this.#n[2*i],_=this.#n[2*i+1];let c=b+g,f=x+_;d.push(f,c);let p=b*t+x;if(a[p+1]===0?a[p]=-o:a[p]===1&&(a[p]=o),c===e&&f===n&&b===v&&x===y){a[r]!==1&&(s=Math.abs(a[r]));break}else l=b,u=x,b=c,x=f}}}return c}static#o(e,t,n,r){if(n-t<=4){for(let i=t;i<n-2;i+=2)r.push(e[i],e[i+1]);return}let i=e[t],a=e[t+1],o=e[n-4]-i,s=e[n-3]-a,c=Math.hypot(o,s),l=o/c,u=s/c,d=l*a-u*i,f=s/o,p=1/c,m=Math.atan(f),h=Math.cos(m),g=Math.sin(m),_=p*(Math.abs(h)+Math.abs(g)),v=p*(1-_+_**2),y=Math.max(Math.atan(Math.abs(g+h)*v),Math.atan(Math.abs(g-h)*v)),b=0,x=t;for(let r=t+2;r<n-2;r+=2){let t=Math.abs(d-l*e[r+1]+u*e[r]);t>b&&(x=r,b=t)}b>(c*y)**2?(this.#o(e,t,x+2,r),this.#o(e,x,n,r)):r.push(i,a)}static#s(e){let t=[],n=e.length;return this.#o(e,0,n,t),t.push(e[n-2],e[n-1]),t.length<=4?null:t}static#c(e,t,n,r,i,a){let o=new Float32Array(a**2),s=-2*r**2,c=a>>1;for(let e=0;e<a;e++){let t=(e-c)**2;for(let n=0;n<a;n++)o[e*a+n]=Math.exp((t+(n-c)**2)/s)}let l=new Float32Array(256),u=-2*i**2;for(let e=0;e<256;e++)l[e]=Math.exp(e**2/u);let d=e.length,f=new Uint8Array(d),p=new Uint32Array(256);for(let r=0;r<n;r++)for(let i=0;i<t;i++){let s=r*t+i,u=e[s],d=0,m=0;for(let s=0;s<a;s++){let f=r+s-c;if(!(f<0||f>=n))for(let n=0;n<a;n++){let r=i+n-c;if(r<0||r>=t)continue;let p=e[f*t+r],h=o[s*a+n]*l[Math.abs(p-u)];d+=p*h,m+=h}}let h=f[s]=Math.round(d/m);p[h]++}return[f,p]}static#l(e){let t=new Uint32Array(256);for(let n of e)t[n]++;return t}static#u(e){let t=e.length,n=new Uint8ClampedArray(t>>2),r=-1/0,i=1/0;for(let t=0,a=n.length;t<a;t++){let a=n[t]=e[t<<2];r=Math.max(r,a),i=Math.min(i,a)}let a=255/(r-i);for(let e=0,t=n.length;e<t;e++)n[e]=(n[e]-i)*a;return n}static#d(e){let t,n=-1/0,r=-1/0,i=e.findIndex(e=>e!==0),a=i,o=i;for(t=i;t<256;t++){let i=e[t];i>n&&(t-a>r&&(r=t-a,o=t-1),n=i,a=t)}for(t=o-1;t>=0&&!(e[t]>e[t+1]);t--);return t}static#f(e){let t=e,{width:n,height:r}=e,{maxDim:i}=this.#e,a=n,o=r;if(n>i||r>i){let s=n,c=r,l=Math.log2(Math.max(n,r)/i),u=Math.floor(l);l=l===u?u-1:u;for(let n=0;n<l;n++){a=Math.ceil(s/2),o=Math.ceil(c/2);let n=new OffscreenCanvas(a,o);n.getContext(`2d`).drawImage(e,0,0,s,c,0,0,a,o),s=a,c=o,e!==t&&e.close(),e=n.transferToImageBitmap()}let d=Math.min(i/a,i/o);a=Math.round(a*d),o=Math.round(o*d)}let s=new OffscreenCanvas(a,o).getContext(`2d`,{willReadFrequently:!0});s.fillStyle=`white`,s.fillRect(0,0,a,o),s.filter=`grayscale(1)`,s.drawImage(e,0,0,e.width,e.height,0,0,a,o);let c=s.getImageData(0,0,a,o).data;return[this.#u(c),a,o]}static extractContoursFromText(e,{fontFamily:t,fontStyle:n,fontWeight:r},i,a,o,s){let c=new OffscreenCanvas(1,1),l=c.getContext(`2d`,{alpha:!1}),u=l.font=`${n} ${r} 200px ${t}`,{actualBoundingBoxLeft:d,actualBoundingBoxRight:f,actualBoundingBoxAscent:p,actualBoundingBoxDescent:m,fontBoundingBoxAscent:h,fontBoundingBoxDescent:g,width:_}=l.measureText(e),v=1.5,y=Math.ceil(Math.max(Math.abs(d)+Math.abs(f)||0,_)*v),b=Math.ceil(Math.max(Math.abs(p)+Math.abs(m)||200,Math.abs(h)+Math.abs(g)||200)*v);c=new OffscreenCanvas(y,b),l=c.getContext(`2d`,{alpha:!0,willReadFrequently:!0}),l.font=u,l.filter=`grayscale(1)`,l.fillStyle=`white`,l.fillRect(0,0,y,b),l.fillStyle=`black`,l.fillText(e,y*(v-1)/2,b*(3-v)/2);let x=this.#u(l.getImageData(0,0,y,b).data),S=this.#l(x),C=this.#d(S),w=this.#a(x,y,b,C);return this.processDrawnLines({lines:{curves:w,width:y,height:b},pageWidth:i,pageHeight:a,rotation:o,innerMargin:s,mustSmooth:!0,areContours:!0})}static process(e,t,n,r,i){let[a,o,s]=this.#f(e),[c,l]=this.#c(a,o,s,Math.hypot(o,s)*this.#e.sigmaSFactor,this.#e.sigmaR,this.#e.kernelSize),u=this.#d(l),d=this.#a(c,o,s,u);return this.processDrawnLines({lines:{curves:d,width:o,height:s},pageWidth:t,pageHeight:n,rotation:r,innerMargin:i,mustSmooth:!0,areContours:!0})}static processDrawnLines({lines:e,pageWidth:t,pageHeight:n,rotation:r,innerMargin:i,mustSmooth:a,areContours:o}){r%180!=0&&([t,n]=[n,t]);let{curves:s,width:c,height:l}=e,u=e.thickness??0,d=[],f=Math.min(t/c,n/l),p=f/t,m=f/n,h=[];for(let{points:e}of s){let t=a?this.#s(e):e;if(!t)continue;h.push(t);let n=t.length,r=new Float32Array(n),i=new Float32Array(3*(n===2?2:n-2));if(d.push({line:i,points:r}),n===2){r[0]=t[0]*p,r[1]=t[1]*m,i.set([NaN,NaN,NaN,NaN,r[0],r[1]],0);continue}let[o,s,c,l]=t;o*=p,s*=m,c*=p,l*=m,r.set([o,s,c,l],0),i.set([NaN,NaN,NaN,NaN,o,s],0);for(let e=4;e<n;e+=2){let n=r[e]=t[e]*p,a=r[e+1]=t[e+1]*m;i.set($.createBezierPoints(o,s,c,l,n,a),(e-2)*3),[o,s,c,l]=[c,l,n,a]}}if(d.length===0)return null;let g=o?new mm:new dm;return g.build(d,t,n,1,r,o?0:u,i),{outline:g,newCurves:h,areContours:o,thickness:u,width:c,height:l}}static async compressSignature({outlines:e,areContours:t,thickness:n,width:r,height:i}){let a=1/0,o=-1/0,s=0;for(let t of e){s+=t.length;for(let e=2,n=t.length;e<n;e++){let n=t[e]-t[e-2];a=Math.min(a,n),o=Math.max(o,n)}}let c;c=a>=-128&&o<=127?Int8Array:a>=-32768&&o<=32767?Int16Array:Int32Array;let l=e.length,u=hm+gm*l,d=new Uint32Array(u),f=0;d[f++]=u*Uint32Array.BYTES_PER_ELEMENT+(s-2*l)*c.BYTES_PER_ELEMENT,d[f++]=0,d[f++]=r,d[f++]=i,d[f++]=t?0:1,d[f++]=Math.max(0,Math.floor(n??0)),d[f++]=l,d[f++]=c.BYTES_PER_ELEMENT;for(let t of e)d[f++]=t.length-2,d[f++]=t[0],d[f++]=t[1];let p=new CompressionStream(`deflate-raw`),m=p.writable.getWriter();await m.ready,m.write(d);let h=c.prototype.constructor;for(let t of e){let e=new h(t.length-2);for(let n=2,r=t.length;n<r;n++)e[n-2]=t[n]-t[n-2];m.write(e)}m.close();let g=await new Response(p.readable).arrayBuffer();return new Uint8Array(g).toBase64()}static async decompressSignature(e){try{let t=Uint8Array.fromBase64(e),{readable:n,writable:r}=new DecompressionStream(`deflate-raw`),i=r.getWriter();await i.ready,i.write(t).then(async()=>{await i.ready,await i.close()}).catch(()=>{});let a=null,o=0;for await(let e of n)a||=new Uint8Array(new Uint32Array(e.buffer,0,4)[0]),a.set(e,o),o+=e.length;let s=new Uint32Array(a.buffer,0,a.length>>2),c=s[1];if(c!==0)throw Error(`Invalid version: ${c}`);let l=s[2],u=s[3],d=s[4]===0,f=s[5],p=s[6],m=s[7],h=[],g=(hm+gm*p)*Uint32Array.BYTES_PER_ELEMENT,_;switch(m){case Int8Array.BYTES_PER_ELEMENT:_=new Int8Array(a.buffer,g);break;case Int16Array.BYTES_PER_ELEMENT:_=new Int16Array(a.buffer,g);break;case Int32Array.BYTES_PER_ELEMENT:_=new Int32Array(a.buffer,g);break}o=0;for(let e=0;e<p;e++){let t=s[gm*e+hm],n=new Float32Array(t+2);h.push(n);for(let t=0;t<gm-1;t++)n[t]=s[gm*e+hm+t+1];for(let e=0;e<t;e++)n[e+2]=n[e]+_[o++]}return{areContours:d,thickness:f,outlines:h,width:l,height:u}}catch(e){return X(`decompressSignature: ${e}`),null}}},vm=class e extends cm{constructor(){super(),super.updateProperties({fill:Nu._defaultLineColor,"stroke-width":0})}clone(){let t=new e;return t.updateAll(this),t}},ym=class e extends fm{constructor(e){super(e),super.updateProperties({stroke:Nu._defaultLineColor,"stroke-width":1})}clone(){let t=new e(this._viewParameters);return t.updateAll(this),t}},bm=class e extends lm{#e=!1;#t=null;#n=null;#r=null;static _type=`signature`;static _editorType=Y.SIGNATURE;static _defaultDrawingOptions=null;constructor(e){super({...e,mustBeCommitted:!0,name:`signatureEditor`}),this._willKeepAspectRatio=!0,this.#n=e.signatureData||null,this.#t=null,this.defaultL10nId=`pdfjs-editor-signature-editor1`}static initialize(e,t){Nu.initialize(e,t),this._defaultDrawingOptions=new vm,this._defaultDrawnSignatureOptions=new ym(t.viewParameters)}static getDefaultDrawingOptions(e){let t=this._defaultDrawingOptions.clone();return t.updateProperties(e),t}static get supportMultipleDrawings(){return!1}static get typesMap(){return Z(this,`typesMap`,new Map)}static get isDrawer(){return!1}get telemetryFinalData(){return{type:`signature`,hasDescription:!!this.#t}}static computeTelemetryFinalData(e){let t=e.get(`hasDescription`);return{hasAltText:t.get(!0)??0,hasNoAltText:t.get(!1)??0}}get isResizable(){return!0}onScaleChanging(){this._drawId!==null&&super.onScaleChanging()}render(){if(this.div)return this.div;let t,n,{_isCopy:r}=this;if(r&&(this._isCopy=!1,t=this.x,n=this.y),super.render(),this._drawId===null)if(this.#n){let{lines:t,mustSmooth:n,areContours:r,description:i,uuid:a,heightInPage:o}=this.#n,{rawDims:{pageWidth:s,pageHeight:c},rotation:l}=this.parent.viewport,u=_m.processDrawnLines({lines:t,pageWidth:s,pageHeight:c,rotation:l,innerMargin:e._INNER_MARGIN,mustSmooth:n,areContours:r});this.addSignature(u,o,i,a)}else this.div.setAttribute(`data-l10n-args`,JSON.stringify({description:``})),this.div.hidden=!0,this._uiManager.getSignature(this);else this.div.setAttribute(`data-l10n-args`,JSON.stringify({description:this.#t||``}));return r&&(this._isCopy=!0,this._moveAfterPaste(t,n)),this.div}setUuid(e){this.#r=e,this.addEditToolbar()}getUuid(){return this.#r}get description(){return this.#t}set description(e){this.#t=e,this.div&&(this.div.setAttribute(`data-l10n-args`,JSON.stringify({description:e})),super.addEditToolbar().then(t=>{t?.updateEditSignatureButton(e)}))}getSignaturePreview(){let{newCurves:e,areContours:t,thickness:n,width:r,height:i}=this.#n,a=Math.max(r,i);return{areContours:t,outline:_m.processDrawnLines({lines:{curves:e.map(e=>({points:e})),thickness:n,width:r,height:i},pageWidth:a,pageHeight:a,rotation:0,innerMargin:0,mustSmooth:!1,areContours:t}).outline}}get toolbarButtons(){return this._uiManager.signatureManager?[[`editSignature`,this._uiManager.signatureManager]]:super.toolbarButtons}addSignature(t,n,r,i){let{x:a,y:o}=this,{outline:s}=this.#n=t;this.#e=s instanceof mm,this.description=r;let c;this.#e?c=e.getDefaultDrawingOptions():(c=e._defaultDrawnSignatureOptions.clone(),c.updateProperties({"stroke-width":s.thickness})),this._addOutlines({drawOutlines:s,drawingOptions:c});let[,l]=this.pageDimensions,u=n/l;u=u>=1?.5:u,this.width*=u/this.height,this.width>=1&&(u*=.9/this.width,this.width=.9),this.height=u,this.setDims(),this.x=a,this.y=o,this.center(),this._onResized(),this.onScaleChanging(),this.rotate(),this._uiManager.addToAnnotationStorage(this),this.setUuid(i),this._reportTelemetry({action:`pdfjs.signature.inserted`,data:{hasBeenSaved:!!i,hasDescription:!!r}}),this.div.hidden=!1}getFromImage(t){let{rawDims:{pageWidth:n,pageHeight:r},rotation:i}=this.parent.viewport;return _m.process(t,n,r,i,e._INNER_MARGIN)}getFromText(t,n){let{rawDims:{pageWidth:r,pageHeight:i},rotation:a}=this.parent.viewport;return _m.extractContoursFromText(t,n,r,i,a,e._INNER_MARGIN)}getDrawnSignature(t){let{rawDims:{pageWidth:n,pageHeight:r},rotation:i}=this.parent.viewport;return _m.processDrawnLines({lines:t,pageWidth:n,pageHeight:r,rotation:i,innerMargin:e._INNER_MARGIN,mustSmooth:!1,areContours:!1})}createDrawingOptions({areContours:t,thickness:n}){t?this._drawingOptions=e.getDefaultDrawingOptions():(this._drawingOptions=e._defaultDrawnSignatureOptions.clone(),this._drawingOptions.updateProperties({"stroke-width":n}))}serialize(e=!1){if(this.isEmpty())return null;let{lines:t,points:n}=this.serializeDraw(e),{_drawingOptions:{"stroke-width":r}}=this,i=Object.assign(super.serialize(e),{isSignature:!0,areContours:this.#e,color:[0,0,0],thickness:this.#e?0:r});return this.addComment(i),e?(i.paths={lines:t,points:n},i.uuid=this.#r,i.isCopy=!0):i.lines=t,this.#t&&(i.accessibilityData={type:`Figure`,alt:this.#t}),i}static deserializeDraw(e,t,n,r,i,a){return a.areContours?mm.deserialize(e,t,n,r,i,a):dm.deserialize(e,t,n,r,i,a)}static async deserialize(e,t,n){let r=await super.deserialize(e,t,n);return r.#e=e.areContours,r.description=e.accessibilityData?.alt||``,r.#r=e.uuid,r}},xm=class extends Nu{#e=null;#t=null;#n=null;#r=null;#i=null;#a=``;#o=null;#s=!1;#c=null;#l=!1;#u=!1;static _type=`stamp`;static _editorType=Y.STAMP;constructor(e){super({...e,name:`stampEditor`}),this.#r=e.bitmapUrl,this.#i=e.bitmapFile,this.defaultL10nId=`pdfjs-editor-stamp-editor`}static initialize(e,t){Nu.initialize(e,t)}static isHandlingMimeForPasting(e){return su.includes(e)}static paste(e,t){t.pasteEditor({mode:Y.STAMP},{bitmapFile:e.getAsFile()})}altTextFinish(){this._uiManager.useNewAltTextFlow&&(this.div.hidden=!1),super.altTextFinish()}get telemetryFinalData(){return{type:`stamp`,hasAltText:!!this.altTextData?.altText}}static computeTelemetryFinalData(e){let t=e.get(`hasAltText`);return{hasAltText:t.get(!0)??0,hasNoAltText:t.get(!1)??0}}#d(e,t=!1){if(!e){this.remove();return}this.#e=e.bitmap,t||(this.#t=e.id,this.#l=e.isSvg),e.file&&(this.#a=e.file.name),this.#m()}#f(){if(this.#n=null,this._uiManager.enableWaiting(!1),this.#o){if(this._uiManager.useNewAltTextWhenAddingImage&&this._uiManager.useNewAltTextFlow&&this.#e){this.addEditToolbar().then(()=>{this._editToolbar.hide(),this._uiManager.editAltText(this,!0)});return}if(!this._uiManager.useNewAltTextWhenAddingImage&&this._uiManager.useNewAltTextFlow&&this.#e){this._reportTelemetry({action:`pdfjs.image.image_added`,data:{alt_text_modal:!1,alt_text_type:`empty`}});try{this.mlGuessAltText()}catch{}}this.div.focus()}}async mlGuessAltText(e=null,t=!0){if(this.hasAltTextData())return null;let{mlManager:n}=this._uiManager;if(!n)throw Error(`No ML.`);if(!await n.isEnabledFor(`altText`))throw Error(`ML isn't enabled for alt text.`);let{data:r,width:i,height:a}=e||this.copyCanvas(null,null,!0).imageData,o=await n.guess({name:`altText`,request:{data:r,width:i,height:a,channels:r.length/(i*a)}});if(!o)throw Error(`No response from the AI service.`);if(o.error)throw Error(`Error from the AI service.`);if(o.cancel)return null;if(!o.output)throw Error(`No valid response from the AI service.`);let s=o.output;return await this.setGuessedAltText(s),t&&!this.hasAltTextData()&&(this.altTextData={alt:s,decorative:!1}),s}#p(){if(this.#t){this._uiManager.enableWaiting(!0),this._uiManager.imageManager.getFromId(this.#t).then(e=>this.#d(e,!0)).finally(()=>this.#f());return}if(this.#r){let e=this.#r;this.#r=null,this._uiManager.enableWaiting(!0),this.#n=this._uiManager.imageManager.getFromUrl(e).then(e=>this.#d(e)).finally(()=>this.#f());return}if(this.#i){let e=this.#i;this.#i=null,this._uiManager.enableWaiting(!0),this.#n=this._uiManager.imageManager.getFromFile(e).then(e=>this.#d(e)).finally(()=>this.#f());return}let e=document.createElement(`input`);e.type=`file`,e.accept=su.join(`,`);let t=this._uiManager._signal;this.#n=new Promise(n=>{e.addEventListener(`change`,async()=>{if(!e.files||e.files.length===0)this.remove();else{this._uiManager.enableWaiting(!0);let t=await this._uiManager.imageManager.getFromFile(e.files[0]);this._reportTelemetry({action:`pdfjs.image.image_selected`,data:{alt_text_modal:this._uiManager.useNewAltTextFlow}}),this.#d(t)}n()},{signal:t}),e.addEventListener(`cancel`,()=>{this.remove(),n()},{signal:t})}).finally(()=>this.#f()),e.click()}remove(){this.#t&&(this.#e=null,this._uiManager.imageManager.deleteId(this.#t),this.#o?.remove(),this.#o=null,this.#c&&=(clearTimeout(this.#c),null)),super.remove()}rebuild(){if(!this.parent){this.#t&&this.#p();return}super.rebuild(),this.div!==null&&(this.#t&&this.#o===null&&this.#p(),this.isAttachedToDOM||this.parent.add(this))}onceAdded(e){this._isDraggable=!0,e&&this.div.focus()}isEmpty(){return!(this.#n||this.#e||this.#r||this.#i||this.#t||this.#s)}get toolbarButtons(){return[[`altText`,this.createAltText()]]}get isResizable(){return!0}render(){if(this.div)return this.div;let e,t;return this._isCopy&&(e=this.x,t=this.y),super.render(),this.div.hidden=!0,this.createAltText(),this.#s||(this.#e?this.#m():this.#p()),this._isCopy&&this._moveAfterPaste(e,t),this._uiManager.addShouldRescale(this),this.div}setCanvas(e,t){let{id:n,bitmap:r}=this._uiManager.imageManager.getFromCanvas(e,t);t.remove(),n&&this._uiManager.imageManager.isValidId(n)&&(this.#t=n,r&&(this.#e=r),this.#s=!1,this.#m())}_onResized(){this.onScaleChanging()}onScaleChanging(){this.parent&&(this.#c!==null&&clearTimeout(this.#c),this.#c=setTimeout(()=>{this.#c=null,this.#g()},200))}#m(){let{div:e}=this,{width:t,height:n}=this.#e,[r,i]=this.pageDimensions,a=.75;if(this.width)t=this.width*r,n=this.height*i;else if(t>a*r||n>a*i){let e=Math.min(a*r/t,a*i/n);t*=e,n*=e}this._uiManager.enableWaiting(!1);let o=this.#o=document.createElement(`canvas`);o.setAttribute(`role`,`img`),this.addContainer(o),this.width=t/r,this.height=n/i,this.setDims(),this._initialOptions?.isCentered?this.center():this.fixAndSetPosition(),this._initialOptions=null,(!this._uiManager.useNewAltTextWhenAddingImage||!this._uiManager.useNewAltTextFlow||this.annotationElementId)&&(e.hidden=!1),this.#g(),this.#u||=(this.parent.addUndoableEditor(this),!0),this._reportTelemetry({action:`inserted_image`}),this.#a&&this.div.setAttribute(`aria-description`,this.#a),this.annotationElementId||this._uiManager.a11yAlert(`pdfjs-editor-stamp-added-alert`)}copyCanvas(e,t,n=!1){e||=224;let{width:r,height:i}=this.#e,a=new ou,o=this.#e,s=r,c=i,l=null;if(t){if(r>t||i>t){let e=Math.min(t/r,t/i);s=Math.floor(r*e),c=Math.floor(i*e)}l=document.createElement(`canvas`);let e=l.width=Math.ceil(s*a.sx),n=l.height=Math.ceil(c*a.sy);this.#l||(o=this.#h(e,n));let u=l.getContext(`2d`);u.filter=this._uiManager.hcmFilter;let d=`white`,f=`#cfcfd8`;this._uiManager.hcmFilter===`none`?cu.isDarkMode&&(d=`#8f8f9d`,f=`#42414d`):f=`black`;let p=15*a.sx,m=15*a.sy,h=new OffscreenCanvas(p*2,m*2),g=h.getContext(`2d`);g.fillStyle=d,g.fillRect(0,0,p*2,m*2),g.fillStyle=f,g.fillRect(0,0,p,m),g.fillRect(p,m,p,m),u.fillStyle=u.createPattern(h,`repeat`),u.fillRect(0,0,e,n),u.drawImage(o,0,0,o.width,o.height,0,0,e,n)}let u=null;if(n){let t,n;if(a.symmetric&&o.width<e&&o.height<e)t=o.width,n=o.height;else if(o=this.#e,r>e||i>e){let a=Math.min(e/r,e/i);t=Math.floor(r*a),n=Math.floor(i*a),this.#l||(o=this.#h(t,n))}let s=new OffscreenCanvas(t,n).getContext(`2d`,{willReadFrequently:!0});s.drawImage(o,0,0,o.width,o.height,0,0,t,n),u={width:t,height:n,data:s.getImageData(0,0,t,n).data}}return{canvas:l,width:s,height:c,imageData:u}}#h(e,t){let{width:n,height:r}=this.#e,i=n,a=r,o=this.#e;for(;i>2*e||a>2*t;){let n=i,r=a;i>2*e&&(i=i>=16384?Math.floor(i/2)-1:Math.ceil(i/2)),a>2*t&&(a=a>=16384?Math.floor(a/2)-1:Math.ceil(a/2));let s=new OffscreenCanvas(i,a);s.getContext(`2d`).drawImage(o,0,0,n,r,0,0,i,a),o=s.transferToImageBitmap()}return o}#g(){let[e,t]=this.parentDimensions,{width:n,height:r}=this,i=new ou,a=Math.ceil(n*e*i.sx),o=Math.ceil(r*t*i.sy),s=this.#o;if(!s||s.width===a&&s.height===o)return;s.width=a,s.height=o;let c=this.#l?this.#e:this.#h(a,o),l=s.getContext(`2d`);l.filter=this._uiManager.hcmFilter,l.drawImage(c,0,0,c.width,c.height,0,0,a,o)}#_(e){if(e){if(this.#l){let e=this._uiManager.imageManager.getSvgUrl(this.#t);if(e)return e}let e=document.createElement(`canvas`);return{width:e.width,height:e.height}=this.#e,e.getContext(`2d`).drawImage(this.#e,0,0),e.toDataURL()}if(this.#l){let[e,t]=this.pageDimensions,n=Math.round(this.width*e*Bl.PDF_TO_CSS_UNITS),r=Math.round(this.height*t*Bl.PDF_TO_CSS_UNITS),i=new OffscreenCanvas(n,r);return i.getContext(`2d`).drawImage(this.#e,0,0,this.#e.width,this.#e.height,0,0,n,r),i.transferToImageBitmap()}return structuredClone(this.#e)}static async deserialize(e,t,n){let r=null,i=!1;if(e instanceof Xp){let{data:{rect:a,rotation:o,id:s,structParent:c,popupRef:l,richText:u,contentsObj:d,creationDate:f,modificationDate:p},container:m,parent:{page:{pageNumber:h}},canvas:g}=e,_,v;g?(delete e.canvas,{id:_,bitmap:v}=n.imageManager.getFromCanvas(m.id,g),g.remove()):(i=!0,e._hasNoCanvas=!0);let y=(await t._structTree.getAriaAttributes(`${Pl}${s}`))?.get(`aria-label`)||``;r=e={annotationType:Y.STAMP,bitmapId:_,bitmap:v,pageIndex:h-1,rect:a.slice(0),rotation:o,annotationElementId:s,id:s,deleted:!1,accessibilityData:{decorative:!1,altText:y},isSvg:!1,structParent:c,popupRef:l,richText:u,comment:d?.str||null,creationDate:f,modificationDate:p}}let a=await super.deserialize(e,t,n),{rect:o,bitmap:s,bitmapUrl:c,bitmapId:l,isSvg:u,accessibilityData:d}=e;i?(n.addMissingCanvas(e.id,a),a.#s=!0):l&&n.imageManager.isValidId(l)?(a.#t=l,s&&(a.#e=s)):a.#r=c,a.#l=u;let[f,p]=a.pageDimensions;return a.width=(o[2]-o[0])/f,a.height=(o[3]-o[1])/p,d&&(a.altTextData=d),a._initialData=r,e.comment&&a.setCommentData(e),a.#u=!!r,a}serialize(e=!1,t=null){if(this.isEmpty())return null;if(this.deleted)return this.serializeDeleted();let n=Object.assign(super.serialize(e),{bitmapId:this.#t,isSvg:this.#l});if(this.addComment(n),e)return n.bitmapUrl=this.#_(!0),n.accessibilityData=this.serializeAltText(!0),n.isCopy=!0,n;let{decorative:r,altText:i}=this.serializeAltText(!1);if(!r&&i&&(n.accessibilityData={type:`Figure`,alt:i}),this.annotationElementId){let e=this.#v(n);return e.isSame?null:(e.isSameAltText?delete n.accessibilityData:n.accessibilityData.structParent=this._initialData.structParent??-1,n.id=this.annotationElementId,delete n.bitmapId,n)}if(t===null)return n;t.stamps||=new Map;let a=this.#l?(n.rect[2]-n.rect[0])*(n.rect[3]-n.rect[1]):null;if(!t.stamps.has(this.#t))t.stamps.set(this.#t,{area:a,serialized:n}),n.bitmap=this.#_(!1);else if(this.#l){let e=t.stamps.get(this.#t);a>e.area&&(e.area=a,e.serialized.bitmap.close(),e.serialized.bitmap=this.#_(!1))}return n}#v(e){let{pageIndex:t,accessibilityData:{altText:n}}=this._initialData,r=e.pageIndex===t,i=(e.accessibilityData?.alt||``)===n;return{isSame:!this.hasEditedComment&&!this._hasBeenMoved&&!this._hasBeenResized&&r&&i,isSameAltText:i}}renderAnnotationElement(e){return this.deleted?(e.hide(),null):(e.updateEdited({rect:this.getPDFRect(),popup:this.comment}),null)}},Sm=class e{#e;#t=!1;#n=null;#r=null;#i=null;#a=new Map;#o=!1;#s=!1;#c=!1;#l=null;#u=null;#d=null;#f=null;#p=null;#m=-1;#h;static _initialized=!1;static#g=new Map([em,pm,xm,sm,bm].map(e=>[e._editorType,e]));constructor({uiManager:t,pageIndex:n,div:r,structTreeLayer:i,accessibilityManager:a,annotationLayer:o,drawLayer:s,textLayer:c,viewport:l,l10n:u}){let d=[...e.#g.values()];if(!e._initialized){e._initialized=!0;for(let e of d)e.initialize(u,t)}t.registerEditorTypes(d),this.#h=t,this.pageIndex=n,this.div=r,this.#e=a,this.#n=o,this.viewport=l,this.#d=c,this.drawLayer=s,this._structTree=i,this.#h.addLayer(this)}updatePageIndex(e){this.pageIndex=e}get isEmpty(){return this.#a.size===0}get isInvisible(){return this.isEmpty&&this.#h.getMode()===Y.NONE}updateToolbar(e){this.#h.updateToolbar(e)}updateMode(t=this.#h.getMode()){switch(this.#S(),t){case Y.NONE:this.div.classList.toggle(`nonEditing`,!0),this.disableTextSelection(),this.togglePointerEvents(!1),this.toggleAnnotationLayerPointerEvents(!0),this.disableClick();return;case Y.INK:this.disableTextSelection(),this.togglePointerEvents(!0),this.enableClick();break;case Y.HIGHLIGHT:this.enableTextSelection(),this.togglePointerEvents(!1),this.disableClick();break;default:this.disableTextSelection(),this.togglePointerEvents(!0),this.enableClick()}this.toggleAnnotationLayerPointerEvents(!1);let{classList:n}=this.div;if(n.toggle(`nonEditing`,!1),t===Y.POPUP)n.toggle(`commentEditing`,!0);else{n.toggle(`commentEditing`,!1);for(let r of e.#g.values())n.toggle(`${r._type}Editing`,t===r._editorType)}this.div.hidden=!1}hasTextLayer(e){return e===this.#d?.div}setEditingState(e){this.#h.setEditingState(e)}addCommands(e){this.#h.addCommands(e)}cleanUndoStack(e){this.#h.cleanUndoStack(e)}toggleDrawing(e=!1){this.div.classList.toggle(`drawing`,!e)}togglePointerEvents(e=!1){this.div.classList.toggle(`disabled`,!e)}toggleAnnotationLayerPointerEvents(e=!1){this.#n?.togglePointerEvents(e)}get#_(){return this.#a.size===0?this.#h.getEditors(this.pageIndex):this.#a.values()}async enable(){this.#c=!0,this.div.tabIndex=0,this.togglePointerEvents(!0),this.div.classList.toggle(`nonEditing`,!1),this.#p?.abort(),this.#p=null;let e=new Set;for(let t of this.#_)t.enableEditing(),t.show(!0),t.annotationElementId&&(this.#h.removeChangedExistingAnnotation(t),e.add(t.annotationElementId));let t=this.#n;if(t)for(let n of t.getEditableAnnotations()){if(n.hide(),this.#h.isDeletedAnnotationElement(n.data.id)||e.has(n.data.id))continue;let t=await this.deserialize(n);t&&(this.addOrRebuild(t),t.enableEditing())}this.#c=!1,this.#h._eventBus.dispatch(`editorsrendered`,{source:this,pageNumber:this.pageIndex+1})}disable(){if(this.#s=!0,this.div.tabIndex=-1,this.togglePointerEvents(!1),this.div.classList.toggle(`nonEditing`,!0),this.#d&&!this.#p){this.#p=new AbortController;let e=this.#h.combinedSignal(this.#p);this.#d.div.addEventListener(`pointerdown`,e=>{let{clientX:t,clientY:n,timeStamp:r}=e;if(r-this.#m>500){this.#m=r;return}this.#m=-1;let{classList:i}=this.div;i.toggle(`getElements`,!0);let a=document.elementsFromPoint(t,n);if(i.toggle(`getElements`,!1),!this.div.contains(a[0]))return;let o,s=RegExp(`^${Jc}[0-9]+$`);for(let e of a)if(s.test(e.id)){o=e.id;break}if(!o)return;let c=this.#a.get(o);c?.annotationElementId===null&&(e.stopPropagation(),e.preventDefault(),c.dblclick(e))},{signal:e,capture:!0})}let t=this.#n,n=[];if(t){let e=new Map,r=new Map;for(let t of this.#_){if(t.disableEditing(),!t.annotationElementId){n.push(t);continue}if(t.serialize()!==null){e.set(t.annotationElementId,t);continue}else r.set(t.annotationElementId,t);this.getEditableAnnotation(t.annotationElementId)?.show(),t.remove()}let i=t.getEditableAnnotations();for(let t of i){let{id:n}=t.data;if(this.#h.isDeletedAnnotationElement(n)){t.updateEdited({deleted:!0});continue}let i=r.get(n);if(i){i.resetAnnotationElement(t),i.show(!1),t.show();continue}i=e.get(n),i&&(this.#h.addChangedExistingAnnotation(i),i.renderAnnotationElement(t)&&i.show(!1)),t.show()}}this.#S(),this.isEmpty&&(this.div.hidden=!0);let{classList:r}=this.div;for(let t of e.#g.values())r.remove(`${t._type}Editing`);this.disableTextSelection(),this.toggleAnnotationLayerPointerEvents(!0),t?.updateFakeAnnotations(n),this.#s=!1}getEditableAnnotation(e){return this.#n?.getEditableAnnotation(e)||null}setActiveEditor(e){this.#h.getActive()!==e&&this.#h.setActiveEditor(e)}enableTextSelection(){if(this.div.tabIndex=-1,this.#d?.div&&!this.#f){this.#f=new AbortController;let e=this.#h.combinedSignal(this.#f);this.#d.div.addEventListener(`pointerdown`,this.#v.bind(this),{signal:e}),this.#d.div.classList.add(`highlighting`)}}disableTextSelection(){this.div.tabIndex=0,this.#d?.div&&this.#f&&(this.#f.abort(),this.#f=null,this.#d.div.classList.remove(`highlighting`))}#v(e){this.#h.unselectAll();let{target:t}=e;if(t===this.#d.div||(t.getAttribute(`role`)===`img`||t.classList.contains(`endOfContent`))&&this.#d.div.contains(t)){let{isMac:t}=Dl.platform;if(e.button!==0||e.ctrlKey&&t)return;this.#h.showAllEditors(`highlight`,!0,!0),this.#d.div.classList.add(`free`),this.toggleDrawing(),sm.startHighlighting(this,this.#h.direction===`ltr`,{target:this.#d.div,x:e.x,y:e.y}),this.#d.div.addEventListener(`pointerup`,()=>{this.#d.div.classList.remove(`free`),this.toggleDrawing(!0)},{once:!0,signal:this.#h._signal}),e.preventDefault()}}enableClick(){if(this.#r)return;this.#r=new AbortController;let e=this.#h.combinedSignal(this.#r);this.div.addEventListener(`pointerdown`,this.pointerdown.bind(this),{signal:e});let t=this.pointerup.bind(this);this.div.addEventListener(`pointerup`,t,{signal:e}),this.div.addEventListener(`pointercancel`,t,{signal:e})}disableClick(){this.#r?.abort(),this.#r=null}attach(e){this.#a.set(e.id,e);let{annotationElementId:t}=e;t&&this.#h.isDeletedAnnotationElement(t)&&this.#h.removeDeletedAnnotationElement(e)}detach(e){this.#a.delete(e.id),this.#e?.removePointerInTextLayer(e.contentDiv),!this.#s&&e.annotationElementId&&this.#h.addDeletedAnnotationElement(e)}remove(e){this.detach(e),this.#h.removeEditor(e),e.div.remove(),e.isAttachedToDOM=!1}changeParent(e){e.parent!==this&&(e.parent&&e.annotationElementId&&(this.#h.addDeletedAnnotationElement(e),Nu.deleteAnnotationElement(e),e.annotationElementId=null),this.attach(e),e.parent?.detach(e),e.setParent(this),e.div&&e.isAttachedToDOM&&(e.div.remove(),this.div.append(e.div)))}add(e){if(!(e.parent===this&&e.isAttachedToDOM)){if(this.changeParent(e),this.#h.addEditor(e),this.attach(e),!e.isAttachedToDOM){let t=e.render();this.div.append(t),e.isAttachedToDOM=!0}e.fixAndSetPosition(),e.onceAdded(!this.#c),this.#h.addToAnnotationStorage(e),e._reportTelemetry(e.telemetryInitialData)}}moveEditorInDOM(e){if(!e.isAttachedToDOM)return;let{activeElement:t}=document;e.div.contains(t)&&!this.#i&&(e._focusEventsAllowed=!1,this.#i=setTimeout(()=>{this.#i=null,e.div.contains(document.activeElement)?e._focusEventsAllowed=!0:(e.div.addEventListener(`focusin`,()=>{e._focusEventsAllowed=!0},{once:!0,signal:this.#h._signal}),t.focus())},0)),e._structTreeParentId=this.#e?.moveElementInDOM(this.div,e.div,e.contentDiv,!0)}addOrRebuild(e){e.needsToBeRebuilt()?(e.parent||=this,e.rebuild(),e.show()):this.add(e)}addUndoableEditor(e){this.addCommands({cmd:()=>e._uiManager.rebuild(e),undo:()=>{e.remove()},mustExec:!1})}getEditorByUID(e){for(let t of this.#a.values())if(t.uid===e)return t;return null}getNextId(){return this.#h.getId()}get#y(){return e.#g.get(this.#h.getMode())}combinedSignal(e){return this.#h.combinedSignal(e)}#b(e){let t=this.#y;return t?new t.prototype.constructor(e):null}canCreateNewEmptyEditor(){return this.#y?.canCreateNewEmptyEditor()}async pasteEditor(e,t){this.updateToolbar(e),await this.#h.updateMode(e.mode);let{offsetX:n,offsetY:r}=this.#x(),i=this.getNextId(),a=this.#b({parent:this,id:i,x:n,y:r,uiManager:this.#h,isCentered:!0,...t});a&&this.add(a)}async deserialize(t){return await e.#g.get(t.annotationType??t.annotationEditorType)?.deserialize(t,this,this.#h)||null}createAndAddNewEditor(e,t,n={}){let r=this.getNextId(),i=this.#b({parent:this,id:r,x:e.offsetX,y:e.offsetY,uiManager:this.#h,isCentered:t,...n});return i&&this.add(i),i}get boundingClientRect(){return this.div.getBoundingClientRect()}#x(){let{x:e,y:t,width:n,height:r}=this.boundingClientRect,i=Math.max(0,e),a=Math.max(0,t),o=Math.min(window.innerWidth,e+n),s=Math.min(window.innerHeight,t+r),c=(i+o)/2-e,l=(a+s)/2-t,[u,d]=this.viewport.rotation%180==0?[c,l]:[l,c];return{offsetX:u,offsetY:d}}addNewEditor(e={}){this.createAndAddNewEditor(this.#x(),!0,e)}setSelected(e){this.#h.setSelected(e)}toggleSelected(e){this.#h.toggleSelected(e)}unselect(e){this.#h.unselect(e)}pointerup(e){let{isMac:t}=Dl.platform;if(e.button!==0||e.ctrlKey&&t||e.target!==this.div||!this.#o||(this.#o=!1,this.#y?.isDrawer&&this.#y.supportMultipleDrawings))return;if(!this.#t){this.#t=!0;return}let n=this.#h.getMode();if(n===Y.STAMP||n===Y.SIGNATURE){this.#h.unselectAll();return}this.createAndAddNewEditor(e,!1)}pointerdown(e){if(this.#h.getMode()===Y.HIGHLIGHT&&this.enableTextSelection(),this.#o){this.#o=!1;return}let{isMac:t}=Dl.platform;if(e.button!==0||e.ctrlKey&&t||e.target!==this.div)return;if(this.#o=!0,this.#y?.isDrawer){this.startDrawingSession(e);return}let n=this.#h.getActive();this.#t=!n||n.isEmpty()}startDrawingSession(e){if(this.div.focus({preventScroll:!0}),this.#l){this.#y.startDrawing(this,this.#h,!1,e);return}this.#h.setCurrentDrawingSession(this),this.#l=new AbortController;let t=this.#h.combinedSignal(this.#l);this.div.addEventListener(`blur`,({relatedTarget:e})=>{e&&!this.div.contains(e)&&(this.#u=null,this.commitOrRemove())},{signal:t}),this.#y.startDrawing(this,this.#h,!1,e)}pause(e){if(e){let{activeElement:e}=document;this.div.contains(e)&&(this.#u=e);return}this.#u&&setTimeout(()=>{this.#u?.focus(),this.#u=null},0)}endDrawingSession(e=!1){return this.#l?(this.#h.setCurrentDrawingSession(null),this.#l.abort(),this.#l=null,this.#u=null,this.#y.endDrawing(e)):null}findNewParent(e,t,n){let r=this.#h.findParent(t,n);return r===null||r===this?!1:(r.changeParent(e),!0)}commitOrRemove(){return this.#l?(this.endDrawingSession(),!0):!1}onScaleChanging(){this.#l&&this.#y.onScaleChangingWhenDrawing(this)}destroy(){this.commitOrRemove(),this.#h.getActive()?.parent===this&&(this.#h.commitOrRemove(),this.#h.setActiveEditor(null)),this.#i&&=(clearTimeout(this.#i),null);for(let e of this.#a.values())this.#e?.removePointerInTextLayer(e.contentDiv),e.setParent(null),e.isAttachedToDOM=!1,e.div.remove();this.div=null,this.#a.clear(),this.#h.removeLayer(this)}#S(){for(let e of this.#a.values())e.isEmpty()&&e.remove()}render({viewport:e}){this.viewport=e,au(this.div,e);for(let e of this.#h.getEditors(this.pageIndex))this.add(e),e.rebuild();this.updateMode()}update({viewport:e}){this.#h.commitOrRemove(),this.#S();let t=this.viewport.rotation,n=e.rotation;if(this.viewport=e,au(this.div,{rotation:n}),t!==n)for(let e of this.#a.values())e.rotate(n)}get pageDimensions(){let{pageWidth:e,pageHeight:t}=this.viewport.rawDims;return[e,t]}get scale(){return this.#h.viewParameters.realScale}},Cm=class e{#e=null;#t=new Map;#n=new Map;static#r=0;setParent(e){if(!this.#e){this.#e=e;return}if(this.#e!==e){if(this.#t.size>0)for(let t of this.#t.values())t.remove(),e.append(t);this.#e=e}}static get _svgFactory(){return Z(this,`_svgFactory`,new bp)}static#i(e,[t,n,r,i]){let{style:a}=e;a.top=`${100*n}%`,a.left=`${100*t}%`,a.width=`${100*r}%`,a.height=`${100*i}%`}#a(){let t=e._svgFactory.create(1,1,!0);return this.#e.append(t),t.setAttribute(`aria-hidden`,!0),t}#o(t,n){let r=e._svgFactory.createElement(`clipPath`);t.append(r);let i=`clip_${n}`;r.setAttribute(`id`,i),r.setAttribute(`clipPathUnits`,`objectBoundingBox`);let a=e._svgFactory.createElement(`use`);return r.append(a),a.setAttribute(`href`,`#${n}`),a.classList.add(`clip`),i}#s(e,t){for(let[n,r]of Object.entries(t))r===null?e.removeAttribute(n):e.setAttribute(n,r)}draw(t,n=!1,r=!1){let i=e.#r++,a=this.#a(),o=e._svgFactory.createElement(`defs`);a.append(o);let s=e._svgFactory.createElement(`path`);o.append(s);let c=`path_${i}`;s.setAttribute(`id`,c),s.setAttribute(`vector-effect`,`non-scaling-stroke`),n&&this.#n.set(i,s);let l=r?this.#o(o,c):null,u=e._svgFactory.createElement(`use`);return a.append(u),u.setAttribute(`href`,`#${c}`),this.updateProperties(a,t),this.#t.set(i,a),{id:i,clipPathId:`url(#${l})`}}drawOutline(t,n){let r=e.#r++,i=this.#a(),a=e._svgFactory.createElement(`defs`);i.append(a);let o=e._svgFactory.createElement(`path`);a.append(o);let s=`path_${r}`;o.setAttribute(`id`,s),o.setAttribute(`vector-effect`,`non-scaling-stroke`);let c;if(n){let t=e._svgFactory.createElement(`mask`);a.append(t),c=`mask_${r}`,t.setAttribute(`id`,c),t.setAttribute(`maskUnits`,`objectBoundingBox`);let n=e._svgFactory.createElement(`rect`);t.append(n),n.setAttribute(`width`,`1`),n.setAttribute(`height`,`1`),n.setAttribute(`fill`,`white`);let i=e._svgFactory.createElement(`use`);t.append(i),i.setAttribute(`href`,`#${s}`),i.setAttribute(`stroke`,`none`),i.setAttribute(`fill`,`black`),i.setAttribute(`fill-rule`,`nonzero`),i.classList.add(`mask`)}let l=e._svgFactory.createElement(`use`);i.append(l),l.setAttribute(`href`,`#${s}`),c&&l.setAttribute(`mask`,`url(#${c})`);let u=l.cloneNode();return i.append(u),l.classList.add(`mainOutline`),u.classList.add(`secondaryOutline`),this.updateProperties(i,t),this.#t.set(r,i),r}finalizeDraw(e,t){this.#n.delete(e),this.updateProperties(e,t)}updateProperties(t,n){if(!n)return;let{root:r,bbox:i,rootClass:a,path:o}=n,s=typeof t==`number`?this.#t.get(t):t;if(s){if(r&&this.#s(s,r),i&&e.#i(s,i),a){let{classList:e}=s;for(let[t,n]of Object.entries(a))e.toggle(t,n)}if(o){let e=s.firstElementChild.firstElementChild;this.#s(e,o)}}}updateParent(e,t){if(t===this)return;let n=this.#t.get(e);n&&(t.#e.append(n),this.#t.delete(e),t.#t.set(e,n))}remove(e){this.#n.delete(e),this.#e!==null&&(this.#t.get(e).remove(),this.#t.delete(e))}destroy(){this.#e=null;for(let e of this.#t.values())e.remove();this.#t.clear(),this.#n.clear()}};globalThis._pdfjsTestingUtils={HighlightOutliner:rm},globalThis.pdfjsLib={AbortException:xl,AnnotationEditorLayer:Sm,AnnotationEditorParamsType:Yc,AnnotationEditorType:Y,AnnotationEditorUIManager:ku,AnnotationLayer:Qp,AnnotationMode:qc,AnnotationType:el,applyOpacity:uu,build:pp,ColorPicker:mp,createValidAbsoluteUrl:pl,CSSConstants:lu,DOMSVGFactory:bp,DrawLayer:Cm,FeatureTest:Dl,fetchData:Vl,findContrastColor:gu,getDocument:rp,getFilenameFromUrl:Kl,getPdfFilenameFromUrl:ql,getRGB:tu,getUuid:Nl,getXfaPageViewport:eu,GlobalWorkerOptions:pf,ImageKind:$c,InvalidPDFException:vl,isDataScheme:Wl,isPdfFile:Gl,isValidExplicitDest:$u,MathClamp:Il,noContextMenu:Xl,normalizeUnicode:Ml,OPS:rl,OutputScale:ou,PagesMapper:yu,PasswordResponses:al,PDFDataRangeTransport:ap,PDFDateString:$l,PDFWorker:cp,PermissionFlag:Xc,PixelsPerInch:Bl,RenderingCancelledException:Ul,renderRichText:_u,ResponseException:yl,setLayerDimensions:au,shadow:Z,SignatureExtractor:_m,stopEvent:Zl,SupportedImageMimeTypes:su,TextLayer:tp,TouchManager:Mu,updateUrlHash:ml,Util:Q,VerbosityLevel:nl,version:fp,XfaLayer:Rl};var wm=`data:application/pdf;base64,`;async function Tm(e){if(Buffer.isBuffer(e))return Uint8Array.from(e);if(e instanceof Uint8Array)return e;if(typeof e==`string`)return e.startsWith(wm)?Uint8Array.from(Buffer.from(e.slice(28),`base64`)):new Uint8Array((0,z.readFileSync)(e));if(typeof e==`object`&&e&&Symbol.asyncIterator in e)return new Uint8Array(await(0,z.arrayBuffer)(e));throw Error(`pdf-to-img received an unexpected input. Provide a path to file, a data URL, a Uint8Array, a Buffer, or a ReadableStream.`)}var Em=z.default.dirname((0,z.createRequire)({}.url).resolve(`pdfjs-dist/package.json`)),Dm=e=>{let t=JSON.parse(JSON.stringify(e));for(let e in t)typeof t[e]==`string`&&(t[e]=t[e].replaceAll(/(^þÿ|\u0000)/g,``));return t};async function Om(e,t={}){let n=await Tm(e),r=await rp({password:t.password,standardFontDataUrl:z.default.join(Em,`standard_fonts${z.default.sep}`),cMapUrl:z.default.join(Em,`cmaps${z.default.sep}`),cMapPacked:!0,...t.docInitParams,isEvalSupported:!1,data:n}).promise,i=await r.getMetadata();async function a(e){let n=await r.getPage(e),i=n.getViewport({scale:t.scale??1}),{canvas:a}=r.canvasFactory.create(i.width,i.height,!!t.renderParams?.background);return await n.render({canvas:a,viewport:i,...t.renderParams}).promise,a.toBuffer(`image/png`)}return{length:r.numPages,metadata:Dm(i.info),getPage:a,[Symbol.asyncIterator](){return{pg:0,async next(){return this.pg<r.numPages?(this.pg+=1,{done:!1,value:await a(this.pg)}):{done:!0,value:void 0}}}}}}function km(e,t,n,r,i,a={}){let{threshold:o=.1,alpha:s=.1,aaColor:c=[255,255,0],diffColor:l=[255,0,0],includeAA:u,diffColorAlt:d,diffMask:f}=a;if(!Am(e)||!Am(t)||n&&!Am(n))throw Error(`Image data: Uint8Array, Uint8ClampedArray or Buffer expected.`);if(e.length!==t.length||n&&n.length!==e.length)throw Error(`Image sizes do not match.`);if(e.length!==r*i*4)throw Error(`Image data size does not match width/height.`);let p=r*i,m=new Uint32Array(e.buffer,e.byteOffset,p),h=new Uint32Array(t.buffer,t.byteOffset,p),g=!0;for(let e=0;e<p;e++)if(m[e]!==h[e]){g=!1;break}if(g){if(n&&!f)for(let t=0;t<p;t++)Fm(e,4*t,s,n);return 0}let _=35215*o*o,[v,y,b]=c,[x,S,C]=l,[w,T,E]=d||l,D=0;for(let a=0;a<i;a++)for(let o=0;o<r;o++){let c=a*r+o,l=c*4,d=m[c]===h[c]?0:Nm(e,t,l,l,!1);if(Math.abs(d)>_){let s=jm(e,o,a,r,i,m,h)||jm(t,o,a,r,i,h,m);!u&&s?n&&!f&&Pm(n,l,v,y,b):(n&&(d<0?Pm(n,l,w,T,E):Pm(n,l,x,S,C)),D++)}else n&&!f&&Fm(e,l,s,n)}return D}function Am(e){return ArrayBuffer.isView(e)&&e.BYTES_PER_ELEMENT===1}function jm(e,t,n,r,i,a,o){let s=Math.max(t-1,0),c=Math.max(n-1,0),l=Math.min(t+1,r-1),u=Math.min(n+1,i-1),d=n*r+t,f=t===s||t===l||n===c||n===u?1:0,p=0,m=0,h=0,g=0,_=0,v=0;for(let i=s;i<=l;i++)for(let a=c;a<=u;a++){if(i===t&&a===n)continue;let o=Nm(e,e,d*4,(a*r+i)*4,!0);if(o===0){if(f++,f>2)return!1}else o<p?(p=o,h=i,g=a):o>m&&(m=o,_=i,v=a)}return p===0||m===0?!1:Mm(a,h,g,r,i)&&Mm(o,h,g,r,i)||Mm(a,_,v,r,i)&&Mm(o,_,v,r,i)}function Mm(e,t,n,r,i){let a=Math.max(t-1,0),o=Math.max(n-1,0),s=Math.min(t+1,r-1),c=Math.min(n+1,i-1),l=e[n*r+t],u=t===a||t===s||n===o||n===c?1:0;for(let i=a;i<=s;i++)for(let a=o;a<=c;a++)if(!(i===t&&a===n)&&(u+=+(l===e[a*r+i]),u>2))return!0;return!1}function Nm(e,t,n,r,i){let a=e[n],o=e[n+1],s=e[n+2],c=e[n+3],l=t[r],u=t[r+1],d=t[r+2],f=t[r+3],p=a-l,m=o-u,h=s-d,g=c-f;if(!p&&!m&&!h&&!g)return 0;if(c<255||f<255){let e=48+n%2*159,t=48+159*((n/1.618033988749895|0)%2),r=48+159*((n/2.618033988749895|0)%2);p=(a*c-l*f-e*g)/255,m=(o*c-u*f-t*g)/255,h=(s*c-d*f-r*g)/255}let _=p*.29889531+m*.58662247+h*.11448223;if(i)return _;let v=p*.59597799-m*.2741761-h*.32180189,y=p*.21147017-m*.52261711+h*.31114694,b=.5053*_*_+.299*v*v+.1957*y*y;return _>0?-b:b}function Pm(e,t,n,r,i){e[t+0]=n,e[t+1]=r,e[t+2]=i,e[t+3]=255}function Fm(e,t,n,r){let i=255+(e[t]*.29889531+e[t+1]*.58662247+e[t+2]*.11448223-255)*n*e[t+3]/255;Pm(r,t,i,i,i)}var Im=o(((e,t)=>{var n=Ir(),r=Ir(),i=t.exports=function(){r.call(this),this._buffers=[],this._buffered=0,this._reads=[],this._paused=!1,this._encoding=`utf8`,this.writable=!0};n.inherits(i,r),i.prototype.read=function(e,t){this._reads.push({length:Math.abs(e),allowLess:e<0,func:t}),process.nextTick(function(){this._process(),this._paused&&this._reads&&this._reads.length>0&&(this._paused=!1,this.emit(`drain`))}.bind(this))},i.prototype.write=function(e,t){if(!this.writable)return this.emit(`error`,Error(`Stream not writable`)),!1;let n;return n=Buffer.isBuffer(e)?e:Buffer.from(e,t||this._encoding),this._buffers.push(n),this._buffered+=n.length,this._process(),this._reads&&this._reads.length===0&&(this._paused=!0),this.writable&&!this._paused},i.prototype.end=function(e,t){e&&this.write(e,t),this.writable=!1,this._buffers&&(this._buffers.length===0?this._end():(this._buffers.push(null),this._process()))},i.prototype.destroySoon=i.prototype.end,i.prototype._end=function(){this._reads.length>0&&this.emit(`error`,Error(`Unexpected end of input`)),this.destroy()},i.prototype.destroy=function(){this._buffers&&(this.writable=!1,this._reads=null,this._buffers=null,this.emit(`close`))},i.prototype._processReadAllowingLess=function(e){this._reads.shift();let t=this._buffers[0];t.length>e.length?(this._buffered-=e.length,this._buffers[0]=t.slice(e.length),e.func.call(this,t.slice(0,e.length))):(this._buffered-=t.length,this._buffers.shift(),e.func.call(this,t))},i.prototype._processRead=function(e){this._reads.shift();let t=0,n=0,r=Buffer.alloc(e.length);for(;t<e.length;){let i=this._buffers[n++],a=Math.min(i.length,e.length-t);i.copy(r,t,0,a),t+=a,a!==i.length&&(this._buffers[--n]=i.slice(a))}n>0&&this._buffers.splice(0,n),this._buffered-=e.length,e.func.call(this,r)},i.prototype._process=function(){try{for(;this._buffered>0&&this._reads&&this._reads.length>0;){let e=this._reads[0];if(e.allowLess)this._processReadAllowingLess(e);else if(this._buffered>=e.length)this._processRead(e);else break}this._buffers&&!this.writable&&this._end()}catch(e){this.emit(`error`,e)}}})),Lm=o((e=>{var t=[{x:[0],y:[0]},{x:[4],y:[0]},{x:[0,4],y:[4]},{x:[2,6],y:[0,4]},{x:[0,2,4,6],y:[2,6]},{x:[1,3,5,7],y:[0,2,4,6]},{x:[0,1,2,3,4,5,6,7],y:[1,3,5,7]}];e.getImagePasses=function(e,n){let r=[],i=e%8,a=n%8,o=(e-i)/8,s=(n-a)/8;for(let e=0;e<t.length;e++){let n=t[e],c=o*n.x.length,l=s*n.y.length;for(let e=0;e<n.x.length&&n.x[e]<i;e++)c++;for(let e=0;e<n.y.length&&n.y[e]<a;e++)l++;c>0&&l>0&&r.push({width:c,height:l,index:e})}return r},e.getInterlaceIterator=function(e){return function(n,r,i){let a=n%t[i].x.length,o=(n-a)/t[i].x.length*8+t[i].x[a],s=r%t[i].y.length,c=(r-s)/t[i].y.length*8+t[i].y[s];return o*4+c*e*4}}})),Rm=o(((e,t)=>{t.exports=function(e,t,n){let r=e+t-n,i=Math.abs(r-e),a=Math.abs(r-t),o=Math.abs(r-n);return i<=a&&i<=o?e:a<=o?t:n}})),zm=o(((e,t)=>{var n=Lm(),r=Rm();function i(e,t,n){let r=e*t;return n!==8&&(r=Math.ceil(r/(8/n))),r}var a=t.exports=function(e,t){let r=e.width,a=e.height,o=e.interlace,s=e.bpp,c=e.depth;if(this.read=t.read,this.write=t.write,this.complete=t.complete,this._imageIndex=0,this._images=[],o){let e=n.getImagePasses(r,a);for(let t=0;t<e.length;t++)this._images.push({byteWidth:i(e[t].width,s,c),height:e[t].height,lineIndex:0})}else this._images.push({byteWidth:i(r,s,c),height:a,lineIndex:0});c===8?this._xComparison=s:c===16?this._xComparison=s*2:this._xComparison=1};a.prototype.start=function(){this.read(this._images[this._imageIndex].byteWidth+1,this._reverseFilterLine.bind(this))},a.prototype._unFilterType1=function(e,t,n){let r=this._xComparison,i=r-1;for(let a=0;a<n;a++)t[a]=e[1+a]+(a>i?t[a-r]:0)},a.prototype._unFilterType2=function(e,t,n){let r=this._lastLine;for(let i=0;i<n;i++)t[i]=e[1+i]+(r?r[i]:0)},a.prototype._unFilterType3=function(e,t,n){let r=this._xComparison,i=r-1,a=this._lastLine;for(let o=0;o<n;o++){let n=e[1+o],s=a?a[o]:0,c=o>i?t[o-r]:0;t[o]=n+Math.floor((c+s)/2)}},a.prototype._unFilterType4=function(e,t,n){let i=this._xComparison,a=i-1,o=this._lastLine;for(let s=0;s<n;s++){let n=e[1+s],c=o?o[s]:0;t[s]=n+r(s>a?t[s-i]:0,c,s>a&&o?o[s-i]:0)}},a.prototype._reverseFilterLine=function(e){let t=e[0],n,r=this._images[this._imageIndex],i=r.byteWidth;if(t===0)n=e.slice(1,i+1);else switch(n=Buffer.alloc(i),t){case 1:this._unFilterType1(e,n,i);break;case 2:this._unFilterType2(e,n,i);break;case 3:this._unFilterType3(e,n,i);break;case 4:this._unFilterType4(e,n,i);break;default:throw Error(`Unrecognised filter type - `+t)}this.write(n),r.lineIndex++,r.lineIndex>=r.height?(this._lastLine=null,this._imageIndex++,r=this._images[this._imageIndex]):this._lastLine=n,r?this.read(r.byteWidth+1,this._reverseFilterLine.bind(this)):(this._lastLine=null,this.complete())}})),Bm=o(((e,t)=>{var n=Ir(),r=Im(),i=zm(),a=t.exports=function(e){r.call(this);let t=[],n=this;this._filter=new i(e,{read:this.read.bind(this),write:function(e){t.push(e)},complete:function(){n.emit(`complete`,Buffer.concat(t))}}),this._filter.start()};n.inherits(a,r)})),Vm=o(((e,t)=>{t.exports={PNG_SIGNATURE:[137,80,78,71,13,10,26,10],TYPE_IHDR:1229472850,TYPE_IEND:1229278788,TYPE_IDAT:1229209940,TYPE_PLTE:1347179589,TYPE_tRNS:1951551059,TYPE_gAMA:1732332865,COLORTYPE_GRAYSCALE:0,COLORTYPE_PALETTE:1,COLORTYPE_COLOR:2,COLORTYPE_ALPHA:4,COLORTYPE_PALETTE_COLOR:3,COLORTYPE_COLOR_ALPHA:6,COLORTYPE_TO_BPP_MAP:{0:1,2:3,3:1,4:2,6:4},GAMMA_DIVISION:1e5}})),Hm=o(((e,t)=>{var n=[];(function(){for(let e=0;e<256;e++){let t=e;for(let e=0;e<8;e++)t&1?t=3988292384^t>>>1:t>>>=1;n[e]=t}})();var r=t.exports=function(){this._crc=-1};r.prototype.write=function(e){for(let t=0;t<e.length;t++)this._crc=n[(this._crc^e[t])&255]^this._crc>>>8;return!0},r.prototype.crc32=function(){return this._crc^-1},r.crc32=function(e){let t=-1;for(let r=0;r<e.length;r++)t=n[(t^e[r])&255]^t>>>8;return t^-1}})),Um=o(((e,t)=>{var n=Vm(),r=Hm(),i=t.exports=function(e,t){this._options=e,e.checkCRC=e.checkCRC!==!1,this._hasIHDR=!1,this._hasIEND=!1,this._emittedHeadersFinished=!1,this._palette=[],this._colorType=0,this._chunks={},this._chunks[n.TYPE_IHDR]=this._handleIHDR.bind(this),this._chunks[n.TYPE_IEND]=this._handleIEND.bind(this),this._chunks[n.TYPE_IDAT]=this._handleIDAT.bind(this),this._chunks[n.TYPE_PLTE]=this._handlePLTE.bind(this),this._chunks[n.TYPE_tRNS]=this._handleTRNS.bind(this),this._chunks[n.TYPE_gAMA]=this._handleGAMA.bind(this),this.read=t.read,this.error=t.error,this.metadata=t.metadata,this.gamma=t.gamma,this.transColor=t.transColor,this.palette=t.palette,this.parsed=t.parsed,this.inflateData=t.inflateData,this.finished=t.finished,this.simpleTransparency=t.simpleTransparency,this.headersFinished=t.headersFinished||function(){}};i.prototype.start=function(){this.read(n.PNG_SIGNATURE.length,this._parseSignature.bind(this))},i.prototype._parseSignature=function(e){let t=n.PNG_SIGNATURE;for(let n=0;n<t.length;n++)if(e[n]!==t[n]){this.error(Error(`Invalid file signature`));return}this.read(8,this._parseChunkBegin.bind(this))},i.prototype._parseChunkBegin=function(e){let t=e.readUInt32BE(0),i=e.readUInt32BE(4),a=``;for(let t=4;t<8;t++)a+=String.fromCharCode(e[t]);let o=!!(e[4]&32);if(!this._hasIHDR&&i!==n.TYPE_IHDR){this.error(Error(`Expected IHDR on beggining`));return}if(this._crc=new r,this._crc.write(Buffer.from(a)),this._chunks[i])return this._chunks[i](t);if(!o){this.error(Error(`Unsupported critical chunk type `+a));return}this.read(t+4,this._skipChunk.bind(this))},i.prototype._skipChunk=function(){this.read(8,this._parseChunkBegin.bind(this))},i.prototype._handleChunkEnd=function(){this.read(4,this._parseChunkEnd.bind(this))},i.prototype._parseChunkEnd=function(e){let t=e.readInt32BE(0),n=this._crc.crc32();if(this._options.checkCRC&&n!==t){this.error(Error(`Crc error - `+t+` - `+n));return}this._hasIEND||this.read(8,this._parseChunkBegin.bind(this))},i.prototype._handleIHDR=function(e){this.read(e,this._parseIHDR.bind(this))},i.prototype._parseIHDR=function(e){this._crc.write(e);let t=e.readUInt32BE(0),r=e.readUInt32BE(4),i=e[8],a=e[9],o=e[10],s=e[11],c=e[12];if(i!==8&&i!==4&&i!==2&&i!==1&&i!==16){this.error(Error(`Unsupported bit depth `+i));return}if(!(a in n.COLORTYPE_TO_BPP_MAP)){this.error(Error(`Unsupported color type`));return}if(o!==0){this.error(Error(`Unsupported compression method`));return}if(s!==0){this.error(Error(`Unsupported filter method`));return}if(c!==0&&c!==1){this.error(Error(`Unsupported interlace method`));return}this._colorType=a;let l=n.COLORTYPE_TO_BPP_MAP[this._colorType];this._hasIHDR=!0,this.metadata({width:t,height:r,depth:i,interlace:!!c,palette:!!(a&n.COLORTYPE_PALETTE),color:!!(a&n.COLORTYPE_COLOR),alpha:!!(a&n.COLORTYPE_ALPHA),bpp:l,colorType:a}),this._handleChunkEnd()},i.prototype._handlePLTE=function(e){this.read(e,this._parsePLTE.bind(this))},i.prototype._parsePLTE=function(e){this._crc.write(e);let t=Math.floor(e.length/3);for(let n=0;n<t;n++)this._palette.push([e[n*3],e[n*3+1],e[n*3+2],255]);this.palette(this._palette),this._handleChunkEnd()},i.prototype._handleTRNS=function(e){this.simpleTransparency(),this.read(e,this._parseTRNS.bind(this))},i.prototype._parseTRNS=function(e){if(this._crc.write(e),this._colorType===n.COLORTYPE_PALETTE_COLOR){if(this._palette.length===0){this.error(Error(`Transparency chunk must be after palette`));return}if(e.length>this._palette.length){this.error(Error(`More transparent colors than palette size`));return}for(let t=0;t<e.length;t++)this._palette[t][3]=e[t];this.palette(this._palette)}this._colorType===n.COLORTYPE_GRAYSCALE&&this.transColor([e.readUInt16BE(0)]),this._colorType===n.COLORTYPE_COLOR&&this.transColor([e.readUInt16BE(0),e.readUInt16BE(2),e.readUInt16BE(4)]),this._handleChunkEnd()},i.prototype._handleGAMA=function(e){this.read(e,this._parseGAMA.bind(this))},i.prototype._parseGAMA=function(e){this._crc.write(e),this.gamma(e.readUInt32BE(0)/n.GAMMA_DIVISION),this._handleChunkEnd()},i.prototype._handleIDAT=function(e){this._emittedHeadersFinished||(this._emittedHeadersFinished=!0,this.headersFinished()),this.read(-e,this._parseIDAT.bind(this,e))},i.prototype._parseIDAT=function(e,t){if(this._crc.write(t),this._colorType===n.COLORTYPE_PALETTE_COLOR&&this._palette.length===0)throw Error(`Expected palette not found`);this.inflateData(t);let r=e-t.length;r>0?this._handleIDAT(r):this._handleChunkEnd()},i.prototype._handleIEND=function(e){this.read(e,this._parseIEND.bind(this))},i.prototype._parseIEND=function(e){this._crc.write(e),this._hasIEND=!0,this._handleChunkEnd(),this.finished&&this.finished()}})),Wm=o((e=>{var t=Lm(),n=[function(){},function(e,t,n,r){if(r===t.length)throw Error(`Ran out of data`);let i=t[r];e[n]=i,e[n+1]=i,e[n+2]=i,e[n+3]=255},function(e,t,n,r){if(r+1>=t.length)throw Error(`Ran out of data`);let i=t[r];e[n]=i,e[n+1]=i,e[n+2]=i,e[n+3]=t[r+1]},function(e,t,n,r){if(r+2>=t.length)throw Error(`Ran out of data`);e[n]=t[r],e[n+1]=t[r+1],e[n+2]=t[r+2],e[n+3]=255},function(e,t,n,r){if(r+3>=t.length)throw Error(`Ran out of data`);e[n]=t[r],e[n+1]=t[r+1],e[n+2]=t[r+2],e[n+3]=t[r+3]}],r=[function(){},function(e,t,n,r){let i=t[0];e[n]=i,e[n+1]=i,e[n+2]=i,e[n+3]=r},function(e,t,n){let r=t[0];e[n]=r,e[n+1]=r,e[n+2]=r,e[n+3]=t[1]},function(e,t,n,r){e[n]=t[0],e[n+1]=t[1],e[n+2]=t[2],e[n+3]=r},function(e,t,n){e[n]=t[0],e[n+1]=t[1],e[n+2]=t[2],e[n+3]=t[3]}];function i(e,t){let n=[],r=0;function i(){if(r===e.length)throw Error(`Ran out of data`);let i=e[r];r++;let a,o,s,c,l,u,d,f;switch(t){default:throw Error(`unrecognised depth`);case 16:d=e[r],r++,n.push((i<<8)+d);break;case 4:d=i&15,f=i>>4,n.push(f,d);break;case 2:l=i&3,u=i>>2&3,d=i>>4&3,f=i>>6&3,n.push(f,d,u,l);break;case 1:a=i&1,o=i>>1&1,s=i>>2&1,c=i>>3&1,l=i>>4&1,u=i>>5&1,d=i>>6&1,f=i>>7&1,n.push(f,d,u,l,c,s,o,a);break}}return{get:function(e){for(;n.length<e;)i();let t=n.slice(0,e);return n=n.slice(e),t},resetAfterLine:function(){n.length=0},end:function(){if(r!==e.length)throw Error(`extra data found`)}}}function a(e,t,r,i,a,o){let s=e.width,c=e.height,l=e.index;for(let e=0;e<c;e++)for(let c=0;c<s;c++){let s=r(c,e,l);n[i](t,a,s,o),o+=i}return o}function o(e,t,n,i,a,o){let s=e.width,c=e.height,l=e.index;for(let e=0;e<c;e++){for(let c=0;c<s;c++){let s=a.get(i),u=n(c,e,l);r[i](t,s,u,o)}a.resetAfterLine()}}e.dataToBitMap=function(e,n){let r=n.width,s=n.height,c=n.depth,l=n.bpp,u=n.interlace,d;c!==8&&(d=i(e,c));let f;f=c<=8?Buffer.alloc(r*s*4):new Uint16Array(r*s*4);let p=2**c-1,m=0,h,g;if(u)h=t.getImagePasses(r,s),g=t.getInterlaceIterator(r,s);else{let e=0;g=function(){let t=e;return e+=4,t},h=[{width:r,height:s}]}for(let t=0;t<h.length;t++)c===8?m=a(h[t],f,g,l,e,m):o(h[t],f,g,l,d,p);if(c===8){if(m!==e.length)throw Error(`extra data found`)}else d.end();return f}})),Gm=o(((e,t)=>{function n(e,t,n,r,i){let a=0;for(let o=0;o<r;o++)for(let r=0;r<n;r++){let n=i[e[a]];if(!n)throw Error(`index `+e[a]+` not in palette`);for(let e=0;e<4;e++)t[a+e]=n[e];a+=4}}function r(e,t,n,r,i){let a=0;for(let o=0;o<r;o++)for(let r=0;r<n;r++){let n=!1;if(i.length===1?i[0]===e[a]&&(n=!0):i[0]===e[a]&&i[1]===e[a+1]&&i[2]===e[a+2]&&(n=!0),n)for(let e=0;e<4;e++)t[a+e]=0;a+=4}}function i(e,t,n,r,i){let a=2**i-1,o=0;for(let i=0;i<r;i++)for(let r=0;r<n;r++){for(let n=0;n<4;n++)t[o+n]=Math.floor(e[o+n]*255/a+.5);o+=4}}t.exports=function(e,t,a=!1){let o=t.depth,s=t.width,c=t.height,l=t.colorType,u=t.transColor,d=t.palette,f=e;return l===3?n(e,f,s,c,d):(u&&r(e,f,s,c,u),o!==8&&!a&&(o===16&&(f=Buffer.alloc(s*c*4)),i(e,f,s,c,o))),f}})),Km=o(((e,t)=>{var n=Ir(),r=Ir(),i=Im(),a=Bm(),o=Um(),s=Wm(),c=Gm(),l=t.exports=function(e){i.call(this),this._parser=new o(e,{read:this.read.bind(this),error:this._handleError.bind(this),metadata:this._handleMetaData.bind(this),gamma:this.emit.bind(this,`gamma`),palette:this._handlePalette.bind(this),transColor:this._handleTransColor.bind(this),finished:this._finished.bind(this),inflateData:this._inflateData.bind(this),simpleTransparency:this._simpleTransparency.bind(this),headersFinished:this._headersFinished.bind(this)}),this._options=e,this.writable=!0,this._parser.start()};n.inherits(l,i),l.prototype._handleError=function(e){this.emit(`error`,e),this.writable=!1,this.destroy(),this._inflate&&this._inflate.destroy&&this._inflate.destroy(),this._filter&&(this._filter.destroy(),this._filter.on(`error`,function(){})),this.errord=!0},l.prototype._inflateData=function(e){if(!this._inflate)if(this._bitmapInfo.interlace)this._inflate=r.createInflate(),this._inflate.on(`error`,this.emit.bind(this,`error`)),this._filter.on(`complete`,this._complete.bind(this)),this._inflate.pipe(this._filter);else{let e=((this._bitmapInfo.width*this._bitmapInfo.bpp*this._bitmapInfo.depth+7>>3)+1)*this._bitmapInfo.height,t=Math.max(e,r.Z_MIN_CHUNK);this._inflate=r.createInflate({chunkSize:t});let n=e,i=this.emit.bind(this,`error`);this._inflate.on(`error`,function(e){n&&i(e)}),this._filter.on(`complete`,this._complete.bind(this));let a=this._filter.write.bind(this._filter);this._inflate.on(`data`,function(e){n&&(e.length>n&&(e=e.slice(0,n)),n-=e.length,a(e))}),this._inflate.on(`end`,this._filter.end.bind(this._filter))}this._inflate.write(e)},l.prototype._handleMetaData=function(e){this._metaData=e,this._bitmapInfo=Object.create(e),this._filter=new a(this._bitmapInfo)},l.prototype._handleTransColor=function(e){this._bitmapInfo.transColor=e},l.prototype._handlePalette=function(e){this._bitmapInfo.palette=e},l.prototype._simpleTransparency=function(){this._metaData.alpha=!0},l.prototype._headersFinished=function(){this.emit(`metadata`,this._metaData)},l.prototype._finished=function(){this.errord||(this._inflate?this._inflate.end():this.emit(`error`,`No Inflate block`))},l.prototype._complete=function(e){if(this.errord)return;let t;try{let n=s.dataToBitMap(e,this._bitmapInfo);t=c(n,this._bitmapInfo,this._options.skipRescale),n=null}catch(e){this._handleError(e);return}this.emit(`parsed`,t)}})),qm=o(((e,t)=>{var n=Vm();t.exports=function(e,t,r,i){let a=[n.COLORTYPE_COLOR_ALPHA,n.COLORTYPE_ALPHA].indexOf(i.colorType)!==-1;if(i.colorType===i.inputColorType){let t=(function(){let e=new ArrayBuffer(2);return new DataView(e).setInt16(0,256,!0),new Int16Array(e)[0]!==256})();if(i.bitDepth===8||i.bitDepth===16&&t)return e}let o=i.bitDepth===16?new Uint16Array(e.buffer):e,s=255,c=n.COLORTYPE_TO_BPP_MAP[i.inputColorType];c===4&&!i.inputHasAlpha&&(c=3);let l=n.COLORTYPE_TO_BPP_MAP[i.colorType];i.bitDepth===16&&(s=65535,l*=2);let u=Buffer.alloc(t*r*l),d=0,f=0,p=i.bgColor||{};p.red===void 0&&(p.red=s),p.green===void 0&&(p.green=s),p.blue===void 0&&(p.blue=s);function m(){let e,t,r,c=s;switch(i.inputColorType){case n.COLORTYPE_COLOR_ALPHA:c=o[d+3],e=o[d],t=o[d+1],r=o[d+2];break;case n.COLORTYPE_COLOR:e=o[d],t=o[d+1],r=o[d+2];break;case n.COLORTYPE_ALPHA:c=o[d+1],e=o[d],t=e,r=e;break;case n.COLORTYPE_GRAYSCALE:e=o[d],t=e,r=e;break;default:throw Error(`input color type:`+i.inputColorType+` is not supported at present`)}return i.inputHasAlpha&&(a||(c/=s,e=Math.min(Math.max(Math.round((1-c)*p.red+c*e),0),s),t=Math.min(Math.max(Math.round((1-c)*p.green+c*t),0),s),r=Math.min(Math.max(Math.round((1-c)*p.blue+c*r),0),s))),{red:e,green:t,blue:r,alpha:c}}for(let e=0;e<r;e++)for(let e=0;e<t;e++){let e=m(o,d);switch(i.colorType){case n.COLORTYPE_COLOR_ALPHA:case n.COLORTYPE_COLOR:i.bitDepth===8?(u[f]=e.red,u[f+1]=e.green,u[f+2]=e.blue,a&&(u[f+3]=e.alpha)):(u.writeUInt16BE(e.red,f),u.writeUInt16BE(e.green,f+2),u.writeUInt16BE(e.blue,f+4),a&&u.writeUInt16BE(e.alpha,f+6));break;case n.COLORTYPE_ALPHA:case n.COLORTYPE_GRAYSCALE:{let t=(e.red+e.green+e.blue)/3;i.bitDepth===8?(u[f]=t,a&&(u[f+1]=e.alpha)):(u.writeUInt16BE(t,f),a&&u.writeUInt16BE(e.alpha,f+2));break}default:throw Error(`unrecognised color Type `+i.colorType)}d+=c,f+=l}return u}})),Jm=o(((e,t)=>{var n=Rm();function r(e,t,n,r,i){for(let a=0;a<n;a++)r[i+a]=e[t+a]}function i(e,t,n){let r=0,i=t+n;for(let n=t;n<i;n++)r+=Math.abs(e[n]);return r}function a(e,t,n,r,i,a){for(let o=0;o<n;o++){let n=o>=a?e[t+o-a]:0,s=e[t+o]-n;r[i+o]=s}}function o(e,t,n,r){let i=0;for(let a=0;a<n;a++){let n=a>=r?e[t+a-r]:0,o=e[t+a]-n;i+=Math.abs(o)}return i}function s(e,t,n,r,i){for(let a=0;a<n;a++){let o=t>0?e[t+a-n]:0,s=e[t+a]-o;r[i+a]=s}}function c(e,t,n){let r=0,i=t+n;for(let a=t;a<i;a++){let i=t>0?e[a-n]:0,o=e[a]-i;r+=Math.abs(o)}return r}function l(e,t,n,r,i,a){for(let o=0;o<n;o++){let s=o>=a?e[t+o-a]:0,c=t>0?e[t+o-n]:0,l=e[t+o]-(s+c>>1);r[i+o]=l}}function u(e,t,n,r){let i=0;for(let a=0;a<n;a++){let o=a>=r?e[t+a-r]:0,s=t>0?e[t+a-n]:0,c=e[t+a]-(o+s>>1);i+=Math.abs(c)}return i}function d(e,t,r,i,a,o){for(let s=0;s<r;s++){let c=s>=o?e[t+s-o]:0,l=t>0?e[t+s-r]:0,u=t>0&&s>=o?e[t+s-(r+o)]:0,d=e[t+s]-n(c,l,u);i[a+s]=d}}function f(e,t,r,i){let a=0;for(let o=0;o<r;o++){let s=o>=i?e[t+o-i]:0,c=t>0?e[t+o-r]:0,l=t>0&&o>=i?e[t+o-(r+i)]:0,u=e[t+o]-n(s,c,l);a+=Math.abs(u)}return a}var p={0:r,1:a,2:s,3:l,4:d},m={0:i,1:o,2:c,3:u,4:f};t.exports=function(e,t,n,r,i){let a;if(!(`filterType`in r)||r.filterType===-1)a=[0,1,2,3,4];else if(typeof r.filterType==`number`)a=[r.filterType];else throw Error(`unrecognised filter types`);r.bitDepth===16&&(i*=2);let o=t*i,s=0,c=0,l=Buffer.alloc((o+1)*n),u=a[0];for(let t=0;t<n;t++){if(a.length>1){let t=1/0;for(let n=0;n<a.length;n++){let r=m[a[n]](e,c,o,i);r<t&&(u=a[n],t=r)}}l[s]=u,s++,p[u](e,c,o,l,s,i),s+=o,c+=o}return l}})),Ym=o(((e,t)=>{var n=Vm(),r=Hm(),i=qm(),a=Jm(),o=Ir(),s=t.exports=function(e){if(this._options=e,e.deflateChunkSize=e.deflateChunkSize||32*1024,e.deflateLevel=e.deflateLevel==null?9:e.deflateLevel,e.deflateStrategy=e.deflateStrategy==null?3:e.deflateStrategy,e.inputHasAlpha=e.inputHasAlpha==null?!0:e.inputHasAlpha,e.deflateFactory=e.deflateFactory||o.createDeflate,e.bitDepth=e.bitDepth||8,e.colorType=typeof e.colorType==`number`?e.colorType:n.COLORTYPE_COLOR_ALPHA,e.inputColorType=typeof e.inputColorType==`number`?e.inputColorType:n.COLORTYPE_COLOR_ALPHA,[n.COLORTYPE_GRAYSCALE,n.COLORTYPE_COLOR,n.COLORTYPE_COLOR_ALPHA,n.COLORTYPE_ALPHA].indexOf(e.colorType)===-1)throw Error(`option color type:`+e.colorType+` is not supported at present`);if([n.COLORTYPE_GRAYSCALE,n.COLORTYPE_COLOR,n.COLORTYPE_COLOR_ALPHA,n.COLORTYPE_ALPHA].indexOf(e.inputColorType)===-1)throw Error(`option input color type:`+e.inputColorType+` is not supported at present`);if(e.bitDepth!==8&&e.bitDepth!==16)throw Error(`option bit depth:`+e.bitDepth+` is not supported at present`)};s.prototype.getDeflateOptions=function(){return{chunkSize:this._options.deflateChunkSize,level:this._options.deflateLevel,strategy:this._options.deflateStrategy}},s.prototype.createDeflate=function(){return this._options.deflateFactory(this.getDeflateOptions())},s.prototype.filterData=function(e,t,r){let o=i(e,t,r,this._options),s=n.COLORTYPE_TO_BPP_MAP[this._options.colorType];return a(o,t,r,this._options,s)},s.prototype._packChunk=function(e,t){let n=t?t.length:0,i=Buffer.alloc(n+12);return i.writeUInt32BE(n,0),i.writeUInt32BE(e,4),t&&t.copy(i,8),i.writeInt32BE(r.crc32(i.slice(4,i.length-4)),i.length-4),i},s.prototype.packGAMA=function(e){let t=Buffer.alloc(4);return t.writeUInt32BE(Math.floor(e*n.GAMMA_DIVISION),0),this._packChunk(n.TYPE_gAMA,t)},s.prototype.packIHDR=function(e,t){let r=Buffer.alloc(13);return r.writeUInt32BE(e,0),r.writeUInt32BE(t,4),r[8]=this._options.bitDepth,r[9]=this._options.colorType,r[10]=0,r[11]=0,r[12]=0,this._packChunk(n.TYPE_IHDR,r)},s.prototype.packIDAT=function(e){return this._packChunk(n.TYPE_IDAT,e)},s.prototype.packIEND=function(){return this._packChunk(n.TYPE_IEND,null)}})),Xm=o(((e,t)=>{var n=Ir(),r=Ir(),i=Vm(),a=Ym(),o=t.exports=function(e){r.call(this),this._packer=new a(e||{}),this._deflate=this._packer.createDeflate(),this.readable=!0};n.inherits(o,r),o.prototype.pack=function(e,t,n,r){this.emit(`data`,Buffer.from(i.PNG_SIGNATURE)),this.emit(`data`,this._packer.packIHDR(t,n)),r&&this.emit(`data`,this._packer.packGAMA(r));let a=this._packer.filterData(e,t,n);this._deflate.on(`error`,this.emit.bind(this,`error`)),this._deflate.on(`data`,function(e){this.emit(`data`,this._packer.packIDAT(e))}.bind(this)),this._deflate.on(`end`,function(){this.emit(`data`,this._packer.packIEND()),this.emit(`end`)}.bind(this)),this._deflate.end(a)}})),Zm=o(((e,t)=>{var n=Ir().ok,r=Ir(),i=Ir(),a=Ir().kMaxLength;function o(e){if(!(this instanceof o))return new o(e);e&&e.chunkSize<r.Z_MIN_CHUNK&&(e.chunkSize=r.Z_MIN_CHUNK),r.Inflate.call(this,e),this._offset=this._offset===void 0?this._outOffset:this._offset,this._buffer=this._buffer||this._outBuffer,e&&e.maxLength!=null&&(this._maxLength=e.maxLength)}function s(e){return new o(e)}function c(e,t){t&&process.nextTick(t),e._handle&&=(e._handle.close(),null)}o.prototype._processChunk=function(e,t,i){if(typeof i==`function`)return r.Inflate._processChunk.call(this,e,t,i);let o=this,s=e&&e.length,l=this._chunkSize-this._offset,u=this._maxLength,d=0,f=[],p=0,m;this.on(`error`,function(e){m=e});function h(e,t){if(o._hadError)return;let r=l-t;if(n(r>=0,`have should not go down`),r>0){let e=o._buffer.slice(o._offset,o._offset+r);if(o._offset+=r,e.length>u&&(e=e.slice(0,u)),f.push(e),p+=e.length,u-=e.length,u===0)return!1}return(t===0||o._offset>=o._chunkSize)&&(l=o._chunkSize,o._offset=0,o._buffer=Buffer.allocUnsafe(o._chunkSize)),t===0?(d+=s-e,s=e,!0):!1}n(this._handle,`zlib binding closed`);let g;do g=this._handle.writeSync(t,e,d,s,this._buffer,this._offset,l),g||=this._writeState;while(!this._hadError&&h(g[0],g[1]));if(this._hadError)throw m;if(p>=a)throw c(this),RangeError(`Cannot create final Buffer. It would be larger than 0x`+a.toString(16)+` bytes`);let _=Buffer.concat(f,p);return c(this),_},i.inherits(o,r.Inflate);function l(e,t){if(typeof t==`string`&&(t=Buffer.from(t)),!(t instanceof Buffer))throw TypeError(`Not a string or buffer`);let n=e._finishFlushFlag;return n??=r.Z_FINISH,e._processChunk(t,n)}function u(e,t){return l(new o(t),e)}t.exports=e=u,e.Inflate=o,e.createInflate=s,e.inflateSync=u})),Qm=o(((e,t)=>{var n=t.exports=function(e){this._buffer=e,this._reads=[]};n.prototype.read=function(e,t){this._reads.push({length:Math.abs(e),allowLess:e<0,func:t})},n.prototype.process=function(){for(;this._reads.length>0&&this._buffer.length;){let e=this._reads[0];if(this._buffer.length&&(this._buffer.length>=e.length||e.allowLess)){this._reads.shift();let t=this._buffer;this._buffer=t.slice(e.length),e.func.call(this,t.slice(0,e.length))}else break}if(this._reads.length>0)throw Error(`There are some read requests waitng on finished stream`);if(this._buffer.length>0)throw Error(`unrecognised content at end of stream`)}})),$m=o((e=>{var t=Qm(),n=zm();e.process=function(e,r){let i=[],a=new t(e);return new n(r,{read:a.read.bind(a),write:function(e){i.push(e)},complete:function(){}}).start(),a.process(),Buffer.concat(i)}})),eh=o(((e,t)=>{var n=!0,r=Ir(),i=Zm();r.deflateSync||(n=!1);var a=Qm(),o=$m(),s=Um(),c=Wm(),l=Gm();t.exports=function(e,t){if(!n)throw Error(`To use the sync capability of this library in old node versions, please pin pngjs to v2.3.0`);let u;function d(e){u=e}let f;function p(e){f=e}function m(e){f.transColor=e}function h(e){f.palette=e}function g(){f.alpha=!0}let _;function v(e){_=e}let y=[];function b(e){y.push(e)}let x=new a(e);if(new s(t,{read:x.read.bind(x),error:d,metadata:p,gamma:v,palette:h,transColor:m,inflateData:b,simpleTransparency:g}).start(),x.process(),u)throw u;let S=Buffer.concat(y);y.length=0;let C;if(f.interlace)C=r.inflateSync(S);else{let e=((f.width*f.bpp*f.depth+7>>3)+1)*f.height;C=i(S,{chunkSize:e,maxLength:e})}if(S=null,!C||!C.length)throw Error(`bad png - invalid inflate data response`);let w=o.process(C,f);S=null;let T=c.dataToBitMap(w,f);w=null;let E=l(T,f,t.skipRescale);return f.data=E,f.gamma=_||0,f}})),th=o(((e,t)=>{var n=!0,r=Ir();r.deflateSync||(n=!1);var i=Vm(),a=Ym();t.exports=function(e,t){if(!n)throw Error(`To use the sync capability of this library in old node versions, please pin pngjs to v2.3.0`);let o=new a(t||{}),s=[];s.push(Buffer.from(i.PNG_SIGNATURE)),s.push(o.packIHDR(e.width,e.height)),e.gamma&&s.push(o.packGAMA(e.gamma));let c=o.filterData(e.data,e.width,e.height),l=r.deflateSync(c,o.getDeflateOptions());if(c=null,!l||!l.length)throw Error(`bad png - invalid compressed data response`);return s.push(o.packIDAT(l)),s.push(o.packIEND()),Buffer.concat(s)}})),nh=o((e=>{var t=eh(),n=th();e.read=function(e,n){return t(e,n||{})},e.write=function(e,t){return n(e,t)}})),rh=o((e=>{var t=Ir(),n=Ir(),r=Km(),i=Xm(),a=nh(),o=e.PNG=function(e){n.call(this),e||={},this.width=e.width|0,this.height=e.height|0,this.data=this.width>0&&this.height>0?Buffer.alloc(4*this.width*this.height):null,e.fill&&this.data&&this.data.fill(0),this.gamma=0,this.readable=this.writable=!0,this._parser=new r(e),this._parser.on(`error`,this.emit.bind(this,`error`)),this._parser.on(`close`,this._handleClose.bind(this)),this._parser.on(`metadata`,this._metadata.bind(this)),this._parser.on(`gamma`,this._gamma.bind(this)),this._parser.on(`parsed`,function(e){this.data=e,this.emit(`parsed`,e)}.bind(this)),this._packer=new i(e),this._packer.on(`data`,this.emit.bind(this,`data`)),this._packer.on(`end`,this.emit.bind(this,`end`)),this._parser.on(`close`,this._handleClose.bind(this)),this._packer.on(`error`,this.emit.bind(this,`error`))};t.inherits(o,n),o.sync=a,o.prototype.pack=function(){return!this.data||!this.data.length?(this.emit(`error`,`No data provided`),this):(process.nextTick(function(){this._packer.pack(this.data,this.width,this.height,this.gamma)}.bind(this)),this)},o.prototype.parse=function(e,t){if(t){let e,n;e=function(e){this.removeListener(`error`,n),this.data=e,t(null,this)}.bind(this),n=function(n){this.removeListener(`parsed`,e),t(n,null)}.bind(this),this.once(`parsed`,e),this.once(`error`,n)}return this.end(e),this},o.prototype.write=function(e){return this._parser.write(e),!0},o.prototype.end=function(e){this._parser.end(e)},o.prototype._metadata=function(e){this.width=e.width,this.height=e.height,this.emit(`metadata`,e)},o.prototype._gamma=function(e){this.gamma=e},o.prototype._handleClose=function(){!this._parser.writable&&!this._packer.readable&&this.emit(`close`)},o.bitblt=function(e,t,n,r,i,a,o,s){if(n|=0,r|=0,i|=0,a|=0,o|=0,s|=0,n>e.width||r>e.height||n+i>e.width||r+a>e.height)throw Error(`bitblt reading outside image`);if(o>t.width||s>t.height||o+i>t.width||s+a>t.height)throw Error(`bitblt writing outside image`);for(let c=0;c<a;c++)e.data.copy(t.data,(s+c)*t.width+o<<2,(r+c)*e.width+n<<2,(r+c)*e.width+n+i<<2)},o.prototype.bitblt=function(e,t,n,r,i,a,s){return o.bitblt(this,e,t,n,r,i,a,s),this},o.adjustGamma=function(e){if(e.gamma){for(let t=0;t<e.height;t++)for(let n=0;n<e.width;n++){let r=e.width*t+n<<2;for(let t=0;t<3;t++){let n=e.data[r+t]/255;n**=1/2.2/e.gamma,e.data[r+t]=Math.round(n*255)}}e.gamma=0}},o.prototype.adjustGamma=function(){o.adjustGamma(this)}}))();async function ih(e,t=2){let n=[],r=await Om(e,{scale:t});for await(let e of r)n.push(e);return n}async function ah(e,t){let{scale:n=2,threshold:r=.1,snapshotsDir:i,snapshotName:a,updateSnapshots:o=!1}=t;(0,z.mkdirSync)(i,{recursive:!0});let s=await ih(e,n),c=[];for(let e=0;e<s.length;e++){let t=e+1,n=(0,z.resolve)(i,`${a}-page${t}.png`),l=(0,z.resolve)(i,`${a}-page${t}-diff.png`);if(!(0,z.existsSync)(n)||o){(0,z.writeFileSync)(n,s[e]),c.push({page:t,mismatchedPixels:0,totalPixels:0,mismatchPercent:0,snapshotCreated:!0});continue}let u=rh.PNG.sync.read(s[e]),d=rh.PNG.sync.read((0,z.readFileSync)(n));if(u.width!==d.width||u.height!==d.height){(0,z.writeFileSync)((0,z.resolve)(i,`${a}-page${t}-actual.png`),s[e]),c.push({page:t,mismatchedPixels:u.width*u.height,totalPixels:u.width*u.height,mismatchPercent:100,snapshotCreated:!1});continue}let f=new rh.PNG({width:u.width,height:u.height}),p=km(u.data,d.data,f.data,u.width,u.height,{threshold:r}),m=u.width*u.height,h=p/m*100;p>0&&(0,z.writeFileSync)(l,rh.PNG.sync.write(f)),c.push({page:t,mismatchedPixels:p,totalPixels:m,mismatchPercent:h,diffPath:p>0?l:void 0,snapshotCreated:!1})}return c}async function oh(e,t,n,r=`a`,i=`b`,a=2,o=.1){(0,z.mkdirSync)(n,{recursive:!0});let s=await ih(e,a),c=await ih(t,a),l=Math.max(s.length,c.length),u=[];for(let e=0;e<l;e++){let t=e+1;if(!s[e]||!c[e]){u.push({page:t,mismatchedPixels:-1,totalPixels:0,mismatchPercent:100,snapshotCreated:!1});continue}(0,z.writeFileSync)((0,z.resolve)(n,`${r}-page${t}.png`),s[e]),(0,z.writeFileSync)((0,z.resolve)(n,`${i}-page${t}.png`),c[e]);let a=rh.PNG.sync.read(s[e]),l=rh.PNG.sync.read(c[e]),d=Math.min(a.width,l.width),f=Math.min(a.height,l.height);if(a.width!==l.width||a.height!==l.height){u.push({page:t,mismatchedPixels:-1,totalPixels:d*f,mismatchPercent:-1,snapshotCreated:!1});continue}let p=new rh.PNG({width:d,height:f}),m=km(a.data,l.data,p.data,d,f,{threshold:o}),h=d*f;(0,z.writeFileSync)((0,z.resolve)(n,`diff-page${t}.png`),rh.PNG.sync.write(p)),u.push({page:t,mismatchedPixels:m,totalPixels:h,mismatchPercent:m/h*100,diffPath:(0,z.resolve)(n,`diff-page${t}.png`),snapshotCreated:!1})}return u}exports.COMPOSITION_CATALOG=D,exports.DRAW_MODAL_TABS=De,exports.FONT=ee,exports.FOOTER_LAYOUT_OPTIONS=Ce,exports.HEADER_LAYOUT_OPTIONS=Se,exports.ORIENTATION_OPTIONS=Te,exports.PAGE_SIZE_OPTIONS=we,exports.PRESETS=S,exports.SCHEDULE_MODAL_TABS=Oe,exports.SIZE=L,exports.SPLIT_STRATEGY_OPTIONS=Ee,exports.STYLE=I,exports.TABLE_STYLES=wn,exports.calculateBracketPositions=En,exports.classifyText=dn,exports.cleanMergedText=Kt,exports.clusterCoordinates=Vt,exports.comparePdfToSnapshot=ah,exports.comparetwoPdfs=oh,exports.createDoc=N,exports.detectRegions=qt,exports.drawBracketConnectors=On,exports.drawBracketSlot=Dn,exports.drawPageFooter=Cn,exports.drawTournamentHeader=Sn,exports.entryStatusDisplay=Me,exports.eventAbbreviation=Ie,exports.executePrint=be,exports.extractCompassData=Bt,exports.extractConsolationStructures=Ft,exports.extractCourtCardData=Ge,exports.extractDrawData=Re,exports.extractDrawFromPage=hn,exports.extractDrawMerged=xn,exports.extractParticipantData=We,exports.extractPlayerName=pn,exports.extractRoundRobinData=Je,exports.extractScheduleData=He,exports.extractSeedValue=mn,exports.findClusterIndex=Ut,exports.findStructure=M,exports.formatDate=Pe,exports.formatMatchScore=nt,exports.formatPlayerEntry=Ye,exports.formatScore=Ne,exports.formatTime=Fe,exports.generateBackdrawPDF=Or,exports.generateCompassDrawPDF=Er,exports.generateConsolationDrawPDF=Tr,exports.generateCourtCardPDF=Rn,exports.generateDoubleEliminationPDF=kr,exports.generateDrawPDF=br,exports.generateDrawSheetPDF=An,exports.generateFeedInDrawPDF=wr,exports.generateFromEventData=Pr,exports.generateLuckyDrawPDF=Ar,exports.generateMatchCardPDF=nr,exports.generateMirroredDrawPDF=Dr,exports.generatePlayerListPDF=Ln,exports.generateSchedulePDF=Pn,exports.generateScheduleV2PDF=Vn,exports.generateSequentialOOP=Yn,exports.generateSignInSheetPDF=Bn,exports.generateSplitDrawPDF=Cr,exports.generateTraditionalDrawPDF=Sr,exports.getCatalogPreset=O,exports.getDefaultPageConfig=F,exports.getPageRegions=P,exports.getPreset=C,exports.getRoundLabel=ze,exports.listCatalogPresets=k,exports.measureFooterHeight=ce,exports.measureSeedingsHeight=ye,exports.mergeCatalogPreset=A,exports.mergePreset=w,exports.mergeTextItems=Wt,exports.nationality=Ae,exports.parsePdfBuffer=zc,exports.participantName=ke,exports.pdfToImages=ih,exports.renderCompassDraw=Mt,exports.renderConsolationDraw=It,exports.renderDoubleEliminationDraw=Lt,exports.renderFooter=se,exports.renderHeader=te,exports.renderLuckyDraw=Dt,exports.renderRoundRobinGroup=xt,exports.renderSeedingsFooter=_e,exports.renderTraditionalDraw=it,exports.roundName=Le,exports.seedDisplay=je,exports.setFont=R,exports.splitDraw=At,exports.structureToDrawData=j;
|
|
23
|
+
//# sourceMappingURL=pdf-factory.cjs.map
|