123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830 |
- ;/*!node_modules/office-viewer/lib/OpenXML.js*/
- amis.define("0720cd6",(function(t,e,r,n){"use strict";function u(t){return t.getAttribute("w:val")||t.getAttribute("w14:val")||t.getAttribute("val")||""}function i(t,e){if(void 0===e&&(e=!1),"boolean"==typeof t)return t;if("string"==typeof t){switch(t){case"1":case"on":case"true":return!0;case"0":case"off":case"false":return!1}if("number"==typeof t)return 0!==t}return e}Object.defineProperty(e,"__esModule",{value:!0}),e.getAttrBoolean=function(t,e,r){return void 0===r&&(r=!0),i(t.getAttribute(e),r)},e.getAttrNumber=function(t,e,r){void 0===r&&(r=0);var n=t.getAttribute(e);return n?parseInt(n,10):r},e.getAttrPercent=function(t,e){var r=t.getAttribute(e);return r?r.endsWith("%")?parseInt(r,10)/100:parseInt(r,10)/1e5:1},e.getVal=u,e.getValBoolean=function(t,e){return void 0===e&&(e=!0),i(u(t),e)},e.getValHex=function(t){return parseInt(u(t)||"0",16)},e.getValNumber=function(t){return parseInt(u(t),10)},e.normalizeBoolean=i}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Font.js*/
- amis.define("e90b1b4",(function(e,a,t,r){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var n=e("68b98b9"),c=e("0720cd6");var o=function(){function e(){}return e.fromXML=function(a,t){var r,o,s=new e;s.name=t.getAttribute("w:name")||"";try{for(var l=n.__values(t.children),i=l.next();!i.done;i=l.next()){var u=i.value,b=u.tagName;switch(b){case"w:family":s.family=c.getVal(u);break;case"w:altName":s.altName=c.getVal(u);break;case"w:panose1":case"w:charset":case"w:sig":case"w:pitch":break;case"w:embedRegular":case"w:embedBold":case"w:embedItalic":case"w:embedBoldItalic":case"w:embedSystemFonts":case"w:embedTrueTypeFonts":var w=u.getAttribute("r:id")||"",d=u.getAttribute("w:fontKey")||"",f=a.loadFont(w,d);f&&(s.url=f);break;default:console.warn("parse Font: Unknown key",b,u)}}}catch(e){r={error:e}}finally{try{i&&!i.done&&(o=l.return)&&o.call(l)}finally{if(r)throw r.error}}return s},e}();a.Font=o,a.deobfuscate=function(e,a){for(var t=a.replace(/{|}|-/g,""),r=new Array(16),n=0;n<16;n++)r[16-n-1]=parseInt(t.substr(2*n,2),16);for(n=0;n<32;n++)e[n]=e[n]^r[n%16];return e}}));
- ;/*!node_modules/office-viewer/lib/openxml/word/FontTable.js*/
- amis.define("5ef90ec",(function(e,r,n,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=e("68b98b9"),f=e("e90b1b4"),a=function(){function e(){this.fonts=[]}return e.fromXML=function(r,n){var t,a,u=Array.from(n.getElementsByTagName("w:font")),i=new e;try{for(var l=o.__values(u),c=l.next();!c.done;c=l.next()){var s=c.value,v=f.Font.fromXML(r,s);i.fonts.push(v)}}catch(e){t={error:e}}finally{try{c&&!c.done&&(a=l.return)&&a.call(l)}finally{if(t)throw t.error}}return i},e}();r.FontTable=a}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseRelationship.js*/
- amis.define("242db4d",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("68b98b9");function n(e,t){return{id:e.getAttribute("Id")||"",type:e.getAttribute("Type")||"",target:e.getAttribute("Target")||"",targetMode:e.getAttribute("TargetMode")||"",part:t}}t.parseRelationship=n,t.parseRelationships=function(e,t){var r,a,o={},u=e.getElementsByTagName("Relationship");try{for(var l=i.__values(u),d=l.next();!d.done;d=l.next()){var s=n(d.value,t);o[s.id]=s}}catch(e){r={error:e}}finally{try{d&&!d.done&&(a=l.return)&&a.call(l)}finally{if(r)throw r.error}}return o}}));
- ;/*!node_modules/office-viewer/lib/openxml/ContentType.js*/
- amis.define("1ef446b",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9");t.parseContentType=function(e){var t,r,a={overrides:[],defaults:[]},i=[].slice.call(e.getElementsByTagName("Override"));try{for(var l=n.__values(i),o=l.next();!o.done;o=l.next()){var u=o.value;a.overrides.push({partName:u.getAttribute("PartName"),contentType:u.getAttribute("ContentType")})}}catch(e){t={error:e}}finally{try{o&&!o.done&&(r=l.return)&&r.call(l)}finally{if(t)throw t.error}}return a}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseSize.js*/
- amis.define("9f6b1b2",(function(t,n,e,u){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var i={Dxa:{mul:.066665,unit:"px"},Emu:{mul:1.3333/12700,unit:"px"},FontSize:{mul:.66665,unit:"px"},Border:{mul:.1666625,unit:"px"},Point:{mul:1.3333,unit:"px"},Percent:{mul:.02,unit:"%"},LineHeight:{mul:1/240,unit:""},VmlEmu:{mul:1/12700,unit:""}};function r(t,n){return void 0===n&&(n=i.Dxa),null==t||/.+(p[xt]|[%])$/.test(t)?t:"".concat((parseInt(t)*n.mul).toFixed(2)).concat(n.unit)}n.LengthUsage=i,n.convertAngle=function(t){return t?parseInt(t)/6e4:0},n.convertLength=r,n.parseSize=function(t,n,e){void 0===e&&(e=i.Dxa);var u=t.getAttribute(n);return u?r(String(u),e):""}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseCellMargin.js*/
- amis.define("4728b78",(function(e,a,r,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var i=e("68b98b9"),n=e("9f6b1b2");a.parseCellMargin=function(e,a){var r,t;try{for(var s=i.__values(e.children),o=s.next();!o.done;o=s.next()){var w=o.value;switch(w.tagName){case"w:left":case"w:start":a["padding-left"]=n.parseSize(w,"w:w");break;case"w:right":case"w:end":a["padding-right"]=n.parseSize(w,"w:w");break;case"w:top":a["padding-top"]=n.parseSize(w,"w:w");break;case"w:bottom":a["padding-bottom"]=n.parseSize(w,"w:w")}}}catch(e){r={error:e}}finally{try{o&&!o.done&&(t=s.return)&&t.call(s)}finally{if(r)throw r.error}}}}));
- ;/*!node_modules/office-viewer/lib/openxml/colorNameMap.js*/
- amis.define("7705ccb",(function(e,f,a,d){"use strict";Object.defineProperty(f,"__esModule",{value:!0});f.PresetColorMap={aliceBlue:"#f0f8ff",antiqueWhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedAlmond:"#ffebcd",blue:"#0000ff",blueViolet:"#8a2be2",brown:"#a52a2a",burlyWood:"#deb887",cadetBlue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerBlue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00FFFF",darkBlue:"#00008B",dkBlue:"#00008B",darkCyan:"#008B8B",dkCyan:"#008B8B",darkGoldenrod:"#b8860b",dkGoldenrod:"#b8860b",darkGray:"#A9A9A9",dkGray:"#A9A9A9",darkGreen:"#006400",dkGreen:"#006400",darkGrey:"#a9a9a9",dkGrey:"#a9a9a9",darkKhaki:"#bdb76b",dkKhaki:"#bdb76b",darkMagenta:"#800080",dkMagenta:"#800080",darkOliveGreen:"#556b2f",dkOliveGreen:"#556b2f",darkOrange:"#ff8c00",dkOrange:"#ff8c00",darkOrchid:"#9932cc",dkOrchid:"#9932cc",darkRed:"#8B0000",dkRed:"#8B0000",darkSalmon:"#e9967a",dkSalmon:"#e9967a",darkSeaGreen:"#8fbc8f",dkSeaGreen:"#8fbc8f",darkSlateBlue:"#483d8b",dkSlateBlue:"#483d8b",darkSlateGray:"#2f4f4f",dkSlateGray:"#2f4f4f",darkSlateGrey:"#2f4f4f",dkSlateGrey:"#2f4f4f",darkTurquoise:"#00ced1",dkTurquoise:"#00ced1",darkViolet:"#9400d3",dkViolet:"#9400d3",darkYellow:"#808000",deepPink:"#ff1493",deepSkyBlue:"#00bfff",dimGray:"#696969",dimGrey:"#696969",dodgerBlue:"#1e90ff",firebrick:"#b22222",floralWhite:"#fffaf0",forestGreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostWhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenYellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotPink:"#ff69b4",indianRed:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderBlush:"#fff0f5",lawnGreen:"#7cfc00",lemonChiffon:"#fffacd",lightBlue:"#add8e6",ltBlue:"#add8e6",lightCoral:"#f08080",ltCoral:"#f08080",lightCyan:"#e0ffff",ltCyan:"#e0ffff",lightGoldenrodYellow:"#fafad2",ltGoldenrodYellow:"#fafad2",lightGray:"#D3D3D3",ltGray:"#D3D3D3",lightGreen:"#90ee90",ltGreen:"#90ee90",lightGrey:"#d3d3d3",ltGrey:"#d3d3d3",lightPink:"#ffb6c1",ltPink:"#ffb6c1",lightSalmon:"#ffa07a",ltSalmon:"#ffa07a",lightSeaGreen:"#20b2aa",ltSeaGreen:"#20b2aa",lightSkyBlue:"#87cefa",ltSkyBlue:"#87cefa",lightSlateGray:"#778899",ltSlateGray:"#778899",lightSlateGrey:"#778899",ltSlateGrey:"#778899",lightSteelBlue:"#b0c4de",ltSteelBlue:"#b0c4de",lightYellow:"#ffffe0",ltYellow:"#ffffe0",lime:"#00ff00",limeGreen:"#32cd32",linen:"#faf0e6",magenta:"#FF00FF",maroon:"#800000",mediumAquamarine:"#66cdaa",medAquamarine:"#66cdaa",mediumBlue:"#0000cd",medBlue:"#0000cd",mediumOrchid:"#ba55d3",medOrchid:"#ba55d3",mediumPurple:"#9370db",medPurple:"#9370db",mediumSeaGreen:"#3cb371",medSeaGreen:"#3cb371",mediumSlateBlue:"#7b68ee",medSlateBlue:"#7b68ee",mediumSpringGreen:"#00fa9a",medSpringGreen:"#00fa9a",mediumTurquoise:"#48d1cc",medTurquoise:"#48d1cc",mediumVioletRed:"#c71585",medVioletRed:"#c71585",midnightBlue:"#191970",mintCream:"#f5fffa",mistyRose:"#ffe4e1",moccasin:"#ffe4b5",navajoWhite:"#ffdead",navy:"#000080",none:"transparent",oldLace:"#fdf5e6",olive:"#808000",oliveDrab:"#6b8e23",orange:"#ffa500",orangeRed:"#ff4500",orchid:"#da70d6",paleGoldenrod:"#eee8aa",paleGreen:"#98fb98",paleTurquoise:"#afeeee",paleVioletRed:"#db7093",papayaWhip:"#ffefd5",peachPuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderBlue:"#b0e0e6",purple:"#800080",rebeccaPurple:"#663399",red:"#ff0000",rosyBrown:"#bc8f8f",royalBlue:"#4169e1",saddleBrown:"#8b4513",salmon:"#fa8072",sandyBrown:"#f4a460",seaGreen:"#2e8b57",seaShell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyBlue:"#87ceeb",slateBlue:"#6a5acd",slateGray:"#708090",slateGrey:"#708090",snow:"#fffafa",springGreen:"#00ff7f",steelBlue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whiteSmoke:"#f5f5f5",yellow:"#ffff00",yellowGreen:"#9acd32"}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseColor.js*/
- amis.define("57a282e",(function(t,e,r,c){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=t("0720cd6"),a=t("7705ccb"),u=["black","blue","green","red","white","yellow"];function s(t,e,r,c){void 0===r&&(r="w:color"),void 0===c&&(c="black");var n=e.getAttribute(r);if(n)return"auto"==n?c:u.includes(n)?n:n in a.PresetColorMap?a.PresetColorMap[n]:"#".concat(n);var s=e.getAttribute("w:themeColor");return s?t.getThemeColor(s):""}function o(t,e){"FFFFFF"===t&&(t="000000");var r=parseInt(t.substring(0,2),16),c=parseInt(t.substring(2,4),16),n=parseInt(t.substring(4,6),16);return"rgba(".concat(r,", ").concat(c,", ").concat(n,", ").concat(e,")")}e.cssColors=u,e.parseColor=function(t,e){return s(t,e,"w:val")},e.parseColorAttr=s,e.parseShdColor=function(t,e){var r=e.getAttribute("w:fill")||"",c=n.getVal(e);if("auto"===r&&(r="FFFFFF"),6===r.length)switch(c){case"clear":return"#".concat(r);case"pct10":return o(r,.1);case"pct12":return o(r,.125);case"pct15":return o(r,.15);case"pct20":return o(r,.2);case"pct25":return o(r,.25);case"pct30":return o(r,.3);case"pct35":return o(r,.35);case"pct37":return o(r,.375);case"pct40":return o(r,.4);case"pct45":return o(r,.45);case"pct5":return o(r,.05);case"pct50":return o(r,.5);case"pct55":return o(r,.55);case"pct60":return o(r,.6);case"pct65":return o(r,.65);case"pct70":return o(r,.7);case"pct75":return o(r,.75);case"pct80":return o(r,.8);case"pct85":return o(r,.85);case"pct87":return o(r,.87);case"pct90":return o(r,.9);case"pct95":return o(r,.95);default:return console.warn("unsupport shd val",c),"#".concat(r)}return""}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseBorder.js*/
- amis.define("89cf759",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=e("68b98b9"),n=e("0720cd6"),c=e("57a282e"),s=e("9f6b1b2");function i(e,r){var a=n.getVal(r);if("nil"===a||"none"===a)return"none";var t=c.parseColorAttr(e,r),o=s.parseSize(r,"w:sz",s.LengthUsage.Border);return"".concat(o," solid ").concat("auto"==t?"black":t)}r.parseBorder=i,r.parseBorders=function(e,r,a){var t,n;try{for(var c=o.__values(r.children),s=c.next();!s.done;s=c.next()){var l=s.value;switch(l.tagName){case"w:start":case"w:left":a["border-left"]=i(e,l);break;case"w:end":case"w:right":a["border-right"]=i(e,l);break;case"w:top":a["border-top"]=i(e,l);break;case"w:bottom":a["border-bottom"]=i(e,l)}}}catch(e){t={error:e}}finally{try{s&&!s.done&&(n=c.return)&&n.call(c)}finally{if(t)throw t.error}}}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseTextDirection.js*/
- amis.define("7e31bc8",(function(e,t,c,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.parseTextDirection=function(e,t){switch(e.getAttribute("w:val")){case"lr":case"lrV":case"btLr":case"lrTb":case"lrTbV":case"tbLrV":t.direction="ltr";break;case"rl":case"rlV":case"tbRl":case"tbRlV":t.direction="rtl"}}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseTblWidth.js*/
- amis.define("d0797c2",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("9f6b1b2");t.parseTblWidth=function(e){var t=e.getAttribute("w:type");return t&&"dxa"!==t?"pct"===t?i.parseSize(e,"w:w",i.LengthUsage.Percent):"auto"===t?"auto":(console.warn("parseTblWidth: ignore type",t,e),""):i.parseSize(e,"w:w")}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseInsideBorders.js*/
- amis.define("308431e",(function(e,r,i,s){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("89cf759");r.parseInsideBorders=function(e,r){var i,s,a=r.getElementsByTagName("w:insideH").item(0);a&&(i=t.parseBorder(e,a));var n=r.getElementsByTagName("w:insideV").item(0);return n&&(s=t.parseBorder(e,n)),{H:i,V:s}}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseTcPr.js*/
- amis.define("0d4462f",(function(e,a,r,c){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var t=e("68b98b9"),n=e("4728b78"),i=e("57a282e"),s=e("0720cd6"),l=e("89cf759"),o=e("7e31bc8"),d=e("d0797c2"),b=e("308431e");function p(e,a){switch(s.getVal(e)){case"bottom":a["vertical-align"]="bottom";break;case"center":a["vertical-align"]="middle";break;case"top":a["vertical-align"]="top"}}function g(e,a){var r=d.parseTblWidth(e);r&&(a.width=r)}a.parseTblCellSpacing=function(e,a){var r=d.parseTblWidth(e);r&&(a["cell-spacing"]=r)},a.parseTcPr=function(e,a){var r,c,d={},w={};d.cssStyle=w;try{for(var k=t.__values(a.children),u=k.next();!u.done;u=k.next()){var f=u.value,v=f.tagName;switch(v){case"w:tcMar":n.parseCellMargin(f,w);break;case"w:shd":w["background-color"]=i.parseShdColor(e,f);break;case"w:tcW":g(f,w);break;case"w:noWrap":s.getValBoolean(f)&&(w["white-space"]="nowrap");break;case"w:vAlign":p(f,w);break;case"w:tcBorders":l.parseBorders(e,f,w),d.insideBorder=b.parseInsideBorders(e,f);break;case"w:gridSpan":d.gridSpan=s.getValNumber(f);break;case"w:vMerge":d.vMerge=s.getVal(f)||"continue";break;case"w:textDirection":o.parseTextDirection(f,w);break;case"w:cnfStyle":break;case"w:hideMark":d.hideMark=s.getValBoolean(f,!0);break;default:console.warn("parseTcPr: ignore",v,f)}}}catch(e){r={error:e}}finally{try{u&&!u.done&&(c=k.return)&&c.call(k)}finally{if(r)throw r.error}}return d}}));
- ;/*!node_modules/office-viewer/lib/util/color.js*/
- amis.define("b12ecca",(function(t,r,n,e){"use strict";function i(t,r,n){t/=255,r/=255,n/=255;var e,i=Math.max(t,r,n),s=Math.min(t,r,n),o=0,a=(i+s)/2;if(i==s)o=e=0;else{var h=i-s;switch(e=a>.5?h/(2-i-s):h/(i+s),i){case t:o=(r-n)/h+(r<n?6:0);break;case r:o=(n-t)/h+2;break;case n:o=(t-r)/h+4}o/=6}return{h:o,s:e,l:a}}function s(t,r,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?t+6*(r-t)*n:n<.5?r:n<2/3?t+(r-t)*(2/3-n)*6:t}function o(t,r,n){var e,i,o;if(t>1&&(t/=360),0==r)e=i=o=n;else{var a=n<.5?n*(1+r):n+r-n*r,h=2*n-a;e=s(h,a,t+1/3),i=s(h,a,t),o=s(h,a,t-1/3)}return{r:255*e,g:255*i,b:255*o}}function a(t){return 1==t.length?"0"+t:""+t}function h(t,r,n){return[a(Math.round(t).toString(16)),a(Math.round(r).toString(16)),a(Math.round(n).toString(16))].join("").toUpperCase()}function c(t){return Math.min(Math.max(t,0),255)}Object.defineProperty(r,"__esModule",{value:!0});var u=function(){function t(t){var r=t.match(/^#?([0-9a-f]{6})$/i);r&&(this.r=parseInt(r[1].substring(0,2),16),this.g=parseInt(r[1].substring(2,4),16),this.b=parseInt(r[1].substring(4,6),16),this.isValid=!0)}return t.fromHSL=function(r,n,e){var i=o(r,n,e);return new t("#".concat(h(i.r,i.g,i.b)))},t.fromRGB=function(r,n,e){var i=h(r,n,e);return new t("#".concat(i))},t.prototype.lum=function(t){return this.changeHsl(t,"l","set")},t.prototype.lumMod=function(t){return this.changeHsl(t,"l","mod")},t.prototype.lumOff=function(t){return this.changeHsl(t,"l","off")},t.prototype.hue=function(t){return this.changeHsl(t,"h","set")},t.prototype.hueMod=function(t){return this.changeHsl(t,"h","mod")},t.prototype.hueOff=function(t){return this.changeHsl(t,"h","off")},t.prototype.sat=function(t){return this.changeHsl(t,"s","set")},t.prototype.satMod=function(t){return this.changeHsl(t,"s","mod")},t.prototype.satOff=function(t){return this.changeHsl(t,"s","off")},t.prototype.changeHsl=function(t,r,n){var e=i(this.r,this.g,this.b);"set"===n?e[r]=t:"mod"===n?e[r]=e[r]*t:"off"===n&&(e[r]+=e[r]*t);var s=o(e.h,e.s,e.l);return this.r=s.r,this.g=s.g,this.b=s.b,this},t.prototype.comp=function(){var t=i(this.r,this.g,this.b);t.h=t.h+.5,t.h>1&&(t.h-=1);var r=o(t.h,t.s,t.l);return this.r=r.r,this.g=r.g,this.b=r.b,this},t.prototype.shade=function(t){this.r=c(this.r-256*t),this.g=c(this.g-256*t),this.b=c(this.b-256*t)},t.prototype.tint=function(t){this.r=c(this.r+256*t),this.g=c(this.g+256*t),this.b=c(this.b+256*t)},t.prototype.inv=function(){return this.r=255-this.r,this.g=255-this.g,this.b=255-this.b,this},t.prototype.toHex=function(){return"#"+h(this.r,this.g,this.b)},t.prototype.toRgba=function(t){return"rgba(".concat(this.r,", ").concat(this.g,", ").concat(this.b,", ").concat(t,")")},t}();r.Color=u,r.interpolateColor=function(t,r,n){var e=Math.min(255,t.r+(r.r-t.r)*n),i=Math.min(255,t.g+(r.g-t.g)*n),s=Math.min(255,t.b+(r.b-t.b)*n);return"".concat(h(e,i,s))},r.rgbTint=function(t,r){if(0===r)return t;var n,e,i=function(t){var r=t[0]/255,n=t[1]/255,e=t[2]/255,i=Math.max(r,n,e),s=Math.min(r,n,e),o=i-s;if(0===o)return[0,0,r];var a,h=0,c=i+s;switch(a=o/(c>1?2-c:c),i){case r:h=((n-e)/o+6)%6;break;case n:h=(e-r)/o+2;break;case e:h=(r-n)/o+4}return[h/6,a,c/2]}((e=(n=t).slice("#"===n[0]?1:0).slice(0,6),[parseInt(e.slice(0,2),16),parseInt(e.slice(2,4),16),parseInt(e.slice(4,6),16)]));return i[2]=r<0?i[2]*(1+r):1-(1-i[2])*(1-r),function(t){for(var r=0,n=1;3!=r;++r)n=256*n+(t[r]>255?255:t[r]<0?0:t[r]);return n.toString(16).toUpperCase().slice(1)}(function(t){var r,n=t[0],e=t[1],i=t[2],s=2*e*(i<.5?i:1-i),o=i-s/2,a=[o,o,o],h=6*n;if(0!==e)switch(0|h){case 0:case 6:r=s*h,a[0]+=s,a[1]+=r;break;case 1:r=s*(2-h),a[0]+=r,a[1]+=s;break;case 2:r=s*(h-2),a[1]+=s,a[2]+=r;break;case 3:r=s*(4-h),a[1]+=r,a[2]+=s;break;case 4:r=s*(h-4),a[2]+=s,a[0]+=r;break;case 5:r=s*(6-h),a[2]+=r,a[0]+=s}for(var c=0;3!=c;++c)a[c]=Math.round(255*a[c]);return a}(i))}}));
- ;/*!node_modules/office-viewer/lib/word/parse/modifyColor.js*/
- amis.define("dbc87cf",(function(e,a,t,r){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var c=e("68b98b9"),l=e("0720cd6"),n=e("b12ecca"),b=e("9f6b1b2");a.modifyColor=function(e,a){var t,r,s=new n.Color(a);if(s.isValid){var o=1;try{for(var g=c.__values(e.children),f=g.next();!f.done;f=g.next()){var u=f.value;switch(u.tagName){case"a:alpha":case"w14:alpha":o=l.getAttrPercent(u,"val");break;case"a:blue":s.b=256*l.getAttrPercent(u,"val");break;case"a:blueMod":s.b=s.b*l.getAttrPercent(u,"val");break;case"a:blueOff":s.b+=s.b*l.getAttrPercent(u,"val");break;case"a:comp":s.comp();break;case"a:green":s.g=256*l.getAttrPercent(u,"val");break;case"a:greenMod":s.g=s.g*l.getAttrPercent(u,"val");break;case"a:greenOff":s.g+=s.g*l.getAttrPercent(u,"val");break;case"a:red":s.r=256*l.getAttrPercent(u,"val");break;case"a:redMod":s.r=s.r*l.getAttrPercent(u,"val");break;case"a:redOff":s.r+=s.r*l.getAttrPercent(u,"val");break;case"a:lum":s.lum(l.getAttrPercent(u,"val"));break;case"a:lumMod":s.lumMod(l.getAttrPercent(u,"val"));break;case"a:lumOff":s.lumOff(l.getAttrPercent(u,"val"));break;case"a:hue":s.hue(b.convertAngle(u.getAttribute("hue"))/360);break;case"a:hueMod":s.hueMod(l.getAttrPercent(u,"val"));break;case"a:hueOff":s.hueOff(l.getAttrPercent(u,"val"));break;case"a:sat":s.sat(l.getAttrPercent(u,"val"));break;case"a:satMod":s.satMod(l.getAttrPercent(u,"val"));break;case"a:satOff":s.satOff(l.getAttrPercent(u,"val"));break;case"a:shade":s.shade(l.getAttrPercent(u,"val"));break;case"a:tint":s.tint(l.getAttrPercent(u,"val"));break;default:console.log("unknown color modify",u)}}}catch(e){t={error:e}}finally{try{f&&!f.done&&(r=g.return)&&r.call(g)}finally{if(t)throw t.error}}return 1!==o?s.toRgba(o):s.toHex()}return a}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseChildColor.js*/
- amis.define("082fcfb",(function(r,e,t,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=r("0720cd6"),l=r("b12ecca"),n=r("7705ccb"),c=r("dbc87cf");e.parseChildColor=function(r,e){var t=e.firstElementChild;if(t){var o=t.tagName;switch(o){case"a:prstClr":var s=a.getVal(t)||"";if(s in n.PresetColorMap)return c.modifyColor(t,n.PresetColorMap[s]);console.warn("parseOutline: Unknown color ",s,t);break;case"a:srgbClr":case"a:scrgbClr":case"w14:srgbClr":var i=a.getVal(t);if(i)return c.modifyColor(t,"#"+i);var f=a.getAttrPercent(t,"r"),C=a.getAttrPercent(t,"g"),g=a.getAttrPercent(t,"b"),u=l.Color.fromRGB(f,C,g);return c.modifyColor(t,u.toHex());case"a:hslClr":var d=a.getAttrPercent(t,"r"),m=a.getAttrPercent(t,"g"),b=a.getAttrPercent(t,"b"),v=a.getVal(t);if(v)return c.modifyColor(t,"#"+v);var p=l.Color.fromHSL(d,m,b);return c.modifyColor(t,p.toHex());case"a:schemeClr":case"w14:schemeClr":var w=a.getVal(t);if(w)return c.modifyColor(t,r(w));console.warn("parseOutline: Unknown schemeClr ",t);break;case"a:sysClr":return a.getVal(t);default:console.warn("parseOutline: Unknown color type ",o,t)}}return""}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseInd.js*/
- amis.define("249fcc6",(function(e,i,t,n){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var r=e("9f6b1b2");i.parseInd=function(e,i){var t=r.parseSize(e,"w:firstLine"),n=r.parseSize(e,"w:hanging"),a=r.parseSize(e,"w:left"),s=r.parseSize(e,"w:start"),f=r.parseSize(e,"w:right"),c=r.parseSize(e,"w:end");t&&(i["text-indent"]=t),n&&(i["text-indent"]="-".concat(n)),(a||s)&&(i["margin-left"]=a||s),(f||c)&&(i["margin-right"]=f||c)}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseSpacing.js*/
- amis.define("5bf5915",(function(e,t,i,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("9f6b1b2");t.parseSpacing=function(e,t,i){var r=a.parseSize(t,"w:before"),n=a.parseSize(t,"w:after"),o=t.getAttribute("w:lineRule");r&&(i["margin-top"]=r),n&&(i["margin-bottom"]=n);var s=t.getAttribute("w:line");if(s){if(e.renderOptions.forceLineHeight)return void(i["line-height"]=e.renderOptions.forceLineHeight);var c=parseInt(s,10),f=e.renderOptions.minLineHeight||1;switch(o){case"auto":var h=Math.max(f,c/240);i["line-height"]="".concat(h.toFixed(2));break;case"atLeast":break;default:var g=Math.max(f,c/20);i["line-height"]="".concat(g,"pt")}}}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseFont.js*/
- amis.define("7a6a35d",(function(e,a,r,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var n=e("68b98b9");a.parseFont=function(e,a,r){var t,s,i=[],c=e.renderOptions.fontMapping;try{for(var o=n.__values(a.attributes),f=o.next();!f.done;f=o.next()){var l=f.value,u=l.name,h=l.value;switch(u){case"w:ascii":case"w:cs":case"w:eastAsia":c&&h in c&&(h=c[h]),-1===h.indexOf(" ")?i.push(h):i.push('"'+h+'"');break;case"w:asciiTheme":case"w:csTheme":case"w:eastAsiaTheme":i.push("var(--docx-theme-font-".concat(h,")"))}}}catch(e){t={error:e}}finally{try{f&&!f.done&&(s=o.return)&&s.call(o)}finally{if(t)throw t.error}}i.length&&(r["font-family"]=Array.from(new Set(i)).join(", "))}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseTrHeight.js*/
- amis.define("5197e5e",(function(e,t,i,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("9f6b1b2");t.parseTrHeight=function(e,t){var i=r.parseSize(e,"w:val"),a=e.getAttribute("w:hRule");"exact"===a?t.height=i:"atLeast"===a&&(t.height=i,t["min-height"]=i)}}));
- ;/*!node_modules/office-viewer/lib/word/parse/jcToTextAlign.js*/
- amis.define("0b58d47",(function(e,t,r,c){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.jcToTextAlign=function(e){switch(e){case"start":case"left":return"left";case"center":return"center";case"end":case"right":return"right";case"both":case"distribute":return"justify"}return e}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parsePr.js*/
- amis.define("b39acee",(function(e,a,r,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var s=e("68b98b9"),o=e("9f6b1b2"),c=e("0720cd6"),n=e("89cf759"),l=e("57a282e"),i=e("082fcfb"),w=e("249fcc6"),d=e("5bf5915"),b=e("7a6a35d"),p=e("5197e5e"),g=e("0b58d47"),k=e("7e31bc8");function h(e,a,r){var t=c.getVal(a);if(null!=t){switch(t){case"dash":case"dashDotDotHeavy":case"dashDotHeavy":case"dashedHeavy":case"dashLong":case"dashLongHeavy":case"dotDash":case"dotDotDash":r["text-decoration-style"]="dashed";break;case"dotted":case"dottedHeavy":r["text-decoration-style"]="dotted";break;case"double":r["text-decoration-style"]="double";break;case"single":case"thick":case"words":r["text-decoration"]="underline";break;case"wave":case"wavyDouble":case"wavyHeavy":r["text-decoration-style"]="wavy";break;case"none":r["text-decoration"]="none"}var s=l.parseColorAttr(e,a);s&&(r["text-decoration-color"]=s)}}function u(e,a){var r,t;try{for(var c=s.__values(e.attributes),n=c.next();!n.done;n=c.next()){var l=n.value,i=l.name,w=l.value;switch(i){case"w:dropCap":"drop"===w&&(a.float="left");break;case"w:h":"object"!=typeof w||Array.isArray(w)||(a.height=o.parseSize(w,"w:h"));break;case"w:w":"object"!=typeof w||Array.isArray(w)||(a.width=o.parseSize(w,"w:w"));break;case"w:hAnchor":case"w:vAnchor":case"w:lines":break;case"w:wrap":"around"!==w&&console.warn("parseFrame: w:wrap not support "+w);break;default:console.warn("parseFrame: unknown attribute "+i,l)}}}catch(e){r={error:e}}finally{try{n&&!n.done&&(t=c.return)&&t.call(c)}finally{if(r)throw r.error}}}function x(e,a){switch(e){case"dot":case"underDot":a["text-emphasis"]="filled",a["text-emphasis-position"]="under right";break;case"comma":a["text-emphasis"]="filled sesame";break;case"circle":a["text-emphasis"]="open"}}a.parsePr=function(e,a,r){var t,f,v={};try{for(var m=s.__values(a.children),y=m.next();!y.done;y=m.next()){var A=y.value,S=A.tagName;switch(S){case"w:sz":case"w:szCs":v["font-size"]=o.parseSize(A,"w:val",o.LengthUsage.FontSize);break;case"w:jc":v["text-align"]=g.jcToTextAlign(c.getVal(A));break;case"w:framePr":u(A,v);break;case"w:pBdr":n.parseBorders(e,A,v);break;case"w:ind":w.parseInd(A,v);break;case"w:color":v.color=l.parseColor(e,A);break;case"w:shd":"background-color"in v||(v["background-color"]=l.parseShdColor(e,A));break;case"w:spacing":d.parseSpacing(e,A,v);break;case"w:highlight":v["background-color"]=l.parseColorAttr(e,A,"w:val","yellow");break;case"w:vertAlign":var C=c.getVal(A);"superscript"===C?v["vertical-align"]="super":"subscript"===C&&(v["vertical-align"]="sub");break;case"w:position":v["vertical-align"]=o.parseSize(A,"w:val",o.LengthUsage.FontSize);break;case"w:trHeight":p.parseTrHeight(A,v);break;case"w:strike":case"w:dstrike":v["text-decoration"]=c.getValBoolean(A)?"line-through":"none";break;case"w:b":v["font-weight"]=c.getValBoolean(A)?"bold":"normal";break;case"w:adjustRightInd":case"w:bCs":case"w:iCs":case"w:kern":case"w:pStyle":case"w:lang":case"w:noProof":case"w:keepLines":case"w:keepNext":case"w:widowControl":case"w:pageBreakBefore":case"w:outlineLvl":case"w:contextualSpacing":case"w:numPr":case"w:rStyle":case"w:tabs":case"w:snapToGrid":case"w:topLinePunct":case"w:cnfStyle":case"w:autoSpaceDE":case"w:autoSpaceDN":case"w:kinsoku":case"w:overflowPunct":case"w14:reflection":case"w14:textFill":case"w14:ligatures":break;case"w:i":v["font-style"]=c.getValBoolean(A)?"italic":"normal";break;case"w:caps":v["text-transform"]=c.getValBoolean(A)?"uppercase":"normal";break;case"w:smallCaps":v["text-transform"]=c.getValBoolean(A)?"lowercase":"normal";break;case"w:u":h(e,A,v);break;case"w:rFonts":b.parseFont(e,A,v);break;case"w:tblCellSpacing":v["border-spacing"]=o.parseSize(A,"w:w"),v["border-collapse"]="separate";break;case"w:bdr":v.border=n.parseBorder(e,A);break;case"w:vanish":c.getValBoolean(A)&&(v.display="none");break;case"w:rPr":var B=A.getElementsByTagName("w14:reflection").item(0);if(B){var V=o.parseSize(B,"w4:dist",o.LengthUsage.Emu)||"0px";v["-webkit-box-reflect"]="below ".concat(V," linear-gradient(transparent, white)")}break;case"w:webHidden":v.display="none";break;case"w:wordWrap":c.getValBoolean(A)&&(v["word-break"]="break-all");break;case"w:textAlignment":var z=c.getVal(A);"center"===z?v["vertical-align"]="middle":"auto"!==z&&(v["vertical-align"]=z);break;case"w:textDirection":k.parseTextDirection(A,v);break;case"w:bidi":c.getValBoolean(A,!0)&&console.warn("w:bidi is not supported.");break;case"w:em":x(c.getVal(A),v);break;case"w:w":var D=c.getValNumber(A);v.transform="scaleX(".concat(D/100,")"),v.display="inline-block";break;case"w:outline":v["text-shadow"]="-1px -1px 0 #AAA, 1px -1px 0 #AAA, -1px 1px 0 #AAA, 1px 1px 0 #AAA";break;case"w:shadown":case"w:imprint":c.getValBoolean(A,!0)&&(v["text-shadow"]="1px 1px 2px rgba(0, 0, 0, 0.6)");break;case"w14:shadow":var L=o.parseSize(A,"w14:blurRad",o.LengthUsage.Emu)||"4px",H="rgba(0, 0, 0, 0.6)",P=i.parseChildColor((function(a){return e.getThemeColor(a)}),A);P&&(H=P),v["text-shadow"]="1px 1px ".concat(L," ").concat(H);break;case"w14:textOutline":var T=o.parseSize(A,"w14:w",o.LengthUsage.Emu)||"1px";v["-webkit-text-stroke-width"]=T;var F="white",N=A.getElementsByTagName("w14:solidFill");N.length>0&&(F=i.parseChildColor((function(a){return e.getThemeColor(a)}),N.item(0))||"white"),v["-webkit-text-stroke-color"]=F;break;default:console.warn("parsePr Unknown tagName",S,A)}}}catch(e){t={error:e}}finally{try{y&&!y.done&&(f=m.return)&&f.call(m)}finally{if(t)throw t.error}}return v}}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Bookmark.js*/
- amis.define("84c394d",(function(n,e,t,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function n(n){this.name=n}return n.fromXML=function(e,t){var o=t.getAttribute("w:name");return o?new n(o):(console.warn("Bookmark without name"),new n("unknown"))},n}();e.BookmarkStart=r}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Break.js*/
- amis.define("b075e78",(function(e,n,t,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var i=function(){function e(){this.type="textWrapping"}return e.fromXML=function(n,t){return new e},e}();n.Break=i}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/Blip.js*/
- amis.define("c37f34f",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var u=function(){function e(){}return e.fromXML=function(t,n){var r=new e,u=n.getAttribute("r:embed")||"",i=t.getDocumentRels(u);return i&&(r.embled=i,r.src=t.loadImage(r.embled)),r},e}();t.Blip=u}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/BlipFill.js*/
- amis.define("6f26bbf",(function(e,i,n,t){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var f=e("c37f34f"),l=function(){function e(){}return e.fromXML=function(i,n){var t=new e,l=null==n?void 0:n.getElementsByTagName("a:blip").item(0);return l&&(t.blip=f.Blip.fromXML(i,l)),t},e}();i.BlipFill=l}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/Transform.js*/
- amis.define("7da2475",(function(e,a,r,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var n=e("68b98b9"),c=e("9f6b1b2"),s=function(){function e(){}return e.fromXML=function(a,r){var t,s,f=new e;try{for(var o=n.__values(r.children),i=o.next();!i.done;i=o.next()){var u=i.value,g=u.tagName;switch(g){case"a:off":f.off={x:c.parseSize(u,"x",c.LengthUsage.Emu),y:c.parseSize(u,"y",c.LengthUsage.Emu)};break;case"a:ext":f.ext={cx:c.parseSize(u,"cx",c.LengthUsage.Emu),cy:c.parseSize(u,"cy",c.LengthUsage.Emu)};break;case"a:chOff":f.chOff={x:c.parseSize(u,"x",c.LengthUsage.Emu),y:c.parseSize(u,"y",c.LengthUsage.Emu)};break;case"a:chExt":f.chExt={cx:c.parseSize(u,"cx",c.LengthUsage.Emu),cy:c.parseSize(u,"cy",c.LengthUsage.Emu)};break;default:console.warn("Transform: Unknown tag ",g,u)}}}catch(e){t={error:e}}finally{try{i&&!i.done&&(s=o.return)&&s.call(o)}finally{if(t)throw t.error}}var h=r.getAttribute("rot");return h&&(f.rot=c.convertAngle(h)),f},e}();a.Transform=s}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseShape.js*/
- amis.define("797c6aa",(function(e,t,a,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),s=e("0720cd6");function c(e){var t,a,r=[];try{for(var s=n.__values(e.children),c=s.next();!c.done;c=s.next()){var o=c.value,l=o.tagName;if("a:pt"===l||"pt"===l){var i=o.getAttribute("x"),u=o.getAttribute("y");i&&u&&r.push({x:i,y:u})}else console.warn("unknown pt",l,o)}}catch(e){t={error:e}}finally{try{c&&!c.done&&(a=s.return)&&a.call(s)}finally{if(t)throw t.error}}return r}function o(e){var t,a,r=[];try{for(var o=n.__values(e.children),l=o.next();!l.done;l=o.next()){var i=l.value,u=i.tagName;switch(u){case"a:moveTo":case"moveTo":var v=c(i);if(v.length){var h={type:"moveTo",pt:v[0]};r.push(h)}break;case"a:lnTo":case"lnTo":var f=c(i);if(f.length){var p={type:"lnTo",pt:f[0]};r.push(p)}break;case"a:quadBezTo":case"quadBezTo":var g=c(i);if(g.length){var b={type:"quadBezTo",pts:g};r.push(b)}break;case"a:cubicBezTo":case"cubicBezTo":var d=c(i);if(d.length){var y={type:"cubicBezTo",pts:d};r.push(y)}break;case"a:arcTo":case"arcTo":var A=i.getAttribute("wR"),w=i.getAttribute("hR"),k=i.getAttribute("stAng"),T=i.getAttribute("swAng");if(A&&w&&k&&T){var x={type:"arcTo",wR:A,hR:w,stAng:k,swAng:T};r.push(x)}break;case"a:close":case"close":r.push({type:"close"});break;default:console.warn("parsePath: unknown tag",u,i)}}}catch(e){t={error:e}}finally{try{l&&!l.done&&(a=o.return)&&a.call(o)}finally{if(t)throw t.error}}var _={defines:r},m=e.getAttribute("fill");m&&(_.fill=m),_.extrusionOk=s.getAttrBoolean(e,"extrusionOk",!1),_.stroke=s.getAttrBoolean(e,"stroke",!0);var L=e.getAttribute("w");L&&(_.w=parseInt(L,10));var B=e.getAttribute("h");return B&&(_.h=parseInt(B,10)),_}function l(e){var t,a,r=[];try{for(var s=n.__values(e.children),c=s.next();!c.done;c=s.next()){var l=c.value;switch(l.tagName){case"a:path":case"path":r.push(o(l))}}}catch(e){t={error:e}}finally{try{c&&!c.done&&(a=s.return)&&a.call(s)}finally{if(t)throw t.error}}return r}function i(e){var t,a,r=[];try{for(var s=n.__values(e.children),c=s.next();!c.done;c=s.next()){var o=c.value;switch(o.tagName){case"a:gd":case"gd":var l=o.getAttribute("name"),i=o.getAttribute("fmla");if(l&&i){var u={n:l,f:i};r.push(u)}}}}catch(e){t={error:e}}finally{try{c&&!c.done&&(a=s.return)&&a.call(s)}finally{if(t)throw t.error}}return r}t.parsePath=o,t.parsePathLst=l,t.parsePts=c,t.parseShape=function(e){var t,a,r={};try{for(var s=n.__values(e.children),c=s.next();!c.done;c=s.next()){var o=c.value;switch(o.tagName){case"a:avLst":case"avLst":r.avLst=i(o);break;case"a:gdLst":case"gdLst":r.gdLst=i(o);break;case"a:rect":case"react":var u={b:o.getAttribute("b")||"",l:o.getAttribute("l")||"",r:o.getAttribute("r")||"",t:o.getAttribute("t")||""};r.rect=u;break;case"a:pathLst":case"pathLst":r.pathLst=l(o)}}}catch(e){t={error:e}}finally{try{c&&!c.done&&(a=s.return)&&a.call(s)}finally{if(t)throw t.error}}return r},t.parseShapeGuide=i}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/Geom.js*/
- amis.define("ff378d9",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),i=e("797c6aa"),f=function(){function e(){}return e.fromXML=function(r,t){var a,f,o=new e;o.prst=t.getAttribute("prst");try{for(var u=n.__values(t.children),c=u.next();!c.done;c=u.next()){var l=c.value;if("a:avLst"===l.tagName)o.avLst=i.parseShapeGuide(l)}}catch(e){a={error:e}}finally{try{c&&!c.done&&(f=u.return)&&f.call(u)}finally{if(a)throw a.error}}return o},e}();r.Geom=f}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/CustomGeom.js*/
- amis.define("a8bd6d1",(function(e,n,r,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=e("797c6aa"),u=function(){function e(){}return e.fromXML=function(n,r){var t=new e;return t.shape=a.parseShape(r),t},e}();n.CustomGeom=u}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/ShapeProperties.js*/
- amis.define("1cd9a76",(function(e,a,r,o){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var t=e("68b98b9"),s=e("7da2475"),n=e("9f6b1b2"),l=e("ff378d9"),c=e("082fcfb"),i=e("a8bd6d1");function u(e){var a="solid";switch(e){case"dash":case"dashDot":case"lgDash":case"lgDashDot":case"lgDashDotDot":case"sysDash":case"sysDashDot":case"sysDashDotDot":a="dashed";break;case"dot":case"sysDot":a="dotted"}return a}function f(e,a){var r,o,s={width:n.parseSize(a,"w",n.LengthUsage.Emu),style:"solid"};try{for(var l=t.__values(a.children),i=l.next();!i.done;i=l.next()){var f=i.value,d=f.tagName;switch(d){case"a:solidFill":s.color=c.parseChildColor(e,f);break;case"a:noFill":s.style="none";break;case"a:round":s.radius="8%";break;case"a:prstDash":s.style=u(f.getAttribute("val"));break;default:console.warn("parseOutline: Unknown tag ",d,f)}}}catch(e){r={error:e}}finally{try{i&&!i.done&&(o=l.return)&&o.call(l)}finally{if(r)throw r.error}}return s}var d=function(){function e(){}return e.fromXML=function(a,r){var o,n,u=new e;if(r)try{for(var d=t.__values(r.children),h=d.next();!h.done;h=d.next()){var m=h.value,b=m.tagName;switch(b){case"a:xfrm":u.xfrm=s.Transform.fromXML(a,m);break;case"a:prstGeom":u.geom=l.Geom.fromXML(a,m);break;case"a:custGeom":u.custGeom=i.CustomGeom.fromXML(a,m);break;case"a:ln":u.outline=f((function(e){return a.getThemeColor(e)}),m);break;case"a:noFill":u.noFill=!0;break;case"a:solidFill":u.fillColor=c.parseChildColor((function(e){return a.getThemeColor(e)}),m);break;default:console.warn("ShapePr: Unknown tag ",b,m)}}}catch(e){o={error:e}}finally{try{h&&!h.done&&(n=d.return)&&n.call(d)}finally{if(o)throw o.error}}return u},e}();a.ShapePr=d,a.parseOutline=f}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/Pic.js*/
- amis.define("379c540",(function(e,t,i,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var l=e("0720cd6"),n=e("6f26bbf"),a=e("1cd9a76"),c=function(){function e(){}return e.fromXML=function(t,i){var r=new e,c=null==i?void 0:i.getElementsByTagName("pic:cNvPr").item(0);if(c&&(r.alt=c.getAttribute("descr")||"",r.altVar=c.getAttribute("descrVar")||"",l.getAttrBoolean(c,"hidden",!1)))return r;return r.blipFill=n.BlipFill.fromXML(t,null==i?void 0:i.getElementsByTagName("pic:blipFill").item(0)),r.spPr=a.ShapePr.fromXML(t,null==i?void 0:i.getElementsByTagName("pic:spPr").item(0)),r},e}();t.Pic=c}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Table.js*/
- amis.define("c067fd2",(function(e,t,i,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){this.properties={},this.tblGrid=[],this.trs=[]};t.Table=r}));
- ;/*!node_modules/office-viewer/lib/openxml/word/table/Tr.js*/
- amis.define("856a96f",(function(e,t,i,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){this.properties={},this.tcs=[]};t.Tr=r}));
- ;/*!node_modules/office-viewer/lib/openxml/word/table/Tc.js*/
- amis.define("da5b69b",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(){this.properties={},this.children=[]}return e.prototype.add=function(e){e&&this.children.push(e)},e}();t.Tc=r}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseTc.js*/
- amis.define("0c48073",(function(e,r,a,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),i=e("da5b69b"),o=e("0d4462f"),p=e("208f98d"),s=e("f81d3e4");r.parseTc=function(e,r,a,n){var d,l,c=new i.Tc;try{for(var f=t.__values(r.children),u=f.next();!u.done;u=f.next()){var v=u.value;switch(v.tagName){case"w:tcPr":c.properties=o.parseTcPr(e,v);break;case"w:p":c.add(p.Paragraph.fromXML(e,v));break;case"w:tbl":c.add(s.parseTable(e,v))}}}catch(e){d={error:e}}finally{try{u&&!u.done&&(l=f.return)&&l.call(f)}finally{if(d)throw d.error}}var w=n[a.index];if(c.properties.vMerge){if("restart"===c.properties.vMerge)c.properties.rowSpan=1,n[a.index]=c;else if(w){if(w.properties&&w.properties.rowSpan){w.properties.rowSpan=w.properties.rowSpan+1;var b=c.properties.gridSpan||1;return a.index+=b,null}console.warn("Tc.fromXML: continue but not found lastCol",a.index,c,n)}}else delete n[a.index];var x=c.properties.gridSpan||1;return a.index+=x,c}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseTablePr.js*/
- amis.define("469bde5",(function(e,a,t,r){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var l=e("68b98b9"),o=e("0720cd6"),n=e("89cf759"),s=e("308431e"),b=e("d0797c2"),c=e("57a282e"),i=e("9f6b1b2"),d=e("0d4462f"),w=e("4728b78");function f(e,a){switch(o.getVal(e)){case"left":case"start":break;case"right":case"end":a.float="right"}}function u(e,a){var t=b.parseTblWidth(e);t&&(a["margin-left"]=t)}function p(e,a){var t=b.parseTblWidth(e);t&&(a.width=t)}function g(e){var a={},t=o.getValHex(e);return(o.getAttrBoolean(e,"firstRow",!1)||32&t)&&(a.firstRow=!0),(o.getAttrBoolean(e,"lastRow",!1)||64&t)&&(a.lastRow=!0),(o.getAttrBoolean(e,"firstColumn",!1)||128&t)&&(a.firstColumn=!0),(o.getAttrBoolean(e,"lastColumn",!1)||256&t)&&(a.lastColumn=!0),o.getAttrBoolean(e,"noHBand",!1)||512&t?a.noHBand=!0:a.noHBand=!1,o.getAttrBoolean(e,"noVBand",!1)||1024&t?a.noVBand=!0:a.noVBand=!1,a}function B(e,a,t){if(void 0===e.renderOptions.padding){var r=i.parseSize(a,"w:tblpX"),l=i.parseSize(a,"w:tblpY");t.top=l,t.left=r}}function k(e,a){"fixed"===e.getAttribute("w:type")&&(a["table-layout"]="fixed")}a.parseTablePr=function(e,a){var t,r,b={},i={},S={};b.tblLook={},b.cssStyle=i,b.tcCSSStyle=S;try{for(var y=l.__values(a.children),C=y.next();!C.done;C=y.next()){var h=C.value,v=h.tagName;switch(v){case"w:tblBorders":n.parseBorders(e,h,i),b.insideBorder=s.parseInsideBorders(e,h);break;case"w:tcBorders":n.parseBorders(e,h,i);break;case"w:tblInd":u(h,i);break;case"w:jc":f(h,i);break;case"w:tblCellMar":case"w:tcMar":w.parseCellMargin(h,S);break;case"w:tblStyle":b.pStyle=o.getVal(h);break;case"w:tblW":p(h,i);break;case"w:shd":i["background-color"]=c.parseShdColor(e,h);break;case"w:tblCaption":b.tblCaption=o.getVal(h);break;case"w:tblCellSpacing":d.parseTblCellSpacing(h,i);break;case"w:tblLayout":k(h,i);break;case"w:tblLook":b.tblLook=g(h);break;case"w:tblStyleRowBandSize":b.rowBandSize=o.getValNumber(h);break;case"w:tblStyleColBandSize":b.colBandSize=o.getValNumber(h);break;case"w:tblpPr":B(e,h,i);break;default:console.warn("parseTableProperties unknown tag",v,h)}}}catch(e){t={error:e}}finally{try{C&&!C.done&&(r=y.return)&&r.call(y)}finally{if(t)throw t.error}}return b}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseTrPr.js*/
- amis.define("efef3de",(function(e,a,r,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var l=e("68b98b9"),n=e("0720cd6"),c=e("0b58d47"),s=e("469bde5"),i=e("0d4462f"),o=e("5197e5e");a.parseTrPr=function(e,a){var r,t,b={},d={};try{for(var f=l.__values(a.children),g=f.next();!g.done;g=f.next()){var w=g.value,u=w.tagName;switch(u){case"w:hidden":n.getValBoolean(w)&&(b.display="none");break;case"w:trHeight":o.parseTrHeight(w,b);break;case"w:jc":b["text-align"]=c.jcToTextAlign(n.getVal(w));break;case"w:cantSplit":case"w:cnfStyle":break;case"w:tblPrEx":var p=s.parseTablePr(e,w);Object.assign(b,p.cssStyle);break;case"w:tblCellSpacing":i.parseTblCellSpacing(w,d);break;default:console.warn("Tr: Unknown tag ",u,w)}}}catch(e){r={error:e}}finally{try{g&&!g.done&&(t=f.return)&&t.call(f)}finally{if(r)throw r.error}}return{cssStyle:b}}}));
- ;/*!node_modules/office-viewer/lib/word/parse/mergeSdt.js*/
- amis.define("39af250",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l=e("68b98b9");function n(e){var r,a,t=e.slice(),c=0,i=!1;try{for(var s=l.__values(e),d=s.next();!d.done;d=s.next()){var o=d.value;switch(o.tagName){case"w:smartTag":case"w:customXml":var u=[].slice.call(o.children);t.splice.apply(t,l.__spreadArray([c,1],l.__read(u),!1)),c+=u.length;continue;case"w:sdt":var m=o.getElementsByTagName("w:sdtContent").item(0);if(o.getElementsByTagName("w:sdt").item(0)&&(i=!0),m){var _=[].slice.call(m.children);t.splice.apply(t,l.__spreadArray([c,1],l.__read(_),!1)),c+=_.length;continue}}c+=1}}catch(e){r={error:e}}finally{try{d&&!d.done&&(a=s.return)&&a.call(s)}finally{if(r)throw r.error}}return i?n(t):t}r.mergeSdt=function(e){return n([].slice.call(e.children))}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseTr.js*/
- amis.define("321ab7b",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var s=e("68b98b9"),n=e("856a96f"),c=e("0c48073"),l=e("469bde5"),o=e("efef3de"),i=e("39af250");r.parseTr=function(e,r,a){var t,f,b=new n.Tr,u={index:0};try{for(var d=s.__values(i.mergeSdt(r)),p=d.next();!p.done;p=d.next()){var v=p.value,w=v.tagName;switch(w){case"w:tc":var y=c.parseTc(e,v,u,a);y&&b.tcs.push(y);break;case"w:trPr":b.properties=o.parseTrPr(e,v);break;case"w:tblPrEx":var T=l.parseTablePr(e,v);Object.assign(b.properties.cssStyle||{},T.cssStyle);break;default:console.warn("Tr: Unknown tag ",w,v)}}}catch(e){t={error:e}}finally{try{p&&!p.done&&(f=d.return)&&f.call(d)}finally{if(t)throw t.error}}return b}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseTable.js*/
- amis.define("f81d3e4",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),l=e("c067fd2"),o=e("321ab7b"),s=e("469bde5"),f=e("9f6b1b2"),i=e("39af250");function b(e){var r,a,t=[],l=e.getElementsByTagName("w:gridCol");try{for(var o=n.__values(l),s=o.next();!s.done;s=o.next()){var i=s.value,b=f.parseSize(i,"w:w");t.push({w:b})}}catch(e){r={error:e}}finally{try{s&&!s.done&&(a=o.return)&&a.call(o)}finally{if(r)throw r.error}}return t}r.parseTable=function(e,r){var a,t,f=new l.Table,u={};try{for(var c=n.__values(i.mergeSdt(r)),d=c.next();!d.done;d=c.next()){var w=d.value,v=w.tagName;switch(v){case"w:tblPr":f.properties=s.parseTablePr(e,w);break;case"w:tr":f.trs.push(o.parseTr(e,w,u));break;case"w:tblGrid":f.tblGrid=b(w);break;default:console.warn("Table.fromXML unknown tag",v,w)}}}catch(e){a={error:e}}finally{try{d&&!d.done&&(t=c.return)&&t.call(c)}finally{if(a)throw a.error}}return f}}));
- ;/*!node_modules/office-viewer/lib/openxml/word/wps/WPSStyle.js*/
- amis.define("f5885df",(function(e,r,o,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),l=e("082fcfb"),a=function(){function e(){}return e.fromXML=function(r,o){var n,a,f=new e;try{for(var i=t.__values(o.children),c=i.next();!c.done;c=i.next()){var u=c.value;switch(u.tagName){case"a:fillRef":f.fillColor=l.parseChildColor((function(e){return r.getThemeColor(e)}),u);break;case"a:lnRef":f.lineColor=l.parseChildColor((function(e){return r.getThemeColor(e)}),u);break;case"a:fontRef":f.fontColor=l.parseChildColor((function(e){return r.getThemeColor(e)}),u)}}}catch(e){n={error:e}}finally{try{c&&!c.done&&(a=i.return)&&a.call(i)}finally{if(n)throw n.error}}return f},e}();r.WPSStyle=a}));
- ;/*!node_modules/office-viewer/lib/openxml/word/wps/WPS.js*/
- amis.define("af2045f",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),c=e("208f98d"),o=e("1cd9a76"),l=e("f81d3e4"),s=e("9f6b1b2"),i=e("f5885df");function f(e,r){var a,t;try{for(var c=n.__values(e.attributes),o=c.next();!o.done;o=c.next()){var l=o.value,i=l.name,f=l.value;switch(i){case"numCol":"1"!==f&&(r["column-count"]=f);break;case"vert":switch(f){case"vert":r["writing-mode"]="vertical-rl",r["text-orientation"]="sideways";break;case"vert270":case"eaVert":r["writing-mode"]="vertical-rl",r["text-orientation"]="mixed"}break;case"anchor":switch(f){case"b":r["vertical-align"]="bottom";break;case"t":r["vertical-align"]="top";break;case"ctr":r["vertical-align"]="middle"}break;case"rot":var v=s.convertAngle(f);v&&(r.transform="rotate(".concat(v,"deg)"))}}}catch(e){a={error:e}}finally{try{o&&!o.done&&(t=c.return)&&t.call(c)}finally{if(a)throw a.error}}}var v=function(){function e(){this.style={}}return e.fromXML=function(r,a){var t,s,v,b,u=new e;u.txbxContent=[];try{for(var d=n.__values(a.children),w=d.next();!w.done;w=d.next()){var h=w.value,y=h.tagName;switch(y){case"wps:cNvSpPr":case"wps:cNvPr":break;case"wps:spPr":u.spPr=o.ShapePr.fromXML(r,h);break;case"wps:txbx":var p=h.firstElementChild;if(p)try{for(var x=(v=void 0,n.__values(p.children)),m=x.next();!m.done;m=x.next()){var k=m.value;switch(k.tagName){case"w:p":u.txbxContent.push(c.Paragraph.fromXML(r,k));break;case"w:tbl":u.txbxContent.push(l.parseTable(r,k))}}}catch(e){v={error:e}}finally{try{m&&!m.done&&(b=x.return)&&b.call(x)}finally{if(v)throw v.error}}else console.warn("unknown wps:txbx",h);break;case"wps:style":u.wpsStyle=i.WPSStyle.fromXML(r,h);break;case"wps:bodyPr":f(h,u.style);break;default:console.warn("WPS: Unknown tag ",y,h)}}}catch(e){t={error:e}}finally{try{w&&!w.done&&(s=d.return)&&s.call(d)}finally{if(t)throw t.error}}return u},e}();r.WPS=v}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/diagram/Diagram.js*/
- amis.define("a936ca0",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=function(){function e(){}return e.fromXML=function(r,t){var n=new e,o=t.getAttribute("r:dm");if(o){var i=r.getDocumentRels(o);if(i){var a=r.loadWordRelXML(i);console.log(a)}}return n},e}();r.Diagram=o}));
- ;/*!node_modules/office-viewer/lib/openxml/word/wps/WPG.js*/
- amis.define("378d77c",(function(r,e,a,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var c=r("68b98b9"),p=r("af2045f"),t=r("1cd9a76"),o=r("379c540"),f=function(){function r(){}return r.fromXML=function(e,a){var n,f,s=new r,i=[];s.wps=i,s.wpg=[];try{for(var u=c.__values(a.children),l=u.next();!l.done;l=u.next()){var w=l.value,d=w.tagName;switch(d){case"wpg:cNvGrpSpPr":break;case"wpg:grpSpPr":s.spPr=t.ShapePr.fromXML(e,w);break;case"wps:wsp":i.push(p.WPS.fromXML(e,w));break;case"pic:pic":s.pic=o.Pic.fromXML(e,w);break;case"wpg:grpSp":s.wpg.push(r.fromXML(e,w));break;default:console.warn("WPS: Unknown tag ",d,w)}}}catch(r){n={error:r}}finally{try{l&&!l.done&&(f=u.return)&&f.call(u)}finally{if(n)throw n.error}}return s},r}();e.WPG=f}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/Drawing.js*/
- amis.define("6a1f992",(function(e,t,i,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,r=e("68b98b9"),o=e("9f6b1b2"),s=e("0720cd6"),p=e("379c540"),c=e("af2045f"),l=e("a936ca0"),g=e("378d77c");t.Position=void 0,(n=t.Position||(t.Position={})).inline="inline",n.anchor="anchor";var u=function(){function e(){this.position=t.Position.inline}return e.fromXML=function(i,a){var n,u,f,m=new e,h={};m.containerStyle=h;var d=a.firstElementChild;if(d){if("wp:anchor"===d.tagName){m.position=t.Position.anchor,m.anchor=function(e){return{simplePos:s.getAttrBoolean(e,"simplePos",!1),hidden:s.getAttrBoolean(e,"hidden",!1),behindDoc:s.getAttrBoolean(e,"behindDoc",!1)}}(d);var w=s.getAttrNumber(d,"relativeHeight",1);h["z-index"]=w}try{for(var v=r.__values(d.children),b=v.next();!b.done;b=v.next()){var L=b.value,P=L.tagName;switch(P){case"wp:simplePos":(null===(f=m.anchor)||void 0===f?void 0:f.simplePos)&&(h.position="absolute",h.x=o.parseSize(L,"x",o.LengthUsage.Emu),h.y=o.parseSize(L,"y",o.LengthUsage.Emu));break;case"wp:positionH":var k=L.getAttribute("relativeFrom");if("column"===k||"page"===k||"margin"===k){if(y=L.firstElementChild){var E=y.tagName;h.position="absolute","wp:posOffset"===E?h.left=o.convertLength(y.innerHTML,o.LengthUsage.Emu):(h.left="0",console.warn("unsupport positionType",E))}}else console.warn("unsupport positionH relativeFrom",k);break;case"wp:positionV":var y,x=L.getAttribute("relativeFrom");if("paragraph"===x||"page"===x){if(m.relativeFromV=x,y=L.firstElementChild){E=y.tagName;h.position="absolute","wp:posOffset"===E?h.top=o.convertLength(y.innerHTML,o.LengthUsage.Emu):(h.top="0",console.warn("unsupport positionType",E))}}else console.warn("unsupport positionV relativeFrom",x);break;case"wp:docPr":m.id=L.getAttribute("id")||void 0,m.name=L.getAttribute("name")||void 0;break;case"wp:cNvGraphicFramePr":case"wp:effectExtent":case"wp:wrapNone":case"wp14:sizeRelH":case"wp14:sizeRelV":break;case"a:graphic":var A=L.firstElementChild,M=null==A?void 0:A.firstElementChild;if(M)switch(M.tagName){case"pic:pic":m.pic=p.Pic.fromXML(i,M);break;case"wps:wsp":m.wps=c.WPS.fromXML(i,M);break;case"wpg:wgp":m.wpg=g.WPG.fromXML(i,M);break;case"dgm:relIds":m.diagram=l.Diagram.fromXML(i,M);break;default:console.warn("unknown graphicData child tag",M)}break;case"wp:extent":h.width=o.parseSize(L,"cx",o.LengthUsage.Emu),h.height=o.parseSize(L,"cy",o.LengthUsage.Emu);break;default:console.warn("drawing unknown tag",P)}}}catch(e){n={error:e}}finally{try{b&&!b.done&&(u=v.return)&&u.call(v)}finally{if(n)throw n.error}}}return m},e}();t.Drawing=u}));
- ;/*!node_modules/office-viewer/lib/openxml/word/InstrText.js*/
- amis.define("a93b8e7",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=function(e){this.text=e};t.InstrText=s}));
- ;/*!node_modules/office-viewer/lib/openxml/word/NoBreakHyphen.js*/
- amis.define("a749889",(function(e,n,i,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=function(){};n.NoBreakHyphen=a}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Pict.js*/
- amis.define("1646d31",(function(e,t,n,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(){}return e.fromXML=function(t,n){var i=new e,r=n.getElementsByTagName("v:imagedata").item(0);if(r){var a=r.getAttribute("r:id")||"",u=t.getDocumentRels(a);u&&(i.src=t.loadImage(u))}return i},e}();t.Pict=r}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Ruby.js*/
- amis.define("325a613",(function(r,e,n,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=r("68b98b9"),o=r("ede7588"),u=function(){function r(){}return r.fromXML=function(e,n){var a,u,l=new r;l.children=[];try{for(var c=t.__values(n.children),i=c.next();!i.done;i=c.next()){var f=i.value,s=f.tagName;if("w:r"===s){var y=o.Run.fromXML(e,f);y&&l.children.push(y)}else console.warn("parse Ruby: Unknown key",s,f)}}catch(r){a={error:r}}finally{try{i&&!i.done&&(u=c.return)&&u.call(c)}finally{if(a)throw a.error}}return l},r}();!function(r){function e(){return null!==r&&r.apply(this,arguments)||this}t.__extends(e,r)}(u);var l=function(){function r(){}return r.fromXML=function(e,n){var a,o,l=new r;try{for(var c=t.__values(n.children),i=c.next();!i.done;i=c.next()){var f=i.value,s=f.tagName;switch(s){case"w:rubyPr":break;case"w:rt":l.rt=u.fromXML(e,f);break;case"w:rubyBase":l.rubyBase=u.fromXML(e,f);break;default:console.warn("parse Ruby: Unknown key",s,f)}}}catch(r){a={error:r}}finally{try{i&&!i.done&&(o=c.return)&&o.call(c)}finally{if(a)throw a.error}}return l},r}();e.Ruby=l}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Separator.js*/
- amis.define("f0c012d",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){};t.Separator=r}));
- ;/*!node_modules/office-viewer/lib/openxml/word/SoftHyphen.js*/
- amis.define("45184db",(function(e,n,t,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var f=function(){};n.SoftHyphen=f}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Sym.js*/
- amis.define("d77aa24",(function(t,e,n,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var u=function(){function t(){}return t.parseXML=function(e){var n=new t;return n.font=e.getAttribute("w:font")||"",n.char=e.getAttribute("w:char")||"",n},t}();e.Sym=u}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Tab.js*/
- amis.define("4783810",(function(e,t,r,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("0720cd6"),u=e("9f6b1b2"),a=function(){function e(){}return e.fromXML=function(t,r){var n=new e;return n.pos=u.parseSize(r,"w:pos"),n.type=i.getVal(r),n.leader=r.getAttribute("w:leader"),n},e}();t.Tab=a}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Run.js*/
- amis.define("ede7588",(function(e,a,r,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var n=e("68b98b9"),d=e("0720cd6"),i=e("b39acee"),s=e("b075e78"),c=e("6a1f992"),o=e("a93b8e7"),l=e("a749889"),w=e("1646d31"),h=e("325a613"),b=e("f0c012d"),f=e("45184db"),p=e("d77aa24"),u=e("4783810"),k=function(e){this.preserveSpace=!1,this.text=String(e)},y=function(){function e(){this.properties={},this.children=[]}return e.prototype.addChild=function(e){e&&this.children.push(e)},e.parseRunPr=function(e,a){var r,t=i.parsePr(e,a),n=a.getElementsByTagName("w:rStyle").item(0);return n&&(r=d.getVal(n)),{cssStyle:t,rStyle:r}},e.fromXML=function(a,r){var t,d,i=new e;try{for(var y=n.__values(r.children),C=y.next();!C.done;C=y.next()){var m=C.value,g=m.tagName;switch(g){case"w:t":var v=m.textContent||"",M=new k(v);i.addChild(M);break;case"w:rPr":i.properties=e.parseRunPr(a,m);break;case"w:br":case"w:cr":i.addChild(s.Break.fromXML(a,m));break;case"w:drawing":i.addChild(c.Drawing.fromXML(a,m));break;case"w:tab":i.addChild(u.Tab.fromXML(a,m));break;case"w:fldChar":i.fldChar=m.getAttribute("w:fldCharType");break;case"w:instrText":i.addChild(new o.InstrText(m.textContent||""));break;case"w:lastRenderedPageBreak":var S=new s.Break;S.type="page",i.addChild(S);break;case"w:pict":i.addChild(w.Pict.fromXML(a,m));break;case"w:ruby":i.addChild(h.Ruby.fromXML(a,m));break;case"w:sym":i.addChild(p.Sym.parseXML(m));break;case"mc:AlternateContent":var x=m.getElementsByTagName("w:drawing").item(0);x&&i.addChild(c.Drawing.fromXML(a,x));break;case"w:softHyphen":i.addChild(new f.SoftHyphen);break;case"w:noBreakHyphen":i.addChild(new l.NoBreakHyphen);break;case"w:separator":i.addChild(new b.Separator);break;case"w:continuationSeparator":break;default:console.warn("parse Run: Unknown key",g,m)}}}catch(e){t={error:e}}finally{try{C&&!C.done&&(d=y.return)&&d.call(y)}finally{if(t)throw t.error}}return i},e}();a.Run=y,a.Text=k}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Hyperlink.js*/
- amis.define("ab3f86f",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i=e("68b98b9"),o=e("ede7588"),a=function(){function e(){this.children=[]}return e.prototype.addChild=function(e){this.children.push(e)},e.fromXML=function(r,t){var n,a,l=new e,u=t.getAttribute("r:id");if(u){var c=r.getDocumentRels(u);c&&(l.relation=c)}var f=t.getAttribute("w:anchor");f&&(l.anchor=f);var d=t.getAttribute("w:tooltip");d&&(l.tooltip=d);try{for(var h=i.__values(t.children),s=h.next();!s.done;s=h.next()){var v=s.value,p=v.tagName;if("w:r"===p)l.addChild(o.Run.fromXML(r,v));else console.warn("parse Hyperlink: Unknown key",p,v)}}catch(e){n={error:e}}finally{try{s&&!s.done&&(a=h.return)&&a.call(h)}finally{if(n)throw n.error}}return l},e}();r.Hyperlink=a}));
- ;/*!node_modules/office-viewer/lib/openxml/word/numbering/NumberProperties.js*/
- amis.define("c493348",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("0720cd6"),u=function(){function e(){}return e.fromXML=function(t,n){var r=new e,u=n.getElementsByTagName("w:ilvl").item(0);u&&(r.ilvl=i.getVal(u));var a=n.getElementsByTagName("w:numId").item(0);return a&&(r.numId=i.getVal(a)),r},e}();t.NumberPr=u}));
- ;/*!node_modules/office-viewer/lib/openxml/word/InlineText.js*/
- amis.define("36850ad",(function(e,r,a,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=e("68b98b9"),t=e("84c394d"),d=e("ab3f86f"),i=e("ede7588"),c=function(){function e(){this.children=[]}return e.prototype.addChild=function(e){this.children.push(e)},e.fromXML=function(r,a){var n,c,l=new e;try{for(var f=o.__values(a.children),s=f.next();!s.done;s=f.next()){var u=s.value,h=u.tagName;switch(h){case"w:r":l.addChild(i.Run.fromXML(r,u));break;case"w:hyperlink":l.addChild(d.Hyperlink.fromXML(r,u));break;case"w:bookmarkStart":l.addChild(t.BookmarkStart.fromXML(r,u));case"w:bookmarkEnd":case"w:proofErr":case"w:noProof":case"w:smartTagPr":case"w:del":break;default:console.warn("parse Inline: Unknown key",h,u)}}}catch(e){n={error:e}}finally{try{s&&!s.done&&(c=f.return)&&c.call(f)}finally{if(n)throw n.error}}return l},e}();r.InlineText=c}));
- ;/*!node_modules/office-viewer/lib/openxml/word/FldSimple.js*/
- amis.define("6ff93ea",(function(e,n,t,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var r=e("36850ad"),f=function(){function e(){}return e.fromXML=function(n,t){var i=new e;return i.inlineText=r.InlineText.fromXML(n,t),i.instr=t.getAttribute("w:instr")||"",i},e}();n.FldSimple=f}));
- ;/*!node_modules/office-viewer/lib/openxml/math/OMath.js*/
- amis.define("72e73eb",(function(e,n,t,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var u=function(){function e(){}return e.fromXML=function(n,t){var r=new e;return r.element=t,r},e}();n.OMath=u}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Paragraph.js*/
- amis.define("208f98d",(function(e,a,r,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var o=e("68b98b9"),n=e("0720cd6"),l=e("b39acee"),s=e("84c394d"),i=e("ab3f86f"),m=e("c493348"),c=e("ede7588"),d=e("4783810"),f=e("6ff93ea"),p=e("72e73eb"),u=e("39af250");var h=function(){function e(){this.properties={},this.children=[],this.fldSimples=[]}return e.prototype.addChild=function(e){this.children.push(e)},e.parseParagraphPr=function(e,a){var r,t,s,i,c=l.parsePr(e,a),f=a.getElementsByTagName("w:pStyle").item(0);f&&(s=n.getVal(f));var p=a.getElementsByTagName("w:numPr").item(0);p&&(i=m.NumberPr.fromXML(e,p));var u=[],h=a.getElementsByTagName("w:tab");try{for(var w=o.__values(h),y=w.next();!y.done;y=w.next()){var b=y.value;u.push(d.Tab.fromXML(e,b))}}catch(e){r={error:e}}finally{try{y&&!y.done&&(t=w.return)&&t.call(w)}finally{if(r)throw r.error}}var v=function(e){var a=e.getElementsByTagName("w:autoSpaceDE").item(0),r=e.getElementsByTagName("w:autoSpaceDN").item(0);return!!a||!!r}(a);return{cssStyle:c,pStyle:s,numPr:i,tabs:u,autoSpace:v}},e.fromXML=function(a,r){var t,n,l=new e;l.fldSimples=[],l.paraId=r.getAttribute("w14:paraId")||"";try{for(var m=o.__values(u.mergeSdt(r)),d=m.next();!d.done;d=m.next()){var h=d.value,w=h.tagName;switch(w){case"w:pPr":l.properties=e.parseParagraphPr(a,h);break;case"w:r":l.addChild(c.Run.fromXML(a,h));break;case"w:hyperlink":l.addChild(i.Hyperlink.fromXML(a,h));break;case"w:bookmarkStart":l.addChild(s.BookmarkStart.fromXML(a,h));case"w:bookmarkEnd":case"w:proofErr":case"w:noProof":case"w:del":case"w:moveTo":case"w:moveFrom":break;case"w:fldSimple":l.fldSimples.push(f.FldSimple.fromXML(a,h));break;case"m:oMathPara":case"m:oMath":l.addChild(p.OMath.fromXML(a,h));break;default:console.warn("parse Paragraph: Unknown key",w,h)}}}catch(e){t={error:e}}finally{try{d&&!d.done&&(n=m.return)&&n.call(m)}finally{if(t)throw t.error}}return l},e}();a.Paragraph=h}));
- ;/*!node_modules/office-viewer/lib/openxml/Style.js*/
- amis.define("afe87f4",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),l=e("0d4462f"),s=e("0720cd6"),c=e("208f98d"),i=e("ede7588"),u=e("469bde5"),w=e("efef3de");function P(e,r){var a,t,s={};try{for(var P=n.__values(r.children),f=P.next();!f.done;f=P.next()){var y=f.value;switch(y.tagName){case"w:rPr":s.rPr=i.Run.parseRunPr(e,y);break;case"w:pPr":s.pPr=c.Paragraph.parseParagraphPr(e,y);break;case"w:tblPr":s.tblPr=u.parseTablePr(e,y);break;case"w:tcPr":s.tcPr=l.parseTcPr(e,y);break;case"w:trPr":s.trPr=w.parseTrPr(e,y)}}}catch(e){a={error:e}}finally{try{f&&!f.done&&(t=P.return)&&t.call(P)}finally{if(a)throw a.error}}return s}function f(e,r){var a,t,l={};l.id=r.getAttribute("w:styleId")||"",l.type=r.getAttribute("w:type"),l.tblStylePr={},Object.assign(l,P(e,r));try{for(var c=n.__values(r.children),i=c.next();!i.done;i=c.next()){var u=i.value,w=u.tagName;switch(w){case"w:name":l.name=s.getVal(u);break;case"w:basedOn":l.basedOn=s.getVal(u);break;case"w:rPr":case"w:pPr":case"w:tblPr":case"w:tcPr":case"w:trPr":case"w:next":case"w:link":case"w:unhideWhenUsed":case"w:qFormat":case"w:rsid":case"w:uiPriority":case"w:semiHidden":case"w:autoRedefine":break;case"w:tblStylePr":var f=u.getAttribute("w:type");l.tblStylePr[f]=P(e,u);break;default:console.warn("parseStyle Unknown tag",w,u)}}}catch(e){a={error:e}}finally{try{i&&!i.done&&(t=c.return)&&t.call(c)}finally{if(a)throw a.error}}return l}r.parseStyles=function(e,r){var a,t,l={styleMap:{}},s=Array.from(r.getElementsByTagName("w:style"));try{for(var u=n.__values(s),w=u.next();!w.done;w=u.next()){var P=f(e,w.value);P.id&&(l.styleMap[P.id]=P)}}catch(e){a={error:e}}finally{try{w&&!w.done&&(t=u.return)&&t.call(u)}finally{if(a)throw a.error}}return l.defaultStyle=function(e,r){var a={};if(!r)return a;var t=r.getElementsByTagName("w:rPrDefault").item(0);if(t){var n=t.getElementsByTagName("w:rPr").item(0);n&&(a.rPr=i.Run.parseRunPr(e,n))}var l=r.getElementsByTagName("w:pPrDefault").item(0);if(l){var s=l.getElementsByTagName("w:pPr").item(0);s&&(a.pPr=c.Paragraph.parseParagraphPr(e,s))}return a}(e,r.getElementsByTagName("w:docDefaults").item(0)),l}}));
- ;/*!node_modules/office-viewer/lib/openxml/Theme.js*/
- amis.define("d12cc17",(function(e,t,r,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c=e("68b98b9"),a=e("9f6b1b2"),l=e("0720cd6"),o=function(){this.colors={}};function s(e){var t={};return e&&(t.clrScheme=function(e){var t,r,n=new o;if(!e)return n;n.name=e.getAttribute("name")||"";try{for(var s=c.__values(e.children),m=s.next();!m.done;m=s.next()){var i=m.value,g=i.tagName.replace("a:",""),f=i.firstElementChild;if(f){var u=f.nodeName.replace("a:","");if("sysClr"===u)n.colors[g]=f.getAttribute("lastClr")||"";else if("srgbClr"===u)n.colors[g]="#"+f.getAttribute("val")||"";else if("scrgbClr"===u){var h=256*l.getAttrPercent(i,"r"),v=256*l.getAttrPercent(i,"g"),b=256*l.getAttrPercent(i,"b");n.colors[g]="rgb(".concat(h,", ").concat(v,", ").concat(b,")")}else if("hslClr"===u){var d=a.convertAngle(i.getAttribute("hue")),y=100*l.getAttrPercent(i,"sat"),A=100*l.getAttrPercent(i,"lum");n.colors[g]="hsl(".concat(d,", ").concat(y,"%, ").concat(A,"%)")}else"prstClr"===u?n.colors[g]=l.getVal(i):console.error("unknown clr name",u)}}}catch(e){t={error:e}}finally{try{m&&!m.done&&(r=s.return)&&r.call(s)}finally{if(t)throw t.error}}return n}(e.getElementsByTagName("a:clrScheme").item(0)),t.fontScheme=(e.getElementsByTagName("a:fontScheme").item(0),{}),t.fmtScheme=(e.getElementsByTagName("a:fmtScheme").item(0),{})),t}t.parseTheme=function(e){var t={};return t.themeElements=s(e.getElementsByTagName("a:themeElements").item(0)),t}}));
- ;/*!node_modules/office-viewer/lib/util/dom.js*/
- amis.define("8934861",(function(e,n,t,a){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var r=e("68b98b9");n.addClassName=function(e,n){e&&n&&e.classList.add(n)},n.addClassNames=function(e,n){var t;e&&n&&(t=e.classList).add.apply(t,r.__spreadArray([],r.__read(n),!1))},n.appendChild=function(e,n){e&&n&&e.appendChild(n)},n.applyStyle=function(e,n){if(n)for(var t in n){var a=n[t];null!=a&&""!==a&&e.style.setProperty(t,String(a))}},n.createElement=function(e){return document.createElement(e)},n.createSVGElement=function(e){return document.createElementNS("http://www.w3.org/2000/svg",e)},n.removeChild=function(e,n){e&&n&&e.removeChild(n)},n.styleToText=function(e){void 0===e&&(e={});var n="";for(var t in e){var a=e[t];null!=a&&""!==a&&(n+="".concat(t,": ").concat(a,";\n"))}return n}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderBr.js*/
- amis.define("6d1c1ec",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("8934861");r.renderBr=function(e,r){return"page"===r.type&&(e.breakPage=!0),a.createElement("br")}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderStyle.js*/
- amis.define("f40474a",(function(n,t,c,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=n("68b98b9"),e=n("8934861");function r(n,t,c){var o="",a=c.tblPr,r=c.tcPr;if(a){var l=e.styleToText(a.cssStyle),s=e.styleToText(a.tcCSSStyle);if(o+="\n .".concat(n," .").concat(t," {\n border-collapse: collapse;\n ").concat(l,"\n }\n\n .").concat(n," .").concat(t," > tbody > tr > td {\n ").concat(s,"\n }\n "),a.insideBorder){var i=a.insideBorder;i.H&&(o+="\n .".concat(n," .").concat(t," > tbody > tr > td {\n border-top: ").concat(i.H,";\n }")),i.V&&(o+="\n .".concat(n," .").concat(t," > tbody > tr > td {\n border-left: ").concat(i.V,";\n }"))}}if(r){var d=e.styleToText(r.cssStyle);o+="\n .".concat(n," .").concat(t," > tbody > tr > td {\n ").concat(d,"\n }\n ")}return o}function l(n,t,c,o){var a,r,l,s,i,d,y="",v=e.styleToText(null===(a=o.trPr)||void 0===a?void 0:a.cssStyle),b="";switch(c){case"firstCol":b="enable-firstColumn";break;case"lastCol":b="enable-lastColumn";break;case"firstRow":b="enable-firstRow";break;case"lastRow":b="enable-lastRow";break;case"band1Horz":case"band2Horz":b="enable-hBand";break;case"band1Vert":case"band2Vert":b="enable-vBand"}v&&(y+="\n ".concat(n,".").concat(b," > tbody > tr.").concat(c,"{\n ").concat(v,"\n }\n "));var f=e.styleToText(null===(r=o.tcPr)||void 0===r?void 0:r.cssStyle);if(f&&(y+="\n ".concat(n,".").concat(b," > tbody > tr > td.").concat(c," {\n ").concat(f,"\n }\n "),null===(l=o.tcPr)||void 0===l?void 0:l.insideBorder)){var u=null===(s=o.tcPr)||void 0===s?void 0:s.insideBorder;u.H&&(y+="\n ".concat(n,".").concat(b," > tbody > tr > td.").concat(c," {\n border-top: ").concat(u.H,";\n }")),u.V&&("none"===u.V?y+="\n ".concat(n,".").concat(b," > tbody > tr > td.").concat(c," {\n border-left: none;\n border-right: none;\n }"):y+="\n ".concat(n,".").concat(b," > tbody > tr > td.").concat(c," {\n border-left: ").concat(u.V,";\n }"))}var T=e.styleToText(null===(i=o.pPr)||void 0===i?void 0:i.cssStyle);T&&(y+="\n ".concat(n,".").concat(b," > tbody > tr > td.").concat(c," > .").concat(t,"-p {\n ").concat(T,"\n }\n "));var S=e.styleToText(null===(d=o.rPr)||void 0===d?void 0:d.cssStyle);return S&&(y+="\n ".concat(n,".").concat(b," > tbody > tr > td.").concat(c," > .").concat(t,"-p > .").concat(t,"-r {\n ").concat(S,"\n }\n ")),y}var s=new Set(["wholeTable","band1Horz","band2Horz","band1Vert","band2Vert","firstCol","firstRow","lastCol","lastRow","neCell","nwCell","seCell","swCell"]);function i(n,t,c){var o,e;if(!c)return"";var r="",i=".".concat(n," .").concat(t);try{for(var d=a.__values(s),y=d.next();!y.done;y=d.next()){var v=y.value;if(v in c)r+=l(i,n,v,c[v])}}catch(n){o={error:n}}finally{try{y&&!y.done&&(e=d.return)&&e.call(d)}finally{if(o)throw o.error}}return r}t.generateTableStyle=r,t.renderStyle=function(n){var t=e.createElement("style"),c=function(n){var t,c=n.styles.defaultStyle,o="";(null==c?void 0:c.pPr)&&(o=e.styleToText(c.pPr.cssStyle));var a="";(null==c?void 0:c.rPr)&&(a=e.styleToText(c.rPr.cssStyle));var r=(null===(t=n.settings)||void 0===t?void 0:t.autoHyphenation)?"hyphens: auto;":"",l=n.getClassPrefix();return"\n\n\n /** docDefaults **/\n .".concat(l," {\n --docx-theme-font-minorHAnsi: Calibri, Helvetica, Arial, 'Helvetica Neue';\n --docx-theme-font-minorEastAsia: 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'STHeiti',\n 'Microsoft YaHei';\n }\n\n .").concat(l," p {\n margin: 0;\n padding: 0;\n line-height: 1.5;\n ").concat(r,"\n }\n\n .").concat(l," .justify {\n text-align-last: left;\n }\n\n .").concat(l," table {\n border-spacing: 0;\n }\n\n .").concat(l," .").concat(l,"-p {\n ").concat(o,"\n }\n\n .").concat(l," .").concat(l,"-r {\n overflow-wrap: break-word;\n ").concat(a,"\n }\n ")}(n),o=function(n){var t=n.styles.styleMap,c=n.getClassPrefix(),o="";for(var a in t){var l=n.getStyleIdDisplayName(a),s=t[a],d=s.pPr,y="";if(d){var v=e.styleToText(d.cssStyle);y="\n .".concat(c," .").concat(l," {\n ").concat(v,"\n }\n ")}var b="";if(s.rPr){var f=e.styleToText(s.rPr.cssStyle);b="\n .".concat(c," .").concat(l," > .").concat(c,"-r {\n ").concat(f,"\n }\n ")}var u=r(c,l,s),T=i(c,l,s.tblStylePr);o+="\n ".concat(y,"\n ").concat(b,"\n ").concat(u,"\n ").concat(T,"\n ")}return o}(n);return t.textContent="\n ".concat(c,"\n\n ").concat(o,"\n "),t}}));
- ;/*!node_modules/office-viewer/lib/word/render/setElementStyle.js*/
- amis.define("0022f23",(function(e,s,t,l){"use strict";Object.defineProperty(s,"__esModule",{value:!0});var a=e("8934861");s.setElementStyle=function(e,s,t){t&&(t.cssStyle&&(a.applyStyle(s,t.cssStyle),"justify"===t.cssStyle["text-align"]&&a.addClassName(s,"justify")),t.pStyle&&a.addClassNames(s,e.getStyleClassName(t.pStyle)),t.rStyle&&a.addClassNames(s,e.getStyleClassName(t.rStyle)))}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderTable.js*/
- amis.define("9719fc0",(function(e,a,t,l){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var r=e("68b98b9"),n=e("208f98d"),d=e("c067fd2"),s=e("8934861"),o=e("3971faf"),i=e("f40474a"),c=e("0022f23");function p(e,a,t,l,r,n,d){0===e&&0===a&&r.classList.add("nwCell"),0===e&&a===l-1&&r.classList.add("neCell"),e===t-1&&0===a&&r.classList.add("swCell"),e===t-1&&a===l-1&&r.classList.add("seCell"),0===e&&r.classList.add("firstRow"),e===t-1&&r.classList.add("lastRow"),0===a&&r.classList.add("firstCol"),a===l-1&&r.classList.add("lastCol"),f(e+1)&&r.classList.add("band1Horz"),f(e+1)||r.classList.add("band2Horz"),f(a+1)&&r.classList.add("band1Vert"),f(a+1)||r.classList.add("band2Vert")}function f(e,a){return!(e%2)}a.default=function e(a,t){var l,f,v,u,y,b,C=document.createElement("table"),h=t.properties;if(h.tblCaption){var L=document.createElement("caption");L.textContent=h.tblCaption,C.appendChild(L)}if(h.tblLook)for(var m in h.tblLook)"noHBand"===m?h.tblLook[m]||s.addClassName(C,"enable-hBand"):"noVBand"===m?h.tblLook[m]||s.addClassName(C,"enable-vBand"):h.tblLook[m]&&s.addClassName(C,"enable-"+m);c.setElementStyle(a,C,h);var S=a.genClassName();C.classList.add(S),a.appendStyle(i.generateTableStyle(a.getClassPrefix(),S,{tblPr:h}));var w=document.createElement("tbody");C.appendChild(w);var g=0;try{for(var x=r.__values(t.trs),_=x.next();!_.done;_=x.next()){var k=_.value,E=document.createElement("tr");w.appendChild(E);var B=0;try{for(var z=(v=void 0,r.__values(k.tcs)),N=z.next();!N.done;N=z.next()){var P=N.value,H=document.createElement("td");E.appendChild(H),p(g,B,t.trs.length,k.tcs.length,H,h.rowBandSize,h.colBandSize),k.properties.tcStyle&&s.applyStyle(H,k.properties.tcStyle);var V=P.properties;c.setElementStyle(a,H,V),V.gridSpan&&(H.colSpan=V.gridSpan),V.rowSpan&&(H.rowSpan=V.rowSpan);var M=!0;V.hideMark&&(M=!1);try{for(var R=(y=void 0,r.__values(P.children)),T=R.next();!T.done;T=R.next()){var j=T.value;if(j instanceof n.Paragraph){var O=o.default(a,j,M);s.appendChild(H,O)}else j instanceof d.Table?(M=!1,s.appendChild(H,e(a,j))):console.warn("unknown child type: "+j)}}catch(e){y={error:e}}finally{try{T&&!T.done&&(b=R.return)&&b.call(R)}finally{if(y)throw y.error}}V.rowSpan?B+=V.rowSpan:B++}}catch(e){v={error:e}}finally{try{N&&!N.done&&(u=z.return)&&u.call(z)}finally{if(v)throw v.error}}g++}}catch(e){l={error:e}}finally{try{_&&!_.done&&(f=x.return)&&f.call(x)}finally{if(l)throw l.error}}return C}}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/presetShape.js*/
- amis.define("f459abb",(function(n,t,y,x){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.presetShape={accentBorderCallout1:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 112500"},{n:"adj4",f:"val -38333"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"close"},{type:"lnTo",pt:{x:"x1",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}}],fill:"none",extrusionOk:!1,stroke:!0}]},accentBorderCallout2:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 18750"},{n:"adj4",f:"val -16667"},{n:"adj5",f:"val 112500"},{n:"adj6",f:"val -46667"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"},{n:"y3",f:"*/ h adj5 100000"},{n:"x3",f:"*/ w adj6 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"close"},{type:"lnTo",pt:{x:"x1",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y3"}}],fill:"none",extrusionOk:!1,stroke:!0}]},accentBorderCallout3:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 18750"},{n:"adj4",f:"val -16667"},{n:"adj5",f:"val 100000"},{n:"adj6",f:"val -16667"},{n:"adj7",f:"val 112963"},{n:"adj8",f:"val -8333"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"},{n:"y3",f:"*/ h adj5 100000"},{n:"x3",f:"*/ w adj6 100000"},{n:"y4",f:"*/ h adj7 100000"},{n:"x4",f:"*/ w adj8 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"close"},{type:"lnTo",pt:{x:"x1",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x4",y:"y4"}}],fill:"none",extrusionOk:!1,stroke:!0}]},accentCallout1:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 112500"},{n:"adj4",f:"val -38333"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"close"},{type:"lnTo",pt:{x:"x1",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}}],fill:"none",extrusionOk:!1,stroke:!0}]},accentCallout2:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 18750"},{n:"adj4",f:"val -16667"},{n:"adj5",f:"val 112500"},{n:"adj6",f:"val -46667"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"},{n:"y3",f:"*/ h adj5 100000"},{n:"x3",f:"*/ w adj6 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"close"},{type:"lnTo",pt:{x:"x1",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y3"}}],fill:"none",extrusionOk:!1,stroke:!0}]},accentCallout3:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 18750"},{n:"adj4",f:"val -16667"},{n:"adj5",f:"val 100000"},{n:"adj6",f:"val -16667"},{n:"adj7",f:"val 112963"},{n:"adj8",f:"val -8333"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"},{n:"y3",f:"*/ h adj5 100000"},{n:"x3",f:"*/ w adj6 100000"},{n:"y4",f:"*/ h adj7 100000"},{n:"x4",f:"*/ w adj8 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"close"},{type:"lnTo",pt:{x:"x1",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x4",y:"y4"}}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonBackPrevious:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g10",f:"+- vc dx2 0"},{n:"g11",f:"+- hc 0 dx2"},{n:"g12",f:"+- hc dx2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"g11",y:"vc"}},{type:"lnTo",pt:{x:"g12",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g11",y:"vc"}},{type:"lnTo",pt:{x:"g12",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g11",y:"vc"}},{type:"lnTo",pt:{x:"g12",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonBeginning:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g10",f:"+- vc dx2 0"},{n:"g11",f:"+- hc 0 dx2"},{n:"g12",f:"+- hc dx2 0"},{n:"g13",f:"*/ ss 3 4"},{n:"g14",f:"*/ g13 1 8"},{n:"g15",f:"*/ g13 1 4"},{n:"g16",f:"+- g11 g14 0"},{n:"g17",f:"+- g11 g15 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"g17",y:"vc"}},{type:"lnTo",pt:{x:"g12",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"close"},{type:"moveTo",pt:{x:"g16",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"lnTo",pt:{x:"g16",y:"g10"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g17",y:"vc"}},{type:"lnTo",pt:{x:"g12",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"close"},{type:"moveTo",pt:{x:"g16",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"lnTo",pt:{x:"g16",y:"g10"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g17",y:"vc"}},{type:"lnTo",pt:{x:"g12",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"close"},{type:"moveTo",pt:{x:"g16",y:"g9"}},{type:"lnTo",pt:{x:"g16",y:"g10"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"lnTo",pt:{x:"g11",y:"g9"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonBlank:{pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},actionButtonDocument:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g10",f:"+- vc dx2 0"},{n:"dx1",f:"*/ ss 9 32"},{n:"g11",f:"+- hc 0 dx1"},{n:"g12",f:"+- hc dx1 0"},{n:"g13",f:"*/ ss 3 16"},{n:"g14",f:"+- g12 0 g13"},{n:"g15",f:"+- g9 g13 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"g11",y:"g9"}},{type:"lnTo",pt:{x:"g14",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g15"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g11",y:"g9"}},{type:"lnTo",pt:{x:"g14",y:"g9"}},{type:"lnTo",pt:{x:"g14",y:"g15"}},{type:"lnTo",pt:{x:"g12",y:"g15"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g14",y:"g9"}},{type:"lnTo",pt:{x:"g14",y:"g15"}},{type:"lnTo",pt:{x:"g12",y:"g15"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g11",y:"g9"}},{type:"lnTo",pt:{x:"g14",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g15"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"close"},{type:"moveTo",pt:{x:"g12",y:"g15"}},{type:"lnTo",pt:{x:"g14",y:"g15"}},{type:"lnTo",pt:{x:"g14",y:"g9"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonEnd:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g10",f:"+- vc dx2 0"},{n:"g11",f:"+- hc 0 dx2"},{n:"g12",f:"+- hc dx2 0"},{n:"g13",f:"*/ ss 3 4"},{n:"g14",f:"*/ g13 3 4"},{n:"g15",f:"*/ g13 7 8"},{n:"g16",f:"+- g11 g14 0"},{n:"g17",f:"+- g11 g15 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"g16",y:"vc"}},{type:"lnTo",pt:{x:"g11",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"close"},{type:"moveTo",pt:{x:"g17",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"lnTo",pt:{x:"g17",y:"g10"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g16",y:"vc"}},{type:"lnTo",pt:{x:"g11",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"close"},{type:"moveTo",pt:{x:"g17",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"lnTo",pt:{x:"g17",y:"g10"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g16",y:"vc"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"lnTo",pt:{x:"g11",y:"g9"}},{type:"close"},{type:"moveTo",pt:{x:"g17",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g9"}},{type:"lnTo",pt:{x:"g12",y:"g10"}},{type:"lnTo",pt:{x:"g17",y:"g10"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonForwardNext:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g10",f:"+- vc dx2 0"},{n:"g11",f:"+- hc 0 dx2"},{n:"g12",f:"+- hc dx2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"g12",y:"vc"}},{type:"lnTo",pt:{x:"g11",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g12",y:"vc"}},{type:"lnTo",pt:{x:"g11",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g12",y:"vc"}},{type:"lnTo",pt:{x:"g11",y:"g10"}},{type:"lnTo",pt:{x:"g11",y:"g9"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonHelp:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g11",f:"+- hc 0 dx2"},{n:"g13",f:"*/ ss 3 4"},{n:"g14",f:"*/ g13 1 7"},{n:"g15",f:"*/ g13 3 14"},{n:"g16",f:"*/ g13 2 7"},{n:"g19",f:"*/ g13 3 7"},{n:"g20",f:"*/ g13 4 7"},{n:"g21",f:"*/ g13 17 28"},{n:"g23",f:"*/ g13 21 28"},{n:"g24",f:"*/ g13 11 14"},{n:"g27",f:"+- g9 g16 0"},{n:"g29",f:"+- g9 g21 0"},{n:"g30",f:"+- g9 g23 0"},{n:"g31",f:"+- g9 g24 0"},{n:"g33",f:"+- g11 g15 0"},{n:"g36",f:"+- g11 g19 0"},{n:"g37",f:"+- g11 g20 0"},{n:"g41",f:"*/ g13 1 14"},{n:"g42",f:"*/ g13 3 28"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"g33",y:"g27"}},{type:"arcTo",wR:"g16",hR:"g16",stAng:"cd2",swAng:"cd2"},{type:"arcTo",wR:"g14",hR:"g15",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"g41",hR:"g42",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"g37",y:"g30"}},{type:"lnTo",pt:{x:"g36",y:"g30"}},{type:"lnTo",pt:{x:"g36",y:"g29"}},{type:"arcTo",wR:"g14",hR:"g15",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"g41",hR:"g42",stAng:"cd4",swAng:"-5400000"},{type:"arcTo",wR:"g14",hR:"g14",stAng:"0",swAng:"-10800000"},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"g31"}},{type:"arcTo",wR:"g42",hR:"g42",stAng:"3cd4",swAng:"21600000"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g33",y:"g27"}},{type:"arcTo",wR:"g16",hR:"g16",stAng:"cd2",swAng:"cd2"},{type:"arcTo",wR:"g14",hR:"g15",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"g41",hR:"g42",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"g37",y:"g30"}},{type:"lnTo",pt:{x:"g36",y:"g30"}},{type:"lnTo",pt:{x:"g36",y:"g29"}},{type:"arcTo",wR:"g14",hR:"g15",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"g41",hR:"g42",stAng:"cd4",swAng:"-5400000"},{type:"arcTo",wR:"g14",hR:"g14",stAng:"0",swAng:"-10800000"},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"g31"}},{type:"arcTo",wR:"g42",hR:"g42",stAng:"3cd4",swAng:"21600000"},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g33",y:"g27"}},{type:"arcTo",wR:"g16",hR:"g16",stAng:"cd2",swAng:"cd2"},{type:"arcTo",wR:"g14",hR:"g15",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"g41",hR:"g42",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"g37",y:"g30"}},{type:"lnTo",pt:{x:"g36",y:"g30"}},{type:"lnTo",pt:{x:"g36",y:"g29"}},{type:"arcTo",wR:"g14",hR:"g15",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"g41",hR:"g42",stAng:"cd4",swAng:"-5400000"},{type:"arcTo",wR:"g14",hR:"g14",stAng:"0",swAng:"-10800000"},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"g31"}},{type:"arcTo",wR:"g42",hR:"g42",stAng:"3cd4",swAng:"21600000"},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonHome:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g10",f:"+- vc dx2 0"},{n:"g11",f:"+- hc 0 dx2"},{n:"g12",f:"+- hc dx2 0"},{n:"g13",f:"*/ ss 3 4"},{n:"g14",f:"*/ g13 1 16"},{n:"g15",f:"*/ g13 1 8"},{n:"g16",f:"*/ g13 3 16"},{n:"g17",f:"*/ g13 5 16"},{n:"g18",f:"*/ g13 7 16"},{n:"g19",f:"*/ g13 9 16"},{n:"g20",f:"*/ g13 11 16"},{n:"g21",f:"*/ g13 3 4"},{n:"g22",f:"*/ g13 13 16"},{n:"g23",f:"*/ g13 7 8"},{n:"g24",f:"+- g9 g14 0"},{n:"g25",f:"+- g9 g16 0"},{n:"g26",f:"+- g9 g17 0"},{n:"g27",f:"+- g9 g21 0"},{n:"g28",f:"+- g11 g15 0"},{n:"g29",f:"+- g11 g18 0"},{n:"g30",f:"+- g11 g19 0"},{n:"g31",f:"+- g11 g20 0"},{n:"g32",f:"+- g11 g22 0"},{n:"g33",f:"+- g11 g23 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"vc"}},{type:"lnTo",pt:{x:"g28",y:"vc"}},{type:"lnTo",pt:{x:"g28",y:"g10"}},{type:"lnTo",pt:{x:"g33",y:"g10"}},{type:"lnTo",pt:{x:"g33",y:"vc"}},{type:"lnTo",pt:{x:"g12",y:"vc"}},{type:"lnTo",pt:{x:"g32",y:"g26"}},{type:"lnTo",pt:{x:"g32",y:"g24"}},{type:"lnTo",pt:{x:"g31",y:"g24"}},{type:"lnTo",pt:{x:"g31",y:"g25"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g32",y:"g26"}},{type:"lnTo",pt:{x:"g32",y:"g24"}},{type:"lnTo",pt:{x:"g31",y:"g24"}},{type:"lnTo",pt:{x:"g31",y:"g25"}},{type:"close"},{type:"moveTo",pt:{x:"g28",y:"vc"}},{type:"lnTo",pt:{x:"g28",y:"g10"}},{type:"lnTo",pt:{x:"g29",y:"g10"}},{type:"lnTo",pt:{x:"g29",y:"g27"}},{type:"lnTo",pt:{x:"g30",y:"g27"}},{type:"lnTo",pt:{x:"g30",y:"g10"}},{type:"lnTo",pt:{x:"g33",y:"g10"}},{type:"lnTo",pt:{x:"g33",y:"vc"}},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"hc",y:"g9"}},{type:"lnTo",pt:{x:"g11",y:"vc"}},{type:"lnTo",pt:{x:"g12",y:"vc"}},{type:"close"},{type:"moveTo",pt:{x:"g29",y:"g27"}},{type:"lnTo",pt:{x:"g30",y:"g27"}},{type:"lnTo",pt:{x:"g30",y:"g10"}},{type:"lnTo",pt:{x:"g29",y:"g10"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"hc",y:"g9"}},{type:"lnTo",pt:{x:"g31",y:"g25"}},{type:"lnTo",pt:{x:"g31",y:"g24"}},{type:"lnTo",pt:{x:"g32",y:"g24"}},{type:"lnTo",pt:{x:"g32",y:"g26"}},{type:"lnTo",pt:{x:"g12",y:"vc"}},{type:"lnTo",pt:{x:"g33",y:"vc"}},{type:"lnTo",pt:{x:"g33",y:"g10"}},{type:"lnTo",pt:{x:"g28",y:"g10"}},{type:"lnTo",pt:{x:"g28",y:"vc"}},{type:"lnTo",pt:{x:"g11",y:"vc"}},{type:"close"},{type:"moveTo",pt:{x:"g31",y:"g25"}},{type:"lnTo",pt:{x:"g32",y:"g26"}},{type:"moveTo",pt:{x:"g33",y:"vc"}},{type:"lnTo",pt:{x:"g28",y:"vc"}},{type:"moveTo",pt:{x:"g29",y:"g10"}},{type:"lnTo",pt:{x:"g29",y:"g27"}},{type:"lnTo",pt:{x:"g30",y:"g27"}},{type:"lnTo",pt:{x:"g30",y:"g10"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonInformation:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g11",f:"+- hc 0 dx2"},{n:"g13",f:"*/ ss 3 4"},{n:"g14",f:"*/ g13 1 32"},{n:"g17",f:"*/ g13 5 16"},{n:"g18",f:"*/ g13 3 8"},{n:"g19",f:"*/ g13 13 32"},{n:"g20",f:"*/ g13 19 32"},{n:"g22",f:"*/ g13 11 16"},{n:"g23",f:"*/ g13 13 16"},{n:"g24",f:"*/ g13 7 8"},{n:"g25",f:"+- g9 g14 0"},{n:"g28",f:"+- g9 g17 0"},{n:"g29",f:"+- g9 g18 0"},{n:"g30",f:"+- g9 g23 0"},{n:"g31",f:"+- g9 g24 0"},{n:"g32",f:"+- g11 g17 0"},{n:"g34",f:"+- g11 g19 0"},{n:"g35",f:"+- g11 g20 0"},{n:"g37",f:"+- g11 g22 0"},{n:"g38",f:"*/ g13 3 32"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"g9"}},{type:"arcTo",wR:"dx2",hR:"dx2",stAng:"3cd4",swAng:"21600000"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"hc",y:"g9"}},{type:"arcTo",wR:"dx2",hR:"dx2",stAng:"3cd4",swAng:"21600000"},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"g25"}},{type:"arcTo",wR:"g38",hR:"g38",stAng:"3cd4",swAng:"21600000"},{type:"moveTo",pt:{x:"g32",y:"g28"}},{type:"lnTo",pt:{x:"g32",y:"g29"}},{type:"lnTo",pt:{x:"g34",y:"g29"}},{type:"lnTo",pt:{x:"g34",y:"g30"}},{type:"lnTo",pt:{x:"g32",y:"g30"}},{type:"lnTo",pt:{x:"g32",y:"g31"}},{type:"lnTo",pt:{x:"g37",y:"g31"}},{type:"lnTo",pt:{x:"g37",y:"g30"}},{type:"lnTo",pt:{x:"g35",y:"g30"}},{type:"lnTo",pt:{x:"g35",y:"g28"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"hc",y:"g25"}},{type:"arcTo",wR:"g38",hR:"g38",stAng:"3cd4",swAng:"21600000"},{type:"moveTo",pt:{x:"g32",y:"g28"}},{type:"lnTo",pt:{x:"g35",y:"g28"}},{type:"lnTo",pt:{x:"g35",y:"g30"}},{type:"lnTo",pt:{x:"g37",y:"g30"}},{type:"lnTo",pt:{x:"g37",y:"g31"}},{type:"lnTo",pt:{x:"g32",y:"g31"}},{type:"lnTo",pt:{x:"g32",y:"g30"}},{type:"lnTo",pt:{x:"g34",y:"g30"}},{type:"lnTo",pt:{x:"g34",y:"g29"}},{type:"lnTo",pt:{x:"g32",y:"g29"}},{type:"close"}],fill:"lighten",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"hc",y:"g9"}},{type:"arcTo",wR:"dx2",hR:"dx2",stAng:"3cd4",swAng:"21600000"},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"g25"}},{type:"arcTo",wR:"g38",hR:"g38",stAng:"3cd4",swAng:"21600000"},{type:"moveTo",pt:{x:"g32",y:"g28"}},{type:"lnTo",pt:{x:"g35",y:"g28"}},{type:"lnTo",pt:{x:"g35",y:"g30"}},{type:"lnTo",pt:{x:"g37",y:"g30"}},{type:"lnTo",pt:{x:"g37",y:"g31"}},{type:"lnTo",pt:{x:"g32",y:"g31"}},{type:"lnTo",pt:{x:"g32",y:"g30"}},{type:"lnTo",pt:{x:"g34",y:"g30"}},{type:"lnTo",pt:{x:"g34",y:"g29"}},{type:"lnTo",pt:{x:"g32",y:"g29"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonMovie:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g10",f:"+- vc dx2 0"},{n:"g11",f:"+- hc 0 dx2"},{n:"g12",f:"+- hc dx2 0"},{n:"g13",f:"*/ ss 3 4"},{n:"g14",f:"*/ g13 1455 21600"},{n:"g15",f:"*/ g13 1905 21600"},{n:"g16",f:"*/ g13 2325 21600"},{n:"g17",f:"*/ g13 16155 21600"},{n:"g18",f:"*/ g13 17010 21600"},{n:"g19",f:"*/ g13 19335 21600"},{n:"g20",f:"*/ g13 19725 21600"},{n:"g21",f:"*/ g13 20595 21600"},{n:"g22",f:"*/ g13 5280 21600"},{n:"g23",f:"*/ g13 5730 21600"},{n:"g24",f:"*/ g13 6630 21600"},{n:"g25",f:"*/ g13 7492 21600"},{n:"g26",f:"*/ g13 9067 21600"},{n:"g27",f:"*/ g13 9555 21600"},{n:"g28",f:"*/ g13 13342 21600"},{n:"g29",f:"*/ g13 14580 21600"},{n:"g30",f:"*/ g13 15592 21600"},{n:"g31",f:"+- g11 g14 0"},{n:"g32",f:"+- g11 g15 0"},{n:"g33",f:"+- g11 g16 0"},{n:"g34",f:"+- g11 g17 0"},{n:"g35",f:"+- g11 g18 0"},{n:"g36",f:"+- g11 g19 0"},{n:"g37",f:"+- g11 g20 0"},{n:"g38",f:"+- g11 g21 0"},{n:"g39",f:"+- g9 g22 0"},{n:"g40",f:"+- g9 g23 0"},{n:"g41",f:"+- g9 g24 0"},{n:"g42",f:"+- g9 g25 0"},{n:"g43",f:"+- g9 g26 0"},{n:"g44",f:"+- g9 g27 0"},{n:"g45",f:"+- g9 g28 0"},{n:"g46",f:"+- g9 g29 0"},{n:"g47",f:"+- g9 g30 0"},{n:"g48",f:"+- g9 g31 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"g11",y:"g39"}},{type:"lnTo",pt:{x:"g11",y:"g44"}},{type:"lnTo",pt:{x:"g31",y:"g44"}},{type:"lnTo",pt:{x:"g32",y:"g43"}},{type:"lnTo",pt:{x:"g33",y:"g43"}},{type:"lnTo",pt:{x:"g33",y:"g47"}},{type:"lnTo",pt:{x:"g35",y:"g47"}},{type:"lnTo",pt:{x:"g35",y:"g45"}},{type:"lnTo",pt:{x:"g36",y:"g45"}},{type:"lnTo",pt:{x:"g38",y:"g46"}},{type:"lnTo",pt:{x:"g12",y:"g46"}},{type:"lnTo",pt:{x:"g12",y:"g41"}},{type:"lnTo",pt:{x:"g38",y:"g41"}},{type:"lnTo",pt:{x:"g37",y:"g42"}},{type:"lnTo",pt:{x:"g35",y:"g42"}},{type:"lnTo",pt:{x:"g35",y:"g41"}},{type:"lnTo",pt:{x:"g34",y:"g40"}},{type:"lnTo",pt:{x:"g32",y:"g40"}},{type:"lnTo",pt:{x:"g31",y:"g39"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g11",y:"g39"}},{type:"lnTo",pt:{x:"g11",y:"g44"}},{type:"lnTo",pt:{x:"g31",y:"g44"}},{type:"lnTo",pt:{x:"g32",y:"g43"}},{type:"lnTo",pt:{x:"g33",y:"g43"}},{type:"lnTo",pt:{x:"g33",y:"g47"}},{type:"lnTo",pt:{x:"g35",y:"g47"}},{type:"lnTo",pt:{x:"g35",y:"g45"}},{type:"lnTo",pt:{x:"g36",y:"g45"}},{type:"lnTo",pt:{x:"g38",y:"g46"}},{type:"lnTo",pt:{x:"g12",y:"g46"}},{type:"lnTo",pt:{x:"g12",y:"g41"}},{type:"lnTo",pt:{x:"g38",y:"g41"}},{type:"lnTo",pt:{x:"g37",y:"g42"}},{type:"lnTo",pt:{x:"g35",y:"g42"}},{type:"lnTo",pt:{x:"g35",y:"g41"}},{type:"lnTo",pt:{x:"g34",y:"g40"}},{type:"lnTo",pt:{x:"g32",y:"g40"}},{type:"lnTo",pt:{x:"g31",y:"g39"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g11",y:"g39"}},{type:"lnTo",pt:{x:"g31",y:"g39"}},{type:"lnTo",pt:{x:"g32",y:"g40"}},{type:"lnTo",pt:{x:"g34",y:"g40"}},{type:"lnTo",pt:{x:"g35",y:"g41"}},{type:"lnTo",pt:{x:"g35",y:"g42"}},{type:"lnTo",pt:{x:"g37",y:"g42"}},{type:"lnTo",pt:{x:"g38",y:"g41"}},{type:"lnTo",pt:{x:"g12",y:"g41"}},{type:"lnTo",pt:{x:"g12",y:"g46"}},{type:"lnTo",pt:{x:"g38",y:"g46"}},{type:"lnTo",pt:{x:"g36",y:"g45"}},{type:"lnTo",pt:{x:"g35",y:"g45"}},{type:"lnTo",pt:{x:"g35",y:"g47"}},{type:"lnTo",pt:{x:"g33",y:"g47"}},{type:"lnTo",pt:{x:"g33",y:"g43"}},{type:"lnTo",pt:{x:"g32",y:"g43"}},{type:"lnTo",pt:{x:"g31",y:"g44"}},{type:"lnTo",pt:{x:"g11",y:"g44"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonReturn:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g10",f:"+- vc dx2 0"},{n:"g11",f:"+- hc 0 dx2"},{n:"g12",f:"+- hc dx2 0"},{n:"g13",f:"*/ ss 3 4"},{n:"g14",f:"*/ g13 7 8"},{n:"g15",f:"*/ g13 3 4"},{n:"g16",f:"*/ g13 5 8"},{n:"g17",f:"*/ g13 3 8"},{n:"g18",f:"*/ g13 1 4"},{n:"g19",f:"+- g9 g15 0"},{n:"g20",f:"+- g9 g16 0"},{n:"g21",f:"+- g9 g18 0"},{n:"g22",f:"+- g11 g14 0"},{n:"g23",f:"+- g11 g15 0"},{n:"g24",f:"+- g11 g16 0"},{n:"g25",f:"+- g11 g17 0"},{n:"g26",f:"+- g11 g18 0"},{n:"g27",f:"*/ g13 1 8"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"g12",y:"g21"}},{type:"lnTo",pt:{x:"g23",y:"g9"}},{type:"lnTo",pt:{x:"hc",y:"g21"}},{type:"lnTo",pt:{x:"g24",y:"g21"}},{type:"lnTo",pt:{x:"g24",y:"g20"}},{type:"arcTo",wR:"g27",hR:"g27",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"g25",y:"g19"}},{type:"arcTo",wR:"g27",hR:"g27",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"g26",y:"g21"}},{type:"lnTo",pt:{x:"g11",y:"g21"}},{type:"lnTo",pt:{x:"g11",y:"g20"}},{type:"arcTo",wR:"g17",hR:"g17",stAng:"cd2",swAng:"-5400000"},{type:"lnTo",pt:{x:"hc",y:"g10"}},{type:"arcTo",wR:"g17",hR:"g17",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"g22",y:"g21"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g12",y:"g21"}},{type:"lnTo",pt:{x:"g23",y:"g9"}},{type:"lnTo",pt:{x:"hc",y:"g21"}},{type:"lnTo",pt:{x:"g24",y:"g21"}},{type:"lnTo",pt:{x:"g24",y:"g20"}},{type:"arcTo",wR:"g27",hR:"g27",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"g25",y:"g19"}},{type:"arcTo",wR:"g27",hR:"g27",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"g26",y:"g21"}},{type:"lnTo",pt:{x:"g11",y:"g21"}},{type:"lnTo",pt:{x:"g11",y:"g20"}},{type:"arcTo",wR:"g17",hR:"g17",stAng:"cd2",swAng:"-5400000"},{type:"lnTo",pt:{x:"hc",y:"g10"}},{type:"arcTo",wR:"g17",hR:"g17",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"g22",y:"g21"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g12",y:"g21"}},{type:"lnTo",pt:{x:"g22",y:"g21"}},{type:"lnTo",pt:{x:"g22",y:"g20"}},{type:"arcTo",wR:"g17",hR:"g17",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"g25",y:"g10"}},{type:"arcTo",wR:"g17",hR:"g17",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"g11",y:"g21"}},{type:"lnTo",pt:{x:"g26",y:"g21"}},{type:"lnTo",pt:{x:"g26",y:"g20"}},{type:"arcTo",wR:"g27",hR:"g27",stAng:"cd2",swAng:"-5400000"},{type:"lnTo",pt:{x:"hc",y:"g19"}},{type:"arcTo",wR:"g27",hR:"g27",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"g24",y:"g21"}},{type:"lnTo",pt:{x:"hc",y:"g21"}},{type:"lnTo",pt:{x:"g23",y:"g9"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},actionButtonSound:{gdLst:[{n:"dx2",f:"*/ ss 3 8"},{n:"g9",f:"+- vc 0 dx2"},{n:"g10",f:"+- vc dx2 0"},{n:"g11",f:"+- hc 0 dx2"},{n:"g12",f:"+- hc dx2 0"},{n:"g13",f:"*/ ss 3 4"},{n:"g14",f:"*/ g13 1 8"},{n:"g15",f:"*/ g13 5 16"},{n:"g16",f:"*/ g13 5 8"},{n:"g17",f:"*/ g13 11 16"},{n:"g18",f:"*/ g13 3 4"},{n:"g19",f:"*/ g13 7 8"},{n:"g20",f:"+- g9 g14 0"},{n:"g21",f:"+- g9 g15 0"},{n:"g22",f:"+- g9 g17 0"},{n:"g23",f:"+- g9 g19 0"},{n:"g24",f:"+- g11 g15 0"},{n:"g25",f:"+- g11 g16 0"},{n:"g26",f:"+- g11 g18 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"g11",y:"g21"}},{type:"lnTo",pt:{x:"g11",y:"g22"}},{type:"lnTo",pt:{x:"g24",y:"g22"}},{type:"lnTo",pt:{x:"g25",y:"g10"}},{type:"lnTo",pt:{x:"g25",y:"g9"}},{type:"lnTo",pt:{x:"g24",y:"g21"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g11",y:"g21"}},{type:"lnTo",pt:{x:"g11",y:"g22"}},{type:"lnTo",pt:{x:"g24",y:"g22"}},{type:"lnTo",pt:{x:"g25",y:"g10"}},{type:"lnTo",pt:{x:"g25",y:"g9"}},{type:"lnTo",pt:{x:"g24",y:"g21"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"g11",y:"g21"}},{type:"lnTo",pt:{x:"g24",y:"g21"}},{type:"lnTo",pt:{x:"g25",y:"g9"}},{type:"lnTo",pt:{x:"g25",y:"g10"}},{type:"lnTo",pt:{x:"g24",y:"g22"}},{type:"lnTo",pt:{x:"g11",y:"g22"}},{type:"close"},{type:"moveTo",pt:{x:"g26",y:"g21"}},{type:"lnTo",pt:{x:"g12",y:"g20"}},{type:"moveTo",pt:{x:"g26",y:"vc"}},{type:"lnTo",pt:{x:"g12",y:"vc"}},{type:"moveTo",pt:{x:"g26",y:"g22"}},{type:"lnTo",pt:{x:"g12",y:"g23"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},arc:{avLst:[{n:"adj1",f:"val 16200000"},{n:"adj2",f:"val 0"}],gdLst:[{n:"stAng",f:"pin 0 adj1 21599999"},{n:"enAng",f:"pin 0 adj2 21599999"},{n:"sw11",f:"+- enAng 0 stAng"},{n:"sw12",f:"+- sw11 21600000 0"},{n:"swAng",f:"?: sw11 sw11 sw12"},{n:"wt1",f:"sin wd2 stAng"},{n:"ht1",f:"cos hd2 stAng"},{n:"dx1",f:"cat2 wd2 ht1 wt1"},{n:"dy1",f:"sat2 hd2 ht1 wt1"},{n:"wt2",f:"sin wd2 enAng"},{n:"ht2",f:"cos hd2 enAng"},{n:"dx2",f:"cat2 wd2 ht2 wt2"},{n:"dy2",f:"sat2 hd2 ht2 wt2"},{n:"x1",f:"+- hc dx1 0"},{n:"y1",f:"+- vc dy1 0"},{n:"x2",f:"+- hc dx2 0"},{n:"y2",f:"+- vc dy2 0"},{n:"sw0",f:"+- 21600000 0 stAng"},{n:"da1",f:"+- swAng 0 sw0"},{n:"g1",f:"max x1 x2"},{n:"ir",f:"?: da1 r g1"},{n:"sw1",f:"+- cd4 0 stAng"},{n:"sw2",f:"+- 27000000 0 stAng"},{n:"sw3",f:"?: sw1 sw1 sw2"},{n:"da2",f:"+- swAng 0 sw3"},{n:"g5",f:"max y1 y2"},{n:"ib",f:"?: da2 b g5"},{n:"sw4",f:"+- cd2 0 stAng"},{n:"sw5",f:"+- 32400000 0 stAng"},{n:"sw6",f:"?: sw4 sw4 sw5"},{n:"da3",f:"+- swAng 0 sw6"},{n:"g9",f:"min x1 x2"},{n:"il",f:"?: da3 l g9"},{n:"sw7",f:"+- 3cd4 0 stAng"},{n:"sw8",f:"+- 37800000 0 stAng"},{n:"sw9",f:"?: sw7 sw7 sw8"},{n:"da4",f:"+- swAng 0 sw9"},{n:"g13",f:"min y1 y2"},{n:"it",f:"?: da4 t g13"},{n:"cang1",f:"+- stAng 0 cd4"},{n:"cang2",f:"+- enAng cd4 0"},{n:"cang3",f:"+/ cang1 cang2 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"stAng",swAng:"swAng"},{type:"lnTo",pt:{x:"hc",y:"vc"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"stAng",swAng:"swAng"}],fill:"none",extrusionOk:!1,stroke:!0}]},bentArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"},{n:"adj4",f:"val 43750"}],gdLst:[{n:"a2",f:"pin 0 adj2 50000"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"a3",f:"pin 0 adj3 50000"},{n:"th",f:"*/ ss a1 100000"},{n:"aw2",f:"*/ ss a2 100000"},{n:"th2",f:"*/ th 1 2"},{n:"dh2",f:"+- aw2 0 th2"},{n:"ah",f:"*/ ss a3 100000"},{n:"bw",f:"+- r 0 ah"},{n:"bh",f:"+- b 0 dh2"},{n:"bs",f:"min bw bh"},{n:"maxAdj4",f:"*/ 100000 bs ss"},{n:"a4",f:"pin 0 adj4 maxAdj4"},{n:"bd",f:"*/ ss a4 100000"},{n:"bd3",f:"+- bd 0 th"},{n:"bd2",f:"max bd3 0"},{n:"x3",f:"+- th bd2 0"},{n:"x4",f:"+- r 0 ah"},{n:"y3",f:"+- dh2 th 0"},{n:"y4",f:"+- y3 dh2 0"},{n:"y5",f:"+- dh2 bd 0"},{n:"y6",f:"+- y3 bd2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"l",y:"y5"}},{type:"arcTo",wR:"bd",hR:"bd",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x4",y:"dh2"}},{type:"lnTo",pt:{x:"x4",y:"t"}},{type:"lnTo",pt:{x:"r",y:"aw2"}},{type:"lnTo",pt:{x:"x4",y:"y4"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"arcTo",wR:"bd2",hR:"bd2",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"th",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},bentConnector2:{pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0}]},bentConnector3:{avLst:[{n:"adj1",f:"val 50000"}],gdLst:[{n:"x1",f:"*/ w adj1 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"r",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0}]},bentConnector4:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"x1",f:"*/ w adj1 100000"},{n:"x2",f:"+/ x1 r 2"},{n:"y2",f:"*/ h adj2 100000"},{n:"y1",f:"+/ t y2 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0}]},bentConnector5:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"},{n:"adj3",f:"val 50000"}],gdLst:[{n:"x1",f:"*/ w adj1 100000"},{n:"x3",f:"*/ w adj3 100000"},{n:"x2",f:"+/ x1 x3 2"},{n:"y2",f:"*/ h adj2 100000"},{n:"y1",f:"+/ t y2 2"},{n:"y3",f:"+/ b y2 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"b"}},{type:"lnTo",pt:{x:"r",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0}]},bentUpArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"}],gdLst:[{n:"a1",f:"pin 0 adj1 50000"},{n:"a2",f:"pin 0 adj2 50000"},{n:"a3",f:"pin 0 adj3 50000"},{n:"y1",f:"*/ ss a3 100000"},{n:"dx1",f:"*/ ss a2 50000"},{n:"x1",f:"+- r 0 dx1"},{n:"dx3",f:"*/ ss a2 100000"},{n:"x3",f:"+- r 0 dx3"},{n:"dx2",f:"*/ ss a1 200000"},{n:"x2",f:"+- x3 0 dx2"},{n:"x4",f:"+- x3 dx2 0"},{n:"dy2",f:"*/ ss a1 100000"},{n:"y2",f:"+- b 0 dy2"},{n:"x0",f:"*/ x4 1 2"},{n:"y3",f:"+/ y2 b 2"},{n:"y15",f:"+/ y1 b 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"lnTo",pt:{x:"r",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},bevel:{avLst:[{n:"adj",f:"val 12500"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"x1",f:"*/ ss a 100000"},{n:"x2",f:"+- r 0 x1"},{n:"y2",f:"+- b 0 x1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"x1"}},{type:"lnTo",pt:{x:"x2",y:"x1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"x1"}},{type:"lnTo",pt:{x:"x1",y:"x1"}},{type:"close"}],fill:"lightenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"x1"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],fill:"lighten",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"x1"}},{type:"close"}],fill:"darken",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"x1",y:"x1"}},{type:"lnTo",pt:{x:"x2",y:"x1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"close"},{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"x1"}},{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"moveTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"x1"}},{type:"moveTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"y2"}}],fill:"none",extrusionOk:!1,stroke:!0}]},blockArc:{avLst:[{n:"adj1",f:"val 10800000"},{n:"adj2",f:"val 0"},{n:"adj3",f:"val 25000"}],gdLst:[{n:"stAng",f:"pin 0 adj1 21599999"},{n:"istAng",f:"pin 0 adj2 21599999"},{n:"a3",f:"pin 0 adj3 50000"},{n:"sw11",f:"+- istAng 0 stAng"},{n:"sw12",f:"+- sw11 21600000 0"},{n:"swAng",f:"?: sw11 sw11 sw12"},{n:"iswAng",f:"+- 0 0 swAng"},{n:"wt1",f:"sin wd2 stAng"},{n:"ht1",f:"cos hd2 stAng"},{n:"wt3",f:"sin wd2 istAng"},{n:"ht3",f:"cos hd2 istAng"},{n:"dx1",f:"cat2 wd2 ht1 wt1"},{n:"dy1",f:"sat2 hd2 ht1 wt1"},{n:"dx3",f:"cat2 wd2 ht3 wt3"},{n:"dy3",f:"sat2 hd2 ht3 wt3"},{n:"x1",f:"+- hc dx1 0"},{n:"y1",f:"+- vc dy1 0"},{n:"x3",f:"+- hc dx3 0"},{n:"y3",f:"+- vc dy3 0"},{n:"dr",f:"*/ ss a3 100000"},{n:"iwd2",f:"+- wd2 0 dr"},{n:"ihd2",f:"+- hd2 0 dr"},{n:"wt2",f:"sin iwd2 istAng"},{n:"ht2",f:"cos ihd2 istAng"},{n:"wt4",f:"sin iwd2 stAng"},{n:"ht4",f:"cos ihd2 stAng"},{n:"dx2",f:"cat2 iwd2 ht2 wt2"},{n:"dy2",f:"sat2 ihd2 ht2 wt2"},{n:"dx4",f:"cat2 iwd2 ht4 wt4"},{n:"dy4",f:"sat2 ihd2 ht4 wt4"},{n:"x2",f:"+- hc dx2 0"},{n:"y2",f:"+- vc dy2 0"},{n:"x4",f:"+- hc dx4 0"},{n:"y4",f:"+- vc dy4 0"},{n:"sw0",f:"+- 21600000 0 stAng"},{n:"da1",f:"+- swAng 0 sw0"},{n:"g1",f:"max x1 x2"},{n:"g2",f:"max x3 x4"},{n:"g3",f:"max g1 g2"},{n:"ir",f:"?: da1 r g3"},{n:"sw1",f:"+- cd4 0 stAng"},{n:"sw2",f:"+- 27000000 0 stAng"},{n:"sw3",f:"?: sw1 sw1 sw2"},{n:"da2",f:"+- swAng 0 sw3"},{n:"g5",f:"max y1 y2"},{n:"g6",f:"max y3 y4"},{n:"g7",f:"max g5 g6"},{n:"ib",f:"?: da2 b g7"},{n:"sw4",f:"+- cd2 0 stAng"},{n:"sw5",f:"+- 32400000 0 stAng"},{n:"sw6",f:"?: sw4 sw4 sw5"},{n:"da3",f:"+- swAng 0 sw6"},{n:"g9",f:"min x1 x2"},{n:"g10",f:"min x3 x4"},{n:"g11",f:"min g9 g10"},{n:"il",f:"?: da3 l g11"},{n:"sw7",f:"+- 3cd4 0 stAng"},{n:"sw8",f:"+- 37800000 0 stAng"},{n:"sw9",f:"?: sw7 sw7 sw8"},{n:"da4",f:"+- swAng 0 sw9"},{n:"g13",f:"min y1 y2"},{n:"g14",f:"min y3 y4"},{n:"g15",f:"min g13 g14"},{n:"it",f:"?: da4 t g15"},{n:"x5",f:"+/ x1 x4 2"},{n:"y5",f:"+/ y1 y4 2"},{n:"x6",f:"+/ x3 x2 2"},{n:"y6",f:"+/ y3 y2 2"},{n:"cang1",f:"+- stAng 0 cd4"},{n:"cang2",f:"+- istAng cd4 0"},{n:"cang3",f:"+/ cang1 cang2 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"stAng",swAng:"swAng"},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"arcTo",wR:"iwd2",hR:"ihd2",stAng:"istAng",swAng:"iswAng"},{type:"close"}],extrusionOk:!1,stroke:!0}]},borderCallout1:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 112500"},{n:"adj4",f:"val -38333"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}}],fill:"none",extrusionOk:!1,stroke:!0}]},borderCallout2:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 18750"},{n:"adj4",f:"val -16667"},{n:"adj5",f:"val 112500"},{n:"adj6",f:"val -46667"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"},{n:"y3",f:"*/ h adj5 100000"},{n:"x3",f:"*/ w adj6 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y3"}}],fill:"none",extrusionOk:!1,stroke:!0}]},borderCallout3:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 18750"},{n:"adj4",f:"val -16667"},{n:"adj5",f:"val 100000"},{n:"adj6",f:"val -16667"},{n:"adj7",f:"val 112963"},{n:"adj8",f:"val -8333"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"},{n:"y3",f:"*/ h adj5 100000"},{n:"x3",f:"*/ w adj6 100000"},{n:"y4",f:"*/ h adj7 100000"},{n:"x4",f:"*/ w adj8 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x4",y:"y4"}}],fill:"none",extrusionOk:!1,stroke:!0}]},bracePair:{avLst:[{n:"adj",f:"val 8333"}],gdLst:[{n:"a",f:"pin 0 adj 25000"},{n:"x1",f:"*/ ss a 100000"},{n:"x2",f:"*/ ss a 50000"},{n:"x3",f:"+- r 0 x2"},{n:"x4",f:"+- r 0 x1"},{n:"y2",f:"+- vc 0 x1"},{n:"y3",f:"+- vc x1 0"},{n:"y4",f:"+- b 0 x1"},{n:"it",f:"*/ x1 29289 100000"},{n:"il",f:"+- x1 it 0"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 it"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x2",y:"b"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"0",swAng:"-5400000"},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"x1",y:"x1"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x4",y:"y2"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"-5400000"},{type:"arcTo",wR:"x1",hR:"x1",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"x4",y:"y4"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"0",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x2",y:"b"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"0",swAng:"-5400000"},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"x1",y:"x1"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"cd4"},{type:"moveTo",pt:{x:"x3",y:"t"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x4",y:"y2"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"-5400000"},{type:"arcTo",wR:"x1",hR:"x1",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"x4",y:"y4"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"0",swAng:"cd4"}],fill:"none",extrusionOk:!1,stroke:!0}]},bracketPair:{avLst:[{n:"adj",f:"val 16667"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"x1",f:"*/ ss a 100000"},{n:"x2",f:"+- r 0 x1"},{n:"y2",f:"+- b 0 x1"},{n:"il",f:"*/ x1 29289 100000"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"x1"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd4",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"b"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"l",y:"x1"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"cd4"},{type:"moveTo",pt:{x:"x2",y:"t"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"0",swAng:"cd4"}],fill:"none",extrusionOk:!1,stroke:!0}]},callout1:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 112500"},{n:"adj4",f:"val -38333"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}}],fill:"none",extrusionOk:!1,stroke:!0}]},callout2:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 18750"},{n:"adj4",f:"val -16667"},{n:"adj5",f:"val 112500"},{n:"adj6",f:"val -46667"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"},{n:"y3",f:"*/ h adj5 100000"},{n:"x3",f:"*/ w adj6 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y3"}}],fill:"none",extrusionOk:!1,stroke:!0}]},callout3:{avLst:[{n:"adj1",f:"val 18750"},{n:"adj2",f:"val -8333"},{n:"adj3",f:"val 18750"},{n:"adj4",f:"val -16667"},{n:"adj5",f:"val 100000"},{n:"adj6",f:"val -16667"},{n:"adj7",f:"val 112963"},{n:"adj8",f:"val -8333"}],gdLst:[{n:"y1",f:"*/ h adj1 100000"},{n:"x1",f:"*/ w adj2 100000"},{n:"y2",f:"*/ h adj3 100000"},{n:"x2",f:"*/ w adj4 100000"},{n:"y3",f:"*/ h adj5 100000"},{n:"x3",f:"*/ w adj6 100000"},{n:"y4",f:"*/ h adj7 100000"},{n:"x4",f:"*/ w adj8 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x4",y:"y4"}}],fill:"none",extrusionOk:!1,stroke:!0}]},can:{avLst:[{n:"adj",f:"val 25000"}],gdLst:[{n:"maxAdj",f:"*/ 50000 h ss"},{n:"a",f:"pin 0 adj maxAdj"},{n:"y1",f:"*/ ss a 200000"},{n:"y2",f:"+- y1 y1 0"},{n:"y3",f:"+- b 0 y1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd2",swAng:"-10800000"},{type:"lnTo",pt:{x:"r",y:"y3"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"0",swAng:"cd2"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd2",swAng:"cd2"},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"0",swAng:"cd2"},{type:"close"}],fill:"lighten",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"r",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"0",swAng:"cd2"},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd2",swAng:"cd2"},{type:"lnTo",pt:{x:"r",y:"y3"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"0",swAng:"cd2"},{type:"lnTo",pt:{x:"l",y:"y1"}}],fill:"none",extrusionOk:!1,stroke:!0}]},chartPlus:{pathLst:[{defines:[{type:"moveTo",pt:{x:"5",y:"0"}},{type:"lnTo",pt:{x:"5",y:"10"}},{type:"moveTo",pt:{x:"0",y:"5"}},{type:"lnTo",pt:{x:"10",y:"5"}}],fill:"none",extrusionOk:!1,stroke:!0,w:10,h:10},{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"0",y:"10"}},{type:"lnTo",pt:{x:"10",y:"10"}},{type:"lnTo",pt:{x:"10",y:"0"}},{type:"close"}],extrusionOk:!1,stroke:!1,w:10,h:10}]},chartStar:{pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"10",y:"10"}},{type:"moveTo",pt:{x:"0",y:"10"}},{type:"lnTo",pt:{x:"10",y:"0"}},{type:"moveTo",pt:{x:"5",y:"0"}},{type:"lnTo",pt:{x:"5",y:"10"}}],fill:"none",extrusionOk:!1,stroke:!0,w:10,h:10},{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"0",y:"10"}},{type:"lnTo",pt:{x:"10",y:"10"}},{type:"lnTo",pt:{x:"10",y:"0"}},{type:"close"}],extrusionOk:!1,stroke:!1,w:10,h:10}]},chartX:{pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"10",y:"10"}},{type:"moveTo",pt:{x:"0",y:"10"}},{type:"lnTo",pt:{x:"10",y:"0"}}],fill:"none",extrusionOk:!1,stroke:!0,w:10,h:10},{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"0",y:"10"}},{type:"lnTo",pt:{x:"10",y:"10"}},{type:"lnTo",pt:{x:"10",y:"0"}},{type:"close"}],extrusionOk:!1,stroke:!1,w:10,h:10}]},chevron:{avLst:[{n:"adj",f:"val 50000"}],gdLst:[{n:"maxAdj",f:"*/ 100000 w ss"},{n:"a",f:"pin 0 adj maxAdj"},{n:"x1",f:"*/ ss a 100000"},{n:"x2",f:"+- r 0 x1"},{n:"x3",f:"*/ x2 1 2"},{n:"dx",f:"+- x2 0 x1"},{n:"il",f:"?: dx x1 l"},{n:"ir",f:"?: dx x2 r"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"vc"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},chord:{avLst:[{n:"adj1",f:"val 2700000"},{n:"adj2",f:"val 16200000"}],gdLst:[{n:"stAng",f:"pin 0 adj1 21599999"},{n:"enAng",f:"pin 0 adj2 21599999"},{n:"sw1",f:"+- enAng 0 stAng"},{n:"sw2",f:"+- sw1 21600000 0"},{n:"swAng",f:"?: sw1 sw1 sw2"},{n:"wt1",f:"sin wd2 stAng"},{n:"ht1",f:"cos hd2 stAng"},{n:"dx1",f:"cat2 wd2 ht1 wt1"},{n:"dy1",f:"sat2 hd2 ht1 wt1"},{n:"wt2",f:"sin wd2 enAng"},{n:"ht2",f:"cos hd2 enAng"},{n:"dx2",f:"cat2 wd2 ht2 wt2"},{n:"dy2",f:"sat2 hd2 ht2 wt2"},{n:"x1",f:"+- hc dx1 0"},{n:"y1",f:"+- vc dy1 0"},{n:"x2",f:"+- hc dx2 0"},{n:"y2",f:"+- vc dy2 0"},{n:"x3",f:"+/ x1 x2 2"},{n:"y3",f:"+/ y1 y2 2"},{n:"midAng0",f:"*/ swAng 1 2"},{n:"midAng",f:"+- stAng midAng0 cd2"},{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"stAng",swAng:"swAng"},{type:"close"}],extrusionOk:!1,stroke:!0}]},circularArrow:{avLst:[{n:"adj1",f:"val 12500"},{n:"adj2",f:"val 1142319"},{n:"adj3",f:"val 20457681"},{n:"adj4",f:"val 10800000"},{n:"adj5",f:"val 12500"}],gdLst:[{n:"a5",f:"pin 0 adj5 25000"},{n:"maxAdj1",f:"*/ a5 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"enAng",f:"pin 1 adj3 21599999"},{n:"stAng",f:"pin 0 adj4 21599999"},{n:"th",f:"*/ ss a1 100000"},{n:"thh",f:"*/ ss a5 100000"},{n:"th2",f:"*/ th 1 2"},{n:"rw1",f:"+- wd2 th2 thh"},{n:"rh1",f:"+- hd2 th2 thh"},{n:"rw2",f:"+- rw1 0 th"},{n:"rh2",f:"+- rh1 0 th"},{n:"rw3",f:"+- rw2 th2 0"},{n:"rh3",f:"+- rh2 th2 0"},{n:"wtH",f:"sin rw3 enAng"},{n:"htH",f:"cos rh3 enAng"},{n:"dxH",f:"cat2 rw3 htH wtH"},{n:"dyH",f:"sat2 rh3 htH wtH"},{n:"xH",f:"+- hc dxH 0"},{n:"yH",f:"+- vc dyH 0"},{n:"rI",f:"min rw2 rh2"},{n:"u1",f:"*/ dxH dxH 1"},{n:"u2",f:"*/ dyH dyH 1"},{n:"u3",f:"*/ rI rI 1"},{n:"u4",f:"+- u1 0 u3"},{n:"u5",f:"+- u2 0 u3"},{n:"u6",f:"*/ u4 u5 u1"},{n:"u7",f:"*/ u6 1 u2"},{n:"u8",f:"+- 1 0 u7"},{n:"u9",f:"sqrt u8"},{n:"u10",f:"*/ u4 1 dxH"},{n:"u11",f:"*/ u10 1 dyH"},{n:"u12",f:"+/ 1 u9 u11"},{n:"u13",f:"at2 1 u12"},{n:"u14",f:"+- u13 21600000 0"},{n:"u15",f:"?: u13 u13 u14"},{n:"u16",f:"+- u15 0 enAng"},{n:"u17",f:"+- u16 21600000 0"},{n:"u18",f:"?: u16 u16 u17"},{n:"u19",f:"+- u18 0 cd2"},{n:"u20",f:"+- u18 0 21600000"},{n:"u21",f:"?: u19 u20 u18"},{n:"maxAng",f:"abs u21"},{n:"aAng",f:"pin 0 adj2 maxAng"},{n:"ptAng",f:"+- enAng aAng 0"},{n:"wtA",f:"sin rw3 ptAng"},{n:"htA",f:"cos rh3 ptAng"},{n:"dxA",f:"cat2 rw3 htA wtA"},{n:"dyA",f:"sat2 rh3 htA wtA"},{n:"xA",f:"+- hc dxA 0"},{n:"yA",f:"+- vc dyA 0"},{n:"wtE",f:"sin rw1 stAng"},{n:"htE",f:"cos rh1 stAng"},{n:"dxE",f:"cat2 rw1 htE wtE"},{n:"dyE",f:"sat2 rh1 htE wtE"},{n:"xE",f:"+- hc dxE 0"},{n:"yE",f:"+- vc dyE 0"},{n:"dxG",f:"cos thh ptAng"},{n:"dyG",f:"sin thh ptAng"},{n:"xG",f:"+- xH dxG 0"},{n:"yG",f:"+- yH dyG 0"},{n:"dxB",f:"cos thh ptAng"},{n:"dyB",f:"sin thh ptAng"},{n:"xB",f:"+- xH 0 dxB 0"},{n:"yB",f:"+- yH 0 dyB 0"},{n:"sx1",f:"+- xB 0 hc"},{n:"sy1",f:"+- yB 0 vc"},{n:"sx2",f:"+- xG 0 hc"},{n:"sy2",f:"+- yG 0 vc"},{n:"rO",f:"min rw1 rh1"},{n:"x1O",f:"*/ sx1 rO rw1"},{n:"y1O",f:"*/ sy1 rO rh1"},{n:"x2O",f:"*/ sx2 rO rw1"},{n:"y2O",f:"*/ sy2 rO rh1"},{n:"dxO",f:"+- x2O 0 x1O"},{n:"dyO",f:"+- y2O 0 y1O"},{n:"dO",f:"mod dxO dyO 0"},{n:"q1",f:"*/ x1O y2O 1"},{n:"q2",f:"*/ x2O y1O 1"},{n:"DO",f:"+- q1 0 q2"},{n:"q3",f:"*/ rO rO 1"},{n:"q4",f:"*/ dO dO 1"},{n:"q5",f:"*/ q3 q4 1"},{n:"q6",f:"*/ DO DO 1"},{n:"q7",f:"+- q5 0 q6"},{n:"q8",f:"max q7 0"},{n:"sdelO",f:"sqrt q8"},{n:"ndyO",f:"*/ dyO -1 1"},{n:"sdyO",f:"?: ndyO -1 1"},{n:"q9",f:"*/ sdyO dxO 1"},{n:"q10",f:"*/ q9 sdelO 1"},{n:"q11",f:"*/ DO dyO 1"},{n:"dxF1",f:"+/ q11 q10 q4"},{n:"q12",f:"+- q11 0 q10"},{n:"dxF2",f:"*/ q12 1 q4"},{n:"adyO",f:"abs dyO"},{n:"q13",f:"*/ adyO sdelO 1"},{n:"q14",f:"*/ DO dxO -1"},{n:"dyF1",f:"+/ q14 q13 q4"},{n:"q15",f:"+- q14 0 q13"},{n:"dyF2",f:"*/ q15 1 q4"},{n:"q16",f:"+- x2O 0 dxF1"},{n:"q17",f:"+- x2O 0 dxF2"},{n:"q18",f:"+- y2O 0 dyF1"},{n:"q19",f:"+- y2O 0 dyF2"},{n:"q20",f:"mod q16 q18 0"},{n:"q21",f:"mod q17 q19 0"},{n:"q22",f:"+- q21 0 q20"},{n:"dxF",f:"?: q22 dxF1 dxF2"},{n:"dyF",f:"?: q22 dyF1 dyF2"},{n:"sdxF",f:"*/ dxF rw1 rO"},{n:"sdyF",f:"*/ dyF rh1 rO"},{n:"xF",f:"+- hc sdxF 0"},{n:"yF",f:"+- vc sdyF 0"},{n:"x1I",f:"*/ sx1 rI rw2"},{n:"y1I",f:"*/ sy1 rI rh2"},{n:"x2I",f:"*/ sx2 rI rw2"},{n:"y2I",f:"*/ sy2 rI rh2"},{n:"dxI",f:"+- x2I 0 x1I"},{n:"dyI",f:"+- y2I 0 y1I"},{n:"dI",f:"mod dxI dyI 0"},{n:"v1",f:"*/ x1I y2I 1"},{n:"v2",f:"*/ x2I y1I 1"},{n:"DI",f:"+- v1 0 v2"},{n:"v3",f:"*/ rI rI 1"},{n:"v4",f:"*/ dI dI 1"},{n:"v5",f:"*/ v3 v4 1"},{n:"v6",f:"*/ DI DI 1"},{n:"v7",f:"+- v5 0 v6"},{n:"v8",f:"max v7 0"},{n:"sdelI",f:"sqrt v8"},{n:"v9",f:"*/ sdyO dxI 1"},{n:"v10",f:"*/ v9 sdelI 1"},{n:"v11",f:"*/ DI dyI 1"},{n:"dxC1",f:"+/ v11 v10 v4"},{n:"v12",f:"+- v11 0 v10"},{n:"dxC2",f:"*/ v12 1 v4"},{n:"adyI",f:"abs dyI"},{n:"v13",f:"*/ adyI sdelI 1"},{n:"v14",f:"*/ DI dxI -1"},{n:"dyC1",f:"+/ v14 v13 v4"},{n:"v15",f:"+- v14 0 v13"},{n:"dyC2",f:"*/ v15 1 v4"},{n:"v16",f:"+- x1I 0 dxC1"},{n:"v17",f:"+- x1I 0 dxC2"},{n:"v18",f:"+- y1I 0 dyC1"},{n:"v19",f:"+- y1I 0 dyC2"},{n:"v20",f:"mod v16 v18 0"},{n:"v21",f:"mod v17 v19 0"},{n:"v22",f:"+- v21 0 v20"},{n:"dxC",f:"?: v22 dxC1 dxC2"},{n:"dyC",f:"?: v22 dyC1 dyC2"},{n:"sdxC",f:"*/ dxC rw2 rI"},{n:"sdyC",f:"*/ dyC rh2 rI"},{n:"xC",f:"+- hc sdxC 0"},{n:"yC",f:"+- vc sdyC 0"},{n:"ist0",f:"at2 sdxC sdyC"},{n:"ist1",f:"+- ist0 21600000 0"},{n:"istAng",f:"?: ist0 ist0 ist1"},{n:"isw1",f:"+- stAng 0 istAng"},{n:"isw2",f:"+- isw1 0 21600000"},{n:"iswAng",f:"?: isw1 isw2 isw1"},{n:"p1",f:"+- xF 0 xC"},{n:"p2",f:"+- yF 0 yC"},{n:"p3",f:"mod p1 p2 0"},{n:"p4",f:"*/ p3 1 2"},{n:"p5",f:"+- p4 0 thh"},{n:"xGp",f:"?: p5 xF xG"},{n:"yGp",f:"?: p5 yF yG"},{n:"xBp",f:"?: p5 xC xB"},{n:"yBp",f:"?: p5 yC yB"},{n:"en0",f:"at2 sdxF sdyF"},{n:"en1",f:"+- en0 21600000 0"},{n:"en2",f:"?: en0 en0 en1"},{n:"sw0",f:"+- en2 0 stAng"},{n:"sw1",f:"+- sw0 21600000 0"},{n:"swAng",f:"?: sw0 sw0 sw1"},{n:"wtI",f:"sin rw3 stAng"},{n:"htI",f:"cos rh3 stAng"},{n:"dxI",f:"cat2 rw3 htI wtI"},{n:"dyI",f:"sat2 rh3 htI wtI"},{n:"xI",f:"+- hc dxI 0"},{n:"yI",f:"+- vc dyI 0"},{n:"aI",f:"+- stAng 0 cd4"},{n:"aA",f:"+- ptAng cd4 0"},{n:"aB",f:"+- ptAng cd2 0"},{n:"idx",f:"cos rw1 2700000"},{n:"idy",f:"sin rh1 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"xE",y:"yE"}},{type:"arcTo",wR:"rw1",hR:"rh1",stAng:"stAng",swAng:"swAng"},{type:"lnTo",pt:{x:"xGp",y:"yGp"}},{type:"lnTo",pt:{x:"xA",y:"yA"}},{type:"lnTo",pt:{x:"xBp",y:"yBp"}},{type:"lnTo",pt:{x:"xC",y:"yC"}},{type:"arcTo",wR:"rw2",hR:"rh2",stAng:"istAng",swAng:"iswAng"},{type:"close"}],extrusionOk:!1,stroke:!0}]},cloud:{gdLst:[{n:"il",f:"*/ w 2977 21600"},{n:"it",f:"*/ h 3262 21600"},{n:"ir",f:"*/ w 17087 21600"},{n:"ib",f:"*/ h 17337 21600"},{n:"g27",f:"*/ w 67 21600"},{n:"g28",f:"*/ h 21577 21600"},{n:"g29",f:"*/ w 21582 21600"},{n:"g30",f:"*/ h 1235 21600"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"3900",y:"14370"}},{type:"arcTo",wR:"6753",hR:"9190",stAng:"-11429249",swAng:"7426832"},{type:"arcTo",wR:"5333",hR:"7267",stAng:"-8646143",swAng:"5396714"},{type:"arcTo",wR:"4365",hR:"5945",stAng:"-8748475",swAng:"5983381"},{type:"arcTo",wR:"4857",hR:"6595",stAng:"-7859164",swAng:"7034504"},{type:"arcTo",wR:"5333",hR:"7273",stAng:"-4722533",swAng:"6541615"},{type:"arcTo",wR:"6775",hR:"9220",stAng:"-2776035",swAng:"7816140"},{type:"arcTo",wR:"5785",hR:"7867",stAng:"37501",swAng:"6842000"},{type:"arcTo",wR:"6752",hR:"9215",stAng:"1347096",swAng:"6910353"},{type:"arcTo",wR:"7720",hR:"10543",stAng:"3974558",swAng:"4542661"},{type:"arcTo",wR:"4360",hR:"5918",stAng:"-16496525",swAng:"8804134"},{type:"arcTo",wR:"4345",hR:"5945",stAng:"-14809710",swAng:"9151131"},{type:"close"}],extrusionOk:!1,stroke:!0,w:43200,h:43200},{defines:[{type:"moveTo",pt:{x:"4693",y:"26177"}},{type:"arcTo",wR:"4345",hR:"5945",stAng:"5204520",swAng:"1585770"},{type:"moveTo",pt:{x:"6928",y:"34899"}},{type:"arcTo",wR:"4360",hR:"5918",stAng:"4416628",swAng:"686848"},{type:"moveTo",pt:{x:"16478",y:"39090"}},{type:"arcTo",wR:"6752",hR:"9215",stAng:"8257449",swAng:"844866"},{type:"moveTo",pt:{x:"28827",y:"34751"}},{type:"arcTo",wR:"6752",hR:"9215",stAng:"387196",swAng:"959901"},{type:"moveTo",pt:{x:"34129",y:"22954"}},{type:"arcTo",wR:"5785",hR:"7867",stAng:"-4217541",swAng:"4255042"},{type:"moveTo",pt:{x:"41798",y:"15354"}},{type:"arcTo",wR:"5333",hR:"7273",stAng:"1819082",swAng:"1665090"},{type:"moveTo",pt:{x:"38324",y:"5426"}},{type:"arcTo",wR:"4857",hR:"6595",stAng:"-824660",swAng:"891534"},{type:"moveTo",pt:{x:"29078",y:"3952"}},{type:"arcTo",wR:"4857",hR:"6595",stAng:"-8950887",swAng:"1091722"},{type:"moveTo",pt:{x:"22141",y:"4720"}},{type:"arcTo",wR:"4365",hR:"5945",stAng:"-9809656",swAng:"1061181"},{type:"moveTo",pt:{x:"14000",y:"5192"}},{type:"arcTo",wR:"6753",hR:"9190",stAng:"-4002417",swAng:"739161"},{type:"moveTo",pt:{x:"4127",y:"15789"}},{type:"arcTo",wR:"6753",hR:"9190",stAng:"9459261",swAng:"711490"}],fill:"none",extrusionOk:!1,stroke:!0,w:43200,h:43200}]},cloudCallout:{avLst:[{n:"adj1",f:"val -20833"},{n:"adj2",f:"val 62500"}],gdLst:[{n:"dxPos",f:"*/ w adj1 100000"},{n:"dyPos",f:"*/ h adj2 100000"},{n:"xPos",f:"+- hc dxPos 0"},{n:"yPos",f:"+- vc dyPos 0"},{n:"ht",f:"cat2 hd2 dxPos dyPos"},{n:"wt",f:"sat2 wd2 dxPos dyPos"},{n:"g2",f:"cat2 wd2 ht wt"},{n:"g3",f:"sat2 hd2 ht wt"},{n:"g4",f:"+- hc g2 0"},{n:"g5",f:"+- vc g3 0"},{n:"g6",f:"+- g4 0 xPos"},{n:"g7",f:"+- g5 0 yPos"},{n:"g8",f:"mod g6 g7 0"},{n:"g9",f:"*/ ss 6600 21600"},{n:"g10",f:"+- g8 0 g9"},{n:"g11",f:"*/ g10 1 3"},{n:"g12",f:"*/ ss 1800 21600"},{n:"g13",f:"+- g11 g12 0"},{n:"g14",f:"*/ g13 g6 g8"},{n:"g15",f:"*/ g13 g7 g8"},{n:"g16",f:"+- g14 xPos 0"},{n:"g17",f:"+- g15 yPos 0"},{n:"g18",f:"*/ ss 4800 21600"},{n:"g19",f:"*/ g11 2 1"},{n:"g20",f:"+- g18 g19 0"},{n:"g21",f:"*/ g20 g6 g8"},{n:"g22",f:"*/ g20 g7 g8"},{n:"g23",f:"+- g21 xPos 0"},{n:"g24",f:"+- g22 yPos 0"},{n:"g25",f:"*/ ss 1200 21600"},{n:"g26",f:"*/ ss 600 21600"},{n:"x23",f:"+- xPos g26 0"},{n:"x24",f:"+- g16 g25 0"},{n:"x25",f:"+- g23 g12 0"},{n:"il",f:"*/ w 2977 21600"},{n:"it",f:"*/ h 3262 21600"},{n:"ir",f:"*/ w 17087 21600"},{n:"ib",f:"*/ h 17337 21600"},{n:"g27",f:"*/ w 67 21600"},{n:"g28",f:"*/ h 21577 21600"},{n:"g29",f:"*/ w 21582 21600"},{n:"g30",f:"*/ h 1235 21600"},{n:"pang",f:"at2 dxPos dyPos"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"3900",y:"14370"}},{type:"arcTo",wR:"6753",hR:"9190",stAng:"-11429249",swAng:"7426832"},{type:"arcTo",wR:"5333",hR:"7267",stAng:"-8646143",swAng:"5396714"},{type:"arcTo",wR:"4365",hR:"5945",stAng:"-8748475",swAng:"5983381"},{type:"arcTo",wR:"4857",hR:"6595",stAng:"-7859164",swAng:"7034504"},{type:"arcTo",wR:"5333",hR:"7273",stAng:"-4722533",swAng:"6541615"},{type:"arcTo",wR:"6775",hR:"9220",stAng:"-2776035",swAng:"7816140"},{type:"arcTo",wR:"5785",hR:"7867",stAng:"37501",swAng:"6842000"},{type:"arcTo",wR:"6752",hR:"9215",stAng:"1347096",swAng:"6910353"},{type:"arcTo",wR:"7720",hR:"10543",stAng:"3974558",swAng:"4542661"},{type:"arcTo",wR:"4360",hR:"5918",stAng:"-16496525",swAng:"8804134"},{type:"arcTo",wR:"4345",hR:"5945",stAng:"-14809710",swAng:"9151131"},{type:"close"}],extrusionOk:!1,stroke:!0,w:43200,h:43200},{defines:[{type:"moveTo",pt:{x:"x23",y:"yPos"}},{type:"arcTo",wR:"g26",hR:"g26",stAng:"0",swAng:"21600000"},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x24",y:"g17"}},{type:"arcTo",wR:"g25",hR:"g25",stAng:"0",swAng:"21600000"},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x25",y:"g24"}},{type:"arcTo",wR:"g12",hR:"g12",stAng:"0",swAng:"21600000"},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"4693",y:"26177"}},{type:"arcTo",wR:"4345",hR:"5945",stAng:"5204520",swAng:"1585770"},{type:"moveTo",pt:{x:"6928",y:"34899"}},{type:"arcTo",wR:"4360",hR:"5918",stAng:"4416628",swAng:"686848"},{type:"moveTo",pt:{x:"16478",y:"39090"}},{type:"arcTo",wR:"6752",hR:"9215",stAng:"8257449",swAng:"844866"},{type:"moveTo",pt:{x:"28827",y:"34751"}},{type:"arcTo",wR:"6752",hR:"9215",stAng:"387196",swAng:"959901"},{type:"moveTo",pt:{x:"34129",y:"22954"}},{type:"arcTo",wR:"5785",hR:"7867",stAng:"-4217541",swAng:"4255042"},{type:"moveTo",pt:{x:"41798",y:"15354"}},{type:"arcTo",wR:"5333",hR:"7273",stAng:"1819082",swAng:"1665090"},{type:"moveTo",pt:{x:"38324",y:"5426"}},{type:"arcTo",wR:"4857",hR:"6595",stAng:"-824660",swAng:"891534"},{type:"moveTo",pt:{x:"29078",y:"3952"}},{type:"arcTo",wR:"4857",hR:"6595",stAng:"-8950887",swAng:"1091722"},{type:"moveTo",pt:{x:"22141",y:"4720"}},{type:"arcTo",wR:"4365",hR:"5945",stAng:"-9809656",swAng:"1061181"},{type:"moveTo",pt:{x:"14000",y:"5192"}},{type:"arcTo",wR:"6753",hR:"9190",stAng:"-4002417",swAng:"739161"},{type:"moveTo",pt:{x:"4127",y:"15789"}},{type:"arcTo",wR:"6753",hR:"9190",stAng:"9459261",swAng:"711490"}],fill:"none",extrusionOk:!1,stroke:!0,w:43200,h:43200}]},corner:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"maxAdj1",f:"*/ 100000 h ss"},{n:"maxAdj2",f:"*/ 100000 w ss"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"x1",f:"*/ ss a2 100000"},{n:"dy1",f:"*/ ss a1 100000"},{n:"y1",f:"+- b 0 dy1"},{n:"cx1",f:"*/ x1 1 2"},{n:"cy1",f:"+/ y1 b 2"},{n:"d",f:"+- w 0 h"},{n:"it",f:"?: d y1 t"},{n:"ir",f:"?: d r x1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},cornerTabs:{gdLst:[{n:"md",f:"mod w h 0"},{n:"dx",f:"*/ 1 md 20"},{n:"y1",f:"+- 0 b dx"},{n:"x1",f:"+- 0 r dx"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"dx",y:"t"}},{type:"lnTo",pt:{x:"l",y:"dx"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"dx",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"dx"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"r",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},cube:{avLst:[{n:"adj",f:"val 25000"}],gdLst:[{n:"a",f:"pin 0 adj 100000"},{n:"y1",f:"*/ ss a 100000"},{n:"y4",f:"+- b 0 y1"},{n:"y2",f:"*/ y4 1 2"},{n:"y3",f:"+/ y1 b 2"},{n:"x4",f:"+- r 0 y1"},{n:"x2",f:"*/ x4 1 2"},{n:"x3",f:"+/ y1 r 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"y4"}},{type:"lnTo",pt:{x:"x4",y:"b"}},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"y1",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"close"}],fill:"lightenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"y1",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"y4"}},{type:"lnTo",pt:{x:"x4",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"moveTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0}]},curvedConnector2:{pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"cubicBezTo",pts:[{x:"wd2",y:"t"},{x:"r",y:"hd2"},{x:"r",y:"b"}]}],fill:"none",extrusionOk:!1,stroke:!0}]},curvedConnector3:{avLst:[{n:"adj1",f:"val 50000"}],gdLst:[{n:"x2",f:"*/ w adj1 100000"},{n:"x1",f:"+/ l x2 2"},{n:"x3",f:"+/ r x2 2"},{n:"y3",f:"*/ h 3 4"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"cubicBezTo",pts:[{x:"x1",y:"t"},{x:"x2",y:"hd4"},{x:"x2",y:"vc"}]},{type:"cubicBezTo",pts:[{x:"x2",y:"y3"},{x:"x3",y:"b"},{x:"r",y:"b"}]}],fill:"none",extrusionOk:!1,stroke:!0}]},curvedConnector4:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"x2",f:"*/ w adj1 100000"},{n:"x1",f:"+/ l x2 2"},{n:"x3",f:"+/ r x2 2"},{n:"x4",f:"+/ x2 x3 2"},{n:"x5",f:"+/ x3 r 2"},{n:"y4",f:"*/ h adj2 100000"},{n:"y1",f:"+/ t y4 2"},{n:"y2",f:"+/ t y1 2"},{n:"y3",f:"+/ y1 y4 2"},{n:"y5",f:"+/ b y4 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"cubicBezTo",pts:[{x:"x1",y:"t"},{x:"x2",y:"y2"},{x:"x2",y:"y1"}]},{type:"cubicBezTo",pts:[{x:"x2",y:"y3"},{x:"x4",y:"y4"},{x:"x3",y:"y4"}]},{type:"cubicBezTo",pts:[{x:"x5",y:"y4"},{x:"r",y:"y5"},{x:"r",y:"b"}]}],fill:"none",extrusionOk:!1,stroke:!0}]},curvedConnector5:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"},{n:"adj3",f:"val 50000"}],gdLst:[{n:"x3",f:"*/ w adj1 100000"},{n:"x6",f:"*/ w adj3 100000"},{n:"x1",f:"+/ x3 x6 2"},{n:"x2",f:"+/ l x3 2"},{n:"x4",f:"+/ x3 x1 2"},{n:"x5",f:"+/ x6 x1 2"},{n:"x7",f:"+/ x6 r 2"},{n:"y4",f:"*/ h adj2 100000"},{n:"y1",f:"+/ t y4 2"},{n:"y2",f:"+/ t y1 2"},{n:"y3",f:"+/ y1 y4 2"},{n:"y5",f:"+/ b y4 2"},{n:"y6",f:"+/ y5 y4 2"},{n:"y7",f:"+/ y5 b 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"cubicBezTo",pts:[{x:"x2",y:"t"},{x:"x3",y:"y2"},{x:"x3",y:"y1"}]},{type:"cubicBezTo",pts:[{x:"x3",y:"y3"},{x:"x4",y:"y4"},{x:"x1",y:"y4"}]},{type:"cubicBezTo",pts:[{x:"x5",y:"y4"},{x:"x6",y:"y6"},{x:"x6",y:"y5"}]},{type:"cubicBezTo",pts:[{x:"x6",y:"y7"},{x:"x7",y:"b"},{x:"r",y:"b"}]}],fill:"none",extrusionOk:!1,stroke:!0}]},curvedDownArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 50000"},{n:"adj3",f:"val 25000"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 w ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"a1",f:"pin 0 adj1 100000"},{n:"th",f:"*/ ss a1 100000"},{n:"aw",f:"*/ ss a2 100000"},{n:"q1",f:"+/ th aw 4"},{n:"wR",f:"+- wd2 0 q1"},{n:"q7",f:"*/ wR 2 1"},{n:"q8",f:"*/ q7 q7 1"},{n:"q9",f:"*/ th th 1"},{n:"q10",f:"+- q8 0 q9"},{n:"q11",f:"sqrt q10"},{n:"idy",f:"*/ q11 h q7"},{n:"maxAdj3",f:"*/ 100000 idy ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"ah",f:"*/ ss adj3 100000"},{n:"x3",f:"+- wR th 0"},{n:"q2",f:"*/ h h 1"},{n:"q3",f:"*/ ah ah 1"},{n:"q4",f:"+- q2 0 q3"},{n:"q5",f:"sqrt q4"},{n:"dx",f:"*/ q5 wR h"},{n:"x5",f:"+- wR dx 0"},{n:"x7",f:"+- x3 dx 0"},{n:"q6",f:"+- aw 0 th"},{n:"dh",f:"*/ q6 1 2"},{n:"x4",f:"+- x5 0 dh"},{n:"x8",f:"+- x7 dh 0"},{n:"aw2",f:"*/ aw 1 2"},{n:"x6",f:"+- r 0 aw2"},{n:"y1",f:"+- b 0 ah"},{n:"swAng",f:"at2 ah dx"},{n:"mswAng",f:"+- 0 0 swAng"},{n:"iy",f:"+- b 0 idy"},{n:"ix",f:"+/ wR x3 2"},{n:"q12",f:"*/ th 1 2"},{n:"dang2",f:"at2 idy q12"},{n:"stAng",f:"+- 3cd4 swAng 0"},{n:"stAng2",f:"+- 3cd4 0 dang2"},{n:"swAng2",f:"+- dang2 0 cd4"},{n:"swAng3",f:"+- cd4 dang2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x6",y:"b"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x5",y:"y1"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"stAng",swAng:"mswAng"},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"3cd4",swAng:"swAng"},{type:"lnTo",pt:{x:"x8",y:"y1"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"ix",y:"iy"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"stAng2",swAng:"swAng2"},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"cd2",swAng:"swAng3"},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"ix",y:"iy"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"stAng2",swAng:"swAng2"},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"3cd4",swAng:"swAng"},{type:"lnTo",pt:{x:"x8",y:"y1"}},{type:"lnTo",pt:{x:"x6",y:"b"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x5",y:"y1"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"stAng",swAng:"mswAng"}],fill:"none",extrusionOk:!1,stroke:!0}]},curvedLeftArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 50000"},{n:"adj3",f:"val 25000"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 h ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"a1",f:"pin 0 adj1 a2"},{n:"th",f:"*/ ss a1 100000"},{n:"aw",f:"*/ ss a2 100000"},{n:"q1",f:"+/ th aw 4"},{n:"hR",f:"+- hd2 0 q1"},{n:"q7",f:"*/ hR 2 1"},{n:"q8",f:"*/ q7 q7 1"},{n:"q9",f:"*/ th th 1"},{n:"q10",f:"+- q8 0 q9"},{n:"q11",f:"sqrt q10"},{n:"idx",f:"*/ q11 w q7"},{n:"maxAdj3",f:"*/ 100000 idx ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"ah",f:"*/ ss a3 100000"},{n:"y3",f:"+- hR th 0"},{n:"q2",f:"*/ w w 1"},{n:"q3",f:"*/ ah ah 1"},{n:"q4",f:"+- q2 0 q3"},{n:"q5",f:"sqrt q4"},{n:"dy",f:"*/ q5 hR w"},{n:"y5",f:"+- hR dy 0"},{n:"y7",f:"+- y3 dy 0"},{n:"q6",f:"+- aw 0 th"},{n:"dh",f:"*/ q6 1 2"},{n:"y4",f:"+- y5 0 dh"},{n:"y8",f:"+- y7 dh 0"},{n:"aw2",f:"*/ aw 1 2"},{n:"y6",f:"+- b 0 aw2"},{n:"x1",f:"+- l ah 0"},{n:"swAng",f:"at2 ah dy"},{n:"mswAng",f:"+- 0 0 swAng"},{n:"ix",f:"+- l idx 0"},{n:"iy",f:"+/ hR y3 2"},{n:"q12",f:"*/ th 1 2"},{n:"dang2",f:"at2 idx q12"},{n:"swAng2",f:"+- dang2 0 swAng"},{n:"swAng3",f:"+- swAng dang2 0"},{n:"stAng3",f:"+- 0 0 dang2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y6"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y5"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"swAng",swAng:"swAng2"},{type:"arcTo",wR:"w",hR:"hR",stAng:"stAng3",swAng:"swAng3"},{type:"lnTo",pt:{x:"x1",y:"y8"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"r",y:"y3"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"0",swAng:"-5400000"},{type:"lnTo",pt:{x:"l",y:"t"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"3cd4",swAng:"cd4"},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"r",y:"y3"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"0",swAng:"-5400000"},{type:"lnTo",pt:{x:"l",y:"t"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"y3"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"0",swAng:"swAng"},{type:"lnTo",pt:{x:"x1",y:"y8"}},{type:"lnTo",pt:{x:"l",y:"y6"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y5"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"swAng",swAng:"swAng2"}],fill:"none",extrusionOk:!1,stroke:!0}]},curvedRightArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 50000"},{n:"adj3",f:"val 25000"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 h ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"a1",f:"pin 0 adj1 a2"},{n:"th",f:"*/ ss a1 100000"},{n:"aw",f:"*/ ss a2 100000"},{n:"q1",f:"+/ th aw 4"},{n:"hR",f:"+- hd2 0 q1"},{n:"q7",f:"*/ hR 2 1"},{n:"q8",f:"*/ q7 q7 1"},{n:"q9",f:"*/ th th 1"},{n:"q10",f:"+- q8 0 q9"},{n:"q11",f:"sqrt q10"},{n:"idx",f:"*/ q11 w q7"},{n:"maxAdj3",f:"*/ 100000 idx ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"ah",f:"*/ ss a3 100000"},{n:"y3",f:"+- hR th 0"},{n:"q2",f:"*/ w w 1"},{n:"q3",f:"*/ ah ah 1"},{n:"q4",f:"+- q2 0 q3"},{n:"q5",f:"sqrt q4"},{n:"dy",f:"*/ q5 hR w"},{n:"y5",f:"+- hR dy 0"},{n:"y7",f:"+- y3 dy 0"},{n:"q6",f:"+- aw 0 th"},{n:"dh",f:"*/ q6 1 2"},{n:"y4",f:"+- y5 0 dh"},{n:"y8",f:"+- y7 dh 0"},{n:"aw2",f:"*/ aw 1 2"},{n:"y6",f:"+- b 0 aw2"},{n:"x1",f:"+- r 0 ah"},{n:"swAng",f:"at2 ah dy"},{n:"stAng",f:"+- cd2 0 swAng"},{n:"mswAng",f:"+- 0 0 swAng"},{n:"ix",f:"+- r 0 idx"},{n:"iy",f:"+/ hR y3 2"},{n:"q12",f:"*/ th 1 2"},{n:"dang2",f:"at2 idx q12"},{n:"swAng2",f:"+- dang2 0 cd4"},{n:"swAng3",f:"+- cd4 dang2 0"},{n:"stAng3",f:"+- cd2 0 dang2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"hR"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"cd2",swAng:"mswAng"},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"r",y:"y6"}},{type:"lnTo",pt:{x:"x1",y:"y8"}},{type:"lnTo",pt:{x:"x1",y:"y7"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"stAng",swAng:"swAng"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"r",y:"th"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"3cd4",swAng:"swAng2"},{type:"arcTo",wR:"w",hR:"hR",stAng:"stAng3",swAng:"swAng3"},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"hR"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"cd2",swAng:"mswAng"},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"r",y:"y6"}},{type:"lnTo",pt:{x:"x1",y:"y8"}},{type:"lnTo",pt:{x:"x1",y:"y7"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"stAng",swAng:"swAng"},{type:"lnTo",pt:{x:"l",y:"hR"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"th"}},{type:"arcTo",wR:"w",hR:"hR",stAng:"3cd4",swAng:"swAng2"}],fill:"none",extrusionOk:!1,stroke:!0}]},curvedUpArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 50000"},{n:"adj3",f:"val 25000"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 w ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"a1",f:"pin 0 adj1 100000"},{n:"th",f:"*/ ss a1 100000"},{n:"aw",f:"*/ ss a2 100000"},{n:"q1",f:"+/ th aw 4"},{n:"wR",f:"+- wd2 0 q1"},{n:"q7",f:"*/ wR 2 1"},{n:"q8",f:"*/ q7 q7 1"},{n:"q9",f:"*/ th th 1"},{n:"q10",f:"+- q8 0 q9"},{n:"q11",f:"sqrt q10"},{n:"idy",f:"*/ q11 h q7"},{n:"maxAdj3",f:"*/ 100000 idy ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"ah",f:"*/ ss adj3 100000"},{n:"x3",f:"+- wR th 0"},{n:"q2",f:"*/ h h 1"},{n:"q3",f:"*/ ah ah 1"},{n:"q4",f:"+- q2 0 q3"},{n:"q5",f:"sqrt q4"},{n:"dx",f:"*/ q5 wR h"},{n:"x5",f:"+- wR dx 0"},{n:"x7",f:"+- x3 dx 0"},{n:"q6",f:"+- aw 0 th"},{n:"dh",f:"*/ q6 1 2"},{n:"x4",f:"+- x5 0 dh"},{n:"x8",f:"+- x7 dh 0"},{n:"aw2",f:"*/ aw 1 2"},{n:"x6",f:"+- r 0 aw2"},{n:"y1",f:"+- t ah 0"},{n:"swAng",f:"at2 ah dx"},{n:"mswAng",f:"+- 0 0 swAng"},{n:"iy",f:"+- t idy 0"},{n:"ix",f:"+/ wR x3 2"},{n:"q12",f:"*/ th 1 2"},{n:"dang2",f:"at2 idy q12"},{n:"swAng2",f:"+- dang2 0 swAng"},{n:"mswAng2",f:"+- 0 0 swAng2"},{n:"stAng3",f:"+- cd4 0 swAng"},{n:"swAng3",f:"+- swAng dang2 0"},{n:"stAng2",f:"+- cd4 0 dang2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x6",y:"t"}},{type:"lnTo",pt:{x:"x8",y:"y1"}},{type:"lnTo",pt:{x:"x7",y:"y1"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"stAng3",swAng:"swAng3"},{type:"arcTo",wR:"wR",hR:"h",stAng:"stAng2",swAng:"swAng2"},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"wR",y:"b"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"th",y:"t"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"cd2",swAng:"-5400000"},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"ix",y:"iy"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"stAng2",swAng:"swAng2"},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x6",y:"t"}},{type:"lnTo",pt:{x:"x8",y:"y1"}},{type:"lnTo",pt:{x:"x7",y:"y1"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"stAng3",swAng:"swAng"},{type:"lnTo",pt:{x:"wR",y:"b"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"th",y:"t"}},{type:"arcTo",wR:"wR",hR:"h",stAng:"cd2",swAng:"-5400000"}],fill:"none",extrusionOk:!1,stroke:!0}]},decagon:{avLst:[{n:"vf",f:"val 105146"}],gdLst:[{n:"shd2",f:"*/ hd2 vf 100000"},{n:"dx1",f:"cos wd2 2160000"},{n:"dx2",f:"cos wd2 4320000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"},{n:"x4",f:"+- hc dx1 0"},{n:"dy1",f:"sin shd2 4320000"},{n:"dy2",f:"sin shd2 2160000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc dy2 0"},{n:"y4",f:"+- vc dy1 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},diagStripe:{avLst:[{n:"adj",f:"val 50000"}],gdLst:[{n:"a",f:"pin 0 adj 100000"},{n:"x2",f:"*/ w a 100000"},{n:"x1",f:"*/ x2 1 2"},{n:"x3",f:"+/ x2 r 2"},{n:"y2",f:"*/ h a 100000"},{n:"y1",f:"*/ y2 1 2"},{n:"y3",f:"+/ y2 b 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},diamond:{gdLst:[{n:"ir",f:"*/ w 3 4"},{n:"ib",f:"*/ h 3 4"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},dodecagon:{gdLst:[{n:"x1",f:"*/ w 2894 21600"},{n:"x2",f:"*/ w 7906 21600"},{n:"x3",f:"*/ w 13694 21600"},{n:"x4",f:"*/ w 18706 21600"},{n:"y1",f:"*/ h 2894 21600"},{n:"y2",f:"*/ h 7906 21600"},{n:"y3",f:"*/ h 13694 21600"},{n:"y4",f:"*/ h 18706 21600"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"y3"}},{type:"lnTo",pt:{x:"x4",y:"y4"}},{type:"lnTo",pt:{x:"x3",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"l",y:"y3"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},donut:{avLst:[{n:"adj",f:"val 25000"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dr",f:"*/ ss a 100000"},{n:"iwd2",f:"+- wd2 0 dr"},{n:"ihd2",f:"+- hd2 0 dr"},{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"close"},{type:"moveTo",pt:{x:"dr",y:"vc"}},{type:"arcTo",wR:"iwd2",hR:"ihd2",stAng:"cd2",swAng:"-5400000"},{type:"arcTo",wR:"iwd2",hR:"ihd2",stAng:"cd4",swAng:"-5400000"},{type:"arcTo",wR:"iwd2",hR:"ihd2",stAng:"0",swAng:"-5400000"},{type:"arcTo",wR:"iwd2",hR:"ihd2",stAng:"3cd4",swAng:"-5400000"},{type:"close"}],extrusionOk:!1,stroke:!0}]},doubleWave:{avLst:[{n:"adj1",f:"val 6250"},{n:"adj2",f:"val 0"}],gdLst:[{n:"a1",f:"pin 0 adj1 12500"},{n:"a2",f:"pin -10000 adj2 10000"},{n:"y1",f:"*/ h a1 100000"},{n:"dy2",f:"*/ y1 10 3"},{n:"y2",f:"+- y1 0 dy2"},{n:"y3",f:"+- y1 dy2 0"},{n:"y4",f:"+- b 0 y1"},{n:"y5",f:"+- y4 0 dy2"},{n:"y6",f:"+- y4 dy2 0"},{n:"dx1",f:"*/ w a2 100000"},{n:"of2",f:"*/ w a2 50000"},{n:"x1",f:"abs dx1"},{n:"dx2",f:"?: of2 0 of2"},{n:"x2",f:"+- l 0 dx2"},{n:"dx8",f:"?: of2 of2 0"},{n:"x8",f:"+- r 0 dx8"},{n:"dx3",f:"+/ dx2 x8 6"},{n:"x3",f:"+- x2 dx3 0"},{n:"dx4",f:"+/ dx2 x8 3"},{n:"x4",f:"+- x2 dx4 0"},{n:"x5",f:"+/ x2 x8 2"},{n:"x6",f:"+- x5 dx3 0"},{n:"x7",f:"+/ x6 x8 2"},{n:"x9",f:"+- l dx8 0"},{n:"x15",f:"+- r dx2 0"},{n:"x10",f:"+- x9 dx3 0"},{n:"x11",f:"+- x9 dx4 0"},{n:"x12",f:"+/ x9 x15 2"},{n:"x13",f:"+- x12 dx3 0"},{n:"x14",f:"+/ x13 x15 2"},{n:"x16",f:"+- r 0 x1"},{n:"xAdj",f:"+- hc dx1 0"},{n:"il",f:"max x2 x9"},{n:"ir",f:"min x8 x15"},{n:"it",f:"*/ h a1 50000"},{n:"ib",f:"+- b 0 it"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x2",y:"y1"}},{type:"cubicBezTo",pts:[{x:"x3",y:"y2"},{x:"x4",y:"y3"},{x:"x5",y:"y1"}]},{type:"cubicBezTo",pts:[{x:"x6",y:"y2"},{x:"x7",y:"y3"},{x:"x8",y:"y1"}]},{type:"lnTo",pt:{x:"x15",y:"y4"}},{type:"cubicBezTo",pts:[{x:"x14",y:"y6"},{x:"x13",y:"y5"},{x:"x12",y:"y4"}]},{type:"cubicBezTo",pts:[{x:"x11",y:"y6"},{x:"x10",y:"y5"},{x:"x9",y:"y4"}]},{type:"close"}],extrusionOk:!1,stroke:!0}]},downArrow:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"maxAdj2",f:"*/ 100000 h ss"},{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"dy1",f:"*/ ss a2 100000"},{n:"y1",f:"+- b 0 dy1"},{n:"dx1",f:"*/ w a1 200000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc dx1 0"},{n:"dy2",f:"*/ x1 dy1 wd2"},{n:"y2",f:"+- y1 dy2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"y1"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},downArrowCallout:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"},{n:"adj4",f:"val 64977"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 w ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"maxAdj3",f:"*/ 100000 h ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"q2",f:"*/ a3 ss h"},{n:"maxAdj4",f:"+- 100000 0 q2"},{n:"a4",f:"pin 0 adj4 maxAdj4"},{n:"dx1",f:"*/ ss a2 100000"},{n:"dx2",f:"*/ ss a1 200000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"},{n:"x4",f:"+- hc dx1 0"},{n:"dy3",f:"*/ ss a3 100000"},{n:"y3",f:"+- b 0 dy3"},{n:"y2",f:"*/ h a4 100000"},{n:"y1",f:"*/ y2 1 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"l",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},ellipse:{gdLst:[{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0}]},ellipseRibbon:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 50000"},{n:"adj3",f:"val 12500"}],gdLst:[{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 25000 adj2 75000"},{n:"q10",f:"+- 100000 0 a1"},{n:"q11",f:"*/ q10 1 2"},{n:"q12",f:"+- a1 0 q11"},{n:"minAdj3",f:"max 0 q12"},{n:"a3",f:"pin minAdj3 adj3 a1"},{n:"dx2",f:"*/ w a2 200000"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- x2 wd8 0"},{n:"x4",f:"+- r 0 x3"},{n:"x5",f:"+- r 0 x2"},{n:"x6",f:"+- r 0 wd8"},{n:"dy1",f:"*/ h a3 100000"},{n:"f1",f:"*/ 4 dy1 w"},{n:"q1",f:"*/ x3 x3 w"},{n:"q2",f:"+- x3 0 q1"},{n:"y1",f:"*/ f1 q2 1"},{n:"cx1",f:"*/ x3 1 2"},{n:"cy1",f:"*/ f1 cx1 1"},{n:"cx2",f:"+- r 0 cx1"},{n:"q1",f:"*/ h a1 100000"},{n:"dy3",f:"+- q1 0 dy1"},{n:"q3",f:"*/ x2 x2 w"},{n:"q4",f:"+- x2 0 q3"},{n:"q5",f:"*/ f1 q4 1"},{n:"y3",f:"+- q5 dy3 0"},{n:"q6",f:"+- dy1 dy3 y3"},{n:"q7",f:"+- q6 dy1 0"},{n:"cy3",f:"+- q7 dy3 0"},{n:"rh",f:"+- b 0 q1"},{n:"q8",f:"*/ dy1 14 16"},{n:"y2",f:"+/ q8 rh 2"},{n:"y5",f:"+- q5 rh 0"},{n:"y6",f:"+- y3 rh 0"},{n:"cx4",f:"*/ x2 1 2"},{n:"q9",f:"*/ f1 cx4 1"},{n:"cy4",f:"+- q9 rh 0"},{n:"cx5",f:"+- r 0 cx4"},{n:"cy6",f:"+- cy3 rh 0"},{n:"y7",f:"+- y1 dy3 0"},{n:"cy7",f:"+- q1 q1 y7"},{n:"y8",f:"+- b 0 dy1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"quadBezTo",pts:[{x:"cx1",y:"cy1"},{x:"x3",y:"y1"}]},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy3"},{x:"x5",y:"y3"}]},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"quadBezTo",pts:[{x:"cx2",y:"cy1"},{x:"r",y:"t"}]},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"rh"}},{type:"quadBezTo",pts:[{x:"cx5",y:"cy4"},{x:"x5",y:"y5"}]},{type:"lnTo",pt:{x:"x5",y:"y6"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy6"},{x:"x2",y:"y6"}]},{type:"lnTo",pt:{x:"x2",y:"y5"}},{type:"quadBezTo",pts:[{x:"cx4",y:"cy4"},{x:"l",y:"rh"}]},{type:"lnTo",pt:{x:"wd8",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x3",y:"y7"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy3"},{x:"x5",y:"y3"}]},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"y7"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy7"},{x:"x3",y:"y7"}]},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"quadBezTo",pts:[{x:"cx1",y:"cy1"},{x:"x3",y:"y1"}]},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy3"},{x:"x5",y:"y3"}]},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"quadBezTo",pts:[{x:"cx2",y:"cy1"},{x:"r",y:"t"}]},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"rh"}},{type:"quadBezTo",pts:[{x:"cx5",y:"cy4"},{x:"x5",y:"y5"}]},{type:"lnTo",pt:{x:"x5",y:"y6"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy6"},{x:"x2",y:"y6"}]},{type:"lnTo",pt:{x:"x2",y:"y5"}},{type:"quadBezTo",pts:[{x:"cx4",y:"cy4"},{x:"l",y:"rh"}]},{type:"lnTo",pt:{x:"wd8",y:"y2"}},{type:"close"},{type:"moveTo",pt:{x:"x2",y:"y5"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"moveTo",pt:{x:"x5",y:"y3"}},{type:"lnTo",pt:{x:"x5",y:"y5"}},{type:"moveTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y7"}},{type:"moveTo",pt:{x:"x4",y:"y7"}},{type:"lnTo",pt:{x:"x4",y:"y1"}}],fill:"none",extrusionOk:!1,stroke:!0}]},ellipseRibbon2:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 50000"},{n:"adj3",f:"val 12500"}],gdLst:[{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 25000 adj2 75000"},{n:"q10",f:"+- 100000 0 a1"},{n:"q11",f:"*/ q10 1 2"},{n:"q12",f:"+- a1 0 q11"},{n:"minAdj3",f:"max 0 q12"},{n:"a3",f:"pin minAdj3 adj3 a1"},{n:"dx2",f:"*/ w a2 200000"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- x2 wd8 0"},{n:"x4",f:"+- r 0 x3"},{n:"x5",f:"+- r 0 x2"},{n:"x6",f:"+- r 0 wd8"},{n:"dy1",f:"*/ h a3 100000"},{n:"f1",f:"*/ 4 dy1 w"},{n:"q1",f:"*/ x3 x3 w"},{n:"q2",f:"+- x3 0 q1"},{n:"u1",f:"*/ f1 q2 1"},{n:"y1",f:"+- b 0 u1"},{n:"cx1",f:"*/ x3 1 2"},{n:"cu1",f:"*/ f1 cx1 1"},{n:"cy1",f:"+- b 0 cu1"},{n:"cx2",f:"+- r 0 cx1"},{n:"q1",f:"*/ h a1 100000"},{n:"dy3",f:"+- q1 0 dy1"},{n:"q3",f:"*/ x2 x2 w"},{n:"q4",f:"+- x2 0 q3"},{n:"q5",f:"*/ f1 q4 1"},{n:"u3",f:"+- q5 dy3 0"},{n:"y3",f:"+- b 0 u3"},{n:"q6",f:"+- dy1 dy3 u3"},{n:"q7",f:"+- q6 dy1 0"},{n:"cu3",f:"+- q7 dy3 0"},{n:"cy3",f:"+- b 0 cu3"},{n:"rh",f:"+- b 0 q1"},{n:"q8",f:"*/ dy1 14 16"},{n:"u2",f:"+/ q8 rh 2"},{n:"y2",f:"+- b 0 u2"},{n:"u5",f:"+- q5 rh 0"},{n:"y5",f:"+- b 0 u5"},{n:"u6",f:"+- u3 rh 0"},{n:"y6",f:"+- b 0 u6"},{n:"cx4",f:"*/ x2 1 2"},{n:"q9",f:"*/ f1 cx4 1"},{n:"cu4",f:"+- q9 rh 0"},{n:"cy4",f:"+- b 0 cu4"},{n:"cx5",f:"+- r 0 cx4"},{n:"cu6",f:"+- cu3 rh 0"},{n:"cy6",f:"+- b 0 cu6"},{n:"u7",f:"+- u1 dy3 0"},{n:"y7",f:"+- b 0 u7"},{n:"cu7",f:"+- q1 q1 u7"},{n:"cy7",f:"+- b 0 cu7"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"quadBezTo",pts:[{x:"cx1",y:"cy1"},{x:"x3",y:"y1"}]},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy3"},{x:"x5",y:"y3"}]},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"quadBezTo",pts:[{x:"cx2",y:"cy1"},{x:"r",y:"b"}]},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"q1"}},{type:"quadBezTo",pts:[{x:"cx5",y:"cy4"},{x:"x5",y:"y5"}]},{type:"lnTo",pt:{x:"x5",y:"y6"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy6"},{x:"x2",y:"y6"}]},{type:"lnTo",pt:{x:"x2",y:"y5"}},{type:"quadBezTo",pts:[{x:"cx4",y:"cy4"},{x:"l",y:"q1"}]},{type:"lnTo",pt:{x:"wd8",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x3",y:"y7"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy3"},{x:"x5",y:"y3"}]},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"y7"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy7"},{x:"x3",y:"y7"}]},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"wd8",y:"y2"}},{type:"lnTo",pt:{x:"l",y:"q1"}},{type:"quadBezTo",pts:[{x:"cx4",y:"cy4"},{x:"x2",y:"y5"}]},{type:"lnTo",pt:{x:"x2",y:"y6"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy6"},{x:"x5",y:"y6"}]},{type:"lnTo",pt:{x:"x5",y:"y5"}},{type:"quadBezTo",pts:[{x:"cx5",y:"cy4"},{x:"r",y:"q1"}]},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"quadBezTo",pts:[{x:"cx2",y:"cy1"},{x:"x4",y:"y1"}]},{type:"lnTo",pt:{x:"x5",y:"y3"}},{type:"quadBezTo",pts:[{x:"hc",y:"cy3"},{x:"x2",y:"y3"}]},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"quadBezTo",pts:[{x:"cx1",y:"cy1"},{x:"l",y:"b"}]},{type:"close"},{type:"moveTo",pt:{x:"x2",y:"y3"}},{type:"lnTo",pt:{x:"x2",y:"y5"}},{type:"moveTo",pt:{x:"x5",y:"y5"}},{type:"lnTo",pt:{x:"x5",y:"y3"}},{type:"moveTo",pt:{x:"x3",y:"y7"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"moveTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x4",y:"y7"}}],fill:"none",extrusionOk:!1,stroke:!0}]},flowChartAlternateProcess:{gdLst:[{n:"x2",f:"+- r 0 ssd6"},{n:"y2",f:"+- b 0 ssd6"},{n:"il",f:"*/ ssd6 29289 100000"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"ssd6"}},{type:"arcTo",wR:"ssd6",hR:"ssd6",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"arcTo",wR:"ssd6",hR:"ssd6",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"arcTo",wR:"ssd6",hR:"ssd6",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"ssd6",y:"b"}},{type:"arcTo",wR:"ssd6",hR:"ssd6",stAng:"cd4",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0}]},flowChartCollate:{gdLst:[{n:"ir",f:"*/ w 3 4"},{n:"ib",f:"*/ h 3 4"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"2",y:"0"}},{type:"lnTo",pt:{x:"1",y:"1"}},{type:"lnTo",pt:{x:"2",y:"2"}},{type:"lnTo",pt:{x:"0",y:"2"}},{type:"lnTo",pt:{x:"1",y:"1"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:2,h:2}]},flowChartConnector:{gdLst:[{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0}]},flowChartDecision:{gdLst:[{n:"ir",f:"*/ w 3 4"},{n:"ib",f:"*/ h 3 4"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"1"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"2",y:"1"}},{type:"lnTo",pt:{x:"1",y:"2"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:2,h:2}]},flowChartDelay:{gdLst:[{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},flowChartDisplay:{gdLst:[{n:"x2",f:"*/ w 5 6"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"3"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"5",y:"0"}},{type:"arcTo",wR:"1",hR:"3",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"1",y:"6"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:6,h:6}]},flowChartDocument:{gdLst:[{n:"y1",f:"*/ h 17322 21600"},{n:"y2",f:"*/ h 20172 21600"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"21600",y:"0"}},{type:"lnTo",pt:{x:"21600",y:"17322"}},{type:"cubicBezTo",pts:[{x:"10800",y:"17322"},{x:"10800",y:"23922"},{x:"0",y:"20172"}]},{type:"close"}],extrusionOk:!1,stroke:!0,w:21600,h:21600}]},flowChartExtract:{gdLst:[{n:"x2",f:"*/ w 3 4"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"2"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"2",y:"2"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:2,h:2}]},flowChartInputOutput:{gdLst:[{n:"x3",f:"*/ w 2 5"},{n:"x4",f:"*/ w 3 5"},{n:"x5",f:"*/ w 4 5"},{n:"x6",f:"*/ w 9 10"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"5"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"5",y:"0"}},{type:"lnTo",pt:{x:"4",y:"5"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:5,h:5}]},flowChartInternalStorage:{pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"1",y:"1"}},{type:"lnTo",pt:{x:"0",y:"1"}},{type:"close"}],extrusionOk:!1,stroke:!1,w:1,h:1},{defines:[{type:"moveTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"1",y:"8"}},{type:"moveTo",pt:{x:"0",y:"1"}},{type:"lnTo",pt:{x:"8",y:"1"}}],fill:"none",extrusionOk:!1,stroke:!0,w:8,h:8},{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"1",y:"1"}},{type:"lnTo",pt:{x:"0",y:"1"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0,w:1,h:1}]},flowChartMagneticDisk:{gdLst:[{n:"y3",f:"*/ h 5 6"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"1"}},{type:"arcTo",wR:"3",hR:"1",stAng:"cd2",swAng:"cd2"},{type:"lnTo",pt:{x:"6",y:"5"}},{type:"arcTo",wR:"3",hR:"1",stAng:"0",swAng:"cd2"},{type:"close"}],extrusionOk:!1,stroke:!1,w:6,h:6},{defines:[{type:"moveTo",pt:{x:"6",y:"1"}},{type:"arcTo",wR:"3",hR:"1",stAng:"0",swAng:"cd2"}],fill:"none",extrusionOk:!1,stroke:!0,w:6,h:6},{defines:[{type:"moveTo",pt:{x:"0",y:"1"}},{type:"arcTo",wR:"3",hR:"1",stAng:"cd2",swAng:"cd2"},{type:"lnTo",pt:{x:"6",y:"5"}},{type:"arcTo",wR:"3",hR:"1",stAng:"0",swAng:"cd2"},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0,w:6,h:6}]},flowChartMagneticDrum:{gdLst:[{n:"x2",f:"*/ w 2 3"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"5",y:"0"}},{type:"arcTo",wR:"1",hR:"3",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"1",y:"6"}},{type:"arcTo",wR:"1",hR:"3",stAng:"cd4",swAng:"cd2"},{type:"close"}],extrusionOk:!1,stroke:!1,w:6,h:6},{defines:[{type:"moveTo",pt:{x:"5",y:"6"}},{type:"arcTo",wR:"1",hR:"3",stAng:"cd4",swAng:"cd2"}],fill:"none",extrusionOk:!1,stroke:!0,w:6,h:6},{defines:[{type:"moveTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"5",y:"0"}},{type:"arcTo",wR:"1",hR:"3",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"1",y:"6"}},{type:"arcTo",wR:"1",hR:"3",stAng:"cd4",swAng:"cd2"},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0,w:6,h:6}]},flowChartMagneticTape:{gdLst:[{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"},{n:"ang1",f:"at2 w h"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"hc",y:"b"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"ang1"},{type:"lnTo",pt:{x:"r",y:"ib"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},flowChartManualInput:{pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"1"}},{type:"lnTo",pt:{x:"5",y:"0"}},{type:"lnTo",pt:{x:"5",y:"5"}},{type:"lnTo",pt:{x:"0",y:"5"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:5,h:5}]},flowChartManualOperation:{gdLst:[{n:"x3",f:"*/ w 4 5"},{n:"x4",f:"*/ w 9 10"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"5",y:"0"}},{type:"lnTo",pt:{x:"4",y:"5"}},{type:"lnTo",pt:{x:"1",y:"5"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:5,h:5}]},flowChartMerge:{gdLst:[{n:"x2",f:"*/ w 3 4"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"2",y:"0"}},{type:"lnTo",pt:{x:"1",y:"2"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:2,h:2}]},flowChartMultidocument:{gdLst:[{n:"y2",f:"*/ h 3675 21600"},{n:"y8",f:"*/ h 20782 21600"},{n:"x3",f:"*/ w 9298 21600"},{n:"x4",f:"*/ w 12286 21600"},{n:"x5",f:"*/ w 18595 21600"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"20782"}},{type:"cubicBezTo",pts:[{x:"9298",y:"23542"},{x:"9298",y:"18022"},{x:"18595",y:"18022"}]},{type:"lnTo",pt:{x:"18595",y:"3675"}},{type:"lnTo",pt:{x:"0",y:"3675"}},{type:"close"},{type:"moveTo",pt:{x:"1532",y:"3675"}},{type:"lnTo",pt:{x:"1532",y:"1815"}},{type:"lnTo",pt:{x:"20000",y:"1815"}},{type:"lnTo",pt:{x:"20000",y:"16252"}},{type:"cubicBezTo",pts:[{x:"19298",y:"16252"},{x:"18595",y:"16352"},{x:"18595",y:"16352"}]},{type:"lnTo",pt:{x:"18595",y:"3675"}},{type:"close"},{type:"moveTo",pt:{x:"2972",y:"1815"}},{type:"lnTo",pt:{x:"2972",y:"0"}},{type:"lnTo",pt:{x:"21600",y:"0"}},{type:"lnTo",pt:{x:"21600",y:"14392"}},{type:"cubicBezTo",pts:[{x:"20800",y:"14392"},{x:"20000",y:"14467"},{x:"20000",y:"14467"}]},{type:"lnTo",pt:{x:"20000",y:"1815"}},{type:"close"}],extrusionOk:!1,stroke:!1,w:21600,h:21600},{defines:[{type:"moveTo",pt:{x:"0",y:"3675"}},{type:"lnTo",pt:{x:"18595",y:"3675"}},{type:"lnTo",pt:{x:"18595",y:"18022"}},{type:"cubicBezTo",pts:[{x:"9298",y:"18022"},{x:"9298",y:"23542"},{x:"0",y:"20782"}]},{type:"close"},{type:"moveTo",pt:{x:"1532",y:"3675"}},{type:"lnTo",pt:{x:"1532",y:"1815"}},{type:"lnTo",pt:{x:"20000",y:"1815"}},{type:"lnTo",pt:{x:"20000",y:"16252"}},{type:"cubicBezTo",pts:[{x:"19298",y:"16252"},{x:"18595",y:"16352"},{x:"18595",y:"16352"}]},{type:"moveTo",pt:{x:"2972",y:"1815"}},{type:"lnTo",pt:{x:"2972",y:"0"}},{type:"lnTo",pt:{x:"21600",y:"0"}},{type:"lnTo",pt:{x:"21600",y:"14392"}},{type:"cubicBezTo",pts:[{x:"20800",y:"14392"},{x:"20000",y:"14467"},{x:"20000",y:"14467"}]}],fill:"none",extrusionOk:!1,stroke:!0,w:21600,h:21600},{defines:[{type:"moveTo",pt:{x:"0",y:"20782"}},{type:"cubicBezTo",pts:[{x:"9298",y:"23542"},{x:"9298",y:"18022"},{x:"18595",y:"18022"}]},{type:"lnTo",pt:{x:"18595",y:"16352"}},{type:"cubicBezTo",pts:[{x:"18595",y:"16352"},{x:"19298",y:"16252"},{x:"20000",y:"16252"}]},{type:"lnTo",pt:{x:"20000",y:"14467"}},{type:"cubicBezTo",pts:[{x:"20000",y:"14467"},{x:"20800",y:"14392"},{x:"21600",y:"14392"}]},{type:"lnTo",pt:{x:"21600",y:"0"}},{type:"lnTo",pt:{x:"2972",y:"0"}},{type:"lnTo",pt:{x:"2972",y:"1815"}},{type:"lnTo",pt:{x:"1532",y:"1815"}},{type:"lnTo",pt:{x:"1532",y:"3675"}},{type:"lnTo",pt:{x:"0",y:"3675"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!1,w:21600,h:21600}]},flowChartOfflineStorage:{gdLst:[{n:"x4",f:"*/ w 3 4"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"2",y:"0"}},{type:"lnTo",pt:{x:"1",y:"2"}},{type:"close"}],extrusionOk:!1,stroke:!1,w:2,h:2},{defines:[{type:"moveTo",pt:{x:"2",y:"4"}},{type:"lnTo",pt:{x:"3",y:"4"}}],fill:"none",extrusionOk:!1,stroke:!0,w:5,h:5},{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"2",y:"0"}},{type:"lnTo",pt:{x:"1",y:"2"}},{type:"close"}],fill:"none",extrusionOk:!0,stroke:!0,w:2,h:2}]},flowChartOffpageConnector:{gdLst:[{n:"y1",f:"*/ h 4 5"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"10",y:"0"}},{type:"lnTo",pt:{x:"10",y:"8"}},{type:"lnTo",pt:{x:"5",y:"10"}},{type:"lnTo",pt:{x:"0",y:"8"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:10,h:10}]},flowChartOnlineStorage:{gdLst:[{n:"x2",f:"*/ w 5 6"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"6",y:"0"}},{type:"arcTo",wR:"1",hR:"3",stAng:"3cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"1",y:"6"}},{type:"arcTo",wR:"1",hR:"3",stAng:"cd4",swAng:"cd2"},{type:"close"}],extrusionOk:!1,stroke:!0,w:6,h:6}]},flowChartOr:{gdLst:[{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"r",y:"vc"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},flowChartPredefinedProcess:{gdLst:[{n:"x2",f:"*/ w 7 8"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"1",y:"1"}},{type:"lnTo",pt:{x:"0",y:"1"}},{type:"close"}],extrusionOk:!1,stroke:!1,w:1,h:1},{defines:[{type:"moveTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"1",y:"8"}},{type:"moveTo",pt:{x:"7",y:"0"}},{type:"lnTo",pt:{x:"7",y:"8"}}],fill:"none",extrusionOk:!1,stroke:!0,w:8,h:8},{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"1",y:"1"}},{type:"lnTo",pt:{x:"0",y:"1"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0,w:1,h:1}]},flowChartPreparation:{gdLst:[{n:"x2",f:"*/ w 4 5"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"5"}},{type:"lnTo",pt:{x:"2",y:"0"}},{type:"lnTo",pt:{x:"8",y:"0"}},{type:"lnTo",pt:{x:"10",y:"5"}},{type:"lnTo",pt:{x:"8",y:"10"}},{type:"lnTo",pt:{x:"2",y:"10"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:10,h:10}]},flowChartProcess:{pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"0"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"1",y:"1"}},{type:"lnTo",pt:{x:"0",y:"1"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:1,h:1}]},flowChartPunchedCard:{pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"1"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"5",y:"0"}},{type:"lnTo",pt:{x:"5",y:"5"}},{type:"lnTo",pt:{x:"0",y:"5"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:5,h:5}]},flowChartPunchedTape:{gdLst:[{n:"y2",f:"*/ h 9 10"},{n:"ib",f:"*/ h 4 5"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"2"}},{type:"arcTo",wR:"5",hR:"2",stAng:"cd2",swAng:"-10800000"},{type:"arcTo",wR:"5",hR:"2",stAng:"cd2",swAng:"cd2"},{type:"lnTo",pt:{x:"20",y:"18"}},{type:"arcTo",wR:"5",hR:"2",stAng:"0",swAng:"-10800000"},{type:"arcTo",wR:"5",hR:"2",stAng:"0",swAng:"cd2"},{type:"close"}],extrusionOk:!1,stroke:!0,w:20,h:20}]},flowChartSort:{gdLst:[{n:"ir",f:"*/ w 3 4"},{n:"ib",f:"*/ h 3 4"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"0",y:"1"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"2",y:"1"}},{type:"lnTo",pt:{x:"1",y:"2"}},{type:"close"}],extrusionOk:!1,stroke:!1,w:2,h:2},{defines:[{type:"moveTo",pt:{x:"0",y:"1"}},{type:"lnTo",pt:{x:"2",y:"1"}}],fill:"none",extrusionOk:!1,stroke:!0,w:2,h:2},{defines:[{type:"moveTo",pt:{x:"0",y:"1"}},{type:"lnTo",pt:{x:"1",y:"0"}},{type:"lnTo",pt:{x:"2",y:"1"}},{type:"lnTo",pt:{x:"1",y:"2"}},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0,w:2,h:2}]},flowChartSummingJunction:{gdLst:[{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"il",y:"it"}},{type:"lnTo",pt:{x:"ir",y:"ib"}},{type:"moveTo",pt:{x:"ir",y:"it"}},{type:"lnTo",pt:{x:"il",y:"ib"}}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},flowChartTerminator:{gdLst:[{n:"il",f:"*/ w 1018 21600"},{n:"ir",f:"*/ w 20582 21600"},{n:"it",f:"*/ h 3163 21600"},{n:"ib",f:"*/ h 18437 21600"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"3475",y:"0"}},{type:"lnTo",pt:{x:"18125",y:"0"}},{type:"arcTo",wR:"3475",hR:"10800",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"3475",y:"21600"}},{type:"arcTo",wR:"3475",hR:"10800",stAng:"cd4",swAng:"cd2"},{type:"close"}],extrusionOk:!1,stroke:!0,w:21600,h:21600}]},foldedCorner:{avLst:[{n:"adj",f:"val 16667"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dy2",f:"*/ ss a 100000"},{n:"dy1",f:"*/ dy2 1 5"},{n:"x1",f:"+- r 0 dy2"},{n:"x2",f:"+- x1 dy1 0"},{n:"y2",f:"+- b 0 dy2"},{n:"y1",f:"+- y2 dy1 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"y2"}}],fill:"none",extrusionOk:!1,stroke:!0}]},frame:{avLst:[{n:"adj1",f:"val 12500"}],gdLst:[{n:"a1",f:"pin 0 adj1 50000"},{n:"x1",f:"*/ ss a1 100000"},{n:"x4",f:"+- r 0 x1"},{n:"y4",f:"+- b 0 x1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"},{type:"moveTo",pt:{x:"x1",y:"x1"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"x4",y:"y4"}},{type:"lnTo",pt:{x:"x4",y:"x1"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},funnel:{gdLst:[{n:"d",f:"*/ ss 1 20"},{n:"rw2",f:"+- wd2 0 d"},{n:"rh2",f:"+- hd4 0 d"},{n:"t1",f:"cos wd2 480000"},{n:"t2",f:"sin hd4 480000"},{n:"da",f:"at2 t1 t2"},{n:"2da",f:"*/ da 2 1"},{n:"stAng1",f:"+- cd2 0 da"},{n:"swAng1",f:"+- cd2 2da 0"},{n:"swAng3",f:"+- cd2 0 2da"},{n:"rw3",f:"*/ wd2 1 4"},{n:"rh3",f:"*/ hd4 1 4"},{n:"ct1",f:"cos hd4 stAng1"},{n:"st1",f:"sin wd2 stAng1"},{n:"m1",f:"mod ct1 st1 0"},{n:"n1",f:"*/ wd2 hd4 m1"},{n:"dx1",f:"cos n1 stAng1"},{n:"dy1",f:"sin n1 stAng1"},{n:"x1",f:"+- hc dx1 0"},{n:"y1",f:"+- hd4 dy1 0"},{n:"ct3",f:"cos rh3 da"},{n:"st3",f:"sin rw3 da"},{n:"m3",f:"mod ct3 st3 0"},{n:"n3",f:"*/ rw3 rh3 m3"},{n:"dx3",f:"cos n3 da"},{n:"dy3",f:"sin n3 da"},{n:"x3",f:"+- hc dx3 0"},{n:"vc3",f:"+- b 0 rh3"},{n:"y2",f:"+- vc3 dy3 0"},{n:"x2",f:"+- wd2 0 rw2"},{n:"cd",f:"*/ cd2 2 1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"hd4",stAng:"stAng1",swAng:"swAng1"},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"arcTo",wR:"rw3",hR:"rh3",stAng:"da",swAng:"swAng3"},{type:"close"},{type:"moveTo",pt:{x:"x2",y:"hd4"}},{type:"arcTo",wR:"rw2",hR:"rh2",stAng:"cd2",swAng:"-21600000"},{type:"close"}],extrusionOk:!1,stroke:!0}]},gear6:{avLst:[{n:"adj1",f:"val 15000"},{n:"adj2",f:"val 3526"}],gdLst:[{n:"a1",f:"pin 0 adj1 20000"},{n:"a2",f:"pin 0 adj2 5358"},{n:"th",f:"*/ ss a1 100000"},{n:"lFD",f:"*/ ss a2 100000"},{n:"th2",f:"*/ th 1 2"},{n:"l2",f:"*/ lFD 1 2"},{n:"l3",f:"+- th2 l2 0"},{n:"rh",f:"+- hd2 0 th"},{n:"rw",f:"+- wd2 0 th"},{n:"dr",f:"+- rw 0 rh"},{n:"maxr",f:"?: dr rh rw"},{n:"ha",f:"at2 maxr l3"},{n:"aA1",f:"+- 19800000 0 ha"},{n:"aD1",f:"+- 19800000 ha 0"},{n:"ta11",f:"cos rw aA1"},{n:"ta12",f:"sin rh aA1"},{n:"bA1",f:"at2 ta11 ta12"},{n:"cta1",f:"cos rh bA1"},{n:"sta1",f:"sin rw bA1"},{n:"ma1",f:"mod cta1 sta1 0"},{n:"na1",f:"*/ rw rh ma1"},{n:"dxa1",f:"cos na1 bA1"},{n:"dya1",f:"sin na1 bA1"},{n:"xA1",f:"+- hc dxa1 0"},{n:"yA1",f:"+- vc dya1 0"},{n:"td11",f:"cos rw aD1"},{n:"td12",f:"sin rh aD1"},{n:"bD1",f:"at2 td11 td12"},{n:"ctd1",f:"cos rh bD1"},{n:"std1",f:"sin rw bD1"},{n:"md1",f:"mod ctd1 std1 0"},{n:"nd1",f:"*/ rw rh md1"},{n:"dxd1",f:"cos nd1 bD1"},{n:"dyd1",f:"sin nd1 bD1"},{n:"xD1",f:"+- hc dxd1 0"},{n:"yD1",f:"+- vc dyd1 0"},{n:"xAD1",f:"+- xA1 0 xD1"},{n:"yAD1",f:"+- yA1 0 yD1"},{n:"lAD1",f:"mod xAD1 yAD1 0"},{n:"a1",f:"at2 yAD1 xAD1"},{n:"dxF1",f:"sin lFD a1"},{n:"dyF1",f:"cos lFD a1"},{n:"xF1",f:"+- xD1 dxF1 0"},{n:"yF1",f:"+- yD1 dyF1 0"},{n:"xE1",f:"+- xA1 0 dxF1"},{n:"yE1",f:"+- yA1 0 dyF1"},{n:"yC1t",f:"sin th a1"},{n:"xC1t",f:"cos th a1"},{n:"yC1",f:"+- yF1 yC1t 0"},{n:"xC1",f:"+- xF1 0 xC1t"},{n:"yB1",f:"+- yE1 yC1t 0"},{n:"xB1",f:"+- xE1 0 xC1t"},{n:"aD6",f:"+- 3cd4 ha 0"},{n:"td61",f:"cos rw aD6"},{n:"td62",f:"sin rh aD6"},{n:"bD6",f:"at2 td61 td62"},{n:"ctd6",f:"cos rh bD6"},{n:"std6",f:"sin rw bD6"},{n:"md6",f:"mod ctd6 std6 0"},{n:"nd6",f:"*/ rw rh md6"},{n:"dxd6",f:"cos nd6 bD6"},{n:"dyd6",f:"sin nd6 bD6"},{n:"xD6",f:"+- hc dxd6 0"},{n:"yD6",f:"+- vc dyd6 0"},{n:"xA6",f:"+- hc 0 dxd6"},{n:"xF6",f:"+- xD6 0 lFD"},{n:"xE6",f:"+- xA6 lFD 0"},{n:"yC6",f:"+- yD6 0 th"},{n:"swAng1",f:"+- bA1 0 bD6"},{n:"aA2",f:"+- 1800000 0 ha"},{n:"aD2",f:"+- 1800000 ha 0"},{n:"ta21",f:"cos rw aA2"},{n:"ta22",f:"sin rh aA2"},{n:"bA2",f:"at2 ta21 ta22"},{n:"yA2",f:"+- h 0 yD1"},{n:"td21",f:"cos rw aD2"},{n:"td22",f:"sin rh aD2"},{n:"bD2",f:"at2 td21 td22"},{n:"yD2",f:"+- h 0 yA1"},{n:"yC2",f:"+- h 0 yB1"},{n:"yB2",f:"+- h 0 yC1"},{n:"xB2",f:"val xC1"},{n:"swAng2",f:"+- bA2 0 bD1"},{n:"aD3",f:"+- cd4 ha 0"},{n:"td31",f:"cos rw aD3"},{n:"td32",f:"sin rh aD3"},{n:"bD3",f:"at2 td31 td32"},{n:"yD3",f:"+- h 0 yD6"},{n:"yB3",f:"+- h 0 yC6"},{n:"aD4",f:"+- 9000000 ha 0"},{n:"td41",f:"cos rw aD4"},{n:"td42",f:"sin rh aD4"},{n:"bD4",f:"at2 td41 td42"},{n:"xD4",f:"+- w 0 xD1"},{n:"xC4",f:"+- w 0 xC1"},{n:"xB4",f:"+- w 0 xB1"},{n:"aD5",f:"+- 12600000 ha 0"},{n:"td51",f:"cos rw aD5"},{n:"td52",f:"sin rh aD5"},{n:"bD5",f:"at2 td51 td52"},{n:"xD5",f:"+- w 0 xA1"},{n:"xC5",f:"+- w 0 xB1"},{n:"xB5",f:"+- w 0 xC1"},{n:"xCxn1",f:"+/ xB1 xC1 2"},{n:"yCxn1",f:"+/ yB1 yC1 2"},{n:"yCxn2",f:"+- b 0 yCxn1"},{n:"xCxn4",f:"+/ r 0 xCxn1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"xA1",y:"yA1"}},{type:"lnTo",pt:{x:"xB1",y:"yB1"}},{type:"lnTo",pt:{x:"xC1",y:"yC1"}},{type:"lnTo",pt:{x:"xD1",y:"yD1"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD1",swAng:"swAng2"},{type:"lnTo",pt:{x:"xC1",y:"yB2"}},{type:"lnTo",pt:{x:"xB1",y:"yC2"}},{type:"lnTo",pt:{x:"xA1",y:"yD2"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD2",swAng:"swAng1"},{type:"lnTo",pt:{x:"xF6",y:"yB3"}},{type:"lnTo",pt:{x:"xE6",y:"yB3"}},{type:"lnTo",pt:{x:"xA6",y:"yD3"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD3",swAng:"swAng1"},{type:"lnTo",pt:{x:"xB4",y:"yC2"}},{type:"lnTo",pt:{x:"xC4",y:"yB2"}},{type:"lnTo",pt:{x:"xD4",y:"yA2"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD4",swAng:"swAng2"},{type:"lnTo",pt:{x:"xB5",y:"yC1"}},{type:"lnTo",pt:{x:"xC5",y:"yB1"}},{type:"lnTo",pt:{x:"xD5",y:"yA1"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD5",swAng:"swAng1"},{type:"lnTo",pt:{x:"xE6",y:"yC6"}},{type:"lnTo",pt:{x:"xF6",y:"yC6"}},{type:"lnTo",pt:{x:"xD6",y:"yD6"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD6",swAng:"swAng1"},{type:"close"}],extrusionOk:!1,stroke:!0}]},gear9:{avLst:[{n:"adj1",f:"val 10000"},{n:"adj2",f:"val 1763"}],gdLst:[{n:"a1",f:"pin 0 adj1 20000"},{n:"a2",f:"pin 0 adj2 2679"},{n:"th",f:"*/ ss a1 100000"},{n:"lFD",f:"*/ ss a2 100000"},{n:"th2",f:"*/ th 1 2"},{n:"l2",f:"*/ lFD 1 2"},{n:"l3",f:"+- th2 l2 0"},{n:"rh",f:"+- hd2 0 th"},{n:"rw",f:"+- wd2 0 th"},{n:"dr",f:"+- rw 0 rh"},{n:"maxr",f:"?: dr rh rw"},{n:"ha",f:"at2 maxr l3"},{n:"aA1",f:"+- 18600000 0 ha"},{n:"aD1",f:"+- 18600000 ha 0"},{n:"ta11",f:"cos rw aA1"},{n:"ta12",f:"sin rh aA1"},{n:"bA1",f:"at2 ta11 ta12"},{n:"cta1",f:"cos rh bA1"},{n:"sta1",f:"sin rw bA1"},{n:"ma1",f:"mod cta1 sta1 0"},{n:"na1",f:"*/ rw rh ma1"},{n:"dxa1",f:"cos na1 bA1"},{n:"dya1",f:"sin na1 bA1"},{n:"xA1",f:"+- hc dxa1 0"},{n:"yA1",f:"+- vc dya1 0"},{n:"td11",f:"cos rw aD1"},{n:"td12",f:"sin rh aD1"},{n:"bD1",f:"at2 td11 td12"},{n:"ctd1",f:"cos rh bD1"},{n:"std1",f:"sin rw bD1"},{n:"md1",f:"mod ctd1 std1 0"},{n:"nd1",f:"*/ rw rh md1"},{n:"dxd1",f:"cos nd1 bD1"},{n:"dyd1",f:"sin nd1 bD1"},{n:"xD1",f:"+- hc dxd1 0"},{n:"yD1",f:"+- vc dyd1 0"},{n:"xAD1",f:"+- xA1 0 xD1"},{n:"yAD1",f:"+- yA1 0 yD1"},{n:"lAD1",f:"mod xAD1 yAD1 0"},{n:"a1",f:"at2 yAD1 xAD1"},{n:"dxF1",f:"sin lFD a1"},{n:"dyF1",f:"cos lFD a1"},{n:"xF1",f:"+- xD1 dxF1 0"},{n:"yF1",f:"+- yD1 dyF1 0"},{n:"xE1",f:"+- xA1 0 dxF1"},{n:"yE1",f:"+- yA1 0 dyF1"},{n:"yC1t",f:"sin th a1"},{n:"xC1t",f:"cos th a1"},{n:"yC1",f:"+- yF1 yC1t 0"},{n:"xC1",f:"+- xF1 0 xC1t"},{n:"yB1",f:"+- yE1 yC1t 0"},{n:"xB1",f:"+- xE1 0 xC1t"},{n:"aA2",f:"+- 21000000 0 ha"},{n:"aD2",f:"+- 21000000 ha 0"},{n:"ta21",f:"cos rw aA2"},{n:"ta22",f:"sin rh aA2"},{n:"bA2",f:"at2 ta21 ta22"},{n:"cta2",f:"cos rh bA2"},{n:"sta2",f:"sin rw bA2"},{n:"ma2",f:"mod cta2 sta2 0"},{n:"na2",f:"*/ rw rh ma2"},{n:"dxa2",f:"cos na2 bA2"},{n:"dya2",f:"sin na2 bA2"},{n:"xA2",f:"+- hc dxa2 0"},{n:"yA2",f:"+- vc dya2 0"},{n:"td21",f:"cos rw aD2"},{n:"td22",f:"sin rh aD2"},{n:"bD2",f:"at2 td21 td22"},{n:"ctd2",f:"cos rh bD2"},{n:"std2",f:"sin rw bD2"},{n:"md2",f:"mod ctd2 std2 0"},{n:"nd2",f:"*/ rw rh md2"},{n:"dxd2",f:"cos nd2 bD2"},{n:"dyd2",f:"sin nd2 bD2"},{n:"xD2",f:"+- hc dxd2 0"},{n:"yD2",f:"+- vc dyd2 0"},{n:"xAD2",f:"+- xA2 0 xD2"},{n:"yAD2",f:"+- yA2 0 yD2"},{n:"lAD2",f:"mod xAD2 yAD2 0"},{n:"a2",f:"at2 yAD2 xAD2"},{n:"dxF2",f:"sin lFD a2"},{n:"dyF2",f:"cos lFD a2"},{n:"xF2",f:"+- xD2 dxF2 0"},{n:"yF2",f:"+- yD2 dyF2 0"},{n:"xE2",f:"+- xA2 0 dxF2"},{n:"yE2",f:"+- yA2 0 dyF2"},{n:"yC2t",f:"sin th a2"},{n:"xC2t",f:"cos th a2"},{n:"yC2",f:"+- yF2 yC2t 0"},{n:"xC2",f:"+- xF2 0 xC2t"},{n:"yB2",f:"+- yE2 yC2t 0"},{n:"xB2",f:"+- xE2 0 xC2t"},{n:"swAng1",f:"+- bA2 0 bD1"},{n:"aA3",f:"+- 1800000 0 ha"},{n:"aD3",f:"+- 1800000 ha 0"},{n:"ta31",f:"cos rw aA3"},{n:"ta32",f:"sin rh aA3"},{n:"bA3",f:"at2 ta31 ta32"},{n:"cta3",f:"cos rh bA3"},{n:"sta3",f:"sin rw bA3"},{n:"ma3",f:"mod cta3 sta3 0"},{n:"na3",f:"*/ rw rh ma3"},{n:"dxa3",f:"cos na3 bA3"},{n:"dya3",f:"sin na3 bA3"},{n:"xA3",f:"+- hc dxa3 0"},{n:"yA3",f:"+- vc dya3 0"},{n:"td31",f:"cos rw aD3"},{n:"td32",f:"sin rh aD3"},{n:"bD3",f:"at2 td31 td32"},{n:"ctd3",f:"cos rh bD3"},{n:"std3",f:"sin rw bD3"},{n:"md3",f:"mod ctd3 std3 0"},{n:"nd3",f:"*/ rw rh md3"},{n:"dxd3",f:"cos nd3 bD3"},{n:"dyd3",f:"sin nd3 bD3"},{n:"xD3",f:"+- hc dxd3 0"},{n:"yD3",f:"+- vc dyd3 0"},{n:"xAD3",f:"+- xA3 0 xD3"},{n:"yAD3",f:"+- yA3 0 yD3"},{n:"lAD3",f:"mod xAD3 yAD3 0"},{n:"a3",f:"at2 yAD3 xAD3"},{n:"dxF3",f:"sin lFD a3"},{n:"dyF3",f:"cos lFD a3"},{n:"xF3",f:"+- xD3 dxF3 0"},{n:"yF3",f:"+- yD3 dyF3 0"},{n:"xE3",f:"+- xA3 0 dxF3"},{n:"yE3",f:"+- yA3 0 dyF3"},{n:"yC3t",f:"sin th a3"},{n:"xC3t",f:"cos th a3"},{n:"yC3",f:"+- yF3 yC3t 0"},{n:"xC3",f:"+- xF3 0 xC3t"},{n:"yB3",f:"+- yE3 yC3t 0"},{n:"xB3",f:"+- xE3 0 xC3t"},{n:"swAng2",f:"+- bA3 0 bD2"},{n:"aA4",f:"+- 4200000 0 ha"},{n:"aD4",f:"+- 4200000 ha 0"},{n:"ta41",f:"cos rw aA4"},{n:"ta42",f:"sin rh aA4"},{n:"bA4",f:"at2 ta41 ta42"},{n:"cta4",f:"cos rh bA4"},{n:"sta4",f:"sin rw bA4"},{n:"ma4",f:"mod cta4 sta4 0"},{n:"na4",f:"*/ rw rh ma4"},{n:"dxa4",f:"cos na4 bA4"},{n:"dya4",f:"sin na4 bA4"},{n:"xA4",f:"+- hc dxa4 0"},{n:"yA4",f:"+- vc dya4 0"},{n:"td41",f:"cos rw aD4"},{n:"td42",f:"sin rh aD4"},{n:"bD4",f:"at2 td41 td42"},{n:"ctd4",f:"cos rh bD4"},{n:"std4",f:"sin rw bD4"},{n:"md4",f:"mod ctd4 std4 0"},{n:"nd4",f:"*/ rw rh md4"},{n:"dxd4",f:"cos nd4 bD4"},{n:"dyd4",f:"sin nd4 bD4"},{n:"xD4",f:"+- hc dxd4 0"},{n:"yD4",f:"+- vc dyd4 0"},{n:"xAD4",f:"+- xA4 0 xD4"},{n:"yAD4",f:"+- yA4 0 yD4"},{n:"lAD4",f:"mod xAD4 yAD4 0"},{n:"a4",f:"at2 yAD4 xAD4"},{n:"dxF4",f:"sin lFD a4"},{n:"dyF4",f:"cos lFD a4"},{n:"xF4",f:"+- xD4 dxF4 0"},{n:"yF4",f:"+- yD4 dyF4 0"},{n:"xE4",f:"+- xA4 0 dxF4"},{n:"yE4",f:"+- yA4 0 dyF4"},{n:"yC4t",f:"sin th a4"},{n:"xC4t",f:"cos th a4"},{n:"yC4",f:"+- yF4 yC4t 0"},{n:"xC4",f:"+- xF4 0 xC4t"},{n:"yB4",f:"+- yE4 yC4t 0"},{n:"xB4",f:"+- xE4 0 xC4t"},{n:"swAng3",f:"+- bA4 0 bD3"},{n:"aA5",f:"+- 6600000 0 ha"},{n:"aD5",f:"+- 6600000 ha 0"},{n:"ta51",f:"cos rw aA5"},{n:"ta52",f:"sin rh aA5"},{n:"bA5",f:"at2 ta51 ta52"},{n:"td51",f:"cos rw aD5"},{n:"td52",f:"sin rh aD5"},{n:"bD5",f:"at2 td51 td52"},{n:"xD5",f:"+- w 0 xA4"},{n:"xC5",f:"+- w 0 xB4"},{n:"xB5",f:"+- w 0 xC4"},{n:"swAng4",f:"+- bA5 0 bD4"},{n:"aD6",f:"+- 9000000 ha 0"},{n:"td61",f:"cos rw aD6"},{n:"td62",f:"sin rh aD6"},{n:"bD6",f:"at2 td61 td62"},{n:"xD6",f:"+- w 0 xA3"},{n:"xC6",f:"+- w 0 xB3"},{n:"xB6",f:"+- w 0 xC3"},{n:"aD7",f:"+- 11400000 ha 0"},{n:"td71",f:"cos rw aD7"},{n:"td72",f:"sin rh aD7"},{n:"bD7",f:"at2 td71 td72"},{n:"xD7",f:"+- w 0 xA2"},{n:"xC7",f:"+- w 0 xB2"},{n:"xB7",f:"+- w 0 xC2"},{n:"aD8",f:"+- 13800000 ha 0"},{n:"td81",f:"cos rw aD8"},{n:"td82",f:"sin rh aD8"},{n:"bD8",f:"at2 td81 td82"},{n:"xA8",f:"+- w 0 xD1"},{n:"xD8",f:"+- w 0 xA1"},{n:"xC8",f:"+- w 0 xB1"},{n:"xB8",f:"+- w 0 xC1"},{n:"aA9",f:"+- 3cd4 0 ha"},{n:"aD9",f:"+- 3cd4 ha 0"},{n:"td91",f:"cos rw aD9"},{n:"td92",f:"sin rh aD9"},{n:"bD9",f:"at2 td91 td92"},{n:"ctd9",f:"cos rh bD9"},{n:"std9",f:"sin rw bD9"},{n:"md9",f:"mod ctd9 std9 0"},{n:"nd9",f:"*/ rw rh md9"},{n:"dxd9",f:"cos nd9 bD9"},{n:"dyd9",f:"sin nd9 bD9"},{n:"xD9",f:"+- hc dxd9 0"},{n:"yD9",f:"+- vc dyd9 0"},{n:"ta91",f:"cos rw aA9"},{n:"ta92",f:"sin rh aA9"},{n:"bA9",f:"at2 ta91 ta92"},{n:"xA9",f:"+- hc 0 dxd9"},{n:"xF9",f:"+- xD9 0 lFD"},{n:"xE9",f:"+- xA9 lFD 0"},{n:"yC9",f:"+- yD9 0 th"},{n:"swAng5",f:"+- bA9 0 bD8"},{n:"xCxn1",f:"+/ xB1 xC1 2"},{n:"yCxn1",f:"+/ yB1 yC1 2"},{n:"xCxn2",f:"+/ xB2 xC2 2"},{n:"yCxn2",f:"+/ yB2 yC2 2"},{n:"xCxn3",f:"+/ xB3 xC3 2"},{n:"yCxn3",f:"+/ yB3 yC3 2"},{n:"xCxn4",f:"+/ xB4 xC4 2"},{n:"yCxn4",f:"+/ yB4 yC4 2"},{n:"xCxn5",f:"+/ r 0 xCxn4"},{n:"xCxn6",f:"+/ r 0 xCxn3"},{n:"xCxn7",f:"+/ r 0 xCxn2"},{n:"xCxn8",f:"+/ r 0 xCxn1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"xA1",y:"yA1"}},{type:"lnTo",pt:{x:"xB1",y:"yB1"}},{type:"lnTo",pt:{x:"xC1",y:"yC1"}},{type:"lnTo",pt:{x:"xD1",y:"yD1"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD1",swAng:"swAng1"},{type:"lnTo",pt:{x:"xB2",y:"yB2"}},{type:"lnTo",pt:{x:"xC2",y:"yC2"}},{type:"lnTo",pt:{x:"xD2",y:"yD2"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD2",swAng:"swAng2"},{type:"lnTo",pt:{x:"xB3",y:"yB3"}},{type:"lnTo",pt:{x:"xC3",y:"yC3"}},{type:"lnTo",pt:{x:"xD3",y:"yD3"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD3",swAng:"swAng3"},{type:"lnTo",pt:{x:"xB4",y:"yB4"}},{type:"lnTo",pt:{x:"xC4",y:"yC4"}},{type:"lnTo",pt:{x:"xD4",y:"yD4"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD4",swAng:"swAng4"},{type:"lnTo",pt:{x:"xB5",y:"yC4"}},{type:"lnTo",pt:{x:"xC5",y:"yB4"}},{type:"lnTo",pt:{x:"xD5",y:"yA4"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD5",swAng:"swAng3"},{type:"lnTo",pt:{x:"xB6",y:"yC3"}},{type:"lnTo",pt:{x:"xC6",y:"yB3"}},{type:"lnTo",pt:{x:"xD6",y:"yA3"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD6",swAng:"swAng2"},{type:"lnTo",pt:{x:"xB7",y:"yC2"}},{type:"lnTo",pt:{x:"xC7",y:"yB2"}},{type:"lnTo",pt:{x:"xD7",y:"yA2"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD7",swAng:"swAng1"},{type:"lnTo",pt:{x:"xB8",y:"yC1"}},{type:"lnTo",pt:{x:"xC8",y:"yB1"}},{type:"lnTo",pt:{x:"xD8",y:"yA1"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD8",swAng:"swAng5"},{type:"lnTo",pt:{x:"xE9",y:"yC9"}},{type:"lnTo",pt:{x:"xF9",y:"yC9"}},{type:"lnTo",pt:{x:"xD9",y:"yD9"}},{type:"arcTo",wR:"rw",hR:"rh",stAng:"bD9",swAng:"swAng5"},{type:"close"}],extrusionOk:!1,stroke:!0}]},halfFrame:{avLst:[{n:"adj1",f:"val 33333"},{n:"adj2",f:"val 33333"}],gdLst:[{n:"maxAdj2",f:"*/ 100000 w ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"x1",f:"*/ ss a2 100000"},{n:"g1",f:"*/ h x1 w"},{n:"g2",f:"+- h 0 g1"},{n:"maxAdj1",f:"*/ 100000 g2 ss"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"y1",f:"*/ ss a1 100000"},{n:"dx2",f:"*/ y1 w h"},{n:"x2",f:"+- r 0 dx2"},{n:"dy2",f:"*/ x1 h w"},{n:"y2",f:"+- b 0 dy2"},{n:"cx1",f:"*/ x1 1 2"},{n:"cy1",f:"+/ y2 b 2"},{n:"cx2",f:"+/ x2 r 2"},{n:"cy2",f:"*/ y1 1 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},heart:{gdLst:[{n:"dx1",f:"*/ w 49 48"},{n:"dx2",f:"*/ w 10 48"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"},{n:"x4",f:"+- hc dx1 0"},{n:"y1",f:"+- t 0 hd3"},{n:"il",f:"*/ w 1 6"},{n:"ir",f:"*/ w 5 6"},{n:"ib",f:"*/ h 2 3"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"hc",y:"hd4"}},{type:"cubicBezTo",pts:[{x:"x3",y:"y1"},{x:"x4",y:"hd4"},{x:"hc",y:"b"}]},{type:"cubicBezTo",pts:[{x:"x1",y:"hd4"},{x:"x2",y:"y1"},{x:"hc",y:"hd4"}]},{type:"close"}],extrusionOk:!1,stroke:!0}]},heptagon:{avLst:[{n:"hf",f:"val 102572"},{n:"vf",f:"val 105210"}],gdLst:[{n:"swd2",f:"*/ wd2 hf 100000"},{n:"shd2",f:"*/ hd2 vf 100000"},{n:"svc",f:"*/ vc vf 100000"},{n:"dx1",f:"*/ swd2 97493 100000"},{n:"dx2",f:"*/ swd2 78183 100000"},{n:"dx3",f:"*/ swd2 43388 100000"},{n:"dy1",f:"*/ shd2 62349 100000"},{n:"dy2",f:"*/ shd2 22252 100000"},{n:"dy3",f:"*/ shd2 90097 100000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc 0 dx3"},{n:"x4",f:"+- hc dx3 0"},{n:"x5",f:"+- hc dx2 0"},{n:"x6",f:"+- hc dx1 0"},{n:"y1",f:"+- svc 0 dy1"},{n:"y2",f:"+- svc dy2 0"},{n:"y3",f:"+- svc dy3 0"},{n:"ib",f:"+- b 0 y1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"x5",y:"y1"}},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},hexagon:{avLst:[{n:"adj",f:"val 25000"},{n:"vf",f:"val 115470"}],gdLst:[{n:"maxAdj",f:"*/ 50000 w ss"},{n:"a",f:"pin 0 adj maxAdj"},{n:"shd2",f:"*/ hd2 vf 100000"},{n:"x1",f:"*/ ss a 100000"},{n:"x2",f:"+- r 0 x1"},{n:"dy1",f:"sin shd2 3600000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc dy1 0"},{n:"q1",f:"*/ maxAdj -1 2"},{n:"q2",f:"+- a q1 0"},{n:"q3",f:"?: q2 4 2"},{n:"q4",f:"?: q2 3 2"},{n:"q5",f:"?: q2 q1 0"},{n:"q6",f:"+/ a q5 q1"},{n:"q7",f:"*/ q6 q4 -1"},{n:"q8",f:"+- q3 q7 0"},{n:"il",f:"*/ w q8 24"},{n:"it",f:"*/ h q8 24"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 it"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},homePlate:{avLst:[{n:"adj",f:"val 50000"}],gdLst:[{n:"maxAdj",f:"*/ 100000 w ss"},{n:"a",f:"pin 0 adj maxAdj"},{n:"dx1",f:"*/ ss a 100000"},{n:"x1",f:"+- r 0 dx1"},{n:"ir",f:"+/ x1 r 2"},{n:"x2",f:"*/ x1 1 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},horizontalScroll:{avLst:[{n:"adj",f:"val 12500"}],gdLst:[{n:"a",f:"pin 0 adj 25000"},{n:"ch",f:"*/ ss a 100000"},{n:"ch2",f:"*/ ch 1 2"},{n:"ch4",f:"*/ ch 1 4"},{n:"y3",f:"+- ch ch2 0"},{n:"y4",f:"+- ch ch 0"},{n:"y6",f:"+- b 0 ch"},{n:"y7",f:"+- b 0 ch2"},{n:"y5",f:"+- y6 0 ch2"},{n:"x3",f:"+- r 0 ch"},{n:"x4",f:"+- r 0 ch2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"r",y:"ch2"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"x4",y:"ch2"}},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"0",swAng:"cd2"},{type:"lnTo",pt:{x:"x3",y:"ch"}},{type:"lnTo",pt:{x:"ch2",y:"ch"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"l",y:"y7"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd2",swAng:"-10800000"},{type:"lnTo",pt:{x:"ch",y:"y6"}},{type:"lnTo",pt:{x:"x4",y:"y6"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd4",swAng:"-5400000"},{type:"close"},{type:"moveTo",pt:{x:"ch2",y:"y4"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd4",swAng:"-5400000"},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"0",swAng:"-10800000"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"ch2",y:"y4"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd4",swAng:"-5400000"},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"0",swAng:"-10800000"},{type:"close"},{type:"moveTo",pt:{x:"x4",y:"ch"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd4",swAng:"-16200000"},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"cd2",swAng:"-10800000"},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"y3"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x3",y:"ch"}},{type:"lnTo",pt:{x:"x3",y:"ch2"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd2",swAng:"cd2"},{type:"lnTo",pt:{x:"r",y:"y5"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"ch",y:"y6"}},{type:"lnTo",pt:{x:"ch",y:"y7"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"0",swAng:"cd2"},{type:"close"},{type:"moveTo",pt:{x:"x3",y:"ch"}},{type:"lnTo",pt:{x:"x4",y:"ch"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd4",swAng:"-5400000"},{type:"moveTo",pt:{x:"x4",y:"ch"}},{type:"lnTo",pt:{x:"x4",y:"ch2"}},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"0",swAng:"cd2"},{type:"moveTo",pt:{x:"ch2",y:"y4"}},{type:"lnTo",pt:{x:"ch2",y:"y3"}},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"cd2",swAng:"cd2"},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"0",swAng:"cd2"},{type:"moveTo",pt:{x:"ch",y:"y3"}},{type:"lnTo",pt:{x:"ch",y:"y6"}}],fill:"none",extrusionOk:!1,stroke:!0}]},irregularSeal1:{gdLst:[{n:"x5",f:"*/ w 4627 21600"},{n:"x12",f:"*/ w 8485 21600"},{n:"x21",f:"*/ w 16702 21600"},{n:"x24",f:"*/ w 14522 21600"},{n:"y3",f:"*/ h 6320 21600"},{n:"y6",f:"*/ h 8615 21600"},{n:"y9",f:"*/ h 13937 21600"},{n:"y18",f:"*/ h 13290 21600"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"10800",y:"5800"}},{type:"lnTo",pt:{x:"14522",y:"0"}},{type:"lnTo",pt:{x:"14155",y:"5325"}},{type:"lnTo",pt:{x:"18380",y:"4457"}},{type:"lnTo",pt:{x:"16702",y:"7315"}},{type:"lnTo",pt:{x:"21097",y:"8137"}},{type:"lnTo",pt:{x:"17607",y:"10475"}},{type:"lnTo",pt:{x:"21600",y:"13290"}},{type:"lnTo",pt:{x:"16837",y:"12942"}},{type:"lnTo",pt:{x:"18145",y:"18095"}},{type:"lnTo",pt:{x:"14020",y:"14457"}},{type:"lnTo",pt:{x:"13247",y:"19737"}},{type:"lnTo",pt:{x:"10532",y:"14935"}},{type:"lnTo",pt:{x:"8485",y:"21600"}},{type:"lnTo",pt:{x:"7715",y:"15627"}},{type:"lnTo",pt:{x:"4762",y:"17617"}},{type:"lnTo",pt:{x:"5667",y:"13937"}},{type:"lnTo",pt:{x:"135",y:"14587"}},{type:"lnTo",pt:{x:"3722",y:"11775"}},{type:"lnTo",pt:{x:"0",y:"8615"}},{type:"lnTo",pt:{x:"4627",y:"7617"}},{type:"lnTo",pt:{x:"370",y:"2295"}},{type:"lnTo",pt:{x:"7312",y:"6320"}},{type:"lnTo",pt:{x:"8352",y:"2295"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:21600,h:21600}]},irregularSeal2:{gdLst:[{n:"x2",f:"*/ w 9722 21600"},{n:"x5",f:"*/ w 5372 21600"},{n:"x16",f:"*/ w 11612 21600"},{n:"x19",f:"*/ w 14640 21600"},{n:"y2",f:"*/ h 1887 21600"},{n:"y3",f:"*/ h 6382 21600"},{n:"y8",f:"*/ h 12877 21600"},{n:"y14",f:"*/ h 19712 21600"},{n:"y16",f:"*/ h 18842 21600"},{n:"y17",f:"*/ h 15935 21600"},{n:"y24",f:"*/ h 6645 21600"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"11462",y:"4342"}},{type:"lnTo",pt:{x:"14790",y:"0"}},{type:"lnTo",pt:{x:"14525",y:"5777"}},{type:"lnTo",pt:{x:"18007",y:"3172"}},{type:"lnTo",pt:{x:"16380",y:"6532"}},{type:"lnTo",pt:{x:"21600",y:"6645"}},{type:"lnTo",pt:{x:"16985",y:"9402"}},{type:"lnTo",pt:{x:"18270",y:"11290"}},{type:"lnTo",pt:{x:"16380",y:"12310"}},{type:"lnTo",pt:{x:"18877",y:"15632"}},{type:"lnTo",pt:{x:"14640",y:"14350"}},{type:"lnTo",pt:{x:"14942",y:"17370"}},{type:"lnTo",pt:{x:"12180",y:"15935"}},{type:"lnTo",pt:{x:"11612",y:"18842"}},{type:"lnTo",pt:{x:"9872",y:"17370"}},{type:"lnTo",pt:{x:"8700",y:"19712"}},{type:"lnTo",pt:{x:"7527",y:"18125"}},{type:"lnTo",pt:{x:"4917",y:"21600"}},{type:"lnTo",pt:{x:"4805",y:"18240"}},{type:"lnTo",pt:{x:"1285",y:"17825"}},{type:"lnTo",pt:{x:"3330",y:"15370"}},{type:"lnTo",pt:{x:"0",y:"12877"}},{type:"lnTo",pt:{x:"3935",y:"11592"}},{type:"lnTo",pt:{x:"1172",y:"8270"}},{type:"lnTo",pt:{x:"5372",y:"7817"}},{type:"lnTo",pt:{x:"4502",y:"3625"}},{type:"lnTo",pt:{x:"8550",y:"6382"}},{type:"lnTo",pt:{x:"9722",y:"1887"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:21600,h:21600}]},leftArrow:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"maxAdj2",f:"*/ 100000 w ss"},{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"dx2",f:"*/ ss a2 100000"},{n:"x2",f:"+- l dx2 0"},{n:"dy1",f:"*/ h a1 200000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc dy1 0"},{n:"dx1",f:"*/ y1 dx2 hd2"},{n:"x1",f:"+- x2 0 dx1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},leftArrowCallout:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"},{n:"adj4",f:"val 64977"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 h ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"maxAdj3",f:"*/ 100000 w ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"q2",f:"*/ a3 ss w"},{n:"maxAdj4",f:"+- 100000 0 q2"},{n:"a4",f:"pin 0 adj4 maxAdj4"},{n:"dy1",f:"*/ ss a2 100000"},{n:"dy2",f:"*/ ss a1 200000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc dy2 0"},{n:"y4",f:"+- vc dy1 0"},{n:"x1",f:"*/ ss a3 100000"},{n:"dx2",f:"*/ w a4 100000"},{n:"x2",f:"+- r 0 dx2"},{n:"x3",f:"+/ x2 r 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},leftBrace:{avLst:[{n:"adj1",f:"val 8333"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"a2",f:"pin 0 adj2 100000"},{n:"q1",f:"+- 100000 0 a2"},{n:"q2",f:"min q1 a2"},{n:"q3",f:"*/ q2 1 2"},{n:"maxAdj1",f:"*/ q3 h ss"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"y1",f:"*/ ss a1 100000"},{n:"y3",f:"*/ h a2 100000"},{n:"y4",f:"+- y3 y1 0"},{n:"dx1",f:"cos wd2 2700000"},{n:"dy1",f:"sin y1 2700000"},{n:"il",f:"+- r 0 dx1"},{n:"it",f:"+- y1 0 dy1"},{n:"ib",f:"+- b dy1 y1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"r",y:"b"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"hc",y:"y4"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"0",swAng:"-5400000"},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"hc",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd2",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"r",y:"b"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"hc",y:"y4"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"0",swAng:"-5400000"},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"hc",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd2",swAng:"cd4"}],fill:"none",extrusionOk:!1,stroke:!0}]},leftBracket:{avLst:[{n:"adj",f:"val 8333"}],gdLst:[{n:"maxAdj",f:"*/ 50000 h ss"},{n:"a",f:"pin 0 adj maxAdj"},{n:"y1",f:"*/ ss a 100000"},{n:"y2",f:"+- b 0 y1"},{n:"dx1",f:"cos w 2700000"},{n:"dy1",f:"sin y1 2700000"},{n:"il",f:"+- r 0 dx1"},{n:"it",f:"+- y1 0 dy1"},{n:"ib",f:"+- b dy1 y1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"r",y:"b"}},{type:"arcTo",wR:"w",hR:"y1",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"l",y:"y1"}},{type:"arcTo",wR:"w",hR:"y1",stAng:"cd2",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"r",y:"b"}},{type:"arcTo",wR:"w",hR:"y1",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"l",y:"y1"}},{type:"arcTo",wR:"w",hR:"y1",stAng:"cd2",swAng:"cd4"}],fill:"none",extrusionOk:!1,stroke:!0}]},leftCircularArrow:{avLst:[{n:"adj1",f:"val 12500"},{n:"adj2",f:"val -1142319"},{n:"adj3",f:"val 1142319"},{n:"adj4",f:"val 10800000"},{n:"adj5",f:"val 12500"}],gdLst:[{n:"a5",f:"pin 0 adj5 25000"},{n:"maxAdj1",f:"*/ a5 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"enAng",f:"pin 1 adj3 21599999"},{n:"stAng",f:"pin 0 adj4 21599999"},{n:"th",f:"*/ ss a1 100000"},{n:"thh",f:"*/ ss a5 100000"},{n:"th2",f:"*/ th 1 2"},{n:"rw1",f:"+- wd2 th2 thh"},{n:"rh1",f:"+- hd2 th2 thh"},{n:"rw2",f:"+- rw1 0 th"},{n:"rh2",f:"+- rh1 0 th"},{n:"rw3",f:"+- rw2 th2 0"},{n:"rh3",f:"+- rh2 th2 0"},{n:"wtH",f:"sin rw3 enAng"},{n:"htH",f:"cos rh3 enAng"},{n:"dxH",f:"cat2 rw3 htH wtH"},{n:"dyH",f:"sat2 rh3 htH wtH"},{n:"xH",f:"+- hc dxH 0"},{n:"yH",f:"+- vc dyH 0"},{n:"rI",f:"min rw2 rh2"},{n:"u1",f:"*/ dxH dxH 1"},{n:"u2",f:"*/ dyH dyH 1"},{n:"u3",f:"*/ rI rI 1"},{n:"u4",f:"+- u1 0 u3"},{n:"u5",f:"+- u2 0 u3"},{n:"u6",f:"*/ u4 u5 u1"},{n:"u7",f:"*/ u6 1 u2"},{n:"u8",f:"+- 1 0 u7"},{n:"u9",f:"sqrt u8"},{n:"u10",f:"*/ u4 1 dxH"},{n:"u11",f:"*/ u10 1 dyH"},{n:"u12",f:"+/ 1 u9 u11"},{n:"u13",f:"at2 1 u12"},{n:"u14",f:"+- u13 21600000 0"},{n:"u15",f:"?: u13 u13 u14"},{n:"u16",f:"+- u15 0 enAng"},{n:"u17",f:"+- u16 21600000 0"},{n:"u18",f:"?: u16 u16 u17"},{n:"u19",f:"+- u18 0 cd2"},{n:"u20",f:"+- u18 0 21600000"},{n:"u21",f:"?: u19 u20 u18"},{n:"u22",f:"abs u21"},{n:"minAng",f:"*/ u22 -1 1"},{n:"u23",f:"abs adj2"},{n:"a2",f:"*/ u23 -1 1"},{n:"aAng",f:"pin minAng a2 0"},{n:"ptAng",f:"+- enAng aAng 0"},{n:"wtA",f:"sin rw3 ptAng"},{n:"htA",f:"cos rh3 ptAng"},{n:"dxA",f:"cat2 rw3 htA wtA"},{n:"dyA",f:"sat2 rh3 htA wtA"},{n:"xA",f:"+- hc dxA 0"},{n:"yA",f:"+- vc dyA 0"},{n:"wtE",f:"sin rw1 stAng"},{n:"htE",f:"cos rh1 stAng"},{n:"dxE",f:"cat2 rw1 htE wtE"},{n:"dyE",f:"sat2 rh1 htE wtE"},{n:"xE",f:"+- hc dxE 0"},{n:"yE",f:"+- vc dyE 0"},{n:"wtD",f:"sin rw2 stAng"},{n:"htD",f:"cos rh2 stAng"},{n:"dxD",f:"cat2 rw2 htD wtD"},{n:"dyD",f:"sat2 rh2 htD wtD"},{n:"xD",f:"+- hc dxD 0"},{n:"yD",f:"+- vc dyD 0"},{n:"dxG",f:"cos thh ptAng"},{n:"dyG",f:"sin thh ptAng"},{n:"xG",f:"+- xH dxG 0"},{n:"yG",f:"+- yH dyG 0"},{n:"dxB",f:"cos thh ptAng"},{n:"dyB",f:"sin thh ptAng"},{n:"xB",f:"+- xH 0 dxB 0"},{n:"yB",f:"+- yH 0 dyB 0"},{n:"sx1",f:"+- xB 0 hc"},{n:"sy1",f:"+- yB 0 vc"},{n:"sx2",f:"+- xG 0 hc"},{n:"sy2",f:"+- yG 0 vc"},{n:"rO",f:"min rw1 rh1"},{n:"x1O",f:"*/ sx1 rO rw1"},{n:"y1O",f:"*/ sy1 rO rh1"},{n:"x2O",f:"*/ sx2 rO rw1"},{n:"y2O",f:"*/ sy2 rO rh1"},{n:"dxO",f:"+- x2O 0 x1O"},{n:"dyO",f:"+- y2O 0 y1O"},{n:"dO",f:"mod dxO dyO 0"},{n:"q1",f:"*/ x1O y2O 1"},{n:"q2",f:"*/ x2O y1O 1"},{n:"DO",f:"+- q1 0 q2"},{n:"q3",f:"*/ rO rO 1"},{n:"q4",f:"*/ dO dO 1"},{n:"q5",f:"*/ q3 q4 1"},{n:"q6",f:"*/ DO DO 1"},{n:"q7",f:"+- q5 0 q6"},{n:"q8",f:"max q7 0"},{n:"sdelO",f:"sqrt q8"},{n:"ndyO",f:"*/ dyO -1 1"},{n:"sdyO",f:"?: ndyO -1 1"},{n:"q9",f:"*/ sdyO dxO 1"},{n:"q10",f:"*/ q9 sdelO 1"},{n:"q11",f:"*/ DO dyO 1"},{n:"dxF1",f:"+/ q11 q10 q4"},{n:"q12",f:"+- q11 0 q10"},{n:"dxF2",f:"*/ q12 1 q4"},{n:"adyO",f:"abs dyO"},{n:"q13",f:"*/ adyO sdelO 1"},{n:"q14",f:"*/ DO dxO -1"},{n:"dyF1",f:"+/ q14 q13 q4"},{n:"q15",f:"+- q14 0 q13"},{n:"dyF2",f:"*/ q15 1 q4"},{n:"q16",f:"+- x2O 0 dxF1"},{n:"q17",f:"+- x2O 0 dxF2"},{n:"q18",f:"+- y2O 0 dyF1"},{n:"q19",f:"+- y2O 0 dyF2"},{n:"q20",f:"mod q16 q18 0"},{n:"q21",f:"mod q17 q19 0"},{n:"q22",f:"+- q21 0 q20"},{n:"dxF",f:"?: q22 dxF1 dxF2"},{n:"dyF",f:"?: q22 dyF1 dyF2"},{n:"sdxF",f:"*/ dxF rw1 rO"},{n:"sdyF",f:"*/ dyF rh1 rO"},{n:"xF",f:"+- hc sdxF 0"},{n:"yF",f:"+- vc sdyF 0"},{n:"x1I",f:"*/ sx1 rI rw2"},{n:"y1I",f:"*/ sy1 rI rh2"},{n:"x2I",f:"*/ sx2 rI rw2"},{n:"y2I",f:"*/ sy2 rI rh2"},{n:"dxI",f:"+- x2I 0 x1I"},{n:"dyI",f:"+- y2I 0 y1I"},{n:"dI",f:"mod dxI dyI 0"},{n:"v1",f:"*/ x1I y2I 1"},{n:"v2",f:"*/ x2I y1I 1"},{n:"DI",f:"+- v1 0 v2"},{n:"v3",f:"*/ rI rI 1"},{n:"v4",f:"*/ dI dI 1"},{n:"v5",f:"*/ v3 v4 1"},{n:"v6",f:"*/ DI DI 1"},{n:"v7",f:"+- v5 0 v6"},{n:"v8",f:"max v7 0"},{n:"sdelI",f:"sqrt v8"},{n:"v9",f:"*/ sdyO dxI 1"},{n:"v10",f:"*/ v9 sdelI 1"},{n:"v11",f:"*/ DI dyI 1"},{n:"dxC1",f:"+/ v11 v10 v4"},{n:"v12",f:"+- v11 0 v10"},{n:"dxC2",f:"*/ v12 1 v4"},{n:"adyI",f:"abs dyI"},{n:"v13",f:"*/ adyI sdelI 1"},{n:"v14",f:"*/ DI dxI -1"},{n:"dyC1",f:"+/ v14 v13 v4"},{n:"v15",f:"+- v14 0 v13"},{n:"dyC2",f:"*/ v15 1 v4"},{n:"v16",f:"+- x1I 0 dxC1"},{n:"v17",f:"+- x1I 0 dxC2"},{n:"v18",f:"+- y1I 0 dyC1"},{n:"v19",f:"+- y1I 0 dyC2"},{n:"v20",f:"mod v16 v18 0"},{n:"v21",f:"mod v17 v19 0"},{n:"v22",f:"+- v21 0 v20"},{n:"dxC",f:"?: v22 dxC1 dxC2"},{n:"dyC",f:"?: v22 dyC1 dyC2"},{n:"sdxC",f:"*/ dxC rw2 rI"},{n:"sdyC",f:"*/ dyC rh2 rI"},{n:"xC",f:"+- hc sdxC 0"},{n:"yC",f:"+- vc sdyC 0"},{n:"ist0",f:"at2 sdxC sdyC"},{n:"ist1",f:"+- ist0 21600000 0"},{n:"istAng0",f:"?: ist0 ist0 ist1"},{n:"isw1",f:"+- stAng 0 istAng0"},{n:"isw2",f:"+- isw1 21600000 0"},{n:"iswAng0",f:"?: isw1 isw1 isw2"},{n:"istAng",f:"+- istAng0 iswAng0 0"},{n:"iswAng",f:"+- 0 0 iswAng0"},{n:"p1",f:"+- xF 0 xC"},{n:"p2",f:"+- yF 0 yC"},{n:"p3",f:"mod p1 p2 0"},{n:"p4",f:"*/ p3 1 2"},{n:"p5",f:"+- p4 0 thh"},{n:"xGp",f:"?: p5 xF xG"},{n:"yGp",f:"?: p5 yF yG"},{n:"xBp",f:"?: p5 xC xB"},{n:"yBp",f:"?: p5 yC yB"},{n:"en0",f:"at2 sdxF sdyF"},{n:"en1",f:"+- en0 21600000 0"},{n:"en2",f:"?: en0 en0 en1"},{n:"sw0",f:"+- en2 0 stAng"},{n:"sw1",f:"+- sw0 0 21600000"},{n:"swAng",f:"?: sw0 sw1 sw0"},{n:"stAng0",f:"+- stAng swAng 0"},{n:"swAng0",f:"+- 0 0 swAng"},{n:"wtI",f:"sin rw3 stAng"},{n:"htI",f:"cos rh3 stAng"},{n:"dxI",f:"cat2 rw3 htI wtI"},{n:"dyI",f:"sat2 rh3 htI wtI"},{n:"xI",f:"+- hc dxI 0"},{n:"yI",f:"+- vc dyI 0"},{n:"aI",f:"+- stAng cd4 0"},{n:"aA",f:"+- ptAng 0 cd4"},{n:"aB",f:"+- ptAng cd2 0"},{n:"idx",f:"cos rw1 2700000"},{n:"idy",f:"sin rh1 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"xE",y:"yE"}},{type:"lnTo",pt:{x:"xD",y:"yD"}},{type:"arcTo",wR:"rw2",hR:"rh2",stAng:"istAng",swAng:"iswAng"},{type:"lnTo",pt:{x:"xBp",y:"yBp"}},{type:"lnTo",pt:{x:"xA",y:"yA"}},{type:"lnTo",pt:{x:"xGp",y:"yGp"}},{type:"lnTo",pt:{x:"xF",y:"yF"}},{type:"arcTo",wR:"rw1",hR:"rh1",stAng:"stAng0",swAng:"swAng0"},{type:"close"}],extrusionOk:!1,stroke:!0}]},leftRightArrow:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 w ss"},{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"x2",f:"*/ ss a2 100000"},{n:"x3",f:"+- r 0 x2"},{n:"dy",f:"*/ h a1 200000"},{n:"y1",f:"+- vc 0 dy"},{n:"y2",f:"+- vc dy 0"},{n:"dx1",f:"*/ y1 x2 hd2"},{n:"x1",f:"+- x2 0 dx1"},{n:"x4",f:"+- x3 dx1 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x3",y:"b"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},leftRightArrowCallout:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"},{n:"adj4",f:"val 48123"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 h ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"maxAdj3",f:"*/ 50000 w ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"q2",f:"*/ a3 ss wd2"},{n:"maxAdj4",f:"+- 100000 0 q2"},{n:"a4",f:"pin 0 adj4 maxAdj4"},{n:"dy1",f:"*/ ss a2 100000"},{n:"dy2",f:"*/ ss a1 200000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc dy2 0"},{n:"y4",f:"+- vc dy1 0"},{n:"x1",f:"*/ ss a3 100000"},{n:"x4",f:"+- r 0 x1"},{n:"dx2",f:"*/ w a4 200000"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"x4",y:"y2"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x4",y:"y4"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},leftRightCircularArrow:{avLst:[{n:"adj1",f:"val 12500"},{n:"adj2",f:"val 1142319"},{n:"adj3",f:"val 20457681"},{n:"adj4",f:"val 11942319"},{n:"adj5",f:"val 12500"}],gdLst:[{n:"a5",f:"pin 0 adj5 25000"},{n:"maxAdj1",f:"*/ a5 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"enAng",f:"pin 1 adj3 21599999"},{n:"stAng",f:"pin 0 adj4 21599999"},{n:"th",f:"*/ ss a1 100000"},{n:"thh",f:"*/ ss a5 100000"},{n:"th2",f:"*/ th 1 2"},{n:"rw1",f:"+- wd2 th2 thh"},{n:"rh1",f:"+- hd2 th2 thh"},{n:"rw2",f:"+- rw1 0 th"},{n:"rh2",f:"+- rh1 0 th"},{n:"rw3",f:"+- rw2 th2 0"},{n:"rh3",f:"+- rh2 th2 0"},{n:"wtH",f:"sin rw3 enAng"},{n:"htH",f:"cos rh3 enAng"},{n:"dxH",f:"cat2 rw3 htH wtH"},{n:"dyH",f:"sat2 rh3 htH wtH"},{n:"xH",f:"+- hc dxH 0"},{n:"yH",f:"+- vc dyH 0"},{n:"rI",f:"min rw2 rh2"},{n:"u1",f:"*/ dxH dxH 1"},{n:"u2",f:"*/ dyH dyH 1"},{n:"u3",f:"*/ rI rI 1"},{n:"u4",f:"+- u1 0 u3"},{n:"u5",f:"+- u2 0 u3"},{n:"u6",f:"*/ u4 u5 u1"},{n:"u7",f:"*/ u6 1 u2"},{n:"u8",f:"+- 1 0 u7"},{n:"u9",f:"sqrt u8"},{n:"u10",f:"*/ u4 1 dxH"},{n:"u11",f:"*/ u10 1 dyH"},{n:"u12",f:"+/ 1 u9 u11"},{n:"u13",f:"at2 1 u12"},{n:"u14",f:"+- u13 21600000 0"},{n:"u15",f:"?: u13 u13 u14"},{n:"u16",f:"+- u15 0 enAng"},{n:"u17",f:"+- u16 21600000 0"},{n:"u18",f:"?: u16 u16 u17"},{n:"u19",f:"+- u18 0 cd2"},{n:"u20",f:"+- u18 0 21600000"},{n:"u21",f:"?: u19 u20 u18"},{n:"maxAng",f:"abs u21"},{n:"aAng",f:"pin 0 adj2 maxAng"},{n:"ptAng",f:"+- enAng aAng 0"},{n:"wtA",f:"sin rw3 ptAng"},{n:"htA",f:"cos rh3 ptAng"},{n:"dxA",f:"cat2 rw3 htA wtA"},{n:"dyA",f:"sat2 rh3 htA wtA"},{n:"xA",f:"+- hc dxA 0"},{n:"yA",f:"+- vc dyA 0"},{n:"dxG",f:"cos thh ptAng"},{n:"dyG",f:"sin thh ptAng"},{n:"xG",f:"+- xH dxG 0"},{n:"yG",f:"+- yH dyG 0"},{n:"dxB",f:"cos thh ptAng"},{n:"dyB",f:"sin thh ptAng"},{n:"xB",f:"+- xH 0 dxB 0"},{n:"yB",f:"+- yH 0 dyB 0"},{n:"sx1",f:"+- xB 0 hc"},{n:"sy1",f:"+- yB 0 vc"},{n:"sx2",f:"+- xG 0 hc"},{n:"sy2",f:"+- yG 0 vc"},{n:"rO",f:"min rw1 rh1"},{n:"x1O",f:"*/ sx1 rO rw1"},{n:"y1O",f:"*/ sy1 rO rh1"},{n:"x2O",f:"*/ sx2 rO rw1"},{n:"y2O",f:"*/ sy2 rO rh1"},{n:"dxO",f:"+- x2O 0 x1O"},{n:"dyO",f:"+- y2O 0 y1O"},{n:"dO",f:"mod dxO dyO 0"},{n:"q1",f:"*/ x1O y2O 1"},{n:"q2",f:"*/ x2O y1O 1"},{n:"DO",f:"+- q1 0 q2"},{n:"q3",f:"*/ rO rO 1"},{n:"q4",f:"*/ dO dO 1"},{n:"q5",f:"*/ q3 q4 1"},{n:"q6",f:"*/ DO DO 1"},{n:"q7",f:"+- q5 0 q6"},{n:"q8",f:"max q7 0"},{n:"sdelO",f:"sqrt q8"},{n:"ndyO",f:"*/ dyO -1 1"},{n:"sdyO",f:"?: ndyO -1 1"},{n:"q9",f:"*/ sdyO dxO 1"},{n:"q10",f:"*/ q9 sdelO 1"},{n:"q11",f:"*/ DO dyO 1"},{n:"dxF1",f:"+/ q11 q10 q4"},{n:"q12",f:"+- q11 0 q10"},{n:"dxF2",f:"*/ q12 1 q4"},{n:"adyO",f:"abs dyO"},{n:"q13",f:"*/ adyO sdelO 1"},{n:"q14",f:"*/ DO dxO -1"},{n:"dyF1",f:"+/ q14 q13 q4"},{n:"q15",f:"+- q14 0 q13"},{n:"dyF2",f:"*/ q15 1 q4"},{n:"q16",f:"+- x2O 0 dxF1"},{n:"q17",f:"+- x2O 0 dxF2"},{n:"q18",f:"+- y2O 0 dyF1"},{n:"q19",f:"+- y2O 0 dyF2"},{n:"q20",f:"mod q16 q18 0"},{n:"q21",f:"mod q17 q19 0"},{n:"q22",f:"+- q21 0 q20"},{n:"dxF",f:"?: q22 dxF1 dxF2"},{n:"dyF",f:"?: q22 dyF1 dyF2"},{n:"sdxF",f:"*/ dxF rw1 rO"},{n:"sdyF",f:"*/ dyF rh1 rO"},{n:"xF",f:"+- hc sdxF 0"},{n:"yF",f:"+- vc sdyF 0"},{n:"x1I",f:"*/ sx1 rI rw2"},{n:"y1I",f:"*/ sy1 rI rh2"},{n:"x2I",f:"*/ sx2 rI rw2"},{n:"y2I",f:"*/ sy2 rI rh2"},{n:"dxI",f:"+- x2I 0 x1I"},{n:"dyI",f:"+- y2I 0 y1I"},{n:"dI",f:"mod dxI dyI 0"},{n:"v1",f:"*/ x1I y2I 1"},{n:"v2",f:"*/ x2I y1I 1"},{n:"DI",f:"+- v1 0 v2"},{n:"v3",f:"*/ rI rI 1"},{n:"v4",f:"*/ dI dI 1"},{n:"v5",f:"*/ v3 v4 1"},{n:"v6",f:"*/ DI DI 1"},{n:"v7",f:"+- v5 0 v6"},{n:"v8",f:"max v7 0"},{n:"sdelI",f:"sqrt v8"},{n:"v9",f:"*/ sdyO dxI 1"},{n:"v10",f:"*/ v9 sdelI 1"},{n:"v11",f:"*/ DI dyI 1"},{n:"dxC1",f:"+/ v11 v10 v4"},{n:"v12",f:"+- v11 0 v10"},{n:"dxC2",f:"*/ v12 1 v4"},{n:"adyI",f:"abs dyI"},{n:"v13",f:"*/ adyI sdelI 1"},{n:"v14",f:"*/ DI dxI -1"},{n:"dyC1",f:"+/ v14 v13 v4"},{n:"v15",f:"+- v14 0 v13"},{n:"dyC2",f:"*/ v15 1 v4"},{n:"v16",f:"+- x1I 0 dxC1"},{n:"v17",f:"+- x1I 0 dxC2"},{n:"v18",f:"+- y1I 0 dyC1"},{n:"v19",f:"+- y1I 0 dyC2"},{n:"v20",f:"mod v16 v18 0"},{n:"v21",f:"mod v17 v19 0"},{n:"v22",f:"+- v21 0 v20"},{n:"dxC",f:"?: v22 dxC1 dxC2"},{n:"dyC",f:"?: v22 dyC1 dyC2"},{n:"sdxC",f:"*/ dxC rw2 rI"},{n:"sdyC",f:"*/ dyC rh2 rI"},{n:"xC",f:"+- hc sdxC 0"},{n:"yC",f:"+- vc sdyC 0"},{n:"wtI",f:"sin rw3 stAng"},{n:"htI",f:"cos rh3 stAng"},{n:"dxI",f:"cat2 rw3 htI wtI"},{n:"dyI",f:"sat2 rh3 htI wtI"},{n:"xI",f:"+- hc dxI 0"},{n:"yI",f:"+- vc dyI 0"},{n:"lptAng",f:"+- stAng 0 aAng"},{n:"wtL",f:"sin rw3 lptAng"},{n:"htL",f:"cos rh3 lptAng"},{n:"dxL",f:"cat2 rw3 htL wtL"},{n:"dyL",f:"sat2 rh3 htL wtL"},{n:"xL",f:"+- hc dxL 0"},{n:"yL",f:"+- vc dyL 0"},{n:"dxK",f:"cos thh lptAng"},{n:"dyK",f:"sin thh lptAng"},{n:"xK",f:"+- xI dxK 0"},{n:"yK",f:"+- yI dyK 0"},{n:"dxJ",f:"cos thh lptAng"},{n:"dyJ",f:"sin thh lptAng"},{n:"xJ",f:"+- xI 0 dxJ 0"},{n:"yJ",f:"+- yI 0 dyJ 0"},{n:"p1",f:"+- xF 0 xC"},{n:"p2",f:"+- yF 0 yC"},{n:"p3",f:"mod p1 p2 0"},{n:"p4",f:"*/ p3 1 2"},{n:"p5",f:"+- p4 0 thh"},{n:"xGp",f:"?: p5 xF xG"},{n:"yGp",f:"?: p5 yF yG"},{n:"xBp",f:"?: p5 xC xB"},{n:"yBp",f:"?: p5 yC yB"},{n:"en0",f:"at2 sdxF sdyF"},{n:"en1",f:"+- en0 21600000 0"},{n:"en2",f:"?: en0 en0 en1"},{n:"od0",f:"+- en2 0 enAng"},{n:"od1",f:"+- od0 21600000 0"},{n:"od2",f:"?: od0 od0 od1"},{n:"st0",f:"+- stAng 0 od2"},{n:"st1",f:"+- st0 21600000 0"},{n:"st2",f:"?: st0 st0 st1"},{n:"sw0",f:"+- en2 0 st2"},{n:"sw1",f:"+- sw0 21600000 0"},{n:"swAng",f:"?: sw0 sw0 sw1"},{n:"ist0",f:"at2 sdxC sdyC"},{n:"ist1",f:"+- ist0 21600000 0"},{n:"istAng",f:"?: ist0 ist0 ist1"},{n:"id0",f:"+- istAng 0 enAng"},{n:"id1",f:"+- id0 0 21600000"},{n:"id2",f:"?: id0 id1 id0"},{n:"ien0",f:"+- stAng 0 id2"},{n:"ien1",f:"+- ien0 0 21600000"},{n:"ien2",f:"?: ien1 ien1 ien0"},{n:"isw1",f:"+- ien2 0 istAng"},{n:"isw2",f:"+- isw1 0 21600000"},{n:"iswAng",f:"?: isw1 isw2 isw1"},{n:"wtE",f:"sin rw1 st2"},{n:"htE",f:"cos rh1 st2"},{n:"dxE",f:"cat2 rw1 htE wtE"},{n:"dyE",f:"sat2 rh1 htE wtE"},{n:"xE",f:"+- hc dxE 0"},{n:"yE",f:"+- vc dyE 0"},{n:"wtD",f:"sin rw2 ien2"},{n:"htD",f:"cos rh2 ien2"},{n:"dxD",f:"cat2 rw2 htD wtD"},{n:"dyD",f:"sat2 rh2 htD wtD"},{n:"xD",f:"+- hc dxD 0"},{n:"yD",f:"+- vc dyD 0"},{n:"xKp",f:"?: p5 xE xK"},{n:"yKp",f:"?: p5 yE yK"},{n:"xJp",f:"?: p5 xD xJ"},{n:"yJp",f:"?: p5 yD yJ"},{n:"aL",f:"+- lptAng 0 cd4"},{n:"aA",f:"+- ptAng cd4 0"},{n:"aB",f:"+- ptAng cd2 0"},{n:"aJ",f:"+- lptAng cd2 0"},{n:"idx",f:"cos rw1 2700000"},{n:"idy",f:"sin rh1 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"xL",y:"yL"}},{type:"lnTo",pt:{x:"xKp",y:"yKp"}},{type:"lnTo",pt:{x:"xE",y:"yE"}},{type:"arcTo",wR:"rw1",hR:"rh1",stAng:"st2",swAng:"swAng"},{type:"lnTo",pt:{x:"xGp",y:"yGp"}},{type:"lnTo",pt:{x:"xA",y:"yA"}},{type:"lnTo",pt:{x:"xBp",y:"yBp"}},{type:"lnTo",pt:{x:"xC",y:"yC"}},{type:"arcTo",wR:"rw2",hR:"rh2",stAng:"istAng",swAng:"iswAng"},{type:"lnTo",pt:{x:"xJp",y:"yJp"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},leftRightRibbon:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"},{n:"adj3",f:"val 16667"}],gdLst:[{n:"a3",f:"pin 0 adj3 33333"},{n:"maxAdj1",f:"+- 100000 0 a3"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"w1",f:"+- wd2 0 wd32"},{n:"maxAdj2",f:"*/ 100000 w1 ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"x1",f:"*/ ss a2 100000"},{n:"x4",f:"+- r 0 x1"},{n:"dy1",f:"*/ h a1 200000"},{n:"dy2",f:"*/ h a3 -200000"},{n:"ly1",f:"+- vc dy2 dy1"},{n:"ry4",f:"+- vc dy1 dy2"},{n:"ly2",f:"+- ly1 dy1 0"},{n:"ry3",f:"+- b 0 ly2"},{n:"ly4",f:"*/ ly2 2 1"},{n:"ry1",f:"+- b 0 ly4"},{n:"ly3",f:"+- ly4 0 ly1"},{n:"ry2",f:"+- b 0 ly3"},{n:"hR",f:"*/ a3 ss 400000"},{n:"x2",f:"+- hc 0 wd32"},{n:"x3",f:"+- hc wd32 0"},{n:"y1",f:"+- ly1 hR 0"},{n:"y2",f:"+- ry2 0 hR"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"ly2"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"ly1"}},{type:"lnTo",pt:{x:"hc",y:"ly1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"cd2"},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x4",y:"ry2"}},{type:"lnTo",pt:{x:"x4",y:"ry1"}},{type:"lnTo",pt:{x:"r",y:"ry3"}},{type:"lnTo",pt:{x:"x4",y:"b"}},{type:"lnTo",pt:{x:"x4",y:"ry4"}},{type:"lnTo",pt:{x:"hc",y:"ry4"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x2",y:"ly3"}},{type:"lnTo",pt:{x:"x1",y:"ly3"}},{type:"lnTo",pt:{x:"x1",y:"ly4"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x3",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x3",y:"ry2"}},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"ly2"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"ly1"}},{type:"lnTo",pt:{x:"hc",y:"ly1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"cd2"},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x4",y:"ry2"}},{type:"lnTo",pt:{x:"x4",y:"ry1"}},{type:"lnTo",pt:{x:"r",y:"ry3"}},{type:"lnTo",pt:{x:"x4",y:"b"}},{type:"lnTo",pt:{x:"x4",y:"ry4"}},{type:"lnTo",pt:{x:"hc",y:"ry4"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x2",y:"ly3"}},{type:"lnTo",pt:{x:"x1",y:"ly3"}},{type:"lnTo",pt:{x:"x1",y:"ly4"}},{type:"close"},{type:"moveTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"ry2"}},{type:"moveTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"ly3"}}],fill:"none",extrusionOk:!1,stroke:!0}]},leftRightUpArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"}],gdLst:[{n:"a2",f:"pin 0 adj2 50000"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"q1",f:"+- 100000 0 maxAdj1"},{n:"maxAdj3",f:"*/ q1 1 2"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"x1",f:"*/ ss a3 100000"},{n:"dx2",f:"*/ ss a2 100000"},{n:"x2",f:"+- hc 0 dx2"},{n:"x5",f:"+- hc dx2 0"},{n:"dx3",f:"*/ ss a1 200000"},{n:"x3",f:"+- hc 0 dx3"},{n:"x4",f:"+- hc dx3 0"},{n:"x6",f:"+- r 0 x1"},{n:"dy2",f:"*/ ss a2 50000"},{n:"y2",f:"+- b 0 dy2"},{n:"y4",f:"+- b 0 dx2"},{n:"y3",f:"+- y4 0 dx3"},{n:"y5",f:"+- y4 dx3 0"},{n:"il",f:"*/ dx3 x1 dx2"},{n:"ir",f:"+- r 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"x1"}},{type:"lnTo",pt:{x:"x2",y:"x1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"x5",y:"x1"}},{type:"lnTo",pt:{x:"x4",y:"x1"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"x6",y:"y3"}},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"y4"}},{type:"lnTo",pt:{x:"x6",y:"b"}},{type:"lnTo",pt:{x:"x6",y:"y5"}},{type:"lnTo",pt:{x:"x1",y:"y5"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},leftUpArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"}],gdLst:[{n:"a2",f:"pin 0 adj2 50000"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"maxAdj3",f:"+- 100000 0 maxAdj1"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"x1",f:"*/ ss a3 100000"},{n:"dx2",f:"*/ ss a2 50000"},{n:"x2",f:"+- r 0 dx2"},{n:"y2",f:"+- b 0 dx2"},{n:"dx4",f:"*/ ss a2 100000"},{n:"x4",f:"+- r 0 dx4"},{n:"y4",f:"+- b 0 dx4"},{n:"dx3",f:"*/ ss a1 200000"},{n:"x3",f:"+- x4 0 dx3"},{n:"x5",f:"+- x4 dx3 0"},{n:"y3",f:"+- y4 0 dx3"},{n:"y5",f:"+- y4 dx3 0"},{n:"il",f:"*/ dx3 x1 dx4"},{n:"cx1",f:"+/ x1 x5 2"},{n:"cy1",f:"+/ x1 y5 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"x1"}},{type:"lnTo",pt:{x:"x2",y:"x1"}},{type:"lnTo",pt:{x:"x4",y:"t"}},{type:"lnTo",pt:{x:"r",y:"x1"}},{type:"lnTo",pt:{x:"x5",y:"x1"}},{type:"lnTo",pt:{x:"x5",y:"y5"}},{type:"lnTo",pt:{x:"x1",y:"y5"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},lightningBolt:{gdLst:[{n:"x1",f:"*/ w 5022 21600"},{n:"x3",f:"*/ w 8472 21600"},{n:"x4",f:"*/ w 8757 21600"},{n:"x5",f:"*/ w 10012 21600"},{n:"x8",f:"*/ w 12860 21600"},{n:"x9",f:"*/ w 13917 21600"},{n:"x11",f:"*/ w 16577 21600"},{n:"y1",f:"*/ h 3890 21600"},{n:"y2",f:"*/ h 6080 21600"},{n:"y4",f:"*/ h 7437 21600"},{n:"y6",f:"*/ h 9705 21600"},{n:"y7",f:"*/ h 12007 21600"},{n:"y10",f:"*/ h 14277 21600"},{n:"y11",f:"*/ h 14915 21600"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"8472",y:"0"}},{type:"lnTo",pt:{x:"12860",y:"6080"}},{type:"lnTo",pt:{x:"11050",y:"6797"}},{type:"lnTo",pt:{x:"16577",y:"12007"}},{type:"lnTo",pt:{x:"14767",y:"12877"}},{type:"lnTo",pt:{x:"21600",y:"21600"}},{type:"lnTo",pt:{x:"10012",y:"14915"}},{type:"lnTo",pt:{x:"12222",y:"13987"}},{type:"lnTo",pt:{x:"5022",y:"9705"}},{type:"lnTo",pt:{x:"7602",y:"8382"}},{type:"lnTo",pt:{x:"0",y:"3890"}},{type:"close"}],extrusionOk:!1,stroke:!0,w:21600,h:21600}]},line:{pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}}],extrusionOk:!1,stroke:!0}]},lineInv:{pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"r",y:"t"}}],extrusionOk:!1,stroke:!0}]},mathDivide:{avLst:[{n:"adj1",f:"val 23520"},{n:"adj2",f:"val 5880"},{n:"adj3",f:"val 11760"}],gdLst:[{n:"a1",f:"pin 1000 adj1 36745"},{n:"ma1",f:"+- 0 0 a1"},{n:"ma3h",f:"+/ 73490 ma1 4"},{n:"ma3w",f:"*/ 36745 w h"},{n:"maxAdj3",f:"min ma3h ma3w"},{n:"a3",f:"pin 1000 adj3 maxAdj3"},{n:"m4a3",f:"*/ -4 a3 1"},{n:"maxAdj2",f:"+- 73490 m4a3 a1"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"dy1",f:"*/ h a1 200000"},{n:"yg",f:"*/ h a2 100000"},{n:"rad",f:"*/ h a3 100000"},{n:"dx1",f:"*/ w 73490 200000"},{n:"y3",f:"+- vc 0 dy1"},{n:"y4",f:"+- vc dy1 0"},{n:"a",f:"+- yg rad 0"},{n:"y2",f:"+- y3 0 a"},{n:"y1",f:"+- y2 0 rad"},{n:"y5",f:"+- b 0 y1"},{n:"x1",f:"+- hc 0 dx1"},{n:"x3",f:"+- hc dx1 0"},{n:"x2",f:"+- hc 0 rad"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"hc",y:"y1"}},{type:"arcTo",wR:"rad",hR:"rad",stAng:"3cd4",swAng:"21600000"},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"y5"}},{type:"arcTo",wR:"rad",hR:"rad",stAng:"cd4",swAng:"21600000"},{type:"close"},{type:"moveTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},mathEqual:{avLst:[{n:"adj1",f:"val 23520"},{n:"adj2",f:"val 11760"}],gdLst:[{n:"a1",f:"pin 0 adj1 36745"},{n:"2a1",f:"*/ a1 2 1"},{n:"mAdj2",f:"+- 100000 0 2a1"},{n:"a2",f:"pin 0 adj2 mAdj2"},{n:"dy1",f:"*/ h a1 100000"},{n:"dy2",f:"*/ h a2 200000"},{n:"dx1",f:"*/ w 73490 200000"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc dy2 0"},{n:"y1",f:"+- y2 0 dy1"},{n:"y4",f:"+- y3 dy1 0"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc dx1 0"},{n:"yC1",f:"+/ y1 y2 2"},{n:"yC2",f:"+/ y3 y4 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"close"},{type:"moveTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},mathMinus:{avLst:[{n:"adj1",f:"val 23520"}],gdLst:[{n:"a1",f:"pin 0 adj1 100000"},{n:"dy1",f:"*/ h a1 200000"},{n:"dx1",f:"*/ w 73490 200000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc dy1 0"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc dx1 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},mathMultiply:{avLst:[{n:"adj1",f:"val 23520"}],gdLst:[{n:"a1",f:"pin 0 adj1 51965"},{n:"th",f:"*/ ss a1 100000"},{n:"a",f:"at2 w h"},{n:"sa",f:"sin 1 a"},{n:"ca",f:"cos 1 a"},{n:"ta",f:"tan 1 a"},{n:"dl",f:"mod w h 0"},{n:"rw",f:"*/ dl 51965 100000"},{n:"lM",f:"+- dl 0 rw"},{n:"xM",f:"*/ ca lM 2"},{n:"yM",f:"*/ sa lM 2"},{n:"dxAM",f:"*/ sa th 2"},{n:"dyAM",f:"*/ ca th 2"},{n:"xA",f:"+- xM 0 dxAM"},{n:"yA",f:"+- yM dyAM 0"},{n:"xB",f:"+- xM dxAM 0"},{n:"yB",f:"+- yM 0 dyAM"},{n:"xBC",f:"+- hc 0 xB"},{n:"yBC",f:"*/ xBC ta 1"},{n:"yC",f:"+- yBC yB 0"},{n:"xD",f:"+- r 0 xB"},{n:"xE",f:"+- r 0 xA"},{n:"yFE",f:"+- vc 0 yA"},{n:"xFE",f:"*/ yFE 1 ta"},{n:"xF",f:"+- xE 0 xFE"},{n:"xL",f:"+- xA xFE 0"},{n:"yG",f:"+- b 0 yA"},{n:"yH",f:"+- b 0 yB"},{n:"yI",f:"+- b 0 yC"},{n:"xC2",f:"+- r 0 xM"},{n:"yC3",f:"+- b 0 yM"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"xA",y:"yA"}},{type:"lnTo",pt:{x:"xB",y:"yB"}},{type:"lnTo",pt:{x:"hc",y:"yC"}},{type:"lnTo",pt:{x:"xD",y:"yB"}},{type:"lnTo",pt:{x:"xE",y:"yA"}},{type:"lnTo",pt:{x:"xF",y:"vc"}},{type:"lnTo",pt:{x:"xE",y:"yG"}},{type:"lnTo",pt:{x:"xD",y:"yH"}},{type:"lnTo",pt:{x:"hc",y:"yI"}},{type:"lnTo",pt:{x:"xB",y:"yH"}},{type:"lnTo",pt:{x:"xA",y:"yG"}},{type:"lnTo",pt:{x:"xL",y:"vc"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},mathNotEqual:{avLst:[{n:"adj1",f:"val 23520"},{n:"adj2",f:"val 6600000"},{n:"adj3",f:"val 11760"}],gdLst:[{n:"a1",f:"pin 0 adj1 50000"},{n:"crAng",f:"pin 4200000 adj2 6600000"},{n:"2a1",f:"*/ a1 2 1"},{n:"maxAdj3",f:"+- 100000 0 2a1"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"dy1",f:"*/ h a1 100000"},{n:"dy2",f:"*/ h a3 200000"},{n:"dx1",f:"*/ w 73490 200000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x8",f:"+- hc dx1 0"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc dy2 0"},{n:"y1",f:"+- y2 0 dy1"},{n:"y4",f:"+- y3 dy1 0"},{n:"cadj2",f:"+- crAng 0 cd4"},{n:"xadj2",f:"tan hd2 cadj2"},{n:"len",f:"mod xadj2 hd2 0"},{n:"bhw",f:"*/ len dy1 hd2"},{n:"bhw2",f:"*/ bhw 1 2"},{n:"x7",f:"+- hc xadj2 bhw2"},{n:"dx67",f:"*/ xadj2 y1 hd2"},{n:"x6",f:"+- x7 0 dx67"},{n:"dx57",f:"*/ xadj2 y2 hd2"},{n:"x5",f:"+- x7 0 dx57"},{n:"dx47",f:"*/ xadj2 y3 hd2"},{n:"x4",f:"+- x7 0 dx47"},{n:"dx37",f:"*/ xadj2 y4 hd2"},{n:"x3",f:"+- x7 0 dx37"},{n:"dx27",f:"*/ xadj2 2 1"},{n:"x2",f:"+- x7 0 dx27"},{n:"rx7",f:"+- x7 bhw 0"},{n:"rx6",f:"+- x6 bhw 0"},{n:"rx5",f:"+- x5 bhw 0"},{n:"rx4",f:"+- x4 bhw 0"},{n:"rx3",f:"+- x3 bhw 0"},{n:"rx2",f:"+- x2 bhw 0"},{n:"dx7",f:"*/ dy1 hd2 len"},{n:"rxt",f:"+- x7 dx7 0"},{n:"lxt",f:"+- rx7 0 dx7"},{n:"rx",f:"?: cadj2 rxt rx7"},{n:"lx",f:"?: cadj2 x7 lxt"},{n:"dy3",f:"*/ dy1 xadj2 len"},{n:"dy4",f:"+- 0 0 dy3"},{n:"ry",f:"?: cadj2 dy3 t"},{n:"ly",f:"?: cadj2 t dy4"},{n:"dlx",f:"+- w 0 rx"},{n:"drx",f:"+- w 0 lx"},{n:"dly",f:"+- h 0 ry"},{n:"dry",f:"+- h 0 ly"},{n:"xC1",f:"+/ rx lx 2"},{n:"xC2",f:"+/ drx dlx 2"},{n:"yC1",f:"+/ ry ly 2"},{n:"yC2",f:"+/ y1 y2 2"},{n:"yC3",f:"+/ y3 y4 2"},{n:"yC4",f:"+/ dry dly 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x6",y:"y1"}},{type:"lnTo",pt:{x:"lx",y:"ly"}},{type:"lnTo",pt:{x:"rx",y:"ry"}},{type:"lnTo",pt:{x:"rx6",y:"y1"}},{type:"lnTo",pt:{x:"x8",y:"y1"}},{type:"lnTo",pt:{x:"x8",y:"y2"}},{type:"lnTo",pt:{x:"rx5",y:"y2"}},{type:"lnTo",pt:{x:"rx4",y:"y3"}},{type:"lnTo",pt:{x:"x8",y:"y3"}},{type:"lnTo",pt:{x:"x8",y:"y4"}},{type:"lnTo",pt:{x:"rx3",y:"y4"}},{type:"lnTo",pt:{x:"drx",y:"dry"}},{type:"lnTo",pt:{x:"dlx",y:"dly"}},{type:"lnTo",pt:{x:"x3",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"x5",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},mathPlus:{avLst:[{n:"adj1",f:"val 23520"}],gdLst:[{n:"a1",f:"pin 0 adj1 73490"},{n:"dx1",f:"*/ w 73490 200000"},{n:"dy1",f:"*/ h 73490 200000"},{n:"dx2",f:"*/ ss a1 200000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"},{n:"x4",f:"+- hc dx1 0"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc 0 dx2"},{n:"y3",f:"+- vc dx2 0"},{n:"y4",f:"+- vc dy1 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"x4",y:"y2"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},moon:{avLst:[{n:"adj",f:"val 50000"}],gdLst:[{n:"a",f:"pin 0 adj 87500"},{n:"g0",f:"*/ ss a 100000"},{n:"g0w",f:"*/ g0 w ss"},{n:"g1",f:"+- ss 0 g0"},{n:"g2",f:"*/ g0 g0 g1"},{n:"g3",f:"*/ ss ss g1"},{n:"g4",f:"*/ g3 2 1"},{n:"g5",f:"+- g4 0 g2"},{n:"g6",f:"+- g5 0 g0"},{n:"g6w",f:"*/ g6 w ss"},{n:"g7",f:"*/ g5 1 2"},{n:"g8",f:"+- g7 0 g0"},{n:"dy1",f:"*/ g8 hd2 ss"},{n:"g10h",f:"+- vc 0 dy1"},{n:"g11h",f:"+- vc dy1 0"},{n:"g12",f:"*/ g0 9598 32768"},{n:"g12w",f:"*/ g12 w ss"},{n:"g13",f:"+- ss 0 g12"},{n:"q1",f:"*/ ss ss 1"},{n:"q2",f:"*/ g13 g13 1"},{n:"q3",f:"+- q1 0 q2"},{n:"q4",f:"sqrt q3"},{n:"dy4",f:"*/ q4 hd2 ss"},{n:"g15h",f:"+- vc 0 dy4"},{n:"g16h",f:"+- vc dy4 0"},{n:"g17w",f:"+- g6w 0 g0w"},{n:"g18w",f:"*/ g17w 1 2"},{n:"dx2p",f:"+- g0w g18w w"},{n:"dx2",f:"*/ dx2p -1 1"},{n:"dy2",f:"*/ hd2 -1 1"},{n:"stAng1",f:"at2 dx2 dy2"},{n:"enAngp1",f:"at2 dx2 hd2"},{n:"enAng1",f:"+- enAngp1 0 21600000"},{n:"swAng1",f:"+- enAng1 0 stAng1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"r",y:"b"}},{type:"arcTo",wR:"w",hR:"hd2",stAng:"cd4",swAng:"cd2"},{type:"arcTo",wR:"g18w",hR:"dy1",stAng:"stAng1",swAng:"swAng1"},{type:"close"}],extrusionOk:!1,stroke:!0}]},nonIsoscelesTrapezoid:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"}],gdLst:[{n:"maxAdj",f:"*/ 50000 w ss"},{n:"a1",f:"pin 0 adj1 maxAdj"},{n:"a2",f:"pin 0 adj2 maxAdj"},{n:"x1",f:"*/ ss a1 200000"},{n:"x2",f:"*/ ss a1 100000"},{n:"dx3",f:"*/ ss a2 100000"},{n:"x3",f:"+- r 0 dx3"},{n:"x4",f:"+/ r x3 2"},{n:"il",f:"*/ wd3 a1 maxAdj"},{n:"adjm",f:"max a1 a2"},{n:"it",f:"*/ hd3 adjm maxAdj"},{n:"irt",f:"*/ wd3 a2 maxAdj"},{n:"ir",f:"+- r 0 irt"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},noSmoking:{avLst:[{n:"adj",f:"val 18750"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dr",f:"*/ ss a 100000"},{n:"iwd2",f:"+- wd2 0 dr"},{n:"ihd2",f:"+- hd2 0 dr"},{n:"ang",f:"at2 w h"},{n:"ct",f:"cos ihd2 ang"},{n:"st",f:"sin iwd2 ang"},{n:"m",f:"mod ct st 0"},{n:"n",f:"*/ iwd2 ihd2 m"},{n:"drd2",f:"*/ dr 1 2"},{n:"dang",f:"at2 n drd2"},{n:"dang2",f:"*/ dang 2 1"},{n:"swAng",f:"+- -10800000 dang2 0"},{n:"t3",f:"at2 w h"},{n:"stAng1",f:"+- t3 0 dang"},{n:"stAng2",f:"+- stAng1 0 cd2"},{n:"ct1",f:"cos ihd2 stAng1"},{n:"st1",f:"sin iwd2 stAng1"},{n:"m1",f:"mod ct1 st1 0"},{n:"n1",f:"*/ iwd2 ihd2 m1"},{n:"dx1",f:"cos n1 stAng1"},{n:"dy1",f:"sin n1 stAng1"},{n:"x1",f:"+- hc dx1 0"},{n:"y1",f:"+- vc dy1 0"},{n:"x2",f:"+- hc 0 dx1"},{n:"y2",f:"+- vc 0 dy1"},{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"3cd4",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"close"},{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"arcTo",wR:"iwd2",hR:"ihd2",stAng:"stAng1",swAng:"swAng"},{type:"close"},{type:"moveTo",pt:{x:"x2",y:"y2"}},{type:"arcTo",wR:"iwd2",hR:"ihd2",stAng:"stAng2",swAng:"swAng"},{type:"close"}],extrusionOk:!1,stroke:!0}]},notchedRightArrow:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"maxAdj2",f:"*/ 100000 w ss"},{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"dx2",f:"*/ ss a2 100000"},{n:"x2",f:"+- r 0 dx2"},{n:"dy1",f:"*/ h a1 200000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc dy1 0"},{n:"x1",f:"*/ dy1 dx2 hd2"},{n:"x3",f:"+- r 0 x1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"vc"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},octagon:{avLst:[{n:"adj",f:"val 29289"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"x1",f:"*/ ss a 100000"},{n:"x2",f:"+- r 0 x1"},{n:"y2",f:"+- b 0 x1"},{n:"il",f:"*/ x1 1 2"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"x1"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"x1"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"l",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},parallelogram:{avLst:[{n:"adj",f:"val 25000"}],gdLst:[{n:"maxAdj",f:"*/ 100000 w ss"},{n:"a",f:"pin 0 adj maxAdj"},{n:"x1",f:"*/ ss a 200000"},{n:"x2",f:"*/ ss a 100000"},{n:"x6",f:"+- r 0 x1"},{n:"x5",f:"+- r 0 x2"},{n:"x3",f:"*/ x5 1 2"},{n:"x4",f:"+- r 0 x3"},{n:"il",f:"*/ wd2 a maxAdj"},{n:"q1",f:"*/ 5 a maxAdj"},{n:"q2",f:"+/ 1 q1 12"},{n:"il",f:"*/ q2 w 1"},{n:"it",f:"*/ q2 h 1"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 it"},{n:"q3",f:"*/ h hc x2"},{n:"y1",f:"pin 0 q3 h"},{n:"y2",f:"+- b 0 y1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"x5",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},pentagon:{avLst:[{n:"hf",f:"val 105146"},{n:"vf",f:"val 110557"}],gdLst:[{n:"swd2",f:"*/ wd2 hf 100000"},{n:"shd2",f:"*/ hd2 vf 100000"},{n:"svc",f:"*/ vc vf 100000"},{n:"dx1",f:"cos swd2 1080000"},{n:"dx2",f:"cos swd2 18360000"},{n:"dy1",f:"sin shd2 1080000"},{n:"dy2",f:"sin shd2 18360000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"},{n:"x4",f:"+- hc dx1 0"},{n:"y1",f:"+- svc 0 dy1"},{n:"y2",f:"+- svc 0 dy2"},{n:"it",f:"*/ y1 dx2 dx1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},pie:{avLst:[{n:"adj1",f:"val 0"},{n:"adj2",f:"val 16200000"}],gdLst:[{n:"stAng",f:"pin 0 adj1 21599999"},{n:"enAng",f:"pin 0 adj2 21599999"},{n:"sw1",f:"+- enAng 0 stAng"},{n:"sw2",f:"+- sw1 21600000 0"},{n:"swAng",f:"?: sw1 sw1 sw2"},{n:"wt1",f:"sin wd2 stAng"},{n:"ht1",f:"cos hd2 stAng"},{n:"dx1",f:"cat2 wd2 ht1 wt1"},{n:"dy1",f:"sat2 hd2 ht1 wt1"},{n:"x1",f:"+- hc dx1 0"},{n:"y1",f:"+- vc dy1 0"},{n:"wt2",f:"sin wd2 enAng"},{n:"ht2",f:"cos hd2 enAng"},{n:"dx2",f:"cat2 wd2 ht2 wt2"},{n:"dy2",f:"sat2 hd2 ht2 wt2"},{n:"x2",f:"+- hc dx2 0"},{n:"y2",f:"+- vc dy2 0"},{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"stAng",swAng:"swAng"},{type:"lnTo",pt:{x:"hc",y:"vc"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},pieWedge:{gdLst:[{n:"g1",f:"cos w 13500000"},{n:"g2",f:"sin h 13500000"},{n:"x1",f:"+- r g1 0"},{n:"y1",f:"+- b g2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"arcTo",wR:"w",hR:"h",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},plaque:{avLst:[{n:"adj",f:"val 16667"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"x1",f:"*/ ss a 100000"},{n:"x2",f:"+- r 0 x1"},{n:"y2",f:"+- b 0 x1"},{n:"il",f:"*/ x1 70711 100000"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"x1"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"-5400000"},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"0",swAng:"-5400000"},{type:"close"}],extrusionOk:!1,stroke:!0}]},plaqueTabs:{gdLst:[{n:"md",f:"mod w h 0"},{n:"dx",f:"*/ 1 md 20"},{n:"y1",f:"+- 0 b dx"},{n:"x1",f:"+- 0 r dx"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"dx",y:"t"}},{type:"arcTo",wR:"dx",hR:"dx",stAng:"0",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"arcTo",wR:"dx",hR:"dx",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"dx"}},{type:"arcTo",wR:"dx",hR:"dx",stAng:"cd4",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"b"}},{type:"arcTo",wR:"dx",hR:"dx",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},plus:{avLst:[{n:"adj",f:"val 25000"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"x1",f:"*/ ss a 100000"},{n:"x2",f:"+- r 0 x1"},{n:"y2",f:"+- b 0 x1"},{n:"d",f:"+- w 0 h"},{n:"il",f:"?: d l x1"},{n:"ir",f:"?: d r x2"},{n:"it",f:"?: d x1 t"},{n:"ib",f:"?: d y2 b"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"x1"}},{type:"lnTo",pt:{x:"x1",y:"x1"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"x1"}},{type:"lnTo",pt:{x:"r",y:"x1"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"l",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},quadArrow:{avLst:[{n:"adj1",f:"val 22500"},{n:"adj2",f:"val 22500"},{n:"adj3",f:"val 22500"}],gdLst:[{n:"a2",f:"pin 0 adj2 50000"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"q1",f:"+- 100000 0 maxAdj1"},{n:"maxAdj3",f:"*/ q1 1 2"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"x1",f:"*/ ss a3 100000"},{n:"dx2",f:"*/ ss a2 100000"},{n:"x2",f:"+- hc 0 dx2"},{n:"x5",f:"+- hc dx2 0"},{n:"dx3",f:"*/ ss a1 200000"},{n:"x3",f:"+- hc 0 dx3"},{n:"x4",f:"+- hc dx3 0"},{n:"x6",f:"+- r 0 x1"},{n:"y2",f:"+- vc 0 dx2"},{n:"y5",f:"+- vc dx2 0"},{n:"y3",f:"+- vc 0 dx3"},{n:"y4",f:"+- vc dx3 0"},{n:"y6",f:"+- b 0 x1"},{n:"il",f:"*/ dx3 x1 dx2"},{n:"ir",f:"+- r 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"x1"}},{type:"lnTo",pt:{x:"x2",y:"x1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"x5",y:"x1"}},{type:"lnTo",pt:{x:"x4",y:"x1"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"x6",y:"y3"}},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x6",y:"y5"}},{type:"lnTo",pt:{x:"x6",y:"y4"}},{type:"lnTo",pt:{x:"x4",y:"y4"}},{type:"lnTo",pt:{x:"x4",y:"y6"}},{type:"lnTo",pt:{x:"x5",y:"y6"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"y6"}},{type:"lnTo",pt:{x:"x3",y:"y6"}},{type:"lnTo",pt:{x:"x3",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"x1",y:"y5"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},quadArrowCallout:{avLst:[{n:"adj1",f:"val 18515"},{n:"adj2",f:"val 18515"},{n:"adj3",f:"val 18515"},{n:"adj4",f:"val 48123"}],gdLst:[{n:"a2",f:"pin 0 adj2 50000"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"maxAdj3",f:"+- 50000 0 a2"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"q2",f:"*/ a3 2 1"},{n:"maxAdj4",f:"+- 100000 0 q2"},{n:"a4",f:"pin a1 adj4 maxAdj4"},{n:"dx2",f:"*/ ss a2 100000"},{n:"dx3",f:"*/ ss a1 200000"},{n:"ah",f:"*/ ss a3 100000"},{n:"dx1",f:"*/ w a4 200000"},{n:"dy1",f:"*/ h a4 200000"},{n:"x8",f:"+- r 0 ah"},{n:"x2",f:"+- hc 0 dx1"},{n:"x7",f:"+- hc dx1 0"},{n:"x3",f:"+- hc 0 dx2"},{n:"x6",f:"+- hc dx2 0"},{n:"x4",f:"+- hc 0 dx3"},{n:"x5",f:"+- hc dx3 0"},{n:"y8",f:"+- b 0 ah"},{n:"y2",f:"+- vc 0 dy1"},{n:"y7",f:"+- vc dy1 0"},{n:"y3",f:"+- vc 0 dx2"},{n:"y6",f:"+- vc dx2 0"},{n:"y4",f:"+- vc 0 dx3"},{n:"y5",f:"+- vc dx3 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"ah",y:"y3"}},{type:"lnTo",pt:{x:"ah",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x4",y:"y2"}},{type:"lnTo",pt:{x:"x4",y:"ah"}},{type:"lnTo",pt:{x:"x3",y:"ah"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"x6",y:"ah"}},{type:"lnTo",pt:{x:"x5",y:"ah"}},{type:"lnTo",pt:{x:"x5",y:"y2"}},{type:"lnTo",pt:{x:"x7",y:"y2"}},{type:"lnTo",pt:{x:"x7",y:"y4"}},{type:"lnTo",pt:{x:"x8",y:"y4"}},{type:"lnTo",pt:{x:"x8",y:"y3"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x8",y:"y6"}},{type:"lnTo",pt:{x:"x8",y:"y5"}},{type:"lnTo",pt:{x:"x7",y:"y5"}},{type:"lnTo",pt:{x:"x7",y:"y7"}},{type:"lnTo",pt:{x:"x5",y:"y7"}},{type:"lnTo",pt:{x:"x5",y:"y8"}},{type:"lnTo",pt:{x:"x6",y:"y8"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"x3",y:"y8"}},{type:"lnTo",pt:{x:"x4",y:"y8"}},{type:"lnTo",pt:{x:"x4",y:"y7"}},{type:"lnTo",pt:{x:"x2",y:"y7"}},{type:"lnTo",pt:{x:"x2",y:"y5"}},{type:"lnTo",pt:{x:"ah",y:"y5"}},{type:"lnTo",pt:{x:"ah",y:"y6"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},rect:{pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},ribbon:{avLst:[{n:"adj1",f:"val 16667"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"a1",f:"pin 0 adj1 33333"},{n:"a2",f:"pin 25000 adj2 75000"},{n:"x10",f:"+- r 0 wd8"},{n:"dx2",f:"*/ w a2 200000"},{n:"x2",f:"+- hc 0 dx2"},{n:"x9",f:"+- hc dx2 0"},{n:"x3",f:"+- x2 wd32 0"},{n:"x8",f:"+- x9 0 wd32"},{n:"x5",f:"+- x2 wd8 0"},{n:"x6",f:"+- x9 0 wd8"},{n:"x4",f:"+- x5 0 wd32"},{n:"x7",f:"+- x6 wd32 0"},{n:"y1",f:"*/ h a1 200000"},{n:"y2",f:"*/ h a1 100000"},{n:"y4",f:"+- b 0 y2"},{n:"y3",f:"*/ y4 1 2"},{n:"hR",f:"*/ h a1 400000"},{n:"y5",f:"+- b 0 hR"},{n:"y6",f:"+- y2 0 hR"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x4",y:"t"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x8",y:"y2"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x7",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"x10",y:"y3"}},{type:"lnTo",pt:{x:"r",y:"y4"}},{type:"lnTo",pt:{x:"x9",y:"y4"}},{type:"lnTo",pt:{x:"x9",y:"y5"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"x3",y:"b"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"l",y:"y4"}},{type:"lnTo",pt:{x:"wd8",y:"y3"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x5",y:"hR"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x5",y:"y2"}},{type:"close"},{type:"moveTo",pt:{x:"x6",y:"hR"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd2",swAng:"-5400000"},{type:"lnTo",pt:{x:"x8",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x4",y:"t"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x8",y:"y2"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x7",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"x10",y:"y3"}},{type:"lnTo",pt:{x:"r",y:"y4"}},{type:"lnTo",pt:{x:"x9",y:"y4"}},{type:"lnTo",pt:{x:"x9",y:"y5"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"x3",y:"b"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"l",y:"y4"}},{type:"lnTo",pt:{x:"wd8",y:"y3"}},{type:"close"},{type:"moveTo",pt:{x:"x5",y:"hR"}},{type:"lnTo",pt:{x:"x5",y:"y2"}},{type:"moveTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"x6",y:"hR"}},{type:"moveTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"y6"}},{type:"moveTo",pt:{x:"x9",y:"y6"}},{type:"lnTo",pt:{x:"x9",y:"y4"}}],fill:"none",extrusionOk:!1,stroke:!0}]},ribbon2:{avLst:[{n:"adj1",f:"val 16667"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"a1",f:"pin 0 adj1 33333"},{n:"a2",f:"pin 25000 adj2 75000"},{n:"x10",f:"+- r 0 wd8"},{n:"dx2",f:"*/ w a2 200000"},{n:"x2",f:"+- hc 0 dx2"},{n:"x9",f:"+- hc dx2 0"},{n:"x3",f:"+- x2 wd32 0"},{n:"x8",f:"+- x9 0 wd32"},{n:"x5",f:"+- x2 wd8 0"},{n:"x6",f:"+- x9 0 wd8"},{n:"x4",f:"+- x5 0 wd32"},{n:"x7",f:"+- x6 wd32 0"},{n:"dy1",f:"*/ h a1 200000"},{n:"y1",f:"+- b 0 dy1"},{n:"dy2",f:"*/ h a1 100000"},{n:"y2",f:"+- b 0 dy2"},{n:"y4",f:"+- t dy2 0"},{n:"y3",f:"+/ y4 b 2"},{n:"hR",f:"*/ h a1 400000"},{n:"y6",f:"+- b 0 hR"},{n:"y7",f:"+- y1 0 hR"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"x4",y:"b"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x8",y:"y2"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x7",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"x10",y:"y3"}},{type:"lnTo",pt:{x:"r",y:"y4"}},{type:"lnTo",pt:{x:"x9",y:"y4"}},{type:"lnTo",pt:{x:"x9",y:"hR"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"0",swAng:"-5400000"},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"l",y:"y4"}},{type:"lnTo",pt:{x:"wd8",y:"y3"}},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x5",y:"y6"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"0",swAng:"-5400000"},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x5",y:"y2"}},{type:"close"},{type:"moveTo",pt:{x:"x6",y:"y6"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x8",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"wd8",y:"y3"}},{type:"lnTo",pt:{x:"l",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"hR"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x8",y:"t"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x9",y:"y4"}},{type:"lnTo",pt:{x:"x9",y:"y4"}},{type:"lnTo",pt:{x:"r",y:"y4"}},{type:"lnTo",pt:{x:"x10",y:"y3"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"x7",y:"b"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x8",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"arcTo",wR:"wd32",hR:"hR",stAng:"3cd4",swAng:"cd2"},{type:"close"},{type:"moveTo",pt:{x:"x5",y:"y2"}},{type:"lnTo",pt:{x:"x5",y:"y6"}},{type:"moveTo",pt:{x:"x6",y:"y6"}},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"moveTo",pt:{x:"x2",y:"y7"}},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"moveTo",pt:{x:"x9",y:"y4"}},{type:"lnTo",pt:{x:"x9",y:"y7"}}],fill:"none",extrusionOk:!1,stroke:!0}]},rightArrow:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"maxAdj2",f:"*/ 100000 w ss"},{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"dx1",f:"*/ ss a2 100000"},{n:"x1",f:"+- r 0 dx1"},{n:"dy1",f:"*/ h a1 200000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc dy1 0"},{n:"dx2",f:"*/ y1 dx1 hd2"},{n:"x2",f:"+- x1 dx2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"l",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},rightArrowCallout:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"},{n:"adj4",f:"val 64977"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 h ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"maxAdj3",f:"*/ 100000 w ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"q2",f:"*/ a3 ss w"},{n:"maxAdj4",f:"+- 100000 0 q2"},{n:"a4",f:"pin 0 adj4 maxAdj4"},{n:"dy1",f:"*/ ss a2 100000"},{n:"dy2",f:"*/ ss a1 200000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc dy2 0"},{n:"y4",f:"+- vc dy1 0"},{n:"dx3",f:"*/ ss a3 100000"},{n:"x3",f:"+- r 0 dx3"},{n:"x2",f:"*/ w a4 100000"},{n:"x1",f:"*/ x2 1 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x3",y:"y4"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},rightBrace:{avLst:[{n:"adj1",f:"val 8333"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"a2",f:"pin 0 adj2 100000"},{n:"q1",f:"+- 100000 0 a2"},{n:"q2",f:"min q1 a2"},{n:"q3",f:"*/ q2 1 2"},{n:"maxAdj1",f:"*/ q3 h ss"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"y1",f:"*/ ss a1 100000"},{n:"y3",f:"*/ h a2 100000"},{n:"y2",f:"+- y3 0 y1"},{n:"y4",f:"+- b 0 y1"},{n:"dx1",f:"cos wd2 2700000"},{n:"dy1",f:"sin y1 2700000"},{n:"ir",f:"+- l dx1 0"},{n:"it",f:"+- y1 0 dy1"},{n:"ib",f:"+- b dy1 y1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"hc",y:"y2"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd2",swAng:"-5400000"},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"hc",y:"y4"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"0",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"hc",y:"y2"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"cd2",swAng:"-5400000"},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"hc",y:"y4"}},{type:"arcTo",wR:"wd2",hR:"y1",stAng:"0",swAng:"cd4"}],fill:"none",extrusionOk:!1,stroke:!0}]},rightBracket:{avLst:[{n:"adj",f:"val 8333"}],gdLst:[{n:"maxAdj",f:"*/ 50000 h ss"},{n:"a",f:"pin 0 adj maxAdj"},{n:"y1",f:"*/ ss a 100000"},{n:"y2",f:"+- b 0 y1"},{n:"dx1",f:"cos w 2700000"},{n:"dy1",f:"sin y1 2700000"},{n:"ir",f:"+- l dx1 0"},{n:"it",f:"+- y1 0 dy1"},{n:"ib",f:"+- b dy1 y1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"arcTo",wR:"w",hR:"y1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"arcTo",wR:"w",hR:"y1",stAng:"0",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"arcTo",wR:"w",hR:"y1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"arcTo",wR:"w",hR:"y1",stAng:"0",swAng:"cd4"}],fill:"none",extrusionOk:!1,stroke:!0}]},round1Rect:{avLst:[{n:"adj",f:"val 16667"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dx1",f:"*/ ss a 100000"},{n:"x1",f:"+- r 0 dx1"},{n:"idx",f:"*/ dx1 29289 100000"},{n:"ir",f:"+- r 0 idx"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"arcTo",wR:"dx1",hR:"dx1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},round2DiagRect:{avLst:[{n:"adj1",f:"val 16667"},{n:"adj2",f:"val 0"}],gdLst:[{n:"a1",f:"pin 0 adj1 50000"},{n:"a2",f:"pin 0 adj2 50000"},{n:"x1",f:"*/ ss a1 100000"},{n:"y1",f:"+- b 0 x1"},{n:"a",f:"*/ ss a2 100000"},{n:"x2",f:"+- r 0 a"},{n:"y2",f:"+- b 0 a"},{n:"dx1",f:"*/ x1 29289 100000"},{n:"dx2",f:"*/ a 29289 100000"},{n:"d",f:"+- dx1 0 dx2"},{n:"dx",f:"?: d dx1 dx2"},{n:"ir",f:"+- r 0 dx"},{n:"ib",f:"+- b 0 dx"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"arcTo",wR:"a",hR:"a",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"y1"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"a",y:"b"}},{type:"arcTo",wR:"a",hR:"a",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"l",y:"x1"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0}]},round2SameRect:{avLst:[{n:"adj1",f:"val 16667"},{n:"adj2",f:"val 0"}],gdLst:[{n:"a1",f:"pin 0 adj1 50000"},{n:"a2",f:"pin 0 adj2 50000"},{n:"tx1",f:"*/ ss a1 100000"},{n:"tx2",f:"+- r 0 tx1"},{n:"bx1",f:"*/ ss a2 100000"},{n:"bx2",f:"+- r 0 bx1"},{n:"by1",f:"+- b 0 bx1"},{n:"d",f:"+- tx1 0 bx1"},{n:"tdx",f:"*/ tx1 29289 100000"},{n:"bdx",f:"*/ bx1 29289 100000"},{n:"il",f:"?: d tdx bdx"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 bdx"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"tx1",y:"t"}},{type:"lnTo",pt:{x:"tx2",y:"t"}},{type:"arcTo",wR:"tx1",hR:"tx1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"by1"}},{type:"arcTo",wR:"bx1",hR:"bx1",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"bx1",y:"b"}},{type:"arcTo",wR:"bx1",hR:"bx1",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"l",y:"tx1"}},{type:"arcTo",wR:"tx1",hR:"tx1",stAng:"cd2",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0}]},roundRect:{avLst:[{n:"adj",f:"val 16667"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"x1",f:"*/ ss a 100000"},{n:"x2",f:"+- r 0 x1"},{n:"y2",f:"+- b 0 x1"},{n:"il",f:"*/ x1 29289 100000"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"x1"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd4",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0}]},rtTriangle:{gdLst:[{n:"it",f:"*/ h 7 12"},{n:"ir",f:"*/ w 7 12"},{n:"ib",f:"*/ h 11 12"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},smileyFace:{avLst:[{n:"adj",f:"val 4653"}],gdLst:[{n:"a",f:"pin -4653 adj 4653"},{n:"x1",f:"*/ w 4969 21699"},{n:"x2",f:"*/ w 6215 21600"},{n:"x3",f:"*/ w 13135 21600"},{n:"x4",f:"*/ w 16640 21600"},{n:"y1",f:"*/ h 7570 21600"},{n:"y3",f:"*/ h 16515 21600"},{n:"dy2",f:"*/ h a 100000"},{n:"y2",f:"+- y3 0 dy2"},{n:"y4",f:"+- y3 dy2 0"},{n:"dy3",f:"*/ h a 50000"},{n:"y5",f:"+- y4 dy3 0"},{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"},{n:"wR",f:"*/ w 1125 21600"},{n:"hR",f:"*/ h 1125 21600"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"21600000"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x2",y:"y1"}},{type:"arcTo",wR:"wR",hR:"hR",stAng:"cd2",swAng:"21600000"},{type:"moveTo",pt:{x:"x3",y:"y1"}},{type:"arcTo",wR:"wR",hR:"hR",stAng:"cd2",swAng:"21600000"}],fill:"darkenLess",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y2"}},{type:"quadBezTo",pts:[{x:"hc",y:"y5"},{x:"x4",y:"y2"}]}],fill:"none",extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"21600000"},{type:"close"}],fill:"none",extrusionOk:!1,stroke:!0}]},snip1Rect:{avLst:[{n:"adj",f:"val 16667"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dx1",f:"*/ ss a 100000"},{n:"x1",f:"+- r 0 dx1"},{n:"it",f:"*/ dx1 1 2"},{n:"ir",f:"+/ x1 r 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"r",y:"dx1"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},snip2DiagRect:{avLst:[{n:"adj1",f:"val 0"},{n:"adj2",f:"val 16667"}],gdLst:[{n:"a1",f:"pin 0 adj1 50000"},{n:"a2",f:"pin 0 adj2 50000"},{n:"lx1",f:"*/ ss a1 100000"},{n:"lx2",f:"+- r 0 lx1"},{n:"ly1",f:"+- b 0 lx1"},{n:"rx1",f:"*/ ss a2 100000"},{n:"rx2",f:"+- r 0 rx1"},{n:"ry1",f:"+- b 0 rx1"},{n:"d",f:"+- lx1 0 rx1"},{n:"dx",f:"?: d lx1 rx1"},{n:"il",f:"*/ dx 1 2"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"lx1",y:"t"}},{type:"lnTo",pt:{x:"rx2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"rx1"}},{type:"lnTo",pt:{x:"r",y:"ly1"}},{type:"lnTo",pt:{x:"lx2",y:"b"}},{type:"lnTo",pt:{x:"rx1",y:"b"}},{type:"lnTo",pt:{x:"l",y:"ry1"}},{type:"lnTo",pt:{x:"l",y:"lx1"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},snip2SameRect:{avLst:[{n:"adj1",f:"val 16667"},{n:"adj2",f:"val 0"}],gdLst:[{n:"a1",f:"pin 0 adj1 50000"},{n:"a2",f:"pin 0 adj2 50000"},{n:"tx1",f:"*/ ss a1 100000"},{n:"tx2",f:"+- r 0 tx1"},{n:"bx1",f:"*/ ss a2 100000"},{n:"bx2",f:"+- r 0 bx1"},{n:"by1",f:"+- b 0 bx1"},{n:"d",f:"+- tx1 0 bx1"},{n:"dx",f:"?: d tx1 bx1"},{n:"il",f:"*/ dx 1 2"},{n:"ir",f:"+- r 0 il"},{n:"it",f:"*/ tx1 1 2"},{n:"ib",f:"+/ by1 b 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"tx1",y:"t"}},{type:"lnTo",pt:{x:"tx2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"tx1"}},{type:"lnTo",pt:{x:"r",y:"by1"}},{type:"lnTo",pt:{x:"bx2",y:"b"}},{type:"lnTo",pt:{x:"bx1",y:"b"}},{type:"lnTo",pt:{x:"l",y:"by1"}},{type:"lnTo",pt:{x:"l",y:"tx1"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},snipRoundRect:{avLst:[{n:"adj1",f:"val 16667"},{n:"adj2",f:"val 16667"}],gdLst:[{n:"a1",f:"pin 0 adj1 50000"},{n:"a2",f:"pin 0 adj2 50000"},{n:"x1",f:"*/ ss a1 100000"},{n:"dx2",f:"*/ ss a2 100000"},{n:"x2",f:"+- r 0 dx2"},{n:"il",f:"*/ x1 29289 100000"},{n:"ir",f:"+/ x2 r 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"dx2"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"l",y:"x1"}},{type:"arcTo",wR:"x1",hR:"x1",stAng:"cd2",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0}]},squareTabs:{gdLst:[{n:"md",f:"mod w h 0"},{n:"dx",f:"*/ 1 md 20"},{n:"y1",f:"+- 0 b dx"},{n:"x1",f:"+- 0 r dx"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"dx",y:"t"}},{type:"lnTo",pt:{x:"dx",y:"dx"}},{type:"lnTo",pt:{x:"l",y:"dx"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"dx",y:"y1"}},{type:"lnTo",pt:{x:"dx",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"dx"}},{type:"lnTo",pt:{x:"x1",y:"dx"}},{type:"close"}],extrusionOk:!1,stroke:!0},{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"y1"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star10:{avLst:[{n:"adj",f:"val 42533"},{n:"hf",f:"val 105146"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"swd2",f:"*/ wd2 hf 100000"},{n:"dx1",f:"*/ swd2 95106 100000"},{n:"dx2",f:"*/ swd2 58779 100000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"},{n:"x4",f:"+- hc dx1 0"},{n:"dy1",f:"*/ hd2 80902 100000"},{n:"dy2",f:"*/ hd2 30902 100000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc dy2 0"},{n:"y4",f:"+- vc dy1 0"},{n:"iwd2",f:"*/ swd2 a 50000"},{n:"ihd2",f:"*/ hd2 a 50000"},{n:"sdx1",f:"*/ iwd2 80902 100000"},{n:"sdx2",f:"*/ iwd2 30902 100000"},{n:"sdy1",f:"*/ ihd2 95106 100000"},{n:"sdy2",f:"*/ ihd2 58779 100000"},{n:"sx1",f:"+- hc 0 iwd2"},{n:"sx2",f:"+- hc 0 sdx1"},{n:"sx3",f:"+- hc 0 sdx2"},{n:"sx4",f:"+- hc sdx2 0"},{n:"sx5",f:"+- hc sdx1 0"},{n:"sx6",f:"+- hc iwd2 0"},{n:"sy1",f:"+- vc 0 sdy1"},{n:"sy2",f:"+- vc 0 sdy2"},{n:"sy3",f:"+- vc sdy2 0"},{n:"sy4",f:"+- vc sdy1 0"},{n:"yAdj",f:"+- vc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"sx2",y:"sy2"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"sx3",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx4",y:"sy1"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"sx5",y:"sy2"}},{type:"lnTo",pt:{x:"x4",y:"y2"}},{type:"lnTo",pt:{x:"sx6",y:"vc"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"sx5",y:"sy3"}},{type:"lnTo",pt:{x:"x3",y:"y4"}},{type:"lnTo",pt:{x:"sx4",y:"sy4"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"sx3",y:"sy4"}},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"sx2",y:"sy3"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"sx1",y:"vc"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star12:{avLst:[{n:"adj",f:"val 37500"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dx1",f:"cos wd2 1800000"},{n:"dy1",f:"sin hd2 3600000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x3",f:"*/ w 3 4"},{n:"x4",f:"+- hc dx1 0"},{n:"y1",f:"+- vc 0 dy1"},{n:"y3",f:"*/ h 3 4"},{n:"y4",f:"+- vc dy1 0"},{n:"iwd2",f:"*/ wd2 a 50000"},{n:"ihd2",f:"*/ hd2 a 50000"},{n:"sdx1",f:"cos iwd2 900000"},{n:"sdx2",f:"cos iwd2 2700000"},{n:"sdx3",f:"cos iwd2 4500000"},{n:"sdy1",f:"sin ihd2 4500000"},{n:"sdy2",f:"sin ihd2 2700000"},{n:"sdy3",f:"sin ihd2 900000"},{n:"sx1",f:"+- hc 0 sdx1"},{n:"sx2",f:"+- hc 0 sdx2"},{n:"sx3",f:"+- hc 0 sdx3"},{n:"sx4",f:"+- hc sdx3 0"},{n:"sx5",f:"+- hc sdx2 0"},{n:"sx6",f:"+- hc sdx1 0"},{n:"sy1",f:"+- vc 0 sdy1"},{n:"sy2",f:"+- vc 0 sdy2"},{n:"sy3",f:"+- vc 0 sdy3"},{n:"sy4",f:"+- vc sdy3 0"},{n:"sy5",f:"+- vc sdy2 0"},{n:"sy6",f:"+- vc sdy1 0"},{n:"yAdj",f:"+- vc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"sx1",y:"sy3"}},{type:"lnTo",pt:{x:"x1",y:"hd4"}},{type:"lnTo",pt:{x:"sx2",y:"sy2"}},{type:"lnTo",pt:{x:"wd4",y:"y1"}},{type:"lnTo",pt:{x:"sx3",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx4",y:"sy1"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"sx5",y:"sy2"}},{type:"lnTo",pt:{x:"x4",y:"hd4"}},{type:"lnTo",pt:{x:"sx6",y:"sy3"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"sx6",y:"sy4"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"sx5",y:"sy5"}},{type:"lnTo",pt:{x:"x3",y:"y4"}},{type:"lnTo",pt:{x:"sx4",y:"sy6"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"sx3",y:"sy6"}},{type:"lnTo",pt:{x:"wd4",y:"y4"}},{type:"lnTo",pt:{x:"sx2",y:"sy5"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"sx1",y:"sy4"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star16:{avLst:[{n:"adj",f:"val 37500"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dx1",f:"*/ wd2 92388 100000"},{n:"dx2",f:"*/ wd2 70711 100000"},{n:"dx3",f:"*/ wd2 38268 100000"},{n:"dy1",f:"*/ hd2 92388 100000"},{n:"dy2",f:"*/ hd2 70711 100000"},{n:"dy3",f:"*/ hd2 38268 100000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc 0 dx3"},{n:"x4",f:"+- hc dx3 0"},{n:"x5",f:"+- hc dx2 0"},{n:"x6",f:"+- hc dx1 0"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc 0 dy3"},{n:"y4",f:"+- vc dy3 0"},{n:"y5",f:"+- vc dy2 0"},{n:"y6",f:"+- vc dy1 0"},{n:"iwd2",f:"*/ wd2 a 50000"},{n:"ihd2",f:"*/ hd2 a 50000"},{n:"sdx1",f:"*/ iwd2 98079 100000"},{n:"sdx2",f:"*/ iwd2 83147 100000"},{n:"sdx3",f:"*/ iwd2 55557 100000"},{n:"sdx4",f:"*/ iwd2 19509 100000"},{n:"sdy1",f:"*/ ihd2 98079 100000"},{n:"sdy2",f:"*/ ihd2 83147 100000"},{n:"sdy3",f:"*/ ihd2 55557 100000"},{n:"sdy4",f:"*/ ihd2 19509 100000"},{n:"sx1",f:"+- hc 0 sdx1"},{n:"sx2",f:"+- hc 0 sdx2"},{n:"sx3",f:"+- hc 0 sdx3"},{n:"sx4",f:"+- hc 0 sdx4"},{n:"sx5",f:"+- hc sdx4 0"},{n:"sx6",f:"+- hc sdx3 0"},{n:"sx7",f:"+- hc sdx2 0"},{n:"sx8",f:"+- hc sdx1 0"},{n:"sy1",f:"+- vc 0 sdy1"},{n:"sy2",f:"+- vc 0 sdy2"},{n:"sy3",f:"+- vc 0 sdy3"},{n:"sy4",f:"+- vc 0 sdy4"},{n:"sy5",f:"+- vc sdy4 0"},{n:"sy6",f:"+- vc sdy3 0"},{n:"sy7",f:"+- vc sdy2 0"},{n:"sy8",f:"+- vc sdy1 0"},{n:"idx",f:"cos iwd2 2700000"},{n:"idy",f:"sin ihd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"it",f:"+- vc 0 idy"},{n:"ir",f:"+- hc idx 0"},{n:"ib",f:"+- vc idy 0"},{n:"yAdj",f:"+- vc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"sx1",y:"sy4"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"sx2",y:"sy3"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"sx3",y:"sy2"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"sx4",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx5",y:"sy1"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"sx6",y:"sy2"}},{type:"lnTo",pt:{x:"x5",y:"y2"}},{type:"lnTo",pt:{x:"sx7",y:"sy3"}},{type:"lnTo",pt:{x:"x6",y:"y3"}},{type:"lnTo",pt:{x:"sx8",y:"sy4"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"sx8",y:"sy5"}},{type:"lnTo",pt:{x:"x6",y:"y4"}},{type:"lnTo",pt:{x:"sx7",y:"sy6"}},{type:"lnTo",pt:{x:"x5",y:"y5"}},{type:"lnTo",pt:{x:"sx6",y:"sy7"}},{type:"lnTo",pt:{x:"x4",y:"y6"}},{type:"lnTo",pt:{x:"sx5",y:"sy8"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"sx4",y:"sy8"}},{type:"lnTo",pt:{x:"x3",y:"y6"}},{type:"lnTo",pt:{x:"sx3",y:"sy7"}},{type:"lnTo",pt:{x:"x2",y:"y5"}},{type:"lnTo",pt:{x:"sx2",y:"sy6"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"sx1",y:"sy5"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star24:{avLst:[{n:"adj",f:"val 37500"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dx1",f:"cos wd2 900000"},{n:"dx2",f:"cos wd2 1800000"},{n:"dx3",f:"cos wd2 2700000"},{n:"dx4",f:"val wd4"},{n:"dx5",f:"cos wd2 4500000"},{n:"dy1",f:"sin hd2 4500000"},{n:"dy2",f:"sin hd2 3600000"},{n:"dy3",f:"sin hd2 2700000"},{n:"dy4",f:"val hd4"},{n:"dy5",f:"sin hd2 900000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc 0 dx3"},{n:"x4",f:"+- hc 0 dx4"},{n:"x5",f:"+- hc 0 dx5"},{n:"x6",f:"+- hc dx5 0"},{n:"x7",f:"+- hc dx4 0"},{n:"x8",f:"+- hc dx3 0"},{n:"x9",f:"+- hc dx2 0"},{n:"x10",f:"+- hc dx1 0"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc 0 dy3"},{n:"y4",f:"+- vc 0 dy4"},{n:"y5",f:"+- vc 0 dy5"},{n:"y6",f:"+- vc dy5 0"},{n:"y7",f:"+- vc dy4 0"},{n:"y8",f:"+- vc dy3 0"},{n:"y9",f:"+- vc dy2 0"},{n:"y10",f:"+- vc dy1 0"},{n:"iwd2",f:"*/ wd2 a 50000"},{n:"ihd2",f:"*/ hd2 a 50000"},{n:"sdx1",f:"*/ iwd2 99144 100000"},{n:"sdx2",f:"*/ iwd2 92388 100000"},{n:"sdx3",f:"*/ iwd2 79335 100000"},{n:"sdx4",f:"*/ iwd2 60876 100000"},{n:"sdx5",f:"*/ iwd2 38268 100000"},{n:"sdx6",f:"*/ iwd2 13053 100000"},{n:"sdy1",f:"*/ ihd2 99144 100000"},{n:"sdy2",f:"*/ ihd2 92388 100000"},{n:"sdy3",f:"*/ ihd2 79335 100000"},{n:"sdy4",f:"*/ ihd2 60876 100000"},{n:"sdy5",f:"*/ ihd2 38268 100000"},{n:"sdy6",f:"*/ ihd2 13053 100000"},{n:"sx1",f:"+- hc 0 sdx1"},{n:"sx2",f:"+- hc 0 sdx2"},{n:"sx3",f:"+- hc 0 sdx3"},{n:"sx4",f:"+- hc 0 sdx4"},{n:"sx5",f:"+- hc 0 sdx5"},{n:"sx6",f:"+- hc 0 sdx6"},{n:"sx7",f:"+- hc sdx6 0"},{n:"sx8",f:"+- hc sdx5 0"},{n:"sx9",f:"+- hc sdx4 0"},{n:"sx10",f:"+- hc sdx3 0"},{n:"sx11",f:"+- hc sdx2 0"},{n:"sx12",f:"+- hc sdx1 0"},{n:"sy1",f:"+- vc 0 sdy1"},{n:"sy2",f:"+- vc 0 sdy2"},{n:"sy3",f:"+- vc 0 sdy3"},{n:"sy4",f:"+- vc 0 sdy4"},{n:"sy5",f:"+- vc 0 sdy5"},{n:"sy6",f:"+- vc 0 sdy6"},{n:"sy7",f:"+- vc sdy6 0"},{n:"sy8",f:"+- vc sdy5 0"},{n:"sy9",f:"+- vc sdy4 0"},{n:"sy10",f:"+- vc sdy3 0"},{n:"sy11",f:"+- vc sdy2 0"},{n:"sy12",f:"+- vc sdy1 0"},{n:"idx",f:"cos iwd2 2700000"},{n:"idy",f:"sin ihd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"it",f:"+- vc 0 idy"},{n:"ir",f:"+- hc idx 0"},{n:"ib",f:"+- vc idy 0"},{n:"yAdj",f:"+- vc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"sx1",y:"sy6"}},{type:"lnTo",pt:{x:"x1",y:"y5"}},{type:"lnTo",pt:{x:"sx2",y:"sy5"}},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"sx3",y:"sy4"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"sx4",y:"sy3"}},{type:"lnTo",pt:{x:"x4",y:"y2"}},{type:"lnTo",pt:{x:"sx5",y:"sy2"}},{type:"lnTo",pt:{x:"x5",y:"y1"}},{type:"lnTo",pt:{x:"sx6",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx7",y:"sy1"}},{type:"lnTo",pt:{x:"x6",y:"y1"}},{type:"lnTo",pt:{x:"sx8",y:"sy2"}},{type:"lnTo",pt:{x:"x7",y:"y2"}},{type:"lnTo",pt:{x:"sx9",y:"sy3"}},{type:"lnTo",pt:{x:"x8",y:"y3"}},{type:"lnTo",pt:{x:"sx10",y:"sy4"}},{type:"lnTo",pt:{x:"x9",y:"y4"}},{type:"lnTo",pt:{x:"sx11",y:"sy5"}},{type:"lnTo",pt:{x:"x10",y:"y5"}},{type:"lnTo",pt:{x:"sx12",y:"sy6"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"sx12",y:"sy7"}},{type:"lnTo",pt:{x:"x10",y:"y6"}},{type:"lnTo",pt:{x:"sx11",y:"sy8"}},{type:"lnTo",pt:{x:"x9",y:"y7"}},{type:"lnTo",pt:{x:"sx10",y:"sy9"}},{type:"lnTo",pt:{x:"x8",y:"y8"}},{type:"lnTo",pt:{x:"sx9",y:"sy10"}},{type:"lnTo",pt:{x:"x7",y:"y9"}},{type:"lnTo",pt:{x:"sx8",y:"sy11"}},{type:"lnTo",pt:{x:"x6",y:"y10"}},{type:"lnTo",pt:{x:"sx7",y:"sy12"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"sx6",y:"sy12"}},{type:"lnTo",pt:{x:"x5",y:"y10"}},{type:"lnTo",pt:{x:"sx5",y:"sy11"}},{type:"lnTo",pt:{x:"x4",y:"y9"}},{type:"lnTo",pt:{x:"sx4",y:"sy10"}},{type:"lnTo",pt:{x:"x3",y:"y8"}},{type:"lnTo",pt:{x:"sx3",y:"sy9"}},{type:"lnTo",pt:{x:"x2",y:"y7"}},{type:"lnTo",pt:{x:"sx2",y:"sy8"}},{type:"lnTo",pt:{x:"x1",y:"y6"}},{type:"lnTo",pt:{x:"sx1",y:"sy7"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star32:{avLst:[{n:"adj",f:"val 37500"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dx1",f:"*/ wd2 98079 100000"},{n:"dx2",f:"*/ wd2 92388 100000"},{n:"dx3",f:"*/ wd2 83147 100000"},{n:"dx4",f:"cos wd2 2700000"},{n:"dx5",f:"*/ wd2 55557 100000"},{n:"dx6",f:"*/ wd2 38268 100000"},{n:"dx7",f:"*/ wd2 19509 100000"},{n:"dy1",f:"*/ hd2 98079 100000"},{n:"dy2",f:"*/ hd2 92388 100000"},{n:"dy3",f:"*/ hd2 83147 100000"},{n:"dy4",f:"sin hd2 2700000"},{n:"dy5",f:"*/ hd2 55557 100000"},{n:"dy6",f:"*/ hd2 38268 100000"},{n:"dy7",f:"*/ hd2 19509 100000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc 0 dx3"},{n:"x4",f:"+- hc 0 dx4"},{n:"x5",f:"+- hc 0 dx5"},{n:"x6",f:"+- hc 0 dx6"},{n:"x7",f:"+- hc 0 dx7"},{n:"x8",f:"+- hc dx7 0"},{n:"x9",f:"+- hc dx6 0"},{n:"x10",f:"+- hc dx5 0"},{n:"x11",f:"+- hc dx4 0"},{n:"x12",f:"+- hc dx3 0"},{n:"x13",f:"+- hc dx2 0"},{n:"x14",f:"+- hc dx1 0"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc 0 dy3"},{n:"y4",f:"+- vc 0 dy4"},{n:"y5",f:"+- vc 0 dy5"},{n:"y6",f:"+- vc 0 dy6"},{n:"y7",f:"+- vc 0 dy7"},{n:"y8",f:"+- vc dy7 0"},{n:"y9",f:"+- vc dy6 0"},{n:"y10",f:"+- vc dy5 0"},{n:"y11",f:"+- vc dy4 0"},{n:"y12",f:"+- vc dy3 0"},{n:"y13",f:"+- vc dy2 0"},{n:"y14",f:"+- vc dy1 0"},{n:"iwd2",f:"*/ wd2 a 50000"},{n:"ihd2",f:"*/ hd2 a 50000"},{n:"sdx1",f:"*/ iwd2 99518 100000"},{n:"sdx2",f:"*/ iwd2 95694 100000"},{n:"sdx3",f:"*/ iwd2 88192 100000"},{n:"sdx4",f:"*/ iwd2 77301 100000"},{n:"sdx5",f:"*/ iwd2 63439 100000"},{n:"sdx6",f:"*/ iwd2 47140 100000"},{n:"sdx7",f:"*/ iwd2 29028 100000"},{n:"sdx8",f:"*/ iwd2 9802 100000"},{n:"sdy1",f:"*/ ihd2 99518 100000"},{n:"sdy2",f:"*/ ihd2 95694 100000"},{n:"sdy3",f:"*/ ihd2 88192 100000"},{n:"sdy4",f:"*/ ihd2 77301 100000"},{n:"sdy5",f:"*/ ihd2 63439 100000"},{n:"sdy6",f:"*/ ihd2 47140 100000"},{n:"sdy7",f:"*/ ihd2 29028 100000"},{n:"sdy8",f:"*/ ihd2 9802 100000"},{n:"sx1",f:"+- hc 0 sdx1"},{n:"sx2",f:"+- hc 0 sdx2"},{n:"sx3",f:"+- hc 0 sdx3"},{n:"sx4",f:"+- hc 0 sdx4"},{n:"sx5",f:"+- hc 0 sdx5"},{n:"sx6",f:"+- hc 0 sdx6"},{n:"sx7",f:"+- hc 0 sdx7"},{n:"sx8",f:"+- hc 0 sdx8"},{n:"sx9",f:"+- hc sdx8 0"},{n:"sx10",f:"+- hc sdx7 0"},{n:"sx11",f:"+- hc sdx6 0"},{n:"sx12",f:"+- hc sdx5 0"},{n:"sx13",f:"+- hc sdx4 0"},{n:"sx14",f:"+- hc sdx3 0"},{n:"sx15",f:"+- hc sdx2 0"},{n:"sx16",f:"+- hc sdx1 0"},{n:"sy1",f:"+- vc 0 sdy1"},{n:"sy2",f:"+- vc 0 sdy2"},{n:"sy3",f:"+- vc 0 sdy3"},{n:"sy4",f:"+- vc 0 sdy4"},{n:"sy5",f:"+- vc 0 sdy5"},{n:"sy6",f:"+- vc 0 sdy6"},{n:"sy7",f:"+- vc 0 sdy7"},{n:"sy8",f:"+- vc 0 sdy8"},{n:"sy9",f:"+- vc sdy8 0"},{n:"sy10",f:"+- vc sdy7 0"},{n:"sy11",f:"+- vc sdy6 0"},{n:"sy12",f:"+- vc sdy5 0"},{n:"sy13",f:"+- vc sdy4 0"},{n:"sy14",f:"+- vc sdy3 0"},{n:"sy15",f:"+- vc sdy2 0"},{n:"sy16",f:"+- vc sdy1 0"},{n:"idx",f:"cos iwd2 2700000"},{n:"idy",f:"sin ihd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"it",f:"+- vc 0 idy"},{n:"ir",f:"+- hc idx 0"},{n:"ib",f:"+- vc idy 0"},{n:"yAdj",f:"+- vc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"sx1",y:"sy8"}},{type:"lnTo",pt:{x:"x1",y:"y7"}},{type:"lnTo",pt:{x:"sx2",y:"sy7"}},{type:"lnTo",pt:{x:"x2",y:"y6"}},{type:"lnTo",pt:{x:"sx3",y:"sy6"}},{type:"lnTo",pt:{x:"x3",y:"y5"}},{type:"lnTo",pt:{x:"sx4",y:"sy5"}},{type:"lnTo",pt:{x:"x4",y:"y4"}},{type:"lnTo",pt:{x:"sx5",y:"sy4"}},{type:"lnTo",pt:{x:"x5",y:"y3"}},{type:"lnTo",pt:{x:"sx6",y:"sy3"}},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"sx7",y:"sy2"}},{type:"lnTo",pt:{x:"x7",y:"y1"}},{type:"lnTo",pt:{x:"sx8",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx9",y:"sy1"}},{type:"lnTo",pt:{x:"x8",y:"y1"}},{type:"lnTo",pt:{x:"sx10",y:"sy2"}},{type:"lnTo",pt:{x:"x9",y:"y2"}},{type:"lnTo",pt:{x:"sx11",y:"sy3"}},{type:"lnTo",pt:{x:"x10",y:"y3"}},{type:"lnTo",pt:{x:"sx12",y:"sy4"}},{type:"lnTo",pt:{x:"x11",y:"y4"}},{type:"lnTo",pt:{x:"sx13",y:"sy5"}},{type:"lnTo",pt:{x:"x12",y:"y5"}},{type:"lnTo",pt:{x:"sx14",y:"sy6"}},{type:"lnTo",pt:{x:"x13",y:"y6"}},{type:"lnTo",pt:{x:"sx15",y:"sy7"}},{type:"lnTo",pt:{x:"x14",y:"y7"}},{type:"lnTo",pt:{x:"sx16",y:"sy8"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"sx16",y:"sy9"}},{type:"lnTo",pt:{x:"x14",y:"y8"}},{type:"lnTo",pt:{x:"sx15",y:"sy10"}},{type:"lnTo",pt:{x:"x13",y:"y9"}},{type:"lnTo",pt:{x:"sx14",y:"sy11"}},{type:"lnTo",pt:{x:"x12",y:"y10"}},{type:"lnTo",pt:{x:"sx13",y:"sy12"}},{type:"lnTo",pt:{x:"x11",y:"y11"}},{type:"lnTo",pt:{x:"sx12",y:"sy13"}},{type:"lnTo",pt:{x:"x10",y:"y12"}},{type:"lnTo",pt:{x:"sx11",y:"sy14"}},{type:"lnTo",pt:{x:"x9",y:"y13"}},{type:"lnTo",pt:{x:"sx10",y:"sy15"}},{type:"lnTo",pt:{x:"x8",y:"y14"}},{type:"lnTo",pt:{x:"sx9",y:"sy16"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"sx8",y:"sy16"}},{type:"lnTo",pt:{x:"x7",y:"y14"}},{type:"lnTo",pt:{x:"sx7",y:"sy15"}},{type:"lnTo",pt:{x:"x6",y:"y13"}},{type:"lnTo",pt:{x:"sx6",y:"sy14"}},{type:"lnTo",pt:{x:"x5",y:"y12"}},{type:"lnTo",pt:{x:"sx5",y:"sy13"}},{type:"lnTo",pt:{x:"x4",y:"y11"}},{type:"lnTo",pt:{x:"sx4",y:"sy12"}},{type:"lnTo",pt:{x:"x3",y:"y10"}},{type:"lnTo",pt:{x:"sx3",y:"sy11"}},{type:"lnTo",pt:{x:"x2",y:"y9"}},{type:"lnTo",pt:{x:"sx2",y:"sy10"}},{type:"lnTo",pt:{x:"x1",y:"y8"}},{type:"lnTo",pt:{x:"sx1",y:"sy9"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star4:{avLst:[{n:"adj",f:"val 12500"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"iwd2",f:"*/ wd2 a 50000"},{n:"ihd2",f:"*/ hd2 a 50000"},{n:"sdx",f:"cos iwd2 2700000"},{n:"sdy",f:"sin ihd2 2700000"},{n:"sx1",f:"+- hc 0 sdx"},{n:"sx2",f:"+- hc sdx 0"},{n:"sy1",f:"+- vc 0 sdy"},{n:"sy2",f:"+- vc sdy 0"},{n:"yAdj",f:"+- vc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"sx1",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx2",y:"sy1"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"sx2",y:"sy2"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"sx1",y:"sy2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star5:{avLst:[{n:"adj",f:"val 19098"},{n:"hf",f:"val 105146"},{n:"vf",f:"val 110557"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"swd2",f:"*/ wd2 hf 100000"},{n:"shd2",f:"*/ hd2 vf 100000"},{n:"svc",f:"*/ vc vf 100000"},{n:"dx1",f:"cos swd2 1080000"},{n:"dx2",f:"cos swd2 18360000"},{n:"dy1",f:"sin shd2 1080000"},{n:"dy2",f:"sin shd2 18360000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"},{n:"x4",f:"+- hc dx1 0"},{n:"y1",f:"+- svc 0 dy1"},{n:"y2",f:"+- svc 0 dy2"},{n:"iwd2",f:"*/ swd2 a 50000"},{n:"ihd2",f:"*/ shd2 a 50000"},{n:"sdx1",f:"cos iwd2 20520000"},{n:"sdx2",f:"cos iwd2 3240000"},{n:"sdy1",f:"sin ihd2 3240000"},{n:"sdy2",f:"sin ihd2 20520000"},{n:"sx1",f:"+- hc 0 sdx1"},{n:"sx2",f:"+- hc 0 sdx2"},{n:"sx3",f:"+- hc sdx2 0"},{n:"sx4",f:"+- hc sdx1 0"},{n:"sy1",f:"+- svc 0 sdy1"},{n:"sy2",f:"+- svc 0 sdy2"},{n:"sy3",f:"+- svc ihd2 0"},{n:"yAdj",f:"+- svc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"sx2",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx3",y:"sy1"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"sx4",y:"sy2"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"hc",y:"sy3"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"sx1",y:"sy2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star6:{avLst:[{n:"adj",f:"val 28868"},{n:"hf",f:"val 115470"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"swd2",f:"*/ wd2 hf 100000"},{n:"dx1",f:"cos swd2 1800000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc dx1 0"},{n:"y2",f:"+- vc hd4 0"},{n:"iwd2",f:"*/ swd2 a 50000"},{n:"ihd2",f:"*/ hd2 a 50000"},{n:"sdx2",f:"*/ iwd2 1 2"},{n:"sx1",f:"+- hc 0 iwd2"},{n:"sx2",f:"+- hc 0 sdx2"},{n:"sx3",f:"+- hc sdx2 0"},{n:"sx4",f:"+- hc iwd2 0"},{n:"sdy1",f:"sin ihd2 3600000"},{n:"sy1",f:"+- vc 0 sdy1"},{n:"sy2",f:"+- vc sdy1 0"},{n:"yAdj",f:"+- vc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"hd4"}},{type:"lnTo",pt:{x:"sx2",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx3",y:"sy1"}},{type:"lnTo",pt:{x:"x2",y:"hd4"}},{type:"lnTo",pt:{x:"sx4",y:"vc"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"sx3",y:"sy2"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"sx2",y:"sy2"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"sx1",y:"vc"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star7:{avLst:[{n:"adj",f:"val 34601"},{n:"hf",f:"val 102572"},{n:"vf",f:"val 105210"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"swd2",f:"*/ wd2 hf 100000"},{n:"shd2",f:"*/ hd2 vf 100000"},{n:"svc",f:"*/ vc vf 100000"},{n:"dx1",f:"*/ swd2 97493 100000"},{n:"dx2",f:"*/ swd2 78183 100000"},{n:"dx3",f:"*/ swd2 43388 100000"},{n:"dy1",f:"*/ shd2 62349 100000"},{n:"dy2",f:"*/ shd2 22252 100000"},{n:"dy3",f:"*/ shd2 90097 100000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc 0 dx3"},{n:"x4",f:"+- hc dx3 0"},{n:"x5",f:"+- hc dx2 0"},{n:"x6",f:"+- hc dx1 0"},{n:"y1",f:"+- svc 0 dy1"},{n:"y2",f:"+- svc dy2 0"},{n:"y3",f:"+- svc dy3 0"},{n:"iwd2",f:"*/ swd2 a 50000"},{n:"ihd2",f:"*/ shd2 a 50000"},{n:"sdx1",f:"*/ iwd2 97493 100000"},{n:"sdx2",f:"*/ iwd2 78183 100000"},{n:"sdx3",f:"*/ iwd2 43388 100000"},{n:"sx1",f:"+- hc 0 sdx1"},{n:"sx2",f:"+- hc 0 sdx2"},{n:"sx3",f:"+- hc 0 sdx3"},{n:"sx4",f:"+- hc sdx3 0"},{n:"sx5",f:"+- hc sdx2 0"},{n:"sx6",f:"+- hc sdx1 0"},{n:"sdy1",f:"*/ ihd2 90097 100000"},{n:"sdy2",f:"*/ ihd2 22252 100000"},{n:"sdy3",f:"*/ ihd2 62349 100000"},{n:"sy1",f:"+- svc 0 sdy1"},{n:"sy2",f:"+- svc 0 sdy2"},{n:"sy3",f:"+- svc sdy3 0"},{n:"sy4",f:"+- svc ihd2 0"},{n:"yAdj",f:"+- svc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"sx1",y:"sy2"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"sx3",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx4",y:"sy1"}},{type:"lnTo",pt:{x:"x5",y:"y1"}},{type:"lnTo",pt:{x:"sx6",y:"sy2"}},{type:"lnTo",pt:{x:"x6",y:"y2"}},{type:"lnTo",pt:{x:"sx5",y:"sy3"}},{type:"lnTo",pt:{x:"x4",y:"y3"}},{type:"lnTo",pt:{x:"hc",y:"sy4"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"sx2",y:"sy3"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},star8:{avLst:[{n:"adj",f:"val 37500"}],gdLst:[{n:"a",f:"pin 0 adj 50000"},{n:"dx1",f:"cos wd2 2700000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc dx1 0"},{n:"dy1",f:"sin hd2 2700000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc dy1 0"},{n:"iwd2",f:"*/ wd2 a 50000"},{n:"ihd2",f:"*/ hd2 a 50000"},{n:"sdx1",f:"*/ iwd2 92388 100000"},{n:"sdx2",f:"*/ iwd2 38268 100000"},{n:"sdy1",f:"*/ ihd2 92388 100000"},{n:"sdy2",f:"*/ ihd2 38268 100000"},{n:"sx1",f:"+- hc 0 sdx1"},{n:"sx2",f:"+- hc 0 sdx2"},{n:"sx3",f:"+- hc sdx2 0"},{n:"sx4",f:"+- hc sdx1 0"},{n:"sy1",f:"+- vc 0 sdy1"},{n:"sy2",f:"+- vc 0 sdy2"},{n:"sy3",f:"+- vc sdy2 0"},{n:"sy4",f:"+- vc sdy1 0"},{n:"yAdj",f:"+- vc 0 ihd2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"sx1",y:"sy2"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"sx2",y:"sy1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"sx3",y:"sy1"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"sx4",y:"sy2"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"sx4",y:"sy3"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"sx3",y:"sy4"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"sx2",y:"sy4"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"lnTo",pt:{x:"sx1",y:"sy3"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},straightConnector1:{pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}}],fill:"none",extrusionOk:!1,stroke:!0}]},stripedRightArrow:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"maxAdj2",f:"*/ 84375 w ss"},{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"x4",f:"*/ ss 5 32"},{n:"dx5",f:"*/ ss a2 100000"},{n:"x5",f:"+- r 0 dx5"},{n:"dy1",f:"*/ h a1 200000"},{n:"y1",f:"+- vc 0 dy1"},{n:"y2",f:"+- vc dy1 0"},{n:"dx6",f:"*/ dy1 dx5 hd2"},{n:"x6",f:"+- r 0 dx6"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y1"}},{type:"lnTo",pt:{x:"ssd32",y:"y1"}},{type:"lnTo",pt:{x:"ssd32",y:"y2"}},{type:"lnTo",pt:{x:"l",y:"y2"}},{type:"close"},{type:"moveTo",pt:{x:"ssd16",y:"y1"}},{type:"lnTo",pt:{x:"ssd8",y:"y1"}},{type:"lnTo",pt:{x:"ssd8",y:"y2"}},{type:"lnTo",pt:{x:"ssd16",y:"y2"}},{type:"close"},{type:"moveTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x5",y:"y1"}},{type:"lnTo",pt:{x:"x5",y:"t"}},{type:"lnTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x5",y:"b"}},{type:"lnTo",pt:{x:"x5",y:"y2"}},{type:"lnTo",pt:{x:"x4",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},sun:{avLst:[{n:"adj",f:"val 25000"}],gdLst:[{n:"a",f:"pin 12500 adj 46875"},{n:"g0",f:"+- 50000 0 a"},{n:"g1",f:"*/ g0 30274 32768"},{n:"g2",f:"*/ g0 12540 32768"},{n:"g3",f:"+- g1 50000 0"},{n:"g4",f:"+- g2 50000 0"},{n:"g5",f:"+- 50000 0 g1"},{n:"g6",f:"+- 50000 0 g2"},{n:"g7",f:"*/ g0 23170 32768"},{n:"g8",f:"+- 50000 g7 0"},{n:"g9",f:"+- 50000 0 g7"},{n:"g10",f:"*/ g5 3 4"},{n:"g11",f:"*/ g6 3 4"},{n:"g12",f:"+- g10 3662 0"},{n:"g13",f:"+- g11 3662 0"},{n:"g14",f:"+- g11 12500 0"},{n:"g15",f:"+- 100000 0 g10"},{n:"g16",f:"+- 100000 0 g12"},{n:"g17",f:"+- 100000 0 g13"},{n:"g18",f:"+- 100000 0 g14"},{n:"ox1",f:"*/ w 18436 21600"},{n:"oy1",f:"*/ h 3163 21600"},{n:"ox2",f:"*/ w 3163 21600"},{n:"oy2",f:"*/ h 18436 21600"},{n:"x8",f:"*/ w g8 100000"},{n:"x9",f:"*/ w g9 100000"},{n:"x10",f:"*/ w g10 100000"},{n:"x12",f:"*/ w g12 100000"},{n:"x13",f:"*/ w g13 100000"},{n:"x14",f:"*/ w g14 100000"},{n:"x15",f:"*/ w g15 100000"},{n:"x16",f:"*/ w g16 100000"},{n:"x17",f:"*/ w g17 100000"},{n:"x18",f:"*/ w g18 100000"},{n:"x19",f:"*/ w a 100000"},{n:"wR",f:"*/ w g0 100000"},{n:"hR",f:"*/ h g0 100000"},{n:"y8",f:"*/ h g8 100000"},{n:"y9",f:"*/ h g9 100000"},{n:"y10",f:"*/ h g10 100000"},{n:"y12",f:"*/ h g12 100000"},{n:"y13",f:"*/ h g13 100000"},{n:"y14",f:"*/ h g14 100000"},{n:"y15",f:"*/ h g15 100000"},{n:"y16",f:"*/ h g16 100000"},{n:"y17",f:"*/ h g17 100000"},{n:"y18",f:"*/ h g18 100000"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"r",y:"vc"}},{type:"lnTo",pt:{x:"x15",y:"y18"}},{type:"lnTo",pt:{x:"x15",y:"y14"}},{type:"close"},{type:"moveTo",pt:{x:"ox1",y:"oy1"}},{type:"lnTo",pt:{x:"x16",y:"y13"}},{type:"lnTo",pt:{x:"x17",y:"y12"}},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"x18",y:"y10"}},{type:"lnTo",pt:{x:"x14",y:"y10"}},{type:"close"},{type:"moveTo",pt:{x:"ox2",y:"oy1"}},{type:"lnTo",pt:{x:"x13",y:"y12"}},{type:"lnTo",pt:{x:"x12",y:"y13"}},{type:"close"},{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"lnTo",pt:{x:"x10",y:"y14"}},{type:"lnTo",pt:{x:"x10",y:"y18"}},{type:"close"},{type:"moveTo",pt:{x:"ox2",y:"oy2"}},{type:"lnTo",pt:{x:"x12",y:"y17"}},{type:"lnTo",pt:{x:"x13",y:"y16"}},{type:"close"},{type:"moveTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"x14",y:"y15"}},{type:"lnTo",pt:{x:"x18",y:"y15"}},{type:"close"},{type:"moveTo",pt:{x:"ox1",y:"oy2"}},{type:"lnTo",pt:{x:"x17",y:"y16"}},{type:"lnTo",pt:{x:"x16",y:"y17"}},{type:"close"},{type:"moveTo",pt:{x:"x19",y:"vc"}},{type:"arcTo",wR:"wR",hR:"hR",stAng:"cd2",swAng:"21600000"},{type:"close"}],extrusionOk:!1,stroke:!0}]},swooshArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 16667"}],gdLst:[{n:"a1",f:"pin 1 adj1 75000"},{n:"maxAdj2",f:"*/ 70000 w ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"ad1",f:"*/ h a1 100000"},{n:"ad2",f:"*/ ss a2 100000"},{n:"xB",f:"+- r 0 ad2"},{n:"yB",f:"+- t ssd8 0"},{n:"alfa",f:"*/ cd4 1 14"},{n:"dx0",f:"tan ssd8 alfa"},{n:"xC",f:"+- xB 0 dx0"},{n:"dx1",f:"tan ad1 alfa"},{n:"yF",f:"+- yB ad1 0"},{n:"xF",f:"+- xB dx1 0"},{n:"xE",f:"+- xF dx0 0"},{n:"yE",f:"+- yF ssd8 0"},{n:"dy2",f:"+- yE 0 t"},{n:"dy22",f:"*/ dy2 1 2"},{n:"dy3",f:"*/ h 1 20"},{n:"yD",f:"+- t dy22 dy3"},{n:"dy4",f:"*/ hd6 1 1"},{n:"yP1",f:"+- hd6 dy4 0"},{n:"xP1",f:"val wd6"},{n:"dy5",f:"*/ hd6 1 2"},{n:"yP2",f:"+- yF dy5 0"},{n:"xP2",f:"val wd4"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"quadBezTo",pts:[{x:"xP1",y:"yP1"},{x:"xB",y:"yB"}]},{type:"lnTo",pt:{x:"xC",y:"t"}},{type:"lnTo",pt:{x:"r",y:"yD"}},{type:"lnTo",pt:{x:"xE",y:"yE"}},{type:"lnTo",pt:{x:"xF",y:"yF"}},{type:"quadBezTo",pts:[{x:"xP2",y:"yP2"},{x:"l",y:"b"}]},{type:"close"}],extrusionOk:!1,stroke:!0}]},teardrop:{avLst:[{n:"adj",f:"val 100000"}],gdLst:[{n:"a",f:"pin 0 adj 200000"},{n:"r2",f:"sqrt 2"},{n:"tw",f:"*/ wd2 r2 1"},{n:"th",f:"*/ hd2 r2 1"},{n:"sw",f:"*/ tw a 100000"},{n:"sh",f:"*/ th a 100000"},{n:"dx1",f:"cos sw 2700000"},{n:"dy1",f:"sin sh 2700000"},{n:"x1",f:"+- hc dx1 0"},{n:"y1",f:"+- vc 0 dy1"},{n:"x2",f:"+/ hc x1 2"},{n:"y2",f:"+/ vc y1 2"},{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"vc"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd2",swAng:"cd4"},{type:"quadBezTo",pts:[{x:"x2",y:"t"},{x:"x1",y:"y1"}]},{type:"quadBezTo",pts:[{x:"r",y:"y2"},{x:"r",y:"vc"}]},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"cd4",swAng:"cd4"},{type:"close"}],extrusionOk:!1,stroke:!0}]},trapezoid:{avLst:[{n:"adj",f:"val 25000"}],gdLst:[{n:"maxAdj",f:"*/ 50000 w ss"},{n:"a",f:"pin 0 adj maxAdj"},{n:"x1",f:"*/ ss a 200000"},{n:"x2",f:"*/ ss a 100000"},{n:"x3",f:"+- r 0 x2"},{n:"x4",f:"+- r 0 x1"},{n:"il",f:"*/ wd3 a maxAdj"},{n:"it",f:"*/ hd3 a maxAdj"},{n:"ir",f:"+- r 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"x3",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},triangle:{avLst:[{n:"adj",f:"val 50000"}],gdLst:[{n:"a",f:"pin 0 adj 100000"},{n:"x1",f:"*/ w a 200000"},{n:"x2",f:"*/ w a 100000"},{n:"x3",f:"+- x1 wd2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},upArrowCallout:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"},{n:"adj4",f:"val 64977"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 w ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"maxAdj3",f:"*/ 100000 h ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"q2",f:"*/ a3 ss h"},{n:"maxAdj4",f:"+- 100000 0 q2"},{n:"a4",f:"pin 0 adj4 maxAdj4"},{n:"dx1",f:"*/ ss a2 100000"},{n:"dx2",f:"*/ ss a1 200000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"},{n:"x4",f:"+- hc dx1 0"},{n:"y1",f:"*/ ss a3 100000"},{n:"dy2",f:"*/ h a4 100000"},{n:"y2",f:"+- b 0 dy2"},{n:"y3",f:"+/ y2 b 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},upDownArrow:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 h ss"},{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"y2",f:"*/ ss a2 100000"},{n:"y3",f:"+- b 0 y2"},{n:"dx1",f:"*/ w a1 200000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc dx1 0"},{n:"dy1",f:"*/ x1 y2 wd2"},{n:"y1",f:"+- y2 0 dy1"},{n:"y4",f:"+- y3 dy1 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"lnTo",pt:{x:"r",y:"y3"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"l",y:"y3"}},{type:"lnTo",pt:{x:"x1",y:"y3"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},upArrow:{avLst:[{n:"adj1",f:"val 50000"},{n:"adj2",f:"val 50000"}],gdLst:[{n:"maxAdj2",f:"*/ 100000 h ss"},{n:"a1",f:"pin 0 adj1 100000"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"dy2",f:"*/ ss a2 100000"},{n:"y2",f:"+- t dy2 0"},{n:"dx1",f:"*/ w a1 200000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc dx1 0"},{n:"dy1",f:"*/ x1 dy2 wd2"},{n:"y1",f:"+- y2 0 dy1"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"y2"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},upDownArrowCallout:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"},{n:"adj4",f:"val 48123"}],gdLst:[{n:"maxAdj2",f:"*/ 50000 w ss"},{n:"a2",f:"pin 0 adj2 maxAdj2"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"maxAdj3",f:"*/ 50000 h ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"q2",f:"*/ a3 ss hd2"},{n:"maxAdj4",f:"+- 100000 0 q2"},{n:"a4",f:"pin 0 adj4 maxAdj4"},{n:"dx1",f:"*/ ss a2 100000"},{n:"dx2",f:"*/ ss a1 200000"},{n:"x1",f:"+- hc 0 dx1"},{n:"x2",f:"+- hc 0 dx2"},{n:"x3",f:"+- hc dx2 0"},{n:"x4",f:"+- hc dx1 0"},{n:"y1",f:"*/ ss a3 100000"},{n:"y4",f:"+- b 0 y1"},{n:"dy2",f:"*/ h a4 200000"},{n:"y2",f:"+- vc 0 dy2"},{n:"y3",f:"+- vc dy2 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y2"}},{type:"lnTo",pt:{x:"x2",y:"y1"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"lnTo",pt:{x:"hc",y:"t"}},{type:"lnTo",pt:{x:"x4",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y1"}},{type:"lnTo",pt:{x:"x3",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y3"}},{type:"lnTo",pt:{x:"x3",y:"y4"}},{type:"lnTo",pt:{x:"x4",y:"y4"}},{type:"lnTo",pt:{x:"hc",y:"b"}},{type:"lnTo",pt:{x:"x1",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"y4"}},{type:"lnTo",pt:{x:"x2",y:"y3"}},{type:"lnTo",pt:{x:"l",y:"y3"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},uturnArrow:{avLst:[{n:"adj1",f:"val 25000"},{n:"adj2",f:"val 25000"},{n:"adj3",f:"val 25000"},{n:"adj4",f:"val 43750"},{n:"adj5",f:"val 75000"}],gdLst:[{n:"a2",f:"pin 0 adj2 25000"},{n:"maxAdj1",f:"*/ a2 2 1"},{n:"a1",f:"pin 0 adj1 maxAdj1"},{n:"q2",f:"*/ a1 ss h"},{n:"q3",f:"+- 100000 0 q2"},{n:"maxAdj3",f:"*/ q3 h ss"},{n:"a3",f:"pin 0 adj3 maxAdj3"},{n:"q1",f:"+- a3 a1 0"},{n:"minAdj5",f:"*/ q1 ss h"},{n:"a5",f:"pin minAdj5 adj5 100000"},{n:"th",f:"*/ ss a1 100000"},{n:"aw2",f:"*/ ss a2 100000"},{n:"th2",f:"*/ th 1 2"},{n:"dh2",f:"+- aw2 0 th2"},{n:"y5",f:"*/ h a5 100000"},{n:"ah",f:"*/ ss a3 100000"},{n:"y4",f:"+- y5 0 ah"},{n:"x9",f:"+- r 0 dh2"},{n:"bw",f:"*/ x9 1 2"},{n:"bs",f:"min bw y4"},{n:"maxAdj4",f:"*/ bs 100000 ss"},{n:"a4",f:"pin 0 adj4 maxAdj4"},{n:"bd",f:"*/ ss a4 100000"},{n:"bd3",f:"+- bd 0 th"},{n:"bd2",f:"max bd3 0"},{n:"x3",f:"+- th bd2 0"},{n:"x8",f:"+- r 0 aw2"},{n:"x6",f:"+- x8 0 aw2"},{n:"x7",f:"+- x6 dh2 0"},{n:"x4",f:"+- x9 0 bd"},{n:"x5",f:"+- x7 0 bd2"},{n:"cx",f:"+/ th x7 2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"l",y:"bd"}},{type:"arcTo",wR:"bd",hR:"bd",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x4",y:"t"}},{type:"arcTo",wR:"bd",hR:"bd",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"x9",y:"y4"}},{type:"lnTo",pt:{x:"r",y:"y4"}},{type:"lnTo",pt:{x:"x8",y:"y5"}},{type:"lnTo",pt:{x:"x6",y:"y4"}},{type:"lnTo",pt:{x:"x7",y:"y4"}},{type:"lnTo",pt:{x:"x7",y:"x3"}},{type:"arcTo",wR:"bd2",hR:"bd2",stAng:"0",swAng:"-5400000"},{type:"lnTo",pt:{x:"x3",y:"th"}},{type:"arcTo",wR:"bd2",hR:"bd2",stAng:"3cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"th",y:"b"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},verticalScroll:{avLst:[{n:"adj",f:"val 12500"}],gdLst:[{n:"a",f:"pin 0 adj 25000"},{n:"ch",f:"*/ ss a 100000"},{n:"ch2",f:"*/ ch 1 2"},{n:"ch4",f:"*/ ch 1 4"},{n:"x3",f:"+- ch ch2 0"},{n:"x4",f:"+- ch ch 0"},{n:"x6",f:"+- r 0 ch"},{n:"x7",f:"+- r 0 ch2"},{n:"x5",f:"+- x6 0 ch2"},{n:"y3",f:"+- b 0 ch"},{n:"y4",f:"+- b 0 ch2"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"ch2",y:"b"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"ch2",y:"y4"}},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"cd4",swAng:"-10800000"},{type:"lnTo",pt:{x:"ch",y:"y3"}},{type:"lnTo",pt:{x:"ch",y:"ch2"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x7",y:"t"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x6",y:"ch"}},{type:"lnTo",pt:{x:"x6",y:"y4"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"0",swAng:"cd4"},{type:"close"},{type:"moveTo",pt:{x:"x4",y:"ch2"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"cd4",swAng:"cd2"},{type:"close"}],extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"x4",y:"ch2"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"0",swAng:"cd4"},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"cd4",swAng:"cd2"},{type:"close"},{type:"moveTo",pt:{x:"ch",y:"y4"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"0",swAng:"3cd4"},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"3cd4",swAng:"cd2"},{type:"close"}],fill:"darkenLess",extrusionOk:!1,stroke:!1},{defines:[{type:"moveTo",pt:{x:"ch",y:"y3"}},{type:"lnTo",pt:{x:"ch",y:"ch2"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x7",y:"t"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x6",y:"ch"}},{type:"lnTo",pt:{x:"x6",y:"y4"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"ch2",y:"b"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd4",swAng:"cd2"},{type:"close"},{type:"moveTo",pt:{x:"x3",y:"t"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"3cd4",swAng:"cd2"},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"x4",y:"ch2"}},{type:"moveTo",pt:{x:"x6",y:"ch"}},{type:"lnTo",pt:{x:"x3",y:"ch"}},{type:"moveTo",pt:{x:"ch2",y:"y3"}},{type:"arcTo",wR:"ch4",hR:"ch4",stAng:"3cd4",swAng:"cd2"},{type:"lnTo",pt:{x:"ch",y:"y4"}},{type:"moveTo",pt:{x:"ch2",y:"b"}},{type:"arcTo",wR:"ch2",hR:"ch2",stAng:"cd4",swAng:"-5400000"},{type:"lnTo",pt:{x:"ch",y:"y3"}}],fill:"none",extrusionOk:!1,stroke:!0}]},wave:{avLst:[{n:"adj1",f:"val 12500"},{n:"adj2",f:"val 0"}],gdLst:[{n:"a1",f:"pin 0 adj1 20000"},{n:"a2",f:"pin -10000 adj2 10000"},{n:"y1",f:"*/ h a1 100000"},{n:"dy2",f:"*/ y1 10 3"},{n:"y2",f:"+- y1 0 dy2"},{n:"y3",f:"+- y1 dy2 0"},{n:"y4",f:"+- b 0 y1"},{n:"y5",f:"+- y4 0 dy2"},{n:"y6",f:"+- y4 dy2 0"},{n:"dx1",f:"*/ w a2 100000"},{n:"of2",f:"*/ w a2 50000"},{n:"x1",f:"abs dx1"},{n:"dx2",f:"?: of2 0 of2"},{n:"x2",f:"+- l 0 dx2"},{n:"dx5",f:"?: of2 of2 0"},{n:"x5",f:"+- r 0 dx5"},{n:"dx3",f:"+/ dx2 x5 3"},{n:"x3",f:"+- x2 dx3 0"},{n:"x4",f:"+/ x3 x5 2"},{n:"x6",f:"+- l dx5 0"},{n:"x10",f:"+- r dx2 0"},{n:"x7",f:"+- x6 dx3 0"},{n:"x8",f:"+/ x7 x10 2"},{n:"x9",f:"+- r 0 x1"},{n:"xAdj",f:"+- hc dx1 0"},{n:"xAdj2",f:"+- hc 0 dx1"},{n:"il",f:"max x2 x6"},{n:"ir",f:"min x5 x10"},{n:"it",f:"*/ h a1 50000"},{n:"ib",f:"+- b 0 it"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"x2",y:"y1"}},{type:"cubicBezTo",pts:[{x:"x3",y:"y2"},{x:"x4",y:"y3"},{x:"x5",y:"y1"}]},{type:"lnTo",pt:{x:"x10",y:"y4"}},{type:"cubicBezTo",pts:[{x:"x8",y:"y6"},{x:"x7",y:"y5"},{x:"x6",y:"y4"}]},{type:"close"}],extrusionOk:!1,stroke:!0}]},wedgeEllipseCallout:{avLst:[{n:"adj1",f:"val -20833"},{n:"adj2",f:"val 62500"}],gdLst:[{n:"dxPos",f:"*/ w adj1 100000"},{n:"dyPos",f:"*/ h adj2 100000"},{n:"xPos",f:"+- hc dxPos 0"},{n:"yPos",f:"+- vc dyPos 0"},{n:"sdx",f:"*/ dxPos h 1"},{n:"sdy",f:"*/ dyPos w 1"},{n:"pang",f:"at2 sdx sdy"},{n:"stAng",f:"+- pang 660000 0"},{n:"enAng",f:"+- pang 0 660000"},{n:"dx1",f:"cos wd2 stAng"},{n:"dy1",f:"sin hd2 stAng"},{n:"x1",f:"+- hc dx1 0"},{n:"y1",f:"+- vc dy1 0"},{n:"dx2",f:"cos wd2 enAng"},{n:"dy2",f:"sin hd2 enAng"},{n:"x2",f:"+- hc dx2 0"},{n:"y2",f:"+- vc dy2 0"},{n:"stAng1",f:"at2 dx1 dy1"},{n:"enAng1",f:"at2 dx2 dy2"},{n:"swAng1",f:"+- enAng1 0 stAng1"},{n:"swAng2",f:"+- swAng1 21600000 0"},{n:"swAng",f:"?: swAng1 swAng1 swAng2"},{n:"idx",f:"cos wd2 2700000"},{n:"idy",f:"sin hd2 2700000"},{n:"il",f:"+- hc 0 idx"},{n:"ir",f:"+- hc idx 0"},{n:"it",f:"+- vc 0 idy"},{n:"ib",f:"+- vc idy 0"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"xPos",y:"yPos"}},{type:"lnTo",pt:{x:"x1",y:"y1"}},{type:"arcTo",wR:"wd2",hR:"hd2",stAng:"stAng1",swAng:"swAng"},{type:"close"}],extrusionOk:!1,stroke:!0}]},wedgeRectCallout:{avLst:[{n:"adj1",f:"val -20833"},{n:"adj2",f:"val 62500"}],gdLst:[{n:"dxPos",f:"*/ w adj1 100000"},{n:"dyPos",f:"*/ h adj2 100000"},{n:"xPos",f:"+- hc dxPos 0"},{n:"yPos",f:"+- vc dyPos 0"},{n:"dx",f:"+- xPos 0 hc"},{n:"dy",f:"+- yPos 0 vc"},{n:"dq",f:"*/ dxPos h w"},{n:"ady",f:"abs dyPos"},{n:"adq",f:"abs dq"},{n:"dz",f:"+- ady 0 adq"},{n:"xg1",f:"?: dxPos 7 2"},{n:"xg2",f:"?: dxPos 10 5"},{n:"x1",f:"*/ w xg1 12"},{n:"x2",f:"*/ w xg2 12"},{n:"yg1",f:"?: dyPos 7 2"},{n:"yg2",f:"?: dyPos 10 5"},{n:"y1",f:"*/ h yg1 12"},{n:"y2",f:"*/ h yg2 12"},{n:"t1",f:"?: dxPos l xPos"},{n:"xl",f:"?: dz l t1"},{n:"t2",f:"?: dyPos x1 xPos"},{n:"xt",f:"?: dz t2 x1"},{n:"t3",f:"?: dxPos xPos r"},{n:"xr",f:"?: dz r t3"},{n:"t4",f:"?: dyPos xPos x1"},{n:"xb",f:"?: dz t4 x1"},{n:"t5",f:"?: dxPos y1 yPos"},{n:"yl",f:"?: dz y1 t5"},{n:"t6",f:"?: dyPos t yPos"},{n:"yt",f:"?: dz t6 t"},{n:"t7",f:"?: dxPos yPos y1"},{n:"yr",f:"?: dz y1 t7"},{n:"t8",f:"?: dyPos yPos b"},{n:"yb",f:"?: dz t8 b"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"t"}},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"xt",y:"yt"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"r",y:"t"}},{type:"lnTo",pt:{x:"r",y:"y1"}},{type:"lnTo",pt:{x:"xr",y:"yr"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"b"}},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"xb",y:"yb"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"l",y:"b"}},{type:"lnTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"xl",y:"yl"}},{type:"lnTo",pt:{x:"l",y:"y1"}},{type:"close"}],extrusionOk:!1,stroke:!0}]},wedgeRoundRectCallout:{avLst:[{n:"adj1",f:"val -20833"},{n:"adj2",f:"val 62500"},{n:"adj3",f:"val 16667"}],gdLst:[{n:"dxPos",f:"*/ w adj1 100000"},{n:"dyPos",f:"*/ h adj2 100000"},{n:"xPos",f:"+- hc dxPos 0"},{n:"yPos",f:"+- vc dyPos 0"},{n:"dq",f:"*/ dxPos h w"},{n:"ady",f:"abs dyPos"},{n:"adq",f:"abs dq"},{n:"dz",f:"+- ady 0 adq"},{n:"xg1",f:"?: dxPos 7 2"},{n:"xg2",f:"?: dxPos 10 5"},{n:"x1",f:"*/ w xg1 12"},{n:"x2",f:"*/ w xg2 12"},{n:"yg1",f:"?: dyPos 7 2"},{n:"yg2",f:"?: dyPos 10 5"},{n:"y1",f:"*/ h yg1 12"},{n:"y2",f:"*/ h yg2 12"},{n:"t1",f:"?: dxPos l xPos"},{n:"xl",f:"?: dz l t1"},{n:"t2",f:"?: dyPos x1 xPos"},{n:"xt",f:"?: dz t2 x1"},{n:"t3",f:"?: dxPos xPos r"},{n:"xr",f:"?: dz r t3"},{n:"t4",f:"?: dyPos xPos x1"},{n:"xb",f:"?: dz t4 x1"},{n:"t5",f:"?: dxPos y1 yPos"},{n:"yl",f:"?: dz y1 t5"},{n:"t6",f:"?: dyPos t yPos"},{n:"yt",f:"?: dz t6 t"},{n:"t7",f:"?: dxPos yPos y1"},{n:"yr",f:"?: dz y1 t7"},{n:"t8",f:"?: dyPos yPos b"},{n:"yb",f:"?: dz t8 b"},{n:"u1",f:"*/ ss adj3 100000"},{n:"u2",f:"+- r 0 u1"},{n:"v2",f:"+- b 0 u1"},{n:"il",f:"*/ u1 29289 100000"},{n:"ir",f:"+- r 0 il"},{n:"ib",f:"+- b 0 il"}],pathLst:[{defines:[{type:"moveTo",pt:{x:"l",y:"u1"}},{type:"arcTo",wR:"u1",hR:"u1",stAng:"cd2",swAng:"cd4"},{type:"lnTo",pt:{x:"x1",y:"t"}},{type:"lnTo",pt:{x:"xt",y:"yt"}},{type:"lnTo",pt:{x:"x2",y:"t"}},{type:"lnTo",pt:{x:"u2",y:"t"}},{type:"arcTo",wR:"u1",hR:"u1",stAng:"3cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"r",y:"y1"}},{type:"lnTo",pt:{x:"xr",y:"yr"}},{type:"lnTo",pt:{x:"r",y:"y2"}},{type:"lnTo",pt:{x:"r",y:"v2"}},{type:"arcTo",wR:"u1",hR:"u1",stAng:"0",swAng:"cd4"},{type:"lnTo",pt:{x:"x2",y:"b"}},{type:"lnTo",pt:{x:"xb",y:"yb"}},{type:"lnTo",pt:{x:"x1",y:"b"}},{type:"lnTo",pt:{x:"u1",y:"b"}},{type:"arcTo",wR:"u1",hR:"u1",stAng:"cd4",swAng:"cd4"},{type:"lnTo",pt:{x:"l",y:"y2"}},{type:"lnTo",pt:{x:"xl",y:"yl"}},{type:"lnTo",pt:{x:"l",y:"y1"}},{type:"close"}],extrusionOk:!1,stroke:!0}]}}}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/svg/formulas.js*/
- amis.define("9b8e585",(function(n,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var e=1/6e4/180*Math.PI,u={"*/":function(n,t,r){return n*t/r},"+-":function(n,t,r){return n+t-r},"+/":function(n,t,r){return(n+t)/r},"?:":function(n,t,r){return n>0?t:r},abs:function(n){return Math.abs(n)},at2:function(n,t){return 180*Math.atan2(t,n)*6e4/Math.PI},cat2:function(n,t,r){return n*Math.cos(Math.atan2(r,t))},cos:function(n,t){return n*Math.cos(t*e)},max:function(n,t){return Math.max(n,t)},min:function(n,t){return Math.min(n,t)},mod:function(n,t,r){return Math.sqrt(Math.pow(n,2)+Math.pow(t,2)+Math.pow(r,2))},pin:function(n,t,r){return t<n?n:t>r?r:t},sat2:function(n,t,r){return n*Math.sin(Math.atan2(r,t))},sin:function(n,t){return n*Math.sin(t*e)},sqrt:function(n){return Math.sqrt(n)},tan:function(n,t){return n*Math.tan(t*e)},val:function(n){var t=parseInt(n,10);return isNaN(t),t}};t.evalFmla=function(n,t,r){var a=t.split(/[ ]+/);a.length<=1&&console.warn("fmla format error",t);var e=a[0],i=a.slice(1).map((function(n){if(n in r)return r[n];var a=parseInt(n,10);return isNaN(a)?(console.warn("fmla arg error",n,t),0):a}));if(e in u){var o=u[e].apply(null,i);if(isNaN(o))return console.warn("fmla eval error",t,n),0;r[n]=o}return 0},t.formulas=u}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/svg/arcToA.js*/
- amis.define("62e2d43",(function(t,a,n,c){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var e=function(t){return Math.PI*(t/6e4/180)};function r(t,a){return[t[0][0]*a[0]+t[0][1]*a[1],t[1][0]*a[0]+t[1][1]*a[1]]}a.default=function(t,a,n,c,o,u){var h=e(n),i=e(c),s=e(n+c);(function(t,a){if(t===a)return!0;var n=Math.abs(t-a);return n<Number.EPSILON||n<=Number.EPSILON*Math.min(Math.abs(t),Math.abs(a))})(c,216e5)&&(s-=1e-4);var M=function(t,a,n,c,e,o,u){var h=n,i=c,s=[o,u],M=[[Math.cos(e),-Math.sin(e)],[Math.sin(e),Math.cos(e)]],f=[t*Math.cos(h),a*Math.sin(h)],b=r(M,f),d=[s[0]-b[0],s[1]-b[1]],v=[t*Math.cos(i),a*Math.sin(i)],P=r(M,v),m=[d[0]+P[0],d[1]+P[1]];return{x:m[0],y:m[1]}}(t,a,h,s,0,o,u),f=Math.abs(i)>Math.PI?1:0,b=c>0?1:0;return{path:"A ".concat(t," ").concat(a," 0 ").concat(f," ").concat(b," ").concat(M.x,",").concat(M.y),end:M}}}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/svg/generateDefines.js*/
- amis.define("948875f",(function(e,t,a,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c=e("68b98b9"),s=e("62e2d43");function r(e,t,a){var n=0;if(e in t)n=t[e];else if(n=parseInt(e,10),isNaN(n))return console.warn("var not found",e),0;return a?n*a:n}t.generateDefines=function(e,t,a){var n,o,u=e.defines,p=[],h=e.w,l=e.h,i=1,y=1;h&&(i=t.w/h),l&&(y=t.h/l);try{for(var f=c.__values(u),v=f.next();!v.done;v=f.next()){var x=v.value;switch(x.type){case"moveTo":var d=r((g=x.pt).x,t,i),b=r(g.y,t,y);p.push("M ".concat(d," ").concat(b)),a.push({x:d,y:b});break;case"lnTo":var g;d=r((g=x.pt).x,t,i),b=r(g.y,t,y);p.push("L ".concat(d," ").concat(b)),a.push({x:d,y:b});break;case"arcTo":var w=x,T=r(w.wR,t,i),k=r(w.hR,t,y),m=r(w.stAng,t),z=r(w.swAng,t),B={x:0,y:0};a.length>0&&(B=a[a.length-1]);var _=s.default(T,k,m,z,B.x,B.y);p.push(_.path),a.push({x:_.end.x,y:_.end.y});break;case"quadBezTo":var j=x;if(j.pts.length>=2){var q=j.pts[0],A=j.pts[1],M=r(q.x,t,i),N=r(q.y,t,y),R=r(A.x,t,i),C=r(A.y,t,y);if(p.push("Q ".concat(M,",").concat(N," ").concat(R,",").concat(C)),j.pts.length>2){var D=r((O=j.pts[2]).x,t,i),I=r(O.y,t,y);p.push("T ".concat(D,",").concat(I)),a.push({x:D,y:I})}else a.push({x:R,y:C})}else console.warn("quadBezTo pts length must large than 2",x);break;case"cubicBezTo":var L=x;if(3===L.pts.length){q=L.pts[0],A=L.pts[1];var O=L.pts[2];M=r(q.x,t,i),N=r(q.y,t,y),R=r(A.x,t,i),C=r(A.y,t,y),D=r(O.x,t,i),I=r(O.y,t,y);p.push("C ".concat(M,",").concat(N," ").concat(R,",").concat(C," ").concat(D,",").concat(I)),a.push({x:D,y:I})}else console.warn("cubicBezTo pts length must be 3",x);break;case"close":p.push("Z")}}}catch(e){n={error:e}}finally{try{v&&!v.done&&(o=f.return)&&o.call(f)}finally{if(n)throw n.error}}return p.join(" ")}}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/svg/presetVal.js*/
- amis.define("addfef5",(function(d,e,s,c){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.presetVal=function(d,e){var s=Math.min(d,e),c=s/6,t=s/6,h=s/8,w=s/32,a=s/16;return{t:0,"3cd4":162e5,"3cd8":81e5,"5cd8":135e5,"7cd8":189e5,b:e,cd2:108e5,cd4:54e5,cd8:27e5,h:e,hd2:e/2,hd3:e/3,hd4:e/4,hd6:e/6,hd8:e/8,l:0,ls:Math.max(d,e),r:d,ss:s,ssd2:c,ssd6:t,ssd8:h,ssd16:a,ssd32:w,hc:d/2,vc:e/2,w:d,wd2:d/2,wd3:d/3,wd4:d/4,wd6:d/6,wd8:d/8,wd10:d/10,wd16:d/16,wd32:d/32}}}));
- ;/*!node_modules/office-viewer/lib/openxml/drawing/svg/shapeToSVG.js*/
- amis.define("90e19f4",(function(e,t,r,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("68b98b9"),n=e("b12ecca"),i=e("8934861"),a=e("9b8e585"),s=e("948875f"),f=e("addfef5");t.shapeToSVG=function(e,t,r,l,u,b){var c,v,d,y,h,A,x,k,p=i.createSVGElement("svg");p.style.display="block",p.setAttribute("style","display: block; overflow: visible; position: absolute; z-index: -1"),p.setAttribute("width",l.toString()+"px"),p.setAttribute("height",u.toString()+"px");var w=f.presetVal(l,u);try{for(var m=o.__values(e.avLst||[]),_=m.next();!_.done;_=m.next()){var g=_.value;a.evalFmla(g.n,g.f,w)}}catch(e){c={error:e}}finally{try{_&&!_.done&&(v=m.return)&&v.call(m)}finally{if(c)throw c.error}}try{for(var C=o.__values(t),L=C.next();!L.done;L=C.next()){g=L.value;a.evalFmla(g.n,g.f,w)}}catch(e){d={error:e}}finally{try{L&&!L.done&&(y=C.return)&&y.call(C)}finally{if(d)throw d.error}}try{for(var O=o.__values(e.gdLst||[]),S=O.next();!S.done;S=O.next()){g=S.value;a.evalFmla(g.n,g.f,w)}}catch(e){h={error:e}}finally{try{S&&!S.done&&(A=O.return)&&A.call(O)}finally{if(h)throw h.error}}var F=r.outline,H=[];try{for(var V=o.__values(e.pathLst||[]),G=V.next();!G.done;G=V.next()){var E=G.value,j=i.createSVGElement("path"),z=s.generateDefines(E,w,H);j.setAttribute("d",z),r.fillColor?j.setAttribute("fill",r.fillColor):b&&b.fillColor?j.setAttribute("fill",b.fillColor):j.setAttribute("fill","none"),F?(F.color&&j.setAttribute("stroke",F.color),F.width&&j.setAttribute("stroke-width",F.width),"none"===F.style&&j.setAttribute("stroke","none")):b&&b.lineColor?j.setAttribute("stroke",b.lineColor):j.setAttribute("stroke","none");var D=j.getAttribute("fill");if(D&&"none"!==D){var M=new n.Color(D),P=E.fill,T="";switch(P){case"darken":T=M.lumOff(-.5).toHex();break;case"darkenLess":T=M.lumOff(-.2).toHex();break;case"lighten":T=M.lumOff(.5).toHex();break;case"lightenLess":T=M.lumOff(.2).toHex()}T&&j.setAttribute("fill",T)}"none"===E.fill&&j.setAttribute("fill","none"),!1===E.stroke&&(j.setAttribute("stroke","none"),E.fill||j.setAttribute("fill","none")),r.noFill&&j.setAttribute("fill","none"),p.appendChild(j)}}catch(e){x={error:e}}finally{try{G&&!G.done&&(k=V.return)&&k.call(V)}finally{if(x)throw x.error}}return p}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderGeom.js*/
- amis.define("5642bcf",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var f=e("f459abb"),s=e("90e19f4");r.renderGeom=function(e,r,t,n,a){if(e.prst){var i=f.presetShape[e.prst];if(i)return s.shapeToSVG(i,e.avLst||[],r,t,n,a)}return null}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderCustGeom.js*/
- amis.define("7a16f1c",(function(e,n,r,s){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var t=e("90e19f4");n.renderCustGeom=function(e,n,r,s,u){return e.shape?t.shapeToSVG(e.shape,[],n,r,s,u):null}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderDrawing.js*/
- amis.define("4504cb7",(function(e,t,l,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("68b98b9"),i=e("208f98d"),n=e("8934861"),o=e("3971faf"),p=e("9719fc0"),c=e("c067fd2"),s=e("5642bcf"),d=e("7a16f1c");function f(e,t,l){var r,a,i;void 0===l&&(l=null);var n=null===(r=e.blipFill)||void 0===r?void 0:r.blip;if(n&&n.src){var o=document.createElement("img");if(o.style.position="relative",o.alt=e.alt||"",o.src=n.src,e.alt&&t.renderOptions.enableVar)if(e.altVar)o.src=e.altVar;else if(e.alt.startsWith("{{")){var p=t.replaceText(e.alt);p&&(o.src=p)}var c=null===(a=e.spPr)||void 0===a?void 0:a.xfrm;if(c){if(l){var s=v(c,null===(i=l.spPr)||void 0===i?void 0:i.xfrm);s&&(o.style.position="absolute",o.style.left=s.left+"px",o.style.top=s.top+"px",o.style.width=s.width+"px",o.style.height=s.height+"px")}else{var d=c.off;d&&(o.style.left=d.x,o.style.top=d.y);var f=c.ext;f&&(o.style.width=f.cx,o.style.height=f.cy)}c.rot&&(o.style.transform="rotate(".concat(c.rot,"deg)"))}return o}return null}function v(e,t){var l=e.off,r=parseFloat(e.ext.cx.replace("px","")),a=parseFloat(e.ext.cy.replace("px",""));if(l&&t.chOff&&t.ext&&t.chExt){var i=parseFloat(t.ext.cx.replace("px",""))/parseFloat(t.chExt.cx.replace("px","")),n=parseFloat(t.ext.cy.replace("px",""))/parseFloat(t.chExt.cy.replace("px","")),o=parseFloat(t.chOff.x.replace("px","")),p=parseFloat(t.chOff.y.replace("px",""));return{left:i*(parseFloat(l.x.replace("px",""))-o),top:n*(parseFloat(l.y.replace("px",""))-p),width:i*r,height:n*a}}return null}function y(e,t,l,r){var f,y,x;void 0===r&&(r=null);var u=l.wpsStyle,h=l.spPr;if(n.applyStyle(t,l.style),(null==u?void 0:u.fontColor)&&(t.style.color=u.fontColor),null==h?void 0:h.xfrm){var m=h.xfrm.ext;if(m){var g=parseFloat(m.cx.replace("px","")),w=parseFloat(m.cy.replace("px",""));if(r){t.style.position="absolute";var C=v(h.xfrm,null===(x=r.spPr)||void 0===x?void 0:x.xfrm);C&&(t.style.left=C.left+"px",t.style.top=C.top+"px",g=C.width,w=C.height)}t.style.width=g+"px",t.style.height=w+"px",h.geom&&n.appendChild(t,s.renderGeom(h.geom,h,g,w,l.wpsStyle)),h.custGeom&&n.appendChild(t,d.renderCustGeom(h.custGeom,h,g,w,l.wpsStyle))}h.xfrm.rot&&(t.style.transform="rotate(".concat(h.xfrm.rot,"deg)"))}var b=l.txbxContent;if(b.length){var F=document.createElement("div");F.dataset.name="textContainer",t.style.display="table",F.style.display="table-cell",F.style.verticalAlign="middle",l.style&&l.style["vertical-align"]&&(F.style.verticalAlign=l.style["vertical-align"],t.style.verticalAlign=""),n.appendChild(t,F);try{for(var E=a.__values(b),_=E.next();!_.done;_=E.next()){var P=_.value;P instanceof i.Paragraph?n.appendChild(F,o.default(e,P)):P instanceof c.Table&&n.appendChild(F,p.default(e,P))}}catch(e){f={error:e}}finally{try{_&&!_.done&&(y=E.return)&&y.call(E)}finally{if(f)throw f.error}}}}function x(e,t){var l,r,i,o,p,c,s=document.createElement("div"),d=document.createElement("div"),v=t.spPr;if(null==v?void 0:v.xfrm){var u=null===(p=null==v?void 0:v.xfrm)||void 0===p?void 0:p.ext;u&&(d.style.width=u.cx,d.style.height=u.cy);var h=null===(c=null==v?void 0:v.xfrm)||void 0===c?void 0:c.rot;h&&(d.style.transform="rotate(".concat(h,"deg)"))}try{for(var m=a.__values(t.wps),g=m.next();!g.done;g=m.next()){var w=g.value,C=document.createElement("div");y(e,C,w,t),n.appendChild(d,C)}}catch(e){l={error:e}}finally{try{g&&!g.done&&(r=m.return)&&r.call(m)}finally{if(l)throw l.error}}try{for(var b=a.__values(t.wpg),F=b.next();!F.done;F=b.next()){var E=F.value;n.appendChild(s,x(e,E))}}catch(e){i={error:e}}finally{try{F&&!F.done&&(o=b.return)&&o.call(b)}finally{if(i)throw i.error}}return t.pic&&n.appendChild(d,f(t.pic,e,t)),n.appendChild(s,d),s}t.renderDrawing=function(e,t,l){var r=document.createElement("div");return"inline"===t.position?r.style.display="inline-block":t.position,t.pic&&n.appendChild(r,f(t.pic,e)),"page"===t.relativeFromV&&console.warn('暂不支持 drawing.relativeFromV === "page"'),n.applyStyle(r,t.containerStyle),r.dataset.id=t.id||"",r.dataset.name=t.name||"",t.wps&&y(e,r,t.wps),t.wpg&&n.appendChild(r,x(e,t.wpg)),0===r.children.length?null:r}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderTab.js*/
- amis.define("4f5db42",(function(e,t,r,d){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("8934861");t.renderTab=function(e,t,r){void 0===r&&(r=!1);var d=n.createElement("span");return d.style.display="inline-block",d.style.width="2em",d.innerHTML=" ","dot"===t.leader&&(d.style.borderBottom="1pt dotted"),r&&t.pos&&("start"===t.type||"left"==t.type)&&(d.style.width=t.pos),d}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderPict.js*/
- amis.define("adb189c",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.renderPict=function(e,r){if(r.src){var t=document.createElement("img");return t.style.position="relative",t.src=r.src,t}return null}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderRuby.js*/
- amis.define("84d73f6",(function(e,r,n,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),l=e("8934861"),d=e("2f6a93d");r.renderRuby=function(e,r){var n,a,i,f,u=l.createElement("ruby");if(r.rubyBase){try{for(var c=t.__values(r.rubyBase.children),o=c.next();!o.done;o=c.next()){var p=o.value;u.appendChild(d.default(e,p))}}catch(e){n={error:e}}finally{try{o&&!o.done&&(a=c.return)&&a.call(c)}finally{if(n)throw n.error}}if(r.rt){var v=l.createElement("rp");v.innerText="(",u.appendChild(v);var y=l.createElement("rt");try{for(var h=t.__values(r.rt.children),s=h.next();!s.done;s=h.next()){p=s.value;y.appendChild(d.default(e,p))}}catch(e){i={error:e}}finally{try{s&&!s.done&&(f=h.return)&&f.call(h)}finally{if(i)throw i.error}}u.appendChild(y);var b=l.createElement("rp");b.innerText=")",u.appendChild(b)}}return u}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderHyperLink.js*/
- amis.define("23d147c",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),l=e("8934861"),i=e("ede7588"),o=e("2f6a93d");r.renderHyperLink=function(e,r,t){var a,f,d=l.createElement("a");if(r.relation){var c=r.relation;c&&"External"===c.targetMode&&(d.href=c.target,d.target="_blank")}r.anchor&&(d.href="#"+r.anchor),r.tooltip&&(d.title=r.tooltip);try{for(var u=n.__values(r.children),v=u.next();!v.done;v=u.next()){var h=v.value;if(h instanceof i.Run){var p=o.default(e,h,t);l.appendChild(d,p)}}}catch(e){a={error:e}}finally{try{v&&!v.done&&(f=u.return)&&f.call(u)}finally{if(a)throw a.error}}return d}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderBookmark.js*/
- amis.define("2feda74",(function(e,r,n,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("8934861");r.renderBookmarkStart=function(e,r){var n=r.name;if(n){var a=t.createElement("a");return a.name=n,a.id=n,a}return null}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderInlineText.js*/
- amis.define("cd44511",(function(e,r,a,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var d=e("68b98b9"),t=e("8934861"),i=e("ede7588"),f=e("84c394d"),l=e("ab3f86f"),o=e("2f6a93d"),c=e("23d147c"),u=e("2feda74");r.default=function(e,r,a){var n,s;try{for(var p=d.__values(r.children),v=p.next();!v.done;v=p.next()){var y=v.value;if(y instanceof i.Run)t.appendChild(a,o.default(e,y));else if(y instanceof f.BookmarkStart)t.appendChild(a,u.renderBookmarkStart(e,y));else if(y instanceof l.Hyperlink){var h=c.renderHyperLink(e,y);t.appendChild(a,h)}}}catch(e){n={error:e}}finally{try{v&&!v.done&&(s=p.return)&&s.call(p)}finally{if(n)throw n.error}}}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderInstrText.js*/
- amis.define("2d845ff",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),i=e("8934861"),l=e("cd44511");r.renderInstrText=function(e,r){var t,n,f,d=r.text,o=i.createElement("span"),s=null===(f=e.currentParagraph)||void 0===f?void 0:f.fldSimples;if(s)try{for(var u=a.__values(s),c=u.next();!c.done;c=u.next()){var v=c.value;if(v.instr===d.trim()||d.startsWith(v.instr+" ")){l.default(e,v.inlineText,o);break}}}catch(e){t={error:e}}finally{try{c&&!c.done&&(n=u.return)&&n.call(u)}finally{if(t)throw t.error}}return o}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderSym.js*/
- amis.define("537e9ed",(function(e,n,t,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=e("8934861");n.renderSym=function(e,n){var t=a.createElement("span");return t.style.fontFamily=n.font,t.innerHTML="&#x".concat(n.char,";"),t}}));
- ;/*!node_modules/office-viewer/lib/util/autoSpace.js*/
- amis.define("c6a28aa",(function(t,e,n,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var u=/\p{Punctuation}/u,a=/\p{Separator}/u,i=/\p{Script=Han}|\p{Script=Katakana}|\p{Script=Hiragana}|\p{Script=Hangul}/u;e.cjkspace=function(t){var e,n,r=t.filter((function(t){return void 0!==t&&""!==t}));return n=function(t,e){return function(t,e){return i.test(t)?!(u.test(e)||a.test(e)||i.test(e)):i.test(e)&&!u.test(t)&&!a.test(t)}(t,e)?" ":""},(e=r).reduce((function(t,r,u){return t+(0!==u?n(r,e[u-1]):"")+r}),"")}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderSoftHyphen.js*/
- amis.define("ed671e7",(function(e,n,r,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var i=e("8934861");n.renderSoftHyphen=function(){var e=i.createElement("span");return e.innerHTML="­",e}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderNoBreakHyphen.js*/
- amis.define("d8787a4",(function(e,n,r,a){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var t=e("8934861");n.renderNoBreakHyphen=function(){var e=t.createElement("span");return e.innerHTML="–",e}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderSeparator.js*/
- amis.define("743362d",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=e("8934861");r.renderSeparator=function(){var e=o.createElement("hr");return e.style.borderTop="1pt solid #bbb",e}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderRun.js*/
- amis.define("2f6a93d",(function(e,n,r,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=e("68b98b9"),d=e("6d1c1ec"),i=e("8934861"),l=e("ede7588"),o=e("b075e78"),p=e("6a1f992"),c=e("4504cb7"),s=e("0022f23"),f=e("4783810"),v=e("4f5db42"),h=e("adb189c"),u=e("1646d31"),y=e("325a613"),b=e("84d73f6"),x=e("a93b8e7"),C=e("2d845ff"),S=e("d77aa24"),T=e("537e9ed"),g=e("c6a28aa"),m=e("ed671e7"),H=e("45184db"),k=e("a749889"),w=e("d8787a4"),P=e("f0c012d"),B=e("743362d"),E="variable";function _(e,n,r,t){var a;if(-1===r.indexOf("{{")){var d=void 0;d=(null===(a=null==t?void 0:t.properties)||void 0===a?void 0:a.autoSpace)?g.cjkspace(r.split("")):r,e.textContent=d}else e.dataset.originText=r,e.classList.add(E),e.textContent=n.replaceText(r);var i=e.innerHTML.split(" ").join(" ");e.innerHTML=i}n.default=function(e,n,r,t,g){var E,j,L,M,D=i.createElement("span");if(e.addClass(D,"r"),s.setElementStyle(e,D,n.properties),null===(L=n.properties)||void 0===L?void 0:L.rStyle){var I=e.getStyle(n.properties.rStyle);(null===(M=null==I?void 0:I.rPr)||void 0===M?void 0:M.cssStyle)&&i.applyStyle(D,I.rPr.cssStyle)}if(1===n.children.length&&n.children[0]instanceof l.Text)_(D,e,n.children[0].text,r);else try{for(var N=a.__values(n.children),O=N.next();!O.done;O=N.next()){var R=O.value;if(R instanceof l.Text){var q=i.createElement("span");_(q,e,R.text,r),i.appendChild(D,q)}else if(R instanceof o.Break){var A=d.renderBr(e,R);i.appendChild(D,A)}else R instanceof p.Drawing?i.appendChild(D,c.renderDrawing(e,R,g)):R instanceof f.Tab?i.appendChild(D,v.renderTab(e,R)):R instanceof u.Pict?i.appendChild(D,h.renderPict(e,R)):R instanceof y.Ruby?i.appendChild(D,b.renderRuby(e,R)):R instanceof x.InstrText?i.appendChild(D,C.renderInstrText(e,R)):R instanceof S.Sym?i.appendChild(D,T.renderSym(e,R)):R instanceof H.SoftHyphen?i.appendChild(D,m.renderSoftHyphen()):R instanceof k.NoBreakHyphen?i.appendChild(D,w.renderNoBreakHyphen()):R instanceof P.Separator?i.appendChild(D,B.renderSeparator()):console.warn("unknown child",R)}}catch(e){E={error:e}}finally{try{O&&!O.done&&(j=N.return)&&j.call(N)}finally{if(E)throw E.error}}return D},n.updateVariableText=function(e){for(var n=e.rootElement.querySelectorAll(".".concat(E)),r=0;r<n.length;r++){var t=n[r],a=t.dataset.originText||"";t.textContent=e.replaceText(a)}}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderNumbering.js*/
- amis.define("5cc94bd",(function(e,r,n,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),l=e("8934861"),u=e("0022f23");function s(e){var r={M:1e3,CM:900,D:500,CD:400,C:100,XC:90,L:50,XL:40,X:10,IX:9,V:5,IV:4,I:1},n="";for(var t in r)for(;e>=r[t];)n+=t,e-=r[t];return n}function i(e,r){switch(e){case"decimal":default:return r.toString();case"lowerLetter":return String.fromCharCode(96+r);case"upperLetter":return String.fromCharCode(64+r);case"lowerRoman":return s(r).toLowerCase();case"upperRoman":return s(r).toUpperCase();case"bullet":return"•"}}r.renderNumbering=function(e,r,n){var t=r.numbering,s=n.numId;if(!s)return console.warn("renderNumbering: numId is empty"),null;if(!t)return console.warn("renderNumbering: numbering is empty"),null;var o=t.nums[s];if(!o)return console.warn("renderNumbering: num is empty"),null;var m=t.abstractNums[o.abstractNumId].lvls;o.lvlOverride&&(m=a.__assign(a.__assign({},m),o.lvlOverride.lvls));var f=m[n.ilvl];if(!f)return console.warn("renderNumbering: lvl is empty"),null;var c=n.ilvl,v=t.numData[s];if(v[c])for(var d in v[c]+=1,v)parseInt(d)>parseInt(c)&&(v[d]=0);else v[c]=f.start;for(var p=l.createElement("span"),b=f.lvlText,g=parseInt(c),C=[],I=0;I<=g;I++){var L=v[I];if(L){var w=i(m[I].numFmt,L);f.isLgl&&(w=String(L)),C.push(w)}}for(I=0;I<C.length;I++){var S=C[I];b=b.replace("%".concat(I+1),S)}if(u.setElementStyle(r,e,f.pPr),u.setElementStyle(r,p,f.rPr),"bullet"!==f.numFmt||r.renderOptions.bulletUseFont)p.innerText=b;else{var y="•",N=b.charCodeAt(0).toString(16).padStart(4,"0");"f06e"===N?y="■":"f075"===N?y="◆":"f0d8"===N&&(y="►"),p.innerHTML=y}return"space"===f.suff?p.innerHTML+=" ":"tab"===f.suff&&(p.innerHTML+=" "),p}}));
- ;/*!node_modules/office-viewer/lib/util/xmlchars/xml/1.0/ed5.js*/
- amis.define("77de7e7",(function(e,n,t,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0});
- /**
- * Character classes and associated utilities for the 5th edition of XML 1.0.
- *
- * @author Louis-Dominique Dubeau
- * @license MIT
- * @copyright Louis-Dominique Dubeau
- */
- var a=":A-Z_a-zÀ-ÖØ-öø-˿Ͱ-ͽͿ-⁰-Ⰰ-、-豈-﷏ﷰ-�𐀀-",c="-".concat(a,".0-9·̀-ͯ‿-⁀"),i=new RegExp("^[".concat(a,"][").concat(c,"]*$"),"u"),u=[32,10,13,9];function o(e){return e>=65&&e<=90||e>=97&&e<=122||58===e||95===e||8204===e||8205===e||e>=192&&e<=214||e>=216&&e<=246||e>=248&&e<=767||e>=880&&e<=893||e>=895&&e<=8191||e>=8304&&e<=8591||e>=11264&&e<=12271||e>=12289&&e<=55295||e>=63744&&e<=64975||e>=65008&&e<=65533||e>=65536&&e<=983039}n.NAME_CHAR=c,n.NAME_RE=i,n.NAME_START_CHAR=a,n.S_LIST=u,n.isChar=function(e){return e>=32&&e<=55295||10===e||13===e||9===e||e>=57344&&e<=65533||e>=65536&&e<=1114111},n.isNameChar=function(e){return o(e)||e>=48&&e<=57||45===e||46===e||183===e||e>=768&&e<=879||e>=8255&&e<=8256},n.isNameStartChar=o,n.isS=function(e){return 32===e||10===e||13===e||9===e}}));
- ;/*!node_modules/office-viewer/lib/util/xmlchars/xml/1.1/ed2.js*/
- amis.define("5742213",(function(e,i,n,t){"use strict";Object.defineProperty(i,"__esModule",{value:!0}),i.isChar=
- /**
- * Character classes and associated utilities for the 2nd edition of XML 1.1.
- *
- * @author Louis-Dominique Dubeau
- * @license MIT
- * @copyright Louis-Dominique Dubeau
- */
- function(e){return e>=1&&e<=55295||e>=57344&&e<=65533||e>=65536&&e<=1114111}}));
- ;/*!node_modules/office-viewer/lib/util/xmlchars/xmlns/1.0/ed3.js*/
- amis.define("cda97b5",(function(e,n,t,a){"use strict";Object.defineProperty(n,"__esModule",{value:!0});
- /**
- * Character class utilities for XML NS 1.0 edition 3.
- *
- * @author Louis-Dominique Dubeau
- * @license MIT
- * @copyright Louis-Dominique Dubeau
- */
- var c="A-Z_a-zÀ-ÖØ-öø-˿Ͱ-ͽͿ--⁰-Ⰰ-、-豈-﷏ﷰ-�𐀀-",r="-".concat(c,".0-9·̀-ͯ‿-⁀"),N=new RegExp("^[".concat(c,"][").concat(r,"]*$"),"u");function _(e){return e>=65&&e<=90||95===e||e>=97&&e<=122||e>=192&&e<=214||e>=216&&e<=246||e>=248&&e<=767||e>=880&&e<=893||e>=895&&e<=8191||e>=8204&&e<=8205||e>=8304&&e<=8591||e>=11264&&e<=12271||e>=12289&&e<=55295||e>=63744&&e<=64975||e>=65008&&e<=65533||e>=65536&&e<=983039}n.NC_NAME_CHAR=r,n.NC_NAME_RE=N,n.NC_NAME_START_CHAR=c,n.isNCNameChar=function(e){return _(e)||45===e||46===e||e>=48&&e<=57||183===e||e>=768&&e<=879||e>=8255&&e<=8256},n.isNCNameStartChar=_}));
- ;/*!node_modules/office-viewer/lib/util/saxes.js*/
- amis.define("67e60d5",(function(t,e,i,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=t("68b98b9"),o=t("77de7e7"),r=t("5742213"),n=t("cda97b5"),h=o.isS,l=o.isChar,c=o.isNameStartChar,p=o.isNameChar,d=o.S_LIST,u=o.NAME_RE,f=r.isChar,m=n.isNCNameStartChar,g=n.isNCNameChar,v=n.NC_NAME_RE,x="http://www.w3.org/XML/1998/namespace",y="http://www.w3.org/2000/xmlns/",b={__proto__:null,xml:x,xmlns:y},C={__proto__:null,amp:"&",gt:">",lt:"<",quot:'"',apos:"'"},k=-1,T=-2,w=13,D=33,S=10,N=60,A=61,P=62,_=63,L=93,E=function(t){return 34===t||39===t},I=[34,39],M=a.__spreadArray(a.__spreadArray([],a.__read(I),!1),[91,P],!1),R=a.__spreadArray(a.__spreadArray([],a.__read(I),!1),[N,L],!1),X=a.__spreadArray([A,_],a.__read(d),!1),H=a.__spreadArray(a.__spreadArray([],a.__read(d),!1),[P,38,N],!1);function O(t,e,i){switch(e){case"xml":i!==x&&t.fail("xml prefix must be bound to ".concat(x,"."));break;case"xmlns":i!==y&&t.fail("xmlns prefix must be bound to ".concat(y,"."))}switch(i){case y:t.fail(""===e?"the default namespace may not be set to ".concat(i,"."):'may not assign a prefix (even "xmlns") to the URI '.concat(y,"."));break;case x:switch(e){case"xml":break;case"":t.fail("the default namespace may not be set to ".concat(i,"."));break;default:t.fail("may not assign the xml namespace to another prefix.")}}}var B=function(t){return v.test(t)},q=function(t){return u.test(t)},W={xmldecl:"xmldeclHandler",text:"textHandler",processinginstruction:"piHandler",doctype:"doctypeHandler",comment:"commentHandler",opentagstart:"openTagStartHandler",attribute:"attributeHandler",opentag:"openTagHandler",closetag:"closeTagHandler",cdata:"cdataHandler",error:"errorHandler",end:"endHandler",ready:"readyHandler"},V=function(){function t(t){this.opt=null!=t?t:{},this.fragmentOpt=!!this.opt.fragment;var e=this.xmlnsOpt=!!this.opt.xmlns;if(this.trackPosition=!1!==this.opt.position,this.fileName=this.opt.fileName,e){this.nameStartCheck=m,this.nameCheck=g,this.isName=B,this.processAttribs=this.processAttribsNS,this.pushAttrib=this.pushAttribNS,this.ns=a.__assign({__proto__:null},b);var i=this.opt.additionalNamespaces;null!=i&&(!function(t,e){var i,s;try{for(var o=a.__values(Object.keys(e)),r=o.next();!r.done;r=o.next()){var n=r.value;O(t,n,e[n])}}catch(t){i={error:t}}finally{try{r&&!r.done&&(s=o.return)&&s.call(o)}finally{if(i)throw i.error}}}(this,i),Object.assign(this.ns,i))}else this.nameStartCheck=c,this.nameCheck=p,this.isName=q,this.processAttribs=this.processAttribsPlain,this.pushAttrib=this.pushAttribPlain;this.stateTable=[this.sBegin,this.sBeginWhitespace,this.sDoctype,this.sDoctypeQuote,this.sDTD,this.sDTDQuoted,this.sDTDOpenWaka,this.sDTDOpenWakaBang,this.sDTDComment,this.sDTDCommentEnding,this.sDTDCommentEnded,this.sDTDPI,this.sDTDPIEnding,this.sText,this.sEntity,this.sOpenWaka,this.sOpenWakaBang,this.sComment,this.sCommentEnding,this.sCommentEnded,this.sCData,this.sCDataEnding,this.sCDataEnding2,this.sPIFirstChar,this.sPIRest,this.sPIBody,this.sPIEnding,this.sXMLDeclNameStart,this.sXMLDeclName,this.sXMLDeclEq,this.sXMLDeclValueStart,this.sXMLDeclValue,this.sXMLDeclSeparator,this.sXMLDeclEnding,this.sOpenTag,this.sOpenTagSlash,this.sAttrib,this.sAttribName,this.sAttribNameSawWhite,this.sAttribValue,this.sAttribValueQuoted,this.sAttribValueClosed,this.sAttribValueUnquoted,this.sCloseTag,this.sCloseTagSawWhite],this._init()}return Object.defineProperty(t.prototype,"closed",{get:function(){return this._closed},enumerable:!1,configurable:!0}),t.prototype._init=function(){var t;this.openWakaBang="",this.text="",this.name="",this.piTarget="",this.entity="",this.q=null,this.tags=[],this.tag=null,this.topNS=null,this.chunk="",this.chunkPosition=0,this.i=0,this.prevI=0,this.carriedFromPrevious=void 0,this.forbiddenState=0,this.attribList=[];var e=this.fragmentOpt;this.state=e?w:0,this.reportedTextBeforeRoot=this.reportedTextAfterRoot=this.closedRoot=this.sawRoot=e,this.xmlDeclPossible=!e,this.xmlDeclExpects=["version"],this.entityReturnState=void 0;var i=this.opt.defaultXMLVersion;if(void 0===i){if(!0===this.opt.forceXMLVersion)throw new Error("forceXMLVersion set but defaultXMLVersion is not set");i="1.0"}this.setXMLVersion(i),this.positionAtNewLine=0,this.doctype=!1,this._closed=!1,this.xmlDecl={version:void 0,encoding:void 0,standalone:void 0},this.line=1,this.column=0,this.ENTITIES=Object.create(C),null===(t=this.readyHandler)||void 0===t||t.call(this)},Object.defineProperty(t.prototype,"position",{get:function(){return this.chunkPosition+this.i},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"columnIndex",{get:function(){return this.position-this.positionAtNewLine},enumerable:!1,configurable:!0}),t.prototype.on=function(t,e){this[W[t]]=e},t.prototype.off=function(t){this[W[t]]=void 0},t.prototype.makeError=function(t){var e,i=null!==(e=this.fileName)&&void 0!==e?e:"";return this.trackPosition&&(i.length>0&&(i+=":"),i+="".concat(this.line,":").concat(this.column)),i.length>0&&(i+=": "),new Error(i+t)},t.prototype.fail=function(t){var e=this.makeError(t),i=this.errorHandler;if(void 0===i)throw e;return i(e),this},t.prototype.write=function(t){if(this.closed)return this.fail("cannot write after close; assign an onready handler.");var e=!1;null===t?(e=!0,t=""):"object"==typeof t&&(t=t.toString()),void 0!==this.carriedFromPrevious&&(t="".concat(this.carriedFromPrevious).concat(t),this.carriedFromPrevious=void 0);var i=t.length,s=t.charCodeAt(i-1);!e&&(13===s||s>=55296&&s<=56319)&&(this.carriedFromPrevious=t[i-1],i--,t=t.slice(0,i));var a=this.stateTable;for(this.chunk=t,this.i=0;this.i<i;)a[this.state].call(this);return this.chunkPosition+=i,e?this.end():this},t.prototype.close=function(){return this.write(null)},t.prototype.getCode10=function(){var t=this.chunk,e=this.i;if(this.prevI=e,this.i=e+1,e>=t.length)return k;var i=t.charCodeAt(e);if(this.column++,i<55296){if(i>=32||9===i)return i;switch(i){case S:return this.line++,this.column=0,this.positionAtNewLine=this.position,S;case 13:return t.charCodeAt(e+1)===S&&(this.i=e+2),this.line++,this.column=0,this.positionAtNewLine=this.position,T;default:return this.fail("disallowed character."),i}}if(i>56319)return i>=57344&&i<=65533||this.fail("disallowed character."),i;var s=65536+1024*(i-55296)+(t.charCodeAt(e+1)-56320);return this.i=e+2,s>1114111&&this.fail("disallowed character."),s},t.prototype.getCode11=function(){var t=this.chunk,e=this.i;if(this.prevI=e,this.i=e+1,e>=t.length)return k;var i=t.charCodeAt(e);if(this.column++,i<55296){if(i>31&&i<127||i>159&&8232!==i||9===i)return i;switch(i){case S:return this.line++,this.column=0,this.positionAtNewLine=this.position,S;case 13:var s=t.charCodeAt(e+1);s!==S&&133!==s||(this.i=e+2);case 133:case 8232:return this.line++,this.column=0,this.positionAtNewLine=this.position,T;default:return this.fail("disallowed character."),i}}if(i>56319)return i>=57344&&i<=65533||this.fail("disallowed character."),i;var a=65536+1024*(i-55296)+(t.charCodeAt(e+1)-56320);return this.i=e+2,a>1114111&&this.fail("disallowed character."),a},t.prototype.getCodeNorm=function(){var t=this.getCode();return t===T?S:t},t.prototype.unget=function(){this.i=this.prevI,this.column--},t.prototype.captureTo=function(t){for(var e=this.i,i=this.chunk;;){var s=this.getCode(),a=s===T,o=a?S:s;if(o===k||t.includes(o))return this.text+=i.slice(e,this.prevI),o;a&&(this.text+="".concat(i.slice(e,this.prevI),"\n"),e=this.i)}},t.prototype.captureToChar=function(t){for(var e=this.i,i=this.chunk;;){var s=this.getCode();switch(s){case T:this.text+="".concat(i.slice(e,this.prevI),"\n"),e=this.i,s=S;break;case k:return this.text+=i.slice(e),!1}if(s===t)return this.text+=i.slice(e,this.prevI),!0}},t.prototype.captureNameChars=function(){for(var t=this.chunk,e=this.i;;){var i=this.getCode();if(i===k)return this.name+=t.slice(e),k;if(!p(i))return this.name+=t.slice(e,this.prevI),i===T?S:i}},t.prototype.skipSpaces=function(){for(;;){var t=this.getCodeNorm();if(t===k||!h(t))return t}},t.prototype.setXMLVersion=function(t){this.currentXMLVersion=t,"1.0"===t?(this.isChar=l,this.getCode=this.getCode10):(this.isChar=f,this.getCode=this.getCode11)},t.prototype.sBegin=function(){65279===this.chunk.charCodeAt(0)&&(this.i++,this.column++),this.state=1},t.prototype.sBeginWhitespace=function(){var t=this.i,e=this.skipSpaces();switch(this.prevI!==t&&(this.xmlDeclPossible=!1),e){case N:if(this.state=15,0!==this.text.length)throw new Error("no-empty text at start");break;case k:break;default:this.unget(),this.state=w,this.xmlDeclPossible=!1}},t.prototype.sDoctype=function(){var t,e=this.captureTo(M);switch(e){case P:null===(t=this.doctypeHandler)||void 0===t||t.call(this,this.text),this.text="",this.state=w,this.doctype=!0;break;case k:break;default:this.text+=String.fromCodePoint(e),91===e?this.state=4:E(e)&&(this.state=3,this.q=e)}},t.prototype.sDoctypeQuote=function(){var t=this.q;this.captureToChar(t)&&(this.text+=String.fromCodePoint(t),this.q=null,this.state=2)},t.prototype.sDTD=function(){var t=this.captureTo(R);t!==k&&(this.text+=String.fromCodePoint(t),t===L?this.state=2:t===N?this.state=6:E(t)&&(this.state=5,this.q=t))},t.prototype.sDTDQuoted=function(){var t=this.q;this.captureToChar(t)&&(this.text+=String.fromCodePoint(t),this.state=4,this.q=null)},t.prototype.sDTDOpenWaka=function(){var t=this.getCodeNorm();switch(this.text+=String.fromCodePoint(t),t){case 33:this.state=7,this.openWakaBang="";break;case _:this.state=11;break;default:this.state=4}},t.prototype.sDTDOpenWakaBang=function(){var t=String.fromCodePoint(this.getCodeNorm()),e=this.openWakaBang+=t;this.text+=t,"-"!==e&&(this.state="--"===e?8:4,this.openWakaBang="")},t.prototype.sDTDComment=function(){this.captureToChar(45)&&(this.text+="-",this.state=9)},t.prototype.sDTDCommentEnding=function(){var t=this.getCodeNorm();this.text+=String.fromCodePoint(t),this.state=45===t?10:8},t.prototype.sDTDCommentEnded=function(){var t=this.getCodeNorm();this.text+=String.fromCodePoint(t),t===P?this.state=4:(this.fail("malformed comment."),this.state=8)},t.prototype.sDTDPI=function(){this.captureToChar(_)&&(this.text+="?",this.state=12)},t.prototype.sDTDPIEnding=function(){var t=this.getCodeNorm();this.text+=String.fromCodePoint(t),t===P&&(this.state=4)},t.prototype.sText=function(){0!==this.tags.length?this.handleTextInRoot():this.handleTextOutsideRoot()},t.prototype.sEntity=function(){var t=this.i,e=this.chunk;t:for(;;)switch(this.getCode()){case T:this.entity+="".concat(e.slice(t,this.prevI),"\n"),t=this.i;break;case 59:var i=this.entityReturnState,s=this.entity+e.slice(t,this.prevI);this.state=i;var a=void 0;""===s?(this.fail("empty entity name."),a="&;"):(a=this.parseEntity(s),this.entity=""),i===w&&void 0===this.textHandler||(this.text+=a);break t;case k:this.entity+=e.slice(t);break t}},t.prototype.sOpenWaka=function(){var t=this.getCode();if(c(t))this.state=34,this.unget(),this.xmlDeclPossible=!1;else switch(t){case 47:this.state=43,this.xmlDeclPossible=!1;break;case 33:this.state=16,this.openWakaBang="",this.xmlDeclPossible=!1;break;case _:this.state=23;break;default:this.fail("disallowed character in tag name"),this.state=w,this.xmlDeclPossible=!1}},t.prototype.sOpenWakaBang=function(){switch(this.openWakaBang+=String.fromCodePoint(this.getCodeNorm()),this.openWakaBang){case"[CDATA[":this.sawRoot||this.reportedTextBeforeRoot||(this.fail("text data outside of root node."),this.reportedTextBeforeRoot=!0),this.closedRoot&&!this.reportedTextAfterRoot&&(this.fail("text data outside of root node."),this.reportedTextAfterRoot=!0),this.state=20,this.openWakaBang="";break;case"--":this.state=17,this.openWakaBang="";break;case"DOCTYPE":this.state=2,(this.doctype||this.sawRoot)&&this.fail("inappropriately located doctype declaration."),this.openWakaBang="";break;default:this.openWakaBang.length>=7&&this.fail("incorrect syntax.")}},t.prototype.sComment=function(){this.captureToChar(45)&&(this.state=18)},t.prototype.sCommentEnding=function(){var t,e=this.getCodeNorm();45===e?(this.state=19,null===(t=this.commentHandler)||void 0===t||t.call(this,this.text),this.text=""):(this.text+="-".concat(String.fromCodePoint(e)),this.state=17)},t.prototype.sCommentEnded=function(){var t=this.getCodeNorm();t!==P?(this.fail("malformed comment."),this.text+="--".concat(String.fromCodePoint(t)),this.state=17):this.state=w},t.prototype.sCData=function(){this.captureToChar(L)&&(this.state=21)},t.prototype.sCDataEnding=function(){var t=this.getCodeNorm();t===L?this.state=22:(this.text+="]".concat(String.fromCodePoint(t)),this.state=20)},t.prototype.sCDataEnding2=function(){var t,e=this.getCodeNorm();switch(e){case P:null===(t=this.cdataHandler)||void 0===t||t.call(this,this.text),this.text="",this.state=w;break;case L:this.text+="]";break;default:this.text+="]]".concat(String.fromCodePoint(e)),this.state=20}},t.prototype.sPIFirstChar=function(){var t=this.getCodeNorm();this.nameStartCheck(t)?(this.piTarget+=String.fromCodePoint(t),this.state=24):t===_||h(t)?(this.fail("processing instruction without a target."),this.state=t===_?26:25):(this.fail("disallowed character in processing instruction name."),this.piTarget+=String.fromCodePoint(t),this.state=24)},t.prototype.sPIRest=function(){for(var t=this.chunk,e=this.i;;){var i=this.getCodeNorm();if(i===k)return void(this.piTarget+=t.slice(e));if(!this.nameCheck(i)){this.piTarget+=t.slice(e,this.prevI);var s=i===_;s||h(i)?"xml"===this.piTarget?(this.xmlDeclPossible||this.fail("an XML declaration must be at the start of the document."),this.state=s?D:27):this.state=s?26:25:(this.fail("disallowed character in processing instruction name."),this.piTarget+=String.fromCodePoint(i));break}}},t.prototype.sPIBody=function(){if(0===this.text.length){var t=this.getCodeNorm();t===_?this.state=26:h(t)||(this.text=String.fromCodePoint(t))}else this.captureToChar(_)&&(this.state=26)},t.prototype.sPIEnding=function(){var t,e=this.getCodeNorm();if(e===P){var i=this.piTarget;"xml"===i.toLowerCase()&&this.fail("the XML declaration must appear at the start of the document."),null===(t=this.piHandler)||void 0===t||t.call(this,{target:i,body:this.text}),this.piTarget=this.text="",this.state=w}else e===_?this.text+="?":(this.text+="?".concat(String.fromCodePoint(e)),this.state=25);this.xmlDeclPossible=!1},t.prototype.sXMLDeclNameStart=function(){var t=this.skipSpaces();t!==_?t!==k&&(this.state=28,this.name=String.fromCodePoint(t)):this.state=D},t.prototype.sXMLDeclName=function(){var t=this.captureTo(X);if(t===_)return this.state=D,this.name+=this.text,this.text="",void this.fail("XML declaration is incomplete.");if(h(t)||t===A){if(this.name+=this.text,this.text="",!this.xmlDeclExpects.includes(this.name))switch(this.name.length){case 0:this.fail("did not expect any more name/value pairs.");break;case 1:this.fail("expected the name ".concat(this.xmlDeclExpects[0],"."));break;default:this.fail("expected one of ".concat(this.xmlDeclExpects.join(", ")))}this.state=t===A?30:29}},t.prototype.sXMLDeclEq=function(){var t=this.getCodeNorm();if(t===_)return this.state=D,void this.fail("XML declaration is incomplete.");h(t)||(t!==A&&this.fail("value required."),this.state=30)},t.prototype.sXMLDeclValueStart=function(){var t=this.getCodeNorm();if(t===_)return this.state=D,void this.fail("XML declaration is incomplete.");h(t)||(E(t)?this.q=t:(this.fail("value must be quoted."),this.q=32),this.state=31)},t.prototype.sXMLDeclValue=function(){var t=this.captureTo([this.q,_]);if(t===_)return this.state=D,this.text="",void this.fail("XML declaration is incomplete.");if(t!==k){var e=this.text;switch(this.text="",this.name){case"version":this.xmlDeclExpects=["encoding","standalone"];var i=e;this.xmlDecl.version=i,/^1\.[0-9]+$/.test(i)?this.opt.forceXMLVersion||this.setXMLVersion(i):this.fail("version number must match /^1\\.[0-9]+$/.");break;case"encoding":/^[A-Za-z][A-Za-z0-9._-]*$/.test(e)||this.fail("encoding value must match /^[A-Za-z0-9][A-Za-z0-9._-]*$/."),this.xmlDeclExpects=["standalone"],this.xmlDecl.encoding=e;break;case"standalone":"yes"!==e&&"no"!==e&&this.fail('standalone value must match "yes" or "no".'),this.xmlDeclExpects=[],this.xmlDecl.standalone=e}this.name="",this.state=32}},t.prototype.sXMLDeclSeparator=function(){var t=this.getCodeNorm();t!==_?(h(t)||(this.fail("whitespace required."),this.unget()),this.state=27):this.state=D},t.prototype.sXMLDeclEnding=function(){var t;this.getCodeNorm()===P?("xml"!==this.piTarget?this.fail("processing instructions are not allowed before root."):"version"!==this.name&&this.xmlDeclExpects.includes("version")&&this.fail("XML declaration must contain a version."),null===(t=this.xmldeclHandler)||void 0===t||t.call(this,this.xmlDecl),this.name="",this.piTarget=this.text="",this.state=w):this.fail("The character ? is disallowed anywhere in XML declarations."),this.xmlDeclPossible=!1},t.prototype.sOpenTag=function(){var t,e=this.captureNameChars();if(e!==k){var i=this.tag={name:this.name,attributes:Object.create(null)};switch(this.name="",this.xmlnsOpt&&(this.topNS=i.ns=Object.create(null)),null===(t=this.openTagStartHandler)||void 0===t||t.call(this,i),this.sawRoot=!0,!this.fragmentOpt&&this.closedRoot&&this.fail("documents may contain only one root."),e){case P:this.openTag();break;case 47:this.state=35;break;default:h(e)||this.fail("disallowed character in tag name."),this.state=36}}},t.prototype.sOpenTagSlash=function(){this.getCode()===P?this.openSelfClosingTag():(this.fail("forward-slash in opening tag not followed by >."),this.state=36)},t.prototype.sAttrib=function(){var t=this.skipSpaces();t!==k&&(c(t)?(this.unget(),this.state=37):t===P?this.openTag():47===t?this.state=35:this.fail("disallowed character in attribute name."))},t.prototype.sAttribName=function(){var t=this.captureNameChars();t===A?this.state=39:h(t)?this.state=38:t===P?(this.fail("attribute without value."),this.pushAttrib(this.name,this.name),this.name=this.text="",this.openTag()):t!==k&&this.fail("disallowed character in attribute name.")},t.prototype.sAttribNameSawWhite=function(){var t=this.skipSpaces();switch(t){case k:return;case A:this.state=39;break;default:this.fail("attribute without value."),this.text="",this.name="",t===P?this.openTag():c(t)?(this.unget(),this.state=37):(this.fail("disallowed character in attribute name."),this.state=36)}},t.prototype.sAttribValue=function(){var t=this.getCodeNorm();E(t)?(this.q=t,this.state=40):h(t)||(this.fail("unquoted attribute value."),this.state=42,this.unget())},t.prototype.sAttribValueQuoted=function(){for(var t=this.q,e=this.chunk,i=this.i;;)switch(this.getCode()){case t:return this.pushAttrib(this.name,this.text+e.slice(i,this.prevI)),this.name=this.text="",this.q=null,void(this.state=41);case 38:return this.text+=e.slice(i,this.prevI),this.state=14,void(this.entityReturnState=40);case S:case T:case 9:this.text+="".concat(e.slice(i,this.prevI)," "),i=this.i;break;case N:return this.text+=e.slice(i,this.prevI),void this.fail("disallowed character.");case k:return void(this.text+=e.slice(i))}},t.prototype.sAttribValueClosed=function(){var t=this.getCodeNorm();h(t)?this.state=36:t===P?this.openTag():47===t?this.state=35:c(t)?(this.fail("no whitespace between attributes."),this.unget(),this.state=37):this.fail("disallowed character in attribute name.")},t.prototype.sAttribValueUnquoted=function(){var t=this.captureTo(H);switch(t){case 38:this.state=14,this.entityReturnState=42;break;case N:this.fail("disallowed character.");break;case k:break;default:this.text.includes("]]>")&&this.fail('the string "]]>" is disallowed in char data.'),this.pushAttrib(this.name,this.text),this.name=this.text="",t===P?this.openTag():this.state=36}},t.prototype.sCloseTag=function(){var t=this.captureNameChars();t===P?this.closeTag():h(t)?this.state=44:t!==k&&this.fail("disallowed character in closing tag.")},t.prototype.sCloseTagSawWhite=function(){switch(this.skipSpaces()){case P:this.closeTag();break;case k:break;default:this.fail("disallowed character in closing tag.")}},t.prototype.handleTextInRoot=function(){var t=this.i,e=this.forbiddenState,i=this.chunk,s=this.textHandler;t:for(;;)switch(this.getCode()){case N:if(this.state=15,void 0!==s){var a=this.text,o=i.slice(t,this.prevI);0!==a.length?(s(a+o),this.text=""):0!==o.length&&s(o)}e=0;break t;case 38:this.state=14,this.entityReturnState=w,void 0!==s&&(this.text+=i.slice(t,this.prevI)),e=0;break t;case L:switch(e){case 0:e=1;break;case 1:e=2;break;case 2:break;default:throw new Error("impossible state")}break;case P:2===e&&this.fail('the string "]]>" is disallowed in char data.'),e=0;break;case T:void 0!==s&&(this.text+="".concat(i.slice(t,this.prevI),"\n")),t=this.i,e=0;break;case k:void 0!==s&&(this.text+=i.slice(t));break t;default:e=0}this.forbiddenState=e},t.prototype.handleTextOutsideRoot=function(){var t=this.i,e=this.chunk,i=this.textHandler,s=!1;t:for(;;){var a=this.getCode();switch(a){case N:if(this.state=15,void 0!==i){var o=this.text,r=e.slice(t,this.prevI);0!==o.length?(i(o+r),this.text=""):0!==r.length&&i(r)}break t;case 38:this.state=14,this.entityReturnState=w,void 0!==i&&(this.text+=e.slice(t,this.prevI)),s=!0;break t;case T:void 0!==i&&(this.text+="".concat(e.slice(t,this.prevI),"\n")),t=this.i;break;case k:void 0!==i&&(this.text+=e.slice(t));break t;default:h(a)||(s=!0)}}s&&(this.sawRoot||this.reportedTextBeforeRoot||(this.fail("text data outside of root node."),this.reportedTextBeforeRoot=!0),this.closedRoot&&!this.reportedTextAfterRoot&&(this.fail("text data outside of root node."),this.reportedTextAfterRoot=!0))},t.prototype.pushAttribNS=function(t,e){var i,s=this.qname(t),a=s.prefix,o=s.local,r={name:t,prefix:a,local:o,value:e};if(this.attribList.push(r),null===(i=this.attributeHandler)||void 0===i||i.call(this,r),"xmlns"===a){var n=e.trim();"1.0"===this.currentXMLVersion&&""===n&&this.fail("invalid attempt to undefine prefix in XML 1.0"),this.topNS[o]=n,O(this,o,n)}else if("xmlns"===t){n=e.trim();this.topNS[""]=n,O(this,"",n)}},t.prototype.pushAttribPlain=function(t,e){var i,s={name:t,value:e};this.attribList.push(s),null===(i=this.attributeHandler)||void 0===i||i.call(this,s)},t.prototype.end=function(){var t,e;this.sawRoot||this.fail("document must contain a root element.");for(var i=this.tags;i.length>0;){var s=i.pop();this.fail("unclosed tag: ".concat(s.name))}0!==this.state&&this.state!==w&&this.fail("unexpected end.");var a=this.text;return 0!==a.length&&(null===(t=this.textHandler)||void 0===t||t.call(this,a),this.text=""),this._closed=!0,null===(e=this.endHandler)||void 0===e||e.call(this),this._init(),this},t.prototype.resolve=function(t){var e,i,s=this.topNS[t];if(void 0!==s)return s;for(var a=this.tags,o=a.length-1;o>=0;o--)if(void 0!==(s=a[o].ns[t]))return s;return void 0!==(s=this.ns[t])?s:null===(i=(e=this.opt).resolvePrefix)||void 0===i?void 0:i.call(e,t)},t.prototype.qname=function(t){var e=t.indexOf(":");if(-1===e)return{prefix:"",local:t};var i=t.slice(e+1),s=t.slice(0,e);return(""===s||""===i||i.includes(":"))&&this.fail("malformed name: ".concat(t,".")),{prefix:s,local:i}},t.prototype.processAttribsNS=function(){var t,e,i,s=this.attribList,o=this.tag,r=this.qname(o.name),n=r.prefix,h=r.local;o.prefix=n,o.local=h;var l=o.uri=null!==(i=this.resolve(n))&&void 0!==i?i:"";if(""!==n&&("xmlns"===n&&this.fail('tags may not have "xmlns" as prefix.'),""===l&&(this.fail("unbound namespace prefix: ".concat(JSON.stringify(n),".")),o.uri=n)),0!==s.length){var c=o.attributes,p=new Set;try{for(var d=a.__values(s),u=d.next();!u.done;u=d.next()){var f=u.value,m=f.name,g=(n=f.prefix,h=f.local,l=void 0,void 0);""===n?(l="xmlns"===m?y:"",g=m):(void 0===(l=this.resolve(n))&&(this.fail("unbound namespace prefix: ".concat(JSON.stringify(n),".")),l=n),g="{".concat(l,"}").concat(h)),p.has(g)&&this.fail("duplicate attribute: ".concat(g,".")),p.add(g),f.uri=l,c[m]=f}}catch(e){t={error:e}}finally{try{u&&!u.done&&(e=d.return)&&e.call(d)}finally{if(t)throw t.error}}this.attribList=[]}},t.prototype.processAttribsPlain=function(){var t,e,i=this.attribList,s=this.tag.attributes;try{for(var o=a.__values(i),r=o.next();!r.done;r=o.next()){var n=r.value,h=n.name,l=n.value;void 0!==s[h]&&this.fail("duplicate attribute: ".concat(h,".")),s[h]=l}}catch(e){t={error:e}}finally{try{r&&!r.done&&(e=o.return)&&e.call(o)}finally{if(t)throw t.error}}this.attribList=[]},t.prototype.openTag=function(){var t;this.processAttribs();var e=this.tags,i=this.tag;i.isSelfClosing=!1,null===(t=this.openTagHandler)||void 0===t||t.call(this,i),e.push(i),this.state=w,this.name=""},t.prototype.openSelfClosingTag=function(){var t,e,i;this.processAttribs();var s=this.tags,a=this.tag;a.isSelfClosing=!0,null===(t=this.openTagHandler)||void 0===t||t.call(this,a),null===(e=this.closeTagHandler)||void 0===e||e.call(this,a),null===(this.tag=null!==(i=s[s.length-1])&&void 0!==i?i:null)&&(this.closedRoot=!0),this.state=w,this.name=""},t.prototype.closeTag=function(){var t=this.tags,e=this.name;if(this.state=w,this.name="",""===e)return this.fail("weird empty close tag."),void(this.text+="</>");for(var i=this.closeTagHandler,s=t.length;s-- >0;){var a=this.tag=t.pop();if(this.topNS=a.ns,null==i||i(a),a.name===e)break;this.fail("unexpected close tag.")}0===s?this.closedRoot=!0:s<0&&(this.fail("unmatched closing tag: ".concat(e,".")),this.text+="</".concat(e,">"))},t.prototype.parseEntity=function(t){if("#"!==t[0]){var e=this.ENTITIES[t];return void 0!==e?e:(this.fail(this.isName(t)?"undefined entity.":"disallowed character in entity name."),"&".concat(t,";"))}var i=NaN;return"x"===t[1]&&/^#x[0-9a-f]+$/i.test(t)?i=parseInt(t.slice(2),16):/^#[0-9]+$/.test(t)&&(i=parseInt(t.slice(1),10)),this.isChar(i)?String.fromCodePoint(i):(this.fail("malformed character entity."),"&".concat(t,";"))},t}();e.SaxesParser=V}));
- ;/*!node_modules/office-viewer/lib/util/xml.js*/
- amis.define("554c0f4",(function(n,r,e,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=n("68b98b9"),i=n("67e60d5");r.buildXML=function(n){return(new XMLSerializer).serializeToString(n)},r.getNodeByTagName=function n(r,e,t){var i,a;void 0===t&&(t=!1);var u=r.children||[];try{for(var l=o.__values(u),c=l.next();!c.done;c=l.next()){var f=c.value;if(f.tag===e)return f;if(t){var s=n(f,e,t);if(s)return s}}}catch(n){i={error:n}}finally{try{c&&!c.done&&(a=l.return)&&a.call(l)}finally{if(i)throw i.error}}return null},r.parseXML=function(n){return(new DOMParser).parseFromString(n,"application/xml")},r.xml2json=function(n){return o.__awaiter(this,void 0,void 0,(function(){var r,e;return o.__generator(this,(function(t){return r=new i.SaxesParser,e=[],[2,new Promise((function(t,o){r.on("error",(function(n){console.error(n)})),r.on("text",(function(n){var r=e[e.length-1];r&&(r.text=n)})),r.on("opentag",(function(n){e.push({tag:n.name,attrs:n.attributes,children:[]})})),r.on("closetag",(function(){if(e.length>1){var n=e[e.length-1];e[e.length-2].children.push(n)}1!==e.length&&e.pop()})),r.on("end",(function(){1!==e.length&&o("xml2json error"),t(e[0])})),r.write(n).close()}))]}))}))}}));
- ;/*!node_modules/office-viewer/lib/openxml/math/xsl.js*/
- amis.define("e10d0f1",(function(e,t,n,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var l=e("554c0f4").parseXML('\n<?xml version="1.0" encoding="UTF-8" ?>\n<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:mml="http://www.w3.org/1998/Math/MathML"\n\txmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math">\n <xsl:output method="xml" encoding="UTF-16" />\n\n \x3c!-- %% Global Definitions --\x3e\n\n \x3c!-- Every single unicode character that is recognized by OMML as an operator --\x3e\n <xsl:variable name="sOperators"\n\t\tselect="concat(\n \'¨!"#&()+,-./:\',\n \';<=>?@[\]^_`{\',\n \'|}~¡¦¬¯°±²³´·¹¿\',\n \'×~÷ˇ˘˙˜˝̀́̂̃̄̅̆̇̈̉\',\n \'̊̋̌̍̎̏̐̑̒̓̔̕\',\n \'̡̛̖̗̘̙̜̝̞̟̠̚\',\n \'̢̧̨̣̤̥̦̩̪̫̬̭\',\n \'̴̵̶̷̸̮̯̰̱̲̳̿\',\n \'         ‐‒–\',\n \'—‖†‡•․‥…′″‴‼\',\n \'⁀⁄⁎⁏⁐⁗⁡⁢⁣⁰⁴⁵\',\n \'⁶⁷⁸⁹⁺⁻⁼⁽⁾₀₁₂\',\n \'₃₄₅₆₇₈₉₊₋₌₍₎\',\n \'⃒⃓⃘⃙⃚⃐⃑⃔⃕⃖⃗⃛\',\n \'⃜⃝⃞⃟⃠⃡⃤⃥⃦⃨⃧⃩\',\n \'⃪⅀ⅆ←↑→↓↔↕↖↗↘↙\',\n \'↚↛↜↝↞↟↠↡↢↣↤↥\',\n \'↦↧↨↩↪↫↬↭↮↯↰↱\',\n \'↲↳↶↷↺↻↼↽↾↿⇀⇁\',\n \'⇂⇃⇄⇅⇆⇇⇈⇉⇊⇋⇌⇍\',\n \'⇎⇏⇐⇑⇒⇓⇔⇕⇖⇗⇘⇙\',\n \'⇚⇛⇜⇝⇞⇟⇠⇡⇢⇣⇤⇥\',\n \'⇦⇧⇨⇩⇳⇴⇵⇶⇷⇸⇹⇺\',\n \'⇻⇼⇽⇾⇿∀∁∂∃∄∆∇\',\n \'∈∉∊∋∌∍∏∐∑−∓∔\',\n \'∕∖∗∘∙√∛∜∝∣∤∥\',\n \'∦∧∨∩∪∫∬∭∮∯∰∱\',\n \'∲∳∴∵∶∷∸∹∺∻∼∽\',\n \'∾≀≁≂≃≄≅≆≇≈≉≊\',\n \'≋≌≍≎≏≐≑≒≓≔≕≖\',\n \'≗≘≙≚≛≜≝≞≟≠≡≢\',\n \'≣≤≥≦≧≨≩≪≫≬≭≮\',\n \'≯≰≱≲≳≴≵≶≷≸≹≺\',\n \'≻≼≽≾≿⊀⊁⊂⊃⊄⊅⊆\',\n \'⊇⊈⊉⊊⊋⊌⊍⊎⊏⊐⊑⊒\',\n \'⊓⊔⊕⊖⊗⊘⊙⊚⊛⊜⊝⊞\',\n \'⊟⊠⊡⊢⊣⊥⊦⊧⊨⊩⊪⊫\',\n \'⊬⊭⊮⊯⊰⊱⊲⊳⊴⊵⊶⊷\',\n \'⊸⊹⊺⊻⊼⊽⋀⋁⋂⋃⋄⋅\',\n \'⋆⋇⋈⋉⋊⋋⋌⋍⋎⋏⋐⋑\',\n \'⋒⋓⋔⋕⋖⋗⋘⋙⋚⋛⋜⋝\',\n \'⋞⋟⋠⋡⋢⋣⋤⋥⋦⋧⋨⋩\',\n \'⋪⋫⋬⋭⋮⋯⋰⋱⋲⋳⋴⋵\',\n \'⋶⋷⋸⋹⋺⋻⋼⋽⋾⋿⌅⌆\',\n \'⌈⌉⌊⌋⌜⌝⌞⌟⌢⌣〈〉\',\n \'⌽⌿⎰⎱⏜⏝⏞⏟⏠│├┤\',\n \'┬┴▁█▒■□▭▲△▴▵\',\n \'▶▷▸▹▼▽▾▿◀◁◂◃\',\n \'◄◅◊○◦◫◬◸◹◺◻◼\',\n \'◽◾◿★☆❲❳⟑⟒⟓⟔⟕\',\n \'⟖⟗⟘⟙⟚⟛⟜⟝⟞⟟⟠⟡\',\n \'⟢⟣⟤⟥⟦⟧⟨⟩⟪⟫⟰⟱\',\n \'⟲⟳⟴⟵⟶⟷⟸⟹⟺⟻⟼⟽\',\n \'⟾⟿⤀⤁⤂⤃⤄⤅⤆⤇⤈⤉\',\n \'⤊⤋⤌⤍⤎⤏⤐⤑⤒⤓⤔⤕\',\n \'⤖⤗⤘⤙⤚⤛⤜⤝⤞⤟⤠⤡\',\n \'⤢⤣⤤⤥⤦⤧⤨⤩⤪⤫⤬⤭\',\n \'⤮⤯⤰⤱⤲⤳⤴⤵⤶⤷⤸⤹\',\n \'⤺⤻⤼⤽⤾⤿⥀⥁⥂⥃⥄⥅\',\n \'⥆⥇⥈⥉⥊⥋⥌⥍⥎⥏⥐⥑\',\n \'⥒⥓⥔⥕⥖⥗⥘⥙⥚⥛⥜⥝\',\n \'⥞⥟⥠⥡⥢⥣⥤⥥⥦⥧⥨⥩\',\n \'⥪⥫⥬⥭⥮⥯⥰⥱⥲⥳⥴⥵\',\n \'⥶⥷⥸⥹⥺⥻⥼⥽⥾⥿⦀⦂\',\n \'⦃⦄⦅⦆⦇⦈⦉⦊⦋⦌⦍⦎\',\n \'⦏⦐⦑⦒⦓⦔⦕⦖⦗⦘⦙⦚\',\n \'⦶⦷⦸⦹⧀⧁⧄⧅⧆⧇⧈⧎\',\n \'⧏⧐⧑⧒⧓⧔⧕⧖⧗⧘⧙⧚\',\n \'⧛⧟⧡⧢⧣⧤⧥⧦⧫⧴⧵⧶\',\n \'⧷⧸⧹⧺⧻⧼⧽⧾⧿⨀⨁⨂\',\n \'⨃⨄⨅⨆⨇⨈⨉⨊⨋⨌⨍⨎\',\n \'⨏⨐⨑⨒⨓⨔⨕⨖⨗⨘⨙⨚\',\n \'⨛⨜⨝⨞⨟⨠⨡⨢⨣⨤⨥⨦\',\n \'⨧⨨⨩⨪⨫⨬⨭⨮⨯⨰⨱⨲\',\n \'⨳⨴⨵⨶⨷⨸⨹⨺⨻⨼⨽⨾\',\n \'⨿⩀⩁⩂⩃⩄⩅⩆⩇⩈⩉⩊\',\n \'⩋⩌⩍⩎⩏⩐⩑⩒⩓⩔⩕⩖\',\n \'⩗⩘⩙⩚⩛⩜⩝⩞⩟⩠⩡⩢\',\n \'⩣⩤⩥⩦⩧⩨⩩⩪⩫⩬⩭⩮\',\n \'⩯⩰⩱⩲⩳⩴⩵⩶⩷⩸⩹⩺\',\n \'⩻⩼⩽⩾⩿⪀⪁⪂⪃⪄⪅⪆\',\n \'⪇⪈⪉⪊⪋⪌⪍⪎⪏⪐⪑⪒\',\n \'⪓⪔⪕⪖⪗⪘⪙⪚⪛⪜⪝⪞\',\n \'⪟⪠⪡⪢⪣⪤⪥⪦⪧⪨⪩⪪\',\n \'⪫⪬⪭⪮⪯⪰⪱⪲⪳⪴⪵⪶\',\n \'⪷⪸⪹⪺⪻⪼⪽⪾⪿⫀⫁⫂\',\n \'⫃⫄⫅⫆⫇⫈⫉⫊⫋⫌⫍⫎\',\n \'⫏⫐⫑⫒⫓⫔⫕⫖⫗⫘⫙⫚\',\n \'⫛⫝̸⫝⫞⫟⫠⫢⫣⫤⫥⫦⫧\',\n \'⫨⫩⫪⫫⫬⫭⫮⫯⫰⫲⫳⫴\',\n \'⫵⫶⫷⫸⫹⫺⫻⫼⫽⫾⫿⬄\',\n \'⬆⬇⬌⬍〔〕〖〗〘〙!&\',\n \'()+,-./:;<=>\',\n \'?@[\]^_{|}\')" />\n\n \x3c!-- A string of \'-\'s repeated exactly as many times as the operators above --\x3e\n <xsl:variable name="sMinuses">\n <xsl:call-template name="SRepeatChar">\n <xsl:with-param name="cchRequired" select="string-length($sOperators)" />\n <xsl:with-param name="ch" select="\'-\'" />\n </xsl:call-template>\n </xsl:variable>\n\n \x3c!-- Every single unicode character that is recognized by OMML as a number --\x3e\n <xsl:variable name="sNumbers" select="\'0123456789\'" />\n\n \x3c!-- A string of \'0\'s repeated exactly as many times as the list of numbers above --\x3e\n <xsl:variable name="sZeros">\n <xsl:call-template name="SRepeatChar">\n <xsl:with-param name="cchRequired" select="string-length($sNumbers)" />\n <xsl:with-param name="ch" select="\'0\'" />\n </xsl:call-template>\n </xsl:variable>\n\n \x3c!-- %%Template: SReplace\n\n\t\tReplace all occurences of sOrig in sInput with sReplacement\n\t\tand return the resulting string. --\x3e\n <xsl:template name="SReplace">\n <xsl:param name="sInput" />\n <xsl:param name="sOrig" />\n <xsl:param name="sReplacement" />\n\n <xsl:choose>\n <xsl:when test="not(contains($sInput, $sOrig))">\n <xsl:value-of select="$sInput" />\n </xsl:when>\n <xsl:otherwise>\n <xsl:variable name="sBefore" select="substring-before($sInput, $sOrig)" />\n <xsl:variable name="sAfter" select="substring-after($sInput, $sOrig)" />\n <xsl:variable name="sAfterProcessed">\n <xsl:call-template name="SReplace">\n <xsl:with-param name="sInput" select="$sAfter" />\n <xsl:with-param name="sOrig" select="$sOrig" />\n <xsl:with-param name="sReplacement" select="$sReplacement" />\n </xsl:call-template>\n </xsl:variable>\n\n <xsl:value-of select="concat($sBefore, concat($sReplacement, $sAfterProcessed))" />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n \x3c!-- Templates --\x3e\n <xsl:template match="/">\n <mml:math>\n <xsl:apply-templates select="*" />\n </mml:math>\n </xsl:template>\n\n <xsl:template match="m:borderBox">\n\n \x3c!-- Get Lowercase versions of properties --\x3e\n <xsl:variable name="sLowerCaseHideTop" select="translate(m:borderBoxPr[last()]/m:hideTop[last()]/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseHideBot" select="translate(m:borderBoxPr[last()]/m:hideBot[last()]/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseHideLeft" select="translate(m:borderBoxPr[last()]/m:hideLeft[last()]/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseHideRight" select="translate(m:borderBoxPr[last()]/m:hideRight[last()]/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseStrikeH" select="translate(m:borderBoxPr[last()]/m:strikeH[last()]/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseStrikeV" select="translate(m:borderBoxPr[last()]/m:strikeV[last()]/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseStrikeBLTR" select="translate(m:borderBoxPr[last()]/m:strikeBLTR[last()]/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseStrikeTLBR" select="translate(m:borderBoxPr[last()]/m:strikeTLBR[last()]/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="fHideTop">\n <xsl:call-template name="ForceTrueStrVal">\n <xsl:with-param name="str" select="$sLowerCaseHideTop" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:variable name="fHideBot">\n <xsl:call-template name="ForceTrueStrVal">\n <xsl:with-param name="str" select="$sLowerCaseHideBot" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:variable name="fHideLeft">\n <xsl:call-template name="ForceTrueStrVal">\n <xsl:with-param name="str" select="$sLowerCaseHideLeft" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:variable name="fHideRight">\n <xsl:call-template name="ForceTrueStrVal">\n <xsl:with-param name="str" select="$sLowerCaseHideRight" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:variable name="fStrikeH">\n <xsl:call-template name="ForceTrueStrVal">\n <xsl:with-param name="str" select="$sLowerCaseStrikeH" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:variable name="fStrikeV">\n <xsl:call-template name="ForceTrueStrVal">\n <xsl:with-param name="str" select="$sLowerCaseStrikeV" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:variable name="fStrikeBLTR">\n <xsl:call-template name="ForceTrueStrVal">\n <xsl:with-param name="str" select="$sLowerCaseStrikeBLTR" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:variable name="fStrikeTLBR">\n <xsl:call-template name="ForceTrueStrVal">\n <xsl:with-param name="str" select="$sLowerCaseStrikeTLBR" />\n </xsl:call-template>\n </xsl:variable>\n\n <xsl:choose>\n <xsl:when test="$fHideTop=1\n and $fHideBot=1\n and $fHideLeft=1\n and $fHideRight=1\n and $fStrikeH=0\n and $fStrikeV=0\n and $fStrikeBLTR=0\n and $fStrikeTLBR=0">\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n </xsl:when>\n <xsl:otherwise>\n <mml:menclose>\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fHideTop" select="$fHideTop" />\n <xsl:with-param name="fHideBot" select="$fHideBot" />\n <xsl:with-param name="fHideLeft" select="$fHideLeft" />\n <xsl:with-param name="fHideRight" select="$fHideRight" />\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n </xsl:call-template>\n <xsl:apply-templates select="m:e[1]" />\n </mml:menclose>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n <xsl:template match="*">\n <xsl:apply-templates select="*" />\n </xsl:template>\n\n \x3c!--\n { Non-combining, Upper-combining, Lower-combining }\n {U+02D8, U+0306, U+032E}, // BREVE\n {U+00B8, U+0312, U+0327}, // CEDILLA\n {U+0060, U+0300, U+0316}, // GRAVE ACCENT\n {U+002D, U+0305, U+0332}, // HYPHEN-MINUS/OVERLINE\n {U+2212, U+0305, U+0332}, // MINUS SIGN/OVERLINE\n {U+002E, U+0305, U+0323}, // FULL STOP/DOT ABOVE\n {U+02D9, U+0307, U+0323}, // DOT ABOVE\n {U+02DD, U+030B, U+02DD}, // DOUBLE ACUTE ACCENT\n {U+00B4, U+0301, U+0317}, // ACUTE ACCENT\n {U+007E, U+0303, U+0330}, // TILDE\n {U+02DC, U+0303, U+0330}, // SMALL TILDE\n {U+00A8, U+0308, U+0324}, // DIAERESIS\n {U+02C7, U+030C, U+032C}, // CARON\n {U+005E, U+0302, U+032D}, // CIRCUMFLEX ACCENT\n {U+00AF, U+0305, ::::::}, // MACRON\n {U+005F, ::::::, U+0332}, // LOW LINE\n {U+2192, U+20D7, U+20EF}, // RIGHTWARDS ARROW\n {U+27F6, U+20D7, U+20EF}, // LONG RIGHTWARDS ARROW\n {U+2190, U+20D6, U+20EE}, // LEFT ARROW\n --\x3e\n <xsl:template name="ToNonCombining">\n <xsl:param name="ch" />\n <xsl:choose>\n \x3c!-- BREVE --\x3e\n <xsl:when test="$ch=\'̆\' or $ch=\'̮\'">˘</xsl:when>\n \x3c!-- CEDILLA --\x3e\n <xsl:when test="$ch=\'̒\' or $ch=\'̧\'">¸</xsl:when>\n \x3c!-- GRAVE ACCENT --\x3e\n <xsl:when test="$ch=\'̀\' or $ch=\'̖\'">`</xsl:when>\n \x3c!-- HYPHEN-MINUS/OVERLINE --\x3e\n <xsl:when test="$ch=\'̅\' or $ch=\'̲\'">-</xsl:when>\n \x3c!-- MINUS SIGN/OVERLINE --\x3e\n <xsl:when test="$ch=\'̅\' or $ch=\'̲\'">−</xsl:when>\n \x3c!-- FULL STOP/DOT ABOVE --\x3e\n <xsl:when test="$ch=\'̅\' or $ch=\'̣\'">.</xsl:when>\n \x3c!-- DOT ABOVE --\x3e\n <xsl:when test="$ch=\'̇\' or $ch=\'̣\'">˙</xsl:when>\n \x3c!-- DOUBLE ACUTE ACCENT --\x3e\n <xsl:when test="$ch=\'̋\' or $ch=\'˝\'">˝</xsl:when>\n \x3c!-- ACUTE ACCENT --\x3e\n <xsl:when test="$ch=\'́\' or $ch=\'̗\'">´</xsl:when>\n \x3c!-- TILDE --\x3e\n <xsl:when test="$ch=\'̃\' or $ch=\'̰\'">~</xsl:when>\n \x3c!-- SMALL TILDE --\x3e\n <xsl:when test="$ch=\'̃\' or $ch=\'̰\'">˜</xsl:when>\n \x3c!-- DIAERESIS --\x3e\n <xsl:when test="$ch=\'̈\' or $ch=\'̤\'">¨</xsl:when>\n \x3c!-- CARON --\x3e\n <xsl:when test="$ch=\'̌\' or $ch=\'̬\'">ˇ</xsl:when>\n \x3c!-- CIRCUMFLEX ACCENT --\x3e\n <xsl:when test="$ch=\'̂\' or $ch=\'̭\'">^</xsl:when>\n \x3c!-- MACRON --\x3e\n <xsl:when test="$ch=\'̅\' ">¯</xsl:when>\n \x3c!-- LOW LINE --\x3e\n <xsl:when test=" $ch=\'̲\'">_</xsl:when>\n \x3c!-- RIGHTWARDS ARROW --\x3e\n <xsl:when test="$ch=\'⃗\' or $ch=\'⃯\'">→</xsl:when>\n \x3c!-- LONG RIGHTWARDS ARROW --\x3e\n <xsl:when test="$ch=\'⃗\' or $ch=\'⃯\'">⟶</xsl:when>\n \x3c!-- LEFT ARROW --\x3e\n <xsl:when test="$ch=\'⃖\' or $ch=\'⃮\'">←</xsl:when>\n <xsl:otherwise>\n <xsl:value-of select="$ch"/>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n <xsl:template match="m:acc">\n <mml:mover>\n <xsl:attribute name="accent">true</xsl:attribute>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <xsl:variable name="chAcc">\n <xsl:choose>\n <xsl:when test="not(m:accPr[last()]/m:chr)">\n <xsl:value-of select="\'̂\'" />\n </xsl:when>\n <xsl:otherwise>\n <xsl:value-of select="substring(m:accPr/m:chr/@m:val,1,1)" />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:variable name="chNonComb">\n <xsl:call-template name="ToNonCombining">\n <xsl:with-param name="ch" select="$chAcc" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:choose>\n <xsl:when test="string-length($chAcc)=0">\n <mml:mo/>\n </xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="ParseMt">\n <xsl:with-param name="sToParse" select="$chNonComb" />\n <xsl:with-param name="scr" select="m:e[1]/*/m:rPr[last()]/m:scr/@m:val" />\n <xsl:with-param name="sty" select="m:e[1]/*/m:rPr[last()]/m:sty/@m:val" />\n <xsl:with-param name="nor">\n <xsl:choose>\n <xsl:when test="count(m:e[1]/*/m:rPr[last()]/m:nor) = 0">0</xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="translate(m:e[1]/*/m:rPr[last()]/m:nor/@m:val,\n \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:with-param>\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </mml:mover>\n </xsl:template>\n\n <xsl:template name="OutputScript">\n <xsl:param name="ndCur" select="." />\n <xsl:choose>\n \x3c!-- Only output contents of $ndCur if $ndCur exists\n and $ndCur has children --\x3e\n <xsl:when test="count($ndCur/*) > 0">\n <mml:mrow>\n <xsl:apply-templates select="$ndCur" />\n </mml:mrow>\n </xsl:when>\n <xsl:otherwise>\n <mml:none />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n <xsl:template match="m:sPre">\n <mml:mmultiscripts>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mprescripts />\n <xsl:call-template name="OutputScript">\n <xsl:with-param name="ndCur" select="m:sub[1]"/>\n </xsl:call-template>\n <xsl:call-template name="OutputScript">\n <xsl:with-param name="ndCur" select="m:sup[1]" />\n </xsl:call-template>\n </mml:mmultiscripts>\n </xsl:template>\n\n <xsl:template match="m:m">\n <mml:mtable>\n <xsl:call-template name="CreateMathMLMatrixAttr">\n <xsl:with-param name="mcJc" select="m:mPr[last()]/m:mcs/m:mc/m:mcPr[last()]/m:mcJc/@m:val" />\n </xsl:call-template>\n <xsl:for-each select="m:mr">\n <mml:mtr>\n <xsl:for-each select="m:e">\n <mml:mtd>\n <xsl:apply-templates select="." />\n </mml:mtd>\n </xsl:for-each>\n </mml:mtr>\n </xsl:for-each>\n </mml:mtable>\n </xsl:template>\n\n <xsl:template name="CreateMathMLMatrixAttr">\n <xsl:param name="mcJc" />\n <xsl:variable name="sLowerCaseMcjc" select="translate($mcJc, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:choose>\n <xsl:when test="$sLowerCaseMcjc=\'left\'">\n <xsl:attribute name="columnalign">left</xsl:attribute>\n </xsl:when>\n <xsl:when test="$sLowerCaseMcjc=\'right\'">\n <xsl:attribute name="columnalign">right</xsl:attribute>\n </xsl:when>\n </xsl:choose>\n </xsl:template>\n\n <xsl:template match="m:phant">\n <xsl:variable name="sLowerCaseZeroWidVal" select="translate(m:phantPr[last()]/m:zeroWid[last()]/@m:val,\n\t\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseZeroAscVal" select="translate(m:phantPr[last()]/m:zeroAsc[last()]/@m:val,\n\t\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseZeroDescVal" select="translate(m:phantPr[last()]/m:zeroDesc[last()]/@m:val,\n\t\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="sLowerCaseShowVal" select="translate(m:phantPr[last()]/m:show[last()]/@m:val,\n\t\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n\n\n \x3c!-- The following properties default to \'yes\' unless the last value equals \'no\' or there isn\'t any node for\n the property --\x3e\n\n <xsl:variable name="fZeroWid">\n <xsl:choose>\n <xsl:when test="count(m:phantPr[last()]/m:zeroWid[last()]) = 0">0</xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="$sLowerCaseZeroWidVal" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:variable name="fZeroAsc">\n <xsl:choose>\n <xsl:when test="count(m:phantPr[last()]/m:zeroAsc[last()]) = 0">0</xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="$sLowerCaseZeroAscVal" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:variable name="fZeroDesc">\n <xsl:choose>\n <xsl:when test="count(m:phantPr[last()]/m:zeroDesc[last()]) = 0">0</xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="$sLowerCaseZeroDescVal" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n\n \x3c!-- The show property defaults to \'on\' unless there exists a show property and its value is \'off\' --\x3e\n\n <xsl:variable name="fShow">\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="$sLowerCaseShowVal" />\n </xsl:call-template>\n </xsl:variable>\n\n <xsl:choose>\n \x3c!-- Show the phantom contents, therefore, just use mpadded. --\x3e\n <xsl:when test="$fShow = 1">\n <xsl:element name="mml:mpadded">\n <xsl:call-template name="CreateMpaddedAttributes">\n <xsl:with-param name="fZeroWid" select="$fZeroWid" />\n <xsl:with-param name="fZeroAsc" select="$fZeroAsc" />\n <xsl:with-param name="fZeroDesc" select="$fZeroDesc" />\n </xsl:call-template>\n <mml:mrow>\n <xsl:apply-templates select="m:e" />\n </mml:mrow>\n </xsl:element>\n </xsl:when>\n \x3c!-- Don\'t show phantom contents, but don\'t smash anything, therefore, just\n use mphantom --\x3e\n <xsl:when test="$fZeroWid=0 and $fZeroAsc=0 and $fZeroDesc=0">\n <xsl:element name="mml:mphantom">\n <mml:mrow>\n <xsl:apply-templates select="m:e" />\n </mml:mrow>\n </xsl:element>\n </xsl:when>\n \x3c!-- Combination --\x3e\n <xsl:otherwise>\n <xsl:element name="mml:mphantom">\n <xsl:element name="mml:mpadded">\n <xsl:call-template name="CreateMpaddedAttributes">\n <xsl:with-param name="fZeroWid" select="$fZeroWid" />\n <xsl:with-param name="fZeroAsc" select="$fZeroAsc" />\n <xsl:with-param name="fZeroDesc" select="$fZeroDesc" />\n </xsl:call-template>\n <mml:mrow>\n <xsl:apply-templates select="m:e" />\n </mml:mrow>\n </xsl:element>\n </xsl:element>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n <xsl:template name="CreateMpaddedAttributes">\n <xsl:param name="fZeroWid" />\n <xsl:param name="fZeroAsc" />\n <xsl:param name="fZeroDesc" />\n\n <xsl:if test="$fZeroWid=1">\n <xsl:attribute name="width">0in</xsl:attribute>\n </xsl:if>\n <xsl:if test="$fZeroAsc=1">\n <xsl:attribute name="height">0in</xsl:attribute>\n </xsl:if>\n <xsl:if test="$fZeroDesc=1">\n <xsl:attribute name="depth">0in</xsl:attribute>\n </xsl:if>\n </xsl:template>\n\n\n\n <xsl:template match="m:rad">\n <xsl:variable name="fDegHide">\n <xsl:choose>\n <xsl:when test="count(m:radPr[last()]/m:degHide)=0">0</xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="translate(m:radPr[last()]/m:degHide/@m:val,\n\t\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:choose>\n <xsl:when test="$fDegHide=1">\n <mml:msqrt>\n <xsl:apply-templates select="m:e[1]" />\n </mml:msqrt>\n </xsl:when>\n <xsl:otherwise>\n <mml:mroot>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:deg[1]" />\n </mml:mrow>\n </mml:mroot>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n <xsl:template name="OutputNaryMo">\n <xsl:param name="ndCur" select="." />\n <xsl:param name="fGrow" select="0" />\n <mml:mo>\n <xsl:choose>\n <xsl:when test="$fGrow=1">\n <xsl:attribute name="stretchy">true</xsl:attribute>\n </xsl:when>\n <xsl:otherwise>\n <xsl:attribute name="stretchy">false</xsl:attribute>\n </xsl:otherwise>\n </xsl:choose>\n <xsl:choose>\n <xsl:when test="not($ndCur/m:naryPr[last()]/m:chr/@m:val) or\n\t\t\t $ndCur/m:naryPr[last()]/m:chr/@m:val=\'\'">\n <xsl:text>∫</xsl:text>\n </xsl:when>\n <xsl:otherwise>\n <xsl:value-of select="$ndCur/m:naryPr[last()]/m:chr/@m:val" />\n </xsl:otherwise>\n </xsl:choose>\n </mml:mo>\n </xsl:template>\n\n \x3c!-- %%Template match m:nary\n\t\tProcess an n-ary.\n\n\t\tDecides, based on which arguments are supplied, between\n\t\tusing an mo, msup, msub, or msubsup for the n-ary operator\n\t--\x3e\n <xsl:template match="m:nary">\n <xsl:variable name="sLowerCaseSubHide">\n <xsl:choose>\n <xsl:when test="count(m:naryPr[last()]/m:subHide) = 0">\n <xsl:text>off</xsl:text>\n </xsl:when>\n <xsl:otherwise>\n <xsl:value-of select="translate(m:naryPr[last()]/m:subHide/@m:val,\n\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t \'abcdefghijklmnopqrstuvwxyz\')" />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n\n <xsl:variable name="sLowerCaseSupHide">\n <xsl:choose>\n <xsl:when test="count(m:naryPr[last()]/m:supHide) = 0">\n <xsl:text>off</xsl:text>\n </xsl:when>\n <xsl:otherwise>\n <xsl:value-of select="translate(m:naryPr[last()]/m:supHide/@m:val,\n\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t \'abcdefghijklmnopqrstuvwxyz\')" />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n\n <xsl:variable name="sLowerCaseLimLoc">\n <xsl:value-of select="translate(m:naryPr[last()]/m:limLoc/@m:val,\n\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t \'abcdefghijklmnopqrstuvwxyz\')" />\n </xsl:variable>\n\n <xsl:variable name="sLowerGrow">\n <xsl:choose>\n <xsl:when test="count(m:naryPr[last()]/m:grow)=0">off</xsl:when>\n <xsl:otherwise>\n <xsl:value-of select="translate(m:naryPr[last()]/m:grow/@m:val,\n\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t \'abcdefghijklmnopqrstuvwxyz\')" />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n\n <xsl:variable name="fLimLocSubSup">\n <xsl:choose>\n <xsl:when test="count(m:naryPr[last()]/m:limLoc)=0 or $sLowerCaseLimLoc=\'subsup\'">1</xsl:when>\n <xsl:otherwise>0</xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n\n <xsl:variable name="fGrow">\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="$sLowerGrow" />\n </xsl:call-template>\n </xsl:variable>\n\n <xsl:variable name="fSupHide">\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="$sLowerCaseSupHide" />\n </xsl:call-template>\n </xsl:variable>\n\n <xsl:variable name="fSubHide">\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="$sLowerCaseSubHide" />\n </xsl:call-template>\n </xsl:variable>\n\n <mml:mrow>\n <xsl:choose>\n <xsl:when test="$fSupHide=1 and $fSubHide=1">\n <xsl:call-template name="OutputNaryMo">\n <xsl:with-param name="ndCur" select="." />\n <xsl:with-param name="fGrow" select="$fGrow" />\n </xsl:call-template>\n </xsl:when>\n <xsl:when test="$fSubHide=1">\n <xsl:choose>\n <xsl:when test="$fLimLocSubSup=1">\n <mml:msup>\n <xsl:call-template name="OutputNaryMo">\n <xsl:with-param name="ndCur" select="." />\n <xsl:with-param name="fGrow" select="$fGrow" />\n </xsl:call-template>\n <mml:mrow>\n <xsl:apply-templates select="m:sup[1]" />\n </mml:mrow>\n </mml:msup>\n </xsl:when>\n <xsl:otherwise>\n <mml:mover>\n <xsl:call-template name="OutputNaryMo">\n <xsl:with-param name="ndCur" select="." />\n <xsl:with-param name="fGrow" select="$fGrow" />\n </xsl:call-template>\n <mml:mrow>\n <xsl:apply-templates select="m:sup[1]" />\n </mml:mrow>\n </mml:mover>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:when test="$fSupHide=1">\n <xsl:choose>\n <xsl:when test="$fLimLocSubSup=1">\n <mml:msub>\n <xsl:call-template name="OutputNaryMo">\n <xsl:with-param name="ndCur" select="." />\n <xsl:with-param name="fGrow" select="$fGrow" />\n </xsl:call-template>\n <mml:mrow>\n <xsl:apply-templates select="m:sub[1]" />\n </mml:mrow>\n </mml:msub>\n </xsl:when>\n <xsl:otherwise>\n <mml:munder>\n <xsl:call-template name="OutputNaryMo">\n <xsl:with-param name="ndCur" select="." />\n <xsl:with-param name="fGrow" select="$fGrow" />\n </xsl:call-template>\n <mml:mrow>\n <xsl:apply-templates select="m:sub[1]" />\n </mml:mrow>\n </mml:munder>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:otherwise>\n <xsl:choose>\n <xsl:when test="$fLimLocSubSup=1">\n <mml:msubsup>\n <xsl:call-template name="OutputNaryMo">\n <xsl:with-param name="ndCur" select="." />\n <xsl:with-param name="fGrow" select="$fGrow" />\n </xsl:call-template>\n <mml:mrow>\n <xsl:apply-templates select="m:sub[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:sup[1]" />\n </mml:mrow>\n </mml:msubsup>\n </xsl:when>\n <xsl:otherwise>\n <mml:munderover>\n <xsl:call-template name="OutputNaryMo">\n <xsl:with-param name="ndCur" select="." />\n <xsl:with-param name="fGrow" select="$fGrow" />\n </xsl:call-template>\n <mml:mrow>\n <xsl:apply-templates select="m:sub[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:sup[1]" />\n </mml:mrow>\n </mml:munderover>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:otherwise>\n </xsl:choose>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n </mml:mrow>\n </xsl:template>\n\n <xsl:template match="m:limLow">\n <mml:munder>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:lim[1]" />\n </mml:mrow>\n </mml:munder>\n </xsl:template>\n\n <xsl:template match="m:limUpp">\n <mml:mover>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:lim[1]" />\n </mml:mrow>\n </mml:mover>\n </xsl:template>\n\n <xsl:template match="m:sSub">\n <mml:msub>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:sub[1]" />\n </mml:mrow>\n </mml:msub>\n </xsl:template>\n\n <xsl:template match="m:sSup">\n <mml:msup>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:sup[1]" />\n </mml:mrow>\n </mml:msup>\n </xsl:template>\n\n <xsl:template match="m:sSubSup">\n <mml:msubsup>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:sub[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:sup[1]" />\n </mml:mrow>\n </mml:msubsup>\n </xsl:template>\n\n <xsl:template match="m:groupChr">\n <xsl:variable name="ndLastGroupChrPr" select="m:groupChrPr[last()]" />\n <xsl:variable name="sLowerCasePos" select="translate($ndLastGroupChrPr/m:pos/@m:val,\n\t\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n\n <xsl:variable name="sLowerCaseVertJc" select="translate($ndLastGroupChrPr/m:vertJc/@m:val,\n\t\t \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:variable name="ndLastChr" select="$ndLastGroupChrPr/m:chr" />\n\n <xsl:variable name="chr">\n <xsl:choose>\n <xsl:when test="$ndLastChr and (not($ndLastChr/@m:val) or string-length($ndLastChr/@m:val) = 0)"></xsl:when>\n <xsl:when test="string-length($ndLastChr/@m:val) >= 1">\n <xsl:value-of select="substring($ndLastChr/@m:val,1,1)" />\n </xsl:when>\n <xsl:otherwise>\n <xsl:text>⏟</xsl:text>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:choose>\n <xsl:when test="$sLowerCasePos = \'top\'">\n <xsl:choose>\n <xsl:when test="$sLowerCaseVertJc = \'bot\'">\n <mml:mover accent="false">\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mo>\n <xsl:value-of select="$chr" />\n </mml:mo>\n </mml:mover>\n </xsl:when>\n <xsl:otherwise>\n <mml:munder accentunder="false">\n <mml:mo>\n <xsl:value-of select="$chr" />\n </mml:mo>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n </mml:munder>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:otherwise>\n <xsl:choose>\n <xsl:when test="$sLowerCaseVertJc = \'bot\'">\n <mml:mover accent="false">\n <mml:mo>\n <xsl:value-of select="$chr" />\n </mml:mo>\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n </mml:mover>\n </xsl:when>\n <xsl:otherwise>\n <mml:munder accentunder="false">\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mo>\n <xsl:value-of select="$chr" />\n </mml:mo>\n </mml:munder>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n <xsl:template name="fName">\n <xsl:for-each select="m:fName/*">\n <xsl:apply-templates select="." />\n </xsl:for-each>\n </xsl:template>\n\n <xsl:template match="m:func">\n <mml:mrow>\n <mml:mrow>\n <xsl:call-template name="fName" />\n </mml:mrow>\n <mml:mo>⁡</mml:mo>\n <mml:mrow>\n <xsl:apply-templates select="m:e" />\n </mml:mrow>\n </mml:mrow>\n </xsl:template>\n\n \x3c!-- %%Template: match m:f\n\n\t\tm:f maps directly to mfrac.\n\t--\x3e\n <xsl:template match="m:f">\n <xsl:variable name="sLowerCaseType" select="translate(m:fPr[last()]/m:type/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\', \'abcdefghijklmnopqrstuvwxyz\')" />\n <xsl:choose>\n <xsl:when test="$sLowerCaseType=\'lin\'">\n <mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:num[1]" />\n </mml:mrow>\n <mml:mo>/</mml:mo>\n <mml:mrow>\n <xsl:apply-templates select="m:den[1]" />\n </mml:mrow>\n </mml:mrow>\n </xsl:when>\n <xsl:otherwise>\n <mml:mfrac>\n <xsl:call-template name="CreateMathMLFracProp">\n <xsl:with-param name="type" select="$sLowerCaseType" />\n </xsl:call-template>\n <mml:mrow>\n <xsl:apply-templates select="m:num[1]" />\n </mml:mrow>\n <mml:mrow>\n <xsl:apply-templates select="m:den[1]" />\n </mml:mrow>\n </mml:mfrac>\n </xsl:otherwise>\n </xsl:choose>\n\n </xsl:template>\n\n\n \x3c!-- %%Template: CreateMathMLFracProp\n\n\t\t\tMake fraction properties based on supplied parameters.\n\t\t\tOMML differentiates between a linear fraction and a skewed\n\t\t\tone. For MathML, we write both as bevelled.\n\t--\x3e\n <xsl:template name="CreateMathMLFracProp">\n <xsl:param name="type" />\n <xsl:variable name="sLowerCaseType" select="translate($type, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\', \'abcdefghijklmnopqrstuvwxyz\')" />\n\n <xsl:if test="$sLowerCaseType=\'skw\' or $sLowerCaseType=\'lin\'">\n <xsl:attribute name="bevelled">true</xsl:attribute>\n </xsl:if>\n <xsl:if test="$sLowerCaseType=\'nobar\'">\n <xsl:attribute name="linethickness">0pt</xsl:attribute>\n </xsl:if>\n <xsl:choose>\n <xsl:when test="sLowerCaseNumJc=\'right\'">\n <xsl:attribute name="numalign">right</xsl:attribute>\n </xsl:when>\n <xsl:when test="sLowerCaseNumJc=\'left\'">\n <xsl:attribute name="numalign">left</xsl:attribute>\n </xsl:when>\n </xsl:choose>\n <xsl:choose>\n <xsl:when test="sLowerCaseDenJc=\'right\'">\n <xsl:attribute name="numalign">right</xsl:attribute>\n </xsl:when>\n <xsl:when test="sLowerCaseDenJc=\'left\'">\n <xsl:attribute name="numalign">left</xsl:attribute>\n </xsl:when>\n </xsl:choose>\n </xsl:template>\n\n \x3c!-- %%Template: match m:e | m:den | m:num | m:lim | m:sup | m:sub\n\n\t\tThese element delinate parts of an expression (like the numerator). --\x3e\n <xsl:template match="m:e | m:den | m:num | m:lim | m:sup | m:sub">\n <xsl:choose>\n\n \x3c!-- If there is no scriptLevel specified, just call through --\x3e\n <xsl:when test="not(m:argPr[last()]/m:scrLvl/@m:val)">\n <xsl:apply-templates select="*" />\n </xsl:when>\n\n \x3c!-- Otherwise, create an mstyle and set the script level --\x3e\n <xsl:otherwise>\n <mml:mstyle>\n <xsl:attribute name="scriptlevel">\n <xsl:value-of select="m:argPr[last()]/m:scrLvl/@m:val" />\n </xsl:attribute>\n <xsl:apply-templates select="*" />\n </mml:mstyle>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n <xsl:template match="m:bar">\n <xsl:variable name="sLowerCasePos" select="translate(m:barPr/m:pos/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n\n <xsl:variable name="fTop">\n\n <xsl:choose>\n <xsl:when test="$sLowerCasePos=\'top\'">1</xsl:when>\n <xsl:otherwise>0</xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:choose>\n <xsl:when test="$fTop=1">\n <mml:mover accent="false">\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mo>\n <xsl:text>¯</xsl:text>\n </mml:mo>\n </mml:mover>\n </xsl:when>\n <xsl:otherwise>\n <mml:munder underaccent="false">\n <mml:mrow>\n <xsl:apply-templates select="m:e[1]" />\n </mml:mrow>\n <mml:mo>\n <xsl:text>_</xsl:text>\n </mml:mo>\n </mml:munder>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n \x3c!-- %%Template match m:d\n\n\t\tProcess a delimiter.\n\t--\x3e\n <xsl:template match="m:d">\n <mml:mfenced>\n \x3c!-- open: default is \'(\' for both OMML and MathML --\x3e\n <xsl:if test="m:dPr[1]/m:begChr/@m:val and not(m:dPr[1]/m:begChr/@m:val =\'(\')">\n <xsl:attribute name="open">\n <xsl:value-of select="m:dPr[1]/m:begChr/@m:val" />\n </xsl:attribute>\n </xsl:if>\n\n \x3c!-- close: default is \')\' for both OMML and MathML --\x3e\n <xsl:if test="m:dPr[1]/m:endChr/@m:val and not(m:dPr[1]/m:endChr/@m:val =\')\')">\n <xsl:attribute name="close">\n <xsl:value-of select="m:dPr[1]/m:endChr/@m:val" />\n </xsl:attribute>\n </xsl:if>\n\n \x3c!-- separator: the default is \',\' for MathML, and \'|\' for OMML --\x3e\n <xsl:choose>\n \x3c!-- Matches MathML default. Write nothing --\x3e\n <xsl:when test="m:dPr[1]/m:sepChr/@m:val = \',\'" />\n\n \x3c!-- OMML default: | --\x3e\n <xsl:when test="not(m:dPr[1]/m:sepChr/@m:val)">\n <xsl:attribute name="separators">\n <xsl:value-of select="\'|\'" />\n </xsl:attribute>\n </xsl:when>\n\n <xsl:otherwise>\n <xsl:attribute name="separators">\n <xsl:value-of select="m:dPr[1]/m:sepChr/@m:val" />\n </xsl:attribute>\n </xsl:otherwise>\n </xsl:choose>\n\n \x3c!-- now write all the children. Put each one into an mrow\n\t\t\tjust in case it produces multiple runs, etc --\x3e\n <xsl:for-each select="m:e">\n <mml:mrow>\n <xsl:apply-templates select="." />\n </mml:mrow>\n </xsl:for-each>\n </mml:mfenced>\n </xsl:template>\n\n <xsl:template match="m:r">\n <xsl:variable name="fNor">\n <xsl:choose>\n <xsl:when test="count(child::m:rPr[last()]/m:nor) = 0">0</xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="translate(child::m:rPr[last()]/m:nor/@m:val, \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n\n <xsl:choose>\n <xsl:when test="$fNor=1">\n <mml:mtext>\n <xsl:variable name="sOutput" select="translate(.//m:t, \' \', \' \')" />\n <xsl:value-of select="$sOutput" />\n </mml:mtext>\n </xsl:when>\n <xsl:otherwise>\n <xsl:for-each select=".//m:t">\n <xsl:call-template name="ParseMt">\n <xsl:with-param name="sToParse" select="text()" />\n <xsl:with-param name="scr" select="../m:rPr[last()]/m:scr/@m:val" />\n <xsl:with-param name="sty" select="../m:rPr[last()]/m:sty/@m:val" />\n <xsl:with-param name="nor">0</xsl:with-param>\n </xsl:call-template>\n </xsl:for-each>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n\n <xsl:template name="CreateTokenAttributes">\n <xsl:param name="scr" />\n <xsl:param name="sty" />\n <xsl:param name="nor" />\n <xsl:param name="nCharToPrint" />\n <xsl:param name="sTokenType" />\n\n <xsl:choose>\n <xsl:when test="$nor=1">\n <xsl:attribute name="mathvariant">normal</xsl:attribute>\n </xsl:when>\n <xsl:otherwise>\n <xsl:variable name="mathvariant">\n <xsl:choose>\n \x3c!-- numbers don\'t care --\x3e\n <xsl:when test="$sTokenType=\'mn\'" />\n\n <xsl:when test="$scr=\'monospace\'">monospace</xsl:when>\n <xsl:when test="$scr=\'sans-serif\' and $sty=\'i\'">sans-serif-italic</xsl:when>\n <xsl:when test="$scr=\'sans-serif\' and $sty=\'b\'">bold-sans-serif</xsl:when>\n <xsl:when test="$scr=\'sans-serif\' and $sty=\'bi\'">sans-serif-bold-italic</xsl:when>\n <xsl:when test="$scr=\'sans-serif\'">sans-serif</xsl:when>\n <xsl:when test="$scr=\'fraktur\' and ($sty=\'b\' or $sty=\'bi\')">bold-fraktur</xsl:when>\n <xsl:when test="$scr=\'fraktur\'">fraktur</xsl:when>\n <xsl:when test="$scr=\'double-struck\'">double-struck</xsl:when>\n <xsl:when test="$scr=\'script\' and ($sty=\'b\' or $sty=\'bi\')">bold-script</xsl:when>\n <xsl:when test="$scr=\'script\'">script</xsl:when>\n <xsl:when test="($scr=\'roman\' or not($scr) or $scr=\'\') and $sty=\'b\'">bold</xsl:when>\n <xsl:when test="($scr=\'roman\' or not($scr) or $scr=\'\') and $sty=\'i\'">italic</xsl:when>\n <xsl:when test="($scr=\'roman\' or not($scr) or $scr=\'\') and $sty=\'p\'">normal</xsl:when>\n <xsl:when test="($scr=\'roman\' or not($scr) or $scr=\'\') and $sty=\'bi\'">bold-italic</xsl:when>\n <xsl:otherwise />\n </xsl:choose>\n </xsl:variable>\n <xsl:variable name="fontweight">\n <xsl:choose>\n <xsl:when test="$sty=\'b\' or $sty=\'bi\'">bold</xsl:when>\n <xsl:otherwise>normal</xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:variable name="fontstyle">\n <xsl:choose>\n <xsl:when test="$sty=\'p\' or $sty=\'b\'">normal</xsl:when>\n <xsl:otherwise>italic</xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n\n \x3c!-- Writing of attributes begins here --\x3e\n <xsl:choose>\n \x3c!-- Don\'t write mathvariant for operators unless they want to be normal --\x3e\n <xsl:when test="$sTokenType=\'mo\' and $mathvariant!=\'normal\'" />\n\n \x3c!-- A single character within an mi is already italics, don\'t write --\x3e\n <xsl:when test="$sTokenType=\'mi\' and $nCharToPrint=1 and ($mathvariant=\'\' or $mathvariant=\'italic\')" />\n\n <xsl:when test="$sTokenType=\'mi\' and $nCharToPrint > 1 and ($mathvariant=\'\' or $mathvariant=\'italic\')">\n <xsl:attribute name="mathvariant">\n <xsl:value-of select="\'italic\'" />\n </xsl:attribute>\n </xsl:when>\n <xsl:when test="$mathvariant!=\'italic\' and $mathvariant!=\'\'">\n <xsl:attribute name="mathvariant">\n <xsl:value-of select="$mathvariant" />\n </xsl:attribute>\n </xsl:when>\n <xsl:otherwise>\n <xsl:if test="not($sTokenType=\'mi\' and $nCharToPrint=1) and $fontstyle=\'italic\'">\n <xsl:attribute name="fontstyle">italic</xsl:attribute>\n </xsl:if>\n <xsl:if test="$fontweight=\'bold\'">\n <xsl:attribute name="fontweight">bold</xsl:attribute>\n </xsl:if>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n <xsl:template match="m:eqArr">\n <mml:mtable>\n <xsl:for-each select="m:e">\n <mml:mtr>\n <mml:mtd>\n <xsl:choose>\n <xsl:when test="m:argPr[last()]/m:scrLvl/@m:val!=\'0\' or\n\t\t\t\t\t not(m:argPr[last()]/m:scrLvl/@m:val) or\n\t\t\t\t\t m:argPr[last()]/m:scrLvl/@m:val=\'\'">\n <mml:mrow>\n <mml:maligngroup />\n <xsl:call-template name="CreateEqArrRow">\n <xsl:with-param name="align" select="1" />\n <xsl:with-param name="ndCur" select="*[1]" />\n </xsl:call-template>\n </mml:mrow>\n </xsl:when>\n <xsl:otherwise>\n <mml:mstyle>\n <xsl:attribute name="scriptlevel">\n <xsl:value-of select="m:argPr[last()]/m:scrLvl/@m:val" />\n </xsl:attribute>\n <mml:maligngroup />\n <xsl:call-template name="CreateEqArrRow">\n <xsl:with-param name="align" select="1" />\n <xsl:with-param name="ndCur" select="*[1]" />\n </xsl:call-template>\n </mml:mstyle>\n </xsl:otherwise>\n </xsl:choose>\n </mml:mtd>\n </mml:mtr>\n </xsl:for-each>\n </mml:mtable>\n </xsl:template>\n\n <xsl:template name="CreateEqArrRow">\n <xsl:param name="align" />\n <xsl:param name="ndCur" />\n <xsl:variable name="sAllMt">\n <xsl:for-each select="$ndCur/m:t">\n <xsl:value-of select="." />\n </xsl:for-each>\n </xsl:variable>\n <xsl:choose>\n <xsl:when test="$ndCur/self::m:r">\n <xsl:call-template name="ParseEqArrMr">\n <xsl:with-param name="sToParse" select="$sAllMt" />\n <xsl:with-param name="scr" select="../m:rPr[last()]/m:scr/@m:val" />\n <xsl:with-param name="sty" select="../m:rPr[last()]/m:sty/@m:val" />\n <xsl:with-param name="nor">\n <xsl:choose>\n <xsl:when test="count($ndCur/m:rPr[last()]/m:nor) = 0">0</xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="ForceFalseStrVal">\n <xsl:with-param name="str" select="translate($ndCur/m:rPr[last()]/m:nor/@m:val,\n \'ABCDEFGHIJKLMNOPQRSTUVWXYZ\',\n\t\t \'abcdefghijklmnopqrstuvwxyz\')" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:with-param>\n <xsl:with-param name="align" select="$align" />\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:apply-templates select="$ndCur" />\n </xsl:otherwise>\n </xsl:choose>\n <xsl:if test="count($ndCur/following-sibling::*) > 0">\n <xsl:variable name="cAmp">\n <xsl:call-template name="CountAmp">\n <xsl:with-param name="sAllMt" select="$sAllMt" />\n <xsl:with-param name="cAmp" select="0" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:call-template name="CreateEqArrRow">\n <xsl:with-param name="align" select="($align+($cAmp mod 2)) mod 2" />\n <xsl:with-param name="ndCur" select="$ndCur/following-sibling::*[1]" />\n </xsl:call-template>\n </xsl:if>\n </xsl:template>\n\n <xsl:template name="CountAmp">\n <xsl:param name="sAllMt" />\n <xsl:param name="cAmp" />\n <xsl:choose>\n <xsl:when test="string-length(substring-after($sAllMt, \'&\')) > 0 or\n\t\t\t substring($sAllMt, string-length($sAllMt))=\'&\'">\n <xsl:call-template name="CountAmp">\n <xsl:with-param name="sAllMt" select="substring-after($sAllMt, \'&\')" />\n <xsl:with-param name="cAmp" select="$cAmp+1" />\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:value-of select="$cAmp" />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n \x3c!-- %%Template: ParseEqArrMr\n\n\t\t\tSimilar to ParseMt, but this one has to do more for an equation array.\n In equation arrays & is a special character which denotes alignment.\n\n The & in an equation works by alternating between meaning insert alignment spacing\n and insert alignment mark. For each equation in the equation array\n there is an implied align space at the beginning of the equation. Within each equation,\n the first & means alignmark, the second, align space, the third, alignmark, etc.\n\n For this reason when parsing m:r\'s in equation arrays it is important to keep track of what\n the next ampersand will mean.\n\n $align=0 => Omml\'s align space, which is similar to MathML\'s maligngroup.\n $align=1 => Omml\'s alignment mark, which is similar to MathML\'s malignmark.\n\t--\x3e\n <xsl:template name="ParseEqArrMr">\n <xsl:param name="sToParse" />\n <xsl:param name="sty" />\n <xsl:param name="scr" />\n <xsl:param name="nor" />\n <xsl:param name="align" />\n\n <xsl:if test="string-length($sToParse) > 0">\n <xsl:choose>\n <xsl:when test="substring($sToParse,1,1) = \'&\'">\n <xsl:choose>\n <xsl:when test="$align=\'0\'">\n <mml:maligngroup />\n </xsl:when>\n <xsl:when test="$align=\'1\'">\n <mml:malignmark />\n </xsl:when>\n </xsl:choose>\n <xsl:call-template name="ParseEqArrMr">\n <xsl:with-param name="sToParse" select="substring($sToParse,2)" />\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="$sty" />\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="align">\n <xsl:choose>\n <xsl:when test="$align=\'1\'">0</xsl:when>\n <xsl:otherwise>1</xsl:otherwise>\n </xsl:choose>\n </xsl:with-param>\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:variable name="sRepNumWith0">\n <xsl:call-template name="SReplaceNumWithZero">\n <xsl:with-param name="sToParse" select="$sToParse" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:variable name="sRepOperWith-">\n <xsl:call-template name="SReplaceOperWithMinus">\n <xsl:with-param name="sToParse" select="$sRepNumWith0" />\n </xsl:call-template>\n </xsl:variable>\n\n <xsl:variable name="iFirstOper" select="string-length($sRepOperWith-) - string-length(substring-after($sRepOperWith-, \'-\'))" />\n <xsl:variable name="iFirstNum" select="string-length($sRepOperWith-) - string-length(substring-after($sRepOperWith-, \'0\'))" />\n <xsl:variable name="iFirstAmp" select="string-length($sRepOperWith-) - string-length(substring-after($sRepOperWith-, \'&\'))" />\n <xsl:variable name="fNumAtPos1">\n <xsl:choose>\n <xsl:when test="substring($sRepOperWith-,1,1)=\'0\'">1</xsl:when>\n <xsl:otherwise>0</xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:variable name="fOperAtPos1">\n <xsl:choose>\n <xsl:when test="substring($sRepOperWith-,1,1)=\'-\'">1</xsl:when>\n <xsl:otherwise>0</xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:choose>\n\n \x3c!-- Case I: The string begins with neither a number, nor an operator --\x3e\n <xsl:when test="$fNumAtPos1=\'0\' and $fOperAtPos1=\'0\'">\n <xsl:choose>\n <xsl:when test="$nor = 0">\n <mml:mi>\n <xsl:call-template name="CreateTokenAttributes">\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="$sty" />\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="nCharToPrint" select="1" />\n <xsl:with-param name="sTokenType" select="\'mi\'" />\n </xsl:call-template>\n <xsl:variable name="sOutput" select="translate(substring($sToParse, 1, 1), \' \', \' \')" />\n <xsl:value-of select="$sOutput" />\n </mml:mi>\n </xsl:when>\n <xsl:otherwise>\n <mml:mtext>\n <xsl:variable name="sOutput" select="translate(substring($sToParse, 1, 1), \' \', \' \')" />\n <xsl:value-of select="$sOutput" />\n </mml:mtext>\n </xsl:otherwise>\n </xsl:choose>\n <xsl:call-template name="ParseEqArrMr">\n <xsl:with-param name="sToParse" select="substring($sToParse, 2)" />\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="$sty" />\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="align" select="$align" />\n </xsl:call-template>\n </xsl:when>\n\n \x3c!-- Case II: There is an operator at position 1 --\x3e\n <xsl:when test="$fOperAtPos1=\'1\'">\n <xsl:choose>\n <xsl:when test="$nor = 0">\n <mml:mo>\n <xsl:call-template name="CreateTokenAttributes">\n <xsl:with-param name="scr" />\n <xsl:with-param name="sty" />\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="sTokenType" select="\'mo\'" />\n </xsl:call-template>\n <xsl:value-of select="substring($sToParse,1,1)" />\n </mml:mo>\n </xsl:when>\n <xsl:otherwise>\n <mml:mtext>\n <xsl:value-of select="substring($sToParse,1,1)" />\n </mml:mtext>\n </xsl:otherwise>\n </xsl:choose>\n <xsl:call-template name="ParseEqArrMr">\n <xsl:with-param name="sToParse" select="substring($sToParse, 2)" />\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="$sty" />\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="align" select="$align" />\n </xsl:call-template>\n </xsl:when>\n\n \x3c!-- Case III: There is a number at position 1 --\x3e\n <xsl:otherwise>\n <xsl:variable name="sConsecNum">\n <xsl:call-template name="SNumStart">\n <xsl:with-param name="sToParse" select="$sToParse" />\n <xsl:with-param name="sPattern" select="$sRepNumWith0" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:choose>\n <xsl:when test="$nor = 0">\n <mml:mn>\n <xsl:call-template name="CreateTokenAttributes">\n <xsl:with-param name="scr" />\n <xsl:with-param name="sty" select="\'p\'"/>\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="sTokenType" select="\'mn\'" />\n </xsl:call-template>\n <xsl:value-of select="$sConsecNum" />\n </mml:mn>\n </xsl:when>\n <xsl:otherwise>\n <mml:mtext>\n <xsl:value-of select="$sConsecNum" />\n </mml:mtext>\n </xsl:otherwise>\n </xsl:choose>\n <xsl:call-template name="ParseEqArrMr">\n <xsl:with-param name="sToParse" select="substring-after($sToParse, $sConsecNum)" />\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="$sty" />\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="align" select="$align" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:if>\n </xsl:template>\n\n \x3c!-- %%Template: ParseMt\n\n\t\t\tProduce a run of text. Technically, OMML makes no distinction\n\t\t\tbetween numbers, operators, and other characters in a run. For\n\t\t\tMathML we need to break these into mi, mn, or mo elements.\n\n\t\t\tSee also ParseEqArrMr\n\t--\x3e\n <xsl:template name="ParseMt">\n <xsl:param name="sToParse" />\n <xsl:param name="sty" />\n <xsl:param name="scr" />\n <xsl:param name="nor" />\n <xsl:if test="string-length($sToParse) > 0">\n <xsl:variable name="sRepNumWith0">\n <xsl:call-template name="SReplaceNumWithZero">\n <xsl:with-param name="sToParse" select="$sToParse" />\n </xsl:call-template>\n </xsl:variable>\n <xsl:variable name="sRepOperWith-">\n <xsl:call-template name="SReplaceOperWithMinus">\n <xsl:with-param name="sToParse" select="$sRepNumWith0" />\n </xsl:call-template>\n </xsl:variable>\n\n <xsl:variable name="iFirstOper" select="string-length($sRepOperWith-) - string-length(substring-after($sRepOperWith-, \'-\'))" />\n <xsl:variable name="iFirstNum" select="string-length($sRepOperWith-) - string-length(substring-after($sRepOperWith-, \'0\'))" />\n <xsl:variable name="fNumAtPos1">\n <xsl:choose>\n <xsl:when test="substring($sRepOperWith-,1,1)=\'0\'">1</xsl:when>\n <xsl:otherwise>0</xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n <xsl:variable name="fOperAtPos1">\n <xsl:choose>\n <xsl:when test="substring($sRepOperWith-,1,1)=\'-\'">1</xsl:when>\n <xsl:otherwise>0</xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n\n <xsl:choose>\n\n \x3c!-- Case I: The string begins with neither a number, nor an operator --\x3e\n <xsl:when test="$fOperAtPos1=\'0\' and $fNumAtPos1=\'0\'">\n <xsl:variable name="nCharToPrint">\n <xsl:choose>\n <xsl:when test="ancestor::m:fName">\n <xsl:choose>\n <xsl:when test="($iFirstOper=$iFirstNum) and\n\t\t\t\t\t\t\t\t\t\t\t($iFirstOper=string-length($sToParse)) and\n\t\t\t\t\t\t\t (substring($sRepOperWith-, string-length($sRepOperWith-))!=\'0\') and\n\t\t\t\t\t\t\t (substring($sRepOperWith-, string-length($sRepOperWith-))!=\'-\')">\n <xsl:value-of select="string-length($sToParse)" />\n </xsl:when>\n <xsl:when test="$iFirstOper < $iFirstNum">\n <xsl:value-of select="$iFirstOper - 1" />\n </xsl:when>\n <xsl:otherwise>\n <xsl:value-of select="$iFirstNum - 1" />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:otherwise>1</xsl:otherwise>\n </xsl:choose>\n </xsl:variable>\n\n <mml:mi>\n <xsl:call-template name="CreateTokenAttributes">\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="$sty" />\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="nCharToPrint" select="$nCharToPrint" />\n <xsl:with-param name="sTokenType" select="\'mi\'" />\n </xsl:call-template>\n <xsl:variable name="sWrite" select="translate(substring($sToParse, 1, $nCharToPrint), \' \', \' \')" />\n <xsl:value-of select="$sWrite" />\n </mml:mi>\n <xsl:call-template name="ParseMt">\n <xsl:with-param name="sToParse" select="substring($sToParse, $nCharToPrint+1)" />\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="$sty" />\n <xsl:with-param name="nor" select="$nor" />\n </xsl:call-template>\n </xsl:when>\n\n \x3c!-- Case II: There is an operator at position 1 --\x3e\n <xsl:when test="$fOperAtPos1=\'1\'">\n <mml:mo>\n <xsl:call-template name="CreateTokenAttributes">\n <xsl:with-param name="scr" />\n <xsl:with-param name="sty" />\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="sTokenType" select="\'mo\'" />\n </xsl:call-template>\n <xsl:value-of select="substring($sToParse,1,1)" />\n </mml:mo>\n <xsl:call-template name="ParseMt">\n <xsl:with-param name="sToParse" select="substring($sToParse, 2)" />\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="$sty" />\n <xsl:with-param name="nor" select="$nor" />\n </xsl:call-template>\n </xsl:when>\n\n \x3c!-- Case III: There is a number at position 1 --\x3e\n <xsl:otherwise>\n <xsl:variable name="sConsecNum">\n <xsl:call-template name="SNumStart">\n <xsl:with-param name="sToParse" select="$sToParse" />\n <xsl:with-param name="sPattern" select="$sRepNumWith0" />\n </xsl:call-template>\n </xsl:variable>\n <mml:mn>\n <xsl:call-template name="CreateTokenAttributes">\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="\'p\'" />\n <xsl:with-param name="nor" select="$nor" />\n <xsl:with-param name="sTokenType" select="\'mn\'" />\n </xsl:call-template>\n <xsl:value-of select="$sConsecNum" />\n </mml:mn>\n <xsl:call-template name="ParseMt">\n <xsl:with-param name="sToParse" select="substring-after($sToParse, $sConsecNum)" />\n <xsl:with-param name="scr" select="$scr" />\n <xsl:with-param name="sty" select="$sty" />\n <xsl:with-param name="nor" select="$nor" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:if>\n </xsl:template>\n\n \x3c!-- %%Template: SNumStart\n\n\t\tReturn the longest substring of sToParse starting from the\n\t\tstart of sToParse that is a number. In addition, it takes the\n\t\tpattern string, which is sToParse with all of its numbers\n\t\treplaced with a 0. sPattern should be the same length\n\t\tas sToParse\n\t--\x3e\n <xsl:template name="SNumStart">\n <xsl:param name="sToParse" select="\'\'" />\n \x3c!-- if we don\'t get anything, take the string itself --\x3e\n <xsl:param name="sPattern" select="\'$sToParse\'" />\n\n\n <xsl:choose>\n \x3c!-- the pattern says this is a number, recurse with the rest --\x3e\n <xsl:when test="substring($sPattern, 1, 1) = \'0\'">\n <xsl:call-template name="SNumStart">\n <xsl:with-param name="sToParse" select="$sToParse" />\n <xsl:with-param name="sPattern" select="substring($sPattern, 2)" />\n </xsl:call-template>\n </xsl:when>\n\n \x3c!-- the pattern says we\'ve run out of numbers. Take as many\n\t\t\t\tcharacters from sToParse as we shaved off sPattern --\x3e\n <xsl:otherwise>\n <xsl:value-of select="substring($sToParse, 1, string-length($sToParse) - string-length($sPattern))" />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n \x3c!-- %%Template SRepeatCharAcc\n\n\t\t\tThe core of SRepeatChar with an accumulator. The current\n\t\t\tstring is in param $acc, and we will double and recurse,\n\t\t\tif we\'re less than half of the required length or else just\n\t\t\tadd the right amount of characters to the accumulator and\n\t\t\treturn\n\t--\x3e\n <xsl:template name="SRepeatCharAcc">\n <xsl:param name="cchRequired" select="1" />\n <xsl:param name="ch" select="\'-\'" />\n <xsl:param name="acc" select="$ch" />\n\n <xsl:variable name="cchAcc" select="string-length($acc)" />\n <xsl:choose>\n <xsl:when test="(2 * $cchAcc) < $cchRequired">\n <xsl:call-template name="SRepeatCharAcc">\n <xsl:with-param name="cchRequired" select="$cchRequired" />\n <xsl:with-param name="ch" select="$ch" />\n <xsl:with-param name="acc" select="concat($acc, $acc)" />\n </xsl:call-template>\n </xsl:when>\n\n <xsl:otherwise>\n <xsl:value-of select="concat($acc, substring($acc, 1, $cchRequired - $cchAcc))" />\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n\n \x3c!-- %%Template SRepeatChar\n\n\t\t\tGenerates a string nchRequired long by repeating the given character ch\n\t--\x3e\n <xsl:template name="SRepeatChar">\n <xsl:param name="cchRequired" select="1" />\n <xsl:param name="ch" select="\'-\'" />\n\n <xsl:call-template name="SRepeatCharAcc">\n <xsl:with-param name="cchRequired" select="$cchRequired" />\n <xsl:with-param name="ch" select="$ch" />\n <xsl:with-param name="acc" select="$ch" />\n </xsl:call-template>\n </xsl:template>\n\n \x3c!-- %%Template SReplaceOperWithMinus\n\n\t\tGo through the given string and replace every instance\n\t\tof an operator with a minus \'-\'. This helps quickly identify\n\t\tthe first instance of an operator.\n\t--\x3e\n <xsl:template name="SReplaceOperWithMinus">\n <xsl:param name="sToParse" select="\'\'" />\n\n <xsl:value-of select="translate($sToParse, $sOperators, $sMinuses)" />\n </xsl:template>\n\n \x3c!-- %%Template SReplaceNumWithZero\n\n\t\tGo through the given string and replace every instance\n\t\tof an number with a zero \'0\'. This helps quickly identify\n\t\tthe first occurence of a number.\n\n\t\tConsiders the \'.\' and \',\' part of a number iff they are sandwiched\n\t\tbetween two other numbers. 0.3 will be recognized as a number,\n\t\tx.3 will not be. Since these characters can also be an operator, this\n\t\tshould be called before SReplaceOperWithMinus.\n\t--\x3e\n <xsl:template name="SReplaceNumWithZero">\n <xsl:param name="sToParse" select="\'\'" />\n\n \x3c!-- First do a simple replace. Numbers will all be come 0\'s.\n\t\t\tAfter this point, the pattern involving the . or , that\n\t\t\twe are looking for will become 0.0 or 0,0 --\x3e\n <xsl:variable name="sSimpleReplace" select="translate($sToParse, $sNumbers, $sZeros)" />\n\n \x3c!-- And then, replace 0.0 with just 000. This means that the . will\n\t\t\tbecome part of the number --\x3e\n <xsl:variable name="sReplacePeriod">\n <xsl:call-template name="SReplace">\n <xsl:with-param name="sInput" select="$sSimpleReplace" />\n <xsl:with-param name="sOrig" select="\'0.0\'" />\n <xsl:with-param name="sReplacement" select="\'000\'" />\n </xsl:call-template>\n </xsl:variable>\n\n \x3c!-- And then, replace 0,0 with just 000. This means that the , will\n\t\t\tbecome part of the number --\x3e\n <xsl:call-template name="SReplace">\n <xsl:with-param name="sInput" select="$sReplacePeriod" />\n <xsl:with-param name="sOrig" select="\'0,0\'" />\n <xsl:with-param name="sReplacement" select="\'000\'" />\n </xsl:call-template>\n </xsl:template>\n\n \x3c!-- Template to translate Word\'s borderBox properties into the menclose notation attribute\n The initial call to this SHOULD NOT pass an sAttribute. Subsequent calls to\n CreateMencloseNotationAttrFromBorderBoxAttr by CreateMencloseNotationAttrFromBorderBoxAttr will\n update the sAttribute as appropriate.\n\n CreateMencloseNotationAttrFromBorderBoxAttr looks at each attribute (fHideTop, fHideBot, etc.) one at a time\n in the order they are listed and passes a modified sAttribute to CreateMencloseNotationAttrFromBorderBoxAttr.\n Each successive call to CreateMencloseNotationAttrFromBorderBoxAttr knows which attribute to look at because\n the previous call should have omitted passing the attribute it just analyzed. This is why as you read lower\n and lower in the template that each call to CreateMencloseNotationAttrFromBorderBoxAttr has fewer and fewer attributes.\n --\x3e\n <xsl:template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:param name="fHideTop" />\n <xsl:param name="fHideBot" />\n <xsl:param name="fHideLeft" />\n <xsl:param name="fHideRight" />\n <xsl:param name="fStrikeH" />\n <xsl:param name="fStrikeV" />\n <xsl:param name="fStrikeBLTR" />\n <xsl:param name="fStrikeTLBR" />\n <xsl:param name="sAttribute" />\n\n <xsl:choose>\n <xsl:when test="string-length($sAttribute) = 0">\n <xsl:choose>\n <xsl:when test="string-length($fHideTop) > 0\n and string-length($fHideBot) > 0\n and string-length($fHideLeft) > 0\n and string-length($fHideRight) > 0">\n\n <xsl:choose>\n <xsl:when test="$fHideTop = 0\n and $fHideBot = 0\n and $fHideLeft = 0\n and $fHideRight = 0">\n \x3c!-- We can use \'box\' instead of top, bot, left, and right. Therefore,\n replace sAttribute with \'box\' and begin analyzing params fStrikeH\n and below. --\x3e\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute">\n <xsl:text>box</xsl:text>\n </xsl:with-param>\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n \x3c!-- Can\'t use \'box\', theremore, must analyze all attributes --\x3e\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fHideTop" select="$fHideTop" />\n <xsl:with-param name="fHideBot" select="$fHideBot" />\n <xsl:with-param name="fHideLeft" select="$fHideLeft" />\n <xsl:with-param name="fHideRight" select="$fHideRight" />\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute">\n \x3c!-- Assume using all four (left right top bottom). Subsequent calls\n will remove the sides which aren\'t to be includes. --\x3e\n <xsl:text>left right top bottom</xsl:text>\n </xsl:with-param>\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n </xsl:choose>\n </xsl:when>\n <xsl:otherwise>\n <xsl:choose>\n <xsl:when test="string-length($fHideTop) > 0">\n <xsl:choose>\n <xsl:when test="$fHideTop=1">\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fHideBot" select="$fHideBot" />\n <xsl:with-param name="fHideLeft" select="$fHideLeft" />\n <xsl:with-param name="fHideRight" select="$fHideRight" />\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute">\n <xsl:call-template name="SReplace">\n <xsl:with-param name="sInput" select="$sAttribute" />\n <xsl:with-param name="sOrig" select="\'top\'" />\n <xsl:with-param name="sReplacement" select="\'\'" />\n </xsl:call-template>\n </xsl:with-param>\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fHideBot" select="$fHideBot" />\n <xsl:with-param name="fHideLeft" select="$fHideLeft" />\n <xsl:with-param name="fHideRight" select="$fHideRight" />\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="$sAttribute" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:when test="string-length($fHideBot) > 0">\n <xsl:choose>\n <xsl:when test="$fHideBot=1">\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fHideLeft" select="$fHideLeft" />\n <xsl:with-param name="fHideRight" select="$fHideRight" />\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute">\n <xsl:call-template name="SReplace">\n <xsl:with-param name="sInput" select="$sAttribute" />\n <xsl:with-param name="sOrig" select="\'bottom\'" />\n <xsl:with-param name="sReplacement" select="\'\'" />\n </xsl:call-template>\n </xsl:with-param>\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fHideLeft" select="$fHideLeft" />\n <xsl:with-param name="fHideRight" select="$fHideRight" />\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="$sAttribute" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:when test="string-length($fHideLeft) > 0">\n <xsl:choose>\n <xsl:when test="$fHideLeft=1">\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fHideRight" select="$fHideRight" />\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute">\n <xsl:call-template name="SReplace">\n <xsl:with-param name="sInput" select="$sAttribute" />\n <xsl:with-param name="sOrig" select="\'left\'" />\n <xsl:with-param name="sReplacement" select="\'\'" />\n </xsl:call-template>\n </xsl:with-param>\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fHideRight" select="$fHideRight" />\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="$sAttribute" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:when test="string-length($fHideRight) > 0">\n <xsl:choose>\n <xsl:when test="$fHideRight=1">\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute">\n <xsl:call-template name="SReplace">\n <xsl:with-param name="sInput" select="$sAttribute" />\n <xsl:with-param name="sOrig" select="\'right\'" />\n <xsl:with-param name="sReplacement" select="\'\'" />\n </xsl:call-template>\n </xsl:with-param>\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fStrikeH" select="$fStrikeH" />\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="$sAttribute" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:when test="string-length($fStrikeH) > 0">\n <xsl:choose>\n <xsl:when test="$fStrikeH=1">\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="concat($sAttribute, \' horizontalstrike\')" />\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fStrikeV" select="$fStrikeV" />\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="$sAttribute" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:when test="string-length($fStrikeV) > 0">\n <xsl:choose>\n <xsl:when test="$fStrikeV=1">\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="concat($sAttribute, \' verticalstrike\')" />\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fStrikeBLTR" select="$fStrikeBLTR" />\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="$sAttribute" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:when test="string-length($fStrikeBLTR) > 0">\n <xsl:choose>\n <xsl:when test="$fStrikeBLTR=1">\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="concat($sAttribute, \' updiagonalstrike\')" />\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="fStrikeTLBR" select="$fStrikeTLBR" />\n <xsl:with-param name="sAttribute" select="$sAttribute" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:when test="string-length($fStrikeTLBR) > 0">\n <xsl:choose>\n <xsl:when test="$fStrikeTLBR=1">\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="sAttribute" select="concat($sAttribute, \' downdiagonalstrike\')" />\n </xsl:call-template>\n </xsl:when>\n <xsl:otherwise>\n <xsl:call-template name="CreateMencloseNotationAttrFromBorderBoxAttr">\n <xsl:with-param name="sAttribute" select="$sAttribute" />\n </xsl:call-template>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:when>\n <xsl:otherwise>\n <xsl:attribute name="notation">\n <xsl:value-of select="normalize-space($sAttribute)" />\n </xsl:attribute>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n \x3c!-- Tristate (true, false, neither) from string value --\x3e\n <xsl:template name="TFromStrVal">\n <xsl:param name="str" />\n <xsl:choose>\n <xsl:when test="$str = \'on\' or $str = \'1\' or $str = \'true\'">1</xsl:when>\n <xsl:when test="$str = \'off\' or $str = \'0\' or $str = \'false\'">0</xsl:when>\n <xsl:otherwise>-1</xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n \x3c!-- Return 0 iff $str is explicitly set to a false value.\n Return true otherwise --\x3e\n <xsl:template name="ForceFalseStrVal">\n <xsl:param name="str" />\n <xsl:variable name="tValue">\n <xsl:call-template name="TFromStrVal">\n <xsl:with-param name="str" select="$str"/>\n </xsl:call-template>\n </xsl:variable>\n <xsl:choose>\n <xsl:when test="$tValue = \'0\'">0</xsl:when>\n <xsl:otherwise>1</xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n\n \x3c!-- Return 1 iff $str is explicitly set to a true value.\n Return false otherwise --\x3e\n <xsl:template name="ForceTrueStrVal">\n <xsl:param name="str" />\n <xsl:variable name="tValue">\n <xsl:call-template name="TFromStrVal">\n <xsl:with-param name="str" select="$str"/>\n </xsl:call-template>\n </xsl:variable>\n <xsl:choose>\n <xsl:when test="$tValue = \'1\'">1</xsl:when>\n <xsl:otherwise>0</xsl:otherwise>\n </xsl:choose>\n </xsl:template>\n</xsl:stylesheet>\n'.trim());t.xsl=l}));
- ;/*!node_modules/office-viewer/lib/openxml/math/convertOOML.js*/
- amis.define("a97dc2f",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=e("e10d0f1");r.convertOOXML=function(e){var r=new XSLTProcessor;return r.importStylesheet(o.xsl),r.transformToFragment(e,document)}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderMath.js*/
- amis.define("0271386",(function(e,n,t,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var c=e("a97dc2f");n.renderOMath=function(e,n){return c.convertOOXML(n.element)}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderParagraph.js*/
- amis.define("3971faf",(function(e,r,n,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),d=e("8934861"),i=e("ede7588"),l=e("84c394d"),f=e("ab3f86f"),o=e("2f6a93d"),p=e("23d147c"),s=e("2feda74"),c=e("5cc94bd"),u=e("0022f23"),h=e("4f5db42"),b=e("72e73eb"),v=e("0271386");r.default=function(e,r,n,a){var y,m;void 0===n&&(n=!0),void 0===a&&(a=!1),e.currentParagraph=r;var C=d.createElement("p");e.addClass(C,"p");var k=r.properties;u.setElementStyle(e,C,k),C.style.position="relative",k.numPr&&d.appendChild(C,c.renderNumbering(C,e,k.numPr));var g=!1;k.tabs&&k.tabs.length&&d.appendChild(C,h.renderTab(e,k.tabs[0],!0));try{for(var M=t.__values(r.children),H=M.next();!H.done;H=M.next()){var P=H.value;if(P instanceof i.Run)"begin"===P.fldChar?g=!0:P&&(g=!1),d.appendChild(C,o.default(e,P,r,g,a));else if(P instanceof l.BookmarkStart)d.appendChild(C,s.renderBookmarkStart(e,P));else if(P instanceof f.Hyperlink){var _=p.renderHyperLink(e,P,r);d.appendChild(C,_)}else P instanceof b.OMath?d.appendChild(C,v.renderOMath(e,P)):console.warn("unknow pargraph type",P)}}catch(e){y={error:e}}finally{try{H&&!H.done&&(m=M.return)&&m.call(M)}finally{if(y)throw y.error}}return""===C.innerHTML&&n&&(C.innerHTML=" "),C}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderHeader.js*/
- amis.define("cd15da5",(function(e,r,a,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l=e("68b98b9"),d=e("208f98d"),t=e("3971faf"),f=e("8934861"),i=e("9719fc0"),c=e("c067fd2");r.renderHeader=function(e,r){var a,n,o=f.createElement("div");try{for(var u=l.__values(r.children),s=u.next();!s.done;s=u.next()){var v=s.value;if(v instanceof d.Paragraph){var h=t.default(e,v,!0,!0);f.appendChild(o,h)}else if(v instanceof c.Table){var p=i.default(e,v);f.appendChild(o,p)}else console.warn("unknown child",v)}}catch(e){a={error:e}}finally{try{s&&!s.done&&(n=u.return)&&n.call(u)}finally{if(a)throw a.error}}return o}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderSection.js*/
- amis.define("5c8c3e6",(function(e,t,a,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("8934861"),n=e("cd15da5");t.renderSection=function(e,t,a,r){var d=o.createElement("section");d.style.position="relative",t.backgroundColor&&(d.style.background=t.backgroundColor),r.page&&(r.pageMarginBottom&&(d.style.marginBottom=r.pageMarginBottom+"px"),r.pageShadow&&(d.style.boxShadow="0 0 8px rgba(0, 0, 0, 0.5)"),r.pageBackground&&(d.style.background=r.pageBackground));var i=a.properties,l=i.pageSize;l&&(r.ignoreWidth||(d.style.width=l.width),r.ignoreHeight||(d.style.height=l.height)),r.padding?d.style.padding=r.padding:(c=i.pageMargin)&&(d.style.paddingLeft=c.left||"0",d.style.paddingRight=c.right||"0",d.style.paddingTop=c.top||"0",d.style.paddingBottom=c.bottom||"0"),i.cols&&i.cols.num&&i.cols.num>1&&(d.style.columnCount=""+i.cols.num,i.cols.space&&(d.style.columnGap=i.cols.space)),e.currentPage++;var g="auto";if(i.pageSize&&i.pageSize.width&&(g=i.pageSize.width),i.headers&&r.page&&r.renderHeader){var s=i.headers,p=null;if(s.even&&e.currentPage%2==0?p=n.renderHeader(e,s.even):s.default?p=n.renderHeader(e,s.default):console.warn("can not find header",e.currentPage,i.headers),p)p.style.position="absolute",(c=i.pageMargin)&&c.header&&(p.style.top=c.header,p.style.width=g),d.appendChild(p)}if(i.footers&&r.page&&r.renderFooter){var c,u=i.footers,h=null;if(u.even&&e.currentPage%2==0?h=n.renderHeader(e,u.even):u.default?h=n.renderHeader(e,u.default):console.warn("can not find footer",e.currentPage,i.footers),h)h.style.position="absolute",(c=i.pageMargin)&&c.footer&&(h.style.bottom=c.footer,h.style.width=g),d.appendChild(h)}return d}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderBody.js*/
- amis.define("22d8f42",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),i=e("8934861"),o=e("208f98d"),l=e("c067fd2"),c=e("3971faf"),d=e("5c8c3e6"),f=e("9719fc0");function s(e,r,t,n,a,o,l,c){var f=0===a.children.length;if(i.appendChild(a,c),!f&&function(e,r,t){if(e.breakPage)return e.breakPage=!1,!0;var n=t.getBoundingClientRect();return n.top+n.height>r.bottom||n.left>r.right}(e,o,c)){var s=c.cloneNode(!0);i.removeChild(a,c);var u=d.renderSection(e,r,l,t);return i.appendChild(n,u),i.appendChild(u,s),{sectionEl:u,sectionEnd:o=p(l,u)}}return{sectionEl:a,sectionEnd:o}}function p(e,r){var t=r.getBoundingClientRect(),n=e.properties.pageMargin,a=t.top+t.height;(null==n?void 0:n.bottom)&&(a-=parseInt(n.bottom.replace("px",""),10));var i=t.left+t.width;return(null==n?void 0:n.right)&&(i-=parseInt(n.right.replace("px",""),10)),{bottom:a,right:i}}function u(e,r,t){var n=r.properties,a=n.pageSize;if(t.zoomFitWidth&&!t.ignoreWidth){var i=null==a?void 0:a.width;if(e&&i){var o=parseInt(i.replace("px",""),10);if(n.pageMargin){var l=n.pageMargin;o+=l.left?parseInt(l.left.replace("px",""),10):0,o+=l.right?parseInt(l.right.replace("px",""),10):0}return e/o}}return 1}function h(e,r,t,n,i,d,u){setTimeout((function(){var h,v,g=p(d,i);try{for(var y=a.__values(d.children),m=y.next();!m.done;m=y.next()){var _=m.value;if(_ instanceof o.Paragraph){var b=c.default(e,_),x=s(e,r,n,t,i,g,d,b);i=x.sectionEl,g=x.sectionEnd}else if(_ instanceof l.Table){var w=f.default(e,_);x=s(e,r,n,t,i,g,d,w);i=x.sectionEl,g=x.sectionEnd}else console.warn("unknown child",_)}}catch(e){h={error:e}}finally{try{m&&!m.done&&(v=y.return)&&v.call(y)}finally{if(h)throw h.error}}u&&(i.style.marginBottom="0")}),0)}r.default=function(e,r,t,n,s,p){var v,g,y,m,_=p.page||!1,b=e.getBoundingClientRect().width-2*(p.pageWrapPadding||0),x=[],w=0,C=s.sections,E=C.length,M=!1;try{for(var P=a.__values(C),z=P.next();!z.done;z=P.next()){var I=z.value;x.push(u(b,I,p)),r.currentSection=I;var W=d.renderSection(r,n,I,p);if(i.appendChild(t,W),(w+=1)===E&&(M=!0),_)h(r,n,t,p,W,I,M);else try{for(var k=(y=void 0,a.__values(I.children)),B=k.next();!B.done;B=k.next()){var S=B.value;if(S instanceof o.Paragraph){var T=c.default(r,S);i.appendChild(W,T)}else if(S instanceof l.Table){var O=f.default(r,S);i.appendChild(W,O)}else console.warn("unknown child",S)}}catch(e){y={error:e}}finally{try{B&&!B.done&&(m=k.return)&&m.call(k)}finally{if(y)throw y.error}}}}catch(e){v={error:e}}finally{try{z&&!z.done&&(g=P.return)&&g.call(P)}finally{if(v)throw v.error}}setTimeout((function(){if(p.zoom)t.style.transformOrigin="0 0",t.style.transform="scale(".concat(p.zoom,")");else if(p.page&&p.zoomFitWidth&&!p.ignoreWidth){var e=Math.min.apply(Math,a.__spreadArray([],a.__read(x),!1));t.style.transformOrigin="0 0",t.style.transform="scale(".concat(e,")")}}),0)}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderDocument.js*/
- amis.define("4493233",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("8934861"),u=e("22d8f42");t.default=function(e,t,r,a){var d=n.createElement("article");return u.default(e,t,d,r,r.body,a),d}}));
- ;/*!node_modules/office-viewer/lib/util/blob.js*/
- amis.define("31250a6",(function(e,d,n,o){"use strict";Object.defineProperty(d,"__esModule",{value:!0}),d.downloadBlob=function(e,d){void 0===d&&(d="file.txt");var n=URL.createObjectURL(e),o=document.createElement("a");o.href=n,o.download=d,document.body.appendChild(o),o.dispatchEvent(new MouseEvent("click",{bubbles:!0,cancelable:!0,view:window})),document.body.removeChild(o)}}));
- ;/*!node_modules/office-viewer/lib/openxml/word/numbering/Lvl.js*/
- amis.define("f2173d2",(function(e,a,r,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var l=e("68b98b9"),s=e("ede7588"),n=e("0720cd6"),c=e("208f98d"),i=function(){function e(){this.start=1,this.lvlText="%1.",this.isLgl=!1,this.lvlJc="start",this.suff="space"}return e.fromXML=function(a,r){var t,i,u=new e;u.ilvl=r.getAttribute("w:ilvl");try{for(var o=l.__values(r.children),v=o.next();!v.done;v=o.next()){var f=v.value,w=f.tagName;switch(w){case"w:start":u.start=n.getValNumber(f);break;case"w:numFmt":u.numFmt=n.getVal(f);break;case"w:lvlText":u.lvlText=n.getVal(f);break;case"w:lvlJc":u.lvlJc=n.getVal(f);break;case"w:legacy":case"w:pStyle":break;case"w:pPr":u.pPr=c.Paragraph.parseParagraphPr(a,f);break;case"w:rPr":u.rPr=s.Run.parseRunPr(a,f);break;case"w:isLgl":u.isLgl=n.getValBoolean(f);break;default:console.warn("Lvl: Unknown tag ",w,f)}}}catch(e){t={error:e}}finally{try{v&&!v.done&&(i=o.return)&&i.call(o)}finally{if(t)throw t.error}}return u},e}();a.Lvl=i}));
- ;/*!node_modules/office-viewer/lib/openxml/word/numbering/AbstractNum.js*/
- amis.define("526fa12",(function(e,t,r,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("68b98b9"),n=e("f2173d2"),u=e("0720cd6"),i=function(){function e(){this.lvls={}}return e.fromXML=function(t,r){var l,i,v=new e;v.abstractNumId=r.getAttribute("w:abstractNumId")||"",v.multiLevelType=r.getAttribute("w:multiLevelType");var m=r.getElementsByTagName("w:lvl");try{for(var f=a.__values(m),o=f.next();!o.done;o=f.next()){var c=o.value,s=c.getAttribute("w:ilvl")||"";v.lvls[s]=n.Lvl.fromXML(t,c)}}catch(e){l={error:e}}finally{try{o&&!o.done&&(i=f.return)&&i.call(f)}finally{if(l)throw l.error}}var y=r.getElementsByTagName("w:multiLevelType").item(0);return y&&(v.multiLevelType=u.getVal(y)),v},e}();t.AbstractNum=i}));
- ;/*!node_modules/office-viewer/lib/openxml/word/numbering/Num.js*/
- amis.define("74b6f5f",(function(e,r,t,l){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),n=e("0720cd6"),v=e("f2173d2"),i=function(){function e(){this.lvlOverride={lvls:{}}}return e.fromXML=function(r,t){var l,i,u=new e;u.numId=t.getAttribute("w:numId")||"";var d=t.getElementsByTagName("w:abstractNumId").item(0);d&&(u.abstractNumId=n.getVal(d));var s=t.getElementsByTagName("w:lvlOverride").item(0);if(s)try{for(var c=a.__values(s.children),f=c.next();!f.done;f=c.next()){var m=f.value,o=m.tagName;switch(o){case"w:lvl":var b=m.getAttribute("w:lvlId")||"";u.lvlOverride.lvls[b]=v.Lvl.fromXML(r,m);break;case"w:startOverride":var w=m.getAttribute("w:lvlId")||"";u.lvlOverride.lvls[w]&&(u.lvlOverride.lvls[w].start=n.getValNumber(m));break;default:console.warn("Num: Unknown tag ",o,m)}}}catch(e){l={error:e}}finally{try{f&&!f.done&&(i=c.return)&&i.call(c)}finally{if(l)throw l.error}}return u},e}();r.Num=i}));
- ;/*!node_modules/office-viewer/lib/openxml/word/numbering/Numbering.js*/
- amis.define("a3d05a8",(function(r,t,a,e){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r("68b98b9"),u=r("526fa12"),m=r("74b6f5f"),o=function(){function r(){this.abstractNums={},this.nums={},this.numData={}}return r.fromXML=function(t,a){var e,o,f,l,s=new r;try{for(var i=n.__values(a.getElementsByTagName("w:abstractNum")),c=i.next();!c.done;c=i.next()){var d=c.value,v=u.AbstractNum.fromXML(t,d);s.abstractNums[v.abstractNumId]=v}}catch(r){e={error:r}}finally{try{c&&!c.done&&(o=i.return)&&o.call(i)}finally{if(e)throw e.error}}try{for(var y=n.__values(a.getElementsByTagName("w:num")),b=y.next();!b.done;b=y.next()){var N=b.value,h=m.Num.fromXML(t,N);s.nums[h.numId]=h,s.numData[h.numId]={}}}catch(r){f={error:r}}finally{try{b&&!b.done&&(l=y.return)&&l.call(y)}finally{if(f)throw f.error}}return s},r}();t.Numbering=o}));
- ;/*!node_modules/office-viewer/lib/util/mergeRun.js*/
- amis.define("ebcd228",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),l=e("b39acee");function i(e,r,t){var n=r?l.parsePr(e,r):{},a=t?l.parsePr(e,t):{};return JSON.stringify(n)===JSON.stringify(a)}function o(e,r){var t=e.getElementsByTagName("w:t")[0],n=r.getElementsByTagName("w:t")[0];if(t&&n){var a=n.textContent||"";t.textContent+=a||""}}function f(e){var r,t,n=e.tagName,l=e.children,i=!1,o=!1;try{for(var f=a.__values(l),u=f.next();!u.done;u=f.next()){var c=u.value;if("w:t"===c.tagName&&(i=!0,o="preserve"===c.getAttribute("xml:space")))break;if("w:tab"===c.tagName)return!1}}catch(e){r={error:e}}finally{try{u&&!u.done&&(t=f.return)&&t.call(f)}finally{if(r)throw r.error}}return"w:r"===n&&i&&!o}function u(e,r){var t,n,l,u,c=[],s=null;try{for(var v=a.__values(r.children),y=v.next();!y.done;y=v.next()){var g=y.value,m=g.tagName;if(f(g))if(s)i(e,s.getElementsByTagName("w:rPr")[0],g.getElementsByTagName("w:rPr")[0])?o(s,g):(s=g,c.push(g));else s=g,c.push(g);else"w:proofErr"!==m&&(s=null,c.push(g))}}catch(e){t={error:e}}finally{try{y&&!y.done&&(n=v.return)&&n.call(v)}finally{if(t)throw t.error}}r.innerHTML="";try{for(var d=a.__values(c),h=d.next();!h.done;h=d.next()){var w=h.value;r.appendChild(w)}}catch(e){l={error:e}}finally{try{h&&!h.done&&(u=d.return)&&u.call(d)}finally{if(l)throw l.error}}}r.canMerge=f,r.mergeRun=function(e,r){var t,n,l=r.getElementsByTagName("w:p");try{for(var i=a.__values(l),o=i.next();!o.done;o=i.next()){u(e,o.value)}}catch(e){t={error:e}}finally{try{o&&!o.done&&(n=i.return)&&n.call(i)}finally{if(t)throw t.error}}},r.mergeRunInP=u}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Header.js*/
- amis.define("52b7d7d",(function(e,r,a,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),f=e("39af250"),l=e("f81d3e4"),o=e("208f98d"),d=function(){function e(){this.children=[]}return e.fromXML=function(r,a){var n,d,i=new e,c=[];i.children=c;var u=a,s=a.firstElementChild;!s||"w:hdr"!==s.tagName&&"w:ftr"!==s.tagName||(u=s);try{for(var h=t.__values(f.mergeSdt(u)),v=h.next();!v.done;v=h.next()){var m=v.value,w=m.tagName;switch(w){case"w:p":var b=o.Paragraph.fromXML(r,m);c.push(b);break;case"w:tbl":var p=l.parseTable(r,m);c.push(p);break;default:console.warn("Header.fromXML Unknown key",w,m)}}}catch(e){n={error:e}}finally{try{v&&!v.done&&(d=h.return)&&d.call(h)}finally{if(n)throw n.error}}return i},e}();r.Header=d}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Section.js*/
- amis.define("01a76b8",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i=e("68b98b9"),o=e("9f6b1b2"),n=e("0720cd6"),s=e("52b7d7d");function c(e,r,t){var a=r.getAttribute("w:type"),i=r.getAttribute("r:id");if(a&&i){var o=e.getDocumentRels(i);if(o){var n=e.getXML("/word/"+o.target);if(n)return{headerType:a,header:s.Header.fromXML(e,n)}}}return null}var d=function(){function e(){this.properties={},this.children=[]}return e.prototype.addChild=function(e){this.children.push(e)},e.parsePr=function(e,r,t){var a,s,d={headers:{},footers:{}};try{for(var p=i.__values(r.children),h=p.next();!h.done;h=p.next()){var f=h.value;switch(f.tagName){case"w:pgSz":d.pageSize={width:o.parseSize(f,"w:w"),height:o.parseSize(f,"w:h")};break;case"w:pgMar":d.pageMargin={left:o.parseSize(f,"w:left"),right:o.parseSize(f,"w:right"),top:o.parseSize(f,"w:top"),bottom:o.parseSize(f,"w:bottom"),header:o.parseSize(f,"w:header"),footer:o.parseSize(f,"w:footer"),gutter:o.parseSize(f,"w:gutter")};break;case"w:headerReference":var u=c(e,f);u&&(d.headers[u.headerType]=u.header);break;case"w:footerReference":var w=c(e,f);w&&(d.footers[w.headerType]=w.header);break;case"w:cols":var l={},g=n.getAttrNumber(f,"w:num",1);l.num=g;var b=o.parseSize(f,"w:space");b&&(l.space=b),d.cols=l}}}catch(e){a={error:e}}finally{try{h&&!h.done&&(s=p.return)&&s.call(p)}finally{if(a)throw a.error}}return d},e}();r.Section=d}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Body.js*/
- amis.define("e0fd613",(function(e,t,r,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("68b98b9"),i=e("39af250"),a=e("f81d3e4"),c=e("208f98d"),s=e("01a76b8"),d=function(){function e(){this.sections=[],this.currentSection=new s.Section,this.sections.push(this.currentSection)}return e.prototype.addChild=function(e){this.currentSection.addChild(e)},e.prototype.addSection=function(e){this.currentSection.properties=e,this.currentSection=new s.Section,this.sections.push(this.currentSection)},e.fromXML=function(t,r){var n,d,u=new e;try{for(var f=o.__values(i.mergeSdt(r)),h=f.next();!h.done;h=f.next()){var l=h.value,p=l.tagName;switch(p){case"w:p":var S=c.Paragraph.fromXML(t,l);u.addChild(S);break;case"w:tbl":var b=a.parseTable(t,l);u.addChild(b);break;case"w:bookmarkStart":case"w:bookmarkEnd":break;case"w:sectPr":u.addSection(s.Section.parsePr(t,l,u));break;default:console.warn("Body.fromXML Unknown key",p,l)}}}catch(e){n={error:e}}finally{try{h&&!h.done&&(d=f.return)&&d.call(f)}finally{if(n)throw n.error}}return u.sections=u.sections.filter((function(e){return e.children.length>0})),u},e}();t.Body=d}));
- ;/*!node_modules/office-viewer/lib/openxml/word/WDocument.js*/
- amis.define("966955a",(function(e,r,o,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),n=e("b12ecca"),l=e("57a282e"),c=e("e0fd613");var i=function(){function e(){}return e.fromXML=function(r,o){var t,i,u,m,h=new e,d=o.getElementsByTagName("w:body").item(0);d&&(h.body=c.Body.fromXML(r,d));var f=o.getElementsByTagName("w:background").item(0);if(f){var s={};try{for(var w=a.__values(f.attributes),b=w.next();!b.done;b=w.next()){switch(b.value.name){case"w:color":s.color=l.parseColorAttr(r,f,"w:color");break;case"w:themeColor":s.themeColor=l.parseColorAttr(r,f,"w:themeColor");break;case"w:themeShade":s.themeShade=l.parseColorAttr(r,f,"w:themeShade");break;case"w:themeTint":s.themeTint=l.parseColorAttr(r,f,"w:themeTint");break;default:console.log("unknown background",f)}}}catch(e){t={error:e}}finally{try{b&&!b.done&&(i=w.return)&&i.call(w)}finally{if(t)throw t.error}}try{for(var v=a.__values(f.children),y=v.next();!y.done;y=v.next()){if("v:background"===y.value.tagName);else console.log("unknown background",f)}}catch(e){u={error:e}}finally{try{y&&!y.done&&(m=v.return)&&m.call(v)}finally{if(u)throw u.error}}h.backgroundColor=function(e){if(e.color)return e.color;if(e.themeColor){var r=e.themeColor;if(e.themeTint){var o=new n.Color(r),t=parseInt(e.themeTint,16);o.tint(t/256)}else e.themeShade&&(o=new n.Color(r),t=parseInt(e.themeShade,16),o.lumMod(t/256))}return"#FFFFF"}(s)}return h},e}();r.WDocument=i}));
- ;/*!node_modules/office-viewer/lib/package/ZipPackageParser.js*/
- amis.define("e16e8e9",(function(t,e,r,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=t("node_modules/fflate/lib/index.cjs"),o=function(){function t(){}return t.prototype.load=function(t){this.zip||(this.zip=n.unzipSync(new Uint8Array(t)))},t.prototype.getXML=function(t){var e=this.getFileByType(t,"string"),r=(new DOMParser).parseFromString(e,"application/xml"),i=r.getElementsByTagName("parsererror").item(0);if(i)throw new Error(i.textContent||"can't parse xml");return r},t.prototype.getFileByType=function(t,e){void 0===e&&(e="string"),t=t.startsWith("/")?t.slice(1):t;var r=this.zip[t];if(!r)for(var i in this.zip)if(i.toLowerCase()===t.toLowerCase()){r=this.zip[i];break}if(r){if("string"===e)return n.strFromU8(r);if("blob"===e)return new Blob([r]);if("uint8array"===e)return r}return console.warn("getFileByType",t,"not found"),null},t.prototype.getString=function(t){return this.getFileByType(t,"string")},t.prototype.saveFile=function(t,e){"string"==typeof e&&(e=n.strToU8(e)),this.zip[t]=e},t.prototype.fileExists=function(t){if((t=t.startsWith("/")?t.slice(1):t)in this.zip)return!0;for(var e in this.zip)if(e.toLowerCase()===t.toLowerCase())return!0;return!1},t.prototype.generateZip=function(t){return this.zip["word/document.xml"]=n.strToU8(t),new Blob([n.zipSync(this.zip)])},t}();e.default=o}));
- ;/*!node_modules/office-viewer/lib/word/render/renderFont.js*/
- amis.define("889b671",(function(e,n,r,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=e("68b98b9"),l=e("8934861");n.renderFont=function(e){var n,r;if(!e)return null;var t=e.fonts;if(!t||!t.length)return null;var o=l.createElement("style"),f="/** embedded fonts **/";try{for(var c=a.__values(e.fonts),u=c.next();!u.done;u=c.next()){var i=u.value,s=i.name.replace(/['\\]/g,""),d=i.url;s&&d&&(f+="\n @font-face {\n font-family: '".concat(s,"';\n src: url('").concat(d,"');\n }\n "))}}catch(e){n={error:e}}finally{try{u&&!u.done&&(r=c.return)&&r.call(c)}finally{if(n)throw n.error}}return o.innerHTML=f,o}}));
- ;/*!node_modules/office-viewer/lib/util/isObject.js*/
- amis.define("32ed37c",(function(e,t,r,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isObject=function(e){return"object"==typeof e&&!Array.isArray(e)&&null!==e}}));
- ;/*!node_modules/office-viewer/lib/util/createObject.js*/
- amis.define("3c5c9a9",(function(e,t,r,c){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),a=e("32ed37c");function u(e,t){void 0===t&&(t=!0);var r=e&&e.__super?Object.create(e.__super,{__super:{value:e.__super,writable:!1,enumerable:!1}}):Object.create(Object.prototype);return t&&e&&Object.keys(e).forEach((function(t){return r[t]=e[t]})),r}t.cloneObject=u,t.createObject=function(e,t,r){e&&Object.isFrozen(e)&&(e=u(e));var c=e?Object.create(e,n.__assign(n.__assign({},r),{__super:{value:e,writable:!1,enumerable:!1}})):Object.create(Object.prototype,r);return t&&a.isObject(t)&&Object.keys(t).forEach((function(e){return c[e]=t[e]})),c}}));
- ;/*!node_modules/office-viewer/lib/util/replaceVar.js*/
- amis.define("3f75d59",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),l=e("379c540"),o=e("3c5c9a9");function i(e,r,t){var n=r.textContent||"";r.textContent=c(e,n,t)}function c(e,r,t){var n=e.renderOptions.evalVar;if(r.startsWith("{{")){var a=n(r=r.replace(/^{{/g,"").replace(/}}$/g,""),t);return null!=a?String(a):(console.warn("var error: [",r,"] not found in data"),"")}return r}var s=1;function u(e,r,t,n){return void 0===n&&(n=!1),a.__awaiter(this,void 0,void 0,(function(){var o,i,u,d,f,v,y;return a.__generator(this,(function(a){switch(a.label){case 0:return r.getAttribute("downloaded")?[2]:(o=r.getAttribute("descr")||"",i=c(e,o,t),r.setAttribute("descrVar",i),n&&i?(u=r.parentElement.parentElement,(d=u.getElementsByTagName("a:blip").item(0))?(f="rIdn".concat(s),d.setAttribute("r:embed",f),[4,fetch(i)]):[3,3]):[3,4]);case 1:return[4,a.sent().arrayBuffer()];case 2:v=a.sent(),e.saveNewImage(f,new Uint8Array(v)),r.setAttribute("downloaded","true"),s++,a.label=3;case 3:(y=l.Pic.fromXML(e,u))&&y.blipFill&&y.blipFill.blip&&y.blipFill.blip.embled,a.label=4;case 4:return[2]}}))}))}function d(e,r,t){return void 0===t&&(t=!1),a.__awaiter(this,void 0,void 0,(function(){var n,l,c,s,d,v,y,b,h,_,g,m,w,p,x,N,E,B,T,A,C,O,P,V,F,j,I,M,S,W,L,U,X,$,k,q,z,D,G;return a.__generator(this,(function(H){switch(H.label){case 0:n=e.renderOptions.evalVar,l=e.renderOptions.data,c=r.parentNode,s=r.getElementsByTagName("w:tc"),d=!1,v=[];try{for(y=a.__values(s),b=y.next();!b.done;b=y.next()){h=b.value,A=h.getElementsByTagName("w:t");try{for(U=void 0,_=a.__values(A),g=_.next();!g.done;g=_.next())V=g.value,(m=V.textContent||"").startsWith("{{#")&&(w=/{{#([^\}]+)}}/.exec(m))&&w.length>0&&(d=!0,p=w[1],x=n(p,l),Array.isArray(x)&&(v=x),V.textContent=V.textContent.replace("{{#".concat(p,"}}"),"")),-1!==m.indexOf("{{/}}")&&(V.textContent=V.textContent.replace("{{/}}",""))}catch(e){U={error:e}}finally{try{g&&!g.done&&(X=_.return)&&X.call(_)}finally{if(U)throw U.error}}}}catch(e){W={error:e}}finally{try{b&&!b.done&&(L=y.return)&&L.call(y)}finally{if(W)throw W.error}}if(!d)return[3,16];H.label=1;case 1:H.trys.push([1,13,14,15]),N=a.__values(v),E=N.next(),H.label=2;case 2:if(E.done)return[3,12];B=E.value,T=function(e){var r,t,n,l,o,i=e.cloneNode(!0);f(i);var c=[].slice.call(i.getElementsByTagName("w:p"));try{for(var s=a.__values(c),u=s.next();!u.done;u=s.next()){f(u.value)}}catch(e){r={error:e}}finally{try{u&&!u.done&&(t=s.return)&&t.call(s)}finally{if(r)throw r.error}}var d=[].slice.call(i.getElementsByTagName("w:cnfStyle"));try{for(var v=a.__values(d),y=v.next();!y.done;y=v.next()){var b=y.value;null===(o=b.parentElement)||void 0===o||o.removeChild(b)}}catch(e){n={error:e}}finally{try{y&&!y.done&&(l=v.return)&&l.call(v)}finally{if(n)throw n.error}}return i}(r),A=T.getElementsByTagName("w:t"),C=o.createObject(l,B);try{for(q=void 0,O=a.__values(A),P=O.next();!P.done;P=O.next())V=P.value,i(e,V,C)}catch(e){q={error:e}}finally{try{P&&!P.done&&(z=O.return)&&z.call(O)}finally{if(q)throw q.error}}H.label=3;case 3:H.trys.push([3,8,9,10]),D=void 0,F=a.__values(T.getElementsByTagName("pic:cNvPr")),j=F.next(),H.label=4;case 4:return j.done?[3,7]:(I=j.value,[4,u(e,I,C,t)]);case 5:H.sent(),H.label=6;case 6:return j=F.next(),[3,4];case 7:return[3,10];case 8:return M=H.sent(),D={error:M},[3,10];case 9:try{j&&!j.done&&(G=F.return)&&G.call(F)}finally{if(D)throw D.error}return[7];case 10:c.insertBefore(T,r),H.label=11;case 11:return E=N.next(),[3,2];case 12:return[3,15];case 13:return S=H.sent(),$={error:S},[3,15];case 14:try{E&&!E.done&&(k=N.return)&&k.call(N)}finally{if($)throw $.error}return[7];case 15:c.removeChild(r),H.label=16;case 16:return[2]}}))}))}function f(e){for(;e.attributes.length>0;)e.removeAttributeNode(e.attributes[0])}function v(e,r,t){return void 0===t&&(t=!1),a.__awaiter(this,void 0,void 0,(function(){var n,l,o,i,c,s,u;return a.__generator(this,(function(f){switch(f.label){case 0:n=[].slice.call(r.getElementsByTagName("w:tr")),f.label=1;case 1:f.trys.push([1,6,7,8]),l=a.__values(n),o=l.next(),f.label=2;case 2:return o.done?[3,5]:(i=o.value,[4,d(e,i,t)]);case 3:f.sent(),f.label=4;case 4:return o=l.next(),[3,2];case 5:return[3,8];case 6:return c=f.sent(),s={error:c},[3,8];case 7:try{o&&!o.done&&(u=l.return)&&u.call(l)}finally{if(s)throw s.error}return[7];case 8:return[2]}}))}))}function y(e,r){return a.__awaiter(this,void 0,void 0,(function(){var t,n,l,o,i,c;return a.__generator(this,(function(s){switch(s.label){case 0:s.trys.push([0,5,6,7]),t=a.__values(r.getElementsByTagName("pic:cNvPr")),n=t.next(),s.label=1;case 1:return n.done?[3,4]:(l=n.value,[4,u(e,l,e.renderOptions.data,!0)]);case 2:s.sent(),s.label=3;case 3:return n=t.next(),[3,1];case 4:return[3,7];case 5:return o=s.sent(),i={error:o},[3,7];case 6:try{n&&!n.done&&(c=t.return)&&c.call(t)}finally{if(i)throw i.error}return[7];case 7:return[2]}}))}))}r.replaceT=i,r.replaceVar=function(e,r,t){return void 0===t&&(t=!1),a.__awaiter(this,void 0,void 0,(function(){return a.__generator(this,(function(n){switch(n.label){case 0:return[4,v(e,r,t)];case 1:return n.sent(),t?[4,y(e,r)]:[3,3];case 2:n.sent(),n.label=3;case 3:return[2]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/openxml/word/Note.js*/
- amis.define("c59885b",(function(e,r,a,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),o=e("f81d3e4"),i=e("208f98d"),d=function(){function e(){this.children=[]}return e.prototype.addChild=function(e){this.children.push(e)},e.fromXML=function(r,a){var n,d,l=new e;try{for(var c=t.__values(a.children),f=c.next();!f.done;f=c.next()){var u=f.value,h=u.tagName;switch(h){case"w:p":var s=i.Paragraph.fromXML(r,u);l.addChild(s);break;case"w:tbl":var v=o.parseTable(r,u);l.addChild(v);break;default:console.warn("Note.fromXML unknown tag",h,u)}}}catch(e){n={error:e}}finally{try{f&&!f.done&&(d=c.return)&&d.call(c)}finally{if(n)throw n.error}}return l},e}();r.Note=d}));
- ;/*!node_modules/office-viewer/lib/word/parse/Footnotes.js*/
- amis.define("17304b2",(function(e,t,r,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),a=e("c59885b");t.parseFootnotes=function(e,t){var r,o,l={},i=[].slice.call(t.getElementsByTagName("w:footnote"));try{for(var c=n.__values(i),f=c.next();!f.done;f=c.next()){var u=f.value,s=a.Note.fromXML(e,u);l[u.getAttribute("w:id")]=s}}catch(e){r={error:e}}finally{try{f&&!f.done&&(o=c.return)&&o.call(c)}finally{if(r)throw r.error}}return l}}));
- ;/*!node_modules/office-viewer/lib/word/parse/parseEndnotes.js*/
- amis.define("ab0eec0",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),l=e("c59885b");r.parseEndnotes=function(e,r){var t,n,o={},i=[].slice.call(r.getElementsByTagName("w:endnote"));try{for(var c=a.__values(i),u=c.next();!u.done;u=c.next()){var f=u.value,s=l.Note.fromXML(e,f);o[f.getAttribute("w:id")]=s}}catch(e){t={error:e}}finally{try{u&&!u.done&&(n=c.return)&&n.call(c)}finally{if(t)throw t.error}}return o}}));
- ;/*!node_modules/office-viewer/lib/word/render/renderNotes.js*/
- amis.define("c55aa6b",(function(e,n,r,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=e("68b98b9"),o=e("208f98d"),f=e("c067fd2"),i=e("8934861"),l=e("3971faf"),d=e("9719fc0");function c(e,n,r,t,c){var u,s,v=c.children,h=i.createElement("div"),p=i.createElement("a"),N=r+"-"+t;p.name=N,p.id=N,n.appendChild(h);try{for(var b=a.__values(v),m=b.next();!m.done;m=b.next()){var y=m.value;if(y instanceof o.Paragraph){var _=l.default(e,y);i.appendChild(h,_)}else y instanceof f.Table?i.appendChild(h,d.default(e,y)):console.warn("unknown child",y)}}catch(e){u={error:e}}finally{try{m&&!m.done&&(s=b.return)&&s.call(b)}finally{if(u)throw u.error}}}function u(e){if(!e)return!1;for(var n in e)if("0"!==n&&"-1"!==n)return!0;return!1}n.renderNotes=function(e){var n=i.createElement("div");if(u(e.footNotes))for(var r in e.footNotes)c(e,n,"footnote",r,e.footNotes[r]);if(u(e.endNotes))for(var r in e.endNotes||{})c(e,n,"endnote",r,e.endNotes[r]);return n.children.length?n:null}}));
- ;/*!node_modules/office-viewer/lib/util/print.js*/
- amis.define("23acdd3",(function(n,e,t,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=n("68b98b9");function o(n){return new Promise((function(e){var t=function(){n&&void 0!==n.naturalWidth&&0!==n.naturalWidth&&n.complete?e():setTimeout(t,500)};t()}))}function a(n){var e,t;null===(e=n.contentWindow)||void 0===e||e.print(),null===(t=n.parentNode)||void 0===t||t.removeChild(n)}e.printIframe=function(n){var e=n.contentDocument.getElementsByTagName("img");e.length>0?function(n){var e=this,t=n.map((function(n){return i.__awaiter(e,void 0,void 0,(function(){return i.__generator(this,(function(e){switch(e.label){case 0:return n.src&&n.src!==window.location.href?[4,o(n)]:[3,2];case 1:e.sent(),e.label=2;case 2:return[2]}}))}))}));return Promise.all(t)}(Array.from(e)).then((function(){return a(n)})):a(n)}}));
- ;/*!node_modules/office-viewer/lib/openxml/Settings.js*/
- amis.define("b55b81e",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),l=e("0720cd6");function i(e){var t,r,a={};try{for(var l=n.__values(e.attributes),i=l.next();!i.done;i=l.next()){var o=i.value,c=o.name.replace("w:",""),u=o.value;"light1"===u?u="lt1":"light2"===u?u="lt2":"dark1"===u?u="dk1":"dark2"===u&&(u="dk2"),a[c]=u}}catch(e){t={error:e}}finally{try{i&&!i.done&&(r=l.return)&&r.call(l)}finally{if(t)throw t.error}}return a.bg1||(a.bg1="lt1"),a.bg2||(a.bg2="lt2"),a.tx1||(a.tx1="dk1"),a}var o=function(){function e(){this.clrSchemeMapping={},this.autoHyphenation=!1}return e.parse=function(t,r){var a,o,c=new e,u=r;r.firstElementChild&&"w:settings"===r.firstElementChild.tagName&&(u=r.getElementsByTagName("w:settings").item(0));try{for(var s=n.__values(Array.from(u.children)),f=s.next();!f.done;f=s.next()){var h=f.value;switch(h.tagName){case"w:clrSchemeMapping":c.clrSchemeMapping=i(h);break;case"w:autoHyphenation":c.autoHyphenation=l.getValBoolean(h,!1)}}}catch(e){a={error:e}}finally{try{f&&!f.done&&(o=s.return)&&o.call(s)}finally{if(a)throw a.error}}return c},e}();t.Settings=o}));
- ;/*!node_modules/office-viewer/lib/util/get.js*/
- amis.define("d09db77",(function(e,t,n,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.get=function(e,t,n){void 0===n&&(n=void 0);var i=function(n){return String.prototype.split.call(t,n).filter(Boolean).reduce((function(e,t){return null!=e?e[t]:e}),e)},r=i(/[,[\]]+?/)||i(/[,[\].]+?/);return void 0===r||r===e?n:r}}));
- ;/*!node_modules/office-viewer/lib/util/fileType.js*/
- amis.define("eebe99d",(function(e,r,i,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9");function a(e,r,i){var t,a;void 0===i&&(i={});var m=i.offset||0;try{for(var f=n.__values(r.entries()),o=f.next();!o.done;o=f.next()){var p=n.__read(o.value,2),u=p[0],c=p[1];if(i.mask){if(c!==(i.mask[u]&e[u+m]))return!1}else if(c!==e[u+m])return!1}}catch(e){t={error:e}}finally{try{o&&!o.done&&(a=f.return)&&a.call(f)}finally{if(t)throw t.error}}return!0}function m(e,r,i){return void 0===i&&(i={}),a(e,function(e){return n.__spreadArray([],n.__read(e),!1).map((function(e){return e.charCodeAt(0)}))}(r),i)}function f(e){return a(e,[137,80,78,71,13,10,26,10])?{ext:"png",mime:"image/png"}:a(e,[255,216,255])?{ext:"jpg",mime:"image/jpeg"}:a(e,[71,73,70])?{ext:"gif",mime:"image/gif"}:a(e,[66,77])?{ext:"bmp",mime:"image/bmp"}:a(e,[197,208,211,198])?{ext:"eps",mime:"application/eps"}:m(e,"8BPS")?{ext:"psd",mime:"image/vnd.adobe.photoshop"}:m(e,"%PDF")?{ext:"pdf",mime:"application/pdf"}:a(e,[208,207,17,224,161,177,26,225])?{ext:"cfb",mime:"application/x-cfb"}:a(e,[80,75,3,4])?{ext:"zip",mime:"application/zip"}:null}r.fileTypeFromArrayBuffer=function(e){return f(new Uint8Array(e.slice(0,20)))},r.fileTypeFromBuffer=f}));
- ;/*!node_modules/office-viewer/lib/Word.js*/
- amis.define("969117c",(function(t,e,r,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=t("68b98b9"),s=t("5ef90ec"),a=t("242db4d"),o=t("1ef446b"),l=t("afe87f4"),p=t("d12cc17"),d=t("4493233"),h=t("31250a6"),u=t("a3d05a8"),c=t("8934861"),f=t("f40474a"),g=t("ebcd228"),m=t("966955a"),y=t("2f6a93d"),v=t("e16e8e9"),b=t("554c0f4"),w=t("e90b1b4"),T=t("889b671"),_=t("3f75d59"),x=t("17304b2"),N=t("ab0eec0"),M=t("c55aa6b"),L=t("23acdd3"),C=t("b55b81e"),E=t("d09db77"),R=t("eebe99d"),O={classPrefix:"docx-viewer",page:!1,pageWrap:!0,bulletUseFont:!0,ignoreHeight:!0,ignoreWidth:!1,minLineHeight:1,enableVar:!1,debug:!1,pageWrapPadding:20,pageMarginBottom:20,pageShadow:!0,pageBackground:"#FFFFFF",pageWrapBackground:"#ECECEC",printWaitTime:100,zoomFitWidth:!1,renderHeader:!0,renderFooter:!0,data:{},evalVar:function(t,e){return E.get(e,t)}},S=function(){function t(e,r,i){void 0===i&&(i=new v.default),this.themes=[],this.styleIdMap={},this.styleIdNum=0,this.wrapClassName="docx-viewer-wrapper",this.footNotes={},this.endNotes={},this.inited=!1,this.breakPage=!1,this.DOCUMENT_RELS="/word/_rels/document.xml.rels",i.load(e),this.id=t.globalId++,this.parser=i,this.updateOptions(r)}return t.prototype.init=function(){this.inited||(this.initContentType(),this.initRelation(),this.initSettings(),this.initTheme(),this.initFontTable(),this.initStyle(),this.initNumbering(),this.initNotes(),this.inited=!0)},t.prototype.updateOptions=function(t){this.renderOptions=n.__assign(n.__assign({},O),t),this.renderOptions.page&&(this.renderOptions.ignoreHeight=!1,this.renderOptions.ignoreWidth=!1)},t.prototype.initTheme=function(){var t,e;try{for(var r=n.__values(this.contentTypes.overrides),i=r.next();!i.done;i=r.next()){var s=i.value;if(s.partName.startsWith("/word/theme")){var a=this.parser.getXML(s.partName);this.themes.push(p.parseTheme(a))}}}catch(e){t={error:e}}finally{try{i&&!i.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}},t.prototype.initStyle=function(){var t,e;try{for(var r=n.__values(this.contentTypes.overrides),i=r.next();!i.done;i=r.next()){i.value.partName.startsWith("/word/styles.xml")&&(this.styles=l.parseStyles(this,this.parser.getXML("/word/styles.xml")))}}catch(e){t={error:e}}finally{try{i&&!i.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}},t.prototype.initSettings=function(){var t,e;try{for(var r=n.__values(this.contentTypes.overrides),i=r.next();!i.done;i=r.next()){i.value.partName.startsWith("/word/settings.xml")&&(this.settings=C.Settings.parse(this,this.parser.getXML("/word/settings.xml")))}}catch(e){t={error:e}}finally{try{i&&!i.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}},t.prototype.initFontTable=function(){var t,e;try{for(var r=n.__values(this.contentTypes.overrides),i=r.next();!i.done;i=r.next()){i.value.partName.startsWith("/word/fontTable.xml")&&(this.fontTable=s.FontTable.fromXML(this,this.parser.getXML("/word/fontTable.xml")))}}catch(e){t={error:e}}finally{try{i&&!i.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}},t.prototype.initRelation=function(){var t={};this.parser.fileExists("/_rels/.rels")&&(t=a.parseRelationships(this.parser.getXML("/_rels/.rels"),"root")),this.relationships=t;var e={};this.parser.fileExists(this.DOCUMENT_RELS)&&(e=a.parseRelationships(this.parser.getXML(this.DOCUMENT_RELS),"word")),this.documentRels=e;var r={};this.parser.fileExists("/word/_rels/fontTable.xml.rels")&&(r=a.parseRelationships(this.parser.getXML("/word/_rels/fontTable.xml.rels"),"word")),this.fontTableRels=r},t.prototype.initContentType=function(){var t=this.parser.getXML("[Content_Types].xml");this.contentTypes=o.parseContentType(t)},t.prototype.initNumbering=function(){var t,e;try{for(var r=n.__values(this.contentTypes.overrides),i=r.next();!i.done;i=r.next()){var s=i.value;if(s.partName.startsWith("/word/numbering")){var a=this.parser.getXML(s.partName);this.numbering=u.Numbering.fromXML(this,a)}}}catch(e){t={error:e}}finally{try{i&&!i.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}},t.prototype.initNotes=function(){var t,e;try{for(var r=n.__values(this.contentTypes.overrides),i=r.next();!i.done;i=r.next()){var s=i.value;if(s.partName.startsWith("/word/footnotes.xml")){var a=this.parser.getXML(s.partName);this.footNotes=x.parseFootnotes(this,a)}if(s.partName.startsWith("/word/endnotes.xml")){a=this.parser.getXML(s.partName);this.endNotes=N.parseEndnotes(this,a)}}}catch(e){t={error:e}}finally{try{i&&!i.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}},t.prototype.getRelationship=function(t){return t&&this.relationships?this.relationships[t]:null},t.prototype.getDocumentRels=function(t){return t&&this.documentRels?this.documentRels[t]:null},t.prototype.getFontTableRels=function(t){return t&&this.fontTableRels?this.fontTableRels[t]:null},t.prototype.replaceText=function(t){var e=this;if(!1===this.renderOptions.enableVar)return t;var r=this.renderOptions.data;return-1!==t.indexOf("{{")&&(t=t.replace(/{{([^{}]+)}}/g,(function(t,i){var n=e.renderOptions.evalVar(i,r);return void 0===n?"":String(n)}))),t},t.prototype.loadWordRelXML=function(t){var e=t.target;return"word"===t.part&&(e="word/"+e),this.getXML(e)},t.prototype.loadImage=function(t){var e=t.target;"word"===t.part&&(e="word/"+e);var r=this.parser.getFileByType(e,"blob");return r?URL.createObjectURL(r):null},t.prototype.saveNewImage=function(t,e){if(this.parser.fileExists(this.DOCUMENT_RELS)){var r=this.parser.getXML(this.DOCUMENT_RELS),i=r.getElementsByTagName("Relationship").item(0).cloneNode(!0);i.setAttributeNS(null,"Id",t),i.setAttributeNS(null,"Type","http://schemas.openxmlformats.org/officeDocument/2006/relationships/image");var n="",s=R.fileTypeFromBuffer(e);s&&(n="."+s.ext);var a="media/image"+t+n;i.setAttributeNS(null,"Target",a),r.getElementsByTagName("Relationships")[0].appendChild(i),this.parser.saveFile(this.DOCUMENT_RELS.replace(/^\//,""),b.buildXML(r)),this.parser.saveFile("word/"+a,e)}},t.prototype.loadFont=function(t,e){var r=this.getFontTableRels(t);if(!r)return null;var i=r.target;"word"===r.part&&(i="word/"+i);var n=this.parser.getFileByType(i,"uint8array");return n?URL.createObjectURL(new Blob([w.deobfuscate(n,e)])):null},t.prototype.getXML=function(t){return this.parser.getXML(t)},t.prototype.getStyleIdDisplayName=function(t){return t.match(/^[a-zA-Z]+[a-zA-Z0-9\-\_]*$/)?this.getClassPrefix()+"-"+t:(t in this.styleIdMap||(this.styleIdMap[t]=this.genClassName()),this.styleIdMap[t])},t.prototype.genClassName=function(){return"docx-classname-"+this.styleIdNum++},t.prototype.appendStyle=function(t){void 0===t&&(t="");var e=c.createElement("style");e.textContent=t,this.rootElement.appendChild(e)},t.prototype.getStyleClassName=function(t){var e=this.styles.styleMap[t];if(!e)return[];var r=[this.getStyleIdDisplayName(t)];return e.basedOn&&r.unshift(this.getStyleIdDisplayName(e.basedOn)),r},t.prototype.getStyle=function(t){return this.styles.styleMap[t]},t.prototype.getClassPrefix=function(){return"".concat(this.renderOptions.classPrefix,"-").concat(this.id)},t.prototype.getThemeColor=function(t){var e,r;if(this.settings.clrSchemeMapping&&(t=this.settings.clrSchemeMapping[t]||t),this.themes&&this.themes.length>0){var i=null===(r=null===(e=this.themes[0].themeElements)||void 0===e?void 0:e.clrScheme)||void 0===r?void 0:r.colors,n=null==i?void 0:i[t];return n||(console.warn("unknown theme color: "+t),(null==i?void 0:i.accent1)||"")}return""},t.prototype.addClass=function(t,e){t.classList.add("".concat(this.getClassPrefix(),"-").concat(e))},t.prototype.updateVariable=function(){this.rootElement&&!1!==this.renderOptions.enableVar&&y.updateVariableText(this)},t.prototype.download=function(t){return void 0===t&&(t="document.docx"),n.__awaiter(this,void 0,void 0,(function(){var e,r,i,s;return n.__generator(this,(function(n){switch(n.label){case 0:return e=this.getXML("word/document.xml"),this.renderOptions.enableVar?(g.mergeRun(this,e),[4,_.replaceVar(this,e,!0)]):[3,2];case 1:for(n.sent(),r=e.getElementsByTagName("w:t"),i=0;i<r.length;i++)_.replaceT(this,r[i],this.renderOptions.data);n.label=2;case 2:return s=this.parser.generateZip(b.buildXML(e)),h.downloadBlob(s,t),[2]}}))}))},t.prototype.print=function(){return n.__awaiter(this,void 0,void 0,(function(){var t,e;return n.__generator(this,(function(r){switch(r.label){case 0:return(t=document.createElement("iframe")).style.position="absolute",t.style.top="-10000px",document.body.appendChild(t),(e=t.contentDocument)?(e.write('<style>\n html, body { margin:0; padding:0 }\n @page { size: auto; margin: 0mm; }\n </style>\n <div id="print"></div>'),[4,this.render(e.getElementById("print"),n.__assign({pageWrap:!1,pageShadow:!1,pageMarginBottom:0,pageWrapPadding:void 0,zoom:1},this.renderOptions.printOptions))]):(console.warn("printDocument is null"),[2,null]);case 1:return r.sent(),setTimeout((function(){t.focus(),L.printIframe(t)}),this.renderOptions.printWaitTime||100),window.focus(),[2]}}))}))},t.prototype.render=function(t,e){return void 0===e&&(e={}),n.__awaiter(this,void 0,void 0,(function(){var r,i,s,a,o;return n.__generator(this,(function(l){switch(l.label){case 0:return this.init(),this.currentPage=0,r=n.__assign(n.__assign({},this.renderOptions),e),(i=r.debug)&&console.log("init",this),this.rootElement=t,t.innerHTML="",s=this.getXML("word/document.xml"),i&&console.log("documentData",s),r.enableVar?(g.mergeRun(this,s),[4,_.replaceVar(this,s)]):[3,2];case 1:l.sent(),l.label=2;case 2:return a=m.WDocument.fromXML(this,s),i&&console.log("document",a),o=d.default(t,this,a,r),t.classList.add(this.getClassPrefix()),r.page&&r.pageWrap&&(t.classList.add(this.wrapClassName),t.style.padding="".concat(r.pageWrapPadding||0,"pt"),t.style.background=r.pageWrapBackground||"#ECECEC"),c.appendChild(t,f.renderStyle(this)),c.appendChild(t,T.renderFont(this.fontTable)),c.appendChild(t,o),c.appendChild(t,M.renderNotes(this)),[2]}}))}))},t.globalId=0,t}();e.default=S}));
- ;/*!node_modules/office-viewer/lib/openxml/Attributes.js*/
- amis.define("bd8777f",(function(e,_,i,n){"use strict";Object.defineProperty(_,"__esModule",{value:!0});_.ANY_KEY="__any__"}));
- ;/*!node_modules/office-viewer/lib/common/autoParse.js*/
- amis.define("3d878b2",(function(r,e,t,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=r("68b98b9"),n=r("bd8777f"),l=r("0720cd6"),o=new Map;function d(r){if(o.has(r))return o.get(r);var e=r.replace("a:","").replace("xdr:","").replace("c:","");return o.set(r,e),e}e.autoParse=function r(e,t,a){void 0===a&&(a=!1);var o={},u=(null==e?void 0:e.attrs)||{};for(var s in u){var c=d(s);if(c in t){var v=t[c],f=u[s];"int"===v.type?o[c]=parseInt(f,10):"double"===v.type?o[c]=parseFloat(f):"boolean"===v.type?o[c]=l.normalizeBoolean(f,v.defaultValue):"string"===v.type&&(o[c]=f)}else{if(o[c]=u[s],s.startsWith("xmlns")||s.startsWith("mc:Ignorable"))continue;void 0!==o[c]||s.startsWith("xr:")||"xr3:uid"===s||"xr2:uid"===s||"x14ac:dyDescent"===s||console.log("parseAttributes: ".concat(null==e?void 0:e.tag,"'s attribute: ").concat(s," is not supported"))}}if(a)for(var s in t){void 0!==(v=t[s]).defaultValue&&void 0===o[s]&&(o[s]=v.defaultValue)}var y=function(a){var u,s,c,v,f,y,p=t[a];if("child"===p.type)try{for(var h=(u=void 0,i.__values((null==e?void 0:e.children)||[])),b=h.next();!b.done;b=h.next()){if((W=d((V=b.value).tag))===a){var x=r(V,p.childAttributes);p.childIsArray?Array.isArray(o[a])?o[a].push(x):o[a]=[x]:o[a]=x}}}catch(r){u={error:r}}finally{try{b&&!b.done&&(s=h.return)&&s.call(h)}finally{if(u)throw u.error}}else if(p.childIsArray){var g=p.type;if("string"===g||"int"===g||"double"===g||"boolean"===g||"child-string"===g||"child-int"===g){var _=((null==e?void 0:e.children)||[]).map((function(r){var e=d(r.tag),t=r.text||"";return"int"===g?parseInt(t,10):"double"===g?parseFloat(t):"boolean"===g?l.normalizeBoolean(t,!1):"child-string"===g?e===a?t:void 0:"child-int"===g?e===a?parseInt(t,10):void 0:t})).filter((function(r){return void 0!==r}));o[a]=_}else console.log("unsupported attribute array type",g)}else if("child-string"===p.type)try{for(var A=(c=void 0,i.__values((null==e?void 0:e.children)||[])),I=A.next();!I.done;I=A.next()){(W=d((V=I.value).tag))===a&&(o[W]=V.text)}}catch(r){c={error:r}}finally{try{I&&!I.done&&(v=A.return)&&v.call(A)}finally{if(c)throw c.error}}else if("child-int"===p.type)try{for(var m=(f=void 0,i.__values((null==e?void 0:e.children)||[])),w=m.next();!w.done;w=m.next()){var V,W;(W=d((V=w.value).tag))===a&&(o[W]=parseInt(V.text||"0",10))}}catch(r){f={error:r}}finally{try{w&&!w.done&&(y=m.return)&&y.call(m)}finally{if(f)throw f.error}}else"any"===p.type&&(o[n.ANY_KEY]=(null==e?void 0:e.children)||[])};for(var p in t)y(p);return o}}));
- ;/*!node_modules/office-viewer/lib/common/parseAttributes.js*/
- amis.define("4c070ac",(function(r,e,t,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=r("68b98b9"),i=r("3d878b2");e.parseChildrenAttributes=function(r,e,t){var a,l;void 0===t&&(t=!1);var o=[];try{for(var u=n.__values((null==r?void 0:r.children)||[]),c=u.next();!c.done;c=u.next()){var d=c.value;o.push(i.autoParse(d,e,t))}}catch(r){a={error:r}}finally{try{c&&!c.done&&(l=u.return)&&l.call(u)}finally{if(a)throw a.error}}return o}}));
- ;/*!node_modules/office-viewer/lib/excel/types/CT_Color.js*/
- amis.define("56c7e27",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.CT_Color_Attributes={auto:{type:"boolean"},indexed:{type:"int"},rgb:{type:"string"},theme:{type:"int"},tint:{type:"double",defaultValue:"0.0"}}}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14CF/CT_Cfvo.js*/
- amis.define("2ff7694",(function(e,t,i,u){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.CT_Cfvo_Attributes={type:{type:"string"},val:{type:"string"},gte:{type:"boolean",defaultValue:"true"}}}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14CF/X14DataBar.js*/
- amis.define("cbd576c",(function(e,t,i,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var l=e("56c7e27"),o={minLength:{type:"int",defaultValue:"10"},maxLength:{type:"int",defaultValue:"90"},border:{type:"boolean",defaultValue:"false"},gradient:{type:"boolean",defaultValue:"true"},direction:{type:"string"},negativeBarColorSameAsPositive:{type:"boolean"},negativeBarBorderColorSameAsPositive:{type:"boolean",defaultValue:"false"},"x14:cfvo":{type:"child",childAttributes:e("2ff7694").CT_Cfvo_Attributes,childIsArray:!0},"x14:borderColor":{type:"child",childAttributes:l.CT_Color_Attributes},"x14:negativeFillColor":{type:"child",childAttributes:l.CT_Color_Attributes},"x14:negativeBorderColor":{type:"child",childAttributes:l.CT_Color_Attributes},"x14:axisColor":{type:"child",childAttributes:l.CT_Color_Attributes}};t.X14DataBar_Attributes=o}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14CF/X14IconSet.js*/
- amis.define("e4cd322",(function(e,t,a,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var u={cfvo:{type:"child",childAttributes:e("2ff7694").CT_Cfvo_Attributes,childIsArray:!0},iconSet:{type:"string",defaultValue:"3TrafficLights1"},showValue:{type:"boolean",defaultValue:"true"},percent:{type:"boolean",defaultValue:"true"},reverse:{type:"boolean",defaultValue:"false"}};t.X14IconSet_Attributes=u}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14CF/X14CfRule.js*/
- amis.define("bcb3cfc",(function(t,e,i,c){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=t("cbd576c"),d=t("e4cd322"),s={type:{type:"string"},id:{type:"string"},"x14:dataBar":{type:"child",childAttributes:r.X14DataBar_Attributes},"x14:iconSet":{type:"child",childAttributes:d.X14IconSet_Attributes}};e.X14CfRule_Attributes=s}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14CF/X14ConditionalFormatting.js*/
- amis.define("4f9dc12",(function(t,e,i,c){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r={"x14:cfRule":{type:"child",childAttributes:t("bcb3cfc").X14CfRule_Attributes,childIsArray:!0}};e.X14ConditionalFormatting_Attributes=r}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14CF/X14ConditionalFormattings.js*/
- amis.define("ef4541a",(function(t,i,e,n){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var o={"x14:conditionalFormatting":{type:"child",childAttributes:t("4f9dc12").X14ConditionalFormatting_Attributes,childIsArray:!0}};i.X14ConditionalFormattings_Attributes=o}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14Sparkline/X14Sparkline.js*/
- amis.define("93da6ce",(function(e,t,i,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.X14Sparkline_Attributes={"xm:f":{type:"child-string"},"xm:sqref":{type:"child-string"}}}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14Sparkline/x14Sparklines.js*/
- amis.define("7d5048e",(function(e,t,i,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s={"x14:sparkline":{type:"child",childAttributes:e("93da6ce").X14Sparkline_Attributes,childIsArray:!0}};t.X14Sparklines_Attributes=s}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14Sparkline/X14SparklineGroup.js*/
- amis.define("5ed30fa",(function(e,t,l,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("56c7e27"),a=e("7d5048e"),u={displayEmptyCellsAs:{type:"string",defaultValue:"gap"},type:{type:"string",defaultValue:"line"},markers:{type:"boolean",defaultValue:!1},manualMax:{type:"double"},manualMin:{type:"double"},lineWeight:{type:"double",defaultValue:.75},high:{type:"boolean",defaultValue:!1},low:{type:"boolean",defaultValue:!1},first:{type:"boolean",defaultValue:!1},last:{type:"boolean",defaultValue:!1},negative:{type:"boolean",defaultValue:!1},displayXAxis:{type:"boolean",defaultValue:!1},displayHidden:{type:"boolean",defaultValue:!1},minAxisType:{type:"string",defaultValue:"group"},maxAxisType:{type:"string",defaultValue:"group"},rightToLeft:{type:"boolean",defaultValue:!1},"x14:colorSeries":{type:"child",childAttributes:o.CT_Color_Attributes},"x14:colorNegative":{type:"child",childAttributes:o.CT_Color_Attributes},"x14:colorAxis":{type:"child",childAttributes:o.CT_Color_Attributes},"x14:colorMarkers":{type:"child",childAttributes:o.CT_Color_Attributes},"x14:colorFirst":{type:"child",childAttributes:o.CT_Color_Attributes},"x14:colorLast":{type:"child",childAttributes:o.CT_Color_Attributes},"x14:colorHigh":{type:"child",childAttributes:o.CT_Color_Attributes},"x14:colorLow":{type:"child",childAttributes:o.CT_Color_Attributes},"x14:sparklines":{type:"child",childAttributes:a.X14Sparklines_Attributes}};t.X14SparklineGroup_Attributes=u}));
- ;/*!node_modules/office-viewer/lib/excel/types/X14Sparkline/X14SparklineGroups.js*/
- amis.define("8608c9a",(function(e,r,t,i){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var s={"x14:sparklineGroup":{type:"child",childAttributes:e("5ed30fa").X14SparklineGroup_Attributes,childIsArray:!0}};r.X14SparklineGroups_Attributes=s}));
- ;/*!node_modules/office-viewer/lib/excel/types/Ext.js*/
- amis.define("8f3ef21",(function(t,i,e,r){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var s=t("ef4541a"),n=t("8608c9a"),u={uri:{type:"string"},"x14:id":{type:"child-string"},"x14:conditionalFormattings":{type:"child",childAttributes:s.X14ConditionalFormattings_Attributes},"x14:sparklineGroups":{type:"child",childAttributes:n.X14SparklineGroups_Attributes}};i.Ext_Attributes=u}));
- ;/*!node_modules/office-viewer/lib/excel/types/CT_ExtensionList.js*/
- amis.define("bdab8fa",(function(t,e,i,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r={ext:{type:"child",childAttributes:t("8f3ef21").Ext_Attributes,childIsArray:!0}};e.CT_ExtensionList_Attributes=r}));
- ;/*!node_modules/office-viewer/lib/openxml/ExcelTypes.js*/
- amis.define("20a593d",(function(t,e,i,l){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=t("bdab8fa"),d={__any__:{type:"any"},uri:{type:"string"}},s={ext:{type:"child",childAttributes:d,childIsArray:!0}},u={auto:{type:"boolean"},indexed:{type:"int"},rgb:{type:"string"},theme:{type:"int"},tint:{type:"double",defaultValue:"0.0"}},a={val:{type:"string"}},c={},p={},h={},y={val:{type:"string"}},o={val:{type:"string"}},n={val:{type:"int"}},b={val:{type:"int"}},A={val:{type:"string"}},f={},_={},C={tint:{type:"child",childAttributes:a},shade:{type:"child",childAttributes:a},comp:{type:"child",childAttributes:c},inv:{type:"child",childAttributes:p},gray:{type:"child",childAttributes:h},alpha:{type:"child",childAttributes:a},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:o},hue:{type:"child",childAttributes:n},hueOff:{type:"child",childAttributes:b},hueMod:{type:"child",childAttributes:o},sat:{type:"child",childAttributes:A},satOff:{type:"child",childAttributes:A},satMod:{type:"child",childAttributes:A},lum:{type:"child",childAttributes:A},lumOff:{type:"child",childAttributes:A},lumMod:{type:"child",childAttributes:A},red:{type:"child",childAttributes:A},redOff:{type:"child",childAttributes:A},redMod:{type:"child",childAttributes:A},green:{type:"child",childAttributes:A},greenOff:{type:"child",childAttributes:A},greenMod:{type:"child",childAttributes:A},blue:{type:"child",childAttributes:A},blueOff:{type:"child",childAttributes:A},blueMod:{type:"child",childAttributes:A},gamma:{type:"child",childAttributes:f},invGamma:{type:"child",childAttributes:_},r:{type:"string"},g:{type:"string"},b:{type:"string"}},g={tint:{type:"child",childAttributes:a},shade:{type:"child",childAttributes:a},comp:{type:"child",childAttributes:c},inv:{type:"child",childAttributes:p},gray:{type:"child",childAttributes:h},alpha:{type:"child",childAttributes:a},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:o},hue:{type:"child",childAttributes:n},hueOff:{type:"child",childAttributes:b},hueMod:{type:"child",childAttributes:o},sat:{type:"child",childAttributes:A},satOff:{type:"child",childAttributes:A},satMod:{type:"child",childAttributes:A},lum:{type:"child",childAttributes:A},lumOff:{type:"child",childAttributes:A},lumMod:{type:"child",childAttributes:A},red:{type:"child",childAttributes:A},redOff:{type:"child",childAttributes:A},redMod:{type:"child",childAttributes:A},green:{type:"child",childAttributes:A},greenOff:{type:"child",childAttributes:A},greenMod:{type:"child",childAttributes:A},blue:{type:"child",childAttributes:A},blueOff:{type:"child",childAttributes:A},blueMod:{type:"child",childAttributes:A},gamma:{type:"child",childAttributes:f},invGamma:{type:"child",childAttributes:_},val:{type:"string"}},T={tint:{type:"child",childAttributes:a},shade:{type:"child",childAttributes:a},comp:{type:"child",childAttributes:c},inv:{type:"child",childAttributes:p},gray:{type:"child",childAttributes:h},alpha:{type:"child",childAttributes:a},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:o},hue:{type:"int"},hueOff:{type:"child",childAttributes:b},hueMod:{type:"child",childAttributes:o},sat:{type:"string"},satOff:{type:"child",childAttributes:A},satMod:{type:"child",childAttributes:A},lum:{type:"string"},lumOff:{type:"child",childAttributes:A},lumMod:{type:"child",childAttributes:A},red:{type:"child",childAttributes:A},redOff:{type:"child",childAttributes:A},redMod:{type:"child",childAttributes:A},green:{type:"child",childAttributes:A},greenOff:{type:"child",childAttributes:A},greenMod:{type:"child",childAttributes:A},blue:{type:"child",childAttributes:A},blueOff:{type:"child",childAttributes:A},blueMod:{type:"child",childAttributes:A},gamma:{type:"child",childAttributes:f},invGamma:{type:"child",childAttributes:_}},V={tint:{type:"child",childAttributes:a},shade:{type:"child",childAttributes:a},comp:{type:"child",childAttributes:c},inv:{type:"child",childAttributes:p},gray:{type:"child",childAttributes:h},alpha:{type:"child",childAttributes:a},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:o},hue:{type:"child",childAttributes:n},hueOff:{type:"child",childAttributes:b},hueMod:{type:"child",childAttributes:o},sat:{type:"child",childAttributes:A},satOff:{type:"child",childAttributes:A},satMod:{type:"child",childAttributes:A},lum:{type:"child",childAttributes:A},lumOff:{type:"child",childAttributes:A},lumMod:{type:"child",childAttributes:A},red:{type:"child",childAttributes:A},redOff:{type:"child",childAttributes:A},redMod:{type:"child",childAttributes:A},green:{type:"child",childAttributes:A},greenOff:{type:"child",childAttributes:A},greenMod:{type:"child",childAttributes:A},blue:{type:"child",childAttributes:A},blueOff:{type:"child",childAttributes:A},blueMod:{type:"child",childAttributes:A},gamma:{type:"child",childAttributes:f},invGamma:{type:"child",childAttributes:_},val:{type:"string"},lastClr:{type:"string"}},m={tint:{type:"child",childAttributes:a},shade:{type:"child",childAttributes:a},comp:{type:"child",childAttributes:c},inv:{type:"child",childAttributes:p},gray:{type:"child",childAttributes:h},alpha:{type:"child",childAttributes:a},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:o},hue:{type:"child",childAttributes:n},hueOff:{type:"child",childAttributes:b},hueMod:{type:"child",childAttributes:o},sat:{type:"child",childAttributes:A},satOff:{type:"child",childAttributes:A},satMod:{type:"child",childAttributes:A},lum:{type:"child",childAttributes:A},lumOff:{type:"child",childAttributes:A},lumMod:{type:"child",childAttributes:A},red:{type:"child",childAttributes:A},redOff:{type:"child",childAttributes:A},redMod:{type:"child",childAttributes:A},green:{type:"child",childAttributes:A},greenOff:{type:"child",childAttributes:A},greenMod:{type:"child",childAttributes:A},blue:{type:"child",childAttributes:A},blueOff:{type:"child",childAttributes:A},blueMod:{type:"child",childAttributes:A},gamma:{type:"child",childAttributes:f},invGamma:{type:"child",childAttributes:_},val:{type:"string"}},x={tint:{type:"child",childAttributes:a},shade:{type:"child",childAttributes:a},comp:{type:"child",childAttributes:c},inv:{type:"child",childAttributes:p},gray:{type:"child",childAttributes:h},alpha:{type:"child",childAttributes:a},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:o},hue:{type:"child",childAttributes:n},hueOff:{type:"child",childAttributes:b},hueMod:{type:"child",childAttributes:o},sat:{type:"child",childAttributes:A},satOff:{type:"child",childAttributes:A},satMod:{type:"child",childAttributes:A},lum:{type:"child",childAttributes:A},lumOff:{type:"child",childAttributes:A},lumMod:{type:"child",childAttributes:A},red:{type:"child",childAttributes:A},redOff:{type:"child",childAttributes:A},redMod:{type:"child",childAttributes:A},green:{type:"child",childAttributes:A},greenOff:{type:"child",childAttributes:A},greenMod:{type:"child",childAttributes:A},blue:{type:"child",childAttributes:A},blueOff:{type:"child",childAttributes:A},blueMod:{type:"child",childAttributes:A},gamma:{type:"child",childAttributes:f},invGamma:{type:"child",childAttributes:_},val:{type:"string"}},v={typeface:{type:"string"},panose:{type:"string"},pitchFamily:{type:"int",defaultValue:"0"},charset:{type:"int",defaultValue:"1"}},P={},I={rad:{type:"int",defaultValue:"0"},grow:{type:"boolean",defaultValue:"true"}},S={},L={},F={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:g},hslClr:{type:"child",childAttributes:T},sysClr:{type:"child",childAttributes:V},schemeClr:{type:"child",childAttributes:m},prstClr:{type:"child",childAttributes:x}},w={color:{type:"child",childAttributes:u},position:{type:"double"}},R={gs:{type:"child",childAttributes:w,childIsArray:!0}},O={ang:{type:"int"},scaled:{type:"boolean"}},M={l:{type:"string",defaultValue:"0%"},t:{type:"string",defaultValue:"0%"},r:{type:"string",defaultValue:"0%"},b:{type:"string",defaultValue:"0%"}},D={fillToRect:{type:"child",childAttributes:M},path:{type:"string"}},k={gsLst:{type:"child",childAttributes:R},lin:{type:"child",childAttributes:O},path:{type:"child",childAttributes:D},tileRect:{type:"child",childAttributes:M},flip:{type:"string",defaultValue:"none"},rotWithShape:{type:"boolean"}},B={thresh:{type:"string"}},E={},G={},z={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:g},hslClr:{type:"child",childAttributes:T},sysClr:{type:"child",childAttributes:V},schemeClr:{type:"child",childAttributes:m},prstClr:{type:"child",childAttributes:x}},N={type:{type:"string",defaultValue:"sib"},name:{type:"string"}},H={cont:{type:"child",childAttributes:N}},W={amt:{type:"string",defaultValue:"100%"}},X={a:{type:"string"}},j={thresh:{type:"string"}},q={clrFrom:{type:"child",childAttributes:u},clrTo:{type:"child",childAttributes:u},useA:{type:"boolean",defaultValue:"true"}},U={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:g},hslClr:{type:"child",childAttributes:T},sysClr:{type:"child",childAttributes:V},schemeClr:{type:"child",childAttributes:m},prstClr:{type:"child",childAttributes:x}},Y={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:g},hslClr:{type:"child",childAttributes:T},sysClr:{type:"child",childAttributes:V},schemeClr:{type:"child",childAttributes:m},prstClr:{type:"child",childAttributes:x}},J={},Q={hue:{type:"int",defaultValue:"0"},sat:{type:"string",defaultValue:"0%"},lum:{type:"string",defaultValue:"0%"}},K={bright:{type:"string",defaultValue:"0%"},contrast:{type:"string",defaultValue:"0%"}},Z={hue:{type:"int",defaultValue:"0"},amt:{type:"string",defaultValue:"0%"}},$={alphaBiLevel:{type:"child",childAttributes:B},alphaCeiling:{type:"child",childAttributes:E},alphaFloor:{type:"child",childAttributes:G},alphaInv:{type:"child",childAttributes:z},alphaMod:{type:"child",childAttributes:H},alphaModFix:{type:"child",childAttributes:W},alphaRepl:{type:"child",childAttributes:X},biLevel:{type:"child",childAttributes:j},blur:{type:"child",childAttributes:I},clrChange:{type:"child",childAttributes:q},clrRepl:{type:"child",childAttributes:U},duotone:{type:"child",childAttributes:Y},fillOverlay:{type:"child",childAttributes:S},grayscl:{type:"child",childAttributes:J},hsl:{type:"child",childAttributes:Q},lum:{type:"child",childAttributes:K},tint:{type:"child",childAttributes:Z},extLst:{type:"child",childAttributes:s},cstate:{type:"string",defaultValue:"none"}},tt={tx:{type:"string"},ty:{type:"string"},sx:{type:"string"},sy:{type:"string"},flip:{type:"string",defaultValue:"none"},algn:{type:"string"}},et={fillRect:{type:"child",childAttributes:M}},it={blip:{type:"child",childAttributes:$},srcRect:{type:"child",childAttributes:M},tile:{type:"child",childAttributes:tt},stretch:{type:"child",childAttributes:et},dpi:{type:"int"},rotWithShape:{type:"boolean"}},lt={fgClr:{type:"child",childAttributes:u},bgClr:{type:"child",childAttributes:u},prst:{type:"string"}},rt={},dt={lat:{type:"int"},lon:{type:"int"},rev:{type:"int"}},st={rot:{type:"child",childAttributes:dt},prst:{type:"string"},fov:{type:"int"},zoom:{type:"string",defaultValue:"100%"}},ut={rot:{type:"child",childAttributes:dt},rig:{type:"string"},dir:{type:"string"}},at={x:{type:"string"},y:{type:"string"},z:{type:"string"}},ct={dx:{type:"string"},dy:{type:"string"},dz:{type:"string"}},pt={anchor:{type:"child",childAttributes:at},norm:{type:"child",childAttributes:ct},up:{type:"child",childAttributes:ct},extLst:{type:"child",childAttributes:s}},ht={camera:{type:"child",childAttributes:st},lightRig:{type:"child",childAttributes:ut},backdrop:{type:"child",childAttributes:pt},extLst:{type:"child",childAttributes:s}},yt={w:{type:"int",defaultValue:"76200"},h:{type:"int",defaultValue:"76200"},prst:{type:"string",defaultValue:"circle"}},ot={bevelT:{type:"child",childAttributes:yt},bevelB:{type:"child",childAttributes:yt},extrusionClr:{type:"child",childAttributes:u},contourClr:{type:"child",childAttributes:u},extLst:{type:"child",childAttributes:s},z:{type:"string",defaultValue:"0"},extrusionH:{type:"int",defaultValue:"0"},contourW:{type:"int",defaultValue:"0"},prstMaterial:{type:"string",defaultValue:"warmMatte"}},nt={val:{type:"string"}},bt={d:{type:"string"},sp:{type:"string"}},At={ds:{type:"child",childAttributes:bt,childIsArray:!0}},ft={},_t={},Ct={lim:{type:"string"}},gt={type:{type:"string",defaultValue:"none"},w:{type:"string"},len:{type:"string"}},Tt={noFill:{type:"child",childAttributes:L},solidFill:{type:"child",childAttributes:F},gradFill:{type:"child",childAttributes:k},pattFill:{type:"child",childAttributes:lt},prstDash:{type:"child",childAttributes:nt},custDash:{type:"child",childAttributes:At},round:{type:"child",childAttributes:ft},bevel:{type:"child",childAttributes:_t},miter:{type:"child",childAttributes:Ct},headEnd:{type:"child",childAttributes:gt},tailEnd:{type:"child",childAttributes:gt},extLst:{type:"child",childAttributes:s},w:{type:"int"},cap:{type:"string"},cmpd:{type:"string"},algn:{type:"string"}},Vt={val:{type:"string"}},mt={x:{type:"string"},y:{type:"string"}},xt={cx:{type:"int"},cy:{type:"int"}},vt={off:{type:"child",childAttributes:mt},ext:{type:"child",childAttributes:xt},rot:{type:"int",defaultValue:"0"},flipH:{type:"boolean",defaultValue:"false"},flipV:{type:"boolean",defaultValue:"false"}},Pt={extLst:{type:"child",childAttributes:s}},It={extLst:{type:"child",childAttributes:s},noTextEdit:{type:"boolean",defaultValue:"false"}},St={extLst:{type:"child",childAttributes:s},noCrop:{type:"boolean",defaultValue:"false"}},Lt={extLst:{type:"child",childAttributes:s},noGrp:{type:"boolean",defaultValue:"false"},noDrilldown:{type:"boolean",defaultValue:"false"},noSelect:{type:"boolean",defaultValue:"false"},noChangeAspect:{type:"boolean",defaultValue:"false"},noMove:{type:"boolean",defaultValue:"false"},noResize:{type:"boolean",defaultValue:"false"}},Ft={ref:{type:"string"},"r:id":{type:"string"},location:{type:"string"},tooltip:{type:"string"},display:{type:"string"}},wt={hlinkClick:{type:"child",childAttributes:Ft},hlinkHover:{type:"child",childAttributes:Ft},extLst:{type:"child",childAttributes:s},id:{type:"int"},name:{type:"string"},descr:{type:"string"},hidden:{type:"boolean",defaultValue:"false"},title:{type:"string"}},Rt={spLocks:{type:"child",childAttributes:It},extLst:{type:"child",childAttributes:s},txBox:{type:"boolean",defaultValue:"false"}},Ot={connection:{type:"string"},command:{type:"string"},serverCommand:{type:"string"},commandType:{type:"int",defaultValue:"2"}},Mt={local:{type:"boolean",defaultValue:"false"},localConnection:{type:"string"},localRefresh:{type:"boolean",defaultValue:"true"},sendLocale:{type:"boolean",defaultValue:"false"},rowDrillCount:{type:"int"},serverFill:{type:"boolean",defaultValue:"true"},serverNumberFormat:{type:"boolean",defaultValue:"true"},serverFont:{type:"boolean",defaultValue:"true"},serverFontColor:{type:"boolean",defaultValue:"true"}},Dt={},kt={v:{type:"string"}},Bt={v:{type:"int"}},Et={m:{type:"child",childAttributes:Dt,childIsArray:!0},s:{type:"child",childAttributes:kt,childIsArray:!0},x:{type:"child",childAttributes:Bt,childIsArray:!0},count:{type:"int"}},Gt={tables:{type:"child",childAttributes:Et},xml:{type:"boolean",defaultValue:"false"},sourceData:{type:"boolean",defaultValue:"false"},parsePre:{type:"boolean",defaultValue:"false"},consecutive:{type:"boolean",defaultValue:"false"},firstRow:{type:"boolean",defaultValue:"false"},xl97:{type:"boolean",defaultValue:"false"},textDates:{type:"boolean",defaultValue:"false"},xl2000:{type:"boolean",defaultValue:"false"},url:{type:"string"},post:{type:"string"},htmlTables:{type:"boolean",defaultValue:"false"},htmlFormat:{type:"string",defaultValue:"none"},editPage:{type:"string"}},zt={type:{type:"string",defaultValue:"general"},position:{type:"int",defaultValue:"0"}},Nt={textField:{type:"child",childAttributes:zt,childIsArray:!0},count:{type:"int",defaultValue:"1"}},Ht={textFields:{type:"child",childAttributes:Nt},prompt:{type:"boolean",defaultValue:"true"},fileType:{type:"string",defaultValue:"win"},characterSet:{type:"string"},firstRow:{type:"int",defaultValue:"1"},sourceFile:{type:"string"},delimited:{type:"boolean",defaultValue:"true"},decimal:{type:"string",defaultValue:"."},thousands:{type:"string",defaultValue:","},tab:{type:"boolean",defaultValue:"true"},space:{type:"boolean",defaultValue:"false"},comma:{type:"boolean",defaultValue:"false"},semicolon:{type:"boolean",defaultValue:"false"},consecutive:{type:"boolean",defaultValue:"false"},qualifier:{type:"string",defaultValue:"doubleQuote"},delimiter:{type:"string"}},Wt={name:{type:"string"},sqlType:{type:"int",defaultValue:"0"},parameterType:{type:"string",defaultValue:"prompt"},refreshOnChange:{type:"boolean",defaultValue:"false"},prompt:{type:"string"},boolean:{type:"boolean"},double:{type:"double"},integer:{type:"int"},string:{type:"string"},cell:{type:"string"}},Xt={parameter:{type:"child",childAttributes:Wt,childIsArray:!0},count:{type:"int"}},jt={dbPr:{type:"child",childAttributes:Ot},olapPr:{type:"child",childAttributes:Mt},webPr:{type:"child",childAttributes:Gt},textPr:{type:"child",childAttributes:Ht},parameters:{type:"child",childAttributes:Xt},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},id:{type:"int"},sourceFile:{type:"string"},odcFile:{type:"string"},keepAlive:{type:"boolean",defaultValue:"false"},interval:{type:"int",defaultValue:"0"},name:{type:"string"},description:{type:"string"},type:{type:"int"},reconnectionMethod:{type:"int",defaultValue:"1"},refreshedVersion:{type:"int"},minRefreshableVersion:{type:"int",defaultValue:"0"},savePassword:{type:"boolean",defaultValue:"false"},new:{type:"boolean",defaultValue:"false"},deleted:{type:"boolean",defaultValue:"false"},onlyUseConnectionFile:{type:"boolean",defaultValue:"false"},background:{type:"boolean",defaultValue:"false"},refreshOnLoad:{type:"boolean",defaultValue:"false"},saveData:{type:"boolean",defaultValue:"false"},credentials:{type:"string",defaultValue:"integrated"},singleSignOnId:{type:"string"}},qt={cxnSpLocks:{type:"child",childAttributes:Pt},stCxn:{type:"child",childAttributes:jt},endCxn:{type:"child",childAttributes:jt},extLst:{type:"child",childAttributes:s}},Ut={picLocks:{type:"child",childAttributes:St},extLst:{type:"child",childAttributes:s},preferRelativeResize:{type:"boolean",defaultValue:"true"}},Yt={graphicFrameLocks:{type:"child",childAttributes:Lt},extLst:{type:"child",childAttributes:s}},Jt={name:{type:"string"},fmla:{type:"string"}},Qt={gd:{type:"child",childAttributes:Jt,childIsArray:!0}},Kt={avLst:{type:"child",childAttributes:Qt},prst:{type:"string"}},Zt={},$t={fontScale:{type:"string",defaultValue:"100%"},lnSpcReduction:{type:"string",defaultValue:"0%"}},te={},ee={z:{type:"string",defaultValue:"0"}},ie={prstTxWarp:{type:"child",childAttributes:Kt},noAutofit:{type:"child",childAttributes:Zt,childIsArray:!0},normAutofit:{type:"child",childAttributes:$t,childIsArray:!0},spAutoFit:{type:"child",childAttributes:te,childIsArray:!0},scene3d:{type:"child",childAttributes:ht},sp3d:{type:"child",childAttributes:ot},flatTx:{type:"child",childAttributes:ee},extLst:{type:"child",childAttributes:s},rot:{type:"int"},spcFirstLastPara:{type:"boolean"},vertOverflow:{type:"string"},horzOverflow:{type:"string"},vert:{type:"string"},wrap:{type:"string"},lIns:{type:"string"},tIns:{type:"string"},rIns:{type:"string"},bIns:{type:"string"},numCol:{type:"int"},spcCol:{type:"int"},rtlCol:{type:"boolean"},fromWordArt:{type:"boolean"},anchor:{type:"string"},anchorCtr:{type:"boolean"},forceAA:{type:"boolean"},upright:{type:"boolean",defaultValue:"false"},compatLnSpc:{type:"boolean"}},le={val:{type:"string"}},re={val:{type:"int"}},de={spcPct:{type:"child",childAttributes:le,childIsArray:!0},spcPts:{type:"child",childAttributes:re,childIsArray:!0}},se={},ue={},ae={val:{type:"string"}},ce={val:{type:"int"}},pe={},he={},ye={type:{type:"string"},startAt:{type:"int",defaultValue:"1"}},oe={char:{type:"string"}},ne={blip:{type:"child",childAttributes:$}},be={pos:{type:"string"},algn:{type:"string"}},Ae={tab:{type:"child",childAttributes:be,childIsArray:!0}},fe={},_e={},Ce={},ge={v:{type:"int",defaultValue:"0"}},Te={x:{type:"child",childAttributes:ge,childIsArray:!0},v:{type:"boolean"},u:{type:"boolean"},f:{type:"boolean"},c:{type:"string"},cp:{type:"int"}},Ve={ln:{type:"child",childAttributes:Tt},noFill:{type:"child",childAttributes:L},solidFill:{type:"child",childAttributes:F},gradFill:{type:"child",childAttributes:k},blipFill:{type:"child",childAttributes:it},pattFill:{type:"child",childAttributes:lt},grpFill:{type:"child",childAttributes:rt},effectLst:{type:"child",childAttributes:P},effectDag:{type:"child",childAttributes:N},highlight:{type:"child",childAttributes:u},uLnTx:{type:"child",childAttributes:fe,childIsArray:!0},uLn:{type:"child",childAttributes:Tt},uFillTx:{type:"child",childAttributes:_e,childIsArray:!0},uFill:{type:"child",childAttributes:Ce,childIsArray:!0},latin:{type:"child",childAttributes:v},ea:{type:"child",childAttributes:v},cs:{type:"child",childAttributes:v},sym:{type:"child",childAttributes:v},hlinkClick:{type:"child",childAttributes:Ft},hlinkMouseOver:{type:"child",childAttributes:Ft},rtl:{type:"child",childAttributes:Te,childIsArray:!0},extLst:{type:"child",childAttributes:s},kumimoji:{type:"boolean"},lang:{type:"string"},altLang:{type:"string"},sz:{type:"int"},b:{type:"boolean"},i:{type:"boolean"},u:{type:"string"},strike:{type:"string"},kern:{type:"int"},cap:{type:"string",defaultValue:"none"},spc:{type:"string"},normalizeH:{type:"boolean"},baseline:{type:"string"},noProof:{type:"boolean"},dirty:{type:"boolean",defaultValue:"true"},err:{type:"boolean",defaultValue:"false"},smtClean:{type:"boolean",defaultValue:"true"},smtId:{type:"int",defaultValue:"0"},bmk:{type:"string"}},me={lnSpc:{type:"child",childAttributes:de},spcBef:{type:"child",childAttributes:de},spcAft:{type:"child",childAttributes:de},buClrTx:{type:"child",childAttributes:se},buClr:{type:"child",childAttributes:u},buSzTx:{type:"child",childAttributes:ue,childIsArray:!0},buSzPct:{type:"child",childAttributes:ae,childIsArray:!0},buSzPts:{type:"child",childAttributes:ce,childIsArray:!0},buFontTx:{type:"child",childAttributes:pe,childIsArray:!0},buFont:{type:"child",childAttributes:v,childIsArray:!0},buNone:{type:"child",childAttributes:he,childIsArray:!0},buAutoNum:{type:"child",childAttributes:ye,childIsArray:!0},buChar:{type:"child",childAttributes:oe,childIsArray:!0},buBlip:{type:"child",childAttributes:ne,childIsArray:!0},tabLst:{type:"child",childAttributes:Ae},defRPr:{type:"child",childAttributes:Ve},extLst:{type:"child",childAttributes:s},marL:{type:"int"},marR:{type:"int"},lvl:{type:"int"},indent:{type:"int"},algn:{type:"string"},defTabSz:{type:"string"},rtl:{type:"boolean"},eaLnBrk:{type:"boolean"},fontAlgn:{type:"string"},latinLnBrk:{type:"boolean"},hangingPunct:{type:"boolean"}},xe={defPPr:{type:"child",childAttributes:me},lvl1pPr:{type:"child",childAttributes:me},lvl2pPr:{type:"child",childAttributes:me},lvl3pPr:{type:"child",childAttributes:me},lvl4pPr:{type:"child",childAttributes:me},lvl5pPr:{type:"child",childAttributes:me},lvl6pPr:{type:"child",childAttributes:me},lvl7pPr:{type:"child",childAttributes:me},lvl8pPr:{type:"child",childAttributes:me},lvl9pPr:{type:"child",childAttributes:me},extLst:{type:"child",childAttributes:s}},ve={rPr:{type:"child",childAttributes:Ve},t:{type:"child-string"}},Pe={rPr:{type:"child",childAttributes:Ve}},Ie={pPr:{type:"child",childAttributes:me},r:{type:"child",childAttributes:ve,childIsArray:!0},br:{type:"child",childAttributes:Pe,childIsArray:!0},fld:{type:"child",childAttributes:zt,childIsArray:!0},endParaRPr:{type:"child",childAttributes:Ve}},Se={bodyPr:{type:"child",childAttributes:ie},lstStyle:{type:"child",childAttributes:xe},p:{type:"child",childAttributes:Ie,childIsArray:!0}},Le={x:{type:"string"},y:{type:"string"}},Fe={pos:{type:"child",childAttributes:Le},gdRefX:{type:"string"},minX:{type:"string"},maxX:{type:"string"},gdRefY:{type:"string"},minY:{type:"string"},maxY:{type:"string"}},we={pos:{type:"child",childAttributes:Le},gdRefR:{type:"string"},minR:{type:"string"},maxR:{type:"string"},gdRefAng:{type:"string"},minAng:{type:"string"},maxAng:{type:"string"}},Re={ahXY:{type:"child",childAttributes:Fe},ahPolar:{type:"child",childAttributes:we}},Oe={pos:{type:"child",childAttributes:Le},ang:{type:"string"}},Me={cxn:{type:"child",childAttributes:Oe,childIsArray:!0}},De={l:{type:"string"},t:{type:"string"},r:{type:"string"},b:{type:"string"}},ke={},Be={pt:{type:"child",childAttributes:Le}},Ee={pt:{type:"child",childAttributes:Le}},Ge={wR:{type:"string"},hR:{type:"string"},stAng:{type:"string"},swAng:{type:"string"}},ze={pt:{type:"child",childAttributes:Le,childIsArray:!0}},Ne={pt:{type:"child",childAttributes:Le,childIsArray:!0}},He={close:{type:"child",childAttributes:ke},moveTo:{type:"child",childAttributes:Be},lnTo:{type:"child",childAttributes:Ee},arcTo:{type:"child",childAttributes:Ge},quadBezTo:{type:"child",childAttributes:ze},cubicBezTo:{type:"child",childAttributes:Ne},w:{type:"int",defaultValue:"0"},h:{type:"int",defaultValue:"0"},fill:{type:"string",defaultValue:"norm"},stroke:{type:"boolean",defaultValue:"true"},extrusionOk:{type:"boolean",defaultValue:"true"}},We={path:{type:"child",childAttributes:He,childIsArray:!0}},Xe={avLst:{type:"child",childAttributes:Qt},gdLst:{type:"child",childAttributes:Qt},ahLst:{type:"child",childAttributes:Re},cxnLst:{type:"child",childAttributes:Me},rect:{type:"child",childAttributes:De},pathLst:{type:"child",childAttributes:We}},je={avLst:{type:"child",childAttributes:Qt},prst:{type:"string"}},qe={xfrm:{type:"child",childAttributes:vt},custGeom:{type:"child",childAttributes:Xe},prstGeom:{type:"child",childAttributes:je},noFill:{type:"child",childAttributes:L},solidFill:{type:"child",childAttributes:F},gradFill:{type:"child",childAttributes:k},blipFill:{type:"child",childAttributes:it},pattFill:{type:"child",childAttributes:lt},grpFill:{type:"child",childAttributes:rt},ln:{type:"child",childAttributes:Tt},effectLst:{type:"child",childAttributes:P},effectDag:{type:"child",childAttributes:N},scene3d:{type:"child",childAttributes:ht},sp3d:{type:"child",childAttributes:ot},extLst:{type:"child",childAttributes:s},bwMode:{type:"string"}},Ue={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:g},hslClr:{type:"child",childAttributes:T},sysClr:{type:"child",childAttributes:V},schemeClr:{type:"child",childAttributes:m},prstClr:{type:"child",childAttributes:x},idx:{type:"int"}},Ye={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:g},hslClr:{type:"child",childAttributes:T},sysClr:{type:"child",childAttributes:V},schemeClr:{type:"child",childAttributes:m},prstClr:{type:"child",childAttributes:x},idx:{type:"string"}},Je={lnRef:{type:"child",childAttributes:Ue},fillRef:{type:"child",childAttributes:Ue},effectRef:{type:"child",childAttributes:Ue},fontRef:{type:"child",childAttributes:Ye}},Qe={type:{type:"string"},size:{type:"int",defaultValue:"1"},dxfId:{type:"int"}},Ke={tableStyleElement:{type:"child",childAttributes:Qe,childIsArray:!0},name:{type:"string"},pivot:{type:"boolean",defaultValue:"true"},table:{type:"boolean",defaultValue:"true"},count:{type:"int"}},Ze={fLocksWithSheet:{type:"boolean",defaultValue:"true"},fPrintsWithSheet:{type:"boolean",defaultValue:"true"}},$e={cNvPr:{type:"child",childAttributes:wt},cNvSpPr:{type:"child",childAttributes:Rt}},ti={nvSpPr:{type:"child",childAttributes:$e},spPr:{type:"child",childAttributes:qe},style:{type:"child",childAttributes:Je},txBody:{type:"child",childAttributes:Se},macro:{type:"string"},textlink:{type:"string"},fLocksText:{type:"boolean",defaultValue:"true"},fPublished:{type:"boolean",defaultValue:"false"}},ei={cNvPr:{type:"child",childAttributes:wt},cNvCxnSpPr:{type:"child",childAttributes:qt}},ii={nvCxnSpPr:{type:"child",childAttributes:ei},spPr:{type:"child",childAttributes:qe},style:{type:"child",childAttributes:Je},macro:{type:"string"},fPublished:{type:"boolean",defaultValue:"false"}},li={cNvPr:{type:"child",childAttributes:wt},cNvPicPr:{type:"child",childAttributes:Ut}},ri={nvPicPr:{type:"child",childAttributes:li},blipFill:{type:"child",childAttributes:it},spPr:{type:"child",childAttributes:qe},style:{type:"child",childAttributes:Je},macro:{type:"string"},fPublished:{type:"boolean",defaultValue:"false"}},di={cNvPr:{type:"child",childAttributes:wt},cNvGraphicFramePr:{type:"child",childAttributes:Yt}},si={nvGraphicFramePr:{type:"child",childAttributes:di},xfrm:{type:"child",childAttributes:vt},macro:{type:"string"},fPublished:{type:"boolean",defaultValue:"false"}},ui={},ai={"r:id":{type:"string"}},ci={col:{type:"child-int",childIsArray:!0},colOff:{type:"child-string",childIsArray:!0},row:{type:"child-int",childIsArray:!0},rowOff:{type:"child-string",childIsArray:!0}},pi={from:{type:"child",childAttributes:ci,childIsArray:!0},to:{type:"child",childAttributes:ci,childIsArray:!0},sp:{type:"child",childAttributes:ti,childIsArray:!0},grpSp:{type:"child",childAttributes:ui,childIsArray:!0},graphicFrame:{type:"child",childAttributes:si,childIsArray:!0},cxnSp:{type:"child",childAttributes:ii,childIsArray:!0},pic:{type:"child",childAttributes:ri,childIsArray:!0},contentPart:{type:"child",childAttributes:ai,childIsArray:!0},clientData:{type:"child",childAttributes:Ze},editAs:{type:"string",defaultValue:"twoCell"}},hi={from:{type:"child",childAttributes:ci,childIsArray:!0},ext:{type:"child",childAttributes:xt,childIsArray:!0},sp:{type:"child",childAttributes:ti,childIsArray:!0},grpSp:{type:"child",childAttributes:ui,childIsArray:!0},graphicFrame:{type:"child",childAttributes:si,childIsArray:!0},cxnSp:{type:"child",childAttributes:ii,childIsArray:!0},pic:{type:"child",childAttributes:ri,childIsArray:!0},contentPart:{type:"child",childAttributes:ai,childIsArray:!0},clientData:{type:"child",childAttributes:Ze}},yi={pos:{type:"child",childAttributes:mt,childIsArray:!0},ext:{type:"child",childAttributes:xt,childIsArray:!0},sp:{type:"child",childAttributes:ti,childIsArray:!0},grpSp:{type:"child",childAttributes:ui,childIsArray:!0},graphicFrame:{type:"child",childAttributes:si,childIsArray:!0},cxnSp:{type:"child",childAttributes:ii,childIsArray:!0},pic:{type:"child",childAttributes:ri,childIsArray:!0},contentPart:{type:"child",childAttributes:ai,childIsArray:!0},clientData:{type:"child",childAttributes:Ze}},oi={val:{type:"string"}},ni={year:{type:"int"},month:{type:"int"},day:{type:"int"},hour:{type:"int"},minute:{type:"int"},second:{type:"int"},dateTimeGrouping:{type:"string"}},bi={filter:{type:"child",childAttributes:oi,childIsArray:!0},dateGroupItem:{type:"child",childAttributes:ni,childIsArray:!0},blank:{type:"boolean",defaultValue:"false"},calendarType:{type:"string",defaultValue:"none"}},Ai={top:{type:"boolean",defaultValue:"true"},percent:{type:"boolean",defaultValue:"false"},val:{type:"double"},filterVal:{type:"double"}},fi={operator:{type:"string",defaultValue:"equal"},val:{type:"string"}},_i={customFilter:{type:"child",childAttributes:fi,childIsArray:!0},and:{type:"boolean",defaultValue:"false"}},Ci={type:{type:"string"},val:{type:"double"},valIso:{type:"string"},maxValIso:{type:"string"}},gi={dxfId:{type:"int"},cellColor:{type:"boolean",defaultValue:"true"}},Ti={iconSet:{type:"string"},iconId:{type:"int"}},Vi={filters:{type:"child",childAttributes:bi},top10:{type:"child",childAttributes:Ai},customFilters:{type:"child",childAttributes:_i},dynamicFilter:{type:"child",childAttributes:Ci},colorFilter:{type:"child",childAttributes:gi},iconFilter:{type:"child",childAttributes:Ti},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},colId:{type:"int"},hiddenButton:{type:"boolean",defaultValue:"false"},showButton:{type:"boolean",defaultValue:"true"}},mi={descending:{type:"boolean",defaultValue:"false"},sortBy:{type:"string",defaultValue:"value"},ref:{type:"string"},customList:{type:"string"},dxfId:{type:"int"},iconSet:{type:"string",defaultValue:"3Arrows"},iconId:{type:"int"}},xi={sortCondition:{type:"child",childAttributes:mi,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},columnSort:{type:"boolean",defaultValue:"false"},caseSensitive:{type:"boolean",defaultValue:"false"},sortMethod:{type:"string",defaultValue:"none"},ref:{type:"string"}},vi={filterColumn:{type:"child",childAttributes:Vi,childIsArray:!0},sortState:{type:"child",childAttributes:xi},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},ref:{type:"string"}},Pi={val:{type:"string"}},Ii={val:{type:"int"}},Si={val:{type:"boolean",defaultValue:"true"}},Li={val:{type:"double"}},Fi={val:{type:"string",defaultValue:"single"}},wi={val:{type:"string"}},Ri={rFont:{type:"child",childAttributes:Pi},charset:{type:"child",childAttributes:Ii},family:{type:"child",childAttributes:Ii},b:{type:"child",childAttributes:Si},i:{type:"child",childAttributes:Si},strike:{type:"child",childAttributes:Si},outline:{type:"child",childAttributes:Si},shadow:{type:"child",childAttributes:Si},condense:{type:"child",childAttributes:Si},extend:{type:"child",childAttributes:Si},color:{type:"child",childAttributes:u},sz:{type:"child",childAttributes:Li},u:{type:"child",childAttributes:Fi},vertAlign:{type:"child",childAttributes:wi},scheme:{type:"child",childAttributes:Vt}},Oi={rPr:{type:"child",childAttributes:Ri},t:{type:"child-string"}},Mi={t:{type:"child-string"},sb:{type:"int"},eb:{type:"int"}},Di={fontId:{type:"int"},type:{type:"string",defaultValue:"fullwidthKatakana"},alignment:{type:"string",defaultValue:"left"}},ki={t:{type:"child-string"},r:{type:"child",childAttributes:Oi,childIsArray:!0},rPh:{type:"child",childAttributes:Mi,childIsArray:!0},phoneticPr:{type:"child",childAttributes:Di}},Bi={x:{type:"child",childAttributes:Bt,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes,childIsArray:!0},field:{type:"int"},count:{type:"int"},selected:{type:"boolean",defaultValue:"true"},byPosition:{type:"boolean",defaultValue:"false"},relative:{type:"boolean",defaultValue:"false"},defaultSubtotal:{type:"boolean",defaultValue:"false"},sumSubtotal:{type:"boolean",defaultValue:"false"},countASubtotal:{type:"boolean",defaultValue:"false"},avgSubtotal:{type:"boolean",defaultValue:"false"},maxSubtotal:{type:"boolean",defaultValue:"false"},minSubtotal:{type:"boolean",defaultValue:"false"},productSubtotal:{type:"boolean",defaultValue:"false"},countSubtotal:{type:"boolean",defaultValue:"false"},stdDevSubtotal:{type:"boolean",defaultValue:"false"},stdDevPSubtotal:{type:"boolean",defaultValue:"false"},varSubtotal:{type:"boolean",defaultValue:"false"},varPSubtotal:{type:"boolean",defaultValue:"false"}},Ei={reference:{type:"child",childAttributes:Bi,childIsArray:!0},count:{type:"int"}},Gi={references:{type:"child",childAttributes:Ei,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes,childIsArray:!0},field:{type:"int"},type:{type:"string",defaultValue:"normal"},dataOnly:{type:"boolean",defaultValue:"true"},labelOnly:{type:"boolean",defaultValue:"false"},grandRow:{type:"boolean",defaultValue:"false"},grandCol:{type:"boolean",defaultValue:"false"},cacheIndex:{type:"boolean",defaultValue:"false"},outline:{type:"boolean",defaultValue:"true"},offset:{type:"string"},collapsedLevelsAreSubtotals:{type:"boolean",defaultValue:"false"},axis:{type:"string"},fieldPosition:{type:"int"}},zi={},Ni={f:{type:"child",childAttributes:zi},v:{type:"child-string"},is:{type:"child",childAttributes:ki},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes,childIsArray:!0},r:{type:"string"},s:{type:"int",defaultValue:"0"},t:{type:"string",defaultValue:"n"},cm:{type:"int",defaultValue:"0"},vm:{type:"int",defaultValue:"0"},ph:{type:"boolean",defaultValue:"false"}},Hi={val:{type:"int"}},Wi={name:{type:"child",childAttributes:Pi},charset:{type:"child",childAttributes:Ii},family:{type:"child",childAttributes:Hi},b:{type:"child",childAttributes:Si},i:{type:"child",childAttributes:Si},strike:{type:"child",childAttributes:Si},outline:{type:"child",childAttributes:Si},shadow:{type:"child",childAttributes:Si},condense:{type:"child",childAttributes:Si},extend:{type:"child",childAttributes:Si},color:{type:"child",childAttributes:u},sz:{type:"child",childAttributes:Li},u:{type:"child",childAttributes:Fi},vertAlign:{type:"child",childAttributes:wi},scheme:{type:"child",childAttributes:Vt}},Xi={numFmtId:{type:"int"},formatCode:{type:"string"}},ji={fgColor:{type:"child",childAttributes:u},bgColor:{type:"child",childAttributes:u},patternType:{type:"string"}},qi={stop:{type:"child",childAttributes:w,childIsArray:!0},type:{type:"string",defaultValue:"linear"},degree:{type:"double",defaultValue:"0"},left:{type:"double",defaultValue:"0"},right:{type:"double",defaultValue:"0"},top:{type:"double",defaultValue:"0"},bottom:{type:"double",defaultValue:"0"}},Ui={patternFill:{type:"child",childAttributes:ji},gradientFill:{type:"child",childAttributes:qi}},Yi={horizontal:{type:"string"},vertical:{type:"string",defaultValue:"bottom"},textRotation:{type:"int"},wrapText:{type:"boolean"},indent:{type:"int"},relativeIndent:{type:"int"},justifyLastLine:{type:"boolean"},shrinkToFit:{type:"boolean"},readingOrder:{type:"int"}},Ji={color:{type:"child",childAttributes:u},style:{type:"string",defaultValue:"none"}},Qi={start:{type:"child",childAttributes:Ji},end:{type:"child",childAttributes:Ji},left:{type:"child",childAttributes:Ji},right:{type:"child",childAttributes:Ji},top:{type:"child",childAttributes:Ji},bottom:{type:"child",childAttributes:Ji},diagonal:{type:"child",childAttributes:Ji},vertical:{type:"child",childAttributes:Ji},horizontal:{type:"child",childAttributes:Ji},diagonalUp:{type:"boolean"},diagonalDown:{type:"boolean"},outline:{type:"boolean",defaultValue:"true"}},Ki={locked:{type:"boolean"},hidden:{type:"boolean"}},Zi={font:{type:"child",childAttributes:Wi},numFmt:{type:"child",childAttributes:Xi},fill:{type:"child",childAttributes:Ui},alignment:{type:"child",childAttributes:Yi},border:{type:"child",childAttributes:Qi},protection:{type:"child",childAttributes:Ki},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},$i={applyStyles:{type:"boolean",defaultValue:"false"},summaryBelow:{type:"boolean",defaultValue:"true"},summaryRight:{type:"boolean",defaultValue:"true"},showOutlineSymbols:{type:"boolean",defaultValue:"true"}},tl={autoPageBreaks:{type:"boolean",defaultValue:"true"},fitToPage:{type:"boolean",defaultValue:"false"}},el={tabColor:{type:"child",childAttributes:u},outlinePr:{type:"child",childAttributes:$i},pageSetUpPr:{type:"child",childAttributes:tl},syncHorizontal:{type:"boolean",defaultValue:"false"},syncVertical:{type:"boolean",defaultValue:"false"},syncRef:{type:"string"},transitionEvaluation:{type:"boolean",defaultValue:"false"},transitionEntry:{type:"boolean",defaultValue:"false"},published:{type:"boolean",defaultValue:"true"},codeName:{type:"string"},filterMode:{type:"boolean",defaultValue:"false"},enableFormatConditionsCalculation:{type:"boolean",defaultValue:"true"}},il={xSplit:{type:"double",defaultValue:"0"},ySplit:{type:"double",defaultValue:"0"},topLeftCell:{type:"string"},activePane:{type:"string",defaultValue:"topLeft"},state:{type:"string",defaultValue:"split"}},ll={pane:{type:"string",defaultValue:"topLeft"},activeCell:{type:"string"},activeCellId:{type:"int",defaultValue:"0"},sqref:{type:"string",defaultValue:"A1"}},rl={pivotArea:{type:"child",childAttributes:Gi,childIsArray:!0},pane:{type:"string",defaultValue:"topLeft"},showHeader:{type:"boolean",defaultValue:"false"},label:{type:"boolean",defaultValue:"false"},data:{type:"boolean",defaultValue:"false"},extendable:{type:"boolean",defaultValue:"false"},count:{type:"int",defaultValue:"0"},axis:{type:"string"},dimension:{type:"int",defaultValue:"0"},start:{type:"int",defaultValue:"0"},min:{type:"int",defaultValue:"0"},max:{type:"int",defaultValue:"0"},activeRow:{type:"int",defaultValue:"0"},activeCol:{type:"int",defaultValue:"0"},previousRow:{type:"int",defaultValue:"0"},previousCol:{type:"int",defaultValue:"0"},click:{type:"int",defaultValue:"0"},"r:id":{type:"string"}},dl={pane:{type:"child",childAttributes:il},selection:{type:"child",childAttributes:ll,childIsArray:!0},pivotSelection:{type:"child",childAttributes:rl,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},windowProtection:{type:"boolean",defaultValue:"false"},showFormulas:{type:"boolean",defaultValue:"false"},showGridLines:{type:"boolean",defaultValue:"true"},showRowColHeaders:{type:"boolean",defaultValue:"true"},showZeros:{type:"boolean",defaultValue:"true"},rightToLeft:{type:"boolean",defaultValue:"false"},tabSelected:{type:"boolean",defaultValue:"false"},showRuler:{type:"boolean",defaultValue:"true"},showOutlineSymbols:{type:"boolean",defaultValue:"true"},defaultGridColor:{type:"boolean",defaultValue:"true"},showWhiteSpace:{type:"boolean",defaultValue:"true"},view:{type:"string",defaultValue:"normal"},topLeftCell:{type:"string"},colorId:{type:"int",defaultValue:"64"},zoomScale:{type:"int",defaultValue:"100"},zoomScaleNormal:{type:"int",defaultValue:"0"},zoomScaleSheetLayoutView:{type:"int",defaultValue:"0"},zoomScalePageLayoutView:{type:"int",defaultValue:"0"},workbookViewId:{type:"int"}},sl={c:{type:"child",childAttributes:Ni,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes,childIsArray:!0},r:{type:"int"},spans:{type:"string",childIsArray:!0},s:{type:"int",defaultValue:"0"},customFormat:{type:"boolean",defaultValue:"false"},ht:{type:"double"},hidden:{type:"boolean",defaultValue:"false"},customHeight:{type:"boolean",defaultValue:"false"},outlineLevel:{type:"int",defaultValue:"0"},collapsed:{type:"boolean",defaultValue:"false"},thickTop:{type:"boolean",defaultValue:"false"},thickBot:{type:"boolean",defaultValue:"false"},ph:{type:"boolean",defaultValue:"false"}},ul={extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},type:{type:"string"},val:{type:"string"},gte:{type:"boolean",defaultValue:"true"}},al={cfvo:{type:"child",childAttributes:ul,childIsArray:!0},color:{type:"child",childAttributes:u,childIsArray:!0}},cl={cfvo:{type:"child",childAttributes:ul,childIsArray:!0},color:{type:"child",childAttributes:u},minLength:{type:"int",defaultValue:"10"},maxLength:{type:"int",defaultValue:"90"},showValue:{type:"boolean",defaultValue:"true"}},pl={cfvo:{type:"child",childAttributes:ul,childIsArray:!0},iconSet:{type:"string",defaultValue:"3TrafficLights1"},showValue:{type:"boolean",defaultValue:"true"},percent:{type:"boolean",defaultValue:"true"},reverse:{type:"boolean",defaultValue:"false"}},hl={formula:{type:"child-string",childIsArray:!0},colorScale:{type:"child",childAttributes:al},dataBar:{type:"child",childAttributes:cl},iconSet:{type:"child",childAttributes:pl},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes,childIsArray:!0},type:{type:"string"},dxfId:{type:"int"},priority:{type:"int"},stopIfTrue:{type:"boolean",defaultValue:"false"},aboveAverage:{type:"boolean",defaultValue:"true"},percent:{type:"boolean",defaultValue:"false"},bottom:{type:"boolean",defaultValue:"false"},operator:{type:"string"},text:{type:"string"},timePeriod:{type:"string"},rank:{type:"int"},stdDev:{type:"int"},equalAverage:{type:"boolean",defaultValue:"false"}},yl={cfRule:{type:"child",childAttributes:hl,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes,childIsArray:!0},pivot:{type:"boolean",defaultValue:"false"},sqref:{type:"string"}},ol={numFmt:{type:"child",childAttributes:Xi,childIsArray:!0},count:{type:"int"}},nl={font:{type:"child",childAttributes:Wi,childIsArray:!0},count:{type:"int"}},bl={fill:{type:"child",childAttributes:Ui,childIsArray:!0},count:{type:"int"}},Al={border:{type:"child",childAttributes:Qi,childIsArray:!0},count:{type:"int"}},fl={alignment:{type:"child",childAttributes:Yi},protection:{type:"child",childAttributes:Ki},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},numFmtId:{type:"int"},fontId:{type:"int"},fillId:{type:"int"},borderId:{type:"int"},xfId:{type:"int"},quotePrefix:{type:"boolean",defaultValue:"false"},pivotButton:{type:"boolean",defaultValue:"false"},applyNumberFormat:{type:"boolean"},applyFont:{type:"boolean"},applyFill:{type:"boolean"},applyBorder:{type:"boolean"},applyAlignment:{type:"boolean"},applyProtection:{type:"boolean"}},_l={xf:{type:"child",childAttributes:fl,childIsArray:!0},count:{type:"int"}},Cl={xf:{type:"child",childAttributes:fl,childIsArray:!0},count:{type:"int"}},gl={extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},name:{type:"string"},xfId:{type:"int"},builtinId:{type:"int"},iLevel:{type:"int"},hidden:{type:"boolean"},customBuiltin:{type:"boolean"}},Tl={cellStyle:{type:"child",childAttributes:gl,childIsArray:!0},count:{type:"int"}},Vl={dxf:{type:"child",childAttributes:Zi,childIsArray:!0},count:{type:"int"}},ml={tableStyle:{type:"child",childAttributes:Ke,childIsArray:!0},count:{type:"int"},defaultTableStyle:{type:"string"},defaultPivotStyle:{type:"string"}},xl={rgb:{type:"string"}},vl={rgbColor:{type:"child",childAttributes:xl,childIsArray:!0}},Pl={color:{type:"child",childAttributes:u,childIsArray:!0}},Il={indexedColors:{type:"child",childAttributes:vl},mruColors:{type:"child",childAttributes:Pl}},Sl={numFmts:{type:"child",childAttributes:ol},fonts:{type:"child",childAttributes:nl},fills:{type:"child",childAttributes:bl},borders:{type:"child",childAttributes:Al},cellStyleXfs:{type:"child",childAttributes:_l},cellXfs:{type:"child",childAttributes:Cl},cellStyles:{type:"child",childAttributes:Tl},dxfs:{type:"child",childAttributes:Vl},tableStyles:{type:"child",childAttributes:ml},colors:{type:"child",childAttributes:Il},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ll={},Fl={extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},mapId:{type:"int"},xpath:{type:"string"},denormalized:{type:"boolean",defaultValue:"false"},xmlDataType:{type:"string"}},wl={calculatedColumnFormula:{type:"child",childAttributes:Ll},totalsRowFormula:{type:"child",childAttributes:Ll},xmlColumnPr:{type:"child",childAttributes:Fl},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},id:{type:"int"},uniqueName:{type:"string"},name:{type:"string"},totalsRowFunction:{type:"string",defaultValue:"none"},totalsRowLabel:{type:"string"},queryTableFieldId:{type:"int"},headerRowDxfId:{type:"int"},dataDxfId:{type:"int"},totalsRowDxfId:{type:"int"},headerRowCellStyle:{type:"string"},dataCellStyle:{type:"string"},totalsRowCellStyle:{type:"string"}},Rl={tableColumn:{type:"child",childAttributes:wl,childIsArray:!0},count:{type:"int"}},Ol={name:{type:"string"},showFirstColumn:{type:"boolean"},showLastColumn:{type:"boolean"},showRowStripes:{type:"boolean"},showColumnStripes:{type:"boolean"}},Ml={autoFilter:{type:"child",childAttributes:vi},sortState:{type:"child",childAttributes:xi},tableColumns:{type:"child",childAttributes:Rl},tableStyleInfo:{type:"child",childAttributes:Ol},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},id:{type:"int"},name:{type:"string"},displayName:{type:"string"},comment:{type:"string"},ref:{type:"string"},tableType:{type:"string",defaultValue:"worksheet"},headerRowCount:{type:"int",defaultValue:"1"},insertRow:{type:"boolean",defaultValue:"false"},insertRowShift:{type:"boolean",defaultValue:"false"},totalsRowCount:{type:"int",defaultValue:"0"},totalsRowShown:{type:"boolean",defaultValue:"true"},published:{type:"boolean",defaultValue:"false"},headerRowDxfId:{type:"int"},dataDxfId:{type:"int"},totalsRowDxfId:{type:"int"},headerRowBorderDxfId:{type:"int"},tableBorderDxfId:{type:"int"},totalsRowBorderDxfId:{type:"int"},headerRowCellStyle:{type:"string"},dataCellStyle:{type:"string"},totalsRowCellStyle:{type:"string"},connectionId:{type:"int"}},Dl={extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes},visibility:{type:"string",defaultValue:"visible"},minimized:{type:"boolean",defaultValue:"false"},showHorizontalScroll:{type:"boolean",defaultValue:"true"},showVerticalScroll:{type:"boolean",defaultValue:"true"},showSheetTabs:{type:"boolean",defaultValue:"true"},xWindow:{type:"int"},yWindow:{type:"int"},windowWidth:{type:"int"},windowHeight:{type:"int"},tabRatio:{type:"int",defaultValue:"600"},firstSheet:{type:"int",defaultValue:"0"},activeTab:{type:"int",defaultValue:"0"},autoFilterDateGrouping:{type:"boolean",defaultValue:"true"}};e.CT_AbsoluteAnchor_Attributes=yi,e.CT_AdjPoint2D_Attributes=Le,e.CT_AdjustHandleList_Attributes=Re,e.CT_AlphaBiLevelEffect_Attributes=B,e.CT_AlphaCeilingEffect_Attributes=E,e.CT_AlphaFloorEffect_Attributes=G,e.CT_AlphaInverseEffect_Attributes=z,e.CT_AlphaModulateEffect_Attributes=H,e.CT_AlphaModulateFixedEffect_Attributes=W,e.CT_AlphaReplaceEffect_Attributes=X,e.CT_AnchorClientData_Attributes=Ze,e.CT_Angle_Attributes=b,e.CT_AutoFilter_Attributes=vi,e.CT_Backdrop_Attributes=pt,e.CT_Bevel_Attributes=yt,e.CT_BiLevelEffect_Attributes=j,e.CT_BlipFillProperties_Attributes=it,e.CT_Blip_Attributes=$,e.CT_BlurEffect_Attributes=I,e.CT_BookView_Attributes=Dl,e.CT_BooleanProperty_Attributes=Si,e.CT_Boolean_Attributes=Te,e.CT_BorderPr_Attributes=Ji,e.CT_Border_Attributes=Qi,e.CT_Borders_Attributes=Al,e.CT_CalcPr_Attributes={calcId:{type:"int"},calcMode:{type:"string",defaultValue:"auto"},fullCalcOnLoad:{type:"boolean",defaultValue:"false"},refMode:{type:"string",defaultValue:"A1"},iterate:{type:"boolean",defaultValue:"false"},iterateCount:{type:"int",defaultValue:"100"},iterateDelta:{type:"double",defaultValue:"0.001"},fullPrecision:{type:"boolean",defaultValue:"true"},calcCompleted:{type:"boolean",defaultValue:"true"},calcOnSave:{type:"boolean",defaultValue:"true"},concurrentCalc:{type:"boolean",defaultValue:"true"},concurrentManualCount:{type:"int"},forceFullCalc:{type:"boolean"}},e.CT_Camera_Attributes=st,e.CT_CellAlignment_Attributes=Yi,e.CT_CellFormula_Attributes=zi,e.CT_CellProtection_Attributes=Ki,e.CT_CellStyleXfs_Attributes=_l,e.CT_CellStyle_Attributes=gl,e.CT_CellStyles_Attributes=Tl,e.CT_CellXfs_Attributes=Cl,e.CT_Cell_Attributes=Ni,e.CT_CfRule_Attributes=hl,e.CT_Cfvo_Attributes=ul,e.CT_Col_Attributes={min:{type:"int"},max:{type:"int"},width:{type:"double"},style:{type:"int",defaultValue:"0"},hidden:{type:"boolean",defaultValue:"false"},bestFit:{type:"boolean",defaultValue:"false"},customWidth:{type:"boolean",defaultValue:"false"},phonetic:{type:"boolean",defaultValue:"false"},outlineLevel:{type:"int",defaultValue:"0"},collapsed:{type:"boolean",defaultValue:"false"}},e.CT_ColorChangeEffect_Attributes=q,e.CT_ColorFilter_Attributes=gi,e.CT_ColorReplaceEffect_Attributes=U,e.CT_ColorScale_Attributes=al,e.CT_Color_Attributes=u,e.CT_Colors_Attributes=Il,e.CT_ComplementTransform_Attributes=c,e.CT_ConditionalFormatting_Attributes=yl,e.CT_ConnectionSiteList_Attributes=Me,e.CT_ConnectionSite_Attributes=Oe,e.CT_Connection_Attributes=jt,e.CT_ConnectorLocking_Attributes=Pt,e.CT_ConnectorNonVisual_Attributes=ei,e.CT_Connector_Attributes=ii,e.CT_CustomFilter_Attributes=fi,e.CT_CustomFilters_Attributes=_i,e.CT_CustomGeometry2D_Attributes=Xe,e.CT_DashStopList_Attributes=At,e.CT_DashStop_Attributes=bt,e.CT_DataBar_Attributes=cl,e.CT_DateGroupItem_Attributes=ni,e.CT_DbPr_Attributes=Ot,e.CT_DefinedName_Attributes={},e.CT_DuotoneEffect_Attributes=Y,e.CT_Dxf_Attributes=Zi,e.CT_Dxfs_Attributes=Vl,e.CT_DynamicFilter_Attributes=Ci,e.CT_EffectContainer_Attributes=N,e.CT_EffectList_Attributes=P,e.CT_FillOverlayEffect_Attributes=S,e.CT_Fill_Attributes=Ui,e.CT_Fills_Attributes=bl,e.CT_FilterColumn_Attributes=Vi,e.CT_Filter_Attributes=oi,e.CT_Filters_Attributes=bi,e.CT_FixedPercentage_Attributes=y,e.CT_FlatText_Attributes=ee,e.CT_FontFamily_Attributes=Hi,e.CT_FontName_Attributes=Pi,e.CT_FontReference_Attributes=Ye,e.CT_FontScheme_Attributes=Vt,e.CT_FontSize_Attributes=Li,e.CT_Font_Attributes=Wi,e.CT_Fonts_Attributes=nl,e.CT_GammaTransform_Attributes=f,e.CT_GeomGuideList_Attributes=Qt,e.CT_GeomGuide_Attributes=Jt,e.CT_GeomRect_Attributes=De,e.CT_GradientFillProperties_Attributes=k,e.CT_GradientFill_Attributes=qi,e.CT_GradientStopList_Attributes=R,e.CT_GradientStop_Attributes=w,e.CT_GraphicalObjectFrameLocking_Attributes=Lt,e.CT_GraphicalObjectFrameNonVisual_Attributes=di,e.CT_GraphicalObjectFrame_Attributes=si,e.CT_GrayscaleEffect_Attributes=J,e.CT_GrayscaleTransform_Attributes=h,e.CT_GroupFillProperties_Attributes=rt,e.CT_GroupShape_Attributes=ui,e.CT_HSLEffect_Attributes=Q,e.CT_HslColor_Attributes=T,e.CT_Hyperlink_Attributes=Ft,e.CT_IconFilter_Attributes=Ti,e.CT_IconSet_Attributes=pl,e.CT_Index_Attributes=Bt,e.CT_IndexedColors_Attributes=vl,e.CT_IntProperty_Attributes=Ii,e.CT_InverseGammaTransform_Attributes=_,e.CT_InverseTransform_Attributes=p,e.CT_LightRig_Attributes=ut,e.CT_LineEndProperties_Attributes=gt,e.CT_LineJoinBevel_Attributes=_t,e.CT_LineJoinMiterProperties_Attributes=Ct,e.CT_LineJoinRound_Attributes=ft,e.CT_LineProperties_Attributes=Tt,e.CT_LinearShadeProperties_Attributes=O,e.CT_LuminanceEffect_Attributes=K,e.CT_MRUColors_Attributes=Pl,e.CT_Marker_Attributes=ci,e.CT_NoFillProperties_Attributes=L,e.CT_NonVisualConnectorProperties_Attributes=qt,e.CT_NonVisualDrawingProps_Attributes=wt,e.CT_NonVisualDrawingShapeProps_Attributes=Rt,e.CT_NonVisualGraphicFrameProperties_Attributes=Yt,e.CT_NonVisualPictureProperties_Attributes=Ut,e.CT_NumFmt_Attributes=Xi,e.CT_NumFmts_Attributes=ol,e.CT_OfficeArtExtensionList_Attributes=s,e.CT_OfficeArtExtension_Attributes=d,e.CT_OlapPr_Attributes=Mt,e.CT_OneCellAnchor_Attributes=hi,e.CT_OutlinePr_Attributes=$i,e.CT_PageSetUpPr_Attributes=tl,e.CT_Pane_Attributes=il,e.CT_Parameter_Attributes=Wt,e.CT_Parameters_Attributes=Xt,e.CT_Path2DArcTo_Attributes=Ge,e.CT_Path2DClose_Attributes=ke,e.CT_Path2DCubicBezierTo_Attributes=Ne,e.CT_Path2DLineTo_Attributes=Ee,e.CT_Path2DList_Attributes=We,e.CT_Path2DMoveTo_Attributes=Be,e.CT_Path2DQuadBezierTo_Attributes=ze,e.CT_Path2D_Attributes=He,e.CT_PathShadeProperties_Attributes=D,e.CT_PatternFillProperties_Attributes=lt,e.CT_PatternFill_Attributes=ji,e.CT_Percentage_Attributes=A,e.CT_PhoneticPr_Attributes=Di,e.CT_PhoneticRun_Attributes=Mi,e.CT_PictureLocking_Attributes=St,e.CT_PictureNonVisual_Attributes=li,e.CT_Picture_Attributes=ri,e.CT_PivotAreaReference_Attributes=Bi,e.CT_PivotAreaReferences_Attributes=Ei,e.CT_PivotArea_Attributes=Gi,e.CT_PivotSelection_Attributes=rl,e.CT_Point2D_Attributes=mt,e.CT_Point3D_Attributes=at,e.CT_PolarAdjustHandle_Attributes=we,e.CT_PositiveFixedAngle_Attributes=n,e.CT_PositiveFixedPercentage_Attributes=a,e.CT_PositivePercentage_Attributes=o,e.CT_PositiveSize2D_Attributes=xt,e.CT_PresetColor_Attributes=x,e.CT_PresetGeometry2D_Attributes=je,e.CT_PresetLineDashProperties_Attributes=nt,e.CT_PresetTextShape_Attributes=Kt,e.CT_RElt_Attributes=Oi,e.CT_RPrElt_Attributes=Ri,e.CT_RegularTextRun_Attributes=ve,e.CT_Rel_Attributes=ai,e.CT_RelativeRect_Attributes=M,e.CT_RgbColor_Attributes=xl,e.CT_Row_Attributes=sl,e.CT_Rst_Attributes=ki,e.CT_SRgbColor_Attributes=g,e.CT_ScRgbColor_Attributes=C,e.CT_Scene3D_Attributes=ht,e.CT_SchemeColor_Attributes=m,e.CT_Selection_Attributes=ll,e.CT_Shape3D_Attributes=ot,e.CT_ShapeLocking_Attributes=It,e.CT_ShapeNonVisual_Attributes=$e,e.CT_ShapeProperties_Attributes=qe,e.CT_ShapeStyle_Attributes=Je,e.CT_Shape_Attributes=ti,e.CT_SheetFormatPr_Attributes={baseColWidth:{type:"int",defaultValue:"8"},defaultColWidth:{type:"double"},defaultRowHeight:{type:"double"},customHeight:{type:"boolean",defaultValue:"false"},zeroHeight:{type:"boolean",defaultValue:"false"},thickTop:{type:"boolean",defaultValue:"false"},thickBottom:{type:"boolean",defaultValue:"false"},outlineLevelRow:{type:"int",defaultValue:"0"},outlineLevelCol:{type:"int",defaultValue:"0"}},e.CT_SheetPr_Attributes=el,e.CT_SheetView_Attributes=dl,e.CT_SolidColorFillProperties_Attributes=F,e.CT_SortCondition_Attributes=mi,e.CT_SortState_Attributes=xi,e.CT_SphereCoords_Attributes=dt,e.CT_StretchInfoProperties_Attributes=et,e.CT_StyleMatrixReference_Attributes=Ue,e.CT_Stylesheet_Attributes=Sl,e.CT_SystemColor_Attributes=V,e.CT_TableColumn_Attributes=wl,e.CT_TableColumns_Attributes=Rl,e.CT_TableFormula_Attributes=Ll,e.CT_TableMissing_Attributes=Dt,e.CT_TableStyleElement_Attributes=Qe,e.CT_TableStyleInfo_Attributes=Ol,e.CT_TableStyle_Attributes=Ke,e.CT_TableStyles_Attributes=ml,e.CT_Table_Attributes=Ml,e.CT_Tables_Attributes=Et,e.CT_TextAutonumberBullet_Attributes=ye,e.CT_TextBlipBullet_Attributes=ne,e.CT_TextBodyProperties_Attributes=ie,e.CT_TextBody_Attributes=Se,e.CT_TextBulletColorFollowText_Attributes=se,e.CT_TextBulletSizeFollowText_Attributes=ue,e.CT_TextBulletSizePercent_Attributes=ae,e.CT_TextBulletSizePoint_Attributes=ce,e.CT_TextBulletTypefaceFollowText_Attributes=pe,e.CT_TextCharBullet_Attributes=oe,e.CT_TextCharacterProperties_Attributes=Ve,e.CT_TextField_Attributes=zt,e.CT_TextFields_Attributes=Nt,e.CT_TextFont_Attributes=v,e.CT_TextLineBreak_Attributes=Pe,e.CT_TextListStyle_Attributes=xe,e.CT_TextNoAutofit_Attributes=Zt,e.CT_TextNoBullet_Attributes=he,e.CT_TextNormalAutofit_Attributes=$t,e.CT_TextParagraphProperties_Attributes=me,e.CT_TextParagraph_Attributes=Ie,e.CT_TextPr_Attributes=Ht,e.CT_TextShapeAutofit_Attributes=te,e.CT_TextSpacingPercent_Attributes=le,e.CT_TextSpacingPoint_Attributes=re,e.CT_TextSpacing_Attributes=de,e.CT_TextTabStopList_Attributes=Ae,e.CT_TextTabStop_Attributes=be,e.CT_TextUnderlineFillFollowText_Attributes=_e,e.CT_TextUnderlineFillGroupWrapper_Attributes=Ce,e.CT_TextUnderlineLineFollowText_Attributes=fe,e.CT_TileInfoProperties_Attributes=tt,e.CT_TintEffect_Attributes=Z,e.CT_Top10_Attributes=Ai,e.CT_Transform2D_Attributes=vt,e.CT_TwoCellAnchor_Attributes=pi,e.CT_UnderlineProperty_Attributes=Fi,e.CT_Vector3D_Attributes=ct,e.CT_VerticalAlignFontProperty_Attributes=wi,e.CT_WebPr_Attributes=Gt,e.CT_WorkbookPr_Attributes={date1904:{type:"boolean",defaultValue:"false"},showObjects:{type:"string",defaultValue:"all"},showBorderUnselectedTables:{type:"boolean",defaultValue:"true"},filterPrivacy:{type:"boolean",defaultValue:"false"},promptedSolutions:{type:"boolean",defaultValue:"false"},showInkAnnotation:{type:"boolean",defaultValue:"true"},backupFile:{type:"boolean",defaultValue:"false"},saveExternalLinkValues:{type:"boolean",defaultValue:"true"},updateLinks:{type:"string",defaultValue:"userSet"},codeName:{type:"string"},hidePivotFieldList:{type:"boolean",defaultValue:"false"},showPivotChartFilter:{type:"boolean",defaultValue:"false"},allowRefreshQuery:{type:"boolean",defaultValue:"false"},publishItems:{type:"boolean",defaultValue:"false"},checkCompatibility:{type:"boolean",defaultValue:"false"},autoCompressPictures:{type:"boolean",defaultValue:"true"},refreshAllConnections:{type:"boolean",defaultValue:"false"},defaultThemeVersion:{type:"int"}},e.CT_XStringElement_Attributes=kt,e.CT_XYAdjustHandle_Attributes=Fe,e.CT_X_Attributes=ge,e.CT_Xf_Attributes=fl,e.CT_XmlColumnPr_Attributes=Fl}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/parseDefinedNames.js*/
- amis.define("22c1ca5",(function(e,t,i,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("4c070ac"),n=e("20a593d");t.parseDefinedNames=function(e){return a.parseChildrenAttributes(e,n.CT_DefinedName_Attributes)}}));
- ;/*!node_modules/office-viewer/lib/excel/types/ISheet.js*/
- amis.define("230927e",(function(e,t,i,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.ISheet_Attributes={name:{type:"string"},sheetId:{type:"string"},state:{type:"string"},"r:id":{type:"string"}}}));
- ;/*!node_modules/office-viewer/lib/excel/types/worksheet/ICell.js*/
- amis.define("eb2305a",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.CT_Cell_Attributes={r:{type:"string"},s:{type:"int"},t:{type:"string"},cm:{type:"int"},vm:{type:"int"},ph:{type:"boolean"}}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/util/decodeAddress.js*/
- amis.define("13c312c",(function(e,r,o,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n={};r.decodeAddress=function(e){var r=e.length<5&&n[e];if(r)return r;for(var o=!1,t="",i=0,c=!1,d="",f=0,a=0,l=void 0;a<e.length;a++)if(l=e.charCodeAt(a),!c&&l>=65&&l<=90)o=!0,t+=e[a],i=26*i+l-64;else if(l>=48&&l<=57)c=!0,d+=e[a],f=10*f+l-48;else if(c&&o&&36!==l)break;if(i>16384)throw new Error("Out of bounds. Invalid column letter: ".concat(t));e=t+d;var u={col:i-1,row:f-1};return i&&i<=100&&f&&f<=100&&(n[e]=u),u}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/worksheet/parseSheetData.js*/
- amis.define("02b0e16",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l=e("68b98b9"),n=e("20a593d"),o=e("eb2305a"),i=e("13c312c"),c=e("3d878b2");r.parseSheetData=function(e,r){var t,a,s,d,f,u,v,y,h=[],_=[];try{for(var x=l.__values(e.children||[]),b=x.next();!b.done;b=x.next()){var p=b.value,w=c.autoParse(p,n.CT_Row_Attributes),g=(w.r||1)-1;h[g]=w;try{for(var k=(s=void 0,l.__values(p.children||[])),m=k.next();!m.done;m=k.next()){var A=m.value,C=c.autoParse(A,o.CT_Cell_Attributes),P=C.t,j=C.s,D=i.decodeAddress(C.r).col,S="",T="";try{for(var I=(f=void 0,l.__values(A.children||[])),M=I.next();!M.done;M=I.next()){var O=M.value;switch(O.tag){case"v":if("s"===P)S=r[parseInt(O.text||"")];else S="d"==P?{type:"date",value:O.text||""}:O.text||"";break;case"f":T=O.text||"";break;case"is":try{for(var R=(v=void 0,l.__values(O.children||[])),q=R.next();!q.done;q=R.next()){var z=q.value;"t"===z.tag&&"inlineStr"===P&&(S=z.text||"")}}catch(e){v={error:e}}finally{try{q&&!q.done&&(y=R.return)&&y.call(R)}finally{if(v)throw v.error}}}T&&"string"==typeof S&&(S={type:"formula",formula:T,value:S}),j&&("string"==typeof S?S={type:"style",s:j,value:S}:"object"==typeof S&&(S.s=j)),_[g]||(_[g]=[]),_[g][D]=S}}catch(e){f={error:e}}finally{try{M&&!M.done&&(u=I.return)&&u.call(I)}finally{if(f)throw f.error}}if(!A.children||0===A.children.length){var B={type:"blank",s:j};_[g]||(_[g]=[]),_[g][D]=B}}}catch(e){s={error:e}}finally{try{m&&!m.done&&(d=k.return)&&d.call(k)}finally{if(s)throw s.error}}}}catch(e){t={error:e}}finally{try{b&&!b.done&&(a=x.return)&&a.call(x)}finally{if(t)throw t.error}}return{rows:h,cellData:_}}}));
- ;/*!node_modules/office-viewer/lib/util/joinPath.js*/
- amis.define("fd1e221",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.joinPath=function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=e.filter((function(e){return!!e})).join("/").replaceAll("\\","/").split("/").filter((function(e){return!!e&&"."!==e})).reduce((function(e,t){return".."===t?e.pop():e.push(t),e}),[]);return e[0]&&e[0].startsWith("/")&&n.unshift(""),n.join("/")||(n.length?"/":".")}}));
- ;/*!node_modules/office-viewer/lib/common/parseRelationship.js*/
- amis.define("d5af96a",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),i=e("554c0f4");t.parseRelationship=function(e){return n.__awaiter(this,void 0,void 0,(function(){var t,r,a,s,o,l,u;return n.__generator(this,(function(c){switch(c.label){case 0:return t=[],e?[4,i.xml2json(e)]:[3,2];case 1:r=c.sent();try{for(a=n.__values(r.children||[]),s=a.next();!s.done;s=a.next())"Relationship"===(o=s.value).tag&&t.push({id:o.attrs.Id,target:o.attrs.Target,targetMode:o.attrs.TargetMode,type:o.attrs.Type})}catch(e){l={error:e}}finally{try{s&&!s.done&&(u=a.return)&&u.call(a)}finally{if(l)throw l.error}}return[2,t];case 2:return[2,[]]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/getRelPath.js*/
- amis.define("55805a3",(function(e,t,n,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getRelPath=function(e){var t=e.split("/");return t[t.length-1]="_rels/"+t[t.length-1]+".rels",t.join("/")}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/drawing/getRelationPath.js*/
- amis.define("b89ecc6",(function(e,t,n,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("fd1e221");t.getRelationPath=function(e,t,n){var i=t.find((function(e){return e.id===n}));return i?r.joinPath(e,"..",i.target):null}}));
- ;/*!node_modules/office-viewer/lib/openxml/ChartTypes.js*/
- amis.define("68af3ba",(function(t,i,e,l){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var r=t("bdab8fa"),d={__any__:{type:"any"},uri:{type:"string"}},s={ext:{type:"child",childAttributes:d,childIsArray:!0}},c={val:{type:"string"}},h={},u={},p={},b={val:{type:"string"}},y={val:{type:"string"}},A={val:{type:"int"}},a={val:{type:"int"}},n={val:{type:"string"}},o={},_={},C={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:u},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:b},alphaMod:{type:"child",childAttributes:y},hue:{type:"child",childAttributes:A},hueOff:{type:"child",childAttributes:a},hueMod:{type:"child",childAttributes:y},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:o},invGamma:{type:"child",childAttributes:_},r:{type:"string"},g:{type:"string"},b:{type:"string"}},T={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:u},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:b},alphaMod:{type:"child",childAttributes:y},hue:{type:"child",childAttributes:A},hueOff:{type:"child",childAttributes:a},hueMod:{type:"child",childAttributes:y},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:o},invGamma:{type:"child",childAttributes:_},val:{type:"string"}},g={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:u},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:b},alphaMod:{type:"child",childAttributes:y},hue:{type:"int"},hueOff:{type:"child",childAttributes:a},hueMod:{type:"child",childAttributes:y},sat:{type:"string"},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"string"},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:o},invGamma:{type:"child",childAttributes:_}},f={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:u},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:b},alphaMod:{type:"child",childAttributes:y},hue:{type:"child",childAttributes:A},hueOff:{type:"child",childAttributes:a},hueMod:{type:"child",childAttributes:y},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:o},invGamma:{type:"child",childAttributes:_},val:{type:"string"},lastClr:{type:"string"}},x={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:u},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:b},alphaMod:{type:"child",childAttributes:y},hue:{type:"child",childAttributes:A},hueOff:{type:"child",childAttributes:a},hueMod:{type:"child",childAttributes:y},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:o},invGamma:{type:"child",childAttributes:_},val:{type:"string"}},L={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:u},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:b},alphaMod:{type:"child",childAttributes:y},hue:{type:"child",childAttributes:A},hueOff:{type:"child",childAttributes:a},hueMod:{type:"child",childAttributes:y},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:o},invGamma:{type:"child",childAttributes:_},val:{type:"string"}},m={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:T},hslClr:{type:"child",childAttributes:g},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:x},prstClr:{type:"child",childAttributes:L}},v={typeface:{type:"string"},panose:{type:"string"},pitchFamily:{type:"int",defaultValue:"0"},charset:{type:"int",defaultValue:"1"}},P={},I={rad:{type:"int",defaultValue:"0"},grow:{type:"boolean",defaultValue:"true"}},V={},S={},E={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:T},hslClr:{type:"child",childAttributes:g},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:x},prstClr:{type:"child",childAttributes:L}},M={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:T},hslClr:{type:"child",childAttributes:g},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:x},prstClr:{type:"child",childAttributes:L},pos:{type:"string"}},D={gs:{type:"child",childAttributes:M,childIsArray:!0}},F={ang:{type:"int"},scaled:{type:"boolean"}},k={l:{type:"string",defaultValue:"0%"},t:{type:"string",defaultValue:"0%"},r:{type:"string",defaultValue:"0%"},b:{type:"string",defaultValue:"0%"}},O={fillToRect:{type:"child",childAttributes:k},path:{type:"string"}},B={gsLst:{type:"child",childAttributes:D},lin:{type:"child",childAttributes:F},path:{type:"child",childAttributes:O},tileRect:{type:"child",childAttributes:k},flip:{type:"string",defaultValue:"none"},rotWithShape:{type:"boolean"}},R={},w={thresh:{type:"string"}},G={},z={},U={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:T},hslClr:{type:"child",childAttributes:g},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:x},prstClr:{type:"child",childAttributes:L}},j={type:{type:"string",defaultValue:"sib"},name:{type:"string"}},H={cont:{type:"child",childAttributes:j}},N={amt:{type:"string",defaultValue:"100%"}},W={a:{type:"string"}},X={thresh:{type:"string"}},Y={clrFrom:{type:"child",childAttributes:m},clrTo:{type:"child",childAttributes:m},useA:{type:"boolean",defaultValue:"true"}},q={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:T},hslClr:{type:"child",childAttributes:g},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:x},prstClr:{type:"child",childAttributes:L}},J={scrgbClr:{type:"child",childAttributes:C},srgbClr:{type:"child",childAttributes:T},hslClr:{type:"child",childAttributes:g},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:x},prstClr:{type:"child",childAttributes:L}},K={},Q={hue:{type:"int",defaultValue:"0"},sat:{type:"string",defaultValue:"0%"},lum:{type:"string",defaultValue:"0%"}},Z={bright:{type:"string",defaultValue:"0%"},contrast:{type:"string",defaultValue:"0%"}},$={hue:{type:"int",defaultValue:"0"},amt:{type:"string",defaultValue:"0%"}},tt={alphaBiLevel:{type:"child",childAttributes:w},alphaCeiling:{type:"child",childAttributes:G},alphaFloor:{type:"child",childAttributes:z},alphaInv:{type:"child",childAttributes:U},alphaMod:{type:"child",childAttributes:H},alphaModFix:{type:"child",childAttributes:N},alphaRepl:{type:"child",childAttributes:W},biLevel:{type:"child",childAttributes:X},blur:{type:"child",childAttributes:I},clrChange:{type:"child",childAttributes:Y},clrRepl:{type:"child",childAttributes:q},duotone:{type:"child",childAttributes:J},fillOverlay:{type:"child",childAttributes:V},grayscl:{type:"child",childAttributes:K},hsl:{type:"child",childAttributes:Q},lum:{type:"child",childAttributes:Z},tint:{type:"child",childAttributes:$},extLst:{type:"child",childAttributes:s},cstate:{type:"string",defaultValue:"none"}},it={fgClr:{type:"child",childAttributes:m},bgClr:{type:"child",childAttributes:m},prst:{type:"string"}},et={},lt={lat:{type:"int"},lon:{type:"int"},rev:{type:"int"}},rt={rot:{type:"child",childAttributes:lt},prst:{type:"string"},fov:{type:"int"},zoom:{type:"string",defaultValue:"100%"}},dt={rot:{type:"child",childAttributes:lt},rig:{type:"string"},dir:{type:"string"}},st={x:{type:"string"},y:{type:"string"},z:{type:"string"}},ct={dx:{type:"string"},dy:{type:"string"},dz:{type:"string"}},ht={anchor:{type:"child",childAttributes:st},norm:{type:"child",childAttributes:ct},up:{type:"child",childAttributes:ct},extLst:{type:"child",childAttributes:s}},ut={camera:{type:"child",childAttributes:rt},lightRig:{type:"child",childAttributes:dt},backdrop:{type:"child",childAttributes:ht},extLst:{type:"child",childAttributes:s}},pt={w:{type:"int",defaultValue:"76200"},h:{type:"int",defaultValue:"76200"},prst:{type:"string",defaultValue:"circle"}},bt={bevelT:{type:"child",childAttributes:pt},bevelB:{type:"child",childAttributes:pt},extrusionClr:{type:"child",childAttributes:m},contourClr:{type:"child",childAttributes:m},extLst:{type:"child",childAttributes:s},z:{type:"string",defaultValue:"0"},extrusionH:{type:"int",defaultValue:"0"},contourW:{type:"int",defaultValue:"0"},prstMaterial:{type:"string",defaultValue:"warmMatte"}},yt={val:{type:"string"}},At={d:{type:"string"},sp:{type:"string"}},at={ds:{type:"child",childAttributes:At,childIsArray:!0}},nt={},ot={},_t={lim:{type:"string"}},Ct={type:{type:"string",defaultValue:"none"},w:{type:"string"},len:{type:"string"}},Tt={noFill:{type:"child",childAttributes:S},solidFill:{type:"child",childAttributes:E},gradFill:{type:"child",childAttributes:B},pattFill:{type:"child",childAttributes:it},prstDash:{type:"child",childAttributes:yt},custDash:{type:"child",childAttributes:at},round:{type:"child",childAttributes:nt},bevel:{type:"child",childAttributes:ot},miter:{type:"child",childAttributes:_t},headEnd:{type:"child",childAttributes:Ct},tailEnd:{type:"child",childAttributes:Ct},extLst:{type:"child",childAttributes:s},w:{type:"int"},cap:{type:"string"},cmpd:{type:"string"},algn:{type:"string"}},gt={x:{type:"string"},y:{type:"string"}},ft={cx:{type:"int"},cy:{type:"int"}},xt={off:{type:"child",childAttributes:gt},ext:{type:"child",childAttributes:ft},rot:{type:"int",defaultValue:"0"},flipH:{type:"boolean",defaultValue:"false"},flipV:{type:"boolean",defaultValue:"false"}},Lt={name:{type:"string"}},mt={snd:{type:"child",childAttributes:Lt},extLst:{type:"child",childAttributes:s},"r:id":{type:"string"},invalidUrl:{type:"string"},action:{type:"string"},tgtFrame:{type:"string"},tooltip:{type:"string"},history:{type:"boolean",defaultValue:"true"},highlightClick:{type:"boolean",defaultValue:"false"},endSnd:{type:"boolean",defaultValue:"false"}},vt={name:{type:"string"},fmla:{type:"string"}},Pt={gd:{type:"child",childAttributes:vt,childIsArray:!0}},It={avLst:{type:"child",childAttributes:Pt},prst:{type:"string"}},Vt={},St={fontScale:{type:"string",defaultValue:"100%"},lnSpcReduction:{type:"string",defaultValue:"0%"}},Et={},Mt={z:{type:"string",defaultValue:"0"}},Dt={prstTxWarp:{type:"child",childAttributes:It},noAutofit:{type:"child",childAttributes:Vt,childIsArray:!0},normAutofit:{type:"child",childAttributes:St,childIsArray:!0},spAutoFit:{type:"child",childAttributes:Et,childIsArray:!0},scene3d:{type:"child",childAttributes:ut},sp3d:{type:"child",childAttributes:bt},flatTx:{type:"child",childAttributes:Mt},extLst:{type:"child",childAttributes:s},rot:{type:"int"},spcFirstLastPara:{type:"boolean"},vertOverflow:{type:"string"},horzOverflow:{type:"string"},vert:{type:"string"},wrap:{type:"string"},lIns:{type:"string"},tIns:{type:"string"},rIns:{type:"string"},bIns:{type:"string"},numCol:{type:"int"},spcCol:{type:"int"},rtlCol:{type:"boolean"},fromWordArt:{type:"boolean"},anchor:{type:"string"},anchorCtr:{type:"boolean"},forceAA:{type:"boolean"},upright:{type:"boolean",defaultValue:"false"},compatLnSpc:{type:"boolean"}},Ft={val:{type:"string"}},kt={val:{type:"int"}},Ot={spcPct:{type:"child",childAttributes:Ft,childIsArray:!0},spcPts:{type:"child",childAttributes:kt,childIsArray:!0}},Bt={},Rt={},wt={val:{type:"string"}},Gt={val:{type:"int"}},zt={},Ut={},jt={type:{type:"string"},startAt:{type:"int",defaultValue:"1"}},Ht={char:{type:"string"}},Nt={blip:{type:"child",childAttributes:tt}},Wt={pos:{type:"string"},algn:{type:"string"}},Xt={tab:{type:"child",childAttributes:Wt,childIsArray:!0}},Yt={},qt={},Jt={},Kt={val:{type:"boolean",defaultValue:"true"}},Qt={ln:{type:"child",childAttributes:Tt},noFill:{type:"child",childAttributes:S},solidFill:{type:"child",childAttributes:E},gradFill:{type:"child",childAttributes:B},blipFill:{type:"child",childAttributes:R},pattFill:{type:"child",childAttributes:it},grpFill:{type:"child",childAttributes:et},effectLst:{type:"child",childAttributes:P},effectDag:{type:"child",childAttributes:j},highlight:{type:"child",childAttributes:m},uLnTx:{type:"child",childAttributes:Yt,childIsArray:!0},uLn:{type:"child",childAttributes:Tt},uFillTx:{type:"child",childAttributes:qt,childIsArray:!0},uFill:{type:"child",childAttributes:Jt,childIsArray:!0},latin:{type:"child",childAttributes:v},ea:{type:"child",childAttributes:v},cs:{type:"child",childAttributes:v},sym:{type:"child",childAttributes:v},hlinkClick:{type:"child",childAttributes:mt},hlinkMouseOver:{type:"child",childAttributes:mt},rtl:{type:"child",childAttributes:Kt,childIsArray:!0},extLst:{type:"child",childAttributes:s},kumimoji:{type:"boolean"},lang:{type:"string"},altLang:{type:"string"},sz:{type:"int"},b:{type:"boolean"},i:{type:"boolean"},u:{type:"string"},strike:{type:"string"},kern:{type:"int"},cap:{type:"string",defaultValue:"none"},spc:{type:"string"},normalizeH:{type:"boolean"},baseline:{type:"string"},noProof:{type:"boolean"},dirty:{type:"boolean",defaultValue:"true"},err:{type:"boolean",defaultValue:"false"},smtClean:{type:"boolean",defaultValue:"true"},smtId:{type:"int",defaultValue:"0"},bmk:{type:"string"}},Zt={lnSpc:{type:"child",childAttributes:Ot},spcBef:{type:"child",childAttributes:Ot},spcAft:{type:"child",childAttributes:Ot},buClrTx:{type:"child",childAttributes:Bt},buClr:{type:"child",childAttributes:m},buSzTx:{type:"child",childAttributes:Rt,childIsArray:!0},buSzPct:{type:"child",childAttributes:wt,childIsArray:!0},buSzPts:{type:"child",childAttributes:Gt,childIsArray:!0},buFontTx:{type:"child",childAttributes:zt,childIsArray:!0},buFont:{type:"child",childAttributes:v,childIsArray:!0},buNone:{type:"child",childAttributes:Ut,childIsArray:!0},buAutoNum:{type:"child",childAttributes:jt,childIsArray:!0},buChar:{type:"child",childAttributes:Ht,childIsArray:!0},buBlip:{type:"child",childAttributes:Nt,childIsArray:!0},tabLst:{type:"child",childAttributes:Xt},defRPr:{type:"child",childAttributes:Qt},extLst:{type:"child",childAttributes:s},marL:{type:"int"},marR:{type:"int"},lvl:{type:"int"},indent:{type:"int"},algn:{type:"string"},defTabSz:{type:"string"},rtl:{type:"boolean"},eaLnBrk:{type:"boolean"},fontAlgn:{type:"string"},latinLnBrk:{type:"boolean"},hangingPunct:{type:"boolean"}},$t={defPPr:{type:"child",childAttributes:Zt},lvl1pPr:{type:"child",childAttributes:Zt},lvl2pPr:{type:"child",childAttributes:Zt},lvl3pPr:{type:"child",childAttributes:Zt},lvl4pPr:{type:"child",childAttributes:Zt},lvl5pPr:{type:"child",childAttributes:Zt},lvl6pPr:{type:"child",childAttributes:Zt},lvl7pPr:{type:"child",childAttributes:Zt},lvl8pPr:{type:"child",childAttributes:Zt},lvl9pPr:{type:"child",childAttributes:Zt},extLst:{type:"child",childAttributes:s}},ti={rPr:{type:"child",childAttributes:Qt},t:{type:"child-string"}},ii={rPr:{type:"child",childAttributes:Qt}},ei={rPr:{type:"child",childAttributes:Qt},pPr:{type:"child",childAttributes:Zt},t:{type:"child-string"},id:{type:"string"},type:{type:"string"}},li={pPr:{type:"child",childAttributes:Zt},r:{type:"child",childAttributes:ti,childIsArray:!0},br:{type:"child",childAttributes:ii,childIsArray:!0},fld:{type:"child",childAttributes:ei,childIsArray:!0},endParaRPr:{type:"child",childAttributes:Qt}},ri={bodyPr:{type:"child",childAttributes:Dt},lstStyle:{type:"child",childAttributes:$t},p:{type:"child",childAttributes:li,childIsArray:!0}},di={x:{type:"string"},y:{type:"string"}},si={pos:{type:"child",childAttributes:di},gdRefX:{type:"string"},minX:{type:"string"},maxX:{type:"string"},gdRefY:{type:"string"},minY:{type:"string"},maxY:{type:"string"}},ci={pos:{type:"child",childAttributes:di},gdRefR:{type:"string"},minR:{type:"string"},maxR:{type:"string"},gdRefAng:{type:"string"},minAng:{type:"string"},maxAng:{type:"string"}},hi={ahXY:{type:"child",childAttributes:si},ahPolar:{type:"child",childAttributes:ci}},ui={pos:{type:"child",childAttributes:di},ang:{type:"string"}},pi={cxn:{type:"child",childAttributes:ui,childIsArray:!0}},bi={l:{type:"string"},t:{type:"string"},r:{type:"string"},b:{type:"string"}},yi={},Ai={pt:{type:"child",childAttributes:di}},ai={pt:{type:"child",childAttributes:di}},ni={wR:{type:"string"},hR:{type:"string"},stAng:{type:"string"},swAng:{type:"string"}},oi={pt:{type:"child",childAttributes:di,childIsArray:!0}},_i={pt:{type:"child",childAttributes:di,childIsArray:!0}},Ci={close:{type:"child",childAttributes:yi},moveTo:{type:"child",childAttributes:Ai},lnTo:{type:"child",childAttributes:ai},arcTo:{type:"child",childAttributes:ni},quadBezTo:{type:"child",childAttributes:oi},cubicBezTo:{type:"child",childAttributes:_i},w:{type:"int",defaultValue:"0"},h:{type:"int",defaultValue:"0"},fill:{type:"string",defaultValue:"norm"},stroke:{type:"boolean",defaultValue:"true"},extrusionOk:{type:"boolean",defaultValue:"true"}},Ti={path:{type:"child",childAttributes:Ci,childIsArray:!0}},gi={avLst:{type:"child",childAttributes:Pt},gdLst:{type:"child",childAttributes:Pt},ahLst:{type:"child",childAttributes:hi},cxnLst:{type:"child",childAttributes:pi},rect:{type:"child",childAttributes:bi},pathLst:{type:"child",childAttributes:Ti}},fi={avLst:{type:"child",childAttributes:Pt},prst:{type:"string"}},xi={xfrm:{type:"child",childAttributes:xt},custGeom:{type:"child",childAttributes:gi},prstGeom:{type:"child",childAttributes:fi},noFill:{type:"child",childAttributes:S},solidFill:{type:"child",childAttributes:E},gradFill:{type:"child",childAttributes:B},blipFill:{type:"child",childAttributes:R},pattFill:{type:"child",childAttributes:it},grpFill:{type:"child",childAttributes:et},ln:{type:"child",childAttributes:Tt},effectLst:{type:"child",childAttributes:P},effectDag:{type:"child",childAttributes:j},scene3d:{type:"child",childAttributes:ut},sp3d:{type:"child",childAttributes:bt},extLst:{type:"child",childAttributes:s},bwMode:{type:"string"}},Li={extLst:{type:"child",childAttributes:s},bg1:{type:"string"},tx1:{type:"string"},bg2:{type:"string"},tx2:{type:"string"},accent1:{type:"string"},accent2:{type:"string"},accent3:{type:"string"},accent4:{type:"string"},accent5:{type:"string"},accent6:{type:"string"},hlink:{type:"string"},folHlink:{type:"string"}},mi={val:{type:"string",defaultValue:"box"}},vi={val:{type:"string"}},Pi={val:{type:"int",defaultValue:"5"}},Ii={symbol:{type:"child",childAttributes:vi},size:{type:"child",childAttributes:Pi},spPr:{type:"child",childAttributes:xi},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Vi={val:{type:"double"}},Si={val:{type:"int"}},Ei={"r:id":{type:"string"}},Mi={v:{type:"child-string"},idx:{type:"int"},formatCode:{type:"string"}},Di={formatCode:{type:"child-string"},ptCount:{type:"child",childAttributes:Si},pt:{type:"child",childAttributes:Mi,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Fi={f:{type:"child-string"},numCache:{type:"child",childAttributes:Di},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},ki={numRef:{type:"child",childAttributes:Fi},numLit:{type:"child",childAttributes:Di}},Oi={v:{type:"child-string"},idx:{type:"int"}},Bi={ptCount:{type:"child",childAttributes:Si},pt:{type:"child",childAttributes:Oi,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ri={f:{type:"child-string"},strCache:{type:"child",childAttributes:Bi},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},wi={strRef:{type:"child",childAttributes:Ri},rich:{type:"child",childAttributes:ri}},Gi={val:{type:"string"}},zi={pt:{type:"child",childAttributes:Oi,childIsArray:!0}},Ui={ptCount:{type:"child",childAttributes:Si},lvl:{type:"child",childAttributes:zi,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},ji={f:{type:"child-string"},multiLvlStrCache:{type:"child",childAttributes:Ui},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Hi={multiLvlStrRef:{type:"child",childAttributes:ji},numRef:{type:"child",childAttributes:Fi},numLit:{type:"child",childAttributes:Di},strRef:{type:"child",childAttributes:Ri},strLit:{type:"child",childAttributes:Bi}},Ni={strRef:{type:"child",childAttributes:Ri},v:{type:"child-string"}},Wi={val:{type:"string",defaultValue:"outer"}},Xi={val:{type:"string",defaultValue:"factor"}},Yi={layoutTarget:{type:"child",childAttributes:Wi},xMode:{type:"child",childAttributes:Xi},yMode:{type:"child",childAttributes:Xi},wMode:{type:"child",childAttributes:Xi},hMode:{type:"child",childAttributes:Xi},x:{type:"child",childAttributes:Vi},y:{type:"child",childAttributes:Vi},w:{type:"child",childAttributes:Vi},h:{type:"child",childAttributes:Vi},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},qi={manualLayout:{type:"child",childAttributes:Yi},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ji={tx:{type:"child",childAttributes:wi},layout:{type:"child",childAttributes:qi},overlay:{type:"child",childAttributes:Kt},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ki={val:{type:"int",defaultValue:"0"}},Qi={val:{type:"string",defaultValue:"100%"}},Zi={val:{type:"int",defaultValue:"0"}},$i={val:{type:"string",defaultValue:"100%"}},te={val:{type:"int",defaultValue:"30"}},ie={rotX:{type:"child",childAttributes:Ki},hPercent:{type:"child",childAttributes:Qi},rotY:{type:"child",childAttributes:Zi},depthPercent:{type:"child",childAttributes:$i},rAngAx:{type:"child",childAttributes:Kt},perspective:{type:"child",childAttributes:te},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},ee={val:{type:"string"}},le={val:{type:"string"}},re={val:{type:"double"}},de={applyToFront:{type:"child",childAttributes:Kt},applyToSides:{type:"child",childAttributes:Kt},applyToEnd:{type:"child",childAttributes:Kt},pictureFormat:{type:"child",childAttributes:le},pictureStackUnit:{type:"child",childAttributes:re}},se={thickness:{type:"child",childAttributes:ee},spPr:{type:"child",childAttributes:xi},pictureOptions:{type:"child",childAttributes:de},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},ce={showHorzBorder:{type:"child",childAttributes:Kt},showVertBorder:{type:"child",childAttributes:Kt},showOutline:{type:"child",childAttributes:Kt},showKeys:{type:"child",childAttributes:Kt},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},he={val:{type:"string",defaultValue:"150%"}},ue={val:{type:"string",defaultValue:"0%"}},pe={val:{type:"string",defaultValue:"100%"}},be={val:{type:"string",defaultValue:"area"}},ye={val:{type:"int",defaultValue:"0"}},Ae={val:{type:"string",defaultValue:"10%"}},ae={val:{type:"string",defaultValue:"auto"}},ne={secondPiePt:{type:"child",childAttributes:Si,childIsArray:!0}},oe={val:{type:"string",defaultValue:"75%"}},_e={formatCode:{type:"string"},sourceLinked:{type:"boolean"}},Ce={val:{type:"string"}},Te={idx:{type:"child",childAttributes:Si},delete:{type:"child",childAttributes:Kt},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},ge={dLbl:{type:"child",childAttributes:Te,childIsArray:!0},delete:{type:"child",childAttributes:Kt},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},fe={idx:{type:"child",childAttributes:Si},invertIfNegative:{type:"child",childAttributes:Kt},marker:{type:"child",childAttributes:Ii},bubble3D:{type:"child",childAttributes:Kt},explosion:{type:"child",childAttributes:Si},spPr:{type:"child",childAttributes:xi},pictureOptions:{type:"child",childAttributes:de},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},xe={val:{type:"string",defaultValue:"linear"}},Le={val:{type:"int",defaultValue:"2"}},me={val:{type:"int",defaultValue:"2"}},ve={layout:{type:"child",childAttributes:qi},tx:{type:"child",childAttributes:wi},numFmt:{type:"child",childAttributes:_e},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Pe={name:{type:"child-string"},spPr:{type:"child",childAttributes:xi},trendlineType:{type:"child",childAttributes:xe},order:{type:"child",childAttributes:Le},period:{type:"child",childAttributes:me},forward:{type:"child",childAttributes:Vi},backward:{type:"child",childAttributes:Vi},intercept:{type:"child",childAttributes:Vi},dispRSqr:{type:"child",childAttributes:Kt},dispEq:{type:"child",childAttributes:Kt},trendlineLbl:{type:"child",childAttributes:ve},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ie={val:{type:"string"}},Ve={val:{type:"string",defaultValue:"both"}},Se={val:{type:"string",defaultValue:"fixedVal"}},Ee={errDir:{type:"child",childAttributes:Ie},errBarType:{type:"child",childAttributes:Ve},errValType:{type:"child",childAttributes:Se},noEndCap:{type:"child",childAttributes:Kt},plus:{type:"child",childAttributes:ki},minus:{type:"child",childAttributes:ki},val:{type:"child",childAttributes:Vi},spPr:{type:"child",childAttributes:xi},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Me={spPr:{type:"child",childAttributes:xi}},De={gapWidth:{type:"child",childAttributes:he},upBars:{type:"child",childAttributes:Me},downBars:{type:"child",childAttributes:Me},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Fe={idx:{type:"child",childAttributes:Si},order:{type:"child",childAttributes:Si},tx:{type:"child",childAttributes:Ni},spPr:{type:"child",childAttributes:xi},marker:{type:"child",childAttributes:Ii},dPt:{type:"child",childAttributes:fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},trendline:{type:"child",childAttributes:Pe,childIsArray:!0},errBars:{type:"child",childAttributes:Ee},cat:{type:"child",childAttributes:Hi},val:{type:"child",childAttributes:ki},smooth:{type:"child",childAttributes:Kt},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},ke={idx:{type:"child",childAttributes:Si},order:{type:"child",childAttributes:Si},tx:{type:"child",childAttributes:Ni},spPr:{type:"child",childAttributes:xi},marker:{type:"child",childAttributes:Ii},dPt:{type:"child",childAttributes:fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},trendline:{type:"child",childAttributes:Pe,childIsArray:!0},errBars:{type:"child",childAttributes:Ee,childIsArray:!0},xVal:{type:"child",childAttributes:Hi},yVal:{type:"child",childAttributes:ki},smooth:{type:"child",childAttributes:Kt},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Oe={idx:{type:"child",childAttributes:Si},order:{type:"child",childAttributes:Si},tx:{type:"child",childAttributes:Ni},spPr:{type:"child",childAttributes:xi},marker:{type:"child",childAttributes:Ii},dPt:{type:"child",childAttributes:fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},cat:{type:"child",childAttributes:Hi},val:{type:"child",childAttributes:ki},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Be={idx:{type:"child",childAttributes:Si},order:{type:"child",childAttributes:Si},tx:{type:"child",childAttributes:Ni},spPr:{type:"child",childAttributes:xi},invertIfNegative:{type:"child",childAttributes:Kt},pictureOptions:{type:"child",childAttributes:de},dPt:{type:"child",childAttributes:fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},trendline:{type:"child",childAttributes:Pe,childIsArray:!0},errBars:{type:"child",childAttributes:Ee},cat:{type:"child",childAttributes:Hi},val:{type:"child",childAttributes:ki},shape:{type:"child",childAttributes:mi},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Re={idx:{type:"child",childAttributes:Si},order:{type:"child",childAttributes:Si},tx:{type:"child",childAttributes:Ni},spPr:{type:"child",childAttributes:xi},pictureOptions:{type:"child",childAttributes:de},dPt:{type:"child",childAttributes:fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},trendline:{type:"child",childAttributes:Pe,childIsArray:!0},errBars:{type:"child",childAttributes:Ee,childIsArray:!0},cat:{type:"child",childAttributes:Hi},val:{type:"child",childAttributes:ki},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},we={idx:{type:"child",childAttributes:Si},order:{type:"child",childAttributes:Si},tx:{type:"child",childAttributes:Ni},spPr:{type:"child",childAttributes:xi},explosion:{type:"child",childAttributes:Si},dPt:{type:"child",childAttributes:fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},cat:{type:"child",childAttributes:Hi},val:{type:"child",childAttributes:ki},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ge={idx:{type:"child",childAttributes:Si},order:{type:"child",childAttributes:Si},tx:{type:"child",childAttributes:Ni},spPr:{type:"child",childAttributes:xi},invertIfNegative:{type:"child",childAttributes:Kt},dPt:{type:"child",childAttributes:fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},trendline:{type:"child",childAttributes:Pe,childIsArray:!0},errBars:{type:"child",childAttributes:Ee,childIsArray:!0},xVal:{type:"child",childAttributes:Hi},yVal:{type:"child",childAttributes:ki},bubbleSize:{type:"child",childAttributes:ki},bubble3D:{type:"child",childAttributes:Kt},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},ze={idx:{type:"child",childAttributes:Si},order:{type:"child",childAttributes:Si},tx:{type:"child",childAttributes:Ni},spPr:{type:"child",childAttributes:xi},cat:{type:"child",childAttributes:Hi},val:{type:"child",childAttributes:ki},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ue={val:{type:"string",defaultValue:"standard"}},je={spPr:{type:"child",childAttributes:xi}},He={grouping:{type:"child",childAttributes:Ue},varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:Fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},dropLines:{type:"child",childAttributes:je},hiLowLines:{type:"child",childAttributes:je},upDownBars:{type:"child",childAttributes:De},marker:{type:"child",childAttributes:Kt},smooth:{type:"child",childAttributes:Kt},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ne={grouping:{type:"child",childAttributes:Ue},varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:Fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},dropLines:{type:"child",childAttributes:je},gapDepth:{type:"child",childAttributes:he},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},We={ser:{type:"child",childAttributes:Fe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},dropLines:{type:"child",childAttributes:je},hiLowLines:{type:"child",childAttributes:je},upDownBars:{type:"child",childAttributes:De},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Xe={val:{type:"string",defaultValue:"marker"}},Ye={scatterStyle:{type:"child",childAttributes:Xe},varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:ke,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},qe={val:{type:"string",defaultValue:"standard"}},Je={radarStyle:{type:"child",childAttributes:qe},varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:Oe,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ke={val:{type:"string",defaultValue:"clustered"}},Qe={val:{type:"string",defaultValue:"col"}},Ze={barDir:{type:"child",childAttributes:Qe},grouping:{type:"child",childAttributes:Ke},varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:Be,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},gapWidth:{type:"child",childAttributes:he},overlap:{type:"child",childAttributes:ue},serLines:{type:"child",childAttributes:je,childIsArray:!0},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},$e={barDir:{type:"child",childAttributes:Qe},grouping:{type:"child",childAttributes:Ke},varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:Be,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},gapWidth:{type:"child",childAttributes:he},gapDepth:{type:"child",childAttributes:he},shape:{type:"child",childAttributes:mi},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},tl={grouping:{type:"child",childAttributes:Ue},varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:Re,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},dropLines:{type:"child",childAttributes:je},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},il={grouping:{type:"child",childAttributes:Ue},varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:Re,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},dropLines:{type:"child",childAttributes:je},gapDepth:{type:"child",childAttributes:he},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},el={varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:we,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},firstSliceAng:{type:"child",childAttributes:ye},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},ll={varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:we,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},rl={varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:we,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},firstSliceAng:{type:"child",childAttributes:ye},holeSize:{type:"child",childAttributes:Ae},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},dl={val:{type:"string",defaultValue:"pie"}},sl={ofPieType:{type:"child",childAttributes:dl},varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:we,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},gapWidth:{type:"child",childAttributes:he},splitType:{type:"child",childAttributes:ae},splitPos:{type:"child",childAttributes:Vi},custSplit:{type:"child",childAttributes:ne},secondPieSize:{type:"child",childAttributes:oe},serLines:{type:"child",childAttributes:je,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},cl={varyColors:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:Ge,childIsArray:!0},dLbls:{type:"child",childAttributes:ge},bubble3D:{type:"child",childAttributes:Kt},bubbleScale:{type:"child",childAttributes:pe},showNegBubbles:{type:"child",childAttributes:Kt},sizeRepresents:{type:"child",childAttributes:be},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},hl={idx:{type:"child",childAttributes:Si},spPr:{type:"child",childAttributes:xi}},ul={bandFmt:{type:"child",childAttributes:hl,childIsArray:!0}},pl={wireframe:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:ze,childIsArray:!0},bandFmts:{type:"child",childAttributes:ul},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},bl={wireframe:{type:"child",childAttributes:Kt},ser:{type:"child",childAttributes:ze,childIsArray:!0},bandFmts:{type:"child",childAttributes:ul},axId:{type:"child",childAttributes:Si,childIsArray:!0},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},yl={val:{type:"string"}},Al={val:{type:"string"}},al={val:{type:"string"}},nl={val:{type:"string",defaultValue:"cross"}},ol={val:{type:"string",defaultValue:"nextTo"}},_l={val:{type:"int"}},Cl={val:{type:"string",defaultValue:"days"}},Tl={val:{type:"double"}},gl={val:{type:"string",defaultValue:"thousands"}},fl={layout:{type:"child",childAttributes:qi},tx:{type:"child",childAttributes:wi},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri}},xl={custUnit:{type:"child",childAttributes:Vi},builtInUnit:{type:"child",childAttributes:gl},dispUnitsLbl:{type:"child",childAttributes:fl},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ll={val:{type:"string",defaultValue:"minMax"}},ml={val:{type:"double"}},vl={logBase:{type:"child",childAttributes:ml},orientation:{type:"child",childAttributes:Ll},max:{type:"child",childAttributes:Vi},min:{type:"child",childAttributes:Vi},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Pl={val:{type:"string",defaultValue:"100%"}},Il={axId:{type:"child",childAttributes:Si},scaling:{type:"child",childAttributes:vl},delete:{type:"child",childAttributes:Kt},axPos:{type:"child",childAttributes:yl},majorGridlines:{type:"child",childAttributes:je},minorGridlines:{type:"child",childAttributes:je},title:{type:"child",childAttributes:Ji},numFmt:{type:"child",childAttributes:_e},majorTickMark:{type:"child",childAttributes:nl},minorTickMark:{type:"child",childAttributes:nl},tickLblPos:{type:"child",childAttributes:ol},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},crossAx:{type:"child",childAttributes:Si},crosses:{type:"child",childAttributes:Al},crossesAt:{type:"child",childAttributes:Vi},auto:{type:"child",childAttributes:Kt},lblAlgn:{type:"child",childAttributes:Ce},lblOffset:{type:"child",childAttributes:Pl},tickLblSkip:{type:"child",childAttributes:_l},tickMarkSkip:{type:"child",childAttributes:_l},noMultiLvlLbl:{type:"child",childAttributes:Kt},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Vl={axId:{type:"child",childAttributes:Si},scaling:{type:"child",childAttributes:vl},delete:{type:"child",childAttributes:Kt},axPos:{type:"child",childAttributes:yl},majorGridlines:{type:"child",childAttributes:je},minorGridlines:{type:"child",childAttributes:je},title:{type:"child",childAttributes:Ji},numFmt:{type:"child",childAttributes:_e},majorTickMark:{type:"child",childAttributes:nl},minorTickMark:{type:"child",childAttributes:nl},tickLblPos:{type:"child",childAttributes:ol},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},crossAx:{type:"child",childAttributes:Si},crosses:{type:"child",childAttributes:Al},crossesAt:{type:"child",childAttributes:Vi},auto:{type:"child",childAttributes:Kt},lblOffset:{type:"child",childAttributes:Pl},baseTimeUnit:{type:"child",childAttributes:Cl},majorUnit:{type:"child",childAttributes:Tl},majorTimeUnit:{type:"child",childAttributes:Cl},minorUnit:{type:"child",childAttributes:Tl},minorTimeUnit:{type:"child",childAttributes:Cl},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Sl={axId:{type:"child",childAttributes:Si},scaling:{type:"child",childAttributes:vl},delete:{type:"child",childAttributes:Kt},axPos:{type:"child",childAttributes:yl},majorGridlines:{type:"child",childAttributes:je},minorGridlines:{type:"child",childAttributes:je},title:{type:"child",childAttributes:Ji},numFmt:{type:"child",childAttributes:_e},majorTickMark:{type:"child",childAttributes:nl},minorTickMark:{type:"child",childAttributes:nl},tickLblPos:{type:"child",childAttributes:ol},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},crossAx:{type:"child",childAttributes:Si},crosses:{type:"child",childAttributes:Al},crossesAt:{type:"child",childAttributes:Vi},tickLblSkip:{type:"child",childAttributes:_l},tickMarkSkip:{type:"child",childAttributes:_l},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},El={axId:{type:"child",childAttributes:Si},scaling:{type:"child",childAttributes:vl},delete:{type:"child",childAttributes:Kt},axPos:{type:"child",childAttributes:yl},majorGridlines:{type:"child",childAttributes:je},minorGridlines:{type:"child",childAttributes:je},title:{type:"child",childAttributes:Ji},numFmt:{type:"child",childAttributes:_e},majorTickMark:{type:"child",childAttributes:nl},minorTickMark:{type:"child",childAttributes:nl},tickLblPos:{type:"child",childAttributes:ol},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},crossAx:{type:"child",childAttributes:Si},crosses:{type:"child",childAttributes:Al},crossesAt:{type:"child",childAttributes:Vi},crossBetween:{type:"child",childAttributes:al},majorUnit:{type:"child",childAttributes:Tl},minorUnit:{type:"child",childAttributes:Tl},dispUnits:{type:"child",childAttributes:xl},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Ml={layout:{type:"child",childAttributes:qi},areaChart:{type:"child",childAttributes:tl},area3DChart:{type:"child",childAttributes:il},lineChart:{type:"child",childAttributes:He},line3DChart:{type:"child",childAttributes:Ne},stockChart:{type:"child",childAttributes:We},radarChart:{type:"child",childAttributes:Je},scatterChart:{type:"child",childAttributes:Ye},pieChart:{type:"child",childAttributes:el},pie3DChart:{type:"child",childAttributes:ll},doughnutChart:{type:"child",childAttributes:rl},barChart:{type:"child",childAttributes:Ze},bar3DChart:{type:"child",childAttributes:$e},ofPieChart:{type:"child",childAttributes:sl},surfaceChart:{type:"child",childAttributes:pl},surface3DChart:{type:"child",childAttributes:bl},bubbleChart:{type:"child",childAttributes:cl},valAx:{type:"child",childAttributes:El},catAx:{type:"child",childAttributes:Il},dateAx:{type:"child",childAttributes:Vl},serAx:{type:"child",childAttributes:Sl},dTable:{type:"child",childAttributes:ce},spPr:{type:"child",childAttributes:xi},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Dl={idx:{type:"child",childAttributes:Si},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},marker:{type:"child",childAttributes:Ii},dLbl:{type:"child",childAttributes:Te},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Fl={pivotFmt:{type:"child",childAttributes:Dl,childIsArray:!0}},kl={val:{type:"string",defaultValue:"r"}},Ol={idx:{type:"child",childAttributes:Si},delete:{type:"child",childAttributes:Kt},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Bl={legendPos:{type:"child",childAttributes:kl},legendEntry:{type:"child",childAttributes:Ol,childIsArray:!0},layout:{type:"child",childAttributes:qi},overlay:{type:"child",childAttributes:Kt},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Rl={val:{type:"string",defaultValue:"zero"}},wl={title:{type:"child",childAttributes:Ji},autoTitleDeleted:{type:"child",childAttributes:Kt},pivotFmts:{type:"child",childAttributes:Fl},view3D:{type:"child",childAttributes:ie},floor:{type:"child",childAttributes:se},sideWall:{type:"child",childAttributes:se},backWall:{type:"child",childAttributes:se},plotArea:{type:"child",childAttributes:Ml},legend:{type:"child",childAttributes:Bl},plotVisOnly:{type:"child",childAttributes:Kt},dispBlanksAs:{type:"child",childAttributes:Rl},showDLblsOverMax:{type:"child",childAttributes:Kt},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}},Gl={val:{type:"int"}},zl={name:{type:"child-string"},fmtId:{type:"child",childAttributes:Si},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes,childIsArray:!0}},Ul={chartObject:{type:"child",childAttributes:Kt},data:{type:"child",childAttributes:Kt},formatting:{type:"child",childAttributes:Kt},selection:{type:"child",childAttributes:Kt},userInterface:{type:"child",childAttributes:Kt}},jl={oddHeader:{type:"child-string"},oddFooter:{type:"child-string"},evenHeader:{type:"child-string"},evenFooter:{type:"child-string"},firstHeader:{type:"child-string"},firstFooter:{type:"child-string"},alignWithMargins:{type:"boolean",defaultValue:"true"},differentOddEven:{type:"boolean",defaultValue:"false"},differentFirst:{type:"boolean",defaultValue:"false"}},Hl={l:{type:"double"},r:{type:"double"},t:{type:"double"},b:{type:"double"},header:{type:"double"},footer:{type:"double"}},Nl={autoUpdate:{type:"child",childAttributes:Kt},"r:id":{type:"string"}},Wl={paperSize:{type:"int",defaultValue:"1"},paperHeight:{type:"string"},paperWidth:{type:"string"},firstPageNumber:{type:"int",defaultValue:"1"},orientation:{type:"string",defaultValue:"default"},blackAndWhite:{type:"boolean",defaultValue:"false"},draft:{type:"boolean",defaultValue:"false"},useFirstPageNumber:{type:"boolean",defaultValue:"false"},horizontalDpi:{type:"int",defaultValue:"600"},verticalDpi:{type:"int",defaultValue:"600"},copies:{type:"int",defaultValue:"1"}},Xl={headerFooter:{type:"child",childAttributes:jl},pageMargins:{type:"child",childAttributes:Hl},pageSetup:{type:"child",childAttributes:Wl}},Yl={date1904:{type:"child",childAttributes:Kt},lang:{type:"child",childAttributes:Gi},roundedCorners:{type:"child",childAttributes:Kt},style:{type:"child",childAttributes:Gl},clrMapOvr:{type:"child",childAttributes:Li},pivotSource:{type:"child",childAttributes:zl},protection:{type:"child",childAttributes:Ul},chart:{type:"child",childAttributes:wl},spPr:{type:"child",childAttributes:xi},txPr:{type:"child",childAttributes:ri},externalData:{type:"child",childAttributes:Nl},printSettings:{type:"child",childAttributes:Xl},userShapes:{type:"child",childAttributes:Ei},extLst:{type:"child",childAttributes:r.CT_ExtensionList_Attributes}};i.CT_AdjPoint2D_Attributes=di,i.CT_AdjustHandleList_Attributes=hi,i.CT_AlphaBiLevelEffect_Attributes=w,i.CT_AlphaCeilingEffect_Attributes=G,i.CT_AlphaFloorEffect_Attributes=z,i.CT_AlphaInverseEffect_Attributes=U,i.CT_AlphaModulateEffect_Attributes=H,i.CT_AlphaModulateFixedEffect_Attributes=N,i.CT_AlphaReplaceEffect_Attributes=W,i.CT_Angle_Attributes=a,i.CT_Area3DChart_Attributes=il,i.CT_AreaChart_Attributes=tl,i.CT_AreaSer_Attributes=Re,i.CT_AxDataSource_Attributes=Hi,i.CT_AxPos_Attributes=yl,i.CT_AxisUnit_Attributes=Tl,i.CT_Backdrop_Attributes=ht,i.CT_BandFmt_Attributes=hl,i.CT_BandFmts_Attributes=ul,i.CT_Bar3DChart_Attributes=$e,i.CT_BarChart_Attributes=Ze,i.CT_BarDir_Attributes=Qe,i.CT_BarGrouping_Attributes=Ke,i.CT_BarSer_Attributes=Be,i.CT_Bevel_Attributes=pt,i.CT_BiLevelEffect_Attributes=X,i.CT_BlipFillProperties_Attributes=R,i.CT_Blip_Attributes=tt,i.CT_BlurEffect_Attributes=I,i.CT_Boolean_Attributes=Kt,i.CT_BubbleChart_Attributes=cl,i.CT_BubbleScale_Attributes=pe,i.CT_BubbleSer_Attributes=Ge,i.CT_BuiltInUnit_Attributes=gl,i.CT_Camera_Attributes=rt,i.CT_CatAx_Attributes=Il,i.CT_ChartLines_Attributes=je,i.CT_ChartSpace_Attributes=Yl,i.CT_Chart_Attributes=wl,i.CT_ColorChangeEffect_Attributes=Y,i.CT_ColorMapping_Attributes=Li,i.CT_ColorReplaceEffect_Attributes=q,i.CT_Color_Attributes=m,i.CT_ComplementTransform_Attributes=h,i.CT_ConnectionSiteList_Attributes=pi,i.CT_ConnectionSite_Attributes=ui,i.CT_CrossBetween_Attributes=al,i.CT_Crosses_Attributes=Al,i.CT_CustSplit_Attributes=ne,i.CT_CustomGeometry2D_Attributes=gi,i.CT_DLbl_Attributes=Te,i.CT_DLbls_Attributes=ge,i.CT_DPt_Attributes=fe,i.CT_DTable_Attributes=ce,i.CT_DashStopList_Attributes=at,i.CT_DashStop_Attributes=At,i.CT_DateAx_Attributes=Vl,i.CT_DepthPercent_Attributes=$i,i.CT_DispBlanksAs_Attributes=Rl,i.CT_DispUnitsLbl_Attributes=fl,i.CT_DispUnits_Attributes=xl,i.CT_Double_Attributes=Vi,i.CT_DoughnutChart_Attributes=rl,i.CT_DuotoneEffect_Attributes=J,i.CT_EffectContainer_Attributes=j,i.CT_EffectList_Attributes=P,i.CT_EmbeddedWAVAudioFile_Attributes=Lt,i.CT_ErrBarType_Attributes=Ve,i.CT_ErrBars_Attributes=Ee,i.CT_ErrDir_Attributes=Ie,i.CT_ErrValType_Attributes=Se,i.CT_ExternalData_Attributes=Nl,i.CT_FillOverlayEffect_Attributes=V,i.CT_FirstSliceAng_Attributes=ye,i.CT_FixedPercentage_Attributes=b,i.CT_FlatText_Attributes=Mt,i.CT_GammaTransform_Attributes=o,i.CT_GapAmount_Attributes=he,i.CT_GeomGuideList_Attributes=Pt,i.CT_GeomGuide_Attributes=vt,i.CT_GeomRect_Attributes=bi,i.CT_GradientFillProperties_Attributes=B,i.CT_GradientStopList_Attributes=D,i.CT_GradientStop_Attributes=M,i.CT_GrayscaleEffect_Attributes=K,i.CT_GrayscaleTransform_Attributes=p,i.CT_GroupFillProperties_Attributes=et,i.CT_Grouping_Attributes=Ue,i.CT_HPercent_Attributes=Qi,i.CT_HSLEffect_Attributes=Q,i.CT_HeaderFooter_Attributes=jl,i.CT_HoleSize_Attributes=Ae,i.CT_HslColor_Attributes=g,i.CT_Hyperlink_Attributes=mt,i.CT_InverseGammaTransform_Attributes=_,i.CT_InverseTransform_Attributes=u,i.CT_LayoutMode_Attributes=Xi,i.CT_LayoutTarget_Attributes=Wi,i.CT_Layout_Attributes=qi,i.CT_LblAlgn_Attributes=Ce,i.CT_LblOffset_Attributes=Pl,i.CT_LegendEntry_Attributes=Ol,i.CT_LegendPos_Attributes=kl,i.CT_Legend_Attributes=Bl,i.CT_LightRig_Attributes=dt,i.CT_Line3DChart_Attributes=Ne,i.CT_LineChart_Attributes=He,i.CT_LineEndProperties_Attributes=Ct,i.CT_LineJoinBevel_Attributes=ot,i.CT_LineJoinMiterProperties_Attributes=_t,i.CT_LineJoinRound_Attributes=nt,i.CT_LineProperties_Attributes=Tt,i.CT_LineSer_Attributes=Fe,i.CT_LinearShadeProperties_Attributes=F,i.CT_LogBase_Attributes=ml,i.CT_LuminanceEffect_Attributes=Z,i.CT_Lvl_Attributes=zi,i.CT_ManualLayout_Attributes=Yi,i.CT_MarkerSize_Attributes=Pi,i.CT_MarkerStyle_Attributes=vi,i.CT_Marker_Attributes=Ii,i.CT_MultiLvlStrData_Attributes=Ui,i.CT_MultiLvlStrRef_Attributes=ji,i.CT_NoFillProperties_Attributes=S,i.CT_NumDataSource_Attributes=ki,i.CT_NumData_Attributes=Di,i.CT_NumFmt_Attributes=_e,i.CT_NumRef_Attributes=Fi,i.CT_NumVal_Attributes=Mi,i.CT_OfPieChart_Attributes=sl,i.CT_OfPieType_Attributes=dl,i.CT_OfficeArtExtensionList_Attributes=s,i.CT_OfficeArtExtension_Attributes=d,i.CT_Order_Attributes=Le,i.CT_Orientation_Attributes=Ll,i.CT_Overlap_Attributes=ue,i.CT_PageMargins_Attributes=Hl,i.CT_PageSetup_Attributes=Wl,i.CT_Path2DArcTo_Attributes=ni,i.CT_Path2DClose_Attributes=yi,i.CT_Path2DCubicBezierTo_Attributes=_i,i.CT_Path2DLineTo_Attributes=ai,i.CT_Path2DList_Attributes=Ti,i.CT_Path2DMoveTo_Attributes=Ai,i.CT_Path2DQuadBezierTo_Attributes=oi,i.CT_Path2D_Attributes=Ci,i.CT_PathShadeProperties_Attributes=O,i.CT_PatternFillProperties_Attributes=it,i.CT_Percentage_Attributes=n,i.CT_Period_Attributes=me,i.CT_Perspective_Attributes=te,i.CT_PictureFormat_Attributes=le,i.CT_PictureOptions_Attributes=de,i.CT_PictureStackUnit_Attributes=re,i.CT_Pie3DChart_Attributes=ll,i.CT_PieChart_Attributes=el,i.CT_PieSer_Attributes=we,i.CT_PivotFmt_Attributes=Dl,i.CT_PivotFmts_Attributes=Fl,i.CT_PivotSource_Attributes=zl,i.CT_PlotArea_Attributes=Ml,i.CT_Point2D_Attributes=gt,i.CT_Point3D_Attributes=st,i.CT_PolarAdjustHandle_Attributes=ci,i.CT_PositiveFixedAngle_Attributes=A,i.CT_PositiveFixedPercentage_Attributes=c,i.CT_PositivePercentage_Attributes=y,i.CT_PositiveSize2D_Attributes=ft,i.CT_PresetColor_Attributes=L,i.CT_PresetGeometry2D_Attributes=fi,i.CT_PresetLineDashProperties_Attributes=yt,i.CT_PresetTextShape_Attributes=It,i.CT_PrintSettings_Attributes=Xl,i.CT_Protection_Attributes=Ul,i.CT_RadarChart_Attributes=Je,i.CT_RadarSer_Attributes=Oe,i.CT_RadarStyle_Attributes=qe,i.CT_RegularTextRun_Attributes=ti,i.CT_RelId_Attributes=Ei,i.CT_RelativeRect_Attributes=k,i.CT_RotX_Attributes=Ki,i.CT_RotY_Attributes=Zi,i.CT_SRgbColor_Attributes=T,i.CT_ScRgbColor_Attributes=C,i.CT_Scaling_Attributes=vl,i.CT_ScatterChart_Attributes=Ye,i.CT_ScatterSer_Attributes=ke,i.CT_ScatterStyle_Attributes=Xe,i.CT_Scene3D_Attributes=ut,i.CT_SchemeColor_Attributes=x,i.CT_SecondPieSize_Attributes=oe,i.CT_SerAx_Attributes=Sl,i.CT_SerTx_Attributes=Ni,i.CT_Shape3D_Attributes=bt,i.CT_ShapeProperties_Attributes=xi,i.CT_Shape_Attributes=mi,i.CT_SizeRepresents_Attributes=be,i.CT_Skip_Attributes=_l,i.CT_SolidColorFillProperties_Attributes=E,i.CT_SphereCoords_Attributes=lt,i.CT_SplitType_Attributes=ae,i.CT_StockChart_Attributes=We,i.CT_StrData_Attributes=Bi,i.CT_StrRef_Attributes=Ri,i.CT_StrVal_Attributes=Oi,i.CT_Style_Attributes=Gl,i.CT_Surface3DChart_Attributes=bl,i.CT_SurfaceChart_Attributes=pl,i.CT_SurfaceSer_Attributes=ze,i.CT_Surface_Attributes=se,i.CT_SystemColor_Attributes=f,i.CT_TextAutonumberBullet_Attributes=jt,i.CT_TextBlipBullet_Attributes=Nt,i.CT_TextBodyProperties_Attributes=Dt,i.CT_TextBody_Attributes=ri,i.CT_TextBulletColorFollowText_Attributes=Bt,i.CT_TextBulletSizeFollowText_Attributes=Rt,i.CT_TextBulletSizePercent_Attributes=wt,i.CT_TextBulletSizePoint_Attributes=Gt,i.CT_TextBulletTypefaceFollowText_Attributes=zt,i.CT_TextCharBullet_Attributes=Ht,i.CT_TextCharacterProperties_Attributes=Qt,i.CT_TextField_Attributes=ei,i.CT_TextFont_Attributes=v,i.CT_TextLanguageID_Attributes=Gi,i.CT_TextLineBreak_Attributes=ii,i.CT_TextListStyle_Attributes=$t,i.CT_TextNoAutofit_Attributes=Vt,i.CT_TextNoBullet_Attributes=Ut,i.CT_TextNormalAutofit_Attributes=St,i.CT_TextParagraphProperties_Attributes=Zt,i.CT_TextParagraph_Attributes=li,i.CT_TextShapeAutofit_Attributes=Et,i.CT_TextSpacingPercent_Attributes=Ft,i.CT_TextSpacingPoint_Attributes=kt,i.CT_TextSpacing_Attributes=Ot,i.CT_TextTabStopList_Attributes=Xt,i.CT_TextTabStop_Attributes=Wt,i.CT_TextUnderlineFillFollowText_Attributes=qt,i.CT_TextUnderlineFillGroupWrapper_Attributes=Jt,i.CT_TextUnderlineLineFollowText_Attributes=Yt,i.CT_Thickness_Attributes=ee,i.CT_TickLblPos_Attributes=ol,i.CT_TickMark_Attributes=nl,i.CT_TimeUnit_Attributes=Cl,i.CT_TintEffect_Attributes=$,i.CT_Title_Attributes=Ji,i.CT_Transform2D_Attributes=xt,i.CT_TrendlineLbl_Attributes=ve,i.CT_TrendlineType_Attributes=xe,i.CT_Trendline_Attributes=Pe,i.CT_Tx_Attributes=wi,i.CT_UnsignedInt_Attributes=Si,i.CT_UpDownBar_Attributes=Me,i.CT_UpDownBars_Attributes=De,i.CT_ValAx_Attributes=El,i.CT_Vector3D_Attributes=ct,i.CT_View3D_Attributes=ie,i.CT_XYAdjustHandle_Attributes=si}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/drawing/parseChart.js*/
- amis.define("980790c",(function(e,t,a,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c=e("3d878b2"),i=e("68af3ba"),n=0;t.parseChart=function(e){var t=c.autoParse(e,i.CT_ChartSpace_Attributes);return t.gid="chart".concat(n++),t}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/drawing/parsePic.js*/
- amis.define("dcec2df",(function(e,i,t,c){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var r=e("3d878b2"),a=e("20a593d"),d=e("b89ecc6"),l=0;i.parsePic=function(e,i,t,c){var o,b,n=r.autoParse(e,a.CT_Picture_Attributes),u=null===(b=null===(o=n.blipFill)||void 0===o?void 0:o.blip)||void 0===b?void 0:b["r:embed"];if(u){var v=d.getRelationPath(c,i,u);if(v){var f=t.getFileByType(v,"blob");f&&URL.createObjectURL&&(n.imgURL=URL.createObjectURL(f),n.gid="pic-".concat(l++))}}return n}}));
- ;/*!node_modules/office-viewer/lib/excel/data/getThemeColor.js*/
- amis.define("c4f7092",(function(e,n,r,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var c={dk1:"#000000",lt1:"#FFFFFF",dk2:"#1F497D",lt2:"#EEECE1",accent1:"#4F81BD",accent2:"#C0504D",accent3:"#9BBB59",accent4:"#8064A2",accent5:"#4BACC6",accent6:"#F79646",hlink:"#0000FF",folHlink:"#800080"};n.getThemeColor=function(e,n){var r,t;if("string"==typeof e&&(e=function(e){switch(e){case"light1":case"bg1":return"lt1";case"light2":case"bg2":return"lt2";case"dark1":case"tx1":return"dk1";case"dark2":return"dk2"}return e}(e)),e in c)return c[e];var l=null===(t=null===(r=null==n?void 0:n.theme)||void 0===r?void 0:r.themeElements)||void 0===t?void 0:t.clrSchemes;if(0==e?e=1:1==e?e=0:2==e?e=3:3==e&&(e=2),l){var a=l[e];if(a){var i=a.srgbClr;if(i)return i.val;var o=a.sysClr;if(o)return o.lastClr}}return console.warn("unknown theme color",e,l),"none"}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/drawing/parseShape.js*/
- amis.define("5348d58",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l=e("68b98b9"),o=e("3d878b2"),n=e("20a593d"),i=e("1cd9a76"),f=e("082fcfb"),s=e("c4f7092");r.parseShape=function(e,r,t){var a,c,u,h,g,v,d,y,C=o.autoParse(r,n.CT_Shape_Attributes);if(t){var m=t.getElementsByTagName("xdr:spPr");if(m.length&&C.spPr){var p=m[0];try{for(var T=l.__values(p.children||[]),b=T.next();!b.done;b=T.next()){var x=b.value;switch(x.tagName){case"a:ln":var _=i.parseOutline((function(r){return s.getThemeColor(r,e)}),x);C.spPr.outline=_;break;case"a:solidFill":C.spPr.fillColor=f.parseChildColor((function(r){return s.getThemeColor(r,e)}),x)}}}catch(e){a={error:e}}finally{try{b&&!b.done&&(c=T.return)&&c.call(T)}finally{if(a)throw a.error}}}var N=t.getElementsByTagName("xdr:style");if(N.length){var B={};C.styleColor=B;try{for(var E=l.__values(N[0].children||[]),P=E.next();!P.done;P=E.next()){var R=P.value;switch(R.tagName){case"a:lnRef":B.lnRefColor=f.parseChildColor((function(r){return s.getThemeColor(r,e)}),R);break;case"a:fillRef":B.fillRefColor=f.parseChildColor((function(r){return s.getThemeColor(r,e)}),R);break;case"a:effectRef":B.effectRefColor=f.parseChildColor((function(r){return s.getThemeColor(r,e)}),R);break;case"a:fontRef":B.fontRefColor=f.parseChildColor((function(r){return s.getThemeColor(r,e)}),R)}}}catch(e){u={error:e}}finally{try{P&&!P.done&&(h=E.return)&&h.call(E)}finally{if(u)throw u.error}}}var w=t.getElementsByTagName("xdr:txBody");if(w.length){var k=[],A=w[0].getElementsByTagName("a:p");try{for(var z=l.__values(A),F=z.next();!F.done;F=z.next()){var O=F.value.getElementsByTagName("a:r");try{for(var S=(d=void 0,l.__values(O)),j=S.next();!j.done;j=S.next()){var I=j.value,M=I.getElementsByTagName("a:t");if(M.length){var q=I.getElementsByTagName("a:rPr"),D={};if(q.length){var G=q[0],H=G.getAttribute("sz");H&&(D.sz=parseInt(H,10)/100),G.getAttribute("b")&&(D.b=!0);var J=G.getElementsByTagName("a:solidFill");J.length&&(D.color={rgb:f.parseChildColor((function(r){return s.getThemeColor(r,e)}),J[0])})}var K=M[0].textContent;K&&k.push({rPr:D,t:K})}}}catch(e){d={error:e}}finally{try{j&&!j.done&&(y=S.return)&&y.call(S)}finally{if(d)throw d.error}}}}catch(e){g={error:e}}finally{try{F&&!F.done&&(v=z.return)&&v.call(z)}finally{if(g)throw g.error}}C.richText={type:"rich",richText:k}}}return C}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/drawing/parseAnchorCommon.js*/
- amis.define("068d613",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var c=e("68b98b9"),n=e("554c0f4"),s=e("b89ecc6"),u=e("980790c"),i=e("dcec2df"),o=e("5348d58");r.parseAnchorCommon=function(e,r,a,t,d,l,h){return c.__awaiter(this,void 0,void 0,(function(){var p,f,g,x,b,_,m,v,w,y;return c.__generator(this,(function(P){switch(P.label){case 0:P.trys.push([0,11,12,13]),p=c.__values(t.children||[]),f=p.next(),P.label=1;case 1:if(f.done)return[3,10];switch(g=f.value,x=g.tag,x){case"xdr:pic":return[3,2];case"xdr:sp":return[3,3];case"xdr:from":case"xdr:to":case"xdr:clientData":return[3,4];case"xdr:graphicFrame":return[3,5]}return[3,8];case 2:return l.pic=i.parsePic(g,d,r,a),[3,9];case 3:return l.shape=o.parseShape(e,g,h),[3,9];case 4:return[3,9];case 5:return(b=n.getNodeByTagName(g,"c:chart",!0))&&(_=s.getRelationPath(a,d,b.attrs["r:id"]))?[4,n.xml2json(r.getString(_))]:[3,7];case 6:m=P.sent(),l.chartSpace=u.parseChart(m),P.label=7;case 7:return[3,9];case 8:console.warn("unhandled tag: ".concat(x)),P.label=9;case 9:return f=p.next(),[3,1];case 10:return[3,13];case 11:return v=P.sent(),w={error:v},[3,13];case 12:try{f&&!f.done&&(y=p.return)&&y.call(p)}finally{if(w)throw w.error}return[7];case 13:return[2]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/drawing/parseDrawing.js*/
- amis.define("599ca3b",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),s=e("3d878b2"),o=e("d5af96a"),c=e("20a593d"),l=e("554c0f4"),u=e("55805a3"),h=e("068d613");r.parseDrawing=function(e,r,t){return a.__awaiter(this,void 0,void 0,(function(){var n,i,A,d,b,C,_,g,m,f,p,w,x,v,y,T,P,E,B,N,j,M,O,R;return a.__generator(this,(function(S){switch(S.label){case 0:return n={oneCellAnchors:[],twoCellAnchors:[],absoluteAnchors:[]},i=r.getString(t),A=[],d=u.getRelPath(t),r.fileExists(d)?[4,o.parseRelationship(r.getString(d))]:[3,2];case 1:A=S.sent(),S.label=2;case 2:return[4,l.xml2json(i)];case 3:b=S.sent(),C=l.parseXML(i),_=C.getElementsByTagName("xdr:oneCellAnchor"),g=C.getElementsByTagName("xdr:twoCellAnchor"),m=C.getElementsByTagName("xdr:absoluteAnchor"),S.label=4;case 4:S.trys.push([4,15,16,17]),f=a.__values((b.children||[]).entries()),p=f.next(),S.label=5;case 5:if(p.done)return[3,14];switch(w=a.__read(p.value,2),x=w[0],v=w[1],y=v.tag,y){case"xdr:oneCellAnchor":return[3,6];case"xdr:twoCellAnchor":return[3,8];case"xdr:absoluteAnchor":return[3,10]}return[3,12];case 6:return T=s.autoParse(v,c.CT_OneCellAnchor_Attributes),P=_[x],[4,h.parseAnchorCommon(e,r,t,v,A,T,P)];case 7:return S.sent(),n.oneCellAnchors.push(T),[3,13];case 8:return E=s.autoParse(v,c.CT_TwoCellAnchor_Attributes),B=g[x],[4,h.parseAnchorCommon(e,r,t,v,A,E,B)];case 9:return S.sent(),n.twoCellAnchors.push(E),[3,13];case 10:return N=s.autoParse(v,c.CT_AbsoluteAnchor_Attributes),j=m[x],[4,h.parseAnchorCommon(e,r,t,v,A,N,j)];case 11:return S.sent(),n.absoluteAnchors.push(N),[3,13];case 12:console.warn("unhandled tag: ".concat(y)),S.label=13;case 13:return p=f.next(),[3,5];case 14:return[3,17];case 15:return M=S.sent(),O={error:M},[3,17];case 16:try{p&&!p.done&&(R=f.return)&&R.call(f)}finally{if(O)throw O.error}return[7];case 17:return[2,n]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/util/numberToLetters.js*/
- amis.define("c1cc3b1",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.numberToLetters=function(e){for(var r="";e>=0;)r="ABCDEFGHIJKLMNOPQRSTUVWXYZ"[e%26]+r,e=Math.floor(e/26)-1;return r}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/util/Range.js*/
- amis.define("9a404b6",(function(t,e,o,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=t("68b98b9"),a=t("13c312c"),s=t("c1cc3b1");function l(t,e){return t.startRow===e.startRow&&t.startCol===e.startCol&&t.endRow===e.endRow&&t.endCol===e.endCol}e.isCellInRange=function(t,e,o){return t.startRow<=e&&t.startCol<=o&&t.endRow>=e&&t.endCol>=o},e.isMergeCell=function(t,e){return e.some((function(e){return l(e,t)}))},e.isSingleCell=function(t){return t.startRow===t.endRow&&t.startCol===t.endCol},e.mergeRange=function(t,e){return{startRow:Math.min(t.startRow,e.startRow),startCol:Math.min(t.startCol,e.startCol),endRow:Math.max(t.endRow,e.endRow),endCol:Math.max(t.endCol,e.endCol)}},e.parseRange=function(t){if(-1!==t.indexOf(":")){var e=t.split(":");if(2!==e.length)throw new Error("range 格式错误");var o=r.__read(e,2),n=o[0],s=o[1],l=a.decodeAddress(n),d=a.decodeAddress(s);return{startRow:l.row,startCol:l.col,endRow:d.row,endCol:d.col}}return{startRow:(l=a.decodeAddress(t)).row,startCol:l.col,endRow:l.row,endCol:l.col}},e.rangeEqual=l,e.rangeIntersect=function(t,e){return t.startRow<=e.endRow&&t.endRow>=e.startRow&&t.startCol<=e.endCol&&t.endCol>=e.startCol},e.rangeRefToString=function(t){return s.numberToLetters(t.startCol)+(t.startRow+1)+":"+s.numberToLetters(t.endCol)+(t.endRow+1)},e.viewRangeToRangeRef=function(t){var e=t.rows,o=t.cols;return{startRow:e[0],startCol:o[0],endRow:e[e.length-1],endCol:o[o.length-1]}}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/util/makeBlankValue.js*/
- amis.define("1947e20",(function(e,a,o,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0}),a.makeBlankValue=function(e,a){for(var o=a.startRow;o<=a.endRow;o++){var t=e[o];t||(t=[],e[o]=t);for(var n=a.startCol;n<=a.endCol;n++)void 0===t[n]&&(t[n]={type:"blank"})}}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/initValueForContainsBlanks.js*/
- amis.define("0bb6722",(function(r,e,a,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=r("68b98b9"),l=r("9a404b6"),o=r("1947e20");e.initValueForContainsBlanks=function(r){var e,a,n,i,f,c;try{for(var u=t.__values(r.conditionalFormatting),v=u.next();!v.done;v=u.next()){var s=v.value,y=s.cfRule||[];try{for(var d=(n=void 0,t.__values(y)),_=d.next();!_.done;_=d.next()){if("containsBlanks"===_.value.type){var b=s.sqref;if(!b)continue;var h=b.split(" ").map(l.parseRange);try{for(var x=(f=void 0,t.__values(h)),p=x.next();!p.done;p=x.next()){var k=p.value;o.makeBlankValue(r.cellData,k)}}catch(r){f={error:r}}finally{try{p&&!p.done&&(c=x.return)&&c.call(x)}finally{if(f)throw f.error}}}}}catch(r){n={error:r}}finally{try{_&&!_.done&&(i=d.return)&&i.call(d)}finally{if(n)throw n.error}}}}catch(r){e={error:r}}finally{try{v&&!v.done&&(a=u.return)&&a.call(u)}finally{if(e)throw e.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/parseTableParts.js*/
- amis.define("fb53fc9",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),s=e("3d878b2"),u=e("20a593d"),i=e("fd1e221"),c=e("554c0f4");r.parseTableParts=function(e,r,t,n){return a.__awaiter(this,void 0,void 0,(function(){var l,o,f,b,d,_,h,v;return a.__generator(this,(function(g){switch(g.label){case 0:l=[],o=function(n){var o,f,b,d,_,h;return a.__generator(this,(function(a){switch(a.label){case 0:return o=n.attrs["r:id"],(f=t.find((function(e){return e.id===o})))?(b=f.target,d=i.joinPath(e,"..",b),_=r.getString(d),[4,c.xml2json(_)]):[3,2];case 1:h=a.sent(),l.push(s.autoParse(h,u.CT_Table_Attributes)),a.label=2;case 2:return[2]}}))},g.label=1;case 1:g.trys.push([1,6,7,8]),f=a.__values(n.children||[]),b=f.next(),g.label=2;case 2:return b.done?[3,5]:(d=b.value,[5,o(d)]);case 3:g.sent(),g.label=4;case 4:return b=f.next(),[3,2];case 5:return[3,8];case 6:return _=g.sent(),h={error:_},[3,8];case 7:try{b&&!b.done&&(v=f.return)&&v.call(f)}finally{if(h)throw h.error}return[7];case 8:return[2,l]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/initValueForTable.js*/
- amis.define("ec3dff9",(function(e,r,a,l){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),t=e("9a404b6"),f=e("1947e20");r.initValueForTable=function(e){var r,a,l=e.tableParts||[];try{for(var o=n.__values(l),i=o.next();!i.done;i=o.next()){var c=i.value;if(c.ref){var u=t.parseRange(c.ref);f.makeBlankValue(e.cellData,u)}else console.warn("表格缺少 ref 字段",c)}}catch(e){r={error:e}}finally{try{i&&!i.done&&(a=o.return)&&a.call(o)}finally{if(r)throw r.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/parseWorksheet.js*/
- amis.define("cdb79c8",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),s=e("554c0f4"),c=e("4c070ac"),o=e("02b0e16"),i=e("20a593d"),u=e("13c312c"),l=e("fd1e221"),d=e("599ca3b"),h=e("3d878b2"),b=e("bdab8fa"),f=e("0bb6722"),_=e("fb53fc9"),w=e("ec3dff9");r.parseWorksheet=function(e,r,t,a,g,m){var v;return n.__awaiter(this,void 0,void 0,(function(){var C,P,p,x,y,A,F,T,D;return n.__generator(this,(function(V){switch(V.label){case 0:return a?[4,s.xml2json(a)]:[2,null];case 1:C=V.sent(),P={cols:[],rows:[],cellData:[],mergeCells:[],conditionalFormatting:[]},p=function(a){var s,f,w,C,p,x,y,A,F,T,D,V,S,j,k,L,M,R,B,E,O,W,q,z,G;return n.__generator(this,(function(H){switch(H.label){case 0:switch(s=a.tag,s){case"dimension":return[3,1];case"sheetViews":return[3,2];case"sheetFormatPr":return[3,3];case"cols":return[3,4];case"sheetData":return[3,5];case"mergeCells":return[3,6];case"conditionalFormatting":return[3,7];case"drawing":return[3,8];case"phoneticPr":case"pageMargins":return[3,11];case"extLst":return[3,12];case"tableParts":return[3,13];case"autoFilter":return[3,15];case"sheetPr":return[3,16]}return[3,17];case 1:return P.dimension={ref:a.attrs.ref},[3,18];case 2:return P.sheetViews=c.parseChildrenAttributes(a,i.CT_SheetView_Attributes,!0),[3,18];case 3:return P.sheetFormatPr=h.autoParse(a,i.CT_SheetFormatPr_Attributes),[3,18];case 4:f=c.parseChildrenAttributes(a,i.CT_Col_Attributes);try{for(W=void 0,w=n.__values(f),C=w.next();!C.done;C=w.next())(p=C.value).min=(p.min||1)-1,p.max=(p.max||1)-1}catch(e){W={error:e}}finally{try{C&&!C.done&&(q=w.return)&&q.call(w)}finally{if(W)throw W.error}}return P.cols=f,[3,18];case 5:return x=o.parseSheetData(a,m),P.rows=x.rows,P.cellData=x.cellData,[3,18];case 6:y=a.children||[];try{for(z=void 0,A=n.__values(y),F=A.next();!F.done;F=A.next())T=F.value,(D=null===(v=T.attrs)||void 0===v?void 0:v.ref)&&(2===(V=D.split(":")).length?(S=u.decodeAddress(V[0]),j=u.decodeAddress(V[1]),P.mergeCells.push({startCol:S.col,startRow:S.row,endCol:j.col,endRow:j.row})):console.warn("error ref",D))}catch(e){z={error:e}}finally{try{F&&!F.done&&(G=A.return)&&G.call(A)}finally{if(z)throw z.error}}return[3,18];case 7:return k=h.autoParse(a,i.CT_ConditionalFormatting_Attributes),P.conditionalFormatting.push(k),[3,18];case 8:return L=a.attrs["r:id"],(M=g.find((function(e){return e.id===L})))?(R=M.target,B=l.joinPath(t,"..",R),E=P,[4,d.parseDrawing(e,r,B)]):[3,10];case 9:E.drawing=H.sent(),H.label=10;case 10:case 11:return[3,18];case 12:return P.extLst=h.autoParse(a,b.CT_ExtensionList_Attributes),[3,18];case 13:return O=P,[4,_.parseTableParts(t,r,g,a)];case 14:return O.tableParts=H.sent(),[3,18];case 15:return P.autoFilter=h.autoParse(a,i.CT_AutoFilter_Attributes),[3,18];case 16:return P.sheetPr=h.autoParse(a,i.CT_SheetPr_Attributes),[3,18];case 17:return console.warn("unknown tag",s),[3,18];case 18:return[2]}}))},V.label=2;case 2:V.trys.push([2,7,8,9]),x=n.__values(C.children),y=x.next(),V.label=3;case 3:return y.done?[3,6]:(A=y.value,[5,p(A)]);case 4:V.sent(),V.label=5;case 5:return y=x.next(),[3,3];case 6:return[3,9];case 7:return F=V.sent(),T={error:F},[3,9];case 8:try{y&&!y.done&&(D=x.return)&&D.call(x)}finally{if(T)throw T.error}return[7];case 9:return f.initValueForContainsBlanks(P),w.initValueForTable(P),[2,P]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/parseSheet.js*/
- amis.define("6c17399",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),s=e("230927e"),i=e("cdb79c8"),c=e("d5af96a"),l=e("3d878b2"),u=e("55805a3");t.parseSheets=function(e,t,r,a){var o;return n.__awaiter(this,void 0,void 0,(function(){var d,h,b,f,v,_,g,p;return n.__generator(this,(function(w){switch(w.label){case 0:d=[],h=function(e){var h,b,f,v,_,g,p,w,k;return n.__generator(this,(function(n){switch(n.label){case 0:return h=l.autoParse(e,s.ISheet_Attributes),d.push(h),b=h["r:id"],h.state,f=null===(o=r.workbookRelationships)||void 0===o?void 0:o.find((function(e){return e.id===b})),(v=null==f?void 0:f.target)?(_=v.startsWith("/")?v:"xl/".concat(v),(g=t.getString(_))?(p=u.getRelPath(_),w=[],t.fileExists(p)?[4,c.parseRelationship(t.getString(p))]:[3,2]):[3,4]):[3,4];case 1:w=n.sent(),n.label=2;case 2:return k=h,[4,i.parseWorksheet(r,t,_,g,w,a)];case 3:k.worksheet=n.sent(),n.label=4;case 4:return[2]}}))},w.label=1;case 1:w.trys.push([1,6,7,8]),b=n.__values(e.children||[]),f=b.next(),w.label=2;case 2:return f.done?[3,5]:(v=f.value,[5,h(v)]);case 3:w.sent(),w.label=4;case 4:return f=b.next(),[3,2];case 5:return[3,8];case 6:return _=w.sent(),g={error:_},[3,8];case 7:try{f&&!f.done&&(p=b.return)&&p.call(b)}finally{if(g)throw g.error}return[7];case 8:return[2,d]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/parseWorkbookPr.js*/
- amis.define("7120804",(function(e,r,o,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("3d878b2"),u=e("20a593d"),i=e("554c0f4");r.parseWorkbookPr=function(e){var r=i.getNodeByTagName(e,"workbookPr");return a.autoParse(r,u.CT_WorkbookPr_Attributes)}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/parseWorkbookView.js*/
- amis.define("77be806",(function(e,o,r,t){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var a=e("3d878b2"),i=e("20a593d"),u=e("554c0f4");o.parseWorkbookView=function(e){var o=u.getNodeByTagName(e,"workbookView",!0);return a.autoParse(o,i.CT_BookView_Attributes)}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/stylesheet/parseColor.js*/
- amis.define("a6d2e8c",(function(e,r,t,o){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("3d878b2"),u=e("20a593d");r.parseColor=function(e){return a.autoParse(e,u.CT_Color_Attributes)}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/parseSharedStrings.js*/
- amis.define("b7d91d7",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),s=e("554c0f4"),c=e("a6d2e8c");function l(e){var r,a,t={};try{for(var s=n.__values(e.children||[]),l=s.next();!l.done;l=s.next()){var o=l.value,i=o.tag;switch(i){case"rFont":t.rFont=o.attrs.val;break;case"charset":t.charset=parseInt(o.attrs.val,10);break;case"family":t.family=parseInt(o.attrs.val,10);break;case"b":t.b=!0;break;case"i":t.i=!0;break;case"strike":t.strike=!0;break;case"outline":t.outline=!0;break;case"shadow":t.shadow=!0;break;case"condense":t.condense=!0;break;case"extend":t.extend=!0;break;case"color":t.color=c.parseColor(o);break;case"sz":t.sz=parseInt(o.attrs.val,10);break;case"u":t.u=!0;break;case"vertAlign":t.vertAlign=o.attrs.val;break;case"scheme":t.scheme=o.attrs.val;break;default:console.warn("parseRPr: ".concat(i," is not supported"))}}}catch(e){r={error:e}}finally{try{l&&!l.done&&(a=s.return)&&a.call(s)}finally{if(r)throw r.error}}return t}r.parseSharedStrings=function(e){return n.__awaiter(this,void 0,void 0,(function(){var r,a,t,c,o,i,u,d,f,h,v,b,y,k,x,_,p,w,g,m,P,I,j;return n.__generator(this,(function(z){switch(z.label){case 0:return r=[],e?[4,s.xml2json(e)]:[2,r];case 1:a=z.sent();try{for(t=n.__values(a.children||[]),c=t.next();!c.done;c=t.next())if("si"===(o=c.value).tag){i=!0,u="",d={type:"rich",richText:[]};try{for(m=void 0,f=n.__values(o.children||[]),h=f.next();!h.done;h=f.next()){if("r"===(v=h.value).tag){i=!1,b={},y="";try{for(I=void 0,k=n.__values(v.children||[]),x=k.next();!x.done;x=k.next())_=x.value,"rPr"===(p=_.tag)&&(b=l(_)),"t"===p&&(y=_.text||"")}catch(e){I={error:e}}finally{try{x&&!x.done&&(j=k.return)&&j.call(k)}finally{if(I)throw I.error}}d.richText.push({rPr:b,t:y})}"t"===v.tag&&(u=v.text||"")}}catch(e){m={error:e}}finally{try{h&&!h.done&&(P=f.return)&&P.call(f)}finally{if(m)throw m.error}}i?r.push(u):r.push(d)}}catch(e){w={error:e}}finally{try{c&&!c.done&&(g=t.return)&&g.call(t)}finally{if(w)throw w.error}}return[2,r]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/openxml/DMLTypes.js*/
- amis.define("a1c6d12",(function(t,i,e,l){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var r={uri:{type:"string"}},d={ext:{type:"child",childAttributes:r,childIsArray:!0}},c={val:{type:"string"}},h={},s={},p={},y={val:{type:"string"}},u={val:{type:"string"}},b={val:{type:"int"}},A={val:{type:"int"}},n={val:{type:"string"}},a={},o={},g={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:s},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:u},hue:{type:"child",childAttributes:b},hueOff:{type:"child",childAttributes:A},hueMod:{type:"child",childAttributes:u},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:a},invGamma:{type:"child",childAttributes:o},r:{type:"string"},g:{type:"string"},b:{type:"string"}},_={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:s},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:u},hue:{type:"child",childAttributes:b},hueOff:{type:"child",childAttributes:A},hueMod:{type:"child",childAttributes:u},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:a},invGamma:{type:"child",childAttributes:o},val:{type:"string"}},C={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:s},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:u},hue:{type:"int"},hueOff:{type:"child",childAttributes:A},hueMod:{type:"child",childAttributes:u},sat:{type:"string"},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"string"},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:a},invGamma:{type:"child",childAttributes:o}},f={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:s},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:u},hue:{type:"child",childAttributes:b},hueOff:{type:"child",childAttributes:A},hueMod:{type:"child",childAttributes:u},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:a},invGamma:{type:"child",childAttributes:o},val:{type:"string"},lastClr:{type:"string"}},T={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:s},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:u},hue:{type:"child",childAttributes:b},hueOff:{type:"child",childAttributes:A},hueMod:{type:"child",childAttributes:u},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:a},invGamma:{type:"child",childAttributes:o},val:{type:"string"}},m={tint:{type:"child",childAttributes:c},shade:{type:"child",childAttributes:c},comp:{type:"child",childAttributes:h},inv:{type:"child",childAttributes:s},gray:{type:"child",childAttributes:p},alpha:{type:"child",childAttributes:c},alphaOff:{type:"child",childAttributes:y},alphaMod:{type:"child",childAttributes:u},hue:{type:"child",childAttributes:b},hueOff:{type:"child",childAttributes:A},hueMod:{type:"child",childAttributes:u},sat:{type:"child",childAttributes:n},satOff:{type:"child",childAttributes:n},satMod:{type:"child",childAttributes:n},lum:{type:"child",childAttributes:n},lumOff:{type:"child",childAttributes:n},lumMod:{type:"child",childAttributes:n},red:{type:"child",childAttributes:n},redOff:{type:"child",childAttributes:n},redMod:{type:"child",childAttributes:n},green:{type:"child",childAttributes:n},greenOff:{type:"child",childAttributes:n},greenMod:{type:"child",childAttributes:n},blue:{type:"child",childAttributes:n},blueOff:{type:"child",childAttributes:n},blueMod:{type:"child",childAttributes:n},gamma:{type:"child",childAttributes:a},invGamma:{type:"child",childAttributes:o},val:{type:"string"}},x={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m}},S={dk1:{type:"child",childAttributes:x},lt1:{type:"child",childAttributes:x},dk2:{type:"child",childAttributes:x},lt2:{type:"child",childAttributes:x},accent1:{type:"child",childAttributes:x},accent2:{type:"child",childAttributes:x},accent3:{type:"child",childAttributes:x},accent4:{type:"child",childAttributes:x},accent5:{type:"child",childAttributes:x},accent6:{type:"child",childAttributes:x},hlink:{type:"child",childAttributes:x},folHlink:{type:"child",childAttributes:x},extLst:{type:"child",childAttributes:d},name:{type:"string"}},P={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m},name:{type:"string"}},L={script:{type:"string"},typeface:{type:"string"}},F={custClr:{type:"child",childAttributes:P,childIsArray:!0}},v={typeface:{type:"string"},panose:{type:"string"},pitchFamily:{type:"int"},charset:{type:"int"}},O={latin:{type:"child",childAttributes:v},ea:{type:"child",childAttributes:v},cs:{type:"child",childAttributes:v},font:{type:"child",childAttributes:L,childIsArray:!0},extLst:{type:"child",childAttributes:d}},M={rad:{type:"int"},grow:{type:"boolean"}},I={},D={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m}},R={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m},pos:{type:"string"}},B={gs:{type:"child",childAttributes:R,childIsArray:!0}},k={ang:{type:"int"},scaled:{type:"boolean"}},w={l:{type:"string"},t:{type:"string"},r:{type:"string"},b:{type:"string"}},G={fillToRect:{type:"child",childAttributes:w},path:{type:"string"}},E={gsLst:{type:"child",childAttributes:B},lin:{type:"child",childAttributes:k},path:{type:"child",childAttributes:G},tileRect:{type:"child",childAttributes:w},flip:{type:"string"},rotWithShape:{type:"boolean"}},z={extLst:{type:"child",childAttributes:d},cstate:{type:"string"}},H={tx:{type:"string"},ty:{type:"string"},sx:{type:"string"},sy:{type:"string"},flip:{type:"string"},algn:{type:"string"}},j={fillRect:{type:"child",childAttributes:w}},W={blip:{type:"child",childAttributes:z},srcRect:{type:"child",childAttributes:w},tile:{type:"child",childAttributes:H},stretch:{type:"child",childAttributes:j},dpi:{type:"int"},rotWithShape:{type:"boolean"}},N={fgClr:{type:"child",childAttributes:x},bgClr:{type:"child",childAttributes:x},prst:{type:"string"}},X={},Y={noFill:{type:"child",childAttributes:I},solidFill:{type:"child",childAttributes:D},gradFill:{type:"child",childAttributes:E},blipFill:{type:"child",childAttributes:W},pattFill:{type:"child",childAttributes:N},grpFill:{type:"child",childAttributes:X},blend:{type:"string"}},U={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m},rad:{type:"int"}},J={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m},blurRad:{type:"int"},dist:{type:"int"},dir:{type:"int"}},V={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m},blurRad:{type:"int"},dist:{type:"int"},dir:{type:"int"},sx:{type:"string"},sy:{type:"string"},kx:{type:"int"},ky:{type:"int"},algn:{type:"string"},rotWithShape:{type:"boolean"}},q={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m},prst:{type:"string"},dist:{type:"int"},dir:{type:"int"}},Q={blurRad:{type:"int"},stA:{type:"string"},stPos:{type:"string"},endA:{type:"string"},endPos:{type:"string"},dist:{type:"int"},dir:{type:"int"},fadeDir:{type:"int"},sx:{type:"string"},sy:{type:"string"},kx:{type:"int"},ky:{type:"int"},algn:{type:"string"},rotWithShape:{type:"boolean"}},K={rad:{type:"int"}},Z={blur:{type:"child",childAttributes:M},fillOverlay:{type:"child",childAttributes:Y},glow:{type:"child",childAttributes:U},innerShdw:{type:"child",childAttributes:J},outerShdw:{type:"child",childAttributes:V},prstShdw:{type:"child",childAttributes:q},reflection:{type:"child",childAttributes:Q},softEdge:{type:"child",childAttributes:K}},$={type:{type:"string"},name:{type:"string"}},tt={lat:{type:"int"},lon:{type:"int"},rev:{type:"int"}},it={rot:{type:"child",childAttributes:tt},prst:{type:"string"},fov:{type:"int"},zoom:{type:"string"}},et={rot:{type:"child",childAttributes:tt},rig:{type:"string"},dir:{type:"string"}},lt={x:{type:"string"},y:{type:"string"},z:{type:"string"}},rt={dx:{type:"string"},dy:{type:"string"},dz:{type:"string"}},dt={anchor:{type:"child",childAttributes:lt},norm:{type:"child",childAttributes:rt},up:{type:"child",childAttributes:rt},extLst:{type:"child",childAttributes:d}},ct={camera:{type:"child",childAttributes:it},lightRig:{type:"child",childAttributes:et},backdrop:{type:"child",childAttributes:dt},extLst:{type:"child",childAttributes:d}},ht={w:{type:"int"},h:{type:"int"},prst:{type:"string"}},st={bevelT:{type:"child",childAttributes:ht},bevelB:{type:"child",childAttributes:ht},extrusionClr:{type:"child",childAttributes:x},contourClr:{type:"child",childAttributes:x},extLst:{type:"child",childAttributes:d},z:{type:"string"},extrusionH:{type:"int"},contourW:{type:"int"},prstMaterial:{type:"string"}},pt={effectLst:{type:"child",childAttributes:Z},effectDag:{type:"child",childAttributes:$},scene3d:{type:"child",childAttributes:ct},sp3d:{type:"child",childAttributes:st}},yt={majorFont:{type:"child",childAttributes:O},minorFont:{type:"child",childAttributes:O},extLst:{type:"child",childAttributes:d},name:{type:"string"}},ut={noFill:{type:"child",childAttributes:I},solidFill:{type:"child",childAttributes:D},gradFill:{type:"child",childAttributes:E},blipFill:{type:"child",childAttributes:W},pattFill:{type:"child",childAttributes:N},grpFill:{type:"child",childAttributes:X}},bt={val:{type:"string"}},At={d:{type:"string"},sp:{type:"string"}},nt={ds:{type:"child",childAttributes:At,childIsArray:!0}},at={},ot={},gt={lim:{type:"string"}},_t={type:{type:"string"},w:{type:"string"},len:{type:"string"}},Ct={noFill:{type:"child",childAttributes:I},solidFill:{type:"child",childAttributes:D},gradFill:{type:"child",childAttributes:E},pattFill:{type:"child",childAttributes:N},prstDash:{type:"child",childAttributes:bt},custDash:{type:"child",childAttributes:nt},round:{type:"child",childAttributes:at},bevel:{type:"child",childAttributes:ot},miter:{type:"child",childAttributes:gt},headEnd:{type:"child",childAttributes:_t},tailEnd:{type:"child",childAttributes:_t},extLst:{type:"child",childAttributes:d},w:{type:"int"},cap:{type:"string"},cmpd:{type:"string"},algn:{type:"string"}},ft={ln:{type:"child",childAttributes:Ct,childIsArray:!0}},Tt={effectStyle:{type:"child",childAttributes:pt,childIsArray:!0}},mt={noFill:{type:"child",childAttributes:I},solidFill:{type:"child",childAttributes:D},gradFill:{type:"child",childAttributes:E},blipFill:{type:"child",childAttributes:W},pattFill:{type:"child",childAttributes:N},grpFill:{type:"child",childAttributes:X}},xt={fillStyleLst:{type:"child",childAttributes:ut},lnStyleLst:{type:"child",childAttributes:ft},effectStyleLst:{type:"child",childAttributes:Tt},bgFillStyleLst:{type:"child",childAttributes:mt},name:{type:"string"}},St={clrScheme:{type:"child",childAttributes:S},fontScheme:{type:"child",childAttributes:yt},fmtScheme:{type:"child",childAttributes:xt},extLst:{type:"child",childAttributes:d}},Pt={x:{type:"string"},y:{type:"string"}},Lt={cx:{type:"int"},cy:{type:"int"}},Ft={off:{type:"child",childAttributes:Pt},ext:{type:"child",childAttributes:Lt},rot:{type:"int"},flipH:{type:"boolean"},flipV:{type:"boolean"}},vt={name:{type:"string"}},Ot={snd:{type:"child",childAttributes:vt},extLst:{type:"child",childAttributes:d},r_id:{type:"string"},invalidUrl:{type:"string"},action:{type:"string"},tgtFrame:{type:"string"},tooltip:{type:"string"},history:{type:"boolean"},highlightClick:{type:"boolean"},endSnd:{type:"boolean"}},Mt={name:{type:"string"},fmla:{type:"string"}},It={gd:{type:"child",childAttributes:Mt,childIsArray:!0}},Dt={avLst:{type:"child",childAttributes:It},prst:{type:"string"}},Rt={},Bt={fontScale:{type:"string"},lnSpcReduction:{type:"string"}},kt={},wt={z:{type:"string"}},Gt={prstTxWarp:{type:"child",childAttributes:Dt},noAutofit:{type:"child",childAttributes:Rt,childIsArray:!0},normAutofit:{type:"child",childAttributes:Bt,childIsArray:!0},spAutoFit:{type:"child",childAttributes:kt,childIsArray:!0},scene3d:{type:"child",childAttributes:ct},sp3d:{type:"child",childAttributes:st},flatTx:{type:"child",childAttributes:wt},extLst:{type:"child",childAttributes:d},rot:{type:"int"},spcFirstLastPara:{type:"boolean"},vertOverflow:{type:"string"},horzOverflow:{type:"string"},vert:{type:"string"},wrap:{type:"string"},lIns:{type:"string"},tIns:{type:"string"},rIns:{type:"string"},bIns:{type:"string"},numCol:{type:"int"},spcCol:{type:"int"},rtlCol:{type:"boolean"},fromWordArt:{type:"boolean"},anchor:{type:"string"},anchorCtr:{type:"boolean"},forceAA:{type:"boolean"},upright:{type:"boolean"},compatLnSpc:{type:"boolean"}},Et={val:{type:"string"}},zt={val:{type:"int"}},Ht={spcPct:{type:"child",childAttributes:Et,childIsArray:!0},spcPts:{type:"child",childAttributes:zt,childIsArray:!0}},jt={},Wt={},Nt={val:{type:"string"}},Xt={val:{type:"int"}},Yt={},Ut={},Jt={type:{type:"string"},startAt:{type:"int"}},Vt={char:{type:"string"}},qt={blip:{type:"child",childAttributes:z}},Qt={pos:{type:"string"},algn:{type:"string"}},Kt={tab:{type:"child",childAttributes:Qt,childIsArray:!0}},Zt={},$t={},ti={},ii={val:{type:"string"}},ei={ln:{type:"child",childAttributes:Ct},noFill:{type:"child",childAttributes:I},solidFill:{type:"child",childAttributes:D},gradFill:{type:"child",childAttributes:E},blipFill:{type:"child",childAttributes:W},pattFill:{type:"child",childAttributes:N},grpFill:{type:"child",childAttributes:X},effectLst:{type:"child",childAttributes:Z},effectDag:{type:"child",childAttributes:$},highlight:{type:"child",childAttributes:x},uLnTx:{type:"child",childAttributes:Zt,childIsArray:!0},uLn:{type:"child",childAttributes:Ct},uFillTx:{type:"child",childAttributes:$t,childIsArray:!0},uFill:{type:"child",childAttributes:ti,childIsArray:!0},latin:{type:"child",childAttributes:v},ea:{type:"child",childAttributes:v},cs:{type:"child",childAttributes:v},sym:{type:"child",childAttributes:v},hlinkClick:{type:"child",childAttributes:Ot},hlinkMouseOver:{type:"child",childAttributes:Ot},rtl:{type:"child",childAttributes:ii,childIsArray:!0},extLst:{type:"child",childAttributes:d},kumimoji:{type:"boolean"},lang:{type:"string"},altLang:{type:"string"},sz:{type:"int"},b:{type:"boolean"},i:{type:"boolean"},u:{type:"string"},strike:{type:"string"},kern:{type:"int"},cap:{type:"string"},spc:{type:"string"},normalizeH:{type:"boolean"},baseline:{type:"string"},noProof:{type:"boolean"},dirty:{type:"boolean"},err:{type:"boolean"},smtClean:{type:"boolean"},smtId:{type:"int"},bmk:{type:"string"}},li={lnSpc:{type:"child",childAttributes:Ht},spcBef:{type:"child",childAttributes:Ht},spcAft:{type:"child",childAttributes:Ht},buClrTx:{type:"child",childAttributes:jt},buClr:{type:"child",childAttributes:x},buSzTx:{type:"child",childAttributes:Wt,childIsArray:!0},buSzPct:{type:"child",childAttributes:Nt,childIsArray:!0},buSzPts:{type:"child",childAttributes:Xt,childIsArray:!0},buFontTx:{type:"child",childAttributes:Yt,childIsArray:!0},buFont:{type:"child",childAttributes:v,childIsArray:!0},buNone:{type:"child",childAttributes:Ut,childIsArray:!0},buAutoNum:{type:"child",childAttributes:Jt,childIsArray:!0},buChar:{type:"child",childAttributes:Vt,childIsArray:!0},buBlip:{type:"child",childAttributes:qt,childIsArray:!0},tabLst:{type:"child",childAttributes:Kt},defRPr:{type:"child",childAttributes:ei},extLst:{type:"child",childAttributes:d},marL:{type:"int"},marR:{type:"int"},lvl:{type:"int"},indent:{type:"int"},algn:{type:"string"},defTabSz:{type:"string"},rtl:{type:"boolean"},eaLnBrk:{type:"boolean"},fontAlgn:{type:"string"},latinLnBrk:{type:"boolean"},hangingPunct:{type:"boolean"}},ri={defPPr:{type:"child",childAttributes:li},lvl1pPr:{type:"child",childAttributes:li},lvl2pPr:{type:"child",childAttributes:li},lvl3pPr:{type:"child",childAttributes:li},lvl4pPr:{type:"child",childAttributes:li},lvl5pPr:{type:"child",childAttributes:li},lvl6pPr:{type:"child",childAttributes:li},lvl7pPr:{type:"child",childAttributes:li},lvl8pPr:{type:"child",childAttributes:li},lvl9pPr:{type:"child",childAttributes:li},extLst:{type:"child",childAttributes:d}},di={x:{type:"string"},y:{type:"string"}},ci={pos:{type:"child",childAttributes:di},gdRefX:{type:"string"},minX:{type:"string"},maxX:{type:"string"},gdRefY:{type:"string"},minY:{type:"string"},maxY:{type:"string"}},hi={pos:{type:"child",childAttributes:di},gdRefR:{type:"string"},minR:{type:"string"},maxR:{type:"string"},gdRefAng:{type:"string"},minAng:{type:"string"},maxAng:{type:"string"}},si={ahXY:{type:"child",childAttributes:ci},ahPolar:{type:"child",childAttributes:hi}},pi={pos:{type:"child",childAttributes:di},ang:{type:"string"}},yi={cxn:{type:"child",childAttributes:pi,childIsArray:!0}},ui={l:{type:"string"},t:{type:"string"},r:{type:"string"},b:{type:"string"}},bi={},Ai={pt:{type:"child",childAttributes:di}},ni={pt:{type:"child",childAttributes:di}},ai={wR:{type:"string"},hR:{type:"string"},stAng:{type:"string"},swAng:{type:"string"}},oi={pt:{type:"child",childAttributes:di,childIsArray:!0}},gi={pt:{type:"child",childAttributes:di,childIsArray:!0}},_i={close:{type:"child",childAttributes:bi},moveTo:{type:"child",childAttributes:Ai},lnTo:{type:"child",childAttributes:ni},arcTo:{type:"child",childAttributes:ai},quadBezTo:{type:"child",childAttributes:oi},cubicBezTo:{type:"child",childAttributes:gi},w:{type:"int"},h:{type:"int"},fill:{type:"string"},stroke:{type:"boolean"},extrusionOk:{type:"boolean"}},Ci={path:{type:"child",childAttributes:_i,childIsArray:!0}},fi={avLst:{type:"child",childAttributes:It},gdLst:{type:"child",childAttributes:It},ahLst:{type:"child",childAttributes:si},cxnLst:{type:"child",childAttributes:yi},rect:{type:"child",childAttributes:ui},pathLst:{type:"child",childAttributes:Ci}},Ti={avLst:{type:"child",childAttributes:It},prst:{type:"string"}},mi={xfrm:{type:"child",childAttributes:Ft},custGeom:{type:"child",childAttributes:fi},prstGeom:{type:"child",childAttributes:Ti},noFill:{type:"child",childAttributes:I},solidFill:{type:"child",childAttributes:D},gradFill:{type:"child",childAttributes:E},blipFill:{type:"child",childAttributes:W},pattFill:{type:"child",childAttributes:N},grpFill:{type:"child",childAttributes:X},ln:{type:"child",childAttributes:Ct},effectLst:{type:"child",childAttributes:Z},effectDag:{type:"child",childAttributes:$},scene3d:{type:"child",childAttributes:ct},sp3d:{type:"child",childAttributes:st},extLst:{type:"child",childAttributes:d},bwMode:{type:"string"}},xi={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m},idx:{type:"int"}},Si={scrgbClr:{type:"child",childAttributes:g},srgbClr:{type:"child",childAttributes:_},hslClr:{type:"child",childAttributes:C},sysClr:{type:"child",childAttributes:f},schemeClr:{type:"child",childAttributes:T},prstClr:{type:"child",childAttributes:m},idx:{type:"string"}},Pi={lnRef:{type:"child",childAttributes:xi},fillRef:{type:"child",childAttributes:xi},effectRef:{type:"child",childAttributes:xi},fontRef:{type:"child",childAttributes:Si}},Li={spPr:{type:"child",childAttributes:mi},bodyPr:{type:"child",childAttributes:Gt},lstStyle:{type:"child",childAttributes:ri},style:{type:"child",childAttributes:Pi},extLst:{type:"child",childAttributes:d}},Fi={spDef:{type:"child",childAttributes:Li},lnDef:{type:"child",childAttributes:Li},txDef:{type:"child",childAttributes:Li},extLst:{type:"child",childAttributes:d}},vi={extLst:{type:"child",childAttributes:d},bg1:{type:"string"},tx1:{type:"string"},bg2:{type:"string"},tx2:{type:"string"},accent1:{type:"string"},accent2:{type:"string"},accent3:{type:"string"},accent4:{type:"string"},accent5:{type:"string"},accent6:{type:"string"},hlink:{type:"string"},folHlink:{type:"string"}},Oi={clrScheme:{type:"child",childAttributes:S},clrMap:{type:"child",childAttributes:vi}},Mi={extraClrScheme:{type:"child",childAttributes:Oi,childIsArray:!0}},Ii={themeElements:{type:"child",childAttributes:St},objectDefaults:{type:"child",childAttributes:Fi},extraClrSchemeLst:{type:"child",childAttributes:Mi},custClrLst:{type:"child",childAttributes:F},extLst:{type:"child",childAttributes:d},name:{type:"string"}};i.CT_AdjPoint2D_Attributes=di,i.CT_AdjustHandleList_Attributes=si,i.CT_Angle_Attributes=A,i.CT_Backdrop_Attributes=dt,i.CT_BackgroundFillStyleList_Attributes=mt,i.CT_BaseStyles_Attributes=St,i.CT_Bevel_Attributes=ht,i.CT_BlipFillProperties_Attributes=W,i.CT_Blip_Attributes=z,i.CT_BlurEffect_Attributes=M,i.CT_Boolean_Attributes=ii,i.CT_Camera_Attributes=it,i.CT_ColorMapping_Attributes=vi,i.CT_ColorSchemeAndMapping_Attributes=Oi,i.CT_ColorSchemeList_Attributes=Mi,i.CT_ColorScheme_Attributes=S,i.CT_Color_Attributes=x,i.CT_ComplementTransform_Attributes=h,i.CT_ConnectionSiteList_Attributes=yi,i.CT_ConnectionSite_Attributes=pi,i.CT_CustomColorList_Attributes=F,i.CT_CustomColor_Attributes=P,i.CT_CustomGeometry2D_Attributes=fi,i.CT_DashStopList_Attributes=nt,i.CT_DashStop_Attributes=At,i.CT_DefaultShapeDefinition_Attributes=Li,i.CT_EffectContainer_Attributes=$,i.CT_EffectList_Attributes=Z,i.CT_EffectStyleItem_Attributes=pt,i.CT_EffectStyleList_Attributes=Tt,i.CT_EmbeddedWAVAudioFile_Attributes=vt,i.CT_FillOverlayEffect_Attributes=Y,i.CT_FillStyleList_Attributes=ut,i.CT_FixedPercentage_Attributes=y,i.CT_FlatText_Attributes=wt,i.CT_FontCollection_Attributes=O,i.CT_FontReference_Attributes=Si,i.CT_FontScheme_Attributes=yt,i.CT_GammaTransform_Attributes=a,i.CT_GeomGuideList_Attributes=It,i.CT_GeomGuide_Attributes=Mt,i.CT_GeomRect_Attributes=ui,i.CT_GlowEffect_Attributes=U,i.CT_GradientFillProperties_Attributes=E,i.CT_GradientStopList_Attributes=B,i.CT_GradientStop_Attributes=R,i.CT_GrayscaleTransform_Attributes=p,i.CT_GroupFillProperties_Attributes=X,i.CT_HslColor_Attributes=C,i.CT_Hyperlink_Attributes=Ot,i.CT_InnerShadowEffect_Attributes=J,i.CT_InverseGammaTransform_Attributes=o,i.CT_InverseTransform_Attributes=s,i.CT_LightRig_Attributes=et,i.CT_LineEndProperties_Attributes=_t,i.CT_LineJoinBevel_Attributes=ot,i.CT_LineJoinMiterProperties_Attributes=gt,i.CT_LineJoinRound_Attributes=at,i.CT_LineProperties_Attributes=Ct,i.CT_LineStyleList_Attributes=ft,i.CT_LinearShadeProperties_Attributes=k,i.CT_NoFillProperties_Attributes=I,i.CT_ObjectStyleDefaults_Attributes=Fi,i.CT_OfficeArtExtensionList_Attributes=d,i.CT_OfficeArtExtension_Attributes=r,i.CT_OfficeStyleSheet_Attributes=Ii,i.CT_OuterShadowEffect_Attributes=V,i.CT_Path2DArcTo_Attributes=ai,i.CT_Path2DClose_Attributes=bi,i.CT_Path2DCubicBezierTo_Attributes=gi,i.CT_Path2DLineTo_Attributes=ni,i.CT_Path2DList_Attributes=Ci,i.CT_Path2DMoveTo_Attributes=Ai,i.CT_Path2DQuadBezierTo_Attributes=oi,i.CT_Path2D_Attributes=_i,i.CT_PathShadeProperties_Attributes=G,i.CT_PatternFillProperties_Attributes=N,i.CT_Percentage_Attributes=n,i.CT_Point2D_Attributes=Pt,i.CT_Point3D_Attributes=lt,i.CT_PolarAdjustHandle_Attributes=hi,i.CT_PositiveFixedAngle_Attributes=b,i.CT_PositiveFixedPercentage_Attributes=c,i.CT_PositivePercentage_Attributes=u,i.CT_PositiveSize2D_Attributes=Lt,i.CT_PresetColor_Attributes=m,i.CT_PresetGeometry2D_Attributes=Ti,i.CT_PresetLineDashProperties_Attributes=bt,i.CT_PresetShadowEffect_Attributes=q,i.CT_PresetTextShape_Attributes=Dt,i.CT_ReflectionEffect_Attributes=Q,i.CT_RelativeRect_Attributes=w,i.CT_SRgbColor_Attributes=_,i.CT_ScRgbColor_Attributes=g,i.CT_Scene3D_Attributes=ct,i.CT_SchemeColor_Attributes=T,i.CT_Shape3D_Attributes=st,i.CT_ShapeProperties_Attributes=mi,i.CT_ShapeStyle_Attributes=Pi,i.CT_SoftEdgesEffect_Attributes=K,i.CT_SolidColorFillProperties_Attributes=D,i.CT_SphereCoords_Attributes=tt,i.CT_StretchInfoProperties_Attributes=j,i.CT_StyleMatrixReference_Attributes=xi,i.CT_StyleMatrix_Attributes=xt,i.CT_SupplementalFont_Attributes=L,i.CT_SystemColor_Attributes=f,i.CT_TextAutonumberBullet_Attributes=Jt,i.CT_TextBlipBullet_Attributes=qt,i.CT_TextBodyProperties_Attributes=Gt,i.CT_TextBulletColorFollowText_Attributes=jt,i.CT_TextBulletSizeFollowText_Attributes=Wt,i.CT_TextBulletSizePercent_Attributes=Nt,i.CT_TextBulletSizePoint_Attributes=Xt,i.CT_TextBulletTypefaceFollowText_Attributes=Yt,i.CT_TextCharBullet_Attributes=Vt,i.CT_TextCharacterProperties_Attributes=ei,i.CT_TextFont_Attributes=v,i.CT_TextListStyle_Attributes=ri,i.CT_TextNoAutofit_Attributes=Rt,i.CT_TextNoBullet_Attributes=Ut,i.CT_TextNormalAutofit_Attributes=Bt,i.CT_TextParagraphProperties_Attributes=li,i.CT_TextShapeAutofit_Attributes=kt,i.CT_TextSpacingPercent_Attributes=Et,i.CT_TextSpacingPoint_Attributes=zt,i.CT_TextSpacing_Attributes=Ht,i.CT_TextTabStopList_Attributes=Kt,i.CT_TextTabStop_Attributes=Qt,i.CT_TextUnderlineFillFollowText_Attributes=$t,i.CT_TextUnderlineFillGroupWrapper_Attributes=ti,i.CT_TextUnderlineLineFollowText_Attributes=Zt,i.CT_TileInfoProperties_Attributes=H,i.CT_Transform2D_Attributes=Ft,i.CT_Vector3D_Attributes=rt,i.CT_XYAdjustHandle_Attributes=ci}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/parseTheme.js*/
- amis.define("574c134",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("68b98b9"),l=e("3d878b2"),s=e("a1c6d12"),o=e("554c0f4");t.parseTheme=function(e){var t,n;return i.__awaiter(this,void 0,void 0,(function(){var r,c,u,m,a;return i.__generator(this,(function(i){switch(i.label){case 0:if(!e)throw new Error("xml is empty");return[4,o.xml2json(e)];case 1:for(m in r=i.sent(),c=l.autoParse(r,s.CT_OfficeStyleSheet_Attributes,!0),u=[],(null===(t=null==c?void 0:c.themeElements)||void 0===t?void 0:t.clrScheme)||{})"name"!==m&&(a=null===(n=null==c?void 0:c.themeElements)||void 0===n?void 0:n.clrScheme[m],u.push(a));return c.themeElements&&(c.themeElements.clrSchemes=u),[2,c]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/preset/defaultTheme.js*/
- amis.define("814f110",(function(t,a,n,e){"use strict";Object.defineProperty(a,"__esModule",{value:!0});a.defaultThemeString='<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<a:theme xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Office Theme">\n\t<a:themeElements>\n\t\t<a:clrScheme name="Office">\n\t\t\t<a:dk1>\n\t\t\t\t<a:sysClr val="windowText" lastClr="000000"/>\n\t\t\t</a:dk1>\n\t\t\t<a:lt1>\n\t\t\t\t<a:sysClr val="window" lastClr="FFFFFF"/>\n\t\t\t</a:lt1>\n\t\t\t<a:dk2>\n\t\t\t\t<a:srgbClr val="1F497D"/>\n\t\t\t</a:dk2>\n\t\t\t<a:lt2>\n\t\t\t\t<a:srgbClr val="EEECE1"/>\n\t\t\t</a:lt2>\n\t\t\t<a:accent1>\n\t\t\t\t<a:srgbClr val="4F81BD"/>\n\t\t\t</a:accent1>\n\t\t\t<a:accent2>\n\t\t\t\t<a:srgbClr val="C0504D"/>\n\t\t\t</a:accent2>\n\t\t\t<a:accent3>\n\t\t\t\t<a:srgbClr val="9BBB59"/>\n\t\t\t</a:accent3>\n\t\t\t<a:accent4>\n\t\t\t\t<a:srgbClr val="8064A2"/>\n\t\t\t</a:accent4>\n\t\t\t<a:accent5>\n\t\t\t\t<a:srgbClr val="4BACC6"/>\n\t\t\t</a:accent5>\n\t\t\t<a:accent6>\n\t\t\t\t<a:srgbClr val="F79646"/>\n\t\t\t</a:accent6>\n\t\t\t<a:hlink>\n\t\t\t\t<a:srgbClr val="0000FF"/>\n\t\t\t</a:hlink>\n\t\t\t<a:folHlink>\n\t\t\t\t<a:srgbClr val="800080"/>\n\t\t\t</a:folHlink>\n\t\t</a:clrScheme>\n\t\t<a:fontScheme name="Office">\n\t\t\t<a:majorFont>\n\t\t\t\t<a:latin typeface="Cambria"/>\n\t\t\t\t<a:ea typeface=""/>\n\t\t\t\t<a:cs typeface=""/>\n\t\t\t\t<a:font script="Jpan" typeface="MS Pゴシック"/>\n\t\t\t\t<a:font script="Hang" typeface="맑은 고딕"/>\n\t\t\t\t<a:font script="Hans" typeface="宋体"/>\n\t\t\t\t<a:font script="Hant" typeface="新細明體"/>\n\t\t\t\t<a:font script="Arab" typeface="Times New Roman"/>\n\t\t\t\t<a:font script="Hebr" typeface="Times New Roman"/>\n\t\t\t\t<a:font script="Thai" typeface="Tahoma"/>\n\t\t\t\t<a:font script="Ethi" typeface="Nyala"/>\n\t\t\t\t<a:font script="Beng" typeface="Vrinda"/>\n\t\t\t\t<a:font script="Gujr" typeface="Shruti"/>\n\t\t\t\t<a:font script="Khmr" typeface="MoolBoran"/>\n\t\t\t\t<a:font script="Knda" typeface="Tunga"/>\n\t\t\t\t<a:font script="Guru" typeface="Raavi"/>\n\t\t\t\t<a:font script="Cans" typeface="Euphemia"/>\n\t\t\t\t<a:font script="Cher" typeface="Plantagenet Cherokee"/>\n\t\t\t\t<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>\n\t\t\t\t<a:font script="Tibt" typeface="Microsoft Himalaya"/>\n\t\t\t\t<a:font script="Thaa" typeface="MV Boli"/>\n\t\t\t\t<a:font script="Deva" typeface="Mangal"/>\n\t\t\t\t<a:font script="Telu" typeface="Gautami"/>\n\t\t\t\t<a:font script="Taml" typeface="Latha"/>\n\t\t\t\t<a:font script="Syrc" typeface="Estrangelo Edessa"/>\n\t\t\t\t<a:font script="Orya" typeface="Kalinga"/>\n\t\t\t\t<a:font script="Mlym" typeface="Kartika"/>\n\t\t\t\t<a:font script="Laoo" typeface="DokChampa"/>\n\t\t\t\t<a:font script="Sinh" typeface="Iskoola Pota"/>\n\t\t\t\t<a:font script="Mong" typeface="Mongolian Baiti"/>\n\t\t\t\t<a:font script="Viet" typeface="Times New Roman"/>\n\t\t\t\t<a:font script="Uigh" typeface="Microsoft Uighur"/>\n\t\t\t\t<a:font script="Geor" typeface="Sylfaen"/>\n\t\t\t</a:majorFont>\n\t\t\t<a:minorFont>\n\t\t\t\t<a:latin typeface="Calibri"/>\n\t\t\t\t<a:ea typeface=""/>\n\t\t\t\t<a:cs typeface=""/>\n\t\t\t\t<a:font script="Jpan" typeface="MS Pゴシック"/>\n\t\t\t\t<a:font script="Hang" typeface="맑은 고딕"/>\n\t\t\t\t<a:font script="Hans" typeface="宋体"/>\n\t\t\t\t<a:font script="Hant" typeface="新細明體"/>\n\t\t\t\t<a:font script="Arab" typeface="Arial"/>\n\t\t\t\t<a:font script="Hebr" typeface="Arial"/>\n\t\t\t\t<a:font script="Thai" typeface="Tahoma"/>\n\t\t\t\t<a:font script="Ethi" typeface="Nyala"/>\n\t\t\t\t<a:font script="Beng" typeface="Vrinda"/>\n\t\t\t\t<a:font script="Gujr" typeface="Shruti"/>\n\t\t\t\t<a:font script="Khmr" typeface="DaunPenh"/>\n\t\t\t\t<a:font script="Knda" typeface="Tunga"/>\n\t\t\t\t<a:font script="Guru" typeface="Raavi"/>\n\t\t\t\t<a:font script="Cans" typeface="Euphemia"/>\n\t\t\t\t<a:font script="Cher" typeface="Plantagenet Cherokee"/>\n\t\t\t\t<a:font script="Yiii" typeface="Microsoft Yi Baiti"/>\n\t\t\t\t<a:font script="Tibt" typeface="Microsoft Himalaya"/>\n\t\t\t\t<a:font script="Thaa" typeface="MV Boli"/>\n\t\t\t\t<a:font script="Deva" typeface="Mangal"/>\n\t\t\t\t<a:font script="Telu" typeface="Gautami"/>\n\t\t\t\t<a:font script="Taml" typeface="Latha"/>\n\t\t\t\t<a:font script="Syrc" typeface="Estrangelo Edessa"/>\n\t\t\t\t<a:font script="Orya" typeface="Kalinga"/>\n\t\t\t\t<a:font script="Mlym" typeface="Kartika"/>\n\t\t\t\t<a:font script="Laoo" typeface="DokChampa"/>\n\t\t\t\t<a:font script="Sinh" typeface="Iskoola Pota"/>\n\t\t\t\t<a:font script="Mong" typeface="Mongolian Baiti"/>\n\t\t\t\t<a:font script="Viet" typeface="Arial"/>\n\t\t\t\t<a:font script="Uigh" typeface="Microsoft Uighur"/>\n\t\t\t\t<a:font script="Geor" typeface="Sylfaen"/>\n\t\t\t</a:minorFont>\n\t\t</a:fontScheme>\n\t\t<a:fmtScheme name="Office">\n\t\t\t<a:fillStyleLst>\n\t\t\t\t<a:solidFill>\n\t\t\t\t\t<a:schemeClr val="phClr"/>\n\t\t\t\t</a:solidFill>\n\t\t\t\t<a:gradFill rotWithShape="1">\n\t\t\t\t\t<a:gsLst>\n\t\t\t\t\t\t<a:gs pos="0">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:tint val="50000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="300000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t\t<a:gs pos="35000">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:tint val="37000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="300000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t\t<a:gs pos="100000">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:tint val="15000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="350000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t</a:gsLst>\n\t\t\t\t\t<a:lin ang="16200000" scaled="1"/>\n\t\t\t\t</a:gradFill>\n\t\t\t\t<a:gradFill rotWithShape="1">\n\t\t\t\t\t<a:gsLst>\n\t\t\t\t\t\t<a:gs pos="0">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:tint val="100000"/>\n\t\t\t\t\t\t\t\t<a:shade val="100000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="130000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t\t<a:gs pos="100000">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:tint val="50000"/>\n\t\t\t\t\t\t\t\t<a:shade val="100000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="350000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t</a:gsLst>\n\t\t\t\t\t<a:lin ang="16200000" scaled="0"/>\n\t\t\t\t</a:gradFill>\n\t\t\t</a:fillStyleLst>\n\t\t\t<a:lnStyleLst>\n\t\t\t\t<a:ln w="9525" cap="flat" cmpd="sng" algn="ctr">\n\t\t\t\t\t<a:solidFill>\n\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t<a:shade val="95000"/>\n\t\t\t\t\t\t\t<a:satMod val="105000"/>\n\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t</a:solidFill>\n\t\t\t\t\t<a:prstDash val="solid"/>\n\t\t\t\t</a:ln>\n\t\t\t\t<a:ln w="25400" cap="flat" cmpd="sng" algn="ctr">\n\t\t\t\t\t<a:solidFill>\n\t\t\t\t\t\t<a:schemeClr val="phClr"/>\n\t\t\t\t\t</a:solidFill>\n\t\t\t\t\t<a:prstDash val="solid"/>\n\t\t\t\t</a:ln>\n\t\t\t\t<a:ln w="38100" cap="flat" cmpd="sng" algn="ctr">\n\t\t\t\t\t<a:solidFill>\n\t\t\t\t\t\t<a:schemeClr val="phClr"/>\n\t\t\t\t\t</a:solidFill>\n\t\t\t\t\t<a:prstDash val="solid"/>\n\t\t\t\t</a:ln>\n\t\t\t</a:lnStyleLst>\n\t\t\t<a:effectStyleLst>\n\t\t\t\t<a:effectStyle>\n\t\t\t\t\t<a:effectLst>\n\t\t\t\t\t\t<a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0">\n\t\t\t\t\t\t\t<a:srgbClr val="000000">\n\t\t\t\t\t\t\t\t<a:alpha val="38000"/>\n\t\t\t\t\t\t\t</a:srgbClr>\n\t\t\t\t\t\t</a:outerShdw>\n\t\t\t\t\t</a:effectLst>\n\t\t\t\t</a:effectStyle>\n\t\t\t\t<a:effectStyle>\n\t\t\t\t\t<a:effectLst>\n\t\t\t\t\t\t<a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">\n\t\t\t\t\t\t\t<a:srgbClr val="000000">\n\t\t\t\t\t\t\t\t<a:alpha val="35000"/>\n\t\t\t\t\t\t\t</a:srgbClr>\n\t\t\t\t\t\t</a:outerShdw>\n\t\t\t\t\t</a:effectLst>\n\t\t\t\t</a:effectStyle>\n\t\t\t\t<a:effectStyle>\n\t\t\t\t\t<a:effectLst>\n\t\t\t\t\t\t<a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">\n\t\t\t\t\t\t\t<a:srgbClr val="000000">\n\t\t\t\t\t\t\t\t<a:alpha val="35000"/>\n\t\t\t\t\t\t\t</a:srgbClr>\n\t\t\t\t\t\t</a:outerShdw>\n\t\t\t\t\t</a:effectLst>\n\t\t\t\t\t<a:scene3d>\n\t\t\t\t\t\t<a:camera prst="orthographicFront">\n\t\t\t\t\t\t\t<a:rot lat="0" lon="0" rev="0"/>\n\t\t\t\t\t\t</a:camera>\n\t\t\t\t\t\t<a:lightRig rig="threePt" dir="t">\n\t\t\t\t\t\t\t<a:rot lat="0" lon="0" rev="1200000"/>\n\t\t\t\t\t\t</a:lightRig>\n\t\t\t\t\t</a:scene3d>\n\t\t\t\t\t<a:sp3d>\n\t\t\t\t\t\t<a:bevelT w="63500" h="25400"/>\n\t\t\t\t\t</a:sp3d>\n\t\t\t\t</a:effectStyle>\n\t\t\t</a:effectStyleLst>\n\t\t\t<a:bgFillStyleLst>\n\t\t\t\t<a:solidFill>\n\t\t\t\t\t<a:schemeClr val="phClr"/>\n\t\t\t\t</a:solidFill>\n\t\t\t\t<a:gradFill rotWithShape="1">\n\t\t\t\t\t<a:gsLst>\n\t\t\t\t\t\t<a:gs pos="0">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:tint val="40000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="350000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t\t<a:gs pos="40000">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:tint val="45000"/>\n\t\t\t\t\t\t\t\t<a:shade val="99000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="350000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t\t<a:gs pos="100000">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:shade val="20000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="255000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t</a:gsLst>\n\t\t\t\t\t<a:path path="circle">\n\t\t\t\t\t\t<a:fillToRect l="50000" t="-80000" r="50000" b="180000"/>\n\t\t\t\t\t</a:path>\n\t\t\t\t</a:gradFill>\n\t\t\t\t<a:gradFill rotWithShape="1">\n\t\t\t\t\t<a:gsLst>\n\t\t\t\t\t\t<a:gs pos="0">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:tint val="80000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="300000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t\t<a:gs pos="100000">\n\t\t\t\t\t\t\t<a:schemeClr val="phClr">\n\t\t\t\t\t\t\t\t<a:shade val="30000"/>\n\t\t\t\t\t\t\t\t<a:satMod val="200000"/>\n\t\t\t\t\t\t\t</a:schemeClr>\n\t\t\t\t\t\t</a:gs>\n\t\t\t\t\t</a:gsLst>\n\t\t\t\t\t<a:path path="circle">\n\t\t\t\t\t\t<a:fillToRect l="50000" t="50000" r="50000" b="50000"/>\n\t\t\t\t\t</a:path>\n\t\t\t\t</a:gradFill>\n\t\t\t</a:bgFillStyleLst>\n\t\t</a:fmtScheme>\n\t</a:themeElements>\n\t<a:objectDefaults>\n\t\t<a:spDef>\n\t\t\t<a:spPr/>\n\t\t\t<a:bodyPr/>\n\t\t\t<a:lstStyle/>\n\t\t\t<a:style>\n\t\t\t\t<a:lnRef idx="1">\n\t\t\t\t\t<a:schemeClr val="accent1"/>\n\t\t\t\t</a:lnRef>\n\t\t\t\t<a:fillRef idx="3">\n\t\t\t\t\t<a:schemeClr val="accent1"/>\n\t\t\t\t</a:fillRef>\n\t\t\t\t<a:effectRef idx="2">\n\t\t\t\t\t<a:schemeClr val="accent1"/>\n\t\t\t\t</a:effectRef>\n\t\t\t\t<a:fontRef idx="minor">\n\t\t\t\t\t<a:schemeClr val="lt1"/>\n\t\t\t\t</a:fontRef>\n\t\t\t</a:style>\n\t\t</a:spDef>\n\t\t<a:lnDef>\n\t\t\t<a:spPr/>\n\t\t\t<a:bodyPr/>\n\t\t\t<a:lstStyle/>\n\t\t\t<a:style>\n\t\t\t\t<a:lnRef idx="2">\n\t\t\t\t\t<a:schemeClr val="accent1"/>\n\t\t\t\t</a:lnRef>\n\t\t\t\t<a:fillRef idx="0">\n\t\t\t\t\t<a:schemeClr val="accent1"/>\n\t\t\t\t</a:fillRef>\n\t\t\t\t<a:effectRef idx="1">\n\t\t\t\t\t<a:schemeClr val="accent1"/>\n\t\t\t\t</a:effectRef>\n\t\t\t\t<a:fontRef idx="minor">\n\t\t\t\t\t<a:schemeClr val="tx1"/>\n\t\t\t\t</a:fontRef>\n\t\t\t</a:style>\n\t\t</a:lnDef>\n\t</a:objectDefaults>\n\t<a:extraClrSchemeLst/>\n</a:theme>'}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/parseWorkbook.js*/
- amis.define("b0d4253",(function(e,r,t,s){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),n=e("554c0f4"),c=e("22c1ca5"),o=e("6c17399"),i=e("7120804"),l=e("77be806"),u=e("d5af96a"),h=e("b7d91d7"),d=e("20a593d"),b=e("574c134"),m=e("3d878b2"),f=e("814f110");r.parseWorkbook=function(e,r){return a.__awaiter(this,void 0,void 0,(function(){var t,s,x,k,g,p,w,S,_,v,P,y,T,N,W,j;return a.__generator(this,(function(C){switch(C.label){case 0:return t=e.getString("xl/workbook.xml"),[4,u.parseRelationship(e.getString("xl/_rels/workbook.xml.rels"))];case 1:return s=C.sent(),[4,n.xml2json(t)];case 2:return x=C.sent(),k=i.parseWorkbookPr(x),g=l.parseWorkbookView(x),e.fileExists("xl/theme/theme1.xml")?[4,b.parseTheme(e.getString("xl/theme/theme1.xml"))]:[3,4];case 3:return p=C.sent(),[3,6];case 4:return[4,b.parseTheme(f.defaultThemeString)];case 5:p=C.sent(),C.label=6;case 6:return w={sheets:[],workbookPr:k,workbookView:g,workbookRelationships:s,styleSheet:r,theme:p},S=[],e.fileExists("xl/sharedStrings.xml")?[4,h.parseSharedStrings(e.getString("xl/sharedStrings.xml"))]:[3,8];case 7:S=C.sent(),C.label=8;case 8:C.trys.push([8,16,17,18]),_=a.__values(x.children||[]),v=_.next(),C.label=9;case 9:if(v.done)return[3,15];switch(P=v.value,y=P.tag,y){case"sheets":return[3,10];case"calcPr":return[3,12];case"definedNames":return[3,13]}return[3,14];case 10:return T=w,[4,o.parseSheets(P,e,w,S)];case 11:return T.sheets=C.sent(),[3,14];case 12:return w.calcPr=m.autoParse(P,d.CT_CalcPr_Attributes),[3,14];case 13:return w.definedNames=c.parseDefinedNames(P),[3,14];case 14:return v=_.next(),[3,9];case 15:return[3,18];case 16:return N=C.sent(),W={error:N},[3,18];case 17:try{v&&!v.done&&(j=_.return)&&j.call(_)}finally{if(W)throw W.error}return[7];case 18:return[2,w]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/common/parseContentType.js*/
- amis.define("acb3a84",(function(e,t,r,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("68b98b9"),o=e("554c0f4");t.parseContentType=function(e){return a.__awaiter(this,void 0,void 0,(function(){var t,r,n,s,i,u,l,c;return a.__generator(this,(function(f){switch(f.label){case 0:return t=e.getString("[Content_Types].xml"),r={overrides:[],defaults:[]},[4,o.xml2json(t)];case 1:n=f.sent();try{for(s=a.__values(n.children||[]),i=s.next();!i.done;i=s.next())"Override"===(u=i.value).tag?r.overrides.push({partName:u.attrs.PartName,contentType:u.attrs.ContentType}):"Default"===u.tag&&r.defaults.push({extension:u.attrs.Extension,contentType:u.attrs.ContentType})}catch(e){l={error:e}}finally{try{i&&!i.done&&(c=s.return)&&c.call(s)}finally{if(l)throw l.error}}return[2,r]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/excel/io/parseExcel.js*/
- amis.define("1df7f27",(function(e,t,r,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=e("68b98b9"),a=e("b0d4253"),o=e("acb3a84"),i=e("554c0f4"),c=e("20a593d"),u=e("3d878b2");t.parseExcel=function(e){return s.__awaiter(this,void 0,void 0,(function(){var t,r,n,b;return s.__generator(this,(function(s){switch(s.label){case 0:return[4,o.parseContentType(e)];case 1:return t=s.sent(),[4,i.xml2json(e.getString("xl/styles.xml"))];case 2:return r=s.sent(),n=u.autoParse(r,c.CT_Stylesheet_Attributes),[4,a.parseWorkbook(e,n)];case 3:return b=s.sent(),[2,{contentTypes:t,workbook:b}]}}))}))}}));
- ;/*!node_modules/office-viewer/lib/util/EventEmitter.js*/
- amis.define("c31a48c",(function(e,n,r,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var i=e("68b98b9"),s=function(){var e=this;this.debug=!1,this.events={},this.emit=function(n){for(var r,t,s=[],o=1;o<arguments.length;o++)s[o-1]=arguments[o];if(e.events[n]){var a=e.events[n].length,v=Array.from(e.events[n]);e.debug&&console.log.apply(console,i.__spreadArray(["EventEmitter: emit event ".concat(String(n))],i.__read(s),!1));try{for(var u=i.__values(v),d=u.next();!d.done;d=u.next()){var f=d.value;f.apply(void 0,i.__spreadArray([],i.__read(s),!1))}}catch(e){r={error:e}}finally{try{d&&!d.done&&(t=u.return)&&t.call(u)}finally{if(r)throw r.error}}return!!a}return!1},this.on=function(n,r){return e.addListener(n,r),e},this.once=function(n,r){var t=function(){for(var s=[],o=0;o<arguments.length;o++)s[o]=arguments[o];r.apply(void 0,i.__spreadArray([],i.__read(s),!1)),e.removeListener(n,t)};return e.addListener(n,t),e},this.addListener=function(n,r){return n in e.events?e.events[n].push(r):e.events[n]=[r],e},this.removeListener=function(n,r){if(n in e.events){var t=e.events[n].indexOf(r);-1!==t&&e.events[n].splice(t,1)}return e},this.prependListener=function(n,r){return n in e.events?e.events[n].unshift(r):e.events[n]=[r],e},this.prependOnceListener=function(n,r){var t=function(){for(var s=[],o=0;o<arguments.length;o++)s[o]=arguments[o];r.apply(void 0,i.__spreadArray([],i.__read(s),!1)),e.removeListener(n,t)};return e.prependListener(n,t),e},this.off=function(n,r){return e.removeListener(n,r)},this.removeAllListeners=function(n){return n&&delete e.events[n],e},window&&!0===window.OFFICE_VIEWER_DEBUG&&(this.debug=!0)};n.EventEmitter=s}));
- ;/*!node_modules/office-viewer/lib/excel/StyleSheet.js*/
- amis.define("6e9631c",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(e){this.dataProvider=e};t.StyleSheet=r}));
- ;/*!node_modules/office-viewer/lib/util/H.js*/
- amis.define("22b926c",(function(e,t,r,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("68b98b9"),i=e("32ed37c");function o(e){return e&&e.nodeName&&e.nodeType}t.H=function(e,t){for(var r,n,l=[],s=2;s<arguments.length;s++)l[s-2]=arguments[s];var c=document.createElement(e);for(var f in t)if(Object.prototype.hasOwnProperty.call(t,f)){var d=t[f];if("className"===f)c.setAttribute("class",d);else if("style"===f){if(i.isObject(d))for(var u in d){var v=d[u];c.style.setProperty(u,v)}}else"innerText"===f?c.innerText=d:"innerHTML"===f?c.innerHTML=d:"parent"===f?d.appendChild(c):f.startsWith("on")&&"function"==typeof d?c.addEventListener(f.slice(2),d):c.setAttribute(f,d)}try{for(var p=a.__values(l),y=p.next();!y.done;y=p.next()){var b=y.value;o(b)&&c.appendChild(b)}}catch(e){r={error:e}}finally{try{y&&!y.done&&(n=p.return)&&n.call(p)}finally{if(r)throw r.error}}return c}}));
- ;/*!node_modules/office-viewer/lib/excel/render/ScrollBar.js*/
- amis.define("543a05d",(function(t,o,e,l){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var r=t("68b98b9"),a=t("22b926c"),c={autoHide:!0,scrollBarSize:15},s=function(){function t(t,o,e){var l=this;this.container=t,this.workbook=o,this.scrollOptions=r.__assign(r.__assign({},c),e),o.uiEvent.on("AFTER_SCROLL",(function(){l.sync()})),o.uiEvent.on("SWITCH_SHEET",(function(){l.sync()}));var s=this.scrollOptions.scrollBarSize;t.style.position="relative";var n=a.H("div",{className:"ov-excel-scrollbar-content-y",style:{width:"".concat(s,"px")}});this.yScrollBarContent=n,n.addEventListener("scroll",(function(t){var o=l.workbook.getActiveSheet(),e=o.getScrollTop(),r=n.scrollTop;Math.round(e)!==Math.round(r)&&(o.setScrollTop(n.scrollTop),l.workbook.uiEvent.emit("SCROLL_Y",n.scrollTop)),t.preventDefault(),t.stopPropagation()})),n.addEventListener("mousedown",(function(t){t.stopPropagation()}));var i=a.H("div",{className:"ov-excel-scrollbar-total-y",style:{width:"".concat(s,"px")},parent:n});this.yScrollBarTotal=i;var h=a.H("div",{className:"ov-excel-scrollbar-y",style:{width:"".concat(s,"px")},parent:t},n);this.yScrollBarTruck=h;var p=a.H("div",{className:"ov-excel-scrollbar-content-x",style:{height:"".concat(s,"px")}});this.xScrollBarContent=p,p.addEventListener("scroll",(function(t){var o=l.workbook.getActiveSheet(),e=o.getScrollLeft(),r=p.scrollLeft;Math.round(e)!==Math.round(r)&&(o.setScrollLeft(p.scrollLeft),l.workbook.uiEvent.emit("SCROLL_X",p.scrollLeft)),t.preventDefault(),t.stopPropagation()})),p.addEventListener("mousedown",(function(t){t.stopPropagation()}));var v=a.H("div",{className:"ov-excel-scrollbar-total-x",style:{height:"".concat(s,"px")},parent:p});this.xScrollBarTotal=v;var d=a.H("div",{className:"ov-excel-scrollbar-x",style:{height:"".concat(s,"px")},parent:t},p);this.xScrollBarTruck=d,this.sync()}return t.prototype.sync=function(){var t=this.workbook.getActiveSheet(),o=this.scrollOptions.scrollBarSize,e=this.workbook.getViewpointSize(),l=e.width,r=e.height,a=t.getScrollLeft(),c=t.getScrollTop(),s=t.getRowColSize(),n=s.rowHeaderWidth,i=s.colHeaderHeight;this.xScrollBarContent.style.width="".concat(l,"px"),this.yScrollBarContent.style.height="".concat(r,"px");var h=Math.max(l+a,t.getTotalWidth()+n+o),p=Math.max(r+c,t.getTotalHeight()+i+o);this.xScrollBarTruck.style.display=h<=l?"none":"block",this.yScrollBarTruck.style.display=p<=r?"none":"block",this.xScrollBarTotal.style.width="".concat(h,"px"),this.xScrollBarContent.scrollLeft=a,this.yScrollBarTotal.style.height="".concat(p,"px"),this.yScrollBarContent.scrollTop=c},t}();o.ScrollBar=s}));
- ;/*!node_modules/office-viewer/lib/excel/render/canvas/drawOffscreenCanvas.js*/
- amis.define("c720e68",(function(e,n,t,a){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.drawOffscreenCanvas=function(e,n,t,a){var r=new OffscreenCanvas(n*e,t*e),s=r.getContext("2d");return s.scale(e,e),a(s),r}}));
- ;/*!node_modules/office-viewer/lib/excel/render/canvas/setPixelRatio.js*/
- amis.define("465c405",(function(e,t,i,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.setPixelRatio=function(e,t,i){var o=window.devicePixelRatio||1;e.width=Math.floor(t*o),e.height=Math.floor(i*o),e.style.width=t+"px",e.style.height=i+"px";var a=e.getContext("2d");return a&&a.scale(o,o),o}}));
- ;/*!node_modules/office-viewer/lib/excel/render/Canvas.js*/
- amis.define("3fe78ca",(function(t,e,o,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=t("68b98b9"),r=t("c720e68"),n=t("465c405"),s=function(){function t(t,e,o,i){this.widgets=new Map,this.zoom=1,this.ratio=1,this.lastTarget=null,this.imageCache=new Map,this.canvas=document.createElement("canvas"),this.ctx=this.canvas.getContext("2d"),this.width=t,this.height=e,this.ratio=n.setPixelRatio(this.canvas,t,e),this.canvas.className=i,this.zoom=o,this.setZoom(),this.canvas.addEventListener("mousemove",this.handleMousemove.bind(this))}return t.prototype.setZoom=function(){var t=this.zoom;t&&1!==t&&this.ctx.scale(t,t)},t.prototype.renderWidget=function(t){return a.__awaiter(this,void 0,void 0,(function(){var e,o,i,r,n;return a.__generator(this,(function(a){switch(a.label){case 0:return e=this.ratio*this.zoom,o=t.getClientBounding(),i=o.x,r=o.y,o.width,o.height,[4,t.draw()];case 1:return n=a.sent(),this.ctx.putImageData(n,i*e,r*e),[2]}}))}))},t.prototype.handleMousemove=function(t){var e,o,i=t.offsetX,r=t.offsetY;i/=this.zoom,r/=this.zoom;try{for(var n=a.__values(this.widgets.values()),s=n.next();!s.done;s=n.next()){var c=s.value;c.isPointInWidget(i,r)&&(this.lastTarget&&this.lastTarget!==c?this.lastTarget.onMouseout():(this.lastTarget=c,c.onMouseover()))}}catch(t){e={error:t}}finally{try{s&&!s.done&&(o=n.return)&&o.call(n)}finally{if(e)throw e.error}}},t.prototype.updateCursor=function(t){this.canvas.style.cursor=t},t.prototype.hasWidget=function(t){return this.widgets.has(t)},t.prototype.addWidget=function(t,e){this.widgets.set(t,e),this.renderWidget(e)},t.prototype.getRealRatio=function(){return this.ratio*this.zoom},t.prototype.getCanvasElement=function(){return this.canvas},t.prototype.getContext=function(){return this.ctx},t.prototype.updateZoom=function(t){this.zoom=t,this.ctx.resetTransform(),this.ctx.scale(this.ratio*t,this.ratio*t),this.clearCache()},t.prototype.clear=function(t,e){this.ctx.clearRect(0,0,(t||this.width)/this.zoom,(e||this.height)/this.zoom)},t.prototype.clearRect=function(t,e,o,i){this.ctx.clearRect(t,e,o,i)},t.prototype.clearRectPadding=function(t,e,o,i,a){this.clearRect(t+a,e+a,o-2*a,i-2*a)},t.prototype.drawLine=function(t,e,o){void 0===o&&(o=1);var i=this.ctx;i.beginPath(),i.moveTo(t.x1,t.y1),i.lineTo(t.x2,t.y2),i.strokeStyle=e,i.lineWidth=o,i.stroke()},t.prototype.setLineDash=function(t,e,o,i){void 0===i&&(i=1);var a=this.ctx;a.beginPath(),a.moveTo(t.x1,t.y1),a.lineTo(t.x2,t.y2),a.strokeStyle=o,a.lineWidth=i,a.setLineDash(e),a.stroke(),a.setLineDash([])},t.prototype.drawLines=function(t,e,o){void 0===o&&(o=1);var i=this.ctx;i.beginPath(),t.forEach((function(t){i.moveTo(t.x1,t.y1),i.lineTo(t.x2,t.y2)})),i.strokeStyle=e,i.lineWidth=o,i.stroke()},t.prototype.drawText=function(t,e,o,i,a,r){void 0===e&&(e="#000"),void 0===r&&(r="middle");var n=this.ctx;n.font=t,n.fillStyle=e,n.textBaseline=r,n.fillText(o,i,a)},t.prototype.drawRect=function(t,e,o,i,a){var r=this.ctx;r.fillStyle=a,r.fillRect(t,e,o,i)},t.prototype.drawRectWithPadding=function(t,e,o,i,a,r){var n=this.ctx;n.fillStyle=a,n.fillRect(t+r,e+r,o-2*r,i-2*r)},t.prototype.drawRectLinearGradientWithPadding=function(t,e,o,i,a,r,n){var s=Math.max(1,o-2*n),c=this.ctx,h=c.createLinearGradient(t+n,e+n,t+n+s,e+n);h.addColorStop(0,a),h.addColorStop(1,r),c.fillStyle=h,c.fillRect(t+n,e+n,s,i-2*n)},t.prototype.drawAlphaRect=function(t,e,o,i,a,r){var n=this.ctx;n.globalAlpha=r,n.fillStyle=a,n.fillRect(t,e,o,i),n.globalAlpha=1},t.prototype.drawAlphaRectPadding=function(t,e,o,i,a,r,n){return this.drawAlphaRect(t+a,e+a,o-2*a,i-2*a,r,n)},t.prototype.drawStrokeRect=function(t,e,o,i,a,r){void 0===r&&(r=1);var n=this.ctx;n.strokeStyle=a,n.lineWidth=r,n.strokeRect(t,e,o,i)},t.prototype.drawStrokeRectPadding=function(t,e,o,i,a,r,n){void 0===r&&(r=1),void 0===n&&(n=1),this.drawStrokeRect(t+n,e+n,o-2*n,i-2*n,a,r)},t.prototype.drawImage=function(t,e,o,i,a){var r=this,n=new Image;n.src=t,n.onload=function(){r.ctx.drawImage(n,e,o,i,a)}},t.prototype.drawImageWithCache=function(t,e,o,i,n){return a.__awaiter(this,void 0,void 0,(function(){var s=this;return a.__generator(this,(function(a){return[2,new Promise((function(a,c){var h=s.ratio*s.zoom,d="".concat(t,"-").concat(i,"-").concat(n);if(i=Math.floor(i),n=Math.floor(n),0!==i&&0!==n){var l=s.imageCache.get(d);if(l)return s.ctx.drawImage(l,e,o,i,n),void a();var u=new Image;u.src=t,u.onload=function(){var t=r.drawOffscreenCanvas(h,i,n,(function(t){t.drawImage(u,0,0,i,n)}));s.ctx.drawImage(t,e,o,i,n),s.imageCache.set(d,t),a()},u.onerror=c}else a()}))]}))}))},t.prototype.customDrawWithCache=function(t,e,o,i,n,s){return a.__awaiter(this,void 0,void 0,(function(){var c=this;return a.__generator(this,(function(a){return[2,new Promise((function(a,h){var d=c.ratio*c.zoom,l=c.imageCache.get(t);if(l)return c.ctx.drawImage(l,e,o,i,n),void a();var u=r.drawOffscreenCanvas(d,i,n,(function(t){s(t,d)}));c.ctx.drawImage(u,e,o,i,n),c.imageCache.set(t,u),a()}))]}))}))},t.prototype.clearCache=function(){this.imageCache.clear()},t}();e.Canvas=s}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/getBackgroundColor.js*/
- amis.define("cdea76a",(function(r,e,n,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getBackgroundColor=function(r,e){if(e){var n=e.patternFill;if(n){switch(n.patternType){case"solid":var t=n.fgColor;if(t)return r.getColor(t);break;case"mediumGray":return"#808080";case"darkGray":return"#A9A9A9";case"lightGray":return"#D3D3D3";case"gray125":return"#E0E0E0";case"gray0625":return"#F2F2F2";case"none":return"none"}if(n.bgColor)return r.getColor(n.bgColor)}e.gradientFill}return"none"}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawCellBackground.js*/
- amis.define("7c4b159",(function(e,l,n,a){"use strict";Object.defineProperty(l,"__esModule",{value:!0});var c=e("cdea76a");l.drawCellBackground=function(e,l,n,a,i,o,r){var t=c.getBackgroundColor(l,n.fill);"none"!==t&&(e.fillStyle=t,e.fillRect(a,i,o,r))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/Consts.js*/
- amis.define("7167655",(function(e,_,O,i){"use strict";Object.defineProperty(_,"__esModule",{value:!0});_.AUTO_COLOR="#000000",_.DEFAULT_FONT_SIZE=12,_.MAX_COL=16383,_.MAX_ROW=1048575,_.PADDING_SIZE=2}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/border/drawDoubleBorder.js*/
- amis.define("0281036",(function(o,e,i,t){"use strict";function n(o){return o&&"double"===o.style}Object.defineProperty(e,"__esModule",{value:!0}),e.drawDoubleBorder=function(o,e,i,t,T,l,a){switch(o.lineWidth=1,i){case"top":o.moveTo(t-1,T-1),o.lineTo(l+1,T-1),n(e.left)&&(t+=1),n(e.right)&&(l-=1),o.moveTo(t,T+1),o.lineTo(l,T+1);break;case"bottom":o.moveTo(t-1,a+1),o.lineTo(l+1,a+1),n(e.left)&&(t+=1),n(e.right)&&(l-=1),o.moveTo(t,a-1),o.lineTo(l,a-1);break;case"left":o.moveTo(t-1,T-1),o.lineTo(t-1,a+1),n(e.top)&&(T+=1),n(e.bottom)&&(a-=1),o.moveTo(t+1,T),o.lineTo(t+1,a);break;case"right":o.moveTo(l+1,T-1),o.lineTo(l+1,a+1),n(e.top)&&(T+=1),n(e.bottom)&&(a-=1),o.moveTo(l-1,T),o.lineTo(l-1,a);break;case"diagonalDown":o.moveTo(t-1,T+1),o.lineTo(l-1,a+1),o.moveTo(t+1,T-1),o.lineTo(l+1,a-1);break;case"diagonalUp":o.moveTo(t-1,T-1),o.lineTo(l-1,a-1),o.moveTo(t+1,T+1),o.lineTo(l+1,a+1)}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/border/setLineStyle.js*/
- amis.define("b8831bf",(function(e,s,a,t){"use strict";Object.defineProperty(s,"__esModule",{value:!0}),s.setLineStyle=function(e,s){if(e.lineWidth=1,s)switch(s){case"hair":e.setLineDash([1,2]);break;case"dashDotDot":case"mediumDashDotDot":e.setLineDash([2,2,5,2,2]);break;case"dashDot":case"mediumDashDot":case"slantDashDot":e.setLineDash([2,5,2]);break;case"dotted":e.setLineDash([2]);break;case"dashed":case"mediumDashed":e.setLineDash([3]);break;case"medium":e.lineWidth=2;break;case"thick":e.lineWidth=3;break;default:e.setLineDash([0])}else e.setLineDash([])}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawCellBorder.js*/
- amis.define("370c12f",(function(e,o,t,l){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var n=e("7167655"),r=e("0281036"),a=e("b8831bf");function i(e,o,t,l,i,d,s,g,b){l&&l.style&&"none"!==l.style&&(e.beginPath(),e.strokeStyle=o.getColor(l.color,n.AUTO_COLOR),"double"===l.style?r.drawDoubleBorder(e,t,i,d,s,g,b):(a.setLineStyle(e,l.style),e.moveTo(d,s),e.lineTo(g,b)),e.stroke())}o.drawCellBorder=function(e,o,t,l,n,r,a){var d=t.border;d&&(e.save(),e.lineWidth=1,i(e,o,d,d.top,"top",l,n,l+r,n),i(e,o,d,d.bottom,"bottom",l,n+a,l+r,n+a),i(e,o,d,d.left,"left",l,n,l,n+a),i(e,o,d,d.right,"right",l+r,n,l+r,n+a),d.diagonalDown&&i(e,o,d,d.diagonal,"diagonalDown",l,n,l+r,n+a),d.diagonalUp&&i(e,o,d,d.diagonal,"diagonalUp",l,n+a,l+r,n),e.restore())}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawDataBarX14.js*/
- amis.define("3ee08bb",(function(e,r,a,i){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.drawCellDataBarX14=function(e,r,a,i,o,t){if("none"!==r.color){var d=a+o/2,n=r.axisColor;e.setLineDash({x1:d,y1:i,x2:d,y2:i+t},[1,1],n);var l=Math.abs(o*r.percent/2);if(0===l)return;if(r.percent<0){if(r.gradient){var c=r.negativeFillColorGradient,g=r.negativeFillColor;e.drawRectLinearGradientWithPadding(d-l,i,l,t,c,g,1)}r.border&&r.negativeBorderColor&&e.drawStrokeRectPadding(d-l,i,l,t,r.negativeBorderColor,1)}else{if(r.gradient){c=r.color,g=r.colorGradient;e.drawRectLinearGradientWithPadding(d,i,l,t,c,g,1)}r.border&&r.borderColor&&e.drawStrokeRectPadding(d,i,l,t,r.borderColor,1)}}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawDataBar.js*/
- amis.define("8e889ae",(function(r,e,i,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=r("3ee08bb");e.drawCellDataBar=function(r,e,i,a,d,n){if(e.biDirectional)return t.drawCellDataBarX14(r,e,i,a,d,n);var o=e.color;if("none"!==o){var c=d*e.percent;"rightToLeft"===e.direction&&(i=i+d-c),e.gradient?"rightToLeft"===e.direction?r.drawRectLinearGradientWithPadding(i,a,c,n,e.colorGradient,o,1):r.drawRectLinearGradientWithPadding(i,a,c,n,o,e.colorGradient,1):r.drawRectWithPadding(i,a,c,n,o,1),e.border&&e.borderColor&&r.drawStrokeRectPadding(i,a,c,n,e.borderColor,1)}}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/preset/presetIcons.js*/
- amis.define("7a552ed",(function(I,M,g,N){"use strict";Object.defineProperty(M,"__esModule",{value:!0});M.presetIcons={down:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy41IDE1TDAuNSA4SDVWMUgxMFY4SDE0LjVMNy41IDE1WiIgZmlsbD0iI0ZGOTE5OCIgLz4KCTxwYXRoIGQ9Ik0xMCA4LjVIMTMuMjkyOUw3LjUgMTQuMjkyOUwxLjcwNzExIDguNUg1SDUuNVY4VjEuNUg5LjVWOFY4LjVIMTBaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K",side:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUgOC41TDggMTUuNUw4IDExTDEgMTFMMSA2TDggNkw4IDEuNUwxNSA4LjVaIiBmaWxsPSIjRjhEQjhGIiAvPgoJPHBhdGggZD0iTTguNSA2TDguNSAyLjcwNzExTDE0LjI5MjkgOC41TDguNSAxNC4yOTI5TDguNSAxMUw4LjUgMTAuNUw4IDEwLjVMMS41IDEwLjVMMS41IDYuNUw4IDYuNUw4LjUgNi41TDguNSA2WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",up:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy41IDFMMTQuNSA4TDEwIDhWMTVMNSAxNUw1IDhMMC41IDhMNy41IDFaIiBmaWxsPSIjQTJEREFBIiAvPgoJPHBhdGggZD0iTTUgNy41TDEuNzA3MTEgNy41TDcuNSAxLjcwNzExTDEzLjI5MjkgNy41TDEwIDcuNUg5LjVWOFYxNC41TDUuNSAxNC41TDUuNSA4VjcuNUg1WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",downGray:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiPgoJCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTQgMTRMNC4xMDA1MSAxNEw3LjI4MjQ5IDEwLjgxOEwyLjMzMjc0IDUuODY4MjdMNS44NjgyNyAyLjMzMjc0TDEwLjgxOCA3LjI4MjQ5TDE0IDQuMTAwNTFMMTQgMTRaIiBmaWxsPSIjNTA1MDUwIiAvPgoJCTxwYXRoIGQ9Ik0xMS4xNzE2IDcuNjM2MDRMMTMuNSA1LjMwNzYxTDEzLjUgMTMuNUw1LjMwNzYxIDEzLjVMNy42MzYwNCAxMS4xNzE2TDcuOTg5NTkgMTAuODE4TDcuNjM2MDQgMTAuNDY0NUwzLjAzOTg0IDUuODY4MjdMNS44NjgyNyAzLjAzOTg0TDEwLjQ2NDUgNy42MzYwNEwxMC44MTggNy45ODk1OUwxMS4xNzE2IDcuNjM2MDRaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPC9nPgoJPGRlZnM+CgkJPGNsaXBQYXRoIGlkPSJjbGlwMCI+CgkJCTxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0id2hpdGUiIC8+CgkJPC9jbGlwUGF0aD4KCTwvZGVmcz4KPC9zdmc+Cg==",sideGray:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTUgOC41TDggMTUuNUw4IDExTDEgMTFMMSA2TDggNkw4IDEuNUwxNSA4LjVaIiBmaWxsPSIjNTA1MDUwIiAvPgoJPHBhdGggZD0iTTguNSA2TDguNSAyLjcwNzExTDE0LjI5MjkgOC41TDguNSAxNC4yOTI5TDguNSAxMUw4LjUgMTAuNUw4IDEwLjVMMS41IDEwLjVMMS41IDYuNUw4IDYuNUw4LjUgNi41TDguNSA2WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",upGray:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy41IDFMMTQuNSA4TDEwIDhWMTVMNSAxNUw1IDhMMC41IDhMNy41IDFaIiBmaWxsPSIjNTA1MDUwIiAvPgoJPHBhdGggZD0iTTUgNy41TDEuNzA3MTEgNy41TDcuNSAxLjcwNzExTDEzLjI5MjkgNy41TDEwIDcuNUg5LjVWOFYxNC41TDUuNSAxNC41TDUuNSA4VjcuNUg1WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",flagRed:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik01IDFMNSAxMEwxNCA1LjVMNSAxWiIgZmlsbD0iI0ZGOTE5OCIgLz4KCTxwYXRoIGQ9Ik0xMi44ODIgNS41TDUuNSA5LjE5MDk4TDUuNSAxLjgwOTAyTDEyLjg4MiA1LjVaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iMiIgeT0iMC45OTk5OTYiIHdpZHRoPSIyIiBoZWlnaHQ9IjE0IiBmaWxsPSIjNzI3MjcyIiAvPgo8L3N2Zz4K",flagYellow:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik01IDFMNSAxMEwxNCA1LjVMNSAxWiIgZmlsbD0iI0Y4REI4RiIgLz4KCTxwYXRoIGQ9Ik0xMi44ODIgNS41TDUuNSA5LjE5MDk4TDUuNSAxLjgwOTAyTDEyLjg4MiA1LjVaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iMiIgeT0iMC45OTk5OTYiIHdpZHRoPSIyIiBoZWlnaHQ9IjE0IiBmaWxsPSIjNzI3MjcyIiAvPgo8L3N2Zz4K",flagGreen:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik01IDFMNSAxMEwxNCA1LjVMNSAxWiIgZmlsbD0iI0EyRERBQSIgLz4KCTxwYXRoIGQ9Ik0xMi44ODIgNS41TDUuNSA5LjE5MDk4TDUuNSAxLjgwOTAyTDEyLjg4MiA1LjVaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iMiIgeT0iMC45OTk5OTYiIHdpZHRoPSIyIiBoZWlnaHQ9IjE0IiBmaWxsPSIjNzI3MjcyIiAvPgo8L3N2Zz4K",diamondRed:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxyZWN0IHg9IjgiIHk9IjEiIHdpZHRoPSI5Ljg5OTUiIGhlaWdodD0iOS44OTk1IiByeD0iMiIgdHJhbnNmb3JtPSJyb3RhdGUoNDUgOCAxKSIgZmlsbD0iI0ZGOTE5OCIgLz4KCTxyZWN0IHg9IjgiIHk9IjEuNzA3MTEiIHdpZHRoPSI4Ljg5OTUiIGhlaWdodD0iOC44OTk1IiByeD0iMS41IiB0cmFuc2Zvcm09InJvdGF0ZSg0NSA4IDEuNzA3MTEpIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K",triangleYellow:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xIDE1SDE1TDggMUwxIDE1WiIgZmlsbD0iI0Y4REI4RiIgLz4KCTxwYXRoIGQ9Ik04IDIuMTE4MDNMMTQuMTkxIDE0LjVIMS44MDkwMkw4IDIuMTE4MDNaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K",circleGreen:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xNSA4QzE1IDExLjg2NiAxMS44NjYgMTUgOCAxNUM0LjEzNDAxIDE1IDEgMTEuODY2IDEgOEMxIDQuMTM0MDEgNC4xMzQwMSAxIDggMUMxMS44NjYgMSAxNSA0LjEzNDAxIDE1IDhaIiBmaWxsPSIjQTJEREFBIiAvPgoJPHBhdGggZD0iTTE0LjUgOEMxNC41IDExLjU4OTkgMTEuNTg5OSAxNC41IDggMTQuNUM0LjQxMDE1IDE0LjUgMS41IDExLjU4OTkgMS41IDhDMS41IDQuNDEwMTUgNC40MTAxNSAxLjUgOCAxLjVDMTEuNTg5OSAxLjUgMTQuNSA0LjQxMDE1IDE0LjUgOFoiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cjwvc3ZnPgo=",crossRed:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xNC45OTk5IDcuOTk5OTZDMTQuOTk5OSAxMS44NjU5IDExLjg2NTkgMTQuOTk5OSA3Ljk5OTk2IDE0Ljk5OTlDNC4xMzM5OSAxNC45OTk5IDEgMTEuODY1OSAxIDcuOTk5OTZDMSA0LjEzMzk5IDQuMTMzOTkgMSA3Ljk5OTk2IDFDMTEuODY1OSAxIDE0Ljk5OTkgNC4xMzM5OSAxNC45OTk5IDcuOTk5OTZaIiBmaWxsPSIjRkY5MTk4IiAvPgoJPHBhdGggZD0iTTE0LjQ5OTkgNy45OTk5NkMxNC40OTk5IDExLjU4OTggMTEuNTg5OCAxNC40OTk5IDcuOTk5OTYgMTQuNDk5OUM0LjQxMDEzIDE0LjQ5OTkgMS41IDExLjU4OTggMS41IDcuOTk5OTZDMS41IDQuNDEwMTMgNC40MTAxMyAxLjUgNy45OTk5NiAxLjVDMTEuNTg5OCAxLjUgMTQuNDk5OSA0LjQxMDEzIDE0LjQ5OTkgNy45OTk5NloiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cgk8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTYuNTg1OCA4TDQuMjkyOTEgNS43MDcxMUw1LjcwNzEyIDQuMjkyODlMOC4wMDAwMSA2LjU4NTc5TDEwLjI5MjkgNC4yOTI4OUwxMS43MDcxIDUuNzA3MTFMOS40MTQyMyA4TDExLjcwNzEgMTAuMjkyOUwxMC4yOTI5IDExLjcwNzFMOC4wMDAwMSA5LjQxNDIxTDUuNzA3MTIgMTEuNzA3MUw0LjI5MjkxIDEwLjI5MjlMNi41ODU4IDhaIiBmaWxsPSJ3aGl0ZSIgLz4KPC9zdmc+Cg==",exclamationYellow:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xNSA4QzE1IDExLjg2NiAxMS44NjYgMTUgOCAxNUM0LjEzNDAxIDE1IDEgMTEuODY2IDEgOEMxIDQuMTM0MDEgNC4xMzQwMSAxIDggMUMxMS44NjYgMSAxNSA0LjEzNDAxIDE1IDhaIiBmaWxsPSIjRjhEQjhGIiAvPgoJPHBhdGggZD0iTTE0LjUgOEMxNC41IDExLjU4OTkgMTEuNTg5OSAxNC41IDggMTQuNUM0LjQxMDE1IDE0LjUgMS41IDExLjU4OTkgMS41IDhDMS41IDQuNDEwMTUgNC40MTAxNSAxLjUgOCAxLjVDMTEuNTg5OSAxLjUgMTQuNSA0LjQxMDE1IDE0LjUgOFoiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cgk8cGF0aCBkPSJNNy4yNzE1MiA4LjY1MzlMNy4wNTk2IDUuNDkwMDlDNy4wMTk4NyA0Ljg3MzYyIDcgNC40MzEwOSA3IDQuMTYyNDhDNyAzLjc5NzAxIDcuMDk0OTIgMy41MTI5OSA3LjI4NDc3IDMuMzEwNDRDNy40NzkwMyAzLjEwMzQ4IDcuNzMyODkgMyA4LjA0NjM2IDNDOC40MjYwNSAzIDguNjc5OTEgMy4xMzIxIDguODA3OTUgMy4zOTYzQzguOTM1OTggMy42NTYxIDkgNC4wMzI1OCA5IDQuNTI1NzZDOSA0LjgxNjM4IDguOTg0NTUgNS4xMTE0IDguOTUzNjQgNS40MTA4M0w4LjY2ODg3IDguNjY3MTFDOC42Mzc5NyA5LjA1NDYgOC41NzE3NCA5LjM1MTgzIDguNDcwMiA5LjU1ODc4QzguMzY4NjUgOS43NjU3NCA4LjIwMDg4IDkuODY5MjIgNy45NjY4OSA5Ljg2OTIyQzcuNzI4NDggOS44NjkyMiA3LjU2MjkxIDkuNzcwMTUgNy40NzAyIDkuNTcxOTlDNy4zNzc0OCA5LjM2OTQ0IDcuMzExMjYgOS4wNjM0MSA3LjI3MTUyIDguNjUzOVpNOC4wMDY2MiAxM0M3LjczNzMxIDEzIDcuNTAxMSAxMi45MTQxIDcuMjk4MDEgMTIuNzQyNEM3LjA5OTM0IDEyLjU2NjMgNyAxMi4zMjE5IDcgMTIuMDA5MkM3IDExLjczNjIgNy4wOTQ5MiAxMS41MDUxIDcuMjg0NzcgMTEuMzE1N0M3LjQ3OTAzIDExLjEyMiA3LjcxNTIzIDExLjAyNTEgNy45OTMzOCAxMS4wMjUxQzguMjcxNTIgMTEuMDI1MSA4LjUwNzczIDExLjEyMiA4LjcwMTk5IDExLjMxNTdDOC45MDA2NiAxMS41MDUxIDkgMTEuNzM2MiA5IDEyLjAwOTJDOSAxMi4zMTc1IDguOTAwNjYgMTIuNTU5NyA4LjcwMTk5IDEyLjczNThDOC41MDMzMSAxMi45MTE5IDguMjcxNTIgMTMgOC4wMDY2MiAxM1oiIGZpbGw9IndoaXRlIiAvPgo8L3N2Zz4K",checkGreen:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xNSA4QzE1IDExLjg2NiAxMS44NjYgMTUgOCAxNUM0LjEzNDAxIDE1IDEgMTEuODY2IDEgOEMxIDQuMTM0MDEgNC4xMzQwMSAxIDggMUMxMS44NjYgMSAxNSA0LjEzNDAxIDE1IDhaIiBmaWxsPSIjQTJEREFBIiAvPgoJPHBhdGggZD0iTTE0LjUgOEMxNC41IDExLjU4OTkgMTEuNTg5OSAxNC41IDggMTQuNUM0LjQxMDE1IDE0LjUgMS41IDExLjU4OTkgMS41IDhDMS41IDQuNDEwMTUgNC40MTAxNSAxLjUgOCAxLjVDMTEuNTg5OSAxLjUgMTQuNSA0LjQxMDE1IDE0LjUgOFoiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cgk8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTEyLjgwNSA1LjU5MzJMNy42MzkxNSAxMi42MDQxTDQuMjQxNjcgOC42NTE4OUw1Ljc1ODMgNy4zNDgxMUw3LjUxODcyIDkuMzk1OTRMMTEuMTk0OSA0LjQwNjhMMTIuODA1IDUuNTkzMloiIGZpbGw9IndoaXRlIiAvPgo8L3N2Zz4K",crossSymbolRed:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNi4xOTczNSA4TDIgMy44MDI2NUwzLjgwMjY1IDJMOCA2LjE5NzM1TDEyLjE5NzMgMkwxNCAzLjgwMjY1TDkuODAyNjUgOEwxNCAxMi4xOTczTDEyLjE5NzMgMTRMOCA5LjgwMjY1TDMuODAyNjUgMTRMMiAxMi4xOTczTDYuMTk3MzUgOFoiIGZpbGw9IiNGRjkxOTgiIC8+Cgk8cGF0aCBkPSJNOC4zNTM1NSA2LjU1MDlMMTIuMTk3MyAyLjcwNzExTDEzLjI5MjkgMy44MDI2NUw5LjQ0OTEgNy42NDY0NUw5LjA5NTU1IDhMOS40NDkxIDguMzUzNTVMMTMuMjkyOSAxMi4xOTczTDEyLjE5NzMgMTMuMjkyOUw4LjM1MzU1IDkuNDQ5MUw4IDkuMDk1NTVMNy42NDY0NSA5LjQ0OTFMMy44MDI2NSAxMy4yOTI5TDIuNzA3MTEgMTIuMTk3M0w2LjU1MDkgOC4zNTM1NUw2LjkwNDQ1IDhMNi41NTA5IDcuNjQ2NDVMMi43MDcxMSAzLjgwMjY1TDMuODAyNjUgMi43MDcxMUw3LjY0NjQ1IDYuNTUwOUw4IDYuOTA0NDVMOC4zNTM1NSA2LjU1MDlaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K",exclamationSymbolYellow:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik03LjQwNzI4IDguOTE1NDZMNy4wODk0IDQuNDg2MTNDNy4wMjk4IDMuNjIzMDcgNyAzLjAwMzUyIDcgMi42Mjc0OEM3IDIuMTE1ODEgNy4xNDIzOCAxLjcxODE5IDcuNDI3MTUgMS40MzQ2MUM3LjcxODU0IDEuMTQ0ODcgOC4wOTkzNCAxIDguNTY5NTQgMUM5LjEzOTA3IDEgOS41MTk4NyAxLjE4NDk0IDkuNzExOTIgMS41NTQ4MkM5LjkwMzk3IDEuOTE4NTQgMTAgMi40NDU2MiAxMCAzLjEzNjA2QzEwIDMuNTQyOTMgOS45NzY4MiAzLjk1NTk3IDkuOTMwNDYgNC4zNzUxNkw5LjUwMzMxIDguOTMzOTVDOS40NTY5NSA5LjQ3NjQ0IDkuMzU3NjIgOS44OTI1NiA5LjIwNTMgMTAuMTgyM0M5LjA1Mjk4IDEwLjQ3MiA4LjgwMTMyIDEwLjYxNjkgOC40NTAzMyAxMC42MTY5QzguMDkyNzIgMTAuNjE2OSA3Ljg0NDM3IDEwLjQ3ODIgNy43MDUzIDEwLjIwMDhDNy41NjYyMyA5LjkxNzIyIDcuNDY2ODkgOS40ODg3NyA3LjQwNzI4IDguOTE1NDZaTTguNTA5OTMgMTVDOC4xMDU5NiAxNSA3Ljc1MTY2IDE0Ljg3OTggNy40NDcwMiAxNC42Mzk0QzcuMTQ5MDEgMTQuMzkyOCA3IDE0LjA1MDYgNyAxMy42MTI5QzcgMTMuMjMwNyA3LjE0MjM4IDEyLjkwNzEgNy40MjcxNSAxMi42NDJDNy43MTg1NCAxMi4zNzA4IDguMDcyODUgMTIuMjM1MSA4LjQ5MDA3IDEyLjIzNTFDOC45MDcyOCAxMi4yMzUxIDkuMjYxNTkgMTIuMzcwOCA5LjU1Mjk4IDEyLjY0MkM5Ljg1MDk5IDEyLjkwNzEgMTAgMTMuMjMwNyAxMCAxMy42MTI5QzEwIDE0LjA0NDUgOS44NTA5OSAxNC4zODM1IDkuNTUyOTggMTQuNjMwMUM5LjI1NDk3IDE0Ljg3NjcgOC45MDcyOCAxNSA4LjUwOTkzIDE1WiIgZmlsbD0iI0Y4REI4RiIgLz4KCTxwYXRoIGQ9Ik05LjI2ODE3IDEuNzg1MjNMOS4yNjgxNiAxLjc4NTIzTDkuMjY5NzcgMS43ODgyOUM5LjQwNjI4IDIuMDQ2ODEgOS41IDIuNDc4NTEgOS41IDMuMTM2MDZDOS41IDMuNTIzOTIgOS40Nzc5MSAzLjkxODYgOS40MzM0OSA0LjMyMDIxTDkuNDMzNDIgNC4zMjAyTDkuNDMyNjQgNC4zMjg1Mkw5LjAwNTQ5IDguODg3M0w5LjAwNTQ4IDguODg3M0w5LjAwNTEzIDguODkxMzhDOC45NjExNyA5LjQwNTczIDguODcwMDkgOS43NDU0MSA4Ljc2MjczIDkuOTQ5NjRDOC43MjQ4NyAxMC4wMjE3IDguNjg2NDkgMTAuMDU1NiA4LjY1Mjg3IDEwLjA3NDlDOC42MTczMSAxMC4wOTU0IDguNTU2NTIgMTAuMTE2OSA4LjQ1MDMzIDEwLjExNjlDOC4zMzUyOSAxMC4xMTY5IDguMjcyNTEgMTAuMDk0NyA4LjIzOTY3IDEwLjA3NjRDOC4yMTEyNCAxMC4wNjA1IDguMTgxNzggMTAuMDM0OSA4LjE1MzE2IDkuOTc4NDdDOC4wNTQxMSA5Ljc3NTMxIDcuOTYyOTUgOS40MiA3LjkwNTQyIDguODcxNThMNy41ODgyMiA0LjQ1MTY4QzcuNTg4MiA0LjQ1MTQ1IDcuNTg4MTggNC40NTEyMyA3LjU4ODE3IDQuNDUxQzcuNTI4NjQgMy41ODg5NSA3LjUgMi45ODQ2NiA3LjUgMi42Mjc0OEM3LjUgMi4yMTA3MiA3LjYxMzM0IDEuOTU0OSA3Ljc3OTg0IDEuNzg5MDNDNy45NjM4MiAxLjYwNjE2IDguMjEwODcgMS41IDguNTY5NTQgMS41QzkuMDMxMTYgMS41IDkuMTkzMiAxLjY0MDg0IDkuMjY4MTcgMS43ODUyM1pNOS4yMTIzIDEzLjAwOEw5LjIxMjIyIDEzLjAwODFMOS4yMjA2NyAxMy4wMTU2QzkuNDE3MjkgMTMuMTkwNSA5LjUgMTMuMzgwNCA5LjUgMTMuNjEyOUM5LjUgMTMuOTE0OSA5LjQwMzI1IDE0LjEwNSA5LjIzNDIzIDE0LjI0NDlDOS4wMjg1IDE0LjQxNTEgOC43OTQzNyAxNC41IDguNTA5OTMgMTQuNUM4LjIxNTU5IDE0LjUgNy45NzI5NyAxNC40MTU5IDcuNzYxNDkgMTQuMjUwNkM3LjU5Njg0IDE0LjExMjUgNy41IDEzLjkyMSA3LjUgMTMuNjEyOUM3LjUgMTMuMzcyNCA3LjU4MjYxIDEzLjE4MDQgNy43Njc4MyAxMy4wMDhDNy45NjE5MSAxMi44MjczIDguMTkyNTggMTIuNzM1MSA4LjQ5MDA3IDEyLjczNTFDOC43ODc1NSAxMi43MzUxIDkuMDE4MjMgMTIuODI3MyA5LjIxMjMgMTMuMDA4WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",checkSymbolGreen:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTQgNC4yOTU3OEw2LjY4MjAzIDE0TDIgOC42NzgyMUwzLjYzNDE3IDcuMjU2MDhMNi41NTIxOCAxMC41NzI4TDEyLjI2MjggM0wxNCA0LjI5NTc4WiIgZmlsbD0iI0EyRERBQSIgLz4KCTxwYXRoIGQ9Ik02Ljk1MTM5IDEwLjg3MzlMMTIuMzYyNiAzLjY5ODE4TDEzLjI5ODIgNC4zOTYwNEw2LjY1MjIgMTMuMjA5MUwyLjcwNzQ2IDguNzI1MzdMMy41ODcyNyA3Ljk1OTczTDYuMTc2NzggMTAuOTAzMUw2LjU4MjAyIDExLjM2MzdMNi45NTEzOSAxMC44NzM5WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",circleRed:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xNSA4QzE1IDExLjg2NiAxMS44NjYgMTUgOCAxNUM0LjEzNDAxIDE1IDEgMTEuODY2IDEgOEMxIDQuMTM0MDEgNC4xMzQwMSAxIDggMUMxMS44NjYgMSAxNSA0LjEzNDAxIDE1IDhaIiBmaWxsPSIjRkY5MTk4IiAvPgoJPHBhdGggZD0iTTE0LjUgOEMxNC41IDExLjU4OTkgMTEuNTg5OSAxNC41IDggMTQuNUM0LjQxMDE1IDE0LjUgMS41IDExLjU4OTkgMS41IDhDMS41IDQuNDEwMTUgNC40MTAxNSAxLjUgOCAxLjVDMTEuNTg5OSAxLjUgMTQuNSA0LjQxMDE1IDE0LjUgOFoiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cjwvc3ZnPgo=",circleYellow:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xNSA4QzE1IDExLjg2NiAxMS44NjYgMTUgOCAxNUM0LjEzNDAxIDE1IDEgMTEuODY2IDEgOEMxIDQuMTM0MDEgNC4xMzQwMSAxIDggMUMxMS44NjYgMSAxNSA0LjEzNDAxIDE1IDhaIiBmaWxsPSIjRjhEQjhGIiAvPgoJPHBhdGggZD0iTTE0LjUgOEMxNC41IDExLjU4OTkgMTEuNTg5OSAxNC41IDggMTQuNUM0LjQxMDE1IDE0LjUgMS41IDExLjU4OTkgMS41IDhDMS41IDQuNDEwMTUgNC40MTAxNSAxLjUgOCAxLjVDMTEuNTg5OSAxLjUgMTQuNSA0LjQxMDE1IDE0LjUgOFoiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cjwvc3ZnPgo=",trafficLightRed:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xIDNDMSAxLjg5NTQzIDEuODk1NDMgMSAzIDFIMTNDMTQuMTA0NiAxIDE1IDEuODk1NDMgMTUgM1YxM0MxNSAxNC4xMDQ2IDE0LjEwNDYgMTUgMTMgMTVIM0MxLjg5NTQzIDE1IDEgMTQuMTA0NiAxIDEzVjNaIiBmaWxsPSIjNTA1MDUwIiAvPgoJPHBhdGggZD0iTTMgMS41SDEzQzEzLjgyODQgMS41IDE0LjUgMi4xNzE1NyAxNC41IDNWMTNDMTQuNSAxMy44Mjg0IDEzLjgyODQgMTQuNSAxMyAxNC41SDNDMi4xNzE1NyAxNC41IDEuNSAxMy44Mjg0IDEuNSAxM1YzQzEuNSAyLjE3MTU3IDIuMTcxNTcgMS41IDMgMS41WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KCTxwYXRoIGQ9Ik0xNCA4QzE0IDQuNjg2MjkgMTEuMzEzNyAyIDggMkM0LjY4NjI5IDIgMiA0LjY4NjI5IDIgOEMyIDExLjMxMzcgNC42ODYyOSAxNCA4IDE0QzExLjMxMzcgMTQgMTQgMTEuMzEzNyAxNCA4WiIgZmlsbD0id2hpdGUiIC8+Cgk8cGF0aCBkPSJNMTMgOEMxMyA1LjIzODU4IDEwLjc2MTQgMyA4IDNDNS4yMzg1OCAzIDMgNS4yMzg1OCAzIDhDMyAxMC43NjE0IDUuMjM4NTggMTMgOCAxM0MxMC43NjE0IDEzIDEzIDEwLjc2MTQgMTMgOFoiIGZpbGw9IiNGRjkxOTgiIC8+Cjwvc3ZnPgo=",trafficLightYellow:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xIDNDMSAxLjg5NTQzIDEuODk1NDMgMSAzIDFIMTNDMTQuMTA0NiAxIDE1IDEuODk1NDMgMTUgM1YxM0MxNSAxNC4xMDQ2IDE0LjEwNDYgMTUgMTMgMTVIM0MxLjg5NTQzIDE1IDEgMTQuMTA0NiAxIDEzVjNaIiBmaWxsPSIjNTA1MDUwIiAvPgoJPHBhdGggZD0iTTMgMS41SDEzQzEzLjgyODQgMS41IDE0LjUgMi4xNzE1NyAxNC41IDNWMTNDMTQuNSAxMy44Mjg0IDEzLjgyODQgMTQuNSAxMyAxNC41SDNDMi4xNzE1NyAxNC41IDEuNSAxMy44Mjg0IDEuNSAxM1YzQzEuNSAyLjE3MTU3IDIuMTcxNTcgMS41IDMgMS41WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KCTxwYXRoIGQ9Ik0xNCA4QzE0IDQuNjg2MjkgMTEuMzEzNyAyIDggMkM0LjY4NjI5IDIgMiA0LjY4NjI5IDIgOEMyIDExLjMxMzcgNC42ODYyOSAxNCA4IDE0QzExLjMxMzcgMTQgMTQgMTEuMzEzNyAxNCA4WiIgZmlsbD0id2hpdGUiIC8+Cgk8cGF0aCBkPSJNMTMgOEMxMyA1LjIzODU4IDEwLjc2MTQgMyA4IDNDNS4yMzg1OCAzIDMgNS4yMzg1OCAzIDhDMyAxMC43NjE0IDUuMjM4NTggMTMgOCAxM0MxMC43NjE0IDEzIDEzIDEwLjc2MTQgMTMgOFoiIGZpbGw9IiNGOERCOEYiIC8+Cjwvc3ZnPgo=",trafficLightGreen:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGQ9Ik0xIDNDMSAxLjg5NTQzIDEuODk1NDMgMSAzIDFIMTNDMTQuMTA0NiAxIDE1IDEuODk1NDMgMTUgM1YxM0MxNSAxNC4xMDQ2IDE0LjEwNDYgMTUgMTMgMTVIM0MxLjg5NTQzIDE1IDEgMTQuMTA0NiAxIDEzVjNaIiBmaWxsPSIjNTA1MDUwIiAvPgoJPHBhdGggZD0iTTMgMS41SDEzQzEzLjgyODQgMS41IDE0LjUgMi4xNzE1NyAxNC41IDNWMTNDMTQuNSAxMy44Mjg0IDEzLjgyODQgMTQuNSAxMyAxNC41SDNDMi4xNzE1NyAxNC41IDEuNSAxMy44Mjg0IDEuNSAxM1YzQzEuNSAyLjE3MTU3IDIuMTcxNTcgMS41IDMgMS41WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KCTxwYXRoIGQ9Ik0xNCA4QzE0IDQuNjg2MjkgMTEuMzEzNyAyIDggMkM0LjY4NjI5IDIgMiA0LjY4NjI5IDIgOEMyIDExLjMxMzcgNC42ODYyOSAxNCA4IDE0QzExLjMxMzcgMTQgMTQgMTEuMzEzNyAxNCA4WiIgZmlsbD0id2hpdGUiIC8+Cgk8cGF0aCBkPSJNMTMgOEMxMyA1LjIzODU4IDEwLjc2MTQgMyA4IDNDNS4yMzg1OCAzIDMgNS4yMzg1OCAzIDhDMyAxMC43NjE0IDUuMjM4NTggMTMgOCAxM0MxMC43NjE0IDEzIDEzIDEwLjc2MTQgMTMgOFoiIGZpbGw9IiNBMkREQUEiIC8+Cjwvc3ZnPgo=",downIncline:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMgMTVMMy4xMDA1MyAxNUw2LjI4MjUxIDExLjgxOEwxLjMzMjc2IDYuODY4MjdMNC44NjgzIDMuMzMyNzNMOS44MTgwNSA4LjI4MjQ4TDEzIDUuMTAwNUwxMyAxNVoiIGZpbGw9IiNGOERCOEYiIC8+Cgk8cGF0aCBkPSJNNi42MzYwNyAxMS40NjQ1TDIuMDM5ODcgNi44NjgyN0w0Ljg2ODMgNC4wMzk4NEw5LjQ2NDQ5IDguNjM2MDNMOS44MTgwNSA4Ljk4OTU5TDEwLjE3MTYgOC42MzYwM0wxMi41IDYuMzA3NjFMMTIuNSAxNC41TDQuMzA3NjQgMTQuNUw2LjYzNjA3IDEyLjE3MTZMNi45ODk2MiAxMS44MThMNi42MzYwNyAxMS40NjQ1WiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",upIncline:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTMgM0wzLjEwMDUgM0w2LjI4MjQ4IDYuMTgxOThMMS4zMzI3MyAxMS4xMzE3TDQuODY4MjcgMTQuNjY3M0w5LjgxODAxIDkuNzE3NTFMMTMgMTIuODk5NVYzWiIgZmlsbD0iI0Y4REI4RiIgLz4KCTxwYXRoIGQ9Ik02LjYzNjAzIDUuODI4NDNMNC4zMDc2MSAzLjVMMTIuNSAzLjVWMTEuNjkyNEwxMC4xNzE2IDkuMzYzOTZMOS44MTgwMSA5LjAxMDQxTDkuNDY0NDYgOS4zNjM5Nkw0Ljg2ODI3IDEzLjk2MDJMMi4wMzk4NCAxMS4xMzE3TDYuNjM2MDMgNi41MzU1M0w2Ljk4OTU5IDYuMTgxOThMNi42MzYwMyA1LjgyODQzWiIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",downInclineGray:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiPgoJCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTQgMTRMNC4xMDA1MSAxNEw3LjI4MjQ5IDEwLjgxOEwyLjMzMjc0IDUuODY4MjdMNS44NjgyNyAyLjMzMjc0TDEwLjgxOCA3LjI4MjQ5TDE0IDQuMTAwNTFMMTQgMTRaIiBmaWxsPSIjNTA1MDUwIiAvPgoJCTxwYXRoIGQ9Ik0xMS4xNzE2IDcuNjM2MDRMMTMuNSA1LjMwNzYxTDEzLjUgMTMuNUw1LjMwNzYxIDEzLjVMNy42MzYwNCAxMS4xNzE2TDcuOTg5NTkgMTAuODE4TDcuNjM2MDQgMTAuNDY0NUwzLjAzOTg0IDUuODY4MjdMNS44NjgyNyAzLjAzOTg0TDEwLjQ2NDUgNy42MzYwNEwxMC44MTggNy45ODk1OUwxMS4xNzE2IDcuNjM2MDRaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPC9nPgoJPGRlZnM+CgkJPGNsaXBQYXRoIGlkPSJjbGlwMCI+CgkJCTxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0id2hpdGUiIC8+CgkJPC9jbGlwUGF0aD4KCTwvZGVmcz4KPC9zdmc+Cg==",upInclineGray:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiPgoJCTxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTQgMkw0LjEwMDUxIDJMNy4yODI0OSA1LjE4MTk4TDIuMzMyNzQgMTAuMTMxN0w1Ljg2ODI3IDEzLjY2NzNMMTAuODE4IDguNzE3NTFMMTQgMTEuODk5NUwxNCAyWiIgZmlsbD0iIzUwNTA1MCIgLz4KCQk8cGF0aCBkPSJNMTEuMTcxNiA4LjM2Mzk2TDEzLjUgMTAuNjkyNEwxMy41IDIuNUw1LjMwNzYxIDIuNUw3LjYzNjA0IDQuODI4NDNMNy45ODk1OSA1LjE4MTk4TDcuNjM2MDQgNS41MzU1M0wzLjAzOTg1IDEwLjEzMTdMNS44NjgyNyAxMi45NjAyTDEwLjQ2NDUgOC4zNjM5NkwxMC44MTggOC4wMTA0MUwxMS4xNzE2IDguMzYzOTZaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPC9nPgoJPGRlZnM+CgkJPGNsaXBQYXRoIGlkPSJjbGlwMCI+CgkJCTxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0id2hpdGUiIC8+CgkJPC9jbGlwUGF0aD4KCTwvZGVmcz4KPC9zdmc+Cg==",oneFilledBars:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxyZWN0IHg9IjEiIHk9IjEwIiB3aWR0aD0iMyIgaGVpZ2h0PSI1IiBmaWxsPSIjODRCREVDIiAvPgoJPHJlY3QgeD0iMS41IiB5PSIxMC41IiB3aWR0aD0iMiIgaGVpZ2h0PSI0IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iNSIgeT0iNyIgd2lkdGg9IjMiIGhlaWdodD0iOCIgZmlsbD0iI0NDQ0NDQyIgLz4KCTxyZWN0IHg9IjUuNSIgeT0iNy41IiB3aWR0aD0iMiIgaGVpZ2h0PSI3IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iOSIgeT0iNCIgd2lkdGg9IjMiIGhlaWdodD0iMTEiIGZpbGw9IiNDQ0NDQ0MiIC8+Cgk8cmVjdCB4PSI5LjUiIHk9IjQuNSIgd2lkdGg9IjIiIGhlaWdodD0iMTAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cgk8cmVjdCB4PSIxMyIgeT0iMSIgd2lkdGg9IjMiIGhlaWdodD0iMTQiIGZpbGw9IiNDQ0NDQ0MiIC8+Cgk8cmVjdCB4PSIxMy41IiB5PSIxLjUiIHdpZHRoPSIyIiBoZWlnaHQ9IjEzIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K",twoFilledBars:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxyZWN0IHg9IjEiIHk9IjEwIiB3aWR0aD0iMyIgaGVpZ2h0PSI1IiBmaWxsPSIjODRCREVDIiAvPgoJPHJlY3QgeD0iMS41IiB5PSIxMC41IiB3aWR0aD0iMiIgaGVpZ2h0PSI0IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iNSIgeT0iNyIgd2lkdGg9IjMiIGhlaWdodD0iOCIgZmlsbD0iIzg0QkRFQyIgLz4KCTxyZWN0IHg9IjUuNSIgeT0iNy41IiB3aWR0aD0iMiIgaGVpZ2h0PSI3IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iOSIgeT0iNCIgd2lkdGg9IjMiIGhlaWdodD0iMTEiIGZpbGw9IiNDQ0NDQ0MiIC8+Cgk8cmVjdCB4PSI5LjUiIHk9IjQuNSIgd2lkdGg9IjIiIGhlaWdodD0iMTAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cgk8cmVjdCB4PSIxMyIgeT0iMSIgd2lkdGg9IjMiIGhlaWdodD0iMTQiIGZpbGw9IiNDQ0NDQ0MiIC8+Cgk8cmVjdCB4PSIxMy41IiB5PSIxLjUiIHdpZHRoPSIyIiBoZWlnaHQ9IjEzIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K",threeFilledBars:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxyZWN0IHg9IjEiIHk9IjEwIiB3aWR0aD0iMyIgaGVpZ2h0PSI1IiBmaWxsPSIjODRCREVDIiAvPgoJPHJlY3QgeD0iMS41IiB5PSIxMC41IiB3aWR0aD0iMiIgaGVpZ2h0PSI0IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iNSIgeT0iNyIgd2lkdGg9IjMiIGhlaWdodD0iOCIgZmlsbD0iIzg0QkRFQyIgLz4KCTxyZWN0IHg9IjUuNSIgeT0iNy41IiB3aWR0aD0iMiIgaGVpZ2h0PSI3IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iOSIgeT0iNCIgd2lkdGg9IjMiIGhlaWdodD0iMTEiIGZpbGw9IiM4NEJERUMiIC8+Cgk8cmVjdCB4PSI5LjUiIHk9IjQuNSIgd2lkdGg9IjIiIGhlaWdodD0iMTAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cgk8cmVjdCB4PSIxMyIgeT0iMSIgd2lkdGg9IjMiIGhlaWdodD0iMTQiIGZpbGw9IiNDQ0NDQ0MiIC8+Cgk8cmVjdCB4PSIxMy41IiB5PSIxLjUiIHdpZHRoPSIyIiBoZWlnaHQ9IjEzIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K",fourFilledBars:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxyZWN0IHg9IjEiIHk9IjEwIiB3aWR0aD0iMyIgaGVpZ2h0PSI1IiBmaWxsPSIjODRCREVDIiAvPgoJPHJlY3QgeD0iMS41IiB5PSIxMC41IiB3aWR0aD0iMiIgaGVpZ2h0PSI0IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iNSIgeT0iNyIgd2lkdGg9IjMiIGhlaWdodD0iOCIgZmlsbD0iIzg0QkRFQyIgLz4KCTxyZWN0IHg9IjUuNSIgeT0iNy41IiB3aWR0aD0iMiIgaGVpZ2h0PSI3IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iOSIgeT0iNCIgd2lkdGg9IjMiIGhlaWdodD0iMTEiIGZpbGw9IiM4NEJERUMiIC8+Cgk8cmVjdCB4PSI5LjUiIHk9IjQuNSIgd2lkdGg9IjIiIGhlaWdodD0iMTAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cgk8cmVjdCB4PSIxMyIgeT0iMSIgd2lkdGg9IjMiIGhlaWdodD0iMTQiIGZpbGw9IiM4NEJERUMiIC8+Cgk8cmVjdCB4PSIxMy41IiB5PSIxLjUiIHdpZHRoPSIyIiBoZWlnaHQ9IjEzIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K",circleBlack:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSI3IiBmaWxsPSIjNTA1MDUwIiAvPgoJPGNpcmNsZSBjeD0iOCIgY3k9IjgiIHI9IjYuNSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",circleGray:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSI3IiBmaWxsPSIjOUI5QjlCIiAvPgoJPGNpcmNsZSBjeD0iOCIgY3k9IjgiIHI9IjYuNSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuMiIgLz4KPC9zdmc+Cg==",circleLightRed:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxlbGxpcHNlIGN4PSI4IiBjeT0iOCIgcng9IjciIHJ5PSI3IiB0cmFuc2Zvcm09InJvdGF0ZSgtMTgwIDggOCkiIGZpbGw9IiNGRjgwODAiIC8+Cgk8cGF0aCBkPSJNMS41IDhDMS41IDQuNDEwMTUgNC40MTAxNSAxLjUgOCAxLjVDMTEuNTg5OSAxLjUgMTQuNSA0LjQxMDE1IDE0LjUgOEMxNC41IDExLjU4OTkgMTEuNTg5OSAxNC41IDggMTQuNUM0LjQxMDE1IDE0LjUgMS41IDExLjU4OTggMS41IDhaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K",circleWhite:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSI3IiBmaWxsPSIjNTA1MDUwIiAvPgoJPGNpcmNsZSBjeD0iOCIgY3k9IjgiIHI9IjYiIHRyYW5zZm9ybT0icm90YXRlKC05MCA4IDgpIiBmaWxsPSJ3aGl0ZSIgLz4KPC9zdmc+Cg==",circleThreeWhiteQuarters:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSI3IiBmaWxsPSIjNTA1MDUwIiAvPgoJPHBhdGggZD0iTTggMkM2LjgxMzMxIDIgNS42NTMyOCAyLjM1MTg5IDQuNjY2NTggMy4wMTExOEMzLjY3OTg5IDMuNjcwNDcgMi45MTA4NSA0LjYwNzU0IDIuNDU2NzMgNS43MDM5QzIuMDAyNiA2LjgwMDI1IDEuODgzNzggOC4wMDY2NSAyLjExNTI5IDkuMTcwNTRDMi4zNDY4IDEwLjMzNDQgMi45MTgyNSAxMS40MDM1IDMuNzU3MzYgMTIuMjQyNkM0LjU5NjQ4IDEzLjA4MTggNS42NjU1OCAxMy42NTMyIDYuODI5NDYgMTMuODg0N0M3Ljk5MzM1IDE0LjExNjIgOS4xOTk3NSAxMy45OTc0IDEwLjI5NjEgMTMuNTQzM0MxMS4zOTI1IDEzLjA4OTEgMTIuMzI5NSAxMi4zMjAxIDEyLjk4ODggMTEuMzMzNEMxMy42NDgxIDEwLjM0NjcgMTQgOS4xODY2OCAxNCA4TDggOEw4IDJaIiBmaWxsPSJ3aGl0ZSIgLz4KPC9zdmc+Cg==",circleTwoWhiteQuarters:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSI3IiBmaWxsPSIjNTA1MDUwIiAvPgoJPHBhdGggZD0iTTggMkM2LjQwODcgMiA0Ljg4MjU4IDIuNjMyMTQgMy43NTczNiAzLjc1NzM2QzIuNjMyMTQgNC44ODI1OCAyIDYuNDA4NyAyIDhDMiA5LjU5MTMgMi42MzIxNCAxMS4xMTc0IDMuNzU3MzYgMTIuMjQyNkM0Ljg4MjU4IDEzLjM2NzkgNi40MDg3IDE0IDggMTRMOCA4TDggMloiIGZpbGw9IndoaXRlIiAvPgo8L3N2Zz4K",circleOneWhiteQuarter:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSI3IiBmaWxsPSIjNTA1MDUwIiAvPgoJPHBhdGggZD0iTTggMkM3LjIxMjA3IDIgNi40MzE4NSAyLjE1NTE5IDUuNzAzOSAyLjQ1NjcyQzQuOTc1OTUgMi43NTgyNSA0LjMxNDUxIDMuMjAwMjEgMy43NTczNiAzLjc1NzM2QzMuMjAwMjEgNC4zMTQ1MSAyLjc1ODI1IDQuOTc1OTUgMi40NTY3MiA1LjcwMzlDMi4xNTUxOSA2LjQzMTg1IDIgNy4yMTIwNyAyIDhMOCA4TDggMloiIGZpbGw9IndoaXRlIiAvPgo8L3N2Zz4K",zeroFilledBars:"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxyZWN0IHg9IjEiIHk9IjEwIiB3aWR0aD0iMyIgaGVpZ2h0PSI1IiBmaWxsPSIjQ0NDQ0NDIiAvPgoJPHJlY3QgeD0iMS41IiB5PSIxMC41IiB3aWR0aD0iMiIgaGVpZ2h0PSI0IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iNSIgeT0iNyIgd2lkdGg9IjMiIGhlaWdodD0iOCIgZmlsbD0iI0NDQ0NDQyIgLz4KCTxyZWN0IHg9IjUuNSIgeT0iNy41IiB3aWR0aD0iMiIgaGVpZ2h0PSI3IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgoJPHJlY3QgeD0iOSIgeT0iNCIgd2lkdGg9IjMiIGhlaWdodD0iMTEiIGZpbGw9IiNDQ0NDQ0MiIC8+Cgk8cmVjdCB4PSI5LjUiIHk9IjQuNSIgd2lkdGg9IjIiIGhlaWdodD0iMTAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjIiIC8+Cgk8cmVjdCB4PSIxMyIgeT0iMSIgd2lkdGg9IjMiIGhlaWdodD0iMTQiIGZpbGw9IiNDQ0NDQ0MiIC8+Cgk8cmVjdCB4PSIxMy41IiB5PSIxLjUiIHdpZHRoPSIyIiBoZWlnaHQ9IjEzIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC4yIiAvPgo8L3N2Zz4K"}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawIconSet.js*/
- amis.define("12aeeb7",(function(e,a,n,r){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var t=e("7a552ed");a.drawIconSet=function(e,a,n,r,c,o){var i=t.presetIcons[a];i?e.drawImageWithCache(i,n+1,r+1,o-2,o-2):console.warn("未知的图标",a)}}));
- ;/*!node_modules/office-viewer/lib/util/stringToArray.js*/
- amis.define("660a052",(function(c,u,n,f){"use strict";Object.defineProperty(u,"__esModule",{value:!0});var t="\\ud800-\\udfff",o="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\u1ab0-\\u1aff\\u1dc0-\\u1dff",a="\\ufe0e\\ufe0f",e="\\u200d",d=RegExp("[".concat(e+t+o+a,"]"));var r="[".concat(t,"]"),i="[".concat(o,"]"),s="\\ud83c[\\udffb-\\udfff]",b="(?:".concat(i,"|").concat(s,")"),g="[^".concat(t,"]"),p="(?:\\ud83c[\\udde6-\\uddff]){2}",j="[\\ud800-\\udbff][\\udc00-\\udfff]",l="".concat(b,"?"),v="[".concat(a,"]?"),m=v+l+"(?:".concat(e,"(?:").concat([g,p,j].join("|"),")").concat(v+l,")*"),x="".concat(g).concat(i,"?"),y="(?:".concat([x,i,p,j,r].join("|"),")"),E=RegExp("".concat(s,"(?=").concat(s,")|").concat(y+m),"g");u.stringToArray=function(c){return function(c){return d.test(c)}(c)?function(c){return c.match(E)||[]}(c):function(c){return c.split("")}(c)}}));
- ;/*!node_modules/office-viewer/lib/util/isFontAvailable.js*/
- amis.define("737cc51",(function(e,n,t,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var r=Array(15).join("abcdefghijklmnopqrstuvwxyz0123456789中"),o=function(){if(!document)return function(){return!0};var e=document.body,n=document.createElement("span");n.innerHTML=r,n.style.cssText=["position:absolute","width:auto","font-size:128px","left:-99999px"].join(" !important;");var t=function(t){n.style.fontFamily=t,e.appendChild(n);var i=n.clientWidth;return e.removeChild(n),i},i=t("monospace"),o=t("serif"),s=t("sans-serif");return function(e){return i!==t(e+",monospace")||s!==t(e+",sans-serif")||o!==t(e+",serif")}}();n.isFontAvailable=o}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/checkFont.js*/
- amis.define("1ea8373",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),i=e("737cc51"),u=new Map;r.checkFont=function(e){if(u.has(e))return u.get(e);var r=i.isFontAvailable(e);return u.set(e,r),r},r.getAllNotAvailableFont=function(){return Array.from(u.entries()).filter((function(e){var r=a.__read(e,2);return r[0],!1===r[1]})).map((function(e){return a.__read(e,1)[0]}))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/genFontStr.js*/
- amis.define("69209dc",(function(n,t,e,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=n("68b98b9"),o=n("1ea8373");function a(n){var t="",e=n.family;return o.checkFont(e),n.b&&(t+="bold "),n.i&&(t+="italic "),n.size&&(t+="".concat(1.333*n.size,"px ")),t+=e}function c(n){var t={};return n.b&&(t.b=!0),n.i&&(t.i=!0),n.sz&&(t.size=n.sz),n.rFont&&(t.family=n.rFont),t}function s(n,t){var e=c(n);return i.__assign(i.__assign({},t),e)}t.genFontStr=a,t.genFontStrFromRPr=function(n,t){return a(s(n,t))},t.mergeRPrWithDefaultFont=s,t.rPrToFontStyle=c}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/measureTextWithCache.js*/
- amis.define("ee2e51f",(function(e,t,n,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=new Map;t.inValidTextSizeCache=function(){i.clear()},t.measureTextWithCache=function(e,t,n){var a="".concat(t,"---").concat(n);if(i.has(a))return i.get(a);e.font=t;var o=e.measureText(n),u={width:o.width,boundingWidth:Math.abs(o.actualBoundingBoxRight)+Math.abs(o.actualBoundingBoxLeft),height:o.actualBoundingBoxAscent+o.actualBoundingBoxDescent,fontHeight:o.fontBoundingBoxAscent+o.fontBoundingBoxDescent};return i.set(a,u),u}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/tokenizer.js*/
- amis.define("4ef806d",(function(t,e,r,u){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=t("68b98b9"),s=t("660a052"),a=/['a-zA-Z0-9\u00C0-\u00D6\u00D8-\u00f6\u00f8-\u00ff]/,f=/[\u002D\u2010\u2010\u2014]/,p=/\s/,i=/\n/;e.tokenizer=function(t){var e,r;if(!t)return[];var u=s.stringToArray(t.replace(/\r\n?/g,"\n")),o=[],y="";function l(){y&&(o.push({type:"w",t:y}),y="")}try{for(var c=n.__values(u),h=c.next();!h.done;h=c.next()){var v=h.value;a.test(v)?y+=v:i.test(v)?(y&&l(),o.push({type:"br",t:v})):p.test(v)?(y&&l(),o.push({type:"s",t:v})):f.test(v)?(y&&l(),o.push({type:"h",t:v})):(y&&l(),o.push({type:"w",t:v}))}}catch(t){e={error:t}}finally{try{h&&!h.done&&(r=c.return)&&r.call(c)}finally{if(e)throw e.error}}return y&&o.push({type:"w",t:y}),o}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/autoWrapText.js*/
- amis.define("f8929de",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),i=e("660a052"),o=e("69209dc"),s=e("ee2e51f"),l=e("4ef806d");r.autoWrapText=function(e,r,t,n){var f,h,u,c,v,y;e.save();var d=[],_=[];if("string"==typeof r)d=l.tokenizer(r);else{var g=function(e){var r=l.tokenizer(e.t);r.forEach((function(r){r.rPr=e.rPr})),d=d.concat(r)};try{for(var x=a.__values(r),p=x.next();!p.done;p=x.next()){g(p.value)}}catch(e){f={error:e}}finally{try{p&&!p.done&&(h=x.return)&&h.call(x)}finally{if(f)throw f.error}}}d.length>1e3&&(d=d.slice(0,1e3));var w=o.genFontStr(n),m=0,P=s.measureTextWithCache(e,w,"1").fontHeight,b=P,k=[];function T(e){_.push({tokens:k,maxHeight:b}),k=e?[e]:[],m=0,b=P}try{for(var H=a.__values(d),W=H.next();!W.done;W=H.next()){var C=W.value,F=w;if("br"!==C.type){C.rPr&&Object.keys(C.rPr).length>0&&(F=o.genFontStrFromRPr(C.rPr,n));var j=s.measureTextWithCache(e,F,C.t),z=j.width,O=j.fontHeight;if(C.w=z,O>b&&(b=O),z>t){var S="",A=0;try{for(var E=(v=void 0,a.__values(i.stringToArray(C.t))),M=E.next();!M.done;M=E.next()){var R=M.value,q=s.measureTextWithCache(e,F,R).width;if(m+q>t){var B=a.__assign(a.__assign({},C),{w:A,t:S});k.push(B),T(),S=R,m=q,A=q,b=b}else m+=q,A+=q,S+=R}}catch(e){v={error:e}}finally{try{M&&!M.done&&(y=E.return)&&y.call(E)}finally{if(v)throw v.error}}if(S){B=a.__assign(a.__assign({},C),{w:A,t:S});k.push(B)}}else m+z>t?T(C):(m+=j.width,k.push(C))}else T()}}catch(e){u={error:e}}finally{try{W&&!W.done&&(c=H.return)&&c.call(H)}finally{if(u)throw u.error}}return k.length&&_.push({tokens:k,maxHeight:b}),e.restore(),_}}));
- ;/*!node_modules/office-viewer/lib/util/isValidURL.js*/
- amis.define("da20a07",(function(t,e,r,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isValidURL=function(t){if(!t)return!1;var e;try{e=new URL(t)}catch(t){return!1}return"http:"===e.protocol||"https:"===e.protocol}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawMultiLineText.js*/
- amis.define("2d5fcbc",(function(r,e,t,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=r("68b98b9"),l=r("da20a07"),n=r("69209dc");e.drawMultiLineText=function(r,e,t,o,i,f,c,u,h,d,v,s,y,g,x,w){var b,P,m,p;void 0===w&&(w=[]),t.textBaseline="alphabetic";var _=o.getDefaultFontSize().height,S=[],F=f.reduce((function(r,e){return r+(e.maxHeight||_)}),0),H=u+(d-F)/2;"bottom"===y?H=u+d-F:"top"===y&&(H=u);try{for(var R=a.__values(f),M=R.next();!M.done;M=R.next()){var j=M.value;0;var k=j.tokens,D=c,L=k.reduce((function(r,e){return r+(e.w||0)}),0);"center"===s?D=c+(h-L)/2:"right"===s&&(D=c+h-L);try{for(var O=(m=void 0,a.__values(k)),T=O.next();!T.done;T=O.next()){var z=T.value,B=n.genFontStr(i);if(t.font=B,t.fillStyle=i.color,z.rPr&&Object.keys(z.rPr).length>0){var C=n.genFontStrFromRPr(z.rPr,i);t.font=C,z.rPr.color&&(t.fillStyle=o.getColor(z.rPr.color))}var N=j.maxHeight||_;false,t.fillText(z.t,D,H+N),S.push({x:D,y:H,width:z.w||0,height:N}),D+=z.w||0}}catch(r){m={error:r}}finally{try{T&&!T.done&&(p=O.return)&&p.call(O)}finally{if(m)throw m.error}}var U=j.maxHeight||_;U,H+=U}}catch(r){b={error:r}}finally{try{M&&!M.done&&(P=R.return)&&P.call(R)}finally{if(b)throw b.error}}Math.floor(F-4)>d+2*v&&(e.setRowHeight(x,F+2*v),r.setNeedReDraw()),l.isValidURL(g)&&w.push({url:g,pos:S})}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawSingleLineRichText.js*/
- amis.define("1af8192",(function(e,t,r,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("68b98b9"),i=e("ee2e51f"),o=e("69209dc"),h=e("2d5fcbc");t.drawSingleLineRichText=function(e,t,r,n,l,c,f,u,d,s,g,v,x){var y,P,w=o.genFontStr(l),b={tokens:[],maxHeight:0},m=[b],F=n.getDefaultFontSize().height,S="";try{for(var _=a.__values(c),k=_.next();!k.done;k=_.next()){var p=k.value,T=w;p.rPr&&Object.keys(p.rPr).length>0&&(T=o.genFontStrFromRPr(p.rPr,l));var j=i.measureTextWithCache(r,T,p.t),H=j.width,L=j.height;L>F&&(F=L),S+=p.t,b.tokens.push({type:"w",t:p.t,rPr:p.rPr,w:H})}}catch(e){y={error:e}}finally{try{k&&!k.done&&(P=_.return)&&P.call(_)}finally{if(y)throw y.error}}b.maxHeight=F,h.drawMultiLineText(e,t,r,n,l,m,f,u,d,s,0,g,v,S,x)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawSingleLineText.js*/
- amis.define("645df18",(function(e,t,i,h){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("da20a07"),o=e("ee2e51f"),r=e("69209dc");t.drawSingleLineText=function(e,t,i,h,d,n,l,s,f,u,c,g){void 0===g&&(g=[]);var x=r.genFontStr(t);e.font=x,e.fillStyle=h,e.textBaseline="middle";var m=0,v=d+f;"right"===u&&(m=(w=o.measureTextWithCache(e,x,i)).width,w.height,v=d+l-m),"center"===u&&(m=(w=o.measureTextWithCache(e,x,i)).width,w.height,v=d+(l-m)/2);var p=n+s/2;if("bottom"===c&&(p=n+s,e.textBaseline="bottom"),"top"===c&&(p=n,e.textBaseline="top"),e.fillText(i,v,p),a.isValidURL(i)){var w,T=p-(w=o.measureTextWithCache(e,x,i)).height/2;"bottom"===c&&(T=p-w.height),"top"===c&&(T=p),g.push({url:i,pos:[{x:v,y:T,width:w.width,height:w.height}]})}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawTextInCell.js*/
- amis.define("f08ee6a",(function(e,t,a,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("f8929de"),n=e("ee2e51f"),o=e("2d5fcbc"),r=e("1af8192"),c=e("645df18"),f=e("69209dc"),x=/^-?[\d\.]+$/;t.drawTextInCell=function(e,t,a,l,d,T,h,p,s,v,D,u){if(void 0===u&&(u=[]),!d.cellData||"object"!=typeof d.cellData||"blank"!==d.cellData.type){var w=!1,b="left";"string"==typeof d.cellData&&x.test(d.cellData)&&(b="right");var g="bottom",y=d.alignment,j=0,m=p-2*D,S=l.getFontStyle(d.font);if(y&&(y.wrapText&&(w=!0),y.horizontal&&(b=y.horizontal),y.vertical&&(g=y.vertical),y.indent&&(j=y.indent),y.textRotation&&255===y.textRotation)){w=!0;var C=f.genFontStr(S);m=n.measureTextWithCache(a,C,"1").width}j>5&&(j=5);var L=d.needClip||"fill"===b||w;if(L&&(a.save(),a.rect(T,h,p,s),a.clip()),w){var R=[];d.text?R=i.autoWrapText(a,d.text,m,S):"object"==typeof d.cellData&&"richText"in d.cellData?R=i.autoWrapText(a,d.cellData.richText,m,S):console.warn("unknown cell data",d),o.drawMultiLineText(e,t,a,l,S,R,T+D,h+D,m,s-2*D,D,b,g,d.text,d.row,u)}else d.text?c.drawSingleLineText(a,S,d.text,S.color,T+D,h+D,m,s-2*D,j*v,b,g,u):"object"==typeof d.cellData&&"richText"in d.cellData&&r.drawSingleLineRichText(e,t,a,l,S,d.cellData.richText,T+D,h+D,m,s-2*D,b,g,d.row);L&&a.restore()}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawCell.js*/
- amis.define("e7882cd",(function(a,e,r,d){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var l=a("7c4b159"),c=a("370c12f"),t=a("8e889ae"),i=a("12aeeb7"),o=a("f08ee6a");e.drawCell=function(a,e,r,d,n,s,u,w,f,v,B,C,p){void 0===C&&(C=!1),void 0===p&&(p=[]);var y=r.ctx;C&&y.clearRect(s+1,u+1,w-2,f-2),l.drawCellBackground(y,d,n,s,u,w,f);var D=!0;n.dataBarDisplay&&(t.drawCellDataBar(r,n.dataBarDisplay,s,u,w,f),D=n.dataBarDisplay.showValue),n.icon&&i.drawIconSet(r,n.icon,s,u,w,f),D&&o.drawTextInCell(a,e,y,d,n,s,u,w,f,v,B,p),c.drawCellBorder(y,d,n,s,u,w,f)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/autoClip.js*/
- amis.define("f559703",(function(t,e,a,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=t("68b98b9"),i=t("ee2e51f"),o=t("69209dc");e.autoClip=function(t,e,a){var n,l,c;try{for(var f=r.__values(a),d=f.next();!d.done;d=f.next()){var s=r.__read(d.value,2),u=s[0],v=s[1],p=parseInt(u.split(",")[0]),h=parseInt(u.split(",")[1])+1;if(a.has("".concat(p,",").concat(h))){var x=a.get("".concat(p,",").concat(h));if(!0!==(null===(c=v.alignment)||void 0===c?void 0:c.wrapText)&&v.text&&x.text){var y=e.getFontStyle(v.font),_=o.genFontStr(y);i.measureTextWithCache(t,_,v.text).width>v.width&&(v.needClip=!0)}}}}catch(t){n={error:t}}finally{try{d&&!d.done&&(l=f.return)&&l.call(f)}finally{if(n)throw n.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/SheetCanvas.js*/
- amis.define("b4e88e2",(function(e,t,i,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),a=e("3fe78ca"),r=e("e7882cd"),d=e("f559703"),s=function(e){function t(t,i){var o=this,n=t.getViewpointSize(),a=n.width,r=n.height;return(o=e.call(this,a,r,t.renderOptions.scale||1,"ov-excel-content-canvas ov-excel-canvas")||this).debugFontBoundingBox=!1,o.workbook=t,o.dataProvider=i,o}return n.__extends(t,e),t.prototype.drawCell=function(e,t,i,o,n,a,d,s,c,v){void 0===c&&(c=!1),void 0===v&&(v=[]);var u=this.workbook.getActiveSheet();r.drawCell(e,u,this,this.dataProvider,t,i,o,n,a,d,s,c,v)},t.prototype.autoClip=function(e){d.autoClip(this.ctx,this.dataProvider,e)},t}(a.Canvas);t.SheetCanvas=s}));
- ;/*!node_modules/office-viewer/lib/excel/render/grid/drawGridLines.js*/
- amis.define("b6cdd08",(function(e,r,i,n){"use strict";function s(e,r,i,n){for(var s=r.rows,o=r.rowSizes,t=r.cols,f=r.colSizes,d=[],a=0;a<s.length;a++){var u=o[a].offset;d.push({x1:0,y1:u,x2:i,y2:u})}for(a=0;a<t.length;a++){var c=f[a].offset;d.push({x1:c,y1:0,x2:c,y2:n})}return d}Object.defineProperty(r,"__esModule",{value:!0}),r.drawGridLines=function(e,r,i,n,o,t){if(e.showGridLines()){var f=s(0,r,o,n);i.drawLines(f,t.gridLineColor)}},r.generateGridLines=s}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/drawCells.js*/
- amis.define("6431787",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),i=e("7167655");r.drawCells=function(e,r,t,a,l,o){var c,f,s,d,h=new Map;try{for(var v=n.__values(l),u=v.next();!u.done;u=v.next()){var y=(p=u.value).row,_=p.col,w=p.width,g=p.height;if(!(w<=0||g<=0))(O=r.getCellInfo(y,_))&&h.set("".concat(y,",").concat(_),n.__assign(n.__assign({},JSON.parse(JSON.stringify(O))),{width:w,height:g}))}}catch(e){c={error:e}}finally{try{u&&!u.done&&(f=v.return)&&f.call(v)}finally{if(c)throw c.error}}a.autoClip(h);try{for(var x=n.__values(l),C=x.next();!C.done;C=x.next()){y=(p=C.value).row,_=p.col;var p,S=p.x,b=p.y,I=(w=p.width,g=p.height,p.needClear);if(!(w<=0||g<=0)){var N="".concat(y,",").concat(_);if(h.has(N)){var O=h.get(N);a.drawCell(e,O,S,b,w,g,t.indentSize,i.PADDING_SIZE,I,o)}}}}catch(e){s={error:e}}finally{try{C&&!C.done&&(d=x.return)&&d.call(x)}finally{if(s)throw s.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/header/drawRowColHeaders.js*/
- amis.define("7a93be4",(function(e,r,t,o){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),i=e("c1cc3b1"),n=e("69209dc");r.drawRowColHeaders=function(e,r,t,o,d,l){var w,h,c,s;if(!1!==e.showRowColHeaders()){var y=r.rows,f=r.startRowOffset,v=r.height,x=r.width,g=r.cols,u=r.startColOffset,C=e.getRowColSize(),H=C.rowHeaderWidth,R=C.colHeaderHeight,L=o.gridLineColor,b=o.rowColHeadersBackgroundColor,_=o.hiddenRowColHeadersLineColor,S=f;t.drawRect(0,0,H,v,b);var p=n.genFontStr(l),O=o.rowColHeadersColor,T=!1;try{for(var m=a.__values(y),W=m.next();!W.done;W=m.next()){var j=W.value,k=e.getRowHeight(j);if(0!==k){var z=S+R;t.drawLine({x1:0,y1:z,x2:H,y2:z},L),T?(T=!1,t.drawLine({x1:0,y1:z,x2:H,y2:z},_,3)):t.drawLine({x1:0,y1:z,x2:H,y2:z},L);var B=String(j+1).length*d.width;t.drawText(p,O,String(j+1),(H-B)/2,S+(k-d.height)/2+R,"top"),S+=k}else T=!0}}catch(e){w={error:e}}finally{try{W&&!W.done&&(h=m.return)&&h.call(m)}finally{if(w)throw w.error}}t.drawRect(0,0,x,R,b);var F=u,M=(R-d.height)/2,P=0;try{for(var q=a.__values(g),A=q.next();!A.done;A=q.next()){j=A.value;var D=e.getColWidth(j),E=F+H;j-P>1?t.drawLine({x1:E,y1:0,x2:E,y2:R},_,3):t.drawLine({x1:E,y1:0,x2:E,y2:R},L);var G=i.numberToLetters(j);B=G.length*d.width;t.drawText(p,O,G,F+(D-B)/2+H,M,"top"),F+=D,P=j}}catch(e){c={error:e}}finally{try{A&&!A.done&&(s=q.return)&&s.call(q)}finally{if(c)throw c.error}}t.drawRect(0,0,H,R,b)}}}));
- ;/*!node_modules/office-viewer/lib/util/debounce.js*/
- amis.define("7fd8702",(function(e,t,n,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.debounce=function(e,t){var n;return void 0===t&&(t=300),function(){for(var i=this,u=[],o=0;o<arguments.length;o++)u[o]=arguments[o];clearTimeout(n),n=setTimeout((function(){return e.apply(i,u)}),t)}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/frozen/drawTopFrozen.js*/
- amis.define("58e10f3",(function(e,t,i,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("b6cdd08"),n=e("6431787"),a=e("7a93be4");t.drawTopFrozen=function(e,t,i,r,d,l,w,h){var g=i.getFrozenTopViewPointRange(t,w),u=i.getViewPointData(g);return l.drawRect(0,0,g.width,g.height,d.cellBackgroundColor),n.drawCells(e,i,d,l,u,h),o.drawGridLines(i,g,l,g.height,g.width,d),a.drawRowColHeaders(i,g,l,d,r.getDefaultFontSize(),r.getDefaultFontStyle()),l.drawLine({x1:0,y1:g.height,x2:g.width,y2:g.height},d.frozenLineColor),g}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/frozen/drawLeftFrozen.js*/
- amis.define("95150f8",(function(e,t,i,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("b6cdd08"),a=e("6431787"),d=e("7a93be4");t.drawLeftFrozen=function(e,t,i,r,o,w,l,f){var h=i.getFrozenLeftViewPointRange(t,l),g=i.getViewPointData(h);return w.drawRect(0,0,h.width,h.height,o.cellBackgroundColor),a.drawCells(e,i,o,w,g,f),n.drawGridLines(i,h,w,h.height,h.width,o),d.drawRowColHeaders(i,h,w,o,r.getDefaultFontSize(),r.getDefaultFontStyle()),w.drawLine({x1:h.width,y1:0,x2:h.width,y2:h.height},o.frozenLineColor),h}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/frozen/drawTopLeftFrozen.js*/
- amis.define("e4c955d",(function(e,t,i,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("b6cdd08"),n=e("6431787"),a=e("7a93be4"),d=e("58e10f3"),w=e("95150f8");t.drawTopLeftFrozen=function(e,t,i,o,f,h,g,l,c,u){var L=d.drawTopFrozen(e,i,o,f,h,g,c,u),s=w.drawLeftFrozen(e,t,o,f,h,g,l,u),z=o.getFrozenTopLeftViewPointRange(t,i),p=o.getViewPointData(z);return g.drawRect(0,0,z.width,z.height,h.cellBackgroundColor),n.drawCells(e,o,h,g,p,u),r.drawGridLines(o,z,g,z.height,z.width,h),a.drawRowColHeaders(o,z,g,h,f.getDefaultFontSize(),f.getDefaultFontStyle()),g.drawLine({x1:0,y1:L.height,x2:z.width,y2:L.height},h.frozenLineColor),g.drawLine({x1:s.width,y1:0,x2:s.width,y2:z.height},h.frozenLineColor),{topViewRange:L,leftViewRange:s,topLeftViewRange:z}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/frozen/drawFrozen.js*/
- amis.define("2d091ab",(function(e,n,t,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=e("58e10f3"),l=e("95150f8"),r=e("e4c955d");n.drawFrozen=function(e,n,t,i,o,f,p,u){var d=0,w=0,g=null,v=null,V=null,R=n.getCurrentSheetView();if(null==R?void 0:R.pane){var c=null==R?void 0:R.pane;c.xSplit&&(d=c.xSplit),c.ySplit&&(w=c.ySplit)}if(d>0&&w>0){var s=r.drawTopLeftFrozen(e,d,w,n,t,i,o,f,p,u);g=s.topViewRange,v=s.leftViewRange,V=s.topLeftViewRange}else w>0?g=a.drawTopFrozen(e,w,n,t,i,o,p,u):d>0&&(v=l.drawLeftFrozen(e,d,n,t,i,o,f,u));return{topViewRange:g,leftViewRange:v,topLeftViewRange:V}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/drawSelectionHeaderHighlight.js*/
- amis.define("c90055f",(function(e,t,o,c){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.drawSelectionHeaderHighlight=function(e,t,o,c,i,r){var a=e.getActiveSheet().getRowColSize(),n=a.rowHeaderWidth,d=a.colHeaderHeight,l=e.renderOptions;n>0&&d>0&&(t.drawAlphaRect(o,0,i,d,l.selectionBackgroundColor,l.selectionBackgroundOpacity),t.drawAlphaRect(0,c,n,r,l.selectionBackgroundColor,l.selectionBackgroundOpacity))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/drawAllSelection.js*/
- amis.define("8c6087d",(function(e,i,t,r){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var o=e("c90055f");i.drawAllSelection=function(e,i,t){var r=e.getViewpointSize(),n=r.width,d=r.height,c=e.renderOptions;i.drawStrokeRect(0,0,n,d,c.selectionBorderColor,2),o.drawSelectionHeaderHighlight(e,i,0,0,n,d)}}));
- ;/*!node_modules/office-viewer/lib/util/binarySearch.js*/
- amis.define("3c60657",(function(e,r,n,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.binarySearch=function(e,r){for(var n=0,t=e.length-1;n<=t;){var i=Math.floor((n+t)/2);if(e[i]===r)return i;r<e[i]?t=i-1:n=i+1}return-1}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/getCellPosition.js*/
- amis.define("4f2376b",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("68b98b9"),i=e("3c60657");function l(e,t){if(!t)return null;var n=i.binarySearch(t.cols,e);return-1!==n?{x:t.colSizes[n].offset,width:t.colSizes[n].size}:null}function f(e,t){if(!t)return null;var n=i.binarySearch(t.rows,e);return-1!==n?{y:t.rowSizes[n].offset,height:t.rowSizes[n].size}:null}function a(e,t,n){var r=e.getViewRange(),o=e.getFrozenViewRange();return"normal"===t&&r?f(n,r):"top-left-frozen"===t&&o?f(n,o.topLeftViewRange):"left-frozen"===t&&o?f(n,o.leftViewRange):"top-frozen"===t&&o?f(n,o.topViewRange):null}function g(e,t,n){var r=e.getViewRange(),o=e.getFrozenViewRange();return"normal"===t&&r?l(n,r):"top-left-frozen"===t&&o?l(n,o.topLeftViewRange):"left-frozen"===t&&o?l(n,o.leftViewRange):"top-frozen"===t&&o?l(n,o.topViewRange):null}t.getCellColPosition=g,t.getCellPositionWithMerge=function(e,t,n,r){var i,l,f=g(e,t,n),u=a(e,t,r),w=e.getMergeCells();if(f&&u){try{for(var s=o.__values(w),h=s.next();!h.done;h=s.next()){var c=h.value,z=c.startRow,R=c.endRow,d=c.startCol,v=c.endCol;if(r>=z&&r<=R&&n>=d&&n<=v){for(var y=z;y<=R;y++)y!==r&&(u.height+=e.getRowHeight(y));for(y=d;y<=v;y++)y!==n&&(f.width+=e.getColWidth(y))}}}catch(e){i={error:e}}finally{try{h&&!h.done&&(l=s.return)&&l.call(s)}finally{if(i)throw i.error}}return{x:f.x,y:u.y,width:f.width,height:u.height}}return null},t.getCellRowPosition=a}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/getRangePosition.js*/
- amis.define("9d3ddc7",(function(e,t,i,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("7167655"),l=e("4f2376b");t.getRangePosition=function(e,t,i){var o=e.getActiveSheet(),d=0,h=l.getCellColPosition(o,t,i.startCol);h&&(d=h.x);var g=0,r=l.getCellRowPosition(o,t,i.startRow);r&&(g=r.y);var s=e.getViewpointSize(),a=s.width,w=s.height,C=0,v=0,R=0,c=0,u=l.getCellRowPosition(o,t,i.endRow);u&&(v=u.y,c=u.height),i.endRow===n.MAX_ROW&&(v=w,c=1);var P=l.getCellColPosition(o,t,i.endCol);return P&&(C=P.x,R=P.width),i.endCol===n.MAX_COL&&(C=a,R=1),h||r||u||P?{x:d,y:g,width:C+R-d,height:v+c-g}:{x:0,y:0,width:0,height:0}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/drawCellSelection.js*/
- amis.define("2811fae",(function(e,t,o,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("c90055f"),i=e("4f2376b"),n=e("9d3ddc7");t.drawCellSelection=function(e,t,o,r){var d=n.getRangePosition(e,o.region,r),l=d.x,c=d.y,s=d.width,w=d.height;if(0!==s&&0!==w){var C=e.renderOptions;t.drawStrokeRect(l,c,s,w,C.selectionBorderColor,2);var R=C.selectionSquareSize;t.drawStrokeRect(l+s-R,c+w-R,2*R,2*R,"#FFFFFF",1);var g=R-1;t.drawAlphaRectPadding(l,c,s,w,1,C.selectionBackgroundColor,C.selectionBackgroundOpacity);var h=o.activeCell,v=0,f=0;h.startCol===r.startCol&&h.startRow===r.startRow?(v=1,f=1):h.endCol===r.endCol&&h.endRow===r.endRow?(v=1,f=1,r.startCol===r.endCol&&(v=1),r.startRow===r.endRow&&(f=1)):h.startCol===r.startCol&&h.endRow===r.endRow?(v=1,f=-1):h.endCol===r.endCol&&h.startRow===r.startRow&&(v=1,f=1);var u=i.getCellPositionWithMerge(e.getActiveSheet(),o.region,h.startCol,h.startRow);u&&t.clearRect(u.x+v,u.y+f,u.width-2,u.height-2),t.drawRect(l+s-g,c+w-g,2*g,2*g,C.selectionBorderColor),a.drawSelectionHeaderHighlight(e,t,l,c,s,w)}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/drawColSelection.js*/
- amis.define("3e863d0",(function(e,i,t,o){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var r=e("c90055f"),d=e("9d3ddc7");i.drawColSelection=function(e,i,t,o){var n=d.getRangePosition(e,t.region,o),c=n.x,a=n.y,l=n.width,s=n.height,g=e.renderOptions;i.drawStrokeRect(c,a,l,s,g.selectionBorderColor,2),r.drawSelectionHeaderHighlight(e,i,c,a,l,s)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/drawRowSelection.js*/
- amis.define("c097ff2",(function(e,o,i,r){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var t=e("c90055f"),n=e("9d3ddc7");o.drawRowSelection=function(e,o,i,r){var d=n.getRangePosition(e,i.region,r),c=d.x,a=d.y,l=d.width,s=d.height;console.log("drawRowSelection",c,a,l,s,r);var f=e.renderOptions;o.drawStrokeRect(c,a,l,s,f.selectionBorderColor,2),t.drawSelectionHeaderHighlight(e,o,c,a,l,s)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/drawCellRanges.js*/
- amis.define("1c2f66b",(function(e,l,r,n){"use strict";Object.defineProperty(l,"__esModule",{value:!0});var a=e("68b98b9"),o=e("7167655"),t=e("8c6087d"),d=e("2811fae"),c=e("3e863d0"),i=e("c097ff2");l.drawCellRanges=function(e,l,r){var n,f;if(r)try{for(var w=a.__values(r.cellRanges),u=w.next();!u.done;u=w.next()){var _=u.value;_.endCol===o.MAX_COL&&_.endRow===o.MAX_ROW?t.drawAllSelection(e,l,r):_.endCol===o.MAX_COL?i.drawRowSelection(e,l,r,_):_.endRow===o.MAX_ROW?c.drawColSelection(e,l,r,_):d.drawCellSelection(e,l,r,_)}}catch(e){n={error:e}}finally{try{u&&!u.done&&(f=w.return)&&f.call(w)}finally{if(n)throw n.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/SelectionCanvas.js*/
- amis.define("4078206",(function(i,e,t,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=i("68b98b9"),r=i("3fe78ca"),d=i("1c2f66b"),s=function(i){function e(e,t){var n=this,o=e.getViewpointSize(),r=o.width,d=o.height;return(n=i.call(this,r,d,e.renderOptions.scale||1,"ov-excel-selection-canvas ov-excel-canvas")||this).workbook=e,n.renderOptions=e.renderOptions,n.dataProvider=t,e.uiEvent.on("CHANGE_SELECTION",n.handleChangeSelection.bind(n)),e.uiEvent.on("AFTER_SCROLL",n.draw.bind(n)),e.uiEvent.on("SWITCH_SHEET",n.draw.bind(n)),e.uiEvent.on("DRAG_ROW_GRID_LINE",n.dragRowGridLine.bind(n)),e.uiEvent.on("DRAG_COL_GRID_LINE",n.dragColGridLine.bind(n)),e.uiEvent.on("DRAG_COL_GRID_LINE_END",(function(i,t){n.workbook.getActiveSheet().setColWidth(i,t),n.clearTmpGridLine(),e.uiEvent.emit("UPDATE_COL_WIDTH",i,t),n.draw()})),e.uiEvent.on("DRAG_ROW_GRID_LINE_END",(function(i,t){n.workbook.getActiveSheet().setRowHeight(i,t),n.clearTmpGridLine(),e.uiEvent.emit("UPDATE_ROW_HEIGHT",i,t),n.draw()})),n}return o.__extends(e,i),e.prototype.handleChangeSelection=function(i){this.selection=i,this.draw()},e.prototype.dragRowGridLine=function(i){i!==this.tmpRowGridLineY&&(this.tmpRowGridLineY=i,this.draw())},e.prototype.dragColGridLine=function(i){i!==this.tmpColGridLineX&&(this.tmpColGridLineX=i,this.draw())},e.prototype.clearTmpGridLine=function(){this.tmpRowGridLineY=0,this.tmpColGridLineX=0,this.draw()},e.prototype.draw=function(){this.clear(),this.drawTmpGridLine(),this.selection&&d.drawCellRanges(this.workbook,this,this.selection)},e.prototype.clearSelection=function(){this.selection=void 0,this.draw()},e.prototype.drawTmpGridLine=function(){var i=this.workbook.getViewpointSize(),e=i.width,t=i.height;this.tmpColGridLineX&&this.drawLine({x1:this.tmpColGridLineX,y1:0,x2:this.tmpColGridLineX,y2:t},this.renderOptions.dragGridLineColor),this.tmpRowGridLineY&&this.drawLine({x1:0,y1:this.tmpRowGridLineY,x2:e,y2:this.tmpRowGridLineY},this.renderOptions.dragGridLineColor)},e}(r.Canvas);e.SelectionCanvas=s}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/updateCursor.js*/
- amis.define("2d74866",(function(e,r,i,o){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l={drawing:"default",cell:"cell","row-header":"e-resize","row-grid":"row-resize","col-header":"s-resize","col-grid":"col-resize",corner:"cell"};r.updateCursor=function(e,r,i){r&&r.type in l&&(e.style.cursor=l[r.type],i&&(e.style.cursor="pointer"))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/getMouseRelativePosition.js*/
- amis.define("5fc9c42",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getMouseRelativePosition=function(e,t){var i=e.getBoundingClientRect();return{offsetX:t.clientX-i.x,offsetY:t.clientY-i.y}}}));
- ;/*!node_modules/office-viewer/lib/util/objectEqual.js*/
- amis.define("8aaeea0",(function(e,n,r,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.objectEqual=function(e,n){for(var r in e)if(e[r]!==n[r])return!1;return!0}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/cellToMergeCell.js*/
- amis.define("1e0c873",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=e("68b98b9");r.cellToMergeCell=function(e,r,t){var n,l;try{for(var a=o.__values(t),i=a.next();!i.done;i=a.next()){var s=i.value,u=s.startRow,c=s.endRow,d=s.startCol,f=s.endCol;if(e>=u&&e<=c&&r>=d&&r<=f)return o.__assign({},s)}}catch(e){n={error:e}}finally{try{i&&!i.done&&(l=a.return)&&l.call(a)}finally{if(n)throw n.error}}return{startRow:e,startCol:r,endRow:e,endCol:r}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/handleDragCell.js*/
- amis.define("7708958",(function(e,t,a,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var l=e("68b98b9"),r=e("8aaeea0"),n=e("9a404b6"),i=e("1e0c873"),s=e("cd7455e");function g(e,t,a,o){var l=i.cellToMergeCell(a,o,t);return n.mergeRange(e,l)}function c(e,t){for(var a=l.__assign({},e),o=a.startCol;o<=a.endCol;o++)a=g(a,t,a.startRow,o);for(o=a.startCol;o<=a.endCol;o++)a=g(a,t,a.endRow,o);for(o=a.startRow;o<=a.endRow;o++)a=g(a,t,o,a.startCol);for(o=a.startRow;o<=a.endRow;o++)a=g(a,t,o,a.endCol);return r.objectEqual(a,e)?a:c(a,t)}t.handleDragCell=function(e,t){var a,o,l;if(s.dragState.selection)if(0!==s.dragState.selection.cellRanges.length){var i=s.dragState.selection.cellRanges[0],g=null===(a=s.dragState.workbook)||void 0===a?void 0:a.getActiveSheet().hitTest(e,t);if(g&&g.type===s.dragState.dragType){var d=(null===(o=s.dragState.workbook)||void 0===o?void 0:o.getActiveSheet().getMergeCells())||[],v=n.mergeRange(s.dragState.selection.activeCell,g);d.length&&(v=c(v,d)),r.objectEqual(v,i)||(Object.assign(i,v),null===(l=s.dragState.workbook)||void 0===l||l.uiEvent.emit("CHANGE_SELECTION",s.dragState.selection))}}else console.warn("没有 cellRanges");else console.warn("没有 selection")}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/handleDragColGrid.js*/
- amis.define("e7d7db6",(function(t,e,a,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var d=t("4f2376b"),i=t("cd7455e");e.handleDragColGrid=function(t){var e=t.pageX-i.dragState.dragStart.pageX,a=i.dragState.workbook,r=a.getActiveSheet(),o=d.getCellColPosition(r,i.dragState.region,i.dragState.col);if(o){var g=o.x+o.width,n=Math.max(o.x,g+e);i.dragState.tmpColWidth=Math.max(0,n-o.x),a.uiEvent.emit("DRAG_COL_GRID_LINE",n)}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/handleDragColHeader.js*/
- amis.define("9d35672",(function(e,t,o,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("7167655"),l=e("cd7455e");t.handleDragColHeader=function(e,t){var o,a,n;if(l.dragState.selection){var i=null===(o=l.dragState.workbook)||void 0===o?void 0:o.getActiveSheet().hitTest(e,t),d=l.dragState.selection.activeCell.startCol,s=l.dragState.selection.cellRanges[0];if(i){if(i.region!==l.dragState.region)return void console.warn("不支持跨区域拖拽");if(i.startCol!==d){var C=Math.min(d,i.startCol),c=Math.max(d,i.startCol);if(C===s.startCol&&c===s.endCol)return;s.startCol=C,s.endCol=c,s.startRow=0,s.endRow=r.MAX_ROW,null===(a=l.dragState.workbook)||void 0===a||a.uiEvent.emit("CHANGE_SELECTION",l.dragState.selection)}else s.startCol!==s.endCol&&(s.startCol=d,s.endCol=d,s.startRow=0,s.endRow=r.MAX_ROW,null===(n=l.dragState.workbook)||void 0===n||n.uiEvent.emit("CHANGE_SELECTION",l.dragState.selection))}}else console.warn("没有 selection")}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/handleDragRowGrid.js*/
- amis.define("5724749",(function(e,t,a,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("4f2376b"),g=e("cd7455e");t.handleDragRowGrid=function(e){var t=e.pageY-g.dragState.dragStart.pageY,a=g.dragState.workbook,r=a.getActiveSheet(),o=i.getCellRowPosition(r,g.dragState.region,g.dragState.row);if(o){var d=o.y+o.height,n=Math.max(o.y,d+t);g.dragState.tmpRowHeight=Math.max(0,n-o.y),a.uiEvent.emit("DRAG_ROW_GRID_LINE",n)}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/handleDragRowHeader.js*/
- amis.define("96bb2d8",(function(e,t,o,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("7167655"),n=e("cd7455e");t.handleDragRowHeader=function(e,t){var o,a,i;if(n.dragState.selection){var d=null===(o=n.dragState.workbook)||void 0===o?void 0:o.getActiveSheet().hitTest(e,t),l=n.dragState.selection.activeCell.startRow,s=n.dragState.selection.cellRanges[0];if(d){if(d.region!==n.dragState.region)return void console.warn("不支持跨区域拖拽");if(d.startRow!==l){var w=Math.min(l,d.startRow),c=Math.max(l,d.startRow);if(w===s.startRow&&c===s.endRow)return;s.startRow=w,s.endRow=c,s.startCol=0,s.endCol=r.MAX_COL,null===(a=n.dragState.workbook)||void 0===a||a.uiEvent.emit("CHANGE_SELECTION",n.dragState.selection)}else s.startRow!==s.endRow&&(s.endRow=s.startRow,s.startCol=0,s.endCol=r.MAX_COL,null===(i=n.dragState.workbook)||void 0===i||i.uiEvent.emit("CHANGE_SELECTION",n.dragState.selection))}}else console.warn("没有 selection")}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/handleMousemove.js*/
- amis.define("e395d8a",(function(e,a,r,d){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var o=e("5fc9c42"),t=e("7708958"),g=e("e7d7db6"),l=e("9d35672"),n=e("5724749"),i=e("96bb2d8"),c=e("cd7455e");a.handleMousemove=function(e){c.dragState.isDragging=!0;var a=o.getMouseRelativePosition(c.dragState.container,e),r=a.offsetX,d=a.offsetY,h=c.dragState.workbook.getActiveSheet().getZoomLevel();r/=h,d/=h,r=Math.round(r),d=Math.round(d);var s=c.dragState.dragType;"cell"===s&&t.handleDragCell(r,d),"row-grid"===s&&n.handleDragRowGrid(e),"col-grid"===s&&g.handleDragColGrid(e),"row-header"===s&&i.handleDragRowHeader(r,d),"col-header"===s&&l.handleDragColHeader(r,d)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/removeEventListener.js*/
- amis.define("40d93b0",(function(e,n,o,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var u=e("e395d8a"),s=e("6f3d450");n.removeEventListener=function(){document.removeEventListener("mousemove",u.handleMousemove,!0),document.removeEventListener("mouseup",s.handleMouseup)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/handleMouseup.js*/
- amis.define("6f3d450",(function(e,t,a,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var d=e("40d93b0"),o=e("cd7455e");t.handleMouseup=function(){var e,t;o.dragState.isDragging=!1,d.removeEventListener(),"col-grid"===o.dragState.dragType&&(null===(e=o.dragState.workbook)||void 0===e||e.uiEvent.emit("DRAG_COL_GRID_LINE_END",o.dragState.col,o.dragState.tmpColWidth)),"row-grid"===o.dragState.dragType&&(null===(t=o.dragState.workbook)||void 0===t||t.uiEvent.emit("DRAG_ROW_GRID_LINE_END",o.dragState.row,o.dragState.tmpRowHeight)),o.resetDragState()}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/mousedownColHeader.js*/
- amis.define("e3f4364",(function(e,t,n,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=e("68b98b9"),r=e("7167655");t.mousedownColHeader=function(e,t){var n={startRow:0,startCol:t.startCol,endRow:0,endCol:t.endCol};return{user:"",region:t.region,selectType:t.type,activeCell:n,sheetIndex:e.getActiveSheet().getIndex(),cellRanges:[s.__assign(s.__assign({},n),{endRow:r.MAX_ROW})]}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/selectAll.js*/
- amis.define("c706b11",(function(e,n,s,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var l=e("68b98b9"),r=e("7167655");n.selectAll=function(e){var n={startRow:0,startCol:0,endRow:0,endCol:0};return{user:"",region:"normal",selectType:"corner",activeCell:n,sheetIndex:e,cellRanges:[l.__assign(l.__assign({},n),{endRow:r.MAX_ROW,endCol:r.MAX_COL})]}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/mousedownCorner.js*/
- amis.define("e5a26cb",(function(e,t,n,c){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("c706b11");t.mousedownCorner=function(e){return r.selectAll(e.getActiveSheet().getIndex())}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/mousedownRowHeader.js*/
- amis.define("7abf05a",(function(e,t,n,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=e("68b98b9"),a=e("7167655");t.mousedownRowHeader=function(e,t){var n={startRow:t.startRow,startCol:0,endRow:t.endRow,endCol:0};return{user:"",region:t.region,selectType:t.type,activeCell:n,sheetIndex:e.getActiveSheet().getIndex(),cellRanges:[s.__assign(s.__assign({},n),{endCol:a.MAX_COL})]}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/mousedownCell.js*/
- amis.define("d0a109d",(function(e,t,n,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=e("68b98b9");t.mousedownCell=function(e,t){var n={startRow:t.startRow,startCol:t.startCol,endRow:t.endRow,endCol:t.endCol};return{user:"",region:t.region,selectType:t.type,activeCell:n,sheetIndex:e.getActiveSheet().getIndex(),cellRanges:[s.__assign({},n)]}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/dnd/handleMousedown.js*/
- amis.define("cd7455e",(function(e,o,t,a){"use strict";Object.defineProperty(o,"__esModule",{value:!0});var n=e("e395d8a"),d=e("6f3d450"),r=e("e3f4364"),s=e("e5a26cb"),u=e("7abf05a"),i=e("d0a109d"),l={isDragging:!1,dragStart:{pageX:0,pageY:0,offsetX:0,offsetY:0},row:0,col:0,tmpRowHeight:0,tmpColWidth:0,region:"normal",dragType:"cell"},c=JSON.parse(JSON.stringify(l));o.dragState=c,o.handleMousedown=function(e,o,t,a){if(0===a.button){var l=null;"cell"===o.type&&(l=i.mousedownCell(e,o)),"row-header"===o.type&&(l=u.mousedownRowHeader(e,o)),"col-header"===o.type&&(l=r.mousedownColHeader(e,o)),"corner"===o.type&&(l=s.mousedownCorner(e));var g=e.getActiveSheet().getZoomLevel();c.workbook=e,c.container=t,c.region=o.region,c.dragStart={pageX:a.pageX,pageY:a.pageY,offsetX:a.offsetX/g,offsetY:a.offsetY/g},c.row=o.startRow,c.col=o.startCol,c.dragType=o.type,l&&(c.selection=l,e.uiEvent.emit("CHANGE_SELECTION",l)),document.addEventListener("mousemove",n.handleMousemove,!0),document.addEventListener("touchmove",n.handleMousemove,!0),document.addEventListener("mouseup",d.handleMouseup),document.addEventListener("touchend",d.handleMouseup)}},o.resetDragState=function(){Object.assign(c,l)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/Rect.js*/
- amis.define("8fc69c7",(function(t,e,i,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.pointInRect=function(t,e,i){return t>=i.x&&t<=i.x+i.width&&e>=i.y&&e<=i.y+i.height},e.rectIntersect=function(t,e){return t.x<e.x+e.width&&t.x+t.width>e.x&&t.y<e.y+e.height&&t.y+t.height>e.y}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/BaseDrawingRender.js*/
- amis.define("0c24b5b",(function(t,n,i,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=function(){function t(t,n,i,e){var a=document.createElement("div");a.className=e,a.dataset.gid=i,this.drawingContainer=a,this.updatePosition(n),t.appendChild(a)}return t.prototype.hide=function(){this.drawingContainer.style.display="none"},t.prototype.show=function(){this.drawingContainer.style.display="block"},t.prototype.updatePosition=function(t){var n=t.x,i=t.y,e=t.width,a=t.height;this.drawingContainer.style.left="".concat(n,"px"),this.drawingContainer.style.top="".concat(i,"px"),this.drawingContainer.style.width="".concat(e,"px"),this.drawingContainer.style.height="".concat(a,"px")},t}();n.BaseDrawingRender=a}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/PicRender.js*/
- amis.define("5f266bc",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("68b98b9"),a=function(e){function t(t,i,n,r){var a,s=this;if(s=e.call(this,t,i,n,"excel-pic")||this,!r.imgURL)return console.warn("imgURL do not exist"),s;var l=null===(a=r.blipFill)||void 0===a?void 0:a.srcRect,c=new Image;if(c.src=r.imgURL,l){var o=i.width,d=i.height,p=0;l.l&&(p=parseInt(l.l,10)/1e5);var h=0;l.t&&(h=parseInt(l.t,10)/1e5);var u=0;l.b&&(u=parseInt(l.b,10)/1e5);var v=0;l.r&&(v=parseInt(l.r,10)/1e5);var b=o*(1+p+v),f=d*(1+h+u),g=-d*h,y=-o*p;c.style.width="".concat(b,"px"),c.style.height="".concat(f,"px"),c.style.top="".concat(g,"px"),c.style.left="".concat(y,"px"),c.style.position="absolute"}else c.style.height="100%",c.style.width="100%";return s.drawingContainer.appendChild(c),s}return r.__extends(t,e),t}(e("0c24b5b").BaseDrawingRender);t.PicRender=a}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/drawPic.js*/
- amis.define("0fd2675",(function(e,i,t,o){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var d=e("8fc69c7"),n=e("5f266bc"),c={};i.drawPic=function(e,i,t,o,r,a,s){if(s)if(s.imgURL){var h=e.getWorkbook().getDataContainer(),g={x:o.x-r,y:o.y-a,width:o.width,height:o.height},f={x:0,y:0,width:t.width,height:t.height};if(d.rectIntersect(g,f)){var l=s.gid,w=h.querySelector('[data-gid="'.concat(l,'"]'));if(c[l]&&w)c[l].updatePosition(g),c[l].show();else{var u=new n.PicRender(h,g,l,s);c[l]=u}}else c[s.gid]&&c[s.gid].hide()}else console.warn("imgURL do not exist");else console.warn("pic do not exist")}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/drawShape.js*/
- amis.define("bb0e32c",(function(e,t,r,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("68b98b9"),i=e("f459abb"),a=e("90e19f4"),n=e("8fc69c7"),d=e("f08ee6a");t.drawShape=function(e,t,r,l,h,f,c,s){var v,u,y,b,g,w,x;return o.__awaiter(this,void 0,void 0,(function(){var C,p,m,_,S,k,P,T,I,L,R,z,D,F,G,M,W,j,B,O,V,X,q,A,E;return o.__generator(this,(function(H){switch(H.label){case 0:if(C={x:0,y:0,width:l.width,height:l.height},p={x:h.x-f,y:h.y-c,width:h.width,height:h.height},!n.rectIntersect(p,C))return[3,3];if(m=t.getWorkbook(),_=m.getDataProvider(),S=s.spPr,!(k=S.prstGeom)||!k.prst)return[3,2];if(P=k.prst,!(T=i.presetShape[P]))return[3,2];I=[];try{for(L=o.__values((null===(v=k.avLst)||void 0===v?void 0:v.gd)||[]),R=L.next();!R.done;R=L.next())F=R.value,I.push({n:F.name,f:F.fmla})}catch(e){X={error:e}}finally{try{R&&!R.done&&(q=L.return)&&q.call(L)}finally{if(X)throw X.error}}try{for(z=o.__values((null===(u=k.avLst)||void 0===u?void 0:u.gd)||[]),D=z.next();!D.done;D=z.next())F=D.value,I.push({n:F.name,f:F.fmla})}catch(e){A={error:e}}finally{try{D&&!D.done&&(E=z.return)&&E.call(z)}finally{if(A)throw A.error}}return G=a.shapeToSVG(T,I,(K=(J=S).outline,N=J.fillColor,Q=void 0,J.noFill&&(Q=!0),{outline:K,fillColor:N,noFill:Q}),h.width,h.height,{lineColor:null===(y=s.styleColor)||void 0===y?void 0:y.lnRefColor,fillColor:null===(b=s.styleColor)||void 0===b?void 0:b.fillRefColor,fontColor:null===(g=s.styleColor)||void 0===g?void 0:g.fontRefColor}),M=(new XMLSerializer).serializeToString(G),W="data:image/svg+xml;base64,"+btoa(M),[4,r.drawImageWithCache(W,h.x-l.x,h.y-l.y,h.width,h.height)];case 1:H.sent(),H.label=2;case 2:if(j=s.richText){if(B={},O=null===(x=null===(w=s.txBody)||void 0===w?void 0:w.bodyPr)||void 0===x?void 0:x.anchor)switch(O){case"t":B.vertical="top";break;case"ctr":B.vertical="center";break;case"b":B.vertical="bottom"}V={row:0,col:0,font:{},text:"",value:"",alignment:B,cellData:j},d.drawTextInCell(e,t,r.getContext(),_,V,h.x-l.x,h.y-l.y,h.width,h.height,0,0)}H.label=3;case 3:return[2]}var J,K,N,Q}))}))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/EChartsRender.js*/
- amis.define("c0656a0",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("68b98b9");function c(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(n){if("default"!==n){var r=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(t,n,r.get?r:{enumerable:!0,get:function(){return e[n]}})}})),t.default=e,Object.freeze(t)}var u=function(t){function n(e,n,r){return t.call(this,e,n,r,"excel-chart")||this}return i.__extends(n,t),n.prototype.render=function(t){var n=this;Promise.resolve().then((function(){return c(e("c2fb93a"))})).then((function(e){e.init(n.drawingContainer).setOption(t)}))},n}(e("0c24b5b").BaseDrawingRender);t.EChartsRender=u}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/getStack.js*/
- amis.define("255ffe6",(function(e,t,c,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getStack=function(e){var t,c=!1;return e&&("stacked"===e.val&&(t="x"),"percentStacked"===e.val&&(t="x",c=!0)),{stack:t,isPercentStacked:c}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/calcPercentStacked.js*/
- amis.define("4016936",(function(r,a,e,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var n=r("68b98b9");a.calcPercentStacked=function(r){var a,e,t,l,o=[];try{for(var c=n.__values(r),f=c.next();!f.done;f=c.next())for(var d=f.value,i=0;i<d.data.length;i++){var v=d.data[i]||0;o[i]=(o[i]||0)+ +v}}catch(r){a={error:r}}finally{try{f&&!f.done&&(e=c.return)&&e.call(c)}finally{if(a)throw a.error}}try{for(var u=n.__values(r),y=u.next();!y.done;y=u.next())for(d=y.value,i=0;i<d.data.length;i++){v=d.data[i]||0;var h=o[i]||1;d.data[i]=+v/h*100}}catch(r){t={error:r}}finally{try{y&&!y.done&&(l=u.return)&&l.call(u)}finally{if(t)throw t.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/getData.js*/
- amis.define("edfe835",(function(e,n,u,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.getData=function(e,n){var u,i,o;return(null===(u=null==n?void 0:n.numRef)||void 0===u?void 0:u.f)?((null===(o=null===(i=null==n?void 0:n.numRef)||void 0===i?void 0:i.numCache)||void 0===o?void 0:o.pt)||[]).map((function(e){return parseFloat(e.v)})):[]}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/fromBarChart.js*/
- amis.define("420811f",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i=e("68b98b9"),n=e("255ffe6"),o=e("4016936"),l=e("edfe835");r.fromBarChart=function(e,r){var t,a,v,d,c,u,s,f=[],h=[],p=r.ser||[],y=!1;try{for(var g=i.__values(p),k=g.next();!k.done;k=g.next()){var b=k.value,_=l.getData(e,b.val),m=(null===(s=null===(u=null===(c=null===(d=null===(v=b.tx)||void 0===v?void 0:v.strRef)||void 0===d?void 0:d.strCache)||void 0===c?void 0:c.pt)||void 0===u?void 0:u[0])||void 0===s?void 0:s.v)||"";m&&f.push(m);var x=n.getStack(r.grouping);y=x.isPercentStacked,h.push({name:m,type:"bar",stack:x.stack,data:_})}}catch(e){t={error:e}}finally{try{k&&!k.done&&(a=g.return)&&a.call(g)}finally{if(t)throw t.error}}return y&&o.calcPercentStacked(h),{categories:f,series:h}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/buildLabel.js*/
- amis.define("5fe8620",(function(e,i,n,t){"use strict";Object.defineProperty(i,"__esModule",{value:!0}),i.buildLabel=function(e){return{}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/fromAreaChart.js*/
- amis.define("e867c26",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l=e("68b98b9"),i=e("4016936"),n=e("255ffe6"),o=e("edfe835"),d=e("5fe8620");r.fromAreaChart=function(e,r){var a,t,v,c,u,s,f,b=[],y=[],h=r.ser||[],p=!1;try{for(var g=l.__values(h),k=g.next();!k.done;k=g.next()){var S=k.value,_=o.getData(e,S.val),m=(null===(f=null===(s=null===(u=null===(c=null===(v=S.tx)||void 0===v?void 0:v.strRef)||void 0===c?void 0:c.strCache)||void 0===u?void 0:u.pt)||void 0===s?void 0:s[0])||void 0===f?void 0:f.v)||"";m&&b.push(m);var x=d.buildLabel(S.dLbls),P=n.getStack(r.grouping);p=P.isPercentStacked,y.push({name:m,type:"line",stack:P.stack,data:_,label:x,areaStyle:{}})}}catch(e){a={error:e}}finally{try{k&&!k.done&&(t=g.return)&&t.call(g)}finally{if(a)throw a.error}}return p&&i.calcPercentStacked(y),{categories:b,series:y}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/convertAxis.js*/
- amis.define("4ac3b4b",(function(o,i,l,v){"use strict";Object.defineProperty(i,"__esModule",{value:!0}),i.convertAxis=function(o,i,l){var v,a,t,n,d,s,e,u,r={},x={};if(i){var p={type:"category"};"b"===(null===(v=i.axPos)||void 0===v?void 0:v.val)&&(r=p),"t"===(null===(a=i.axPos)||void 0===a?void 0:a.val)&&(r=p,p.position="top"),"l"===(null===(t=i.axPos)||void 0===t?void 0:t.val)&&(x=p),"r"===(null===(n=i.axPos)||void 0===n?void 0:n.val)&&(x=p,p.position="right")}if(l){p={type:"value"};"b"===(null===(d=l.axPos)||void 0===d?void 0:d.val)&&(r=p),"t"===(null===(s=l.axPos)||void 0===s?void 0:s.val)&&(r=p,p.position="top"),"l"===(null===(e=l.axPos)||void 0===e?void 0:e.val)&&(x=p),"r"===(null===(u=l.axPos)||void 0===u?void 0:u.val)&&(x=p,p.position="right")}return{xAxis:r,yAxis:x}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/convertLegend.js*/
- amis.define("fe3417c",(function(t,e,o,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.convertLegend=function(t,e){var o,r={data:t};if(e){var i=null===(o=e.legendPos)||void 0===o?void 0:o.val;"b"===i&&(r.orient="horizontal",r.bottom=0),"r"===i&&(r.orient="vertical",r.right=0,r.top="center"),"t"===i&&(r.orient="horizontal",r.top=0),"l"===i&&(r.orient="vertical",r.left=0,r.top="center"),"tr"===i&&(r.orient="horizontal",r.top=0,r.right=0)}return r}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/convertTitle.js*/
- amis.define("1cf6c8d",(function(r,t,e,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=r("68b98b9");t.convertTitle=function(r){var t,e,l,o,n,i,v={top:0,right:"center",text:""};if(r){try{for(var u=a.__values((null===(i=null===(n=r.tx)||void 0===n?void 0:n.rich)||void 0===i?void 0:i.p)||[]),f=u.next();!f.done;f=u.next()){var c=f.value;try{for(var y=(l=void 0,a.__values(c.r||[])),d=y.next();!d.done;d=y.next()){var x=d.value;v.text+=x.t||""}}catch(r){l={error:r}}finally{try{d&&!d.done&&(o=y.return)&&o.call(y)}finally{if(l)throw l.error}}}}catch(r){t={error:r}}finally{try{f&&!f.done&&(e=u.return)&&e.call(u)}finally{if(t)throw t.error}}if(r.layout){var h=r.layout.manualLayout;h&&(h.x&&(v.left=h.x.val),h.y&&(v.top=h.y.val))}}return v}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/fromDoughnutChart.js*/
- amis.define("2cd3c57",(function(e,r,t,i){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l=e("68b98b9"),o=e("edfe835"),a=e("5fe8620");r.fromDoughnutChart=function(e,r){var t,i,n,d,u,v,s,f=[],c=[],h=r.ser||[];try{for(var b=l.__values(h),p=b.next();!p.done;p=b.next()){var y=p.value,g=o.getData(e,y.val),m=(null===(s=null===(v=null===(u=null===(d=null===(n=y.tx)||void 0===n?void 0:n.strRef)||void 0===d?void 0:d.strCache)||void 0===u?void 0:u.pt)||void 0===v?void 0:v[0])||void 0===s?void 0:s.v)||"";m&&f.push(m);a.buildLabel(y.dLbls);c.push({name:m,data:g,type:"pie",radius:["40%","70%"],emphasis:{label:{show:!0,fontSize:40,fontWeight:"bold"}}})}}catch(e){t={error:e}}finally{try{p&&!p.done&&(i=b.return)&&i.call(b)}finally{if(t)throw t.error}}return{categories:f,series:c}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/fromLineChart.js*/
- amis.define("0dc4652",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l=e("68b98b9"),i=e("4016936"),n=e("255ffe6"),o=e("edfe835"),d=e("5fe8620");r.fromLineChart=function(e,r){var t,a,v,c,u,s,f,b=[],h=[],p=r.ser||[],y=!1;try{for(var g=l.__values(p),k=g.next();!k.done;k=g.next()){var _=k.value,m=o.getData(e,_.val),x=(null===(f=null===(s=null===(u=null===(c=null===(v=_.tx)||void 0===v?void 0:v.strRef)||void 0===c?void 0:c.strCache)||void 0===u?void 0:u.pt)||void 0===s?void 0:s[0])||void 0===f?void 0:f.v)||"";x&&b.push(x);var L=d.buildLabel(_.dLbls),P=n.getStack(r.grouping);y=P.isPercentStacked,h.push({name:x,type:"line",stack:P.stack,data:m,label:L})}}catch(e){t={error:e}}finally{try{k&&!k.done&&(a=g.return)&&a.call(g)}finally{if(t)throw t.error}}return y&&i.calcPercentStacked(h),{categories:b,series:h}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/chart/fromPieChart.js*/
- amis.define("92b7aeb",(function(e,r,i,l){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),a=e("edfe835"),o=e("5fe8620");r.fromPieChart=function(e,r){var i,l,n,d,v,u,s,f=[],c=[],b=r.ser||[];try{for(var h=t.__values(b),p=h.next();!p.done;p=h.next()){var y=p.value,_=a.getData(e,y.val),m=(null===(s=null===(u=null===(v=null===(d=null===(n=y.tx)||void 0===n?void 0:n.strRef)||void 0===d?void 0:d.strCache)||void 0===v?void 0:v.pt)||void 0===u?void 0:u[0])||void 0===s?void 0:s.v)||"";m&&f.push(m);o.buildLabel(y.dLbls);c.push({name:m,data:_,type:"pie"})}}catch(e){i={error:e}}finally{try{p&&!p.done&&(l=h.return)&&l.call(h)}finally{if(i)throw i.error}}return{categories:f,series:c}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/convertToEChartOptions.js*/
- amis.define("3d7ed5d",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i=e("68b98b9"),c=e("420811f"),o=e("e867c26"),n=e("4ac3b4b"),s=e("fe3417c"),h=e("1cf6c8d"),l=e("2cd3c57"),u=e("0dc4652"),C=e("92b7aeb");r.convertToEChartOptions=function(e,r){var t=r.chart;if(console.log("chart",t),!t)return null;var a={title:h.convertTitle(t.title),grid:{backgroundColor:"white",show:!0}},d=t.plotArea;if(!d)return null;var g,f=[],v=[];d.lineChart&&(f=(g=u.fromLineChart(e,d.lineChart)).categories,v=v.concat(g.series)),d.barChart&&(f=(g=c.fromBarChart(e,d.barChart)).categories,v=v.concat(g.series)),d.areaChart&&(f=(g=o.fromAreaChart(e,d.areaChart)).categories,v=v.concat(g.series)),d.pieChart&&(f=(g=C.fromPieChart(e,d.pieChart)).categories,v=v.concat(g.series)),d.doughnutChart&&(f=(g=l.fromDoughnutChart(e,d.doughnutChart)).categories,v=v.concat(g.series));var b=n.convertAxis(f,d.catAx,d.valAx),x=b.xAxis,A=b.yAxis,m=s.convertLegend(f,t.legend);return i.__assign(i.__assign({},a),{legend:m,xAxis:x,yAxis:A,series:v})}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/drawChart.js*/
- amis.define("51f4a66",(function(e,t,i,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("8fc69c7"),d=e("c0656a0"),h=e("3d7ed5d"),o={};t.drawChart=function(e,t,i,r,n,c){var s=e.getWorkbook(),f=s.getDataContainer(),g=c.gid,u={x:0,y:0,width:t.width,height:t.height},v={x:n.x-i,y:n.y-r,width:n.width,height:n.height};if(a.rectIntersect(v,u)){var w=void 0,l=f.querySelector('[data-gid="'.concat(g,'"]'));if(o[g]&&l)(w=o[g]).updatePosition(v),w.show();else{w=new d.EChartsRender(f,v,g),o[g]=w;var y=h.convertToEChartOptions(s,c);y&&w.render(y)}}else o[g]&&o[g].hide()}}));
- ;/*!node_modules/office-viewer/lib/util/emuToPx.js*/
- amis.define("bc13b1e",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.emuToPx=function(e){return void 0===e?0:("string"==typeof e&&(e=parseFloat(e)),e/9525)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/findPositionInViewRange.js*/
- amis.define("88aaa9f",(function(e,i,t,n){"use strict";Object.defineProperty(i,"__esModule",{value:!0}),i.findPositionInViewRange=function(e,i,t,n){var o,s,f=n.rows.indexOf(i),r=n.cols.indexOf(t);if(-1!==f&&-1!==r)return o=n.rowSizes[f],{x:(s=n.colSizes[r]).offset,y:o.offset,width:s.size,height:o.size};var d=e.getCellPosition(i,t);return{x:d.x,y:d.y,width:d.width,height:d.height}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/getRectFromAnchorPoint.js*/
- amis.define("1d683b1",(function(o,i,n,d){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var e=o("bc13b1e"),l=o("88aaa9f");i.getRectFromOneAnchorPoint=function(o,i,n){var d,v,u,t,f=(null===(d=i.row)||void 0===d?void 0:d[0])||0,r=e.emuToPx(null===(v=i.rowOff)||void 0===v?void 0:v[0]),c=(null===(u=i.col)||void 0===u?void 0:u[0])||0,w=e.emuToPx(null===(t=i.colOff)||void 0===t?void 0:t[0]),P=l.findPositionInViewRange(o,f,c,n);return{x:P.x,y:P.y,width:w,height:r}},i.getRectFromTwoAnchorPoint=function(o,i,n,d){var v,u,t,f,r,c,w,P,a=(null===(v=i.row)||void 0===v?void 0:v[0])||0,x=e.emuToPx(null===(u=i.rowOff)||void 0===u?void 0:u[0]),m=(null===(t=i.col)||void 0===t?void 0:t[0])||0,h=e.emuToPx(null===(f=i.colOff)||void 0===f?void 0:f[0]),O=(null===(r=n.row)||void 0===r?void 0:r[0])||0,g=e.emuToPx(null===(c=n.rowOff)||void 0===c?void 0:c[0]),s=(null===(w=n.col)||void 0===w?void 0:w[0])||0,T=e.emuToPx(null===(P=n.colOff)||void 0===P?void 0:P[0]),y=l.findPositionInViewRange(o,a,m,d),R=l.findPositionInViewRange(o,O,s,d),b=y.x+h,I=y.y+x;return{x:b,y:I,width:R.x+T-b,height:R.y+g-I}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/getAbsoluteAnchorPosition.js*/
- amis.define("d31e795",(function(e,i,t,o){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var r=e("bc13b1e");i.getAbsoluteAnchorPosition=function(e){var i,t,o=null===(i=e.pos)||void 0===i?void 0:i[0];if(o){var n=parseFloat(o.x),u=parseFloat(o.y),a=null===(t=e.ext)||void 0===t?void 0:t[0];if(a&&!isNaN(n)&&!isNaN(u))return{x:n,y:u,width:r.emuToPx(a.cx),height:r.emuToPx(a.cy)}}return{x:0,y:0,width:0,height:0}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/drawDrawing.js*/
- amis.define("4ced7d0",(function(r,e,a,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=r("68b98b9"),i=r("0fd2675"),n=r("bb0e32c"),c=r("51f4a66"),l=r("1d683b1"),h=r("d31e795");e.drawDrawing=function(r,e,a,o){var d,f,s,p,v,w,u,y,g,x=e.getDrawing();if(x){var S=e.getDisplayRect(),m=e.getRowColSize(),b=m.rowHeaderWidth,_=m.colHeaderHeight;try{for(var A=t.__values(x.twoCellAnchors),P=A.next();!P.done;P=A.next()){var C=P.value;if(C.from&&C.to){var R=l.getRectFromTwoAnchorPoint(e,null===(u=C.from)||void 0===u?void 0:u[0],null===(y=C.to)||void 0===y?void 0:y[0],a);C.pic&&i.drawPic(e,o,S,R,b,_,C.pic),C.shape&&n.drawShape(r,e,o,S,R,b,_,C.shape),C.chartSpace&&c.drawChart(e,S,b,_,R,C.chartSpace)}else console.warn("from or to do not exist")}}catch(r){d={error:r}}finally{try{P&&!P.done&&(f=A.return)&&f.call(A)}finally{if(d)throw d.error}}try{for(var D=t.__values(x.absoluteAnchors),H=D.next();!H.done;H=D.next()){var F=H.value,O=h.getAbsoluteAnchorPosition(F);R={x:O.x+b-S.x,y:O.y+_-S.y,width:O.width,height:O.height};F.pic&&i.drawPic(e,o,S,R,b,_,F.pic),F.shape&&n.drawShape(r,e,o,S,R,b,_,F.shape),F.chartSpace&&c.drawChart(e,S,b,_,R,F.chartSpace)}}catch(r){s={error:r}}finally{try{H&&!H.done&&(p=D.return)&&p.call(D)}finally{if(s)throw s.error}}try{for(var j=t.__values(x.oneCellAnchors),z=j.next();!z.done;z=j.next()){var M=z.value;if(M.from){R=l.getRectFromOneAnchorPoint(e,null===(g=M.from)||void 0===g?void 0:g[0],a);M.pic&&i.drawPic(e,o,S,R,b,_,M.pic),M.shape&&n.drawShape(r,e,o,S,R,b,_,M.shape),M.chartSpace&&c.drawChart(e,S,b,_,R,M.chartSpace)}else console.warn("from do not exist")}}catch(r){v={error:r}}finally{try{z&&!z.done&&(w=j.return)&&w.call(j)}finally{if(v)throw v.error}}}}}));
- ;/*!node_modules/office-viewer/lib/util/stripNumber.js*/
- amis.define("417c440",(function(e,r,t,i){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.stripNumber=function(e,r){return void 0===r&&(r=16),"number"!=typeof e||Number.isInteger(e)?e:parseFloat(e.toPrecision(r))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/sparkline/applyColor.js*/
- amis.define("e188a35",(function(l,e,t,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=l("417c440");e.applyColor=function(l,e,t,i,o,f,s,c,a){return i=r.stripNumber(i),o=r.stripNumber(o),f=r.stripNumber(f),s.first&&0===t?(l.fillStyle=a(s["x14:colorFirst"]),!0):s.last&&t===e.length-1?(l.fillStyle=a(s["x14:colorLast"]),!0):s.high&&i===f?(l.fillStyle=a(s["x14:colorHigh"]),!0):s.low&&i===o?(l.fillStyle=a(s["x14:colorLow"]),!0):s.negative&&i<0?(l.fillStyle=a(s["x14:colorNegative"]),!0):(l.fillStyle=c,!1)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/sparkline/renderLine.js*/
- amis.define("f5157cc",(function(e,r,l,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),t=e("e188a35");r.renderLine=function(e,r,l,a,i,o,v,f){var s,y,c,h,d,u;l-=4,r-=4;var x=f(v["x14:colorSeries"]);if(o.length<1)console.warn("sparkline 只有一个数据",o);else{var _=r/(o.length-1);v.displayXAxis&&(e.beginPath(),e.strokeStyle=x,e.lineWidth=v.lineWeight||1.2,e.moveTo(2,l/2+2),e.lineTo(r,l/2),e.stroke()),e.beginPath(),e.strokeStyle=x,e.lineWidth=v.lineWeight||1.2;var g=[],p=!1;try{for(var b=n.__values(o.entries()),P=b.next();!P.done;P=b.next()){var k=n.__read(P.value,2),m=k[0],w=k[1];if(void 0!==w){var S=m*_+2,T=l-(w-a)/(i-a)*l+2;0===m&&p?(e.moveTo(S,T),p=!1):e.lineTo(S,T),g.push({x:S,y:T,index:m,value:w})}else p=!0}}catch(e){s={error:e}}finally{try{P&&!P.done&&(y=b.return)&&y.call(b)}finally{if(s)throw s.error}}if(e.stroke(),v.markers)try{for(var W=n.__values(g),M=W.next();!M.done;M=W.next()){var C=M.value;e.beginPath(),t.applyColor(e,o,C.index,C.value,a,i,v,x,f),e.arc(C.x,C.y,2,0,2*Math.PI),e.fillStyle=x,e.fill()}}catch(e){c={error:e}}finally{try{M&&!M.done&&(h=W.return)&&h.call(W)}finally{if(c)throw c.error}}else try{for(var I=n.__values(g),j=I.next();!j.done;j=I.next()){C=j.value;t.applyColor(e,o,C.index,C.value,a,i,v,x,f)&&(e.beginPath(),e.arc(C.x,C.y,2,0,2*Math.PI),e.fill())}}catch(e){d={error:e}}finally{try{j&&!j.done&&(u=I.return)&&u.call(I)}finally{if(d)throw d.error}}}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/sparkline/renderColumn.js*/
- amis.define("15d502e",(function(e,r,l,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),i=e("e188a35");r.renderColumn=function(e,r,l,t,n,o,f,v){var c,d,u=v(f["x14:colorSeries"]),s=n-t;if(e.fillStyle=u,1!==o.length){var y=(r-2*(o.length-1))/o.length;try{for(var h=a.__values(o.entries()),_=h.next();!_.done;_=h.next()){var x=a.__read(_.value,2),b=x[0],g=x[1];if(void 0!==g){i.applyColor(e,o,b,g,t,n,f,u,v);var m=b*(y+2),p=Math.max(1,(g-t)/s*l),C=l-p;e.fillRect(m,C,y,p)}}}catch(e){c={error:e}}finally{try{_&&!_.done&&(d=h.return)&&d.call(h)}finally{if(c)throw c.error}}}else{var M=o[0];if(void 0!==M){e.fillRect(r/2-1,l-(M-t)/s*l,6,(M-t)/s*l)}}}}));
- ;/*!node_modules/office-viewer/lib/util/number.js*/
- amis.define("e638c7d",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getPercent=function(e,t,n){return(e-t)/(n-t)*100},t.gt=function(e,t){return t-e<Number.EPSILON&&Math.abs(e-t)>Number.EPSILON},t.gte=function(e,t){return t-e<Number.EPSILON},t.lt=function(e,t){return e-t<Number.EPSILON&&Math.abs(e-t)>Number.EPSILON},t.lte=function(e,t){return e-t<Number.EPSILON}}));
- ;/*!node_modules/office-viewer/lib/excel/render/sparkline/renderStacked.js*/
- amis.define("7b10f4e",(function(e,l,r,t){"use strict";Object.defineProperty(l,"__esModule",{value:!0});var i=e("68b98b9"),a=e("e188a35"),f=e("e638c7d");l.renderStacked=function(e,l,r,t,o,n,c,v){var d,y,s=v(c["x14:colorSeries"]),u=v(c["x14:colorNegative"]),g=r/2;if(1!==n.length){var S=(l-2*(n.length-1))/n.length;try{for(var _=i.__values(n.entries()),h=_.next();!h.done;h=_.next()){var b=i.__read(h.value,2),x=b[0],p=b[1];if(void 0!==p){a.applyColor(e,n,x,p,t,o,c,s,v);var R=x*(S+2),j=void 0;f.gt(p,0)?(e.fillStyle=s,j=0):(e.fillStyle=u,j=r-g),e.fillRect(R,j,S,g)}}}catch(e){d={error:e}}finally{try{h&&!h.done&&(y=_.return)&&y.call(_)}finally{if(d)throw d.error}}}else{var k=n[0];if(void 0!==k){f.gt(k,0)?(e.fillStyle=s,e.fillRect(l/2,0,6,g)):(e.fillStyle=u,e.fillRect(l/2,r-g,6,g))}}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/sparkline/renderSparkline.js*/
- amis.define("aef2b5d",(function(e,n,a,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var r=e("f5157cc"),d=e("15d502e"),l=e("7b10f4e"),o=e("e638c7d");n.renderSparkline=function(e,n,a,i,t,c){var u,s,v=t.type||"line",f=i.map((function(e){if(""!==e){var n=parseFloat(e);return void 0===u&&(u=n),void 0===s&&(s=n),o.lt(n,u)&&(u=n),o.gt(n,s)&&(s=n),n}}));0!==f.length&&void 0!==u&&void 0!==s?(void 0!==t.manualMin&&(u=t.manualMin),void 0!==t.manualMax&&(s=t.manualMax),"line"===v?r.renderLine(e,n,a,u,s,f,t,c):"column"===v?d.renderColumn(e,n,a,u,s,f,t,c):"stacked"===v?l.renderStacked(e,n,a,u,s,f,t,c):console.warn("不支持的 sparkline 类型",v)):console.warn("sparkline 数据不完整",f)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/sparkline/drawSparkline.js*/
- amis.define("9f22909",(function(e,r,n,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),i=e("9a404b6"),o=e("aef2b5d"),l=e("9d3ddc7");r.drawSparkline=function(e,r,n){var a,c,f,s=e.getWorkbook(),u=i.viewRangeToRangeRef(r),d=e.getSparklineGroups(),v=function(a){var c,d,v=function(c){var f=c["xm:f"],d=c["xm:sqref"];if(!f||!d)return console.warn("sparkline 缺少必要的 xm:f 和 xm:sqref 字段",c),"continue";var v=i.parseRange(d);if(i.rangeIntersect(u,v))if(f.includes("!")){var g=l.getRangePosition(s,r.region,v);if(!g)return console.warn("找不到对应的单元格",d),"continue";var h=t.__read(f.split("!"),2),p=h[0],y=h[1],w=i.parseRange(y),x=s.getSheetByName(p);if(x){var k=a.displayHidden,m=x.getCellValueByRange(w,k).map((function(e){return e.value})),_="".concat(p,"!").concat(JSON.stringify(c));n.customDrawWithCache(_,g.x+3,g.y+3,g.width-6,g.height-6,(function(r){o.renderSparkline(r,g.width-6,g.height-6,m,a,(function(r){return e.dataProvider.getColor(r)}))}))}else console.warn("找不到目标 sheet",p)}else console.warn("未知 sparkline 引用格式",f)};try{for(var g=(c=void 0,t.__values((null===(f=a["x14:sparklines"])||void 0===f?void 0:f["x14:sparkline"])||[])),h=g.next();!h.done;h=g.next()){v(h.value)}}catch(e){c={error:e}}finally{try{h&&!h.done&&(d=g.return)&&d.call(g)}finally{if(c)throw c.error}}};try{for(var g=t.__values(d),h=g.next();!h.done;h=g.next()){v(h.value)}}catch(e){a={error:e}}finally{try{h&&!h.done&&(c=g.return)&&c.call(g)}finally{if(a)throw a.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/isPointerOnLink.js*/
- amis.define("e7b786a",(function(r,e,n,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=r("68b98b9"),o=r("8fc69c7");e.isPointerOnLink=function(r,e,n){var t,l,i,f;try{for(var u=a.__values(n),c=u.next();!c.done;c=u.next()){var v=c.value;try{for(var y=(i=void 0,a.__values(v.pos)),d=y.next();!d.done;d=y.next()){var s=d.value;if(o.pointInRect(r,e,s))return v.url}}catch(r){i={error:r}}finally{try{d&&!d.done&&(f=y.return)&&f.call(y)}finally{if(i)throw i.error}}}}catch(r){t={error:r}}finally{try{c&&!c.done&&(l=u.return)&&l.call(u)}finally{if(t)throw t.error}}return!1}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/ResizeBox.js*/
- amis.define("83e94be",(function(t,e,o,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t("22b926c"),l=function(){function t(t){this.controllerSize=14,this.box=i.H("div",{className:"ov-excel-resize-box",parent:t}),this.topLeft=i.H("div",{className:"ov-excel-resize-box-control",parent:this.box}),this.top=i.H("div",{className:"ov-excel-resize-box-control",parent:this.box}),this.topRight=i.H("div",{className:"ov-excel-resize-box-control",parent:this.box}),this.left=i.H("div",{className:"ov-excel-resize-box-control",parent:this.box}),this.right=i.H("div",{className:"ov-excel-resize-box-control",parent:this.box}),this.bottomLeft=i.H("div",{className:"ov-excel-resize-box-control",parent:this.box}),this.bottom=i.H("div",{className:"ov-excel-resize-box-control",parent:this.box}),this.bottomRight=i.H("div",{className:"ov-excel-resize-box-control",parent:this.box}),this.hide()}return t.prototype.updatePosition=function(t,e,o,s){this.box.style.display="block",this.box.style.left="".concat(t,"px"),this.box.style.top="".concat(e,"px"),this.box.style.width="".concat(o,"px"),this.box.style.height="".concat(s,"px"),this.topLeft.style.left="-7px",this.topLeft.style.top="-7px",this.top.style.left="".concat(o/2-this.controllerSize/2,"px"),this.top.style.top="-7px",this.topRight.style.right="-7px",this.topRight.style.top="-7px",this.left.style.left="-7px",this.left.style.top="".concat(s/2-this.controllerSize/2,"px"),this.right.style.right="-7px",this.right.style.top="".concat(s/2-this.controllerSize/2,"px"),this.bottomLeft.style.left="-7px",this.bottomLeft.style.bottom="-7px",this.bottom.style.left="".concat(o/2-this.controllerSize/2,"px"),this.bottom.style.bottom="-7px",this.bottomRight.style.right="-7px",this.bottomRight.style.bottom="-7px"},t.prototype.hide=function(){this.box.style.display="none"},t}();e.ResizeBox=l}));
- ;/*!node_modules/office-viewer/lib/util/onClickOutside.js*/
- amis.define("bee5395",(function(e,n,t,o){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.onClickOutside=function(e,n){var t=function(t){t.target instanceof Node&&!e.contains(t.target)&&n()};return document.addEventListener("mousedown",t),function(){document.removeEventListener("mousedown",t)}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/Icons.js*/
- amis.define("038cecc",(function(n,t,e,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.Icons={filter:'<?xml version="1.0" encoding="UTF-8"?>\n<svg width="217px" height="217px" viewBox="0 0 217 217" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n <title>filter</title>\n <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <g id="filter" transform="translate(2, 2)" stroke="#717171">\n <rect id="Rectangle" stroke-width="4" fill="#FFFFFF" x="0" y="0" width="213" height="213"></rect>\n <g id="Group" transform="translate(57, 79.7096)" stroke-linecap="square" stroke-width="8">\n <line x1="0" y1="0.290367902" x2="48.9405681" y2="48.9300718" id="Line"></line>\n <line x1="49.5" y1="48.7903679" x2="98.2903679" y2="1.0658141e-14" id="Line-2"></line>\n </g>\n </g>\n </g>\n</svg>',filterDown:'<?xml version="1.0" encoding="UTF-8"?>\n<svg width="217px" height="217px" viewBox="0 0 217 217" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n <title>filterDown</title>\n <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <g id="filterDown" transform="translate(2, 2)">\n <rect id="Rectangle" stroke="#717171" stroke-width="4" x="0" y="0" width="213" height="213"></rect>\n <path d="M192.487604,49.3238637 C193.452114,51.6534092 193.054963,53.6420455 191.29615,55.2897728 L149.339943,97.3068182 L149.339943,160.545454 C149.339943,162.931818 148.233592,164.607954 146.020892,165.573864 C145.283325,165.857955 144.574126,166 143.893295,166 C142.361426,166 141.084867,165.460227 140.063621,164.380682 L118.277031,142.5625 C117.199048,141.482955 116.660057,140.204545 116.660057,138.727273 L116.660057,97.3068182 L74.7038504,55.2897728 C72.9450371,53.6420455 72.5478857,51.6534092 73.5123962,49.3238637 C74.4769068,47.1079547 76.1506161,46 78.5335243,46 L187.466476,46 C189.849384,46 191.523093,47.1079546 192.487604,49.3238637 Z" id="Path" fill="#717171" fill-rule="nonzero"></path>\n <polygon id="down_arrow" fill="#717171" fill-rule="nonzero" transform="translate(50, 113) rotate(180) translate(-50, -113)" points="42.4971879 82.9240649 42.4971879 173 57.5028121 173 57.5028121 82.9240649 80 82.9240649 50 53 20 82.9240649"></polygon>\n </g>\n </g>\n</svg>',filterUp:'<?xml version="1.0" encoding="UTF-8"?>\n<svg width="217px" height="217px" viewBox="0 0 217 217" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n <title>filterUp</title>\n <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <g id="filterUp" transform="translate(2, 2)">\n <rect id="Rectangle" stroke="#717171" stroke-width="4" fill="#FFFFFF" x="0" y="0" width="213" height="213"></rect>\n <path d="M191.487604,49.3238637 C192.452114,51.6534092 192.054963,53.6420455 190.29615,55.2897728 L148.339943,97.3068182 L148.339943,160.545454 C148.339943,162.931818 147.233592,164.607954 145.020892,165.573864 C144.283325,165.857955 143.574126,166 142.893295,166 C141.361426,166 140.084867,165.460227 139.063621,164.380682 L117.277031,142.5625 C116.199048,141.482955 115.660057,140.204545 115.660057,138.727273 L115.660057,97.3068182 L73.7038504,55.2897728 C71.9450371,53.6420455 71.5478857,51.6534092 72.5123962,49.3238637 C73.4769068,47.1079547 75.1506161,46 77.5335243,46 L186.466476,46 C188.849384,46 190.523093,47.1079546 191.487604,49.3238637 Z" id="Path" fill="#717171" fill-rule="nonzero"></path>\n <polygon id="up_arrow" fill="#717171" fill-rule="nonzero" points="42.4971879 82.9240649 42.4971879 173 57.5028121 173 57.5028121 82.9240649 80 82.9240649 50 53 20 82.9240649"></polygon>\n </g>\n </g>\n</svg>',hasFilter:'<?xml version="1.0" encoding="UTF-8"?>\n<svg width="217px" height="217px" viewBox="0 0 217 217" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n <title>hasFilter</title>\n <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <g id="hasFilter" transform="translate(2, 2)">\n <rect id="Rectangle" stroke="#717171" stroke-width="4" fill="#FFFFFF" x="0" y="0" width="213" height="213"></rect>\n <path d="M185.487604,49.3238637 C186.452114,51.6534092 186.054963,53.6420455 184.29615,55.2897728 L142.339943,97.3068182 L142.339943,160.545454 C142.339943,162.931818 141.233592,164.607954 139.020892,165.573864 C138.283325,165.857955 137.574126,166 136.893295,166 C135.361426,166 134.084867,165.460227 133.063621,164.380682 L111.277031,142.5625 C110.199048,141.482955 109.660057,140.204545 109.660057,138.727273 L109.660057,97.3068182 L67.7038504,55.2897728 C65.9450371,53.6420455 65.5478857,51.6534092 66.5123962,49.3238637 C67.4769068,47.1079547 69.1506161,46 71.5335243,46 L180.466476,46 C182.849384,46 184.523093,47.1079546 185.487604,49.3238637 Z" id="Path" fill="#717171" fill-rule="nonzero"></path>\n <polygon id="Path" fill="#717171" fill-rule="nonzero" points="80 126 53.5 166 27 126"></polygon>\n </g>\n </g>\n</svg>',left:'<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">\n <path\n d="M8.84182 3.13514C9.04327 3.32401 9.05348 3.64042 8.86462 3.84188L5.43521 7.49991L8.86462 11.1579C9.05348 11.3594 9.04327 11.6758 8.84182 11.8647C8.64036 12.0535 8.32394 12.0433 8.13508 11.8419L4.38508 7.84188C4.20477 7.64955 4.20477 7.35027 4.38508 7.15794L8.13508 3.15794C8.32394 2.95648 8.64036 2.94628 8.84182 3.13514Z"\n fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>\n</svg>\n',menu:'<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">\n <path\n d="M1.5 3C1.22386 3 1 3.22386 1 3.5C1 3.77614 1.22386 4 1.5 4H13.5C13.7761 4 14 3.77614 14 3.5C14 3.22386 13.7761 3 13.5 3H1.5ZM1 7.5C1 7.22386 1.22386 7 1.5 7H13.5C13.7761 7 14 7.22386 14 7.5C14 7.77614 13.7761 8 13.5 8H1.5C1.22386 8 1 7.77614 1 7.5ZM1 11.5C1 11.2239 1.22386 11 1.5 11H13.5C13.7761 11 14 11.2239 14 11.5C14 11.7761 13.7761 12 13.5 12H1.5C1.22386 12 1 11.7761 1 11.5Z"\n fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>\n</svg>\n',plus:'<?xml version="1.0" encoding="UTF-8"?>\n<svg width="323.854906px" height="323.854906px" viewBox="0 0 323.854906 323.854906" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n <title>plus</title>\n <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <g id="plus" transform="translate(161.9275, 161.9275) rotate(45) translate(-161.9275, -161.9275)translate(47.4275, 47.4275)" fill="#717171" fill-rule="nonzero">\n <path d="M5.94750569,5.94752344 C9.99382822,2.01749219 16.4317421,2.01749219 20.4780646,5.94752344 L223.051151,208.52183 C226.98295,212.453652 226.98295,218.949706 223.051151,223.052477 C219.004829,226.982508 212.566915,226.982508 208.520592,223.052477 L5.94750569,20.4781699 C2.0174981,16.431823 2.0174981,9.99387034 5.94750569,5.94752344 Z" id="Path"></path>\n <path d="M226.057525,2.94115239 C229.980825,6.86447578 229.980825,13.3464883 226.057525,17.440391 L17.4402889,226.058848 C13.4027118,229.980384 6.97871231,229.980384 2.94113518,226.058848 C-0.980378394,222.021247 -0.980378394,215.59721 2.94113518,211.559609 L211.558371,2.94115239 C215.595948,-0.980384132 222.019948,-0.980384132 226.057525,2.94115239 Z" id="Path"></path>\n </g>\n </g>\n</svg>',right:'<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg">\n <path\n d="M6.1584 3.13508C6.35985 2.94621 6.67627 2.95642 6.86514 3.15788L10.6151 7.15788C10.7954 7.3502 10.7954 7.64949 10.6151 7.84182L6.86514 11.8418C6.67627 12.0433 6.35985 12.0535 6.1584 11.8646C5.95694 11.6757 5.94673 11.3593 6.1356 11.1579L9.565 7.49985L6.1356 3.84182C5.94673 3.64036 5.95694 3.32394 6.1584 3.13508Z"\n fill="currentColor" fill-rule="evenodd" clip-rule="evenodd"></path>\n</svg>\n',sortDown:'<?xml version="1.0" encoding="UTF-8"?>\n<svg width="186px" height="231px" viewBox="0 0 186 231" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n <title>sortDown</title>\n <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <g id="sortDown">\n <polygon id="Path" fill="#323130" fill-rule="nonzero" points="113 172.593818 120.432357 165.292299 144.358438 189.022234 144.358438 22 154.743375 22 154.743375 189.022234 178.669456 165.292299 186 172.593818 149.550907 209"></polygon>\n <text id="A" font-family="Helvetica" font-size="96" font-weight="normal" fill="#108CEE">\n <tspan x="0" y="209">A</tspan>\n </text>\n <text id="Z" font-family="Helvetica" font-size="96" font-weight="normal" fill="#323130">\n <tspan x="0" y="93">Z</tspan>\n </text>\n </g>\n </g>\n</svg>',sortUP:'<?xml version="1.0" encoding="UTF-8"?>\n<svg width="186px" height="230px" viewBox="0 0 186 230" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">\n <title>sortUP</title>\n <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">\n <g id="sortUP">\n <polygon id="Path" fill="#323130" fill-rule="nonzero" points="113 171.593818 120.432357 164.292299 144.358438 188.022234 144.358438 21 154.743375 21 154.743375 188.022234 178.669456 164.292299 186 171.593818 149.550907 208"></polygon>\n <text id="A" font-family="Helvetica" font-size="96" font-weight="normal" fill="#108CEE">\n <tspan x="0" y="93">A</tspan>\n </text>\n <text id="Z" font-family="Helvetica" font-size="96" font-weight="normal" fill="#323130">\n <tspan x="0" y="208">Z</tspan>\n </text>\n </g>\n </g>\n</svg>'}}));
- ;/*!node_modules/office-viewer/lib/excel/render/ui/Divider.js*/
- amis.define("507734b",(function(e,i,c,d){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var n=e("22b926c"),r=function(e){n.H("div",{className:"excel-divider",parent:e})};i.Divider=r}));
- ;/*!node_modules/office-viewer/lib/util/isNumeric.js*/
- amis.define("7fd15ed",(function(e,i,t,n){"use strict";Object.defineProperty(i,"__esModule",{value:!0}),i.isNumeric=function(e){return!isNaN(parseFloat(e))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/ui/Input.js*/
- amis.define("08eaea5",(function(t,e,n,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var u=0,o=function(){function t(t){var e=this;if(this.input=document.createElement("input"),this.input.value=t.value||"",this.input.placeholder=t.placeholder||"",t.container.appendChild(this.input),this.input.className="excel-input","borderLess"===t.style&&this.input.classList.add("excel-input-border-less"),this.input.oninput=function(){t.onChange(e.input.value)},this.input.onkeydown=function(n){var i;"Enter"===n.key&&(null===(i=t.onEnter)||void 0===i||i.call(t,e.input.value))},t.options&&t.options.length){var n=document.createElement("datalist");n.id="".concat(u++,"-list"),t.container.appendChild(n),t.options.forEach((function(t){var e=document.createElement("option");e.value=t,n.appendChild(e)})),this.input.setAttribute("list",n.id)}}return t.prototype.getElement=function(){return this.input},t.prototype.getValue=function(){return this.input.value},t.prototype.setValue=function(t){this.input.value=t},t.prototype.force=function(){this.input.focus()},t}();e.Input=o}));
- ;/*!node_modules/office-viewer/lib/excel/render/ui/Radio.js*/
- amis.define("0e7eff8",(function(e,n,t,a){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var r=e("68b98b9"),l=0,c=function(){function e(e,n,t,a){var c,o,u=document.createElement("div");e.appendChild(u),u.className="excel-radio-wrapper";var i=function(e){var n="".concat(l++,"-").concat(e.value),r=document.createElement("input");r.type="radio",r.value=e.value,r.checked=e.value===t,r.name="excel-radio",r.id=n,r.onchange=function(){null==a||a(r.value)},u.appendChild(r);var c=document.createElement("label");c.innerText=e.text,c.htmlFor=n,u.appendChild(c)};try{for(var d=r.__values(n),v=d.next();!v.done;v=d.next()){i(v.value)}}catch(e){c={error:e}}finally{try{v&&!v.done&&(o=d.return)&&o.call(d)}finally{if(c)throw c.error}}this.element=u}return e.prototype.getValue=function(){var e=this.element.querySelector("input:checked");return null==e?void 0:e.value},e}();n.Radio=c}));
- ;/*!node_modules/office-viewer/lib/excel/render/ui/Select.js*/
- amis.define("dab7399",(function(e,t,n,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var l=function(){function e(e,t,n,a){var l=document.createElement("select");e.appendChild(l),this.element=l,l.className="excel-select",t.forEach((function(e){var t=document.createElement("option");t.value=e.value,t.textContent=e.text,e.value===n&&(t.selected=!0),l.appendChild(t)})),l.addEventListener("change",(function(){a(l.value)}))}return e.prototype.setValue=function(e){this.element.value=e},e.prototype.getValue=function(){return this.element.value},e}();t.Select=l}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/buildOperatorOptions.js*/
- amis.define("7f51ac4",(function(t,e,a,u){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.buildOperatorOptions=function(t,e){switch(t){case"text":return[{text:e("customFilter.equal"),value:"equal"},{text:e("customFilter.notEqual"),value:"notEqual"},{text:e("customFilter.beginsWith"),value:"beginsWith"},{text:e("customFilter.notBeginsWith"),value:"notBeginsWith"},{text:e("customFilter.endsWith"),value:"endsWith"},{text:e("customFilter.notEndsWith"),value:"notEndsWith"},{text:e("customFilter.contains"),value:"contains"},{text:e("customFilter.notContains"),value:"notContains"}];case"number":case"date":return[{text:e("customFilter.equal"),value:"equal"},{text:e("customFilter.notEqual"),value:"notEqual"},{text:e("customFilter.greaterThan"),value:"greaterThan"},{text:e("customFilter.greaterThanOrEqual"),value:"greaterThanOrEqual"},{text:e("customFilter.lessThan"),value:"lessThan"},{text:e("customFilter.lessThanOrEqual"),value:"lessThanOrEqual"}]}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/fromOperatorUI.js*/
- amis.define("593a13e",(function(o,t,a,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.fromOperatorUI=function(o,t){return"contains"===o?{operator:"equal",val:"*".concat(t,"*")}:"beginsWith"===o?{operator:"equal",val:"".concat(t,"*")}:"endsWith"===o?{operator:"equal",val:"*".concat(t)}:"notContains"===o?{operator:"notEqual",val:"*".concat(t,"*")}:"notBeginsWith"===o?{operator:"notEqual",val:"".concat(t,"*")}:"notEndsWith"===o?{operator:"notEqual",val:"*".concat(t)}:{operator:o,val:t}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/getCustomFilters.js*/
- amis.define("956c740",(function(e,t,n,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getCustomFilters=function(e,t){var n,i=null===(n=e.filterColumn)||void 0===n?void 0:n.find((function(e){return e.colId===t}));return i?i.customFilters:null}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/setCustomFilters.js*/
- amis.define("8f9a930",(function(e,t,i,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.setCustomFilters=function(e,t,i){var l,o=null===(l=e.filterColumn)||void 0===l?void 0:l.find((function(e){return e.colId===t}));o?o.customFilters=i:(e.filterColumn=e.filterColumn||[],e.filterColumn.push({colId:t,customFilters:i}))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/toOperatorUI.js*/
- amis.define("dabb193",(function(t,i,n,e){"use strict";Object.defineProperty(i,"__esModule",{value:!0}),i.toOperatorUI=function(t,i){if("equal"===t){if(i.startsWith("*")&&i.endsWith("*"))return"contains";if(i.endsWith("*"))return"beginsWith";if(i.startsWith("*"))return"endsWith"}if("notEqual"===t){if(i.startsWith("*")&&i.endsWith("*"))return"notContains";if(i.endsWith("*"))return"notBeginsWith";if(i.startsWith("*"))return"notEndsWith"}return t}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/CustomFiltersUI.js*/
- amis.define("e4a2fd3",(function(t,e,i,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=t("68b98b9"),r=t("22b926c"),l=t("7fd15ed"),n=t("08eaea5"),u=t("0e7eff8"),a=t("dab7399"),h=t("7f51ac4"),m=t("593a13e"),c=t("956c740"),d=t("8f9a930"),p=t("dabb193"),F=function(){function t(t,e,i,s,n,u,a,h){var m,d;this.operatorOptions=[],this.valueType="text",this.customFilterItems=[],this.sheet=i,this.colIndex=n,this.autoFilter=s,this.headerRowCount=u,this.autoFilterIcon=t,this.texts=a,a.every(l.isNumeric)&&(this.valueType="number"),h&&(this.valueType="date"),this.buildOperatorOptions();var p=r.H("div",{className:"ov-excel-auto-filter-menu__custom-filters",parent:e});this.customFiltersContainer=p;var F=c.getCustomFilters(s,n),v=(null==F?void 0:F.customFilter)||[];if(v.length)if(1===v.length)this.buildCustomFilterItem(v[0]),this.buildCustomFilterItemAnd(),this.buildCustomFilterItem();else if(2===v.length)this.buildCustomFilterItem(v[0]),this.buildCustomFilterItemAnd(),this.buildCustomFilterItem(v[1]);else try{for(var f=o.__values(v),I=f.next();!I.done;I=f.next()){var b=I.value;this.buildCustomFilterItem(b)}}catch(t){m={error:t}}finally{try{I&&!I.done&&(d=f.return)&&d.call(f)}finally{if(m)throw m.error}}else this.buildCustomFilterItem()}return t.prototype.buildOperatorOptions=function(){this.operatorOptions=h.buildOperatorOptions(this.valueType,this.sheet.translate.bind(this.sheet))},t.prototype.buildCustomFilterItemAnd=function(t){var e=this;void 0===t&&(t=!0);var i=[{text:this.sheet.translate("customFilter.and"),value:"and"},{text:this.sheet.translate("customFilter.or"),value:"or"}];this.andRadio=new u.Radio(this.customFiltersContainer,i,t?"and":"or",(function(t){e.syncCustomFilters()}))},t.prototype.buildCustomFilterItem=function(t){var e=this,i=(null==t?void 0:t.operator)||"equal",s=((null==t?void 0:t.val)||"").replace(/\*/g,""),o=this.customFiltersContainer,l=r.H("div",{className:"ov-excel-auto-filter-menu__custom-filters-item-input",parent:o}),u=new a.Select(l,this.operatorOptions,p.toOperatorUI(i,s),(function(){e.syncCustomFilters()})),h=new n.Input({container:l,value:s,onChange:function(){e.syncCustomFilters()},style:"normal",options:this.texts});this.customFilterItems.push({input:h,select:u})},t.prototype.syncCustomFilters=function(){var t,e=this.sheet,i=this.autoFilter,s=this.headerRowCount,o=this.customFilterItems.map((function(t){return m.fromOperatorUI(t.select.getValue(),t.input.getValue())})).filter((function(t){return""!==t.val})),r=!0;"or"===(null===(t=this.andRadio)||void 0===t?void 0:t.getValue())&&(r=!1),1===this.customFilterItems.length&&1===o.length&&(this.buildCustomFilterItemAnd(),this.buildCustomFilterItem()),d.setCustomFilters(i,this.colIndex,{and:r,customFilter:o}),e.applyAutoFilter(i,s),e.getWorkbook().uiEvent.emit("APPLY_AUTO_FILTER",e.getIndex()),this.autoFilterIcon.syncFilterIcon()},t}();e.CustomFiltersUI=F}));
- ;/*!node_modules/office-viewer/lib/excel/render/ui/CheckBox.js*/
- amis.define("51fec73",(function(e,t,c,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("22b926c"),i=function(){function e(e,t,c){this.option=t;var n=o.H("div",{className:"excel-checkbox-container",parent:e}),i=o.H("label",{parent:n});this.checkboxContainer=n;var h=o.H("input",{type:"checkbox",parent:i});this.checkbox=h,h.checked=t.checked,h.onchange=function(){t.checked=h.checked,c(h.checked,t)},o.H("span",{innerText:t.text,parent:i})}return e.prototype.getText=function(){return this.option.text},e.prototype.setChecked=function(e){this.option.checked=e,this.checkbox.checked=e},e.prototype.isChecked=function(){return this.checkbox.checked},e.prototype.show=function(){this.checkboxContainer.style.display="block"},e.prototype.hide=function(){this.checkboxContainer.style.display="none"},e}();t.CheckBox=i}));
- ;/*!node_modules/office-viewer/lib/excel/render/ui/CheckBoxList.js*/
- amis.define("1d2e6aa",(function(e,t,r,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var c=e("68b98b9"),o=e("22b926c"),a=e("51fec73"),i=e("08eaea5"),h=function(){function e(e,t,r,n,h){var l,s;void 0===r&&(r="");var u=this;this.checkBoxes=[],this.options=n;var f=o.H("div",{className:"excel-checkbox-list-wrapper",parent:e}),v=new i.Input({container:f,placeholder:r,onChange:function(e){u.handleSearch(e)}});this.searchInput=v;var x=o.H("div",{className:"excel-checkbox-list",parent:f});this.listContainer=x;var d={value:"__all__",text:t,checked:!0},k=new a.CheckBox(x,d,(function(e){u.checkBoxes.forEach((function(t){t.setChecked(e)})),h(e,d,n)}));this.checkAllBox=k;try{for(var y=c.__values(n),p=y.next();!p.done;p=y.next()){var C=p.value,_=new a.CheckBox(x,C,(function(e,t){h(e,t,n),u.syncCheckAll()}));this.checkBoxes.push(_)}}catch(e){l={error:e}}finally{try{p&&!p.done&&(s=y.return)&&s.call(y)}finally{if(l)throw l.error}}this.syncCheckAll()}return e.prototype.handleSearch=function(e){var t,r,n,o;if(e)try{for(var a=c.__values(this.checkBoxes),i=a.next();!i.done;i=a.next()){(s=i.value).getText().toLowerCase().indexOf(e.toLowerCase())>-1?s.show():s.hide()}}catch(e){t={error:e}}finally{try{i&&!i.done&&(r=a.return)&&r.call(a)}finally{if(t)throw t.error}}else try{for(var h=c.__values(this.checkBoxes),l=h.next();!l.done;l=h.next()){var s;(s=l.value).show()}}catch(e){n={error:e}}finally{try{l&&!l.done&&(o=h.return)&&o.call(h)}finally{if(n)throw n.error}}},e.prototype.syncCheckAll=function(){var e=this.checkBoxes.every((function(e){return e.isChecked()}));this.checkAllBox.setChecked(e)},e.prototype.getOptions=function(){return this.options},e}();t.CheckBoxList=h}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/getFilterValues.js*/
- amis.define("2f89ee9",(function(e,r,l,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9");r.getFilterValues=function(e,r){var l,n,i,o,a=new Set,f=null===(i=e.filterColumn)||void 0===i?void 0:i.find((function(e){return e.colId===r}));if(f)try{for(var u=t.__values((null===(o=f.filters)||void 0===o?void 0:o.filter)||[]),d=u.next();!d.done;d=u.next()){var v=d.value;v.val&&a.add(v.val)}}catch(e){l={error:e}}finally{try{d&&!d.done&&(n=u.return)&&n.call(u)}finally{if(l)throw l.error}}return a}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/setFilterValues.js*/
- amis.define("e5d35ba",(function(e,r,l,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var i=e("68b98b9");r.setFilterValues=function(e,r,l){var t,n,f,o=l.every((function(e){return e.checked})),u=null===(f=e.filterColumn)||void 0===f?void 0:f.find((function(e){return e.colId===r})),a=[];try{for(var c=i.__values(l),d=c.next();!d.done;d=c.next()){var v=d.value;v.checked&&a.push({val:v.value})}}catch(e){t={error:e}}finally{try{d&&!d.done&&(n=c.return)&&n.call(c)}finally{if(t)throw t.error}}if(u){if(o)return void(u.filters=void 0);u.filters={filter:a}}else o||(e.filterColumn=e.filterColumn||[],e.filterColumn.push({colId:r,filters:{filter:a}}))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/FiltersUI.js*/
- amis.define("cc3b8db",(function(e,t,a,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("22b926c"),c=e("1d2e6aa"),l=e("2f89ee9"),n=e("e5d35ba"),s=function(e,t,a,i,s,o,u){var f=r.H("div",{className:"ov-excel-auto-filter__menu-filter-filters",parent:t});this.filtersContainer=f;var d=l.getFilterValues(i,s),v=0===d.size,h=u.map((function(e){return{text:e,value:e,checked:v||d.has(e)}})),b=a.translate("checkBox.selectAll"),k=a.translate("checkBox.search");new c.CheckBoxList(f,b,k,h,(function(t,r,c){n.setFilterValues(i,s,c),a.applyAutoFilter(i,o),a.getWorkbook().uiEvent.emit("APPLY_AUTO_FILTER",a.getIndex()),e.syncFilterIcon()}))};t.FiltersUI=s}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/FilterColumnUI.js*/
- amis.define("27a6334",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),l=e("507734b"),i=e("e4a2fd3"),o=e("cc3b8db"),s=function(e,r,t,a,s,d,u){var v,f,c=n.__assign({},s);c.startRow+=u,c.startCol+=d,c.endCol=c.startCol;var w=t.getCellValueByRange(c,!0),y=new Set,b=!1;try{for(var C=n.__values(w),_=C.next();!_.done;_=C.next()){var m=_.value;null!=m&&""!==m.text&&(m.isDate&&(b=!0),y.add(m.text))}}catch(e){v={error:e}}finally{try{_&&!_.done&&(f=C.return)&&f.call(C)}finally{if(v)throw v.error}}var x=Array.from(y).sort();new l.Divider(r),new i.CustomFiltersUI(e,r,t,a,d,u,x,b),new l.Divider(r),new o.FiltersUI(e,r,t,a,d,u,x)};r.FilterColumnUI=s}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/sortState/SortButtonUI.js*/
- amis.define("0941e37",(function(t,e,i,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=t("22b926c"),s=function(){function t(t,e,i,o,s){var a=this,c=n.H("div",{className:"ov-excel-auto-filter__sort-button",parent:t});this.element=c,c.addEventListener("click",(function(){i(a.active)})),n.H("div",{className:"ov-excel-auto-filter__sort-button-icon",parent:c}).innerHTML=s,n.H("div",{className:"ov-excel-auto-filter__sort-button-text",parent:c}).textContent=e,this.active=o}return t.prototype.setActive=function(t){this.active=t,t?this.element.classList.add("ov-excel-auto-filter__sort-button-active"):this.element.classList.remove("ov-excel-auto-filter__sort-button-active")},t}();e.SortButtonUI=s}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/sortState/getColumnSortOrder.js*/
- amis.define("f8e20ea",(function(e,r,n,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=e("68b98b9"),o=e("9a404b6");r.getColumnSortOrder=function(e,r,n){var t,i;if(!n)return"none";try{for(var l=a.__values(n.sortCondition||[]),f=l.next();!f.done;f=l.next()){var s=f.value,u=s.ref;if(u){var d=o.parseRange(u),c=r.startCol;r.endCol;if(c+e===d.startCol)return s.descending?"desc":"asc"}}}catch(e){t={error:e}}finally{try{f&&!f.done&&(i=l.return)&&i.call(l)}finally{if(t)throw t.error}}return"none"}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/sortState/setColumnSortOrder.js*/
- amis.define("a730faf",(function(t,r,e,o){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=t("68b98b9"),a=t("9a404b6");r.setColumnSortOrder=function(t,r,e,o,i,s){var d,l,f,u=n.__assign({},e);u.startCol+=r,u.endCol+=r;var v={ref:a.rangeRefToString(u),descending:"desc"===i};if(!o.sortState){var c=n.__assign({},e);c.startRow+=s;var C=a.rangeRefToString(c);return o.sortState={ref:C,sortCondition:[v]},void t.applyAutoFilter(o,s)}void 0===o.sortState.sortCondition&&(o.sortState.sortCondition=[]);try{for(var g=n.__values((null===(f=o.sortState)||void 0===f?void 0:f.sortCondition)||[]),p=g.next();!p.done;p=g.next()){var S=p.value,y=a.parseRange(S.ref||"");if(u.startCol===y.startCol)return y.endRow=u.endRow,S.descending="desc"===i,void t.applyAutoFilter(o,s)}}catch(t){d={error:t}}finally{try{p&&!p.done&&(l=g.return)&&l.call(g)}finally{if(d)throw d.error}}o.sortState.sortCondition.push(v),t.applyAutoFilter(o,s)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/sortState/SortStateUI.js*/
- amis.define("3231dd7",(function(t,e,s,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=t("22b926c"),i=t("038cecc"),r=t("0941e37"),c=t("f8e20ea"),u=t("a730faf"),a=function(){function t(t,e,s,o,c,u,a){void 0===a&&(a=1);var h=this;this.autoFilterIcon=t,this.rangeRef=c;var l=n.H("div",{className:"excel-auto-filter__menu-sort",parent:e});this.sortContainer=l,this.colIndex=u,this.autoFilter=o,this.headerRowCount=a,this.sheet=s;var d=new r.SortButtonUI(l,s.translate("autoFilter.sortAscending"),(function(t){h.clickButton("asc")}),!1,i.Icons.sortUP);this.sortAscButton=d;var v=new r.SortButtonUI(l,s.translate("autoFilter.sortDescending"),(function(t){h.clickButton("desc")}),!1,i.Icons.sortDown);this.sortDescButton=v,this.syncButtonActive()}return t.prototype.clickButton=function(t){var e=this.sheet,s=this.colIndex,o=this.rangeRef,n=this.autoFilter,i=this.headerRowCount;u.setColumnSortOrder(e,s,o,n,t,i),this.sheet.getWorkbook().uiEvent.emit("APPLY_AUTO_FILTER",this.sheet.getIndex()),this.syncButtonActive(),this.autoFilterIcon.syncFilterIcon()},t.prototype.syncButtonActive=function(){var t=this.colIndex,e=this.rangeRef,s=this.autoFilter,o=c.getColumnSortOrder(t,e,s.sortState);"asc"===o?(this.sortAscButton.setActive(!0),this.sortDescButton.setActive(!1)):"desc"===o&&(this.sortAscButton.setActive(!1),this.sortDescButton.setActive(!0))},t}();e.SortStateUI=a}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/AutoFilterMenuUI.js*/
- amis.define("3fb1f6b",(function(e,t,n,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("22b926c"),s=e("27a6334"),a=e("3231dd7"),r=function(){function e(e,t,n,o,r,u,d){void 0===d&&(d=1);var l=i.H("div",{className:"ov-excel-auto-filter-menu",parent:t});this.menuContainer=l,new a.SortStateUI(e,l,n,o,r,u,d),new s.FilterColumnUI(e,l,n,o,r,u,d),this.autoFilter=o,this.colIndex=u,this.sheet=n,l.addEventListener("mousedown",(function(e){e.stopPropagation()})),l.addEventListener("wheel",(function(e){e.stopPropagation()}))}return e.prototype.hide=function(){this.menuContainer.style.display="none"},e.prototype.show=function(){this.menuContainer.style.display="flex"},e}();t.AutoFilterMenuUI=r}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/filterColumn/hasFilterColumn.js*/
- amis.define("d363a1e",(function(r,e,l,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=r("68b98b9");e.hasFilterColumn=function(r,e){var l,t,n,o,u,f,d=r.filterColumn;if(!d)return!1;try{for(var v=i.__values(d),a=v.next();!a.done;a=v.next()){var s=a.value;if(s.colId===e){if(s.filters&&(null===(o=null===(n=s.filters)||void 0===n?void 0:n.filter)||void 0===o?void 0:o.length))return!0;if(s.customFilters&&(null===(f=null===(u=s.customFilters)||void 0===u?void 0:u.customFilter)||void 0===f?void 0:f.length))return!0}}}catch(r){l={error:r}}finally{try{a&&!a.done&&(t=v.return)&&t.call(v)}finally{if(l)throw l.error}}return!1}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/AutoFilterIconUI.js*/
- amis.define("edb1a84",(function(t,e,i,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=t("22b926c"),s=t("bee5395"),r=t("038cecc"),c=t("3fb1f6b"),l=t("d363a1e"),h=t("f8e20ea"),a=function(){function t(t,e,i,n,r,l,h){void 0===h&&(h=1);var a=this;this.sheet=t,this.rangeRef=n,this.colIndex=r,this.autoFilter=i;var u=o.H("div",{className:"ov-excel-auto-filter-icon-container",parent:e});u.dataset.fid=l,this.filterIconContainer=u,u.style.display="none";var f=o.H("div",{className:"ov-excel-auto-filter-icon",parent:u});f.innerHTML=this.getFilterIcon(),this.filterIcon=f,this.filterMenu=new c.AutoFilterMenuUI(this,u,t,i,n,r,h),f.addEventListener("click",this.handleClick.bind(this)),this.removeClickOutsideEvent=s.onClickOutside(u,(function(){a.hideMenu()}))}return t.prototype.syncFilterIcon=function(){this.filterIcon.innerHTML=this.getFilterIcon()},t.prototype.getFilterIcon=function(){var t=h.getColumnSortOrder(this.colIndex,this.rangeRef,this.autoFilter.sortState),e=r.Icons.filter;return l.hasFilterColumn(this.autoFilter,this.colIndex)&&(e=r.Icons.hasFilter),"asc"===t?e=r.Icons.filterUp:"desc"===t&&(e=r.Icons.filterDown),e},t.prototype.updatePosition=function(t,e,i,n){this.filterIconContainer.style.display="block",this.filterIconContainer.style.left="".concat(t,"px"),this.filterIconContainer.style.top="".concat(e,"px"),this.filterIconContainer.style.width="".concat(n,"px"),this.filterIconContainer.style.height="".concat(i,"px"),this.filterIcon.style.width="".concat(i-4,"px")},t.prototype.handleClick=function(){var t=this.sheet.getLastAutoFilterIcon();t&&t.hideMenu(),this.sheet.setLastAutoFilterIcon(this),this.showMenu()},t.prototype.showMenu=function(){this.filterMenu.show()},t.prototype.hideMenu=function(){this.filterMenu.hide()},t.prototype.hide=function(){this.filterIconContainer.style.display="none"},t.prototype.destroy=function(){this.filterIconContainer.remove(),this.removeClickOutsideEvent()},t}();e.AutoFilterIconUI=a}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/renderAutoFilterIcon.js*/
- amis.define("1a199fc",(function(e,t,a,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("9a404b6"),i=e("8fc69c7"),c=e("edb1a84"),n={};t.renderAutoFilterIcon=function(e,t,a,o,l){void 0===l&&(l=1);var d=t.ref;if(d){for(var f=e.getDataDisplayRect(),s=e.getRowColSize(),u=s.rowHeaderWidth,v=s.colHeaderHeight,h=r.parseRange(d),g=h.startRow,w=h.startCol,p=h.endCol,y=-1,C=w;C<=p;C++){y++;var F="autoFilter-".concat(a,"-").concat(y);if(!o.querySelector('[data-fid="'.concat(F,'"]'))){var I=new c.AutoFilterIconUI(e,o,t,h,y,F,l);n[F]=I}}y=-1;for(C=w;C<=p;C++){y++;F="autoFilter-".concat(a,"-").concat(y);var R=e.getCellPosition(g,C),b=n[F];i.rectIntersect(f,R)?b.updatePosition(R.x-u,R.y-v,Math.min(28,R.height),R.width):b.hide()}}else console.warn("缺少 ref 字段",t)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/autoFilter/renderAutoFilter.js*/
- amis.define("d05af8e",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var o=e("68b98b9"),l=e("1a199fc"),n=0;r.renderAutoFilter=function(e,r){var t,a,i=e.getAutoFilter();i&&l.renderAutoFilterIcon(e,i,"sheetAutoFilter",r);var u=e.getTables();try{for(var c=o.__values(u),f=c.next();!f.done;f=c.next()){var d=f.value;d.autoFilter&&l.renderAutoFilterIcon(e,d.autoFilter,"table-".concat(n++),r)}}catch(e){t={error:e}}finally{try{f&&!f.done&&(a=c.return)&&a.call(c)}finally{if(t)throw t.error}}}}));
- ;/*!node_modules/office-viewer/lib/util/onClickOutsideOnce.js*/
- amis.define("d49923c",(function(e,n,t,o){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.onClickOutsideOnce=function(e,n){var t=function(o){o.target instanceof Node&&!e.contains(o.target)&&(n(),document.removeEventListener("mousedown",t))};document.addEventListener("mousedown",t)}}));
- ;/*!node_modules/office-viewer/lib/excel/types/worksheet/CellData.js*/
- amis.define("bec4e73",(function(e,t,n,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var s=e("68b98b9");t.hasValue=function(e){return"string"==typeof e||"object"==typeof e&&("date"===e.type||"error"===e.type||"rich"===e.type||"style"===e.type||"formula"===e.type)},t.updateValue=function(e,t){return void 0===e&&(e=""),t?"string"==typeof t?e:"type"in t&&"blank"===t.type?void 0!==t.s?{type:"style",value:e,s:t.s}:e:"value"in t?s.__assign(s.__assign({},t),{value:e}):t:e||""}}));
- ;/*!node_modules/office-viewer/lib/excel/edit/ui/CellEditor.js*/
- amis.define("ee2a2ca",(function(t,e,i,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var s,a=t("d49923c"),l=t("08eaea5"),n=t("bec4e73"),r=function(){function t(t,e,i){var o,n,r=this;s&&s.close(),this.workbook=e,this.editorContainer=document.createElement("div"),this.editorContainer.className="excel-cell-editor",t.appendChild(this.editorContainer),this.hitTestResult=i;var h=this.workbook.getActiveSheet();this.sheet=h,this.row=i.startRow,this.col=i.startCol;var c=h.getCellInfo(i.startRow,i.startCol);this.cellData=h.getCellData(i.startRow,i.startCol);var d=h.getCellDisplaySize(null!==(o=i.realRow)&&void 0!==o?o:i.startRow,null!==(n=i.realCol)&&void 0!==n?n:i.startCol,i.x,i.y),u=d.x,C=d.y,v=d.width,w=d.height,p=h.getRowColSize();u=u-p.rowHeaderWidth+1,C=C-p.colHeaderHeight+1,v-=2,w-=2,this.initValue=c.value,this.value=c.value,new l.Input({container:this.editorContainer,value:c.value,onChange:function(t){r.handleInput(t)},onEnter:function(t){r.close()},style:"borderLess"}).force(),this.editorContainer.style.left="".concat(u,"px"),this.editorContainer.style.top="".concat(C,"px"),this.editorContainer.style.width="".concat(v,"px"),this.editorContainer.style.height="".concat(w,"px"),a.onClickOutsideOnce(this.editorContainer,(function(){r.close()})),s=this}return t.prototype.handleInput=function(t){this.value=t},t.prototype.close=function(){this.editorContainer.remove(),void 0!==this.value&&this.value!==this.initValue&&(this.sheet.updateCellValue(this.row,this.col,n.updateValue(this.value,this.cellData)),this.workbook.uiEvent.emit("UPDATE_RANGE",this.sheet.getIndex(),{startRow:this.row,startCol:this.col,endRow:this.row,endCol:this.col}))},t}();e.CellEditor=r}));
- ;/*!node_modules/office-viewer/lib/excel/render/ExcelRender.js*/
- amis.define("54a43f2",(function(t,e,i,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=t("68b98b9"),r=t("543a05d"),s=t("b4e88e2"),a=t("b6cdd08"),h=t("6431787"),l=t("7a93be4"),d=t("7fd8702"),c=t("2d091ab"),u=t("4078206"),f=t("2d74866"),v=t("cd7455e"),w=t("4ced7d0"),p=t("9f22909"),g=t("e7b786a"),C=t("83e94be"),S=t("d05af8e"),b=t("5fc9c42"),k=t("ee2a2ca"),D=t("1ea8373"),E=t("ee2e51f"),M=function(){function t(t,e,i,o,n){var a=this;this.lastScroll={left:0,top:0},this.linkPositionCache=[],this.autoFiltersUI=[],this.lastScrollDirection="vertical",this.lastScrollDirectionTime=0,this.scrollDirectionLockTime=100,this.needReDraw=!1,this.loadedFont=new Set,this.contentContainer=t,this.dataContainer=e,this.workbook=i,this.renderOptions=n,this.contentContainer.addEventListener("wheel",this.handleWheel.bind(this),{passive:!1}),this.contentContainer.addEventListener("mousedown",this.handleMousedown.bind(this)),this.contentContainer.addEventListener("mouseup",this.handleMouseup.bind(this)),this.contentContainer.addEventListener("touchstart",this.handleMousedown.bind(this)),this.handleMousemove=d.debounce(this.handleMousemove,16),this.contentContainer.addEventListener("mousemove",this.handleMousemove.bind(this)),this.dataContainer.addEventListener("dblclick",this.handleDblclick.bind(this)),this.sheetCanvas=new s.SheetCanvas(i,o);var h=this.sheetCanvas.getCanvasElement();this.contentContainer.appendChild(h),this.selectionCanvas=new u.SelectionCanvas(i,o),this.contentContainer.appendChild(this.selectionCanvas.getCanvasElement()),this.scrollbar=new r.ScrollBar(t,i),this.resizeBox=new C.ResizeBox(t),this.defaultFontSize=o.getDefaultFontSize(),this.dataProvider=o,this.draw=this.draw.bind(this),i.uiEvent.on("SWITCH_SHEET",(function(t){a.dataContainer.innerHTML="",a.draw()})),i.uiEvent.on("CHANGE_ZOOM_LEVEL",(function(t){a.sheetCanvas.updateZoom(t),a.selectionCanvas.updateZoom(t),a.draw(),a.selectionCanvas.draw()})),i.uiEvent.on("SCROLL_X",(function(t){a.workbook.getActiveSheet().setScrollLeft(t),a.draw()})),i.uiEvent.on("SCROLL_Y",(function(t){a.workbook.getActiveSheet().setScrollTop(t),a.draw()})),i.uiEvent.on("APPLY_AUTO_FILTER",(function(t){a.workbook.getActiveSheet().getIndex()===t&&a.draw()})),i.uiEvent.on("UPDATE_RANGE",(function(t){a.workbook.getActiveSheet().getIndex()===t&&a.draw()})),i.uiEvent.on("UPDATE_ROW_HEIGHT",(function(t,e){a.draw()})),i.uiEvent.on("UPDATE_COL_WIDTH",(function(t,e){a.draw()})),this.watchResize()}return t.prototype.getSelectionCanvas=function(){return this.selectionCanvas},t.prototype.watchResize=function(){var t=this,e=this.contentContainer,i=e.clientWidth,o=e.clientHeight;new ResizeObserver((function(e){var n=e[0].contentRect,r=n.width,s=n.height;Math.floor(i)===Math.floor(r)&&Math.floor(o)===Math.floor(s)||(i=r,o=s,t.draw())})).observe(e)},t.prototype.handleWheel=function(t){var e=t.deltaX,i=t.deltaY;t.deltaMode;var o=this.workbook.getActiveSheet(),n=t.shiftKey||Math.abs(e)>Math.abs(i);if(t.preventDefault(),t.stopPropagation(),this.ignoreScrollDirection(n))return!1;e=Math.floor(e),i=Math.floor(i),n?o.deltaScrollLeft(e):o.deltaScrollTop(i);var r={left:Math.floor(o.getScrollLeft()),top:Math.floor(o.getScrollTop())};return this.lastScroll.left===r.left&&this.lastScroll.top===r.top||(this.lastScroll=r,this.draw(),this.afterScroll(r)),!1},t.prototype.handleDblclick=function(t){if(!1!==this.renderOptions.editable){var e=this.getMouseRelativePosition(t),i=e.offsetX,o=e.offsetY,n=this.workbook.getActiveSheet().hitTest(i,o);n&&"cell"===n.type&&new k.CellEditor(this.dataContainer,this.workbook,n)}},t.prototype.handleMousedown=function(t){var e=this.getMouseRelativePosition(t),i=e.offsetX,o=e.offsetY,n=this.workbook.getActiveSheet().hitTest(i,o);n&&v.handleMousedown(this.workbook,n,this.contentContainer,t)},t.prototype.handleMouseup=function(t){if(!v.dragState.isDragging){var e=this.getMouseRelativePosition(t),i=e.offsetX,o=e.offsetY,n=g.isPointerOnLink(i,o,this.linkPositionCache);n&&window.open(n);var r=this.workbook.getActiveSheet().hitTest(i,o);this.resizeBox.hide(),r&&"drawing"===r.type&&(this.selectionCanvas.clearSelection(),this.resizeBox.updatePosition(r.x,r.y,r.width,r.height))}},t.prototype.handleMousemove=function(t){var e,i;if(!v.dragState.isDragging){var o=this.getMouseRelativePosition(t),n=o.offsetX,r=o.offsetY;n=Math.round(n),r=Math.round(r),this.contentContainer.style.cursor="cell";var s=this.workbook.getActiveSheet().hitTest(n,r);this.renderOptions.debug&&(null===(i=(e=this.renderOptions).mousePositionTracker)||void 0===i||i.call(e,n,r,s));var a=g.isPointerOnLink(n,r,this.linkPositionCache);f.updateCursor(this.contentContainer,s,a)}},t.prototype.getMouseRelativePosition=function(t){var e=b.getMouseRelativePosition(this.contentContainer,t),i=e.offsetX,o=e.offsetY,n=this.workbook.getActiveSheet().getZoomLevel();return{offsetX:i/=n,offsetY:o/=n}},t.prototype.ignoreScrollDirection=function(t){if(Date.now()-this.lastScrollDirectionTime<this.scrollDirectionLockTime){if("horizontal"===this.lastScrollDirection&&!t)return!0;if("vertical"===this.lastScrollDirection&&t)return!0}return this.lastScrollDirection=t?"horizontal":"vertical",this.lastScrollDirectionTime=Date.now(),!1},t.prototype.afterScroll=function(t){this.workbook.uiEvent.emit("AFTER_SCROLL",t)},t.prototype.getWidthAndHeight=function(){var t=this.workbook.getViewpointSize();return{width:t.width,height:t.height}},t.prototype.draw=function(t){return void 0===t&&(t=!1),n.__awaiter(this,void 0,void 0,(function(){var e,i,o,r,s,d,u,f,v;return n.__generator(this,(function(n){switch(n.label){case 0:return e=performance.now(),i=this.sheetCanvas,o=this.workbook.getActiveSheet(),r=this.getWidthAndHeight(),s=r.width,d=r.height,this.linkPositionCache=[],u=o.getViewPointRange(s,d),this.workbook.getActiveSheet().updateViewRange(u),f=o.getViewPointData(u),i.clear(),o.updateRowHeaderWidth(u),a.drawGridLines(o,u,i,d,s,this.renderOptions),p.drawSparkline(o,u,i),h.drawCells(this,o,this.renderOptions,i,f,this.linkPositionCache),S.renderAutoFilter(o,this.dataContainer),w.drawDrawing(this,o,u,i),l.drawRowColHeaders(o,u,i,this.renderOptions,this.defaultFontSize,this.dataProvider.getDefaultFontStyle()),v=c.drawFrozen(this,o,this.dataProvider,this.renderOptions,i,d,s,this.linkPositionCache),this.workbook.getActiveSheet().updateFrozenViewRange(v),this.renderOptions.debug&&console.log("draw time",(performance.now()-e).toFixed(2),"ms"),[4,this.loadFont()];case 1:return n.sent(),this.needReDraw&&!1===t&&(this.needReDraw=!1,this.draw(!0)),[2]}}))}))},t.prototype.loadFont=function(){return n.__awaiter(this,void 0,void 0,(function(){var t,e,i,o,r,s,a,h,l,d;return n.__generator(this,(function(c){switch(c.label){case 0:t=this.renderOptions.fontURL,e=D.getAllNotAvailableFont(),i=!1,c.label=1;case 1:c.trys.push([1,7,8,9]),o=n.__values(e),r=o.next(),c.label=2;case 2:return r.done?[3,6]:(s=r.value,this.loadedFont.has(s)?[3,5]:s in t?(this.loadedFont.add(s),[4,(a=new FontFace(s,"url(".concat(t[s],")"))).load()]):[3,4]);case 3:return c.sent(),document.fonts.add(a),i=!0,[3,5];case 4:console.warn("font not found",s),c.label=5;case 5:return r=o.next(),[3,2];case 6:return[3,9];case 7:return h=c.sent(),l={error:h},[3,9];case 8:try{r&&!r.done&&(d=o.return)&&d.call(o)}finally{if(l)throw l.error}return[7];case 9:return i&&(E.inValidTextSizeCache(),this.setNeedReDraw()),[2]}}))}))},t.prototype.setNeedReDraw=function(){var t=(new Date).getTime();this.needReDraw&&t-this.needReDraw<100||(this.needReDraw=(new Date).getTime())},t.prototype.destroy=function(){this.contentContainer.removeEventListener("wheel",this.handleWheel),this.contentContainer.removeEventListener("mousedown",this.handleMousedown)},t}();e.ExcelRender=M}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/getViewRange.js*/
- amis.define("edbd1e6",(function(e,t,r,s){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var f=e("68b98b9");function i(e,t){for(var r=0,s=e.length-1,f=-1;r<s;){var i=Math.floor((r+s)/2),o=e[i];if(!o){console.error("findStartInCache indexInfo is undefined");break}var n=o.offset+o.size;if(n===t){f=i;break}n<t?r=i+1:s=i}return-1!==f?f:r}function o(e,t,r,s,o,n){var a,l;void 0===o&&(o=[]),void 0===n&&(n=[]);var v=!1,d=!1,h=0,u=0,c=0;e=e||0,r=r||0;var g=[],z=[],m=0;if(n.length){var x=n[n.length-1];if(x.offset<e)h=n.length,c=x.offset;else{var p=i(n,e);-1!==p&&(c=n[h=p].offset)}}for(;!v||!d;){try{for(var b=(a=void 0,f.__values(o)),w=b.next();!w.done;w=b.next()){var y=w.value;if(h>=y.min&&h<=y.max){if(h=y.max+1,y.max>n.length-1)for(var O=y.min;O<=y.max;O++)n[O]={offset:c,size:0}}else;}}catch(e){a={error:e}}finally{try{w&&!w.done&&(l=b.return)&&l.call(b)}finally{if(a)throw a.error}}var R=s(h)||0;if(n[h]={offset:c,size:R},c+R>=e&&!v)u=c-e,v=!0,g.push(h),z.push({size:R,offset:c-e+t}),c+=R,h+=1;else{if(c+R>=e+r&&!d&&(d=!0,g.push(h),z.push({size:R,offset:c-e+t})),v&&!d&&(g.push(h),z.push({size:R,offset:c-e+t})),c+=R,m++>1e4){console.error("getRange loop too many times");break}h+=1}}return{indexes:g,sizes:z,startOffset:u,length:r+t}}t.findStartInCache=i,t.getRange=o,t.getViewRange=function(e,t,r,s,f,i,n,a,l,v,d){void 0===a&&(a=[]),void 0===v&&(v=[]),void 0===d&&(d=[]);var h=o(t,s,f,n,[],a),u=h.indexes,c=h.startOffset,g=h.sizes,z=o(e,r,i,l,d,v),m=z.indexes,x=z.startOffset;return{region:"normal",rows:u,rowSizes:g,height:f,startRowOffset:c,cols:m,colSizes:z.sizes,width:i,startColOffset:x}}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/getViewPointData.js*/
- amis.define("24366fb",(function(e,r,l,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),o=e("bec4e73");function i(e,r,l,a,o,i,n){var f,s,d=a,c=l,v=!1,u=void 0,h="";try{for(var y=t.__values(n),g=y.next();!g.done;g=y.next()){var C=g.value,w=C.startRow,m=C.endRow,p=C.startCol,x=C.endCol;if(e>=w&&e<=m&&r>=p&&r<=x){if(h="".concat(w,"-").concat(m,"-").concat(p,"-").concat(x),v=!0,u=C,w!==m)for(var _=e+1;_<=m;_++)c+=o(_);if(p!==x)for(_=r+1;_<=x;_++)d+=i(_)}}}catch(e){f={error:e}}finally{try{g&&!g.done&&(s=y.return)&&s.call(y)}finally{if(f)throw f.error}}return{isMergeCell:v,mergeCell:u,mergeCellId:h,displayHeight:c,displayWidth:d}}r.calcCellDisplaySize=i,r.getViewPointData=function(e,r,l,a,n){var f,s,d,c,v=n.rows,u=n.rowSizes,h=n.cols,y=n.colSizes,g=[],C=r(),w=new Set,m=0;try{for(var p=t.__values(v),x=p.next();!x.done;x=p.next()){var _=x.value,b=u[m].size,z=e(_),I=0;try{for(var S=(d=void 0,t.__values(h)),M=S.next();!M.done;M=S.next()){var R=M.value,D=y[I].size;if(void 0!==z[R]){var H=z[R],P=D,V=b,W=!1,j=!1;if(C.length){var O=i(_,R,b,D,l,a,C);if(O.isMergeCell)if(P=O.displayWidth,V=O.displayHeight,o.hasValue(H))W=!0,w.add(O.mergeCellId);else if(j=!0,!w.has(O.mergeCellId)&&O.mergeCell){for(var k=y[I].offset,q=u[m].offset,A=O.mergeCell,B=A.startCol,E=A.startRow,F=0,G=B;G<R;G++)F+=a(G);k-=F;var J=0;for(G=E;G<_;G++)J+=l(G);q-=J;var K=e(E)[B];g.push({x:k,y:q,width:P+F,height:V+J,row:E,col:B,value:K,needClear:!0}),w.add(O.mergeCellId)}}j||g.push({x:y[I].offset,y:u[m].offset,width:P,height:V,row:_,col:R,value:H,needClear:W})}I++}}catch(e){d={error:e}}finally{try{M&&!M.done&&(c=S.return)&&c.call(S)}finally{if(d)throw d.error}}m++}}catch(e){f={error:e}}finally{try{x&&!x.done&&(s=p.return)&&s.call(p)}finally{if(f)throw f.error}}return g}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/frozen/getFrozenRange.js*/
- amis.define("5bc4006",(function(e,s,t,n){"use strict";Object.defineProperty(s,"__esModule",{value:!0}),s.getFrozenRange=function(e,s,t){for(var n=[],r=0,f=[],i=0;i<e;i++){n.push(i);var u=t(i);f.push({size:u,offset:r+s}),r+=u}return{indexes:n,sizes:f,startOffset:0,length:r+s}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/frozen/getFrozenLeftViewPointRange.js*/
- amis.define("2b10224",(function(e,t,s,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("edbd1e6"),r=e("5bc4006");t.getFrozenLeftViewPointRange=function(e,t,s,i,o,f,a,d){void 0===d&&(d=[]);var g=n.getRange(s,o,t,f,[],d),c=g.indexes,l=g.startOffset,z=g.sizes,u=r.getFrozenRange(e,i,a),w=u.indexes,O=u.startOffset;return{region:"left-frozen",rows:c,rowSizes:z,height:t,startRowOffset:l,cols:w,colSizes:u.sizes,width:u.length,startColOffset:O}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/frozen/getFrozenTopLeftViewPointRange.js*/
- amis.define("924d4d7",(function(e,t,s,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("5bc4006");t.getFrozenTopLeftViewPointRange=function(e,t,s,n,r,i){var f=o.getFrozenRange(t,n,r),a=f.indexes,g=f.startOffset,d=f.sizes,l=f.length,z=o.getFrozenRange(e,s,i),c=z.indexes,u=z.startOffset;return{region:"top-left-frozen",rows:a,rowSizes:d,height:l,startRowOffset:g,cols:c,colSizes:z.sizes,width:z.length,startColOffset:u}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/cell/frozen/getFrozenTopViewPointRange.js*/
- amis.define("29fc790",(function(e,t,s,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("edbd1e6"),n=e("5bc4006");t.getFrozenTopViewPointRange=function(e,t,s,i,r,f,a,d,g){void 0===d&&(d=[]),void 0===g&&(g=[]);var c=o.getRange(s,i,t,a,g,d),z=c.indexes,l=c.startOffset,u=c.sizes,v=n.getFrozenRange(e,r,f),w=v.indexes,O=v.startOffset;return{region:"top-frozen",rows:w,rowSizes:v.sizes,height:v.length,startRowOffset:O,cols:z,colSizes:u,width:t,startColOffset:l}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/binarySearchSize.js*/
- amis.define("9d4df82",(function(e,f,r,t){"use strict";Object.defineProperty(f,"__esModule",{value:!0}),f.binarySearchSize=function(e,f){for(var r=0,t=e.length-1;r<=t;){var i=Math.floor((r+t)/2),n=e[i];if(n.offset<=f&&n.offset+n.size>f)return i;n.offset<f?r=i+1:t=i-1}return-1}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/findInViewRangeX.js*/
- amis.define("5412d0a",(function(e,i,o,c){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var l=e("9d4df82");i.findInViewRangeX=function(e,i,o,c){void 0===c&&(c=!1);var s=0,d=0,r=l.binarySearchSize(i.colSizes,e),n=-1,t="cell";return c&&(t="col-header"),-1!==r&&(s=i.colSizes[r].offset,d=i.colSizes[r].size,n=i.cols[r],c&&(s+d-e<o&&(t="col-grid"),e-s<o&&(t="col-grid",r>0&&(s=i.colSizes[r-1].offset,d=i.colSizes[r-1].size,n=i.cols[r-1])))),{col:n,x:s,width:d,type:t}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/findInViewRangeY.js*/
- amis.define("0ce389d",(function(e,r,i,o){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var s=e("9d4df82");r.findInViewRangeY=function(e,r,i,o){void 0===o&&(o=!1);var w=0,d=0,n=s.binarySearchSize(r.rowSizes,e),t="cell";o&&(t="row-header");var f=-1;return-1!==n&&(w=r.rowSizes[n].offset,d=r.rowSizes[n].size,f=r.rows[n],o&&(w+d-e<i&&(t="row-grid"),e-w<i&&(t="row-grid",n>0&&(w=r.rowSizes[n-1].offset,d=r.rowSizes[n-1].size,f=r.rows[n-1])))),{row:f,y:w,height:d,type:t}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/findInViewRange.js*/
- amis.define("13a3595",(function(e,n,i,a){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var d=e("68b98b9"),s=e("5412d0a"),f=e("0ce389d");n.findInViewRange=function(e,n,i,a){return d.__assign(d.__assign({},s.findInViewRangeX(e,a,i)),f.findInViewRangeY(n,a,i))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/findCell.js*/
- amis.define("cfe87e8",(function(e,i,l,n){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var r=e("68b98b9"),t=e("1e0c873"),a=e("13a3595");i.findCell=function(e,i,l,n,o,c){var s=a.findInViewRange(i,l,n,o),d=s.row,f=s.col,g=s.x,h=s.y,u=s.width,_=s.height,w=t.cellToMergeCell(d,f,c);return r.__assign(r.__assign({type:"cell",region:e},w),{realCol:f,realRow:d,x:g,y:h,width:u,height:_})}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/hitTestInRange.js*/
- amis.define("eaec87d",(function(e,t,i,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("7167655"),d=e("cfe87e8"),h=e("5412d0a"),o=e("0ce389d");t.hitTestInRange=function(e,t,i,n,a,l,w,f){if(!t)return null;if(n<l&&i>=a&&i<t.width){var u=h.findInViewRangeX(i,t,w,!0),g=u.col,s=u.width,c=u.x;return{type:u.type,region:e,startRow:0,startCol:g,endRow:r.MAX_ROW,endCol:g,x:c,y:0,width:s,height:l}}if(i<a&&n>=l&&n<t.height){var y=o.findInViewRangeY(n,t,w,!0),R=y.row,C=y.height,p=y.y;return{type:y.type,region:e,startRow:R,startCol:0,endRow:R,endCol:r.MAX_COL,x:0,y:p,width:a,height:C}}return i<t.width&&n<t.height?d.findCell(e,i,n,w,t,f):null}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/hitTest.js*/
- amis.define("434fc58",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("eaec87d");t.hitTest=function(e,t,n,r,o,a,f,s){if(e<n&&t<r)return{type:"corner",region:"normal",startRow:0,startCol:0,endCol:0,endRow:0,x:0,y:0,width:n,height:r};if(f){var u=f.topViewRange,g=f.leftViewRange,l=f.topLeftViewRange,R=i.hitTestInRange("top-left-frozen",l,e,t,n,r,o,s);if(R)return R;var h=i.hitTestInRange("left-frozen",g,e,t,n,r,o,s);if(h)return h;var c=i.hitTestInRange("top-frozen",u,e,t,n,r,o,s);if(c)return c}return i.hitTestInRange("normal",a,e,t,n,r,o,s)}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/applyDxf.js*/
- amis.define("b732624",(function(i,n,s,e){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var _=i("68b98b9");n.applyDxf=function(i,n){n&&(n.font&&(i.font=_.__assign(_.__assign({},i.font),n.font)),n.fill&&(i.fill=_.__assign(_.__assign({},i.fill),n.fill)),n.border&&(i.border=_.__assign(_.__assign({},i.border),n.border)))}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/applyCfRuleDxf.js*/
- amis.define("7b166f8",(function(e,f,t,a){"use strict";Object.defineProperty(f,"__esModule",{value:!0});var o=e("b732624");f.applyCfRuleDxf=function(e,f,t){var a=e.dxfId||0,r=f.workbook.getDataProvider().getDxf(a);o.applyDxf(t,r)}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/aboveAverage.js*/
- amis.define("b0f288f",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l=e("e638c7d"),u=e("7b166f8");function f(e){return 0===e.length?null:e.reduce((function(e,r){return e+r}),0)/e.length}r.aboveAverage=function(e,r,a,t){if(""===r.value)return!1;var n=e.getRangeCache(),i=n.get(a,"average");if(!i){var g=e.getCellValueByRanges(a);if(0===g.length)return!1;var v=[];if(g.map((function(e){""!==e.text&&v.push(parseFloat(e.value))})),null===(i=f(v)))return!1;n.set(a,"average",i)}var p=parseFloat(r.value);if(!1===t.aboveAverage){if(!0===t.equalAverage){if(l.lte(p,i))return u.applyCfRuleDxf(t,e,r),!0}else if(l.lte(p,i))return u.applyCfRuleDxf(t,e,r),!0}else if(!0===t.equalAverage){if(l.gte(p,i))return u.applyCfRuleDxf(t,e,r),!0}else if(l.gt(p,i))return u.applyCfRuleDxf(t,e,r),!0;return!1},r.getAverageValue=f}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/cellIs.js*/
- amis.define("7eecb40",(function(r,e,t,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=r("e638c7d"),o=r("7b166f8");function u(r,e){return r===e[0]}function s(r,e){return r!==e[0]}function c(r,e){var t=e[0];try{var n=parseFloat(r),o=parseFloat(t);return a.gt(n,o)}catch(r){console.warn("error",r)}return!1}function l(r,e){var t=e[0];try{var n=parseFloat(r),o=parseFloat(t);return a.gte(n,o)}catch(r){console.warn("error",r)}return!1}function i(r,e){var t=e[0];try{var n=parseFloat(r),o=parseFloat(t);return a.lt(n,o)}catch(r){console.warn("error",r)}return!1}function f(r,e){var t=e[0];try{var n=parseFloat(r),o=parseFloat(t);return a.lte(n,o)}catch(r){console.warn("error",r)}return!1}function h(r,e){try{var t=parseFloat(r),n=parseFloat(e[0]),o=parseFloat(e[1]);return a.gte(t,n)&&a.lte(t,o)}catch(r){console.warn("error",r)}return!1}function v(r,e){try{var t=parseFloat(r),n=parseFloat(e[0]),o=parseFloat(e[1]);return a.lt(t,n)||a.gt(t,o)}catch(r){console.warn("error",r)}return!1}function p(r,e){var t=e[0];return r.includes(t)}function F(r,e){var t=e[0];return!r.includes(t)}function w(r,e){var t=e[0];return r.startsWith(t)}function g(r,e){var t=e[0];return r.endsWith(t)}e.beginsWith=w,e.between=h,e.cellIs=function(r,e,t){var n=t.formula||[];if(!n.length)return!1;var a=e.value,d=t.operator;if(""===a||!d)return!1;var T=function(r,e,t){switch(r){case"equal":return u(e,t);case"notEqual":return s(e,t);case"greaterThan":return c(e,t);case"greaterThanOrEqual":return l(e,t);case"lessThan":return i(e,t);case"lessThanOrEqual":return f(e,t);case"between":return h(e,t);case"notBetween":return v(e,t);case"containsText":return p(e,t);case"notContains":return F(e,t);case"beginsWith":return w(e,t);case"endsWith":return g(e,t);default:console.warn("未知的 operator",r)}return!1}(d,a,n);return!!T&&(o.applyCfRuleDxf(t,r,e),!0)},e.containsText=p,e.endsWith=g,e.equal=u,e.greaterThan=c,e.greaterThanOrEqual=l,e.lessThan=i,e.lessThanOrEqual=f,e.notBetween=v,e.notContains=F,e.notEqual=s}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/getMinMax.js*/
- amis.define("f4dd7ec",(function(e,r,a,t){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),i=e("e638c7d");r.getMinMax=function(e){var r,a,t,o;try{for(var l=n.__values(e),v=l.next();!v.done;v=l.next()){var d=v.value.value;if(""!==d&&void 0!==d){var f=parseFloat(d);(void 0===t||i.lt(f,t))&&(t=f),(void 0===o||i.gt(f,o))&&(o=f)}}}catch(e){r={error:e}}finally{try{v&&!v.done&&(a=l.return)&&a.call(l)}finally{if(r)throw r.error}}return{min:t,max:o}}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/colorScale.js*/
- amis.define("836bc3e",(function(e,r,o,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var l=e("68b98b9"),t=e("b12ecca"),a=e("f4dd7ec");r.colorScale=function(e,r,o,n){var c,i,s,f,v=e.getRangeCache(),u=JSON.stringify(n),p=v.get(o,u),g=n.colorScale;if(!g)return!1;if(!p){var d=e.workbook.getDataProvider(),h=g.cfvo,y=g.color;if(!h||!y)return console.warn("色阶规则不完整"),!1;if(h.length!==y.length)return console.warn("色阶规则不匹配"),!1;var b=e.getCellValueByRanges(o),w=a.getMinMax(b),m=w.min,C=w.max;if(void 0===m||void 0===C)return!1;var x=[];try{for(var _=l.__values(h.entries()),k=_.next();!k.done;k=_.next()){var F=l.__read(k.value,2),M=F[0],S=F[1],O=S.type;switch(O){case"min":"none"!==(P=d.getColor(y[M]))&&x.push({percent:0,color:new t.Color(P)});break;case"max":"none"!==(P=d.getColor(y[M]))&&x.push({percent:1,color:new t.Color(P)});break;case"percentile":var P,R=parseInt(S.val||"50",10)/100;"none"!==(P=d.getColor(y[M]))&&x.push({percent:R,color:new t.Color(P)});break;default:console.warn("未知的 cfvo type",O)}}}catch(e){c={error:e}}finally{try{k&&!k.done&&(i=_.return)&&i.call(_)}finally{if(c)throw c.error}}x.length<2&&console.warn("色彩数量不足"),x.sort((function(e,r){return e.percent-r.percent})),p={min:m,max:C,colors:x},v.set(o,u,p)}var j,B=(parseFloat(r.value)-p.min)/(p.max-p.min),D=1,I=0,J=p.colors[0].color;try{for(var N=l.__values(p.colors),V=N.next();!V.done;V=N.next()){y=V.value;if(B>=I&&B<y.percent){j=y.color,D=y.percent;break}J=y.color,I=y.percent}}catch(e){s={error:e}}finally{try{V&&!V.done&&(f=N.return)&&f.call(N)}finally{if(s)throw s.error}}void 0===j&&(j=p.colors[p.colors.length-1].color);var q=D-I;0===q&&(q=1);var z=t.interpolateColor(J,j,(B-I)/q);return r.fill={patternFill:{bgColor:{rgb:"FF"+z}}},!0}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/dataBar.js*/
- amis.define("57ef70a",(function(r,e,o,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=r("68b98b9"),l=r("f4dd7ec"),i=r("b12ecca"),n=r("e638c7d");function d(r){var e=new i.Color(r);return e.changeHsl(.93,"l","set"),e.toHex()}function v(r,e,o,a){var l={showValue:!0,gradient:!0,border:!1,percent:0,color:"",colorGradient:"",borderColor:"",negativeFillColor:"",negativeFillColorGradient:"",negativeBorderColor:"",axisColor:"",direction:"leftToRight",biDirectional:!1},i=a.dataBar,v=o.workbook.getDataProvider();if(i.color&&(l.color=v.getColor(i.color),"none"!==l.color&&(l.colorGradient=d(l.color))),!1===i.showValue&&(l.showValue=!1),a.extLst){var c=function(r,e){var o,a,l,i,n,d,v,c,f,u,g;if(!e)return null;try{for(var s=t.__values(r||[]),x=s.next();!x.done;x=s.next()){var C=x.value;try{for(var y=(l=void 0,t.__values(C.ext||[])),B=y.next();!B.done;B=y.next()){var h=B.value["x14:id"];if(h)try{for(var b=(n=void 0,t.__values(e.ext||[])),m=b.next();!m.done;m=b.next()){var F=null===(g=m.value["x14:conditionalFormattings"])||void 0===g?void 0:g["x14:conditionalFormatting"];try{for(var p=(v=void 0,t.__values(F||[])),w=p.next();!w.done;w=p.next()){var _=w.value["x14:cfRule"];try{for(var D=(f=void 0,t.__values(_||[])),G=D.next();!G.done;G=D.next()){var L=G.value;if(L.id===h)return L["x14:dataBar"]}}catch(r){f={error:r}}finally{try{G&&!G.done&&(u=D.return)&&u.call(D)}finally{if(f)throw f.error}}}}catch(r){v={error:r}}finally{try{w&&!w.done&&(c=p.return)&&c.call(p)}finally{if(v)throw v.error}}}}catch(r){n={error:r}}finally{try{m&&!m.done&&(d=b.return)&&d.call(b)}finally{if(n)throw n.error}}}}catch(r){l={error:r}}finally{try{B&&!B.done&&(i=y.return)&&i.call(y)}finally{if(l)throw l.error}}}}catch(r){o={error:r}}finally{try{x&&!x.done&&(a=s.return)&&a.call(s)}finally{if(o)throw o.error}}return null}(a.extLst,o.getExtLst());if(!c)return console.warn("cx14DataBar not found",a.extLst),l;!1===c.gradient&&(l.gradient=!1),n.lt(r,0)&&n.gt(e,0)&&(l.biDirectional=!0),c.direction&&(l.direction=c.direction),!0===c.border&&(l.border=!0),c["x14:borderColor"]&&(l.borderColor=v.getColor(c["x14:borderColor"])),c["x14:negativeFillColor"]&&(l.negativeFillColor=v.getColor(c["x14:negativeFillColor"]),"none"!==l.negativeFillColor&&(l.negativeFillColorGradient=d(l.negativeFillColor))),!0===c.negativeBarColorSameAsPositive&&(l.negativeFillColor=l.color,l.negativeFillColorGradient=l.colorGradient),!1===c.negativeBarBorderColorSameAsPositive?c["x14:negativeBorderColor"]&&(l.negativeBorderColor=v.getColor(c["x14:negativeBorderColor"])):l.negativeBorderColor=l.borderColor,c["x14:axisColor"]&&(l.axisColor=v.getColor(c["x14:axisColor"]))}return l}e.dataBar=function(r,e,o,a){var t,i,d;if(!a.dataBar)return!1;if(2!==(null===(t=a.dataBar.cfvo)||void 0===t?void 0:t.length))return console.warn("dataBar cfvo length !== 2",a.dataBar.cfvo),!1;var c=r.getRangeCache(),f=JSON.stringify(a),u=c.get(o,f);if(!u){var g=r.getCellValueByRanges(o),s=l.getMinMax(g),x=s.min,C=s.max,y=null===(i=a.dataBar.cfvo)||void 0===i?void 0:i[0],B=null===(d=a.dataBar.cfvo)||void 0===d?void 0:d[1];if("num"===y.type&&(x=parseFloat(y.val||"0")),"num"===B.type&&(C=parseFloat(B.val||"1")),void 0===x||void 0===C)return!1;if(x===C)return!1;u={min:x,max:C,dataBarDisplay:v(x,C,r,a)},c.set(o,f,u)}var h=parseFloat(e.value),b=u.dataBarDisplay;if(b.biDirectional)if(n.lt(h,0)){var m=h/u.min;b.percent=-m}else if(n.gt(h,0)){m=h/u.max;b.percent=m}else b.percent=0;else{m=(h-u.min)/(u.max-u.min);b.percent=m}return e.dataBarDisplay=b,!0}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/duplicateValues.js*/
- amis.define("d18088c",(function(e,t,a,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("68b98b9"),n=e("7b166f8");t.duplicateValues=function(e,t,a,l){var u,d,i=e.getRangeCache(),c=i.get(a,"duplicateValues");if(!c){c=new Set;var f=new Set,s=e.getCellValueByRanges(a);try{for(var o=r.__values(s),v=o.next();!v.done;v=o.next()){var x=v.value;""!==x.text&&(f.has(x.text)?c.add(x.text):f.add(x.text))}}catch(e){u={error:e}}finally{try{v&&!v.done&&(d=o.return)&&d.call(o)}finally{if(u)throw u.error}}i.set(a,"duplicateValues",c)}return!!c.has(t.value)&&(n.applyCfRuleDxf(l,e,t),!0)}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/preset/presetIconSet.js*/
- amis.define("974b75f",(function(e,r,l,i){"use strict";Object.defineProperty(r,"__esModule",{value:!0});r.presetIconSet={"3Arrows":["down","side","up"],"3ArrowsGray":["downGray","sideGray","upGray"],"3Flags":["flagRed","flagYellow","flagGreen"],"3Signs":["diamondRed","triangleYellow","circleGreen"],"3Symbols":["crossRed","exclamationYellow","checkGreen"],"3Symbols2":["crossSymbolRed","exclamationSymbolYellow","checkSymbolGreen"],"3TrafficLights1":["circleRed","circleYellow","circleGreen"],"3TrafficLights2":["trafficLightRed","trafficLightYellow","trafficLightGreen"],"4Arrows":["down","downIncline","upIncline","up"],"4ArrowsGray":["downGray","downInclineGray","upInclineGray","upGray"],"4Rating":["oneFilledBars","twoFilledBars","threeFilledBars","fourFilledBars"],"4RedToBlack":["circleBlack","circleGray","circleLightRed","circleRed"],"4TrafficLights":["circleBlack","circleRed","circleYellow","circleGreen"],"5Arrows":["down","downIncline","side","upIncline","up"],"5ArrowsGray":["downGray","downInclineGray","sideGray","upInclineGray","upGray"],"5Quarters":["circleWhite","circleThreeWhiteQuarters","circleTwoWhiteQuarters","circleOneWhiteQuarter","circleBlack"],"5Rating":["zeroFilledBars","oneFilledBars","twoFilledBars","threeFilledBars","fourFilledBars"]}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/iconSet.js*/
- amis.define("822cf1d",(function(e,r,n,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),i=e("974b75f"),o=e("f4dd7ec"),c=e("e638c7d");r.iconSet=function(e,r,n,a){var l,f,s,v,u=e.getRangeCache();JSON.stringify(a);var d=u.get(n,"ruleKey");if(!d){var y=a.iconSet;if(!y)return!1;var p=y.iconSet||"3TrafficLights1",g=y.cfvo;if(!g)return console.warn("图标集规则不完整"),!1;var h=e.getCellValueByRanges(n),w=[],x=i.presetIconSet[p];if(!x)return console.warn("未知的图标集",p),!1;!0===y.reverse&&(x=x.slice().reverse());try{for(var _=t.__values(g.entries()),m=_.next();!m.done;m=_.next()){var b=t.__read(m.value,2),S=b[0],M=b[1],k=M.type;switch(k){case"percentile":case"percent":var C=parseInt(M.val||"50",10)/100;if(void 0===(K=x[S]))return console.warn("未知的图标",p),!1;w.push({percent:C,icon:K});break;default:console.warn("未知的 cfvo type",k)}var I=o.getMinMax(h),O=I.min,P=I.max;if(void 0===O||void 0===P)return!1;if(0===w.length)return console.warn("图标集为空"),!1;d={min:O,max:P,icons:w}}}catch(e){l={error:e}}finally{try{m&&!m.done&&(f=_.return)&&f.call(_)}finally{if(l)throw l.error}}}var R=parseFloat(r.value),j=c.getPercent(R,d.min,d.max),B=d.icons[0].icon;try{for(var F=t.__values(d.icons),J=F.next();!J.done;J=F.next()){var K;if(j<=(K=J.value).percent)break;B=K.icon}}catch(e){s={error:e}}finally{try{J&&!J.done&&(v=F.return)&&v.call(F)}finally{if(s)throw s.error}}return r.icon=B,!0}}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/util/fromExcelDate.js*/
- amis.define("7516437",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a={};t.fromExcelDate=function(e,t){var n="".concat(e,"-").concat(t);if(a[n])return new Date(a[n]);"string"==typeof e&&(e=parseInt(e,10));var r=Math.round(25568.5),c=new Date(1e3*(86400*(e+(t?1462:0)-r)));return a[n]=c.getTime(),c}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/timePeriod.js*/
- amis.define("4233655",(function(e,t,a,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("7b166f8"),u=e("7516437");function D(e,t){switch(t){case"today":return function(e){var t=new Date;return e.getFullYear()===t.getFullYear()&&e.getMonth()===t.getMonth()&&e.getDate()===t.getDate()}(e);case"yesterday":return function(e){var t=new Date,a=new Date(t);return a.setDate(t.getDate()-1),e.getFullYear()===a.getFullYear()&&e.getMonth()===a.getMonth()&&e.getDate()===a.getDate()}(e);case"tomorrow":return function(e){var t=new Date,a=new Date(t);return a.setDate(t.getDate()+1),e.getFullYear()===a.getFullYear()&&e.getMonth()===a.getMonth()&&e.getDate()===a.getDate()}(e);case"last7Days":return function(e){var t=new Date,a=new Date(t);return a.setDate(t.getDate()-7),a.setHours(0,0,0,0),e>=a&&e<t}(e);case"thisMonth":return function(e){var t=new Date;return e.getFullYear()===t.getFullYear()&&e.getMonth()===t.getMonth()}(e);case"lastMonth":return function(e){var t=new Date,a=new Date(t);return a.setMonth(t.getMonth()-1),e.getFullYear()===a.getFullYear()&&e.getMonth()===a.getMonth()}(e);case"nextMonth":return function(e){var t=new Date,a=new Date(t);return a.setMonth(t.getMonth()+1),e.getFullYear()===a.getFullYear()&&e.getMonth()===a.getMonth()}(e);case"thisWeek":return function(e){var t=new Date,a=t.getDay(),n=new Date(t);n.setDate(t.getDate()-a),n.setHours(0,0,0,0);var r=new Date(n);return r.setDate(n.getDate()+7),e>=n&&e<r}(e);case"lastWeek":return function(e){var t=new Date,a=t.getDay(),n=new Date(t);n.setDate(t.getDate()-a-7),n.setHours(0,0,0,0);var r=new Date(n);return r.setDate(n.getDate()+7),e>=n&&e<r}(e);case"nextWeek":return function(e){var t=new Date,a=t.getDay(),n=new Date(t);n.setDate(t.getDate()-a+7),n.setHours(0,0,0,0);var r=new Date(n);return r.setDate(n.getDate()+7),e>=n&&e<r}(e);default:return!1}}t.checkDate=D,t.timePeriod=function(e,t,a,n){var o=n.timePeriod;if(!o)return!1;var g=t.value;return void 0!==g&&(!!D(u.fromExcelDate(g,e.workbook.is1904()),o)&&(r.applyCfRuleDxf(n,e,t),!0))}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/top10.js*/
- amis.define("8ab9729",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("e638c7d"),l=e("7b166f8");function u(e,t){if(0===e.length)return null;e.sort((function(e,t){return a.lt(e,t)?-1:a.gt(e,t)?1:0}));var n=t.rank||10;return t.percent&&(n=Math.ceil(e.length*(n/100))),n=Math.max(Math.min(n,e.length),1),t.bottom?e[n-1]:e[e.length-n]}t.getRankValue=u,t.top10=function(e,t,n,r){var f=e.getRangeCache(),i=JSON.stringify(r),o=f.get(n,i);if(!o){var g=e.getCellValueByRanges(n);if(0===g.length)return!1;var s=[];if(g.map((function(e){""!==e.text&&s.push(parseFloat(e.value))})),null===(o=u(s,r)))return!1;f.set(n,i,o)}var c=parseFloat(t.value);if(r.bottom){if(a.lte(c,o))return l.applyCfRuleDxf(r,e,t),!0}else if(a.gte(c,o))return l.applyCfRuleDxf(r,e,t),!0;return!1}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/uniqueValues.js*/
- amis.define("da1cfdd",(function(e,t,a,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),u=e("7b166f8");t.uniqueValues=function(e,t,a,r){var l,d,f=e.getRangeCache(),i=f.get(a,"uniqueValues");if(!i){i=new Set;var s=new Set,o=e.getCellValueByRanges(a);try{for(var c=n.__values(o),v=c.next();!v.done;v=c.next()){var x=v.value;""!==x.text&&(s.has(x.text)?i.delete(x.text):(s.add(x.text),i.add(x.text)))}}catch(e){l={error:e}}finally{try{v&&!v.done&&(d=c.return)&&d.call(c)}finally{if(l)throw l.error}}f.set(a,"uniqueValues",i)}return!!i.has(t.value)&&(u.applyCfRuleDxf(r,e,t),!0)}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/containsText.js*/
- amis.define("b85b881",(function(e,t,n,u){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("7b166f8");t.containsText=function(e,t,n){return!!n.text&&(!!t.value.includes(n.text)&&(i.applyCfRuleDxf(n,e,t),!0))}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/containsBlanks.js*/
- amis.define("716897d",(function(e,n,t,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var u=e("7b166f8");n.containsBlanks=function(e,n,t){return""===n.value.trim()&&(u.applyCfRuleDxf(t,e,n),!0)}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/containsErrors.js*/
- amis.define("5abb012",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("7b166f8");t.containsErrors=function(e,t,r){return"object"==typeof t.cellData&&"error"===t.cellData.type&&(n.applyCfRuleDxf(r,e,t),!0)}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/cfRule/notContainsText.js*/
- amis.define("c1127d3",(function(e,t,n,u){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("7b166f8");t.notContainsText=function(e,t,n){return!!n.text&&(!t.value.includes(n.text)&&(i.applyCfRuleDxf(n,e,t),!0))}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/applyConditionalFormat.js*/
- amis.define("9fcd9cf",(function(e,r,a,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var t=e("68b98b9"),o=e("9a404b6"),c=e("b0f288f"),l=e("7eecb40"),i=e("836bc3e"),s=e("57ef70a"),u=e("d18088c"),f=e("822cf1d"),d=e("4233655"),v=e("8ab9729"),y=e("da1cfdd"),b=e("b85b881"),p=e("716897d"),x=e("5abb012"),h=e("c1127d3");function _(e,r,a,n){var t=n.type;switch(t){case"cellIs":return l.cellIs(e,r,n);case"uniqueValues":return y.uniqueValues(e,r,a,n);case"duplicateValues":return u.duplicateValues(e,r,a,n);case"aboveAverage":return c.aboveAverage(e,r,a,n);case"top10":return v.top10(e,r,a,n);case"colorScale":return i.colorScale(e,r,a,n);case"dataBar":return s.dataBar(e,r,a,n);case"iconSet":return f.iconSet(e,r,a,n);case"timePeriod":return d.timePeriod(e,r,a,n);case"containsText":return b.containsText(e,r,n);case"notContainsText":return h.notContainsText(e,r,n);case"containsBlanks":return p.containsBlanks(e,r,n);case"containsErrors":return x.containsErrors(e,r,n);default:console.warn("未知的条件格式类型",t)}return!1}r.applyConditionalFormat=function(e,r,a,n){var c,l,i,s,u,f,d=e.getConditionalFormatting();try{for(var v=t.__values(d),y=v.next();!y.done;y=v.next()){var b=y.value,p=b.sqref;if(p){var x=p.split(" ").map(o.parseRange);try{for(var h=(i=void 0,t.__values(x)),g=h.next();!g.done;g=h.next()){var m=g.value;if(o.isCellInRange(m,a,n)){var w=b.cfRule||[];try{for(var C=(u=void 0,t.__values(w)),T=C.next();!T.done;T=C.next()){var B=T.value;try{var I=_(e,r,x,B);if(B.stopIfTrue&&I)break}catch(e){console.warn("条件格式处理失败",e)}}}catch(e){u={error:e}}finally{try{T&&!T.done&&(f=C.return)&&f.call(C)}finally{if(u)throw u.error}}}}}catch(e){i={error:e}}finally{try{g&&!g.done&&(s=h.return)&&s.call(h)}finally{if(i)throw i.error}}}}}catch(e){c={error:e}}finally{try{y&&!y.done&&(l=v.return)&&l.call(v)}finally{if(c)throw c.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/RangeCache.js*/
- amis.define("db11fe7",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),o=e("9a404b6");function c(e){return"".concat(e.startRow,"-").concat(e.startCol,"-").concat(e.endRow,"-").concat(e.endCol)}function i(e){var t=n.__read(e.split("-"),4),r=t[0],a=t[1],o=t[2],c=t[3];return{startRow:parseInt(r,10),startCol:parseInt(a,10),endRow:parseInt(o,10),endCol:parseInt(c,10)}}var l=function(){function e(){this.cache=new Map}return e.prototype.set=function(e,t,r){var a=e.map(c).join(" ");this.cache.has(a)||this.cache.set(a,new Map),this.cache.get(a).set(t,r)},e.prototype.get=function(e,t){var r=e.map(c).join(" ");return this.cache.has(r)?this.cache.get(r).get(t):null},e.prototype.clear=function(e){var t,r,a,c,l,s;try{for(var h=n.__values(e),u=h.next();!u.done;u=h.next()){var f=u.value;try{for(var v=(a=void 0,n.__values(this.cache.keys())),y=v.next();!y.done;y=v.next()){var d=y.value,p=d.split(" ").map(i);try{for(var _=(l=void 0,n.__values(p)),g=_.next();!g.done;g=_.next()){var w=g.value;if(o.rangeIntersect(f,w)){this.cache.delete(d);break}}}catch(e){l={error:e}}finally{try{g&&!g.done&&(s=_.return)&&s.call(_)}finally{if(l)throw l.error}}}}catch(e){a={error:e}}finally{try{y&&!y.done&&(c=v.return)&&c.call(v)}finally{if(a)throw a.error}}}}catch(e){t={error:e}}finally{try{u&&!u.done&&(r=h.return)&&r.call(h)}finally{if(t)throw t.error}}},e}();t.RangeCache=l,t.rangeCacheKey=c,t.rangeCacheKeyToRange=i}));
- ;/*!node_modules/office-viewer/lib/excel/io/excel/preset/presetTableStyles.js*/
- amis.define("52cc40e",(function(t,e,o,l){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.presetTableStyles={TableStyleMedium28:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"medium",color:{theme:9}}}},{font:{b:{},color:{theme:1}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:9,tint:.3999755851924192}},right:{style:"thin",color:{theme:9,tint:.3999755851924192}},top:{style:"thin",color:{theme:9,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}},vertical:{style:"thin",color:{theme:9,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:9,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium28",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium27:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"medium",color:{theme:8}}}},{font:{b:{},color:{theme:1}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:8,tint:.3999755851924192}},right:{style:"thin",color:{theme:8,tint:.3999755851924192}},top:{style:"thin",color:{theme:8,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}},vertical:{style:"thin",color:{theme:8,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:8,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium27",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium26:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"medium",color:{theme:7}}}},{font:{b:{},color:{theme:1}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:7,tint:.3999755851924192}},right:{style:"thin",color:{theme:7,tint:.3999755851924192}},top:{style:"thin",color:{theme:7,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}},vertical:{style:"thin",color:{theme:7,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:7,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium26",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium25:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"medium",color:{theme:6}}}},{font:{b:{},color:{theme:1}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:6,tint:.3999755851924192}},right:{style:"thin",color:{theme:6,tint:.3999755851924192}},top:{style:"thin",color:{theme:6,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}},vertical:{style:"thin",color:{theme:6,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:6,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium25",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium24:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"medium",color:{theme:5}}}},{font:{b:{},color:{theme:1}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:5,tint:.3999755851924192}},right:{style:"thin",color:{theme:5,tint:.3999755851924192}},top:{style:"thin",color:{theme:5,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}},vertical:{style:"thin",color:{theme:5,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:5,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium24",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium23:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"medium",color:{theme:4}}}},{font:{b:{},color:{theme:1}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:4,tint:.3999755851924192}},right:{style:"thin",color:{theme:4,tint:.3999755851924192}},top:{style:"thin",color:{theme:4,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}},vertical:{style:"thin",color:{theme:4,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:4,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium23",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium22:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.3499862666707358},bgColor:{theme:0,tint:-.3499862666707358}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.3499862666707358},bgColor:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"medium",color:{theme:1}}}},{font:{b:{},color:{theme:1}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:1}},right:{style:"thin",color:{theme:1}},top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}},vertical:{style:"thin",color:{theme:1}},horizontal:{style:"thin",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium22",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium21:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}}},{border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}},border:{bottom:{style:"medium",color:{theme:1}}}},{font:{color:{theme:1}},border:{top:{style:"medium",color:{theme:1}},bottom:{style:"medium",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium21",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium20:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}}},{border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}},border:{bottom:{style:"medium",color:{theme:1}}}},{font:{color:{theme:1}},border:{top:{style:"medium",color:{theme:1}},bottom:{style:"medium",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium20",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium19:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}}},{border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}},border:{bottom:{style:"medium",color:{theme:1}}}},{font:{color:{theme:1}},border:{top:{style:"medium",color:{theme:1}},bottom:{style:"medium",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium19",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium18:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}}},{border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}},border:{bottom:{style:"medium",color:{theme:1}}}},{font:{color:{theme:1}},border:{top:{style:"medium",color:{theme:1}},bottom:{style:"medium",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium18",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium17:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}}},{border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}},border:{bottom:{style:"medium",color:{theme:1}}}},{font:{color:{theme:1}},border:{top:{style:"medium",color:{theme:1}},bottom:{style:"medium",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium17",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium16:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}}},{border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}},border:{bottom:{style:"medium",color:{theme:1}}}},{font:{color:{theme:1}},border:{top:{style:"medium",color:{theme:1}},bottom:{style:"medium",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium16",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium15:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{bottom:{style:"medium",color:{theme:1}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:1}},right:{style:"thin",color:{theme:1}},top:{style:"medium",color:{theme:1}},bottom:{style:"medium",color:{theme:1}},vertical:{style:"thin",color:{theme:1}},horizontal:{style:"thin",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium15",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium14:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}},border:{top:{style:"thick",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}},border:{bottom:{style:"thick",color:{theme:0}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}},horizontal:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium14",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium13:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}},border:{top:{style:"thick",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}},border:{bottom:{style:"thick",color:{theme:0}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}},horizontal:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium13",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium12:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}},border:{top:{style:"thick",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}},border:{bottom:{style:"thick",color:{theme:0}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}},horizontal:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium12",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium11:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}},border:{top:{style:"thick",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}},border:{bottom:{style:"thick",color:{theme:0}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}},horizontal:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium11",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium10:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}},border:{top:{style:"thick",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}},border:{bottom:{style:"thick",color:{theme:0}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}},horizontal:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium10",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium9:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}},border:{top:{style:"thick",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}},border:{bottom:{style:"thick",color:{theme:0}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}},horizontal:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium9",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium8:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.3499862666707358},bgColor:{theme:0,tint:-.3499862666707358}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.3499862666707358},bgColor:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{top:{style:"thick",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{bottom:{style:"thick",color:{theme:0}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{vertical:{style:"thin",color:{theme:0}},horizontal:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium8",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium7:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:9}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:9,tint:.3999755851924192}},right:{style:"thin",color:{theme:9,tint:.3999755851924192}},top:{style:"thin",color:{theme:9,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:9,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium7",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium6:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:8}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:8,tint:.3999755851924192}},right:{style:"thin",color:{theme:8,tint:.3999755851924192}},top:{style:"thin",color:{theme:8,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:8,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium6",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium5:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:7}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:7,tint:.3999755851924192}},right:{style:"thin",color:{theme:7,tint:.3999755851924192}},top:{style:"thin",color:{theme:7,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:7,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium5",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium4:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:6}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:6,tint:.3999755851924192}},right:{style:"thin",color:{theme:6,tint:.3999755851924192}},top:{style:"thin",color:{theme:6,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:6,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium4",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium3:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:5}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:5,tint:.3999755851924192}},right:{style:"thin",color:{theme:5,tint:.3999755851924192}},top:{style:"thin",color:{theme:5,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:5,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium3",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium2:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:4}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:4,tint:.3999755851924192}},right:{style:"thin",color:{theme:4,tint:.3999755851924192}},top:{style:"thin",color:{theme:4,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:4,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium2",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleMedium1:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:1}},right:{style:"thin",color:{theme:1}},top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}},horizontal:{style:"thin",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleMedium1",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight21:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:9}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"medium",color:{theme:9}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:9}},right:{style:"thin",color:{theme:9}},top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}},vertical:{style:"thin",color:{theme:9}},horizontal:{style:"thin",color:{theme:9}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight21",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight20:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:8}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"medium",color:{theme:8}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:8}},right:{style:"thin",color:{theme:8}},top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}},vertical:{style:"thin",color:{theme:8}},horizontal:{style:"thin",color:{theme:8}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight20",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight19:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:7}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"medium",color:{theme:7}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:7}},right:{style:"thin",color:{theme:7}},top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}},vertical:{style:"thin",color:{theme:7}},horizontal:{style:"thin",color:{theme:7}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight19",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight18:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:6}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"medium",color:{theme:6}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:6}},right:{style:"thin",color:{theme:6}},top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}},vertical:{style:"thin",color:{theme:6}},horizontal:{style:"thin",color:{theme:6}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight18",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight17:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:5}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"medium",color:{theme:5}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:5}},right:{style:"thin",color:{theme:5}},top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}},vertical:{style:"thin",color:{theme:5}},horizontal:{style:"thin",color:{theme:5}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight17",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight16:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:4}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"medium",color:{theme:4}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:4}},right:{style:"thin",color:{theme:4}},top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}},vertical:{style:"thin",color:{theme:4}},horizontal:{style:"thin",color:{theme:4}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight16",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight15:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"medium",color:{theme:1}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:1}},right:{style:"thin",color:{theme:1}},top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}},vertical:{style:"thin",color:{theme:1}},horizontal:{style:"thin",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight15",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight14:{dxfs:{count:10,dxf:[{border:{left:{style:"thin",color:{theme:9}}}},{border:{left:{style:"thin",color:{theme:9}}}},{border:{top:{style:"thin",color:{theme:9}}}},{border:{top:{style:"thin",color:{theme:9}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:9}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:9}},right:{style:"thin",color:{theme:9}},top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight14 ",pivot:!1,count:9,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"lastColumn",dxfId:5},{type:"firstRowStripe",dxfId:4},{type:"secondRowStripe",dxfId:3},{type:"firstColumnStripe",dxfId:2},{type:"secondColumnStripe",dxfId:1}]}]}},TableStyleLight13:{dxfs:{count:9,dxf:[{border:{left:{style:"thin",color:{theme:8}}}},{border:{left:{style:"thin",color:{theme:8}}}},{border:{top:{style:"thin",color:{theme:8}}}},{border:{top:{style:"thin",color:{theme:8}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:8}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:8}},right:{style:"thin",color:{theme:8}},top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight13",pivot:!1,count:9,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"lastColumn",dxfId:5},{type:"firstRowStripe",dxfId:4},{type:"secondRowStripe",dxfId:3},{type:"firstColumnStripe",dxfId:2},{type:"secondColumnStripe",dxfId:1}]}]}},TableStyleLight12:{dxfs:{count:9,dxf:[{border:{left:{style:"thin",color:{theme:7}}}},{border:{left:{style:"thin",color:{theme:7}}}},{border:{top:{style:"thin",color:{theme:7}}}},{border:{top:{style:"thin",color:{theme:7}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:7}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:7}},right:{style:"thin",color:{theme:7}},top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight12",pivot:!1,count:9,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"lastColumn",dxfId:5},{type:"firstRowStripe",dxfId:4},{type:"secondRowStripe",dxfId:3},{type:"firstColumnStripe",dxfId:2},{type:"secondColumnStripe",dxfId:1}]}]}},TableStyleLight11:{dxfs:{count:9,dxf:[{border:{left:{style:"thin",color:{theme:6}}}},{border:{left:{style:"thin",color:{theme:6}}}},{border:{top:{style:"thin",color:{theme:6}}}},{border:{top:{style:"thin",color:{theme:6}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:6}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:6}},right:{style:"thin",color:{theme:6}},top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight11",pivot:!1,count:9,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"lastColumn",dxfId:5},{type:"firstRowStripe",dxfId:4},{type:"secondRowStripe",dxfId:3},{type:"firstColumnStripe",dxfId:2},{type:"secondColumnStripe",dxfId:1}]}]}},TableStyleLight10:{dxfs:{count:9,dxf:[{border:{left:{style:"thin",color:{theme:5}}}},{border:{left:{style:"thin",color:{theme:5}}}},{border:{top:{style:"thin",color:{theme:5}}}},{border:{top:{style:"thin",color:{theme:5}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:5}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:5}},right:{style:"thin",color:{theme:5}},top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight10",pivot:!1,count:9,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"lastColumn",dxfId:5},{type:"firstRowStripe",dxfId:4},{type:"secondRowStripe",dxfId:3},{type:"firstColumnStripe",dxfId:2},{type:"secondColumnStripe",dxfId:1}]}]}},TableStyleLight9:{dxfs:{count:9,dxf:[{border:{left:{style:"thin",color:{theme:4}}}},{border:{left:{style:"thin",color:{theme:4}}}},{border:{top:{style:"thin",color:{theme:4}}}},{border:{top:{style:"thin",color:{theme:4}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:4}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:4}},right:{style:"thin",color:{theme:4}},top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight9",pivot:!1,count:9,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"lastColumn",dxfId:5},{type:"firstRowStripe",dxfId:4},{type:"secondRowStripe",dxfId:3},{type:"firstColumnStripe",dxfId:2},{type:"secondColumnStripe",dxfId:1}]}]}},TableStyleLight8:{dxfs:{count:9,dxf:[{border:{left:{style:"thin",color:{theme:1}}}},{border:{left:{style:"thin",color:{theme:1}}}},{border:{top:{style:"thin",color:{theme:1}}}},{border:{top:{style:"thin",color:{theme:1}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:1}},right:{style:"thin",color:{theme:1}},top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight8",pivot:!1,count:9,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"lastColumn",dxfId:5},{type:"firstRowStripe",dxfId:4},{type:"secondRowStripe",dxfId:3},{type:"firstColumnStripe",dxfId:2},{type:"secondColumnStripe",dxfId:1}]}]}},TableStyleLight7:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{font:{b:{},color:{theme:9,tint:-.249977111117893}}},{font:{b:{},color:{theme:9,tint:-.249977111117893}}},{font:{b:{},color:{theme:9,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:9}}}},{font:{b:{},color:{theme:9,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:9}}}},{font:{color:{theme:9,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight7",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight6:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{font:{b:{},color:{theme:8,tint:-.249977111117893}}},{font:{b:{},color:{theme:8,tint:-.249977111117893}}},{font:{b:{},color:{theme:8,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:8}}}},{font:{b:{},color:{theme:8,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:8}}}},{font:{color:{theme:8,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight6",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight5:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{font:{b:{},color:{theme:7,tint:-.249977111117893}}},{font:{b:{},color:{theme:7,tint:-.249977111117893}}},{font:{b:{},color:{theme:7,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:7}}}},{font:{b:{},color:{theme:7,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:7}}}},{font:{color:{theme:7,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight5",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight4:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{font:{b:{},color:{theme:6,tint:-.249977111117893}}},{font:{b:{},color:{theme:6,tint:-.249977111117893}}},{font:{b:{},color:{theme:6,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:6}}}},{font:{b:{},color:{theme:6,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:6}}}},{font:{color:{theme:6,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight4",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight3:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{font:{b:{},color:{theme:5,tint:-.249977111117893}}},{font:{b:{},color:{theme:5,tint:-.249977111117893}}},{font:{b:{},color:{theme:5,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:5}}}},{font:{b:{},color:{theme:5,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:5}}}},{font:{color:{theme:5,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight3",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight2:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{font:{b:{},color:{theme:4,tint:-.249977111117893}}},{font:{b:{},color:{theme:4,tint:-.249977111117893}}},{font:{b:{},color:{theme:4,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:4}}}},{font:{b:{},color:{theme:4,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:4}}}},{font:{color:{theme:4,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight2",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleLight1:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:1}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:1}}}},{font:{color:{theme:1}},border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleLight1",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark11:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:1}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark11",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark10:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:1}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark10",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark9:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:1}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark9 2",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark8:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.3499862666707358},bgColor:{theme:0,tint:-.3499862666707358}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.3499862666707358},bgColor:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:1}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark8",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark7:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}},border:{left:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}},border:{right:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.499984740745262},bgColor:{theme:9,tint:-.499984740745262}}},border:{top:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark7",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark6:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}},border:{left:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}},border:{right:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.499984740745262},bgColor:{theme:8,tint:-.499984740745262}}},border:{top:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark6",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark5:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}},border:{left:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}},border:{right:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.499984740745262},bgColor:{theme:7,tint:-.499984740745262}}},border:{top:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark5",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark4:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}},border:{left:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}},border:{right:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.499984740745262},bgColor:{theme:6,tint:-.499984740745262}}},border:{top:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark4",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark3:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}},border:{left:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}},border:{right:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.499984740745262},bgColor:{theme:5,tint:-.499984740745262}}},border:{top:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark3",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark2:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}},border:{left:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}},border:{right:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.499984740745262},bgColor:{theme:4,tint:-.499984740745262}}},border:{top:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark2",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},TableStyleDark1:{dxfs:{count:7,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}},border:{left:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}},border:{right:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.1499984740745262},bgColor:{theme:1,tint:.1499984740745262}}},border:{top:{style:"medium",color:{theme:0}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.4499954222235786},bgColor:{theme:1,tint:.4499954222235786}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"TableStyleDark1",pivot:!1,count:7,tableStyleElement:[{type:"wholeTable",dxfId:7},{type:"headerRow",dxfId:6},{type:"totalRow",dxfId:5},{type:"firstColumn",dxfId:4},{type:"lastColumn",dxfId:3},{type:"firstRowStripe",dxfId:2},{type:"firstColumnStripe",dxfId:1}]}]}},PivotStyleMedium28:{dxfs:{count:10,dxf:[{font:{b:{},color:{theme:9,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{font:{b:{},color:{theme:9,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{font:{b:{},color:{theme:9,tint:-.249977111117893}}},{font:{b:{},color:{theme:9,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:0}}}},{font:{color:{theme:9,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium28",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"secondRowStripe",dxfId:5},{type:"secondColumnStripe",dxfId:4},{type:"firstSubtotalRow",dxfId:3},{type:"secondSubtotalRow",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleMedium27:{dxfs:{count:10,dxf:[{font:{b:{},color:{theme:8,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:8,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:8,tint:-.249977111117893}}},{font:{b:{},color:{theme:8,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:0}}}},{font:{color:{theme:8,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium27",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"secondRowStripe",dxfId:5},{type:"secondColumnStripe",dxfId:4},{type:"firstSubtotalRow",dxfId:3},{type:"secondSubtotalRow",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleMedium26:{dxfs:{count:10,dxf:[{font:{b:{},color:{theme:7,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{font:{b:{},color:{theme:7,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{font:{b:{},color:{theme:7,tint:-.249977111117893}}},{font:{b:{},color:{theme:7,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:0}}}},{font:{color:{theme:7,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium26",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"secondRowStripe",dxfId:5},{type:"secondColumnStripe",dxfId:4},{type:"firstSubtotalRow",dxfId:3},{type:"secondSubtotalRow",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleMedium25:{dxfs:{count:10,dxf:[{font:{b:{},color:{theme:6,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:6,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:6,tint:-.249977111117893}}},{font:{b:{},color:{theme:6,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:0}}}},{font:{color:{theme:6,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium25",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"secondRowStripe",dxfId:5},{type:"secondColumnStripe",dxfId:4},{type:"firstSubtotalRow",dxfId:3},{type:"secondSubtotalRow",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleMedium24:{dxfs:{count:10,dxf:[{font:{b:{},color:{theme:5,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{font:{b:{},color:{theme:5,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{font:{b:{},color:{theme:5,tint:-.249977111117893}}},{font:{b:{},color:{theme:5,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:0}}}},{font:{color:{theme:5,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium24",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"secondRowStripe",dxfId:5},{type:"secondColumnStripe",dxfId:4},{type:"firstSubtotalRow",dxfId:3},{type:"secondSubtotalRow",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleMedium23:{dxfs:{count:10,dxf:[{font:{b:{},color:{theme:4,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:4,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:4,tint:-.249977111117893}}},{font:{b:{},color:{theme:4,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:0}}}},{font:{color:{theme:4,tint:-.249977111117893}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium23",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"secondRowStripe",dxfId:5},{type:"secondColumnStripe",dxfId:4},{type:"firstSubtotalRow",dxfId:3},{type:"secondSubtotalRow",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleMedium22:{dxfs:{count:10,dxf:[{font:{b:{},color:{theme:1,tint:.499984740745262}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.249977111117893},bgColor:{theme:0,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.249977111117893},bgColor:{theme:0,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.249977111117893},bgColor:{theme:0,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1,tint:.499984740745262}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.249977111117893},bgColor:{theme:0,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1,tint:.499984740745262}},border:{bottom:{style:"thin",color:{theme:0}}}},{font:{color:{theme:1,tint:.499984740745262}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium22",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"secondRowStripe",dxfId:5},{type:"secondColumnStripe",dxfId:4},{type:"firstSubtotalRow",dxfId:3},{type:"secondSubtotalRow",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleMedium21:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:9,tint:.5999938962981048}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}},border:{left:{style:"thin",color:{theme:9,tint:.3999755851924192}},right:{style:"thin",color:{theme:9,tint:.3999755851924192}},top:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:9,tint:.5999938962981048}},right:{style:"thin",color:{theme:9,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:9,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:9,tint:.5999938962981048}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:9,tint:.5999938962981048}},right:{style:"thin",color:{theme:9,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:9,tint:.5999938962981048}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium21",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstSubtotalColumn",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstRowSubheading",dxfId:4},{type:"secondRowSubheading",dxfId:3},{type:"thirdRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium20:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:8,tint:.5999938962981048}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}},border:{left:{style:"thin",color:{theme:8,tint:.3999755851924192}},right:{style:"thin",color:{theme:8,tint:.3999755851924192}},top:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:8,tint:.5999938962981048}},right:{style:"thin",color:{theme:8,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:8,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:8,tint:.5999938962981048}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:8,tint:.5999938962981048}},right:{style:"thin",color:{theme:8,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:8,tint:.5999938962981048}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium20",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstSubtotalColumn",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstRowSubheading",dxfId:4},{type:"secondRowSubheading",dxfId:3},{type:"thirdRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium19:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:7,tint:.5999938962981048}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}},border:{left:{style:"thin",color:{theme:7,tint:.3999755851924192}},right:{style:"thin",color:{theme:7,tint:.3999755851924192}},top:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:7,tint:.5999938962981048}},right:{style:"thin",color:{theme:7,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:7,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:7,tint:.5999938962981048}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:7,tint:.5999938962981048}},right:{style:"thin",color:{theme:7,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:7,tint:.5999938962981048}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium19",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstSubtotalColumn",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstRowSubheading",dxfId:4},{type:"secondRowSubheading",dxfId:3},{type:"thirdRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium18:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:6,tint:.5999938962981048}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}},border:{left:{style:"thin",color:{theme:6,tint:.3999755851924192}},right:{style:"thin",color:{theme:6,tint:.3999755851924192}},top:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:6,tint:.5999938962981048}},right:{style:"thin",color:{theme:6,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:6,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:6,tint:.5999938962981048}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:6,tint:.5999938962981048}},right:{style:"thin",color:{theme:6,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:6,tint:.5999938962981048}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium18",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstSubtotalColumn",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstRowSubheading",dxfId:4},{type:"secondRowSubheading",dxfId:3},{type:"thirdRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium17:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:5,tint:.5999938962981048}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}},border:{left:{style:"thin",color:{theme:5,tint:.3999755851924192}},right:{style:"thin",color:{theme:5,tint:.3999755851924192}},top:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:5,tint:.5999938962981048}},right:{style:"thin",color:{theme:5,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:5,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:5,tint:.5999938962981048}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:5,tint:.5999938962981048}},right:{style:"thin",color:{theme:5,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:5,tint:.5999938962981048}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium17",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstSubtotalColumn",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstRowSubheading",dxfId:4},{type:"secondRowSubheading",dxfId:3},{type:"thirdRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium16:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:4,tint:.5999938962981048}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}},border:{left:{style:"thin",color:{theme:4,tint:.3999755851924192}},right:{style:"thin",color:{theme:4,tint:.3999755851924192}},top:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:4,tint:.5999938962981048}},right:{style:"thin",color:{theme:4,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:4,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:4,tint:.5999938962981048}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:4,tint:.5999938962981048}},right:{style:"thin",color:{theme:4,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:4,tint:.5999938962981048}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium16",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstSubtotalColumn",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstRowSubheading",dxfId:4},{type:"secondRowSubheading",dxfId:3},{type:"thirdRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium15:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{border:{top:{style:"thin",color:{theme:1}},bottom:{style:"thin",color:{theme:1}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.249977111117893},bgColor:{theme:0,tint:-.249977111117893}}},border:{left:{style:"thin",color:{theme:0,tint:-.3499862666707358}},right:{style:"thin",color:{theme:0,tint:-.3499862666707358}},top:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.249977111117893}},right:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{top:{style:"thin",color:{theme:0,tint:-.249977111117893}},bottom:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}},border:{left:{},right:{},vertical:{}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.0499893185216834},bgColor:{theme:0,tint:-.0499893185216834}}},border:{left:{style:"thin",color:{theme:0,tint:-.1499984740745262}},right:{style:"thin",color:{theme:0,tint:-.1499984740745262}},vertical:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium15",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstSubtotalColumn",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstRowSubheading",dxfId:4},{type:"secondRowSubheading",dxfId:3},{type:"thirdRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium14:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:9,tint:.5999938962981048}},right:{style:"medium",color:{theme:9,tint:.5999938962981048}},top:{style:"medium",color:{theme:9,tint:.5999938962981048}},bottom:{style:"medium",color:{theme:9,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:9,tint:.3999755851924192}},right:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:9,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:9,tint:-.249977111117893}},bottom:{style:"medium",color:{theme:9,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}},border:{top:{style:"medium",color:{theme:9,tint:-.249977111117893}}}},{font:{color:{theme:1}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium14",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium13:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:8,tint:.5999938962981048}},right:{style:"medium",color:{theme:8,tint:.5999938962981048}},top:{style:"medium",color:{theme:8,tint:.5999938962981048}},bottom:{style:"medium",color:{theme:8,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:8,tint:.3999755851924192}},right:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:8,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:8,tint:-.249977111117893}},bottom:{style:"medium",color:{theme:8,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}},border:{top:{style:"medium",color:{theme:8,tint:-.249977111117893}}}},{font:{color:{theme:1}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium13",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium12:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:7,tint:.5999938962981048}},right:{style:"medium",color:{theme:7,tint:.5999938962981048}},top:{style:"medium",color:{theme:7,tint:.5999938962981048}},bottom:{style:"medium",color:{theme:7,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:7,tint:.3999755851924192}},right:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:7,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:7,tint:-.249977111117893}},bottom:{style:"medium",color:{theme:7,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}},border:{top:{style:"medium",color:{theme:7,tint:-.249977111117893}}}},{font:{color:{theme:1}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium12",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium11:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:6,tint:.5999938962981048}},right:{style:"medium",color:{theme:6,tint:.5999938962981048}},top:{style:"medium",color:{theme:6,tint:.5999938962981048}},bottom:{style:"medium",color:{theme:6,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:6,tint:.3999755851924192}},right:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:6,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:6,tint:-.249977111117893}},bottom:{style:"medium",color:{theme:6,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}},border:{top:{style:"medium",color:{theme:6,tint:-.249977111117893}}}},{font:{color:{theme:1}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium11",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium10:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:5,tint:.5999938962981048}},right:{style:"medium",color:{theme:5,tint:.5999938962981048}},top:{style:"medium",color:{theme:5,tint:.5999938962981048}},bottom:{style:"medium",color:{theme:5,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:5,tint:.3999755851924192}},right:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:5,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:5,tint:-.249977111117893}},bottom:{style:"medium",color:{theme:5,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}},border:{top:{style:"medium",color:{theme:5,tint:-.249977111117893}}}},{font:{color:{theme:1}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium10",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium9:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:4,tint:.5999938962981048}},right:{style:"medium",color:{theme:4,tint:.5999938962981048}},top:{style:"medium",color:{theme:4,tint:.5999938962981048}},bottom:{style:"medium",color:{theme:4,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:4,tint:.3999755851924192}},right:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:4,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}},horizontal:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:4,tint:-.249977111117893}},bottom:{style:"medium",color:{theme:4,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}},border:{top:{style:"medium",color:{theme:4,tint:-.249977111117893}}}},{font:{color:{theme:1}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium9",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium8:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.249977111117893},bgColor:{theme:0,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:0,tint:-.249977111117893}},right:{style:"medium",color:{theme:0,tint:-.249977111117893}},top:{style:"medium",color:{theme:0,tint:-.249977111117893}},bottom:{style:"medium",color:{theme:0,tint:-.249977111117893}}}},{border:{left:{style:"medium",color:{theme:0,tint:-.1499984740745262}},right:{style:"medium",color:{theme:0,tint:-.1499984740745262}}}},{border:{top:{style:"thin",color:{theme:0,tint:-.249977111117893}},bottom:{style:"thin",color:{theme:0,tint:-.249977111117893}},horizontal:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:1}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}},border:{top:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:1}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium8",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium7:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:9,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:9,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:9,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:9,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:9}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.3999755851924192},bgColor:{theme:9,tint:.3999755851924192}}},border:{bottom:{style:"thin",color:{theme:9,tint:.7999816888943144}},horizontal:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{border:{bottom:{style:"thin",color:{theme:9,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.3999755851924192},bgColor:{theme:9,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{border:{left:{style:"thin",color:{theme:9,tint:-.249977111117893}},right:{style:"thin",color:{theme:9,tint:-.249977111117893}}}},{border:{top:{style:"thin",color:{theme:9,tint:-.249977111117893}},bottom:{style:"thin",color:{theme:9,tint:-.249977111117893}},horizontal:{style:"thin",color:{theme:9,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:9,tint:-.249977111117893}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}},border:{horizontal:{style:"thin",color:{theme:9,tint:-.249977111117893}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:9,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium7",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstHeaderCell",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium6:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:8,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:8,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:8,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:8,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:8}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.3999755851924192},bgColor:{theme:8,tint:.3999755851924192}}},border:{bottom:{style:"thin",color:{theme:8,tint:.7999816888943144}},horizontal:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{border:{bottom:{style:"thin",color:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.3999755851924192},bgColor:{theme:8,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{border:{left:{style:"thin",color:{theme:8,tint:-.249977111117893}},right:{style:"thin",color:{theme:8,tint:-.249977111117893}}}},{border:{top:{style:"thin",color:{theme:8,tint:-.249977111117893}},bottom:{style:"thin",color:{theme:8,tint:-.249977111117893}},horizontal:{style:"thin",color:{theme:8,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:8,tint:-.249977111117893}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}},border:{horizontal:{style:"thin",color:{theme:8,tint:-.249977111117893}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:8,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium6",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstHeaderCell",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium5:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:7,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:7,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:7,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:7,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:7}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.3999755851924192},bgColor:{theme:7,tint:.3999755851924192}}},border:{bottom:{style:"thin",color:{theme:7,tint:.7999816888943144}},horizontal:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{border:{bottom:{style:"thin",color:{theme:7,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.3999755851924192},bgColor:{theme:7,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{border:{left:{style:"thin",color:{theme:7,tint:-.249977111117893}},right:{style:"thin",color:{theme:7,tint:-.249977111117893}}}},{border:{top:{style:"thin",color:{theme:7,tint:-.249977111117893}},bottom:{style:"thin",color:{theme:7,tint:-.249977111117893}},horizontal:{style:"thin",color:{theme:7,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:7,tint:-.249977111117893}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}},border:{horizontal:{style:"thin",color:{theme:7,tint:-.249977111117893}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:7,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium5",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstHeaderCell",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium4:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:6,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:6,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:6,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:6,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:6}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.3999755851924192},bgColor:{theme:6,tint:.3999755851924192}}},border:{bottom:{style:"thin",color:{theme:6,tint:.7999816888943144}},horizontal:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{border:{bottom:{style:"thin",color:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.3999755851924192},bgColor:{theme:6,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{border:{left:{style:"thin",color:{theme:6,tint:-.249977111117893}},right:{style:"thin",color:{theme:6,tint:-.249977111117893}}}},{border:{top:{style:"thin",color:{theme:6,tint:-.249977111117893}},bottom:{style:"thin",color:{theme:6,tint:-.249977111117893}},horizontal:{style:"thin",color:{theme:6,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:6,tint:-.249977111117893}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}},border:{horizontal:{style:"thin",color:{theme:6,tint:-.249977111117893}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:6,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium4",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstHeaderCell",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium3:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:5,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:5,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:5,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:5,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:5}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.3999755851924192},bgColor:{theme:5,tint:.3999755851924192}}},border:{bottom:{style:"thin",color:{theme:5,tint:.7999816888943144}},horizontal:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{border:{bottom:{style:"thin",color:{theme:5,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.3999755851924192},bgColor:{theme:5,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{border:{left:{style:"thin",color:{theme:5,tint:-.249977111117893}},right:{style:"thin",color:{theme:5,tint:-.249977111117893}}}},{border:{top:{style:"thin",color:{theme:5,tint:-.249977111117893}},bottom:{style:"thin",color:{theme:5,tint:-.249977111117893}},horizontal:{style:"thin",color:{theme:5,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:5,tint:-.249977111117893}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}},border:{horizontal:{style:"thin",color:{theme:5,tint:-.249977111117893}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:5,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium3",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstHeaderCell",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium2:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:4,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:4,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:4,tint:.7999816888943144}},bottom:{style:"thin",color:{theme:4,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:4}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.3999755851924192},bgColor:{theme:4,tint:.3999755851924192}}},border:{bottom:{style:"thin",color:{theme:4,tint:.7999816888943144}},horizontal:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{border:{bottom:{style:"thin",color:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.3999755851924192},bgColor:{theme:4,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{border:{left:{style:"thin",color:{theme:4,tint:-.249977111117893}},right:{style:"thin",color:{theme:4,tint:-.249977111117893}}}},{border:{top:{style:"thin",color:{theme:4,tint:-.249977111117893}},bottom:{style:"thin",color:{theme:4,tint:-.249977111117893}},horizontal:{style:"thin",color:{theme:4,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:4,tint:-.249977111117893}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}},border:{horizontal:{style:"thin",color:{theme:4,tint:-.249977111117893}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:4,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium2",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstHeaderCell",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleMedium1:{dxfs:{count:13,dxf:[{border:{top:{style:"thin",color:{theme:0,tint:-.1499984740745262}},bottom:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}},{border:{top:{style:"thin",color:{theme:0,tint:-.1499984740745262}},bottom:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{bottom:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.3499862666707358},bgColor:{theme:0,tint:-.3499862666707358}}},border:{bottom:{style:"thin",color:{theme:0,tint:-.1499984740745262}},horizontal:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}},{border:{bottom:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.3499862666707358},bgColor:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:0}}},{border:{left:{style:"thin",color:{theme:1,tint:.499984740745262}},right:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}},horizontal:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"double",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleMedium1",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"firstRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"firstHeaderCell",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondSubtotalRow",dxfId:5},{type:"firstColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight28:{dxfs:{count:10,dxf:[{font:{color:{theme:9,tint:-.249977111117893}}},{font:{color:{theme:9,tint:-.249977111117893}}},{font:{color:{theme:9,tint:-.249977111117893}}},{font:{color:{theme:9,tint:-.249977111117893}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:9,tint:-.249977111117893}}},{font:{color:{theme:9,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:9}}}},{font:{color:{theme:9,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:9}}}},{font:{color:{theme:9,tint:-.249977111117893}},border:{left:{style:"thin",color:{theme:9}},right:{style:"thin",color:{theme:9}},top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}},vertical:{style:"thin",color:{theme:9}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight28",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"firstRowStripe",dxfId:5},{type:"firstColumnStripe",dxfId:4},{type:"firstSubtotalColumn",dxfId:3},{type:"firstSubtotalRow",dxfId:2},{type:"secondSubtotalRow",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleLight27:{dxfs:{count:10,dxf:[{font:{color:{theme:8,tint:-.249977111117893}}},{font:{color:{theme:8,tint:-.249977111117893}}},{font:{color:{theme:8,tint:-.249977111117893}}},{font:{color:{theme:8,tint:-.249977111117893}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:8,tint:-.249977111117893}}},{font:{color:{theme:8,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:8}}}},{font:{color:{theme:8,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:8}}}},{font:{color:{theme:8,tint:-.249977111117893}},border:{left:{style:"thin",color:{theme:8}},right:{style:"thin",color:{theme:8}},top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}},vertical:{style:"thin",color:{theme:8}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight27",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"firstRowStripe",dxfId:5},{type:"firstColumnStripe",dxfId:4},{type:"firstSubtotalColumn",dxfId:3},{type:"firstSubtotalRow",dxfId:2},{type:"secondSubtotalRow",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleLight26:{dxfs:{count:10,dxf:[{font:{color:{theme:7,tint:-.249977111117893}}},{font:{color:{theme:7,tint:-.249977111117893}}},{font:{color:{theme:7,tint:-.249977111117893}}},{font:{color:{theme:7,tint:-.249977111117893}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:7,tint:-.249977111117893}}},{font:{color:{theme:7,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:7}}}},{font:{color:{theme:7,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:7}}}},{font:{color:{theme:7,tint:-.249977111117893}},border:{left:{style:"thin",color:{theme:7}},right:{style:"thin",color:{theme:7}},top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}},vertical:{style:"thin",color:{theme:7}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight26",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"firstRowStripe",dxfId:5},{type:"firstColumnStripe",dxfId:4},{type:"firstSubtotalColumn",dxfId:3},{type:"firstSubtotalRow",dxfId:2},{type:"secondSubtotalRow",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleLight25:{dxfs:{count:10,dxf:[{font:{color:{theme:6,tint:-.249977111117893}}},{font:{color:{theme:6,tint:-.249977111117893}}},{font:{color:{theme:6,tint:-.249977111117893}}},{font:{color:{theme:6,tint:-.249977111117893}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:6,tint:-.249977111117893}}},{font:{color:{theme:6,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:6}}}},{font:{color:{theme:6,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:6}}}},{font:{color:{theme:6,tint:-.249977111117893}},border:{left:{style:"thin",color:{theme:6}},right:{style:"thin",color:{theme:6}},top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}},vertical:{style:"thin",color:{theme:6}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight25",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"firstRowStripe",dxfId:5},{type:"firstColumnStripe",dxfId:4},{type:"firstSubtotalColumn",dxfId:3},{type:"firstSubtotalRow",dxfId:2},{type:"secondSubtotalRow",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleLight24:{dxfs:{count:10,dxf:[{font:{color:{theme:5,tint:-.249977111117893}}},{font:{color:{theme:5,tint:-.249977111117893}}},{font:{color:{theme:5,tint:-.249977111117893}}},{font:{color:{theme:5,tint:-.249977111117893}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:5,tint:-.249977111117893}}},{font:{color:{theme:5,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:5}}}},{font:{color:{theme:5,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:5}}}},{font:{color:{theme:5,tint:-.249977111117893}},border:{left:{style:"thin",color:{theme:5}},right:{style:"thin",color:{theme:5}},top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}},vertical:{style:"thin",color:{theme:5}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight24",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"firstRowStripe",dxfId:5},{type:"firstColumnStripe",dxfId:4},{type:"firstSubtotalColumn",dxfId:3},{type:"firstSubtotalRow",dxfId:2},{type:"secondSubtotalRow",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleLight23:{dxfs:{count:10,dxf:[{font:{color:{theme:4,tint:-.249977111117893}}},{font:{color:{theme:4,tint:-.249977111117893}}},{font:{color:{theme:4,tint:-.249977111117893}}},{font:{color:{theme:4,tint:-.249977111117893}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:4,tint:-.249977111117893}}},{font:{color:{theme:4,tint:-.249977111117893}},border:{top:{style:"thin",color:{theme:4}}}},{font:{color:{theme:4,tint:-.249977111117893}},border:{bottom:{style:"thin",color:{theme:4}}}},{font:{color:{theme:4,tint:-.249977111117893}},border:{left:{style:"thin",color:{theme:4}},right:{style:"thin",color:{theme:4}},top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}},vertical:{style:"thin",color:{theme:4}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight23",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"firstRowStripe",dxfId:5},{type:"firstColumnStripe",dxfId:4},{type:"firstSubtotalColumn",dxfId:3},{type:"firstSubtotalRow",dxfId:2},{type:"secondSubtotalRow",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleLight22:{dxfs:{count:10,dxf:[{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{left:{style:"thin",color:{theme:0,tint:-.3499862666707358}},right:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:1}},border:{left:{style:"thin",color:{theme:1,tint:.499984740745262}},right:{style:"thin",color:{theme:1,tint:.499984740745262}},top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}},vertical:{style:"thin",color:{theme:1,tint:.499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight22",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"firstColumn",dxfId:6},{type:"firstRowStripe",dxfId:5},{type:"firstColumnStripe",dxfId:4},{type:"firstSubtotalColumn",dxfId:3},{type:"firstSubtotalRow",dxfId:2},{type:"secondSubtotalRow",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleLight21:{dxfs:{count:11,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.249977111117893}},right:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight21",table:!1,count:11,tableStyleElement:[{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight20:{dxfs:{count:11,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.249977111117893}},right:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight20",table:!1,count:11,tableStyleElement:[{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight19:{dxfs:{count:11,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.249977111117893}},right:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight19",table:!1,count:11,tableStyleElement:[{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight18:{dxfs:{count:11,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.249977111117893}},right:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight18",table:!1,count:11,tableStyleElement:[{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight17:{dxfs:{count:11,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.249977111117893}},right:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight17",table:!1,count:11,tableStyleElement:[{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight16:{dxfs:{count:11,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.249977111117893}},right:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight16",table:!1,count:11,tableStyleElement:[{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight15:{dxfs:{count:11,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.249977111117893}},right:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{top:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight15",table:!1,count:11,tableStyleElement:[{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstRowStripe",dxfId:8},{type:"firstColumnStripe",dxfId:7},{type:"firstSubtotalColumn",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight14:{dxfs:{count:12,dxf:[{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:0}}}},{border:{top:{style:"thin",color:{theme:9,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:9,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:9,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:9,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:9}},right:{style:"thin",color:{theme:9}},top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}}}},{border:{left:{style:"thin",color:{theme:9,tint:.5999938962981048}},right:{style:"thin",color:{theme:9,tint:.5999938962981048}},top:{style:"thin",color:{theme:9,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:9,tint:.5999938962981048}}}},{border:{right:{style:"thin",color:{theme:9}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:9}},right:{style:"medium",color:{theme:9}},top:{style:"medium",color:{theme:9}},bottom:{style:"medium",color:{theme:9}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:9}},right:{style:"medium",color:{theme:9}},top:{style:"medium",color:{theme:9}},bottom:{style:"medium",color:{theme:9}},horizontal:{style:"thin",color:{theme:0}}}},{font:{color:{theme:9,tint:-.249977111117893}},border:{horizontal:{style:"thin",color:{theme:9,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight14",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"secondColumnSubheading",dxfId:3},{type:"thirdColumnSubheading",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"secondRowSubheading",dxfId:0}]}]}},PivotStyleLight13:{dxfs:{count:12,dxf:[{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:0}}}},{border:{top:{style:"thin",color:{theme:8,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:8,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:8,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:8,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:8}},right:{style:"thin",color:{theme:8}},top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}}}},{border:{left:{style:"thin",color:{theme:8,tint:.5999938962981048}},right:{style:"thin",color:{theme:8,tint:.5999938962981048}},top:{style:"thin",color:{theme:8,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:8,tint:.5999938962981048}}}},{border:{right:{style:"thin",color:{theme:8}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:8}},right:{style:"medium",color:{theme:8}},top:{style:"medium",color:{theme:8}},bottom:{style:"medium",color:{theme:8}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:8}},right:{style:"medium",color:{theme:8}},top:{style:"medium",color:{theme:8}},bottom:{style:"medium",color:{theme:8}},horizontal:{style:"thin",color:{theme:0}}}},{font:{color:{theme:8,tint:-.249977111117893}},border:{horizontal:{style:"thin",color:{theme:8,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight13",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"secondColumnSubheading",dxfId:3},{type:"thirdColumnSubheading",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"secondRowSubheading",dxfId:0}]}]}},PivotStyleLight12:{dxfs:{count:12,dxf:[{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:0}}}},{border:{top:{style:"thin",color:{theme:7,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:7,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:7,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:7,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:7}},right:{style:"thin",color:{theme:7}},top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}}}},{border:{left:{style:"thin",color:{theme:7,tint:.5999938962981048}},right:{style:"thin",color:{theme:7,tint:.5999938962981048}},top:{style:"thin",color:{theme:7,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:7,tint:.5999938962981048}}}},{border:{right:{style:"thin",color:{theme:7}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:7}},right:{style:"medium",color:{theme:7}},top:{style:"medium",color:{theme:7}},bottom:{style:"medium",color:{theme:7}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:7}},right:{style:"medium",color:{theme:7}},top:{style:"medium",color:{theme:7}},bottom:{style:"medium",color:{theme:7}},horizontal:{style:"thin",color:{theme:0}}}},{font:{color:{theme:7,tint:-.249977111117893}},border:{horizontal:{style:"thin",color:{theme:7,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight12",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"secondColumnSubheading",dxfId:3},{type:"thirdColumnSubheading",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"secondRowSubheading",dxfId:0}]}]}},PivotStyleLight11:{dxfs:{count:12,dxf:[{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:0}}}},{border:{top:{style:"thin",color:{theme:6,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:6,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:6,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:6,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:6}},right:{style:"thin",color:{theme:6}},top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}}}},{border:{left:{style:"thin",color:{theme:6,tint:.5999938962981048}},right:{style:"thin",color:{theme:6,tint:.5999938962981048}},top:{style:"thin",color:{theme:6,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:6,tint:.5999938962981048}}}},{border:{right:{style:"thin",color:{theme:6}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:6}},right:{style:"medium",color:{theme:6}},top:{style:"medium",color:{theme:6}},bottom:{style:"medium",color:{theme:6}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:6}},right:{style:"medium",color:{theme:6}},top:{style:"medium",color:{theme:6}},bottom:{style:"medium",color:{theme:6}},horizontal:{style:"thin",color:{theme:0}}}},{font:{color:{theme:6,tint:-.249977111117893}},border:{horizontal:{style:"thin",color:{theme:6,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight11",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"secondColumnSubheading",dxfId:3},{type:"thirdColumnSubheading",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"secondRowSubheading",dxfId:0}]}]}},PivotStyleLight10:{dxfs:{count:12,dxf:[{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:0}}}},{border:{top:{style:"thin",color:{theme:5,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:5,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:5,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:5,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:5}},right:{style:"thin",color:{theme:5}},top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}}}},{border:{left:{style:"thin",color:{theme:5,tint:.5999938962981048}},right:{style:"thin",color:{theme:5,tint:.5999938962981048}},top:{style:"thin",color:{theme:5,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:5,tint:.5999938962981048}}}},{border:{right:{style:"thin",color:{theme:5}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:5}},right:{style:"medium",color:{theme:5}},top:{style:"medium",color:{theme:5}},bottom:{style:"medium",color:{theme:5}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:5}},right:{style:"medium",color:{theme:5}},top:{style:"medium",color:{theme:5}},bottom:{style:"medium",color:{theme:5}},horizontal:{style:"thin",color:{theme:0}}}},{font:{color:{theme:5,tint:-.249977111117893}},border:{horizontal:{style:"thin",color:{theme:5,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight10",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"secondColumnSubheading",dxfId:3},{type:"thirdColumnSubheading",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"secondRowSubheading",dxfId:0}]}]}},PivotStyleLight9:{dxfs:{count:12,dxf:[{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{bottom:{style:"thin",color:{theme:0}}}},{border:{top:{style:"thin",color:{theme:4,tint:.7999816888943144}}}},{border:{top:{style:"thin",color:{theme:4,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:4,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:4,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:4}},right:{style:"thin",color:{theme:4}},top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}}}},{border:{left:{style:"thin",color:{theme:4,tint:.5999938962981048}},right:{style:"thin",color:{theme:4,tint:.5999938962981048}},top:{style:"thin",color:{theme:4,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:4,tint:.5999938962981048}}}},{border:{right:{style:"thin",color:{theme:4}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:4}},right:{style:"medium",color:{theme:4}},top:{style:"medium",color:{theme:4}},bottom:{style:"medium",color:{theme:4}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:4}},right:{style:"medium",color:{theme:4}},top:{style:"medium",color:{theme:4}},bottom:{style:"medium",color:{theme:4}},horizontal:{style:"thin",color:{theme:0}}}},{font:{color:{theme:4,tint:-.249977111117893}},border:{horizontal:{style:"thin",color:{theme:4,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight9",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"secondColumnSubheading",dxfId:3},{type:"thirdColumnSubheading",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"secondRowSubheading",dxfId:0}]}]}},PivotStyleLight8:{dxfs:{count:11,dxf:[{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{bottom:{style:"thin",color:{theme:0}}}},{border:{top:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{top:{style:"thin",color:{theme:0,tint:-.3499862666707358}},bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{border:{left:{style:"thin",color:{theme:0,tint:-.4499954222235786}},right:{style:"thin",color:{theme:0,tint:-.4499954222235786}},top:{style:"thin",color:{theme:0,tint:-.4499954222235786}},bottom:{style:"thin",color:{theme:0,tint:-.4499954222235786}}}},{border:{left:{style:"thin",color:{theme:0,tint:-.3499862666707358}},right:{style:"thin",color:{theme:0,tint:-.3499862666707358}},top:{style:"thin",color:{theme:0,tint:-.3499862666707358}},bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{border:{right:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}},border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}},horizontal:{style:"thin",color:{theme:0}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight8",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstColumn",dxfId:7},{type:"firstRowStripe",dxfId:6},{type:"firstColumnStripe",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"secondSubtotalRow",dxfId:3},{type:"secondColumnSubheading",dxfId:2},{type:"firstRowSubheading",dxfId:1},{type:"secondRowSubheading",dxfId:0}]}]}},PivotStyleLight7:{dxfs:{count:11,dxf:[{border:{top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}}}},{border:{top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}}}},{font:{b:{},color:{theme:9}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:9}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:9,tint:.5999938962981048}},right:{style:"thin",color:{theme:9,tint:.5999938962981048}},top:{style:"thin",color:{theme:9,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:9,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:9,tint:.5999938962981048}},horizontal:{style:"thin",color:{theme:9,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:9,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:9,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0},bgColor:{theme:0}}},border:{top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:9}},bottom:{style:"thin",color:{theme:9}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:9,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight7",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight6:{dxfs:{count:11,dxf:[{border:{top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}}}},{border:{top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}}}},{font:{b:{},color:{theme:8}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:8}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:8,tint:.5999938962981048}},right:{style:"thin",color:{theme:8,tint:.5999938962981048}},top:{style:"thin",color:{theme:8,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:8,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:8,tint:.5999938962981048}},horizontal:{style:"thin",color:{theme:8,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:8,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0},bgColor:{theme:0}}},border:{top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:8}},bottom:{style:"thin",color:{theme:8}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:8,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight6",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight5:{dxfs:{count:11,dxf:[{border:{top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}}}},{border:{top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}}}},{font:{b:{},color:{theme:7}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:7}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:7,tint:.5999938962981048}},right:{style:"thin",color:{theme:7,tint:.5999938962981048}},top:{style:"thin",color:{theme:7,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:7,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:7,tint:.5999938962981048}},horizontal:{style:"thin",color:{theme:7,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:7,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:7,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0},bgColor:{theme:0}}},border:{top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:7}},bottom:{style:"thin",color:{theme:7}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:7,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight5",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight4:{dxfs:{count:11,dxf:[{border:{top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}}}},{border:{top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}}}},{font:{b:{},color:{theme:6}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:6}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:6,tint:.5999938962981048}},right:{style:"thin",color:{theme:6,tint:.5999938962981048}},top:{style:"thin",color:{theme:6,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:6,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:6,tint:.5999938962981048}},horizontal:{style:"thin",color:{theme:6,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:6,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0},bgColor:{theme:0}}},border:{top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:6}},bottom:{style:"thin",color:{theme:6}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:6,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight4",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight3:{dxfs:{count:11,dxf:[{border:{top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}}}},{border:{top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}}}},{font:{b:{},color:{theme:5}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:5}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:5,tint:.5999938962981048}},right:{style:"thin",color:{theme:5,tint:.5999938962981048}},top:{style:"thin",color:{theme:5,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:5,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:5,tint:.5999938962981048}},horizontal:{style:"thin",color:{theme:5,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:5,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:5,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0},bgColor:{theme:0}}},border:{top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:5}},bottom:{style:"thin",color:{theme:5}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:5,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight3",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight2:{dxfs:{count:11,dxf:[{border:{top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}}}},{border:{top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}}}},{font:{color:{theme:4}}},{font:{b:{},color:{theme:1}}},{font:{color:{theme:4}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{left:{style:"thin",color:{theme:4,tint:.5999938962981048}},right:{style:"thin",color:{theme:4,tint:.5999938962981048}},top:{style:"thin",color:{theme:4,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:4,tint:.5999938962981048}},vertical:{style:"thin",color:{theme:4,tint:.5999938962981048}},horizontal:{style:"thin",color:{theme:4,tint:.5999938962981048}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:4,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0},bgColor:{theme:0}}},border:{top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:4}},bottom:{style:"thin",color:{theme:4}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:4,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight2",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleLight1:{dxfs:{count:11,dxf:[{border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1,tint:.499984740745262}}},{font:{b:{},color:{theme:1}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.3499862666707358}},right:{style:"thin",color:{theme:0,tint:-.3499862666707358}},top:{style:"thin",color:{theme:0,tint:-.3499862666707358}},bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}},vertical:{style:"thin",color:{theme:0,tint:-.3499862666707358}},horizontal:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{top:{style:"thin",color:{theme:0,tint:-.3499862666707358}},bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0},bgColor:{theme:0}}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}},border:{top:{style:"thin",color:{theme:1,tint:.499984740745262}},bottom:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:1}},border:{horizontal:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleLight1",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalRow",dxfId:5},{type:"secondSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark28:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{color:{theme:9,tint:.7999816888943144}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.3999755851924192},bgColor:{theme:9,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.3999755851924192},bgColor:{theme:9,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},border:{top:{style:"medium",color:{theme:0}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:9,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark28",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"secondRowStripe",dxfId:7},{type:"secondColumnStripe",dxfId:6},{type:"firstHeaderCell",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"secondSubtotalRow",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark27:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{color:{theme:8,tint:.7999816888943144}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.3999755851924192},bgColor:{theme:8,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.3999755851924192},bgColor:{theme:8,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},border:{top:{style:"medium",color:{theme:0}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:8,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark27",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"secondRowStripe",dxfId:7},{type:"secondColumnStripe",dxfId:6},{type:"firstHeaderCell",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"secondSubtotalRow",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark26:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{color:{theme:7,tint:.7999816888943144}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.3999755851924192},bgColor:{theme:7,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.3999755851924192},bgColor:{theme:7,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},border:{top:{style:"medium",color:{theme:0}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:7,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark26",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"secondRowStripe",dxfId:7},{type:"secondColumnStripe",dxfId:6},{type:"firstHeaderCell",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"secondSubtotalRow",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark25:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{color:{theme:6,tint:.7999816888943144}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.3999755851924192},bgColor:{theme:6,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.3999755851924192},bgColor:{theme:6,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},border:{top:{style:"medium",color:{theme:0}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:6,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark25",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"secondRowStripe",dxfId:7},{type:"secondColumnStripe",dxfId:6},{type:"firstHeaderCell",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"secondSubtotalRow",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark24:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{color:{theme:5,tint:.7999816888943144}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.3999755851924192},bgColor:{theme:5,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.3999755851924192},bgColor:{theme:5,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},border:{top:{style:"medium",color:{theme:0}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:5,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark24",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"secondRowStripe",dxfId:7},{type:"secondColumnStripe",dxfId:6},{type:"firstHeaderCell",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"secondSubtotalRow",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark23:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{color:{theme:4,tint:.7999816888943144}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.3999755851924192},bgColor:{theme:4,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.3999755851924192},bgColor:{theme:4,tint:.3999755851924192}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},border:{top:{style:"medium",color:{theme:0}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:4,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark23",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"secondRowStripe",dxfId:7},{type:"secondColumnStripe",dxfId:6},{type:"firstHeaderCell",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"secondSubtotalRow",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark22:{dxfs:{count:12,dxf:[{fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:0,tint:-.1499984740745262}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.4499954222235786},bgColor:{theme:0,tint:-.4499954222235786}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.4499954222235786},bgColor:{theme:0,tint:-.4499954222235786}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:0}},border:{top:{style:"medium",color:{theme:0}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}},border:{bottom:{style:"medium",color:{theme:0}}}},{font:{color:{theme:0,tint:-.1499984740745262}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.499984740745262},bgColor:{theme:0,tint:-.499984740745262}}},border:{vertical:{style:"thin",color:{theme:0}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark22",table:!1,count:12,tableStyleElement:[{type:"wholeTable",dxfId:11},{type:"headerRow",dxfId:10},{type:"totalRow",dxfId:9},{type:"firstColumn",dxfId:8},{type:"secondRowStripe",dxfId:7},{type:"secondColumnStripe",dxfId:6},{type:"firstHeaderCell",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"secondSubtotalRow",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark21:{dxfs:{count:11,dxf:[{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}}},{border:{bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.249977111117893},bgColor:{theme:9,tint:-.249977111117893}}},border:{left:{style:"thin",color:{theme:9,tint:.3999755851924192}},right:{style:"thin",color:{theme:9,tint:.3999755851924192}},top:{style:"thin",color:{theme:9,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:9,tint:.3999755851924192}},right:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:9,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{color:{theme:9,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9},bgColor:{theme:9}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark21",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalColumn",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstColumnSubheading",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark20:{dxfs:{count:11,dxf:[{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}}},{border:{bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.249977111117893},bgColor:{theme:8,tint:-.249977111117893}}},border:{left:{style:"thin",color:{theme:8,tint:.3999755851924192}},right:{style:"thin",color:{theme:8,tint:.3999755851924192}},top:{style:"thin",color:{theme:8,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:8,tint:.3999755851924192}},right:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:8,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{color:{theme:8,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8},bgColor:{theme:8}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark20",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalColumn",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstColumnSubheading",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark19:{dxfs:{count:11,dxf:[{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}}},{border:{bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.249977111117893},bgColor:{theme:7,tint:-.249977111117893}}},border:{left:{style:"thin",color:{theme:7,tint:.3999755851924192}},right:{style:"thin",color:{theme:7,tint:.3999755851924192}},top:{style:"thin",color:{theme:7,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:7,tint:.3999755851924192}},right:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:7,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{color:{theme:7,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7},bgColor:{theme:7}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark19",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalColumn",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstColumnSubheading",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark18:{dxfs:{count:11,dxf:[{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}}},{border:{bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.249977111117893},bgColor:{theme:6,tint:-.249977111117893}}},border:{left:{style:"thin",color:{theme:6,tint:.3999755851924192}},right:{style:"thin",color:{theme:6,tint:.3999755851924192}},top:{style:"thin",color:{theme:6,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:6,tint:.3999755851924192}},right:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:6,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{color:{theme:6,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6},bgColor:{theme:6}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark18",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalColumn",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstColumnSubheading",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark17:{dxfs:{count:11,dxf:[{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}}},{border:{bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.249977111117893},bgColor:{theme:5,tint:-.249977111117893}}},border:{left:{style:"thin",color:{theme:5,tint:.3999755851924192}},right:{style:"thin",color:{theme:5,tint:.3999755851924192}},top:{style:"thin",color:{theme:5,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:5,tint:.3999755851924192}},right:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:5,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{color:{theme:5,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5},bgColor:{theme:5}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark17",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalColumn",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstColumnSubheading",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark16:{dxfs:{count:11,dxf:[{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}}},{border:{bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.249977111117893},bgColor:{theme:4,tint:-.249977111117893}}},border:{left:{style:"thin",color:{theme:4,tint:.3999755851924192}},right:{style:"thin",color:{theme:4,tint:.3999755851924192}},top:{style:"thin",color:{theme:4,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:4,tint:.3999755851924192}},right:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:4,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{color:{theme:4,tint:.7999816888943144}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4},bgColor:{theme:4}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark16",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalColumn",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstColumnSubheading",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark15:{dxfs:{count:11,dxf:[{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}},border:{bottom:{style:"thin",color:{theme:4,tint:.7999816888943144}}}},{border:{bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:0}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}},border:{left:{style:"thin",color:{theme:0,tint:-.3499862666707358}},right:{style:"thin",color:{theme:0,tint:-.3499862666707358}},top:{style:"thin",color:{theme:0,tint:-.3499862666707358}},bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{border:{left:{style:"thin",color:{theme:0,tint:-.249977111117893}},right:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{border:{top:{style:"thin",color:{theme:0,tint:-.3499862666707358}},bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1},bgColor:{theme:1}}}},{font:{color:{theme:0,tint:-.1499984740745262}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.4499954222235786},bgColor:{theme:0,tint:-.4499954222235786}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark15",table:!1,count:11,tableStyleElement:[{type:"wholeTable",dxfId:10},{type:"headerRow",dxfId:9},{type:"totalRow",dxfId:8},{type:"firstRowStripe",dxfId:7},{type:"firstColumnStripe",dxfId:6},{type:"firstSubtotalColumn",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstColumnSubheading",dxfId:3},{type:"firstRowSubheading",dxfId:2},{type:"secondRowSubheading",dxfId:1},{type:"pageFieldLabels",dxfId:0}]}]}},PivotStyleDark14:{dxfs:{count:13,dxf:[{border:{right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}},border:{bottom:{style:"medium",color:{theme:9,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:9,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:9,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:9,tint:.3999755851924192}},right:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:9,tint:.3999755851924192}},right:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:9,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:9,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark14",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"secondRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"secondColumnStripe",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondColumnSubheading",dxfId:5},{type:"thirdColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark13:{dxfs:{count:13,dxf:[{border:{right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}},border:{bottom:{style:"medium",color:{theme:8,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:8,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:8,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:8,tint:.3999755851924192}},right:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:8,tint:.3999755851924192}},right:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:8,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:8,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark13",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"secondRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"secondColumnStripe",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondColumnSubheading",dxfId:5},{type:"thirdColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark12:{dxfs:{count:13,dxf:[{border:{right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}},border:{bottom:{style:"medium",color:{theme:7,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:7,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:7,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:7,tint:.3999755851924192}},right:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:7,tint:.3999755851924192}},right:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:7,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:7,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark12",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"secondRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"secondColumnStripe",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondColumnSubheading",dxfId:5},{type:"thirdColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark11:{dxfs:{count:13,dxf:[{border:{right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}},border:{bottom:{style:"medium",color:{theme:6,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:6,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:6,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:6,tint:.3999755851924192}},right:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:6,tint:.3999755851924192}},right:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:6,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:6,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark11",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"secondRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"secondColumnStripe",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondColumnSubheading",dxfId:5},{type:"thirdColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark10:{dxfs:{count:13,dxf:[{border:{right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}},border:{bottom:{style:"medium",color:{theme:5,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:5,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:5,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:5,tint:.3999755851924192}},right:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:5,tint:.3999755851924192}},right:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:5,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:5,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark10",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"secondRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"secondColumnStripe",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondColumnSubheading",dxfId:5},{type:"thirdColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark9:{dxfs:{count:13,dxf:[{border:{right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}},border:{bottom:{style:"medium",color:{theme:4,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:4,tint:.7999816888943144}}}},{border:{top:{style:"medium",color:{theme:4,tint:.7999816888943144}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}}},{border:{left:{style:"thin",color:{theme:4,tint:.3999755851924192}},right:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{border:{left:{style:"thin",color:{theme:4,tint:.3999755851924192}},right:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{border:{top:{style:"thin",color:{theme:4,tint:.5999938962981048}},bottom:{style:"thin",color:{theme:4,tint:.5999938962981048}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark9",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"secondRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"secondColumnStripe",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondColumnSubheading",dxfId:5},{type:"thirdColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark8:{dxfs:{count:13,dxf:[{border:{right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.249977111117893},bgColor:{theme:0,tint:-.249977111117893}}},border:{bottom:{style:"medium",color:{theme:0,tint:-.1499984740745262}}}},{border:{top:{style:"medium",color:{theme:0,tint:-.249977111117893}}}},{border:{top:{style:"medium",color:{theme:0,tint:-.249977111117893}}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.249977111117893},bgColor:{theme:0,tint:-.249977111117893}}}},{border:{left:{style:"thin",color:{theme:0,tint:-.4499954222235786}},right:{style:"thin",color:{theme:0,tint:-.4499954222235786}}}},{border:{left:{style:"thin",color:{theme:0,tint:-.4499954222235786}},right:{style:"thin",color:{theme:0,tint:-.4499954222235786}}}},{border:{top:{style:"thin",color:{theme:0,tint:-.249977111117893}},bottom:{style:"thin",color:{theme:0,tint:-.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.249977111117893},bgColor:{theme:1,tint:.249977111117893}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{left:{style:"medium",color:{theme:1,tint:.499984740745262}},right:{style:"medium",color:{theme:1,tint:.499984740745262}},top:{style:"medium",color:{theme:1,tint:.499984740745262}},bottom:{style:"medium",color:{theme:1,tint:.499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark8",table:!1,count:13,tableStyleElement:[{type:"wholeTable",dxfId:12},{type:"headerRow",dxfId:11},{type:"totalRow",dxfId:10},{type:"secondRowStripe",dxfId:9},{type:"firstColumnStripe",dxfId:8},{type:"secondColumnStripe",dxfId:7},{type:"firstSubtotalRow",dxfId:6},{type:"secondColumnSubheading",dxfId:5},{type:"thirdColumnSubheading",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark7:{dxfs:{count:10,dxf:[{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.499984740745262},bgColor:{theme:9,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:9,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.499984740745262},bgColor:{theme:9,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:9,tint:-.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.7999816888943144},bgColor:{theme:9,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:9,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:9,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:9,tint:.7999816888943144}}}},{border:{left:{style:"thin",color:{theme:9,tint:.7999816888943144}},right:{style:"thin",color:{theme:9,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.3999755851924192},bgColor:{theme:9,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.499984740745262},bgColor:{theme:9,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:-.499984740745262},bgColor:{theme:9,tint:-.499984740745262}}},border:{bottom:{style:"thin",color:{theme:9}},horizontal:{style:"thin",color:{theme:9,tint:-.499984740745262}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:9,tint:.5999938962981048},bgColor:{theme:9,tint:.5999938962981048}}},border:{horizontal:{style:"thin",color:{theme:9,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark7",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"secondRowStripe",dxfId:6},{type:"secondColumnStripe",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark6:{dxfs:{count:10,dxf:[{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.499984740745262},bgColor:{theme:8,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:8,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.499984740745262},bgColor:{theme:8,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:8,tint:-.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.7999816888943144},bgColor:{theme:8,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:8,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:8,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:8,tint:.7999816888943144}}}},{border:{left:{style:"thin",color:{theme:8,tint:.7999816888943144}},right:{style:"thin",color:{theme:8,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.3999755851924192},bgColor:{theme:8,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.499984740745262},bgColor:{theme:8,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:-.499984740745262},bgColor:{theme:8,tint:-.499984740745262}}},border:{bottom:{style:"thin",color:{theme:8}},horizontal:{style:"thin",color:{theme:8,tint:-.499984740745262}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:8,tint:.5999938962981048},bgColor:{theme:8,tint:.5999938962981048}}},border:{horizontal:{style:"thin",color:{theme:8,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark6",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"secondRowStripe",dxfId:6},{type:"secondColumnStripe",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark5:{dxfs:{count:10,dxf:[{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.499984740745262},bgColor:{theme:7,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:7,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.499984740745262},bgColor:{theme:7,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:7,tint:-.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.7999816888943144},bgColor:{theme:7,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:7,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:7,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:7,tint:.7999816888943144}}}},{border:{left:{style:"thin",color:{theme:7,tint:.7999816888943144}},right:{style:"thin",color:{theme:7,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.3999755851924192},bgColor:{theme:7,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.499984740745262},bgColor:{theme:7,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:-.499984740745262},bgColor:{theme:7,tint:-.499984740745262}}},border:{bottom:{style:"thin",color:{theme:7}},horizontal:{style:"thin",color:{theme:7,tint:-.499984740745262}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:7,tint:.5999938962981048},bgColor:{theme:7,tint:.5999938962981048}}},border:{horizontal:{style:"thin",color:{theme:7,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark5",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"secondRowStripe",dxfId:6},{type:"secondColumnStripe",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark4:{dxfs:{count:10,dxf:[{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.499984740745262},bgColor:{theme:6,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:6,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.499984740745262},bgColor:{theme:6,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:6,tint:-.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.7999816888943144},bgColor:{theme:6,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:6,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:6,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:6,tint:.7999816888943144}}}},{border:{left:{style:"thin",color:{theme:6,tint:.7999816888943144}},right:{style:"thin",color:{theme:6,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.3999755851924192},bgColor:{theme:6,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.499984740745262},bgColor:{theme:6,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:-.499984740745262},bgColor:{theme:6,tint:-.499984740745262}}},border:{bottom:{style:"thin",color:{theme:6}},horizontal:{style:"thin",color:{theme:6,tint:-.499984740745262}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:6,tint:.5999938962981048},bgColor:{theme:6,tint:.5999938962981048}}},border:{horizontal:{style:"thin",color:{theme:6,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark4",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"secondRowStripe",dxfId:6},{type:"secondColumnStripe",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark3:{dxfs:{count:10,dxf:[{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.499984740745262},bgColor:{theme:5,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:5,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.499984740745262},bgColor:{theme:5,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:5,tint:-.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.7999816888943144},bgColor:{theme:5,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:5,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:5,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:5,tint:.7999816888943144}}}},{border:{left:{style:"thin",color:{theme:5,tint:.7999816888943144}},right:{style:"thin",color:{theme:5,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.3999755851924192},bgColor:{theme:5,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.499984740745262},bgColor:{theme:5,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:-.499984740745262},bgColor:{theme:5,tint:-.499984740745262}}},border:{bottom:{style:"thin",color:{theme:5}},horizontal:{style:"thin",color:{theme:5,tint:-.499984740745262}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:5,tint:.5999938962981048},bgColor:{theme:5,tint:.5999938962981048}}},border:{horizontal:{style:"thin",color:{theme:5,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark3",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"secondRowStripe",dxfId:6},{type:"secondColumnStripe",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark2:{dxfs:{count:10,dxf:[{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.499984740745262},bgColor:{theme:4,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:4,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.499984740745262},bgColor:{theme:4,tint:-.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:4,tint:-.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.7999816888943144},bgColor:{theme:4,tint:.7999816888943144}}},border:{top:{style:"thin",color:{theme:4,tint:.3999755851924192}},bottom:{style:"thin",color:{theme:4,tint:.3999755851924192}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:4,tint:.7999816888943144}}}},{border:{left:{style:"thin",color:{theme:4,tint:.7999816888943144}},right:{style:"thin",color:{theme:4,tint:.7999816888943144}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.3999755851924192},bgColor:{theme:4,tint:.3999755851924192}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.499984740745262},bgColor:{theme:4,tint:-.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:-.499984740745262},bgColor:{theme:4,tint:-.499984740745262}}},border:{bottom:{style:"thin",color:{theme:4}},horizontal:{style:"thin",color:{theme:4,tint:-.499984740745262}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:4,tint:.5999938962981048},bgColor:{theme:4,tint:.5999938962981048}}},border:{horizontal:{style:"thin",color:{theme:4,tint:.7999816888943144}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark2",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"secondRowStripe",dxfId:6},{type:"secondColumnStripe",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}},PivotStyleDark1:{dxfs:{count:10,dxf:[{font:{color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}},border:{horizontal:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:1}}},{font:{b:{},color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.1499984740745262},bgColor:{theme:0,tint:-.1499984740745262}}},border:{top:{style:"thin",color:{theme:0,tint:-.3499862666707358}},bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:1}},border:{bottom:{style:"thin",color:{theme:0,tint:-.3499862666707358}}}},{border:{left:{style:"thin",color:{theme:0,tint:-.1499984740745262}},right:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}},{fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.3499862666707358},bgColor:{theme:0,tint:-.3499862666707358}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}}},{font:{b:{},color:{theme:0}},fill:{patternFill:{patternType:"solid",fgColor:{theme:1,tint:.499984740745262},bgColor:{theme:1,tint:.499984740745262}}},border:{bottom:{style:"thin",color:{theme:0}},horizontal:{style:"thin",color:{theme:1,tint:.499984740745262}}}},{font:{color:{theme:1}},fill:{patternFill:{patternType:"solid",fgColor:{theme:0,tint:-.249977111117893},bgColor:{theme:0,tint:-.249977111117893}}},border:{horizontal:{style:"thin",color:{theme:0,tint:-.1499984740745262}}}}]},tableStyles:{count:1,defaultTableStyle:"TableStyleMedium9",defaultPivotStyle:"PivotStyleLight16",tableStyle:[{name:"PivotStyleDark1",table:!1,count:10,tableStyleElement:[{type:"wholeTable",dxfId:9},{type:"headerRow",dxfId:8},{type:"totalRow",dxfId:7},{type:"secondRowStripe",dxfId:6},{type:"secondColumnStripe",dxfId:5},{type:"firstSubtotalRow",dxfId:4},{type:"firstRowSubheading",dxfId:3},{type:"secondRowSubheading",dxfId:2},{type:"pageFieldLabels",dxfId:1},{type:"pageFieldValues",dxfId:0}]}]}}}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/table/buildTableStyle.js*/
- amis.define("1497e91",(function(e,l,t,r){"use strict";Object.defineProperty(l,"__esModule",{value:!0});var a=e("68b98b9");l.buildTableStyle=function(e){var l,t,r,o,i,n,s,u,b,c,d,f;try{for(var v=a.__values((null===(o=null===(r=e.tableStyles.tableStyle)||void 0===r?void 0:r[0])||void 0===o?void 0:o.tableStyleElement)||[]),w=v.next();!w.done;w=v.next()){var y=w.value,m=y.type,S=null!==(i=y.dxfId)&&void 0!==i?i:1;switch(S-=1,m){case"wholeTable":n=S;break;case"headerRow":s=S;break;case"firstRowStripe":u=S;break;case"firstColumnStripe":b=S;break;case"totalRow":c=S;break;case"firstColumn":d=S;break;case"lastColumn":f=S}}}catch(e){l={error:e}}finally{try{w&&!w.done&&(t=v.return)&&t.call(v)}finally{if(l)throw l.error}}return{wholeTable:n,headerRow:s,firstRowStripe:u,firstColumnStripe:b,totalRow:c,firstColumn:d,lastColumn:f}}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/table/calcTableRelativePosition.js*/
- amis.define("7b6fb72",(function(e,o,r,t){"use strict";Object.defineProperty(o,"__esModule",{value:!0}),o.calcTableRelativePosition=function(e,o,r,t,d,i,a,l){for(var n=void 0,s=void 0,c="middle",v="middle",f=0,u=0,w=e.startRow;w<=e.endRow;w++)o(w)||f++,w===t&&(u=f-1);var p=u;i>0&&(p-=i),n=p%2==0?"odd":"even",0===p&&(c="first"),i&&u<i&&(c="header",n="header"),p===f-i-a-1&&(c="last"),l&&p>=f-i-a&&(n="total",c="total");for(var y=0,R=0,T=e.startCol;T<=e.endCol;T++)r(T)||y++,T===d&&(R=y-1);return s=R%2==0?"odd":"even",0===R&&(v="first"),R===y-1&&(v="last"),void 0===n&&(console.warn("calcRelativeType error",t,d,e),n="odd"),void 0===s&&(console.warn("calcRelativeType error",t,d,e),s="odd"),{rowType:n,colType:s,rowPosition:c,colPosition:v}}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/table/applyTableStyle.js*/
- amis.define("0e6fafd",(function(o,e,l,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=o("52cc40e"),r=o("b732624"),a=o("1497e91"),n=o("7b6fb72");e.applyTableStyle=function(o,e,l,t,s,f){var d,p=null!==(d=e.headerRowCount)&&void 0!==d?d:1,w=e.totalsRowShown||!0,u=e.totalsRowCount||0;u>0&&(w=!0);var y=e.tableStyleInfo;if(y){var b=y.name;if(b){var c=i.presetTableStyles[b];if(c){var F=n.calcTableRelativePosition(l,(function(o){return t.isRowHidden(o)}),(function(o){return t.isColHidden(o)}),s,f,p,u,w),v=y.showFirstColumn||!1,h=y.showLastColumn||!1,m=y.showRowStripes||!1,C=y.showColumnStripes||!1,R=c.dxfs.dxf||[],S=a.buildTableStyle(c);void 0!==S.wholeTable&&r.applyDxf(o,R[S.wholeTable]),m&&"odd"===F.rowType&&void 0!==S.firstRowStripe&&r.applyDxf(o,R[S.firstRowStripe]),C&&"odd"===F.colType&&void 0!==S.firstColumnStripe&&r.applyDxf(o,R[S.firstColumnStripe]),"header"===F.rowType&&void 0!==S.headerRow&&r.applyDxf(o,R[S.headerRow]),"total"===F.rowType&&void 0!==S.totalRow&&r.applyDxf(o,R[S.totalRow]),v&&"first"===F.colPosition&&void 0!==S.firstColumn&&r.applyDxf(o,R[S.firstColumn]),h&&"last"===F.colPosition&&void 0!==S.lastColumn&&r.applyDxf(o,R[S.lastColumn]),o.border||(o.border={bottom:{color:{rgb:"FFFFFFFF"},style:"thin"},right:{color:{rgb:"FFFFFFFF"},style:"thin"}})}else console.warn("未知的表格样式",b)}else console.warn("表格缺少 name 字段",e)}else console.warn("表格缺少 tableStyleInfo 字段",e)}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/applyTablePartsStyle.js*/
- amis.define("19f23e2",(function(e,r,a,l){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),t=e("9a404b6"),f=e("0e6fafd");r.applyTablePartsStyle=function(e,r){var a,l,o=r.row,i=r.col;try{for(var s=n.__values(e.getTableParts()),c=s.next();!c.done;c=s.next()){var y=c.value;if(y.ref){var u=t.parseRange(y.ref);t.isCellInRange(u,o,i)&&f.applyTableStyle(r,y,u,e,o,i)}else console.warn("表格缺少 ref 字段",y)}}catch(e){a={error:e}}finally{try{c&&!c.done&&(l=s.return)&&l.call(s)}finally{if(a)throw a.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/getCellAbsolutePosition.js*/
- amis.define("73e7970",(function(e,t,i,f){"use strict";function o(e,t,i){if(void 0!==t[e])return t[e];for(var f=Math.max(0,t.length-1);f<=e;f++){var o=i(f);t[f]=0!==f?{offset:t[f-1].offset+t[f-1].size,size:o}:{offset:0,size:o}}return t[e]}Object.defineProperty(t,"__esModule",{value:!0}),t.getCellAbsolutePosition=function(e,t,i,f,s,n){void 0===f&&(f=[]),void 0===n&&(n=[]);var r=o(e,f,i),u=o(t,n,s);return{x:u.offset,y:r.offset,width:u.size,height:r.size}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/getOneCellAnchorPosition.js*/
- amis.define("ddb9431",(function(o,i,e,l){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var d=o("bc13b1e");i.getOneCellAnchorPosition=function(o,i){var e,l,n,t,r,u=null===(e=o.from)||void 0===e?void 0:e[0];if(u){var v=(null===(l=u.row)||void 0===l?void 0:l[0])||0,f=d.emuToPx(null===(n=u.rowOff)||void 0===n?void 0:n[0]),c=(null===(t=u.col)||void 0===t?void 0:t[0])||0,h=d.emuToPx(null===(r=u.colOff)||void 0===r?void 0:r[0]),s=i.getCellPosition(v,c);return{x:s.x,y:s.y,width:h,height:f}}return{x:0,y:0,width:0,height:0}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/drawing/getTwoCellAnchorPosition.js*/
- amis.define("f3f6dff",(function(o,i,l,d){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var e=o("bc13b1e");i.getTwoCellAnchorPosition=function(o,i){var l,d,v,n,u,t,f,r,c,x,P=null===(l=o.from)||void 0===l?void 0:l[0],h=null===(d=o.to)||void 0===d?void 0:d[0];if(!P||!h)return{x:0,y:0,width:0,height:0};var s=(null===(v=P.row)||void 0===v?void 0:v[0])||0,w=e.emuToPx(null===(n=P.rowOff)||void 0===n?void 0:n[0]),m=(null===(u=P.col)||void 0===u?void 0:u[0])||0,a=e.emuToPx(null===(t=P.colOff)||void 0===t?void 0:t[0]),g=i.getCellPosition(s,m),y=(null===(f=h.row)||void 0===f?void 0:f[0])||0,O=e.emuToPx(null===(r=h.rowOff)||void 0===r?void 0:r[0]),T=(null===(c=h.col)||void 0===c?void 0:c[0])||0,b=e.emuToPx(null===(x=h.colOff)||void 0===x?void 0:x[0]),C=i.getCellPosition(y,T),_=g.x+a,j=g.y+w;return{x:_,y:j,width:C.x+b-_,height:C.y+O-j}}}));
- ;/*!node_modules/office-viewer/lib/excel/data/autoFilter/evalCustomFilter.js*/
- amis.define("7274bb7",(function(e,t,s,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=e("e638c7d");t.evalCustomFilter=function(e,t,s){t=t.toLowerCase();var a=s.value.toLowerCase(),i=s.num;switch(e=e||"equal"){case"equal":return t.startsWith("*")&&t.endsWith("*")?a.includes(t.slice(1,-1)):t.endsWith("*")?a.startsWith(t.slice(0,-1)):t.startsWith("*")?a.endsWith(t.slice(1)):a===t;case"notEqual":return t.startsWith("*")&&t.endsWith("*")?!a.includes(t.slice(1,-1)):t.endsWith("*")?!a.startsWith(t.slice(0,-1)):t.startsWith("*")?!a.endsWith(t.slice(1)):a!==t;case"lessThan":return void 0!==i&&r.lt(i,parseFloat(t));case"lessThanOrEqual":return void 0!==i&&r.lte(i,parseFloat(t));case"greaterThan":return void 0!==i&&r.gt(i,parseFloat(t));case"greaterThanOrEqual":return void 0!==i&&r.gte(i,parseFloat(t))}return!1}}));
- ;/*!node_modules/office-viewer/lib/excel/data/autoFilter/customFilter.js*/
- amis.define("ac2cf32",(function(r,e,t,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var l=r("68b98b9"),n=r("7274bb7");e.customFilter=function(r,e){var t,a,o,i,f,v;if(!e)return new Set;var d=new Set,u=new Set,c=e.and,y=e.customFilter||[];try{for(var s=l.__values(r),w=s.next();!w.done;w=s.next()){var _=w.value;try{for(var b=(o=void 0,l.__values(y)),h=b.next();!h.done;h=b.next()){var x=h.value,m=x.operator,F=x.val;if(void 0!==F){var S=n.evalCustomFilter(m,F,_);if(c){if(!S){d.add(_.row);break}}else d.add(_.row),S&&u.add(_.row)}}}catch(r){o={error:r}}finally{try{h&&!h.done&&(i=b.return)&&i.call(b)}finally{if(o)throw o.error}}}}catch(r){t={error:r}}finally{try{w&&!w.done&&(a=s.return)&&a.call(s)}finally{if(t)throw t.error}}if(!c)try{for(var p=l.__values(u),j=p.next();!j.done;j=p.next()){var k=j.value;d.delete(k)}}catch(r){f={error:r}}finally{try{j&&!j.done&&(v=p.return)&&v.call(p)}finally{if(f)throw f.error}}return d}}));
- ;/*!node_modules/office-viewer/lib/excel/data/autoFilter/inDateGroupItems.js*/
- amis.define("c305612",(function(e,t,a,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var g=e("68b98b9");t.inDateGroupItems=function(e,t){var a,r,n=!1;try{for(var u=g.__values(e),l=u.next();!l.done;l=u.next()){var o=l.value,s=o.date;switch(o.dateTimeGrouping){case"year":t.getFullYear()===s.getFullYear()&&(n=!0);break;case"month":t.getFullYear()===s.getFullYear()&&t.getMonth()===s.getMonth()&&(n=!0);break;case"day":t.getFullYear()===s.getFullYear()&&t.getMonth()===s.getMonth()&&t.getDate()===s.getDate()&&(n=!0);break;case"hour":t.getFullYear()===s.getFullYear()&&t.getMonth()===s.getMonth()&&t.getDate()===s.getDate()&&t.getHours()===s.getHours()&&(n=!0);break;case"minute":t.getFullYear()===s.getFullYear()&&t.getMonth()===s.getMonth()&&t.getDate()===s.getDate()&&t.getHours()===s.getHours()&&t.getMinutes()===s.getMinutes()&&(n=!0);break;case"second":t.getFullYear()===s.getFullYear()&&t.getMonth()===s.getMonth()&&t.getDate()===s.getDate()&&t.getHours()===s.getHours()&&t.getMinutes()===s.getMinutes()&&t.getSeconds()===s.getSeconds()&&(n=!0)}}}catch(e){a={error:e}}finally{try{l&&!l.done&&(r=u.return)&&r.call(u)}finally{if(a)throw a.error}}return n}}));
- ;/*!node_modules/office-viewer/lib/excel/data/autoFilter/filters.js*/
- amis.define("d4d9b14",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var n=e("68b98b9"),o=e("7516437"),i=e("c305612");r.filters=function(e,r,t){var a,u;void 0===t&&(t=!1);var l=new Set;if(!r)return l;var d=r.filter||[],f=new Set(d.map((function(e){return e.val}))),v=(r.dateGroupItem||[]).map((function(e){var r=e.dateTimeGrouping,t=e.year||2024,a=e.month||1,n=e.day||1,o=e.hour||0,i=e.minute||0,u=e.second||0;return{date:new Date(Date.UTC(t,a-1,n,o,i,u)),dateTimeGrouping:r}})).filter(Boolean);try{for(var c=n.__values(e),m=c.next();!m.done;m=c.next()){var s=m.value;f.size>0&&!f.has(s.value)&&l.add(s.row),v.length>0&&(i.inDateGroupItems(v,o.fromExcelDate(s.value,t))||l.add(s.row))}}catch(e){a={error:e}}finally{try{m&&!m.done&&(u=c.return)&&u.call(c)}finally{if(a)throw a.error}}return l}}));
- ;/*!node_modules/office-viewer/lib/excel/data/autoFilter/applySortState.js*/
- amis.define("cea985f",(function(r,e,a,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=r("68b98b9"),o=r("9a404b6");e.applySortState=function(r,e,a,t){var i,s;void 0===t&&(t=1);var f=a.sortState;if(f)try{for(var l=n.__values(f.sortCondition||[]),c=l.next();!c.done;c=l.next()){var v=c.value,d=v.ref;if(d){var u=o.parseRange(d);u.startRow+=t;var y=v.descending?"desc":"asc";e.sortColumn(r,u,y)}}}catch(r){i={error:r}}finally{try{c&&!c.done&&(s=l.return)&&s.call(l)}finally{if(i)throw i.error}}}}));
- ;/*!node_modules/office-viewer/lib/excel/data/applyAutoFilter.js*/
- amis.define("e95ab9d",(function(r,e,a,t){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=r("68b98b9"),l=r("9a404b6"),n=r("ac2cf32"),d=r("d4d9b14"),s=r("cea985f");e.applyAutoFilter=function(r,e,a,t,i,v){var w,u,f,_,c,y,h;void 0===v&&(v=1);var p=i.ref;if(p){var R=l.parseRange(p);R.startRow+=v,s.applySortState(r,t,i,v);for(var b=R.startRow;b<=R.endRow;b++)(null===(c=a.worksheet)||void 0===c?void 0:c.rows[b])&&(a.worksheet.rows[b].hidden=!1);var k=null!==(h=null===(y=e.workbookPr)||void 0===y?void 0:y.date1904)&&void 0!==h&&h,m=new Set;try{for(var C=o.__values(i.filterColumn||[]),A=C.next();!A.done;A=C.next()){var S=A.value,x=S.colId||0,F=t.getCellValueByRange(r,{startRow:R.startRow,startCol:R.startCol+x,endRow:R.endRow,endCol:R.startCol+x},!0).map((function(r){var e;try{e=parseFloat(r.value)}catch(r){}return{row:r.row,num:e,value:r.value}})),g=n.customFilter(F,S.customFilters);m=new Set(o.__spreadArray(o.__spreadArray([],o.__read(m),!1),o.__read(g),!1));var P=d.filters(F,S.filters,k);m=new Set(o.__spreadArray(o.__spreadArray([],o.__read(m),!1),o.__read(P),!1))}}catch(r){w={error:r}}finally{try{A&&!A.done&&(u=C.return)&&u.call(C)}finally{if(w)throw w.error}}try{for(var j=o.__values(m),B=j.next();!B.done;B=j.next()){var I=B.value;a.worksheet.rows[I]?a.worksheet.rows[I].hidden=!0:a.worksheet.rows[I]={hidden:!0}}}catch(r){f={error:r}}finally{try{B&&!B.done&&(_=j.return)&&_.call(j)}finally{if(f)throw f.error}}}else console.warn("缺少 ref 字段",i)}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/Sheet.js*/
- amis.define("98cb0a3",(function(t,e,o,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t("68b98b9"),n=t("edbd1e6"),h=t("7167655"),a=t("24366fb"),s=t("2b10224"),l=t("924d4d7"),d=t("29fc790"),u=t("434fc58"),g=t("9a404b6"),c=t("8fc69c7"),p=t("9fcd9cf"),f=t("db11fe7"),w=t("19f23e2"),y=t("73e7970"),v=t("d31e795"),x=t("ddb9431"),C=t("f3f6dff"),H=t("e95ab9d"),P=function(){function t(t,e,o,r,i){var n,a;this.rangeCache=new f.RangeCache,this.scrollLeft=0,this.scrollTop=0,this.customRowHeight=[],this.customColumnWidth=[],this.rowHeaderWidth=29.34765625,this.colHeaderHeight=25,this.zoomLevel=1,this.rowPositionCache=[],this.colPositionCache=[],this.maxDrawingHeightAndWidthCache=null,this.sheetIndex=t,this.dataProvider=e,this.sheetData=o,this.workbook=r,this.renderOptions=i,(null===(a=null===(n=o.worksheet)||void 0===n?void 0:n.sheetViews)||void 0===a?void 0:a.length)?this.currentSheetView=o.worksheet.sheetViews[0]:this.currentSheetView={showGridLines:!0,showRowColHeaders:!0},this.showRowColHeaders()||(this.colHeaderHeight=0,this.rowHeaderWidth=0),this.defaultFontSize=e.getDefaultFontSize(),this.rowHeaderWidth=2*this.defaultFontSize.width+4*h.PADDING_SIZE,r.uiEvent.on("CHANGE_SELECTION",this.handleChangeSelection.bind(this))}return t.prototype.handleChangeSelection=function(t){t.sheetIndex===this.sheetIndex&&(this.selection=t),this.lastAutoFilterIcon&&this.lastAutoFilterIcon.hideMenu()},t.prototype.getSheetName=function(){return this.dataProvider.getSheetByIndex(this.sheetIndex).name},t.prototype.getCurrentSheetView=function(){return this.currentSheetView},t.prototype.getScrollLeft=function(){return this.scrollLeft},t.prototype.setScrollLeft=function(t){Math.round(t)!==Math.round(this.scrollLeft)&&(this.scrollLeft=t,this.scrollLeft<0&&(this.scrollLeft=0))},t.prototype.updateViewRange=function(t){this.dataViewRange=t},t.prototype.updateFrozenViewRange=function(t){this.frozenViewRange=t},t.prototype.getViewRange=function(){return this.dataViewRange},t.prototype.getFrozenViewRange=function(){return this.frozenViewRange},t.prototype.deltaScrollLeft=function(t){this.scrollLeft+=t,this.scrollLeft<0&&(this.scrollLeft=0)},t.prototype.getScrollTop=function(){return this.scrollTop},t.prototype.setScrollTop=function(t){Math.round(t)!==Math.round(this.scrollTop)&&(this.scrollTop=t,this.scrollTop<0&&(this.scrollTop=0))},t.prototype.deltaScrollTop=function(t){this.scrollTop+=t,this.scrollTop<0&&(this.scrollTop=0)},t.prototype.hitTest=function(t,e){var o=this.getRowColSize(),r=o.rowHeaderWidth,i=o.colHeaderHeight,n=this.renderOptions.gridLineHitRange,h=this.hitTestDrawing(t,e);return h||u.hitTest(t,e,r,i,n,this.dataViewRange,this.frozenViewRange,this.getMergeCells())},t.prototype.hitTestDrawing=function(t,e){var o,r,n,h,a,s,l=this.getDrawing(),d={startRow:0,startCol:0,endRow:0,endCol:0};if(l){try{for(var u=i.__values(l.absoluteAnchors),g=u.next();!g.done;g=u.next()){var p=g.value,f=this.absolutePositionToRelativePosition(v.getAbsoluteAnchorPosition(p));if(c.pointInRect(t,e,f))return i.__assign(i.__assign({type:"drawing",drawing:p,region:"normal"},d),f)}}catch(t){o={error:t}}finally{try{g&&!g.done&&(r=u.return)&&r.call(u)}finally{if(o)throw o.error}}try{for(var w=i.__values(l.oneCellAnchors),y=w.next();!y.done;y=w.next()){var H=y.value;f=x.getOneCellAnchorPosition(H,this);if(c.pointInRect(t,e,f))return i.__assign(i.__assign({type:"drawing",drawing:H,region:"normal"},d),f)}}catch(t){n={error:t}}finally{try{y&&!y.done&&(h=w.return)&&h.call(w)}finally{if(n)throw n.error}}try{for(var P=i.__values(l.twoCellAnchors),R=P.next();!R.done;R=P.next()){var I=R.value;f=C.getTwoCellAnchorPosition(I,this);if(c.pointInRect(t,e,f))return i.__assign(i.__assign({type:"drawing",drawing:I,region:"normal"},d),f)}}catch(t){a={error:t}}finally{try{R&&!R.done&&(s=P.return)&&s.call(P)}finally{if(a)throw a.error}}}return null},t.prototype.absolutePositionToRelativePosition=function(t){return{x:t.x-this.scrollLeft+this.rowHeaderWidth,y:t.y-this.scrollTop+this.colHeaderHeight,width:t.width,height:t.height}},t.prototype.showGridLines=function(){return void 0===this.renderOptions.showGridLines?this.currentSheetView.showGridLines:this.renderOptions.showGridLines},t.prototype.showRowColHeaders=function(){return this.renderOptions.showRowColHeaders&&this.currentSheetView.showRowColHeaders},t.prototype.updateRowHeaderWidth=function(t){var e=t.rows[t.rows.length-1];this.rowHeaderWidth=String(e).length*this.defaultFontSize.width+4*h.PADDING_SIZE,this.workbook.updateDataContainerSize(this.rowHeaderWidth,this.colHeaderHeight)},t.prototype.getRowColSize=function(){return this.showRowColHeaders()?{rowHeaderWidth:this.rowHeaderWidth,colHeaderHeight:this.colHeaderHeight}:{rowHeaderWidth:0,colHeaderHeight:0}},t.prototype.getCellValueByRange=function(t,e){return void 0===e&&(e=!1),this.dataProvider.getCellValueByRange(this.sheetIndex,t,e)},t.prototype.getCellValueByRanges=function(t,e){var o,r;void 0===e&&(e=!1);var n=[];try{for(var h=i.__values(t),a=h.next();!a.done;a=h.next()){var s=a.value;n.push.apply(n,i.__spreadArray([],i.__read(this.getCellValueByRange(s,e)),!1))}}catch(t){o={error:t}}finally{try{a&&!a.done&&(r=h.return)&&r.call(h)}finally{if(o)throw o.error}}return n},t.prototype.getViewPointData=function(t){var e=this;return a.getViewPointData((function(t){return e.dataProvider.getSheetRowData(e.sheetIndex,t)}),(function(){return e.dataProvider.getMergeCells(e.sheetIndex)}),this.getRowHeight.bind(this),this.getColWidth.bind(this),t)},t.prototype.getSheetRowData=function(t){return this.dataProvider.getSheetRowData(this.sheetIndex,t)},t.prototype.getRowHeight=function(t){return this.dataProvider.getRowHeight(this.sheetIndex,t)},t.prototype.getColWidth=function(t){return this.dataProvider.getColWidth(this.sheetIndex,t)},t.prototype.getTotalWidth=function(){return Math.max(this.getMaxDrawingHeightAndWidth().width,this.dataProvider.getTotalWidth(this.sheetIndex))},t.prototype.getTotalHeight=function(){return Math.max(this.getMaxDrawingHeightAndWidth().height,this.dataProvider.getTotalHeight(this.sheetIndex))},t.prototype.getCellDisplaySize=function(t,e,o,r){var n,h,a=this.getRowHeight(t),s=this.getColWidth(e),l=this.getMergeCells();try{for(var d=i.__values(l),u=d.next();!u.done;u=d.next()){var g=u.value,c=g.startRow,p=g.endRow,f=g.startCol,w=g.endCol;if(t>=c&&t<=p&&e>=f&&e<=w){for(var y=0,v=c;v<=p;v++)y+=this.getRowHeight(v);a=y;var x=0;for(v=f;v<=w;v++)x+=this.getColWidth(v);s=x;for(v=c;v<t;v++)r-=this.getRowHeight(v);for(v=f;v<e;v++)o-=this.getColWidth(v)}}}catch(t){n={error:t}}finally{try{u&&!u.done&&(h=d.return)&&h.call(d)}finally{if(n)throw n.error}}return{x:o,y:r,height:a,width:s}},t.prototype.getMaxRow=function(){return this.dataProvider.getMaxRow(this.sheetIndex)},t.prototype.getMaxCol=function(){return this.dataProvider.getMaxCol(this.sheetIndex)},t.prototype.getViewPointRange=function(t,e){var o=this;return n.getViewRange(this.scrollLeft,this.scrollTop,this.rowHeaderWidth,this.colHeaderHeight,e,t,(function(t){return o.dataProvider.getRowHeight(o.sheetIndex,t)}),this.rowPositionCache,(function(t){return o.dataProvider.getColWidth(o.sheetIndex,t)}),this.colPositionCache,this.dataProvider.getColHiddenRange(this.sheetIndex))},t.prototype.getFrozenTopLeftViewPointRange=function(t,e){var o=this;return l.getFrozenTopLeftViewPointRange(t,e,this.rowHeaderWidth,this.colHeaderHeight,(function(t){return o.dataProvider.getRowHeight(o.sheetIndex,t)}),(function(t){return o.dataProvider.getColWidth(o.sheetIndex,t)}))},t.prototype.getFrozenTopViewPointRange=function(t,e){var o=this;return d.getFrozenTopViewPointRange(t,e,this.scrollLeft,this.rowHeaderWidth,this.colHeaderHeight,(function(t){return o.dataProvider.getRowHeight(o.sheetIndex,t)}),(function(t){return o.dataProvider.getColWidth(o.sheetIndex,t)}),this.colPositionCache,this.dataProvider.getColHiddenRange(this.sheetIndex))},t.prototype.getFrozenLeftViewPointRange=function(t,e){var o=this;return s.getFrozenLeftViewPointRange(t,e,this.scrollTop,this.rowHeaderWidth,this.colHeaderHeight,(function(t){return o.dataProvider.getRowHeight(o.sheetIndex,t)}),(function(t){return o.dataProvider.getColWidth(o.sheetIndex,t)}),this.rowPositionCache)},t.prototype.getCellInfo=function(t,e){var o=this.dataProvider.getCellInfo(this.sheetIndex,t,e);return p.applyConditionalFormat(this,o,t,e),w.applyTablePartsStyle(this,o),o},t.prototype.getCellData=function(t,e){return this.dataProvider.getCellData(this.sheetIndex,t,e)},t.prototype.getCellValue=function(t,e){return this.dataProvider.getCellValue(this.sheetIndex,t,e)},t.prototype.getCellPosition=function(t,e){var o=this,r=y.getCellAbsolutePosition(t,e,(function(t){return o.dataProvider.getRowHeight(o.sheetIndex,t)}),this.rowPositionCache,(function(t){return o.dataProvider.getColWidth(o.sheetIndex,t)}),this.colPositionCache);return{x:r.x-this.scrollLeft+this.rowHeaderWidth,y:r.y-this.scrollTop+this.colHeaderHeight,width:r.width,height:r.height}},t.prototype.getMergeCells=function(){return this.dataProvider.getMergeCells(this.sheetIndex)},t.prototype.getSelection=function(){return this.selection},t.prototype.getMaxDrawingHeightAndWidth=function(){var t,e,o,r,n,h;if(this.maxDrawingHeightAndWidthCache)return this.maxDrawingHeightAndWidthCache;var a=this.getDrawing();if(a){var s=0,l=0;try{for(var d=i.__values(a.absoluteAnchors),u=d.next();!u.done;u=d.next()){var g=u.value,c=v.getAbsoluteAnchorPosition(g);s=Math.max(s,c.x+c.width),l=Math.max(l,c.y+c.height)}}catch(e){t={error:e}}finally{try{u&&!u.done&&(e=d.return)&&e.call(d)}finally{if(t)throw t.error}}try{for(var p=i.__values(a.oneCellAnchors),f=p.next();!f.done;f=p.next()){var w=f.value;c=x.getOneCellAnchorPosition(w,this);s=Math.max(s,c.x+c.width),l=Math.max(l,c.y+c.height)}}catch(t){o={error:t}}finally{try{f&&!f.done&&(r=p.return)&&r.call(p)}finally{if(o)throw o.error}}try{for(var y=i.__values(a.twoCellAnchors),H=y.next();!H.done;H=y.next()){var P=H.value;c=C.getTwoCellAnchorPosition(P,this);s=Math.max(s,c.x+c.width),l=Math.max(l,c.y+c.height)}}catch(t){n={error:t}}finally{try{H&&!H.done&&(h=y.return)&&h.call(y)}finally{if(n)throw n.error}}return this.maxDrawingHeightAndWidthCache={height:l,width:s},{height:l,width:s}}return{height:0,width:0}},t.prototype.isMergeCell=function(t){return g.isMergeCell(t,this.getMergeCells())},t.prototype.getDrawing=function(){return this.dataProvider.getDrawing(this.sheetIndex)},t.prototype.getDisplayRect=function(){var t=this.workbook.getViewpointSize(),e=t.width,o=t.height;return{x:this.scrollLeft,y:this.scrollTop,width:e,height:o}},t.prototype.getDataDisplayRect=function(){var t=this.workbook.getViewpointSize(),e=t.width,o=t.height;return{x:this.scrollLeft+this.rowHeaderWidth,y:this.scrollTop+this.colHeaderHeight,width:e-this.rowHeaderWidth,height:o-this.colHeaderHeight}},t.prototype.getZoomLevel=function(){return this.zoomLevel},t.prototype.setZoomLevel=function(t){this.zoomLevel=t,this.workbook.uiEvent.emit("CHANGE_ZOOM_LEVEL",t)},t.prototype.getIndex=function(){return this.sheetIndex},t.prototype.getConditionalFormatting=function(){return this.dataProvider.getConditionalFormatting(this.sheetIndex)},t.prototype.getRangeCache=function(){return this.rangeCache},t.prototype.getWorkbook=function(){return this.workbook},t.prototype.getExtLst=function(){var t;return null===(t=this.sheetData.worksheet)||void 0===t?void 0:t.extLst},t.prototype.getSparklineGroups=function(){var t,e,o;try{for(var r=i.__values((null===(o=this.getExtLst())||void 0===o?void 0:o.ext)||[]),n=r.next();!n.done;n=r.next()){var h=n.value;if(h["x14:sparklineGroups"])return h["x14:sparklineGroups"]["x14:sparklineGroup"]||[]}}catch(e){t={error:e}}finally{try{n&&!n.done&&(e=r.return)&&e.call(r)}finally{if(t)throw t.error}}return[]},t.prototype.isHidden=function(){return"hidden"===this.sheetData.state},t.prototype.getTableParts=function(){var t;return(null===(t=this.sheetData.worksheet)||void 0===t?void 0:t.tableParts)||[]},t.prototype.isRowHidden=function(t){return this.dataProvider.isRowHidden(this.sheetIndex,t)},t.prototype.isColHidden=function(t){return this.dataProvider.isColHidden(this.sheetIndex,t)},t.prototype.getAutoFilter=function(){var t;return null===(t=this.sheetData.worksheet)||void 0===t?void 0:t.autoFilter},t.prototype.getTables=function(){var t;return(null===(t=this.sheetData.worksheet)||void 0===t?void 0:t.tableParts)||[]},t.prototype.getLastAutoFilterIcon=function(){return this.lastAutoFilterIcon},t.prototype.setLastAutoFilterIcon=function(t){this.lastAutoFilterIcon=t},t.prototype.translate=function(t){return this.workbook.translator(t)},t.prototype.syncAutoFilter=function(){},t.prototype.applyAutoFilter=function(t,e){return void 0===e&&(e=1),H.applyAutoFilter(this.sheetIndex,this.workbook.getWorkbookData(),this.sheetData,this.dataProvider,t,e)},t.prototype.getSheetPr=function(){var t;return null===(t=this.sheetData.worksheet)||void 0===t?void 0:t.sheetPr},t.prototype.getTabColor=function(){var t;return this.dataProvider.getColor(null===(t=this.getSheetPr())||void 0===t?void 0:t.tabColor)},t.prototype.updateCellValue=function(t,e,o){this.dataProvider.updateCellData(this.sheetIndex,t,e,o)},t.prototype.setRowHeight=function(t,e){this.dataProvider.setRowHeight(this.sheetIndex,t,e)},t.prototype.setColWidth=function(t,e){this.dataProvider.setColWidth(this.sheetIndex,t,e)},t}();e.Sheet=P}));
- ;/*!node_modules/office-viewer/lib/util/escapeHTML.js*/
- amis.define("699daa2",(function(e,a,t,c){"use strict";Object.defineProperty(a,"__esModule",{value:!0}),a.escapeHtml=function(e){return e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/buildHTML/buildBorder.js*/
- amis.define("e57cbeb",(function(e,a,o,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var c=e("7167655");a.buildBorder=function(e,a,o){var t="";a.color&&(t=o.getColor(a.color,c.AUTO_COLOR));var s="solid";switch(a.style){case"dashDot":case"dashDotDot":case"dashed":case"mediumDashed":case"mediumDashDot":case"mediumDashDotDot":s="dashed";break;case"dotted":s="dotted";break;case"double":s="double";break;case"none":return""}return t&&"none"!==t?"".concat(e,": 1px ").concat(s," ").concat(t,": "):""}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/buildHTML/cellInfoToStyle.js*/
- amis.define("624d5e8",(function(t,e,o,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t("cdea76a"),n=t("e57cbeb");e.cellInfoToStyle=function(t,e){var o="",r=t.getDataProvider().getFontStyle(e.font);if(r.b&&(o+="font-weight: bold;"),r.i&&(o+="font-style: italic;"),"single"===r.u&&(o+="text-decoration: underline;"),r.strike&&(o+="text-decoration: line-through;"),r.color&&(o+="color: ".concat(r.color,";")),r.size&&(o+="font-size: ".concat(r.size,"pt;")),r.family&&(o+="font-family: ".concat(r.family,";")),e.fill){var l=t.getDataProvider(),a=i.getBackgroundColor(l,e.fill);"none"!==a&&(o+="background-color: ".concat(a,";"))}if(e.alignment&&(e.alignment.horizontal&&(o+="text-align: ".concat(e.alignment.horizontal,";")),e.alignment.vertical&&(o+="vertical-align: ".concat(e.alignment.vertical,";"))),e.border){var c=t.getDataProvider(),d=e.border;d.left&&(o+=n.buildBorder("border-left",d.left,c)),d.right&&(o+=n.buildBorder("border-right",d.right,c)),d.top&&(o+=n.buildBorder("border-top",d.top,c)),d.bottom&&(o+=n.buildBorder("border-bottom",d.bottom,c))}return o}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/buildHTML/rangeToHTML.js*/
- amis.define("7e0c70c",(function(t,e,a,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var l=t("68b98b9"),r=t("699daa2"),c=t("7167655"),n=t("1e0c873"),s=t("624d5e8");e.rangeToHTML=function(t,e){var a=t.getActiveSheet(),o=e.endRow;o===c.MAX_ROW&&(o=a.getMaxRow());var d=e.endCol;d===c.MAX_COL&&(d=a.getMaxCol());for(var i=a.getMergeCells(),p=[],C="",g=e.startRow;g<=o;g++){var v=a.getRowHeight(g);C+='<tr style="height: '.concat(v,'px">\n');for(var f=[],h=e.startCol;h<=d;h++){var w=a.getCellInfo(g,h),y=n.cellToMergeCell(g,h,i),u=r.escapeHtml(w.text),M=s.cellInfoToStyle(t,w);if(f.push(u),y.startCol!==y.endCol&&g===y.startRow&&h===y.startCol){var b=y.endRow-y.startRow+1,R=y.endCol-y.startCol+1;h=y.endCol,C+=' <td rowspan="'.concat(b,'" colspan="').concat(R,'" style="').concat(M,'">').concat(u,"</td>\n"),f.push.apply(f,l.__spreadArray([],l.__read(Array(R-1).fill("")),!1))}else C+=' <td style="'.concat(M,'">').concat(u,"</td>\n")}p.push(f.join("\t")),C+="</tr>\n"}var _="";for(h=e.startCol;h<=d;h++){var A=Math.floor(a.getColWidth(h)),x=.75*A;_+="<col width=".concat(A,' style="width: ').concat(x,'pt;"></td>\n')}return{table:"<table border=0 cellpadding=0 cellspacing=0 style='border-collapse:\n collapse;'>\n".concat(_).concat(C,"</table>"),tsv:p}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/selection/copySelection.js*/
- amis.define("3c1b58e",(function(e,t,n,l){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("7e0c70c");t.copySelection=function(e){var t=e.getActiveSheet().getSelection();if(null==t?void 0:t.cellRanges){if(0!==t.cellRanges.length){var n=i.rangeToHTML(e,t.cellRanges[0]),l=n.tsv,o=n.table;navigator.clipboard.write([new ClipboardItem({"text/plain":new Blob([l.join("\n")],{type:"text/plain"}),"text/html":new Blob([o],{type:"text/html"})})]),e.uiEvent.emit("COPY_SELECTION")}}else console.warn("没有 selection")}}));
- ;/*!node_modules/office-viewer/lib/excel/render/keyboard/handleCopy.js*/
- amis.define("19a0203",(function(e,c,o,n){"use strict";Object.defineProperty(c,"__esModule",{value:!0});var t=e("3c1b58e");c.handleCopy=function(e,c){(e.metaKey||e.ctrlKey)&&("a"===e.key&&console.log("SELECT ALL"),"c"===e.key&&t.copySelection(c))}}));
- ;/*!node_modules/office-viewer/lib/excel/render/keyboard/handleSelectAll.js*/
- amis.define("80557b1",(function(e,t,l,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("c706b11");t.handleSelectAll=function(e,t){if((e.metaKey||e.ctrlKey)&&"a"===e.key){var l=t.getActiveSheet().getIndex();t.uiEvent.emit("CHANGE_SELECTION",n.selectAll(l)),e.preventDefault()}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/keyboard/handleSheetArrowKey.js*/
- amis.define("3d34417",(function(t,e,o,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=t("7167655");e.handleSheetCanvasKeydown=function(t,e){var o,a=e.getActiveSheet(),n=null===(o=a.selection)||void 0===o?void 0:o.activeCell;if(n){var i=!1;"ArrowUp"===t.key&&(n.startRow=Math.max(0,n.startRow-1),i=!0),"ArrowDown"===t.key&&(n.startRow=Math.min(r.MAX_ROW,n.startRow+1),i=!0),"ArrowLeft"===t.key&&(n.startCol=Math.max(0,n.startCol-1),i=!0),"ArrowRight"===t.key&&(n.startCol=Math.min(r.MAX_COL,n.startCol+1),i=!0),i&&(t.preventDefault(),n.endRow=n.startRow,n.endCol=n.startCol,a.selection&&(a.selection.cellRanges=[n],e.uiEvent.emit("CHANGE_SELECTION",a.selection)))}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/keyboard/handleKeydown.js*/
- amis.define("8539d3a",(function(e,n,a,d){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var l=e("19a0203"),t=e("80557b1"),o=e("3d34417");n.handleKeydown=function(e,n){t.handleSelectAll(e,n),l.handleCopy(e,n),o.handleSheetCanvasKeydown(e,n)}}));
- ;/*!node_modules/office-viewer/lib/excel/render/keyboard/handlePaste.js*/
- amis.define("9ef0158",(function(e,t,a,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.handlePaste=function(e,t){var a,i=null===(a=e.clipboardData)||void 0===a?void 0:a.getData("text/html");if(i){var l=document.createElement("div");l.innerHTML=i,l.querySelectorAll("table tr")}}}));
- ;/*!node_modules/office-viewer/lib/excel/render/formulaBar/FormulaBar.js*/
- amis.define("33f3930",(function(t,e,o,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=t("22b926c"),a=t("9a404b6"),l=t("c1cc3b1"),s=t("bec4e73"),r=t("08eaea5"),c=function(){function t(t,e,o){var i=this;this.dom=t,this.workbook=e,o.showFormulaBar&&(this.initDom(),e.uiEvent.on("SWITCH_SHEET",(function(){i.sync()})),e.uiEvent.on("CHANGE_SELECTION",(function(){i.sync()})))}return t.prototype.initDom=function(){var t=this,e=n.H("div",{className:"ov-excel-formula-bar__name-box",parent:this.dom});this.nameBox=e;var o=n.H("div",{className:"ov-excel-formula-bar__text-box",parent:this.dom});this.textBox=o;var i=new r.Input({container:o,onChange:function(e){t.changeCellValue(e)},style:"borderLess"});this.textInput=i},t.prototype.getActiveCell=function(){var t=this.workbook.getActiveSheet().getSelection();return t?t.activeCell:null},t.prototype.sync=function(){var t=this.workbook.getActiveSheet(),e=this.getActiveCell();if(e){if(a.isSingleCell(e)||t.isMergeCell(e)){var o=this.workbook.getActiveSheet().getCellInfo(e.startRow,e.startCol);this.textInput.setValue(o.text),this.cellData=t.getCellData(e.startRow,e.startCol)}else this.textInput.setValue("");this.nameBox.innerText="".concat(l.numberToLetters(e.startCol)).concat(e.startRow+1)}},t.prototype.changeCellValue=function(t){var e=this.workbook.getActiveSheet(),o=this.getActiveCell();o&&(a.isSingleCell(o)||e.isMergeCell(o))&&(e.updateCellValue(o.startRow,o.startCol,s.updateValue(t,this.cellData)),this.workbook.uiEvent.emit("UPDATE_RANGE",e.getIndex(),o))},t}();e.FormulaBar=c}));
- ;/*!node_modules/office-viewer/lib/excel/render/sheetTab/SheetList.js*/
- amis.define("2d58d0f",(function(e,t,s,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("68b98b9"),n=e("22b926c"),r=e("b12ecca"),o=e("bee5395"),c=e("038cecc"),h="ov-excel-sheet-tab-bar__list-tab--active",l="ov-excel-sheet-tab-bar__nav-icon--enabled",d="ov-excel-sheet-tab-bar__menu-list-item--active",v=function(){function e(e,t,s){var a=this;this.sheetTabs=[],this.sheetMenuItems=[],this.scrollLeft=0,this.sheetListWidth=0,this.workbook=t,this.initDOM(e),t.uiEvent.on("SWITCH_SHEET",(function(){a.updateActiveTab()})),this.updateActiveTab()}return e.prototype.initDOM=function(e){var t=this;this.renderNav(e),this.renderSheetMenu(e);var s=n.H("div",{className:"ov-excel-sheet-tab-bar__list-container",parent:e});this.sheetListContainer=s;var a=n.H("div",{className:"ov-excel-sheet-tab-bar__list",parent:s});this.sheetList=a,s.addEventListener("wheel",(function(e){t.handleWheel(e)})),this.renderSheets(a,!0)},e.prototype.renderSheetMenu=function(e){var t=n.H("div",{className:"ov-excel-sheet-tab-bar__menu",parent:e});this.sheetMenu=t,this.renderSheetMenuList(t)},e.prototype.renderSheetMenuList=function(e){var t=this;this.sheetMenu.innerHTML="",n.H("div",{className:"ov-excel-sheet-tab-bar__menu-icon",parent:e,innerHTML:c.Icons.menu});var s=n.H("div",{className:"ov-excel-sheet-tab-bar__menu-list",parent:e});e.onclick=function(){s.style.display="block"},this.workbook.sheets.forEach((function(e){if(!e.isHidden()){var a=n.H("div",{className:"ov-excel-sheet-tab-bar__menu-list-item",parent:s});a.textContent=e.getSheetName(),a.dataset.sheetIndex=e.getIndex().toString(),a.addEventListener("click",(function(){t.workbook.setActiveSheet(e.getSheetName()),t.makeActiveSheetVisible()})),e.getIndex()===t.workbook.getActiveSheet().getIndex()&&a.classList.add(d),t.sheetMenuItems.push(a)}})),o.onClickOutside(e,(function(){s.style.display="none"}))},e.prototype.renderNav=function(e){var t,s=this,a=n.H("div",{className:"ov-excel-sheet-tab-bar__nav",parent:e}),i=n.H("div",{className:"ov-excel-sheet-tab-bar__nav-icon",parent:a,innerHTML:c.Icons.left});this.leftNav=i,i.addEventListener("mousedown",(function(){t=setInterval((function(){s.updateScrollLeft(20)}),100)})),document.addEventListener("mouseup",(function(){clearInterval(t)}));var r,o=n.H("div",{className:"ov-excel-sheet-tab-bar__nav-icon",parent:a,innerHTML:c.Icons.right});this.rightNav=o,o.addEventListener("mousedown",(function(){r=setInterval((function(){s.updateScrollLeft(-20)}),100)})),document.addEventListener("mouseup",(function(){clearInterval(r)}))},e.prototype.syncNavStatus=function(){var e=this.sheetListContainer.clientWidth,t=this.sheetListWidth;if(!(t<e)){var s=this.scrollLeft;s<0?(this.leftNav.classList.add(l),this.sheetListContainer.classList.add("ov-excel-sheet-tab-bar__list-container--enable-left-nav")):(this.sheetListContainer.classList.remove("ov-excel-sheet-tab-bar__list-container--enable-left-nav"),this.leftNav.classList.remove(l)),s>e-t?(this.sheetListContainer.classList.add("ov-excel-sheet-tab-bar__list-container--enable-right-nav"),this.rightNav.classList.add(l)):(this.sheetListContainer.classList.remove("ov-excel-sheet-tab-bar__list-container--enable-right-nav"),this.rightNav.classList.remove(l))}},e.prototype.handleWheel=function(e){var t=e.deltaY;this.updateScrollLeft(-t)},e.prototype.updateScrollLeft=function(e){var t=this.sheetListContainer.clientWidth,s=this.sheetListWidth;if(!(s<t)){var a=this.scrollLeft;a+=e,a=Math.max(Math.min(0,a),t-s),this.scrollLeft=a,this.sheetList.style.transform="translateX(".concat(a,"px)"),this.syncNavStatus()}},e.prototype.makeActiveSheetVisible=function(){var e,t,s=this,a=0,n=this.workbook.getActiveSheet().getIndex().toString();try{for(var r=i.__values(this.sheetTabs),o=r.next();!o.done;o=r.next()){var c=o.value,h=parseInt(getComputedStyle(c).marginLeft),l=parseInt(getComputedStyle(c).marginRight);if(a+=c.clientWidth+h+l,c.dataset.sheetIndex===n)break}}catch(t){e={error:t}}finally{try{o&&!o.done&&(t=r.return)&&t.call(r)}finally{if(e)throw e.error}}setTimeout((function(){var e=s.sheetListContainer.clientWidth;s.scrollLeft=Math.min(0,e-a),s.sheetList.style.transform="translateX(".concat(s.scrollLeft,"px)"),s.syncNavStatus()}),100)},e.prototype.renderSheets=function(e,t){var s=this;void 0===t&&(t=!1),e.innerHTML="",this.sheetTabs=[];var a=0;this.workbook.sheets.forEach((function(i){if(!i.isHidden()){var o=n.H("div",{className:"ov-excel-sheet-tab-bar__list-tab",parent:e}),c=i.getTabColor();if("none"!==c){var l=new r.Color(c);o.style.backgroundImage="linear-gradient(".concat(l.toRgba(.1),", ").concat(l.toRgba(.5),")"),o.style.color=c}var d=i.getSheetName();o.textContent=d,o.dataset.sheetIndex=i.getIndex().toString(),o.addEventListener("click",(function(){s.workbook.setActiveSheet(d)})),s.sheetTabs.push(o);var v=parseInt(getComputedStyle(o).marginLeft),u=parseInt(getComputedStyle(o).marginRight);a+=o.clientWidth+v+u,i.getIndex()===s.workbook.getActiveSheet().getIndex()&&(o.classList.add(h),t&&s.makeActiveSheetVisible())}})),this.sheetListWidth=a},e.prototype.updateActiveTab=function(){var e=this.workbook.getActiveSheet().getIndex();this.sheetTabs.forEach((function(t){parseInt(t.dataset.sheetIndex,10)===e?t.classList.add(h):t.classList.remove(h)})),this.sheetMenuItems.forEach((function(t){parseInt(t.dataset.sheetIndex,10)===e?t.classList.add(d):t.classList.remove(d)}))},e}();t.SheetList=v}));
- ;/*!node_modules/office-viewer/lib/excel/render/sheetTab/StatusBar.js*/
- amis.define("bd53dfa",(function(t,e,a,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=t("68b98b9"),s=t("22b926c"),o=t("417c440"),c=function(){function t(t,e,a){var n=this;this.workbook=e;var r=s.H("div",{className:"ov-excel-sheet-tab-bar__status",parent:t});this.status=r,e.uiEvent.on("CHANGE_SELECTION",(function(){n.syncStatus()}))}return t.prototype.syncStatus=function(){var t,e,a=this.workbook,n=this.status,c=a.getActiveSheet(),i=c.getSelection();if(i){var l=c.getCellValueByRanges(i.cellRanges,!1),u=l.length,v=0,b=0;try{for(var f=r.__values(l),x=f.next();!x.done;x=f.next()){var h=x.value;if(h){if(h.isDate)continue;var p=parseFloat((h.value||h.text).trim());if(isNaN(p))continue;v+=p,b++}}}catch(e){t={error:e}}finally{try{x&&!x.done&&(e=f.return)&&e.call(f)}finally{if(t)throw t.error}}v=o.stripNumber(v,10);var _=b?o.stripNumber(v/b,10):0;n.innerHTML="",s.H("span",{class:"ov-excel-sheet-tab-bar__status-text",parent:n,innerText:"".concat(a.translator("average"),": ").concat(_)}),s.H("span",{class:"ov-excel-sheet-tab-bar__status-text",parent:n,innerText:"".concat(a.translator("count"),": ").concat(u)}),s.H("span",{class:"ov-excel-sheet-tab-bar__status-text",parent:n,innerText:"".concat(a.translator("sum"),": ").concat(v)})}else n.textContent=""},t}();e.StatusBar=c}));
- ;/*!node_modules/office-viewer/lib/excel/render/sheetTab/ZoomLevel.js*/
- amis.define("e55fdaf",(function(e,t,o,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var a=e("22b926c"),c=function(){function e(e,t,o){this.renderZoomLevel(e,t)}return e.prototype.renderZoomLevel=function(e,t){var o=t.getActiveSheet(),n=o.getZoomLevel(),c=a.H("div",{className:"ov-excel-sheet-tab-bar__zoom-level",parent:e}),r=a.H("div",{className:"ov-excel-sheet-tab-bar__zoom-out",parent:c});r.textContent="-",r.addEventListener("click",(function(){o.setZoomLevel(Math.max(.25,n-.25))})),a.H("div",{className:"ov-excel-sheet-tab-bar__zoom-value",parent:c}).textContent="".concat(100*n,"%");var v=a.H("div",{className:"ov-excel-sheet-tab-bar__zoom-in",parent:c});v.textContent="+",v.addEventListener("click",(function(){o.setZoomLevel(n+.25)}))},e}();t.ZoomLevel=c}));
- ;/*!node_modules/office-viewer/lib/excel/render/sheetTab/SheetTabBar.js*/
- amis.define("384d1f5",(function(e,t,a,d){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var f=e("2d58d0f"),n=e("bd53dfa"),i=e("e55fdaf"),o=function(e,t,a){a.showSheetTabBar&&(new f.SheetList(e,t,a),new n.StatusBar(e,t,a),new i.ZoomLevel(e,t,a))};t.SheetTabBar=o}));
- ;/*!node_modules/office-viewer/lib/excel/lang/en_US.js*/
- amis.define("a6e349f",(function(t,e,n,s){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.en_US={"autoFilter.sortAscending":"Ascending","autoFilter.sortDescending":"Descending","checkBox.selectAll":"(Select All)","checkBox.search":"Search","customFilter.equal":"Equals","customFilter.notEqual":"Does not equal","customFilter.greaterThan":"Greater than","customFilter.greaterThanOrEqual":"Greater than or equal to","customFilter.lessThan":"Less than","customFilter.lessThanOrEqual":"Less than or equal to","customFilter.beginsWith":"Begins with","customFilter.notBeginsWith":"Does not begin with","customFilter.endsWith":"Ends with","customFilter.notEndsWith":"Does not end with","customFilter.contains":"Contains","customFilter.notContains":"Does not contain","customFilter.and":"And","customFilter.or":"Or",average:"Average",count:"Count",sum:"SUM"}}));
- ;/*!node_modules/office-viewer/lib/excel/lang/zh_CN.js*/
- amis.define("d1947c2",(function(t,e,s,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.zh_CN={"autoFilter.sortAscending":"升序","autoFilter.sortDescending":"降序","checkBox.selectAll":"全选","checkBox.search":"搜索","customFilter.equal":"等于","customFilter.notEqual":"不等于","customFilter.greaterThan":"大于","customFilter.greaterThanOrEqual":"大于或等于","customFilter.lessThan":"小于","customFilter.lessThanOrEqual":"小于或等于","customFilter.beginsWith":"开头是","customFilter.notBeginsWith":"开头不是","customFilter.endsWith":"结尾是","customFilter.notEndsWith":"结尾不是","customFilter.contains":"包含","customFilter.notContains":"不包含","customFilter.and":"与","customFilter.or":"或",average:"平均值",count:"计数",sum:"求和"}}));
- ;/*!node_modules/office-viewer/lib/excel/lang/lang.js*/
- amis.define("a58c1a5",(function(e,n,a,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var r=e("a6e349f"),u=e("d1947c2"),c={en_US:r.en_US,zh_CN:u.zh_CN};n.getTranslate=function(e){return(e=e.replace("-","_"))in c||(console.warn("language not found, use en_US instead",e),e="en_US"),function(n){return c[e][n]}}}));
- ;/*!node_modules/office-viewer/lib/excel/print/printStyle.js*/
- amis.define("59bf24d",(function(n,e,t,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.printStyle=function(n){return"\n<style>\n html, body {\n margin: 0;\n padding: 8px;\n }\n @page {\n size: auto;\n margin: 0mm;\n }\n table {\n border-collapse: collapse;\n width: 100%;\n }\n table, th, td {\n border: 1px solid ".concat(n,";\n }\n</style>\n")}}));
- ;/*!node_modules/office-viewer/lib/excel/print/renderInIframe.js*/
- amis.define("6a4b549",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=e("7167655"),i=e("7e0c70c"),a=e("59bf24d");t.renderInIframe=function(e,t){var n=e.contentDocument,r={startRow:0,startCol:0,endRow:o.MAX_ROW,endCol:o.MAX_COL},d=i.rangeToHTML(t,r).table,s=t.renderOptions.gridLineColor;!1===t.getActiveSheet().showGridLines()&&(s="transparent"),n.write(a.printStyle(s)+d)}}));
- ;/*!node_modules/office-viewer/lib/excel/Workbook.js*/
- amis.define("4d22673",(function(t,e,n,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var i=t("68b98b9"),o=t("c31a48c"),a=t("6e9631c"),s=t("54a43f2"),h=t("98cb0a3"),c=t("8539d3a"),d=t("9ef0158"),u=t("33f3930"),l=t("384d1f5"),p=t("22b926c"),f=t("a58c1a5"),v=t("6a4b549"),y=function(){function t(t,e,n,r,i){var c=this;this.sheets=[],this.uiEvent=new o.EventEmitter,this.renderOptions=r,this.container=t,this.dataProvider=n,n.getSheets().forEach((function(t,e){c.sheets.push(new h.Sheet(e,n,t,c,r))})),this.workbookData=e,this.initActiveSheet(),this.initDom(t),this.formulaBar=new u.FormulaBar(this.formulaBarContainer,this,r),this.styleSheet=new a.StyleSheet(n),this.excelRender=new s.ExcelRender(this.contentContainer,this.dataContainer,this,n,r),this.sheetTabBar=new l.SheetTabBar(this.sheetTabBarContainer,this,r),this.handleKeydown=this.handleKeydown.bind(this),document.addEventListener("keydown",this.handleKeydown),this.handlePaste=this.handlePaste.bind(this),document.addEventListener("paste",this.handlePaste),this.translator=f.getTranslate(this.renderOptions.locale)}return t.prototype.initActiveSheet=function(){var t,e=0;(null===(t=this.workbookData.workbookView)||void 0===t?void 0:t.activeTab)&&(e=this.workbookData.workbookView.activeTab),this.currentSheet=this.sheets[e]},t.prototype.initDom=function(t){t.innerHTML="",t.classList.add("ov-excel"),this.renderOptions.showFormulaBar&&(this.formulaBarContainer=p.H("div",{className:"ov-excel-formula-bar",parent:t})),this.contentContainer=p.H("div",{className:"ov-excel-content",parent:t}),this.dataContainer=p.H("div",{className:"ov-excel-data",parent:this.contentContainer}),this.renderOptions.showSheetTabBar&&(this.sheetTabBarContainer=p.H("div",{className:"ov-excel-sheet-tab-bar",parent:t}))},t.prototype.destroy=function(){document.removeEventListener("keydown",this.handleKeydown)},t.prototype.handleKeydown=function(t){c.handleKeydown(t,this)},t.prototype.handlePaste=function(t){d.handlePaste(t)},t.prototype.render=function(){this.excelRender.draw()},t.prototype.setActiveSheet=function(t){var e,n;if(t){try{for(var r=i.__values(this.sheets),o=r.next();!o.done;o=r.next()){var a=o.value;if(a.getSheetName()===t&&this.currentSheet!==a){this.currentSheet=a,this.uiEvent.emit("SWITCH_SHEET",this.currentSheet);break}}}catch(t){e={error:t}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(e)throw e.error}}this.currentSheet||console.warn("Workbook 中没有找到 ".concat(t," 对应的 sheet,所以使用第一个 sheet"))}else this.currentSheet=this.sheets[0],this.uiEvent.emit("SWITCH_SHEET",this.currentSheet)},t.prototype.getActiveSheet=function(){return this.currentSheet},t.prototype.getSheetByName=function(t){var e,n;try{for(var r=i.__values(this.sheets),o=r.next();!o.done;o=r.next()){var a=o.value;if(a.getSheetName()===t)return a}}catch(t){e={error:t}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(e)throw e.error}}return null},t.prototype.getStyleSheet=function(){return this.styleSheet},t.prototype.getViewpointSize=function(){var t=this.contentContainer.getBoundingClientRect(),e=t.width,n=t.height,r=this.currentSheet.getZoomLevel();return{width:e/r,height:n/r}},t.prototype.getDataProvider=function(){return this.dataProvider},t.prototype.is1904=function(){return this.dataProvider.is1904()},t.prototype.getContainer=function(){return this.container},t.prototype.getDataContainer=function(){return this.dataContainer},t.prototype.updateDataContainerSize=function(t,e){this.dataContainer.style.left="".concat(t,"px"),this.dataContainer.style.top="".concat(e,"px")},t.prototype.getWorkbookData=function(){return this.workbookData},t.prototype.renderInIframe=function(t){v.renderInIframe(t,this)},t}();e.Workbook=y}));
- ;/*!node_modules/office-viewer/lib/util/ptToPx.js*/
- amis.define("3533841",(function(e,t,n,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.pt2px=function(e){return 1.3333333333333333*e}}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/ColWidth.js*/
- amis.define("39b35d7",(function(e,t,n,i){"use strict";function u(e,t){return e*t+5}Object.defineProperty(t,"__esModule",{value:!0}),t.baseColWidth2px=u,t.colWidth2px=function(e,t){return u(e-.83203125,t)},t.px2colWidth=function(e,t){return(e-5)/t+.83203125}}));
- ;/*!node_modules/office-viewer/lib/excel/data/defaultFont.js*/
- amis.define("691a873",(function(e,a,l,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var i={name:{val:"等线"},charset:{val:134},family:{val:2},color:{theme:1},sz:{val:e("7167655").DEFAULT_FONT_SIZE},scheme:{val:"minor"}};a.default=i}));
- ;/*!node_modules/numfmt/numfmt.js*/
- amis.define("7aeb325",(function(e,t,n,a){var r,i;r="undefined"!=typeof self?self:this,i=function(){return function(){"use strict";var e={d:function(t,n){for(var a in n)e.o(n,a)&&!e.o(t,a)&&Object.defineProperty(t,a,{enumerable:!0,get:n[a]})},o:function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}},t={};e.d(t,{default:function(){return ce}});var n={1078:"af",1052:"sq",1118:"am",5121:"ar_DZ",15361:"ar_BH",3073:"ar_EG",2049:"ar_IQ",11265:"ar_JO",13313:"ar_KW",12289:"ar_LB",4097:"ar_LY",6145:"ar_MA",8193:"ar_OM",16385:"ar_QA",1025:"ar_SA",10241:"ar_SY",7169:"ar_TN",14337:"ar_AE",9217:"ar_YE",1067:"hy",1101:"as",2092:"az_AZ",1068:"az_AZ",1069:"eu",1059:"be",2117:"bn",1093:"bn_IN",5146:"bs",1026:"bg",1109:"my",1027:"ca",2052:"zh_CN",3076:"zh_HK",5124:"zh_MO",4100:"zh_SG",1028:"zh_TW",1050:"hr",1029:"cs",1030:"da",1125:"dv",2067:"nl_BE",1043:"nl_NL",1126:"bin",3081:"en_AU",10249:"en_BZ",4105:"en_CA",9225:"en_CB",2057:"en_GB",16393:"en_IN",6153:"en_IE",8201:"en_JM",5129:"en_NZ",13321:"en_PH",7177:"en_ZA",11273:"en_TT",1033:"en_US",12297:"en_ZW",1061:"et",1071:"mk",1080:"fo",1065:"fa",1124:"fil",1035:"fi",2060:"fr_BE",11276:"fr_CM",3084:"fr_CA",9228:"fr_CG",12300:"fr_CI",1036:"fr_FR",5132:"fr_LU",13324:"fr_ML",6156:"fr_MC",14348:"fr_MA",10252:"fr_SN",4108:"fr_CH",7180:"fr",1122:"fy_NL",2108:"gd_IE",1084:"gd",1110:"gl",1079:"ka",3079:"de_AT",1031:"de_DE",5127:"de_LI",4103:"de_LU",2055:"de_CH",1032:"el",1140:"gn",1095:"gu",1279:"en",1037:"he",1081:"hi",1038:"hu",1039:"is",1136:"ig_NG",1057:"id",1040:"it_IT",2064:"it_CH",1041:"ja",1099:"kn",1120:"ks",1087:"kk",1107:"km",1111:"kok",1042:"ko",1088:"ky",1108:"lo",1142:"la",1062:"lv",1063:"lt",2110:"ms_BN",1086:"ms_MY",1100:"ml",1082:"mt",1112:"mni",1153:"mi",1102:"mr",1104:"mn",2128:"mn",1121:"ne",1044:"no_NO",2068:"no_NO",1096:"or",1045:"pl",1046:"pt_BR",2070:"pt_PT",1094:"pa",1047:"rm",2072:"ro_MO",1048:"ro_RO",1049:"ru",2073:"ru_MO",1083:"se",1103:"sa",3098:"sr_SP",2074:"sr_SP",1072:"st",1074:"tn",1113:"sd",1115:"si",1051:"sk",1060:"sl",1143:"so",1070:"sb",11274:"es_AR",16394:"es_BO",13322:"es_CL",9226:"es_CO",5130:"es_CR",7178:"es_DO",12298:"es_EC",17418:"es_SV",4106:"es_GT",18442:"es_HN",2058:"es_MX",19466:"es_NI",6154:"es_PA",15370:"es_PY",10250:"es_PE",20490:"es_PR",1034:"es_ES",14346:"es_UY",8202:"es_VE",1089:"sw",2077:"sv_FI",1053:"sv_SE",1114:"syc",1064:"tg",1097:"ta",1092:"tt",1098:"te",1054:"th",1105:"bo",1073:"ts",1055:"tr",1090:"tk",1058:"uk",1056:"ur",2115:"uz_UZ",1091:"uz_UZ",1075:"ve",1066:"vi",1106:"cy",1076:"xh",1085:"yi",1077:"zu"};const a=/^([a-z\d]+)(?:[_-]([a-z\d]+))?(?:\.([a-z\d]+))?(?:@([a-z\d]+))?$/i,r={},i={group:" ",decimal:".",positive:"+",negative:"-",percent:"%",exponent:"E",nan:"NaN",infinity:"∞",ampm:["AM","PM"],mmmm6:["Muharram","Safar","Rabiʻ I","Rabiʻ II","Jumada I","Jumada II","Rajab","Shaʻban","Ramadan","Shawwal","Dhuʻl-Qiʻdah","Dhuʻl-Hijjah"],mmm6:["Muh.","Saf.","Rab. I","Rab. II","Jum. I","Jum. II","Raj.","Sha.","Ram.","Shaw.","Dhuʻl-Q.","Dhuʻl-H."],mmmm:["January","February","March","April","May","June","July","August","September","October","November","December"],mmm:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dddd:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],ddd:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]};function s(e){const t=a.exec(e);if(!t)throw new SyntaxError("Malformed locale: ".concat(e));return{lang:t[1]+(t[2]?"_"+t[2]:""),language:t[1],territory:t[2]||"",codeset:t[3]||"",modifier:t[4]||""}}function o(e){if("number"==typeof e)return n[65535&e]||null;const t=parseInt(e,16);return isFinite(t)&&n[65535&t]?n[65535&t]||null:a.test(e)?e:null}function l(e){const t=o(e);let n=null;if(t){const e=s(t);n=r[e.lang]||r[e.language]||null}return n}function d(e){return Object.assign({},i,e)}function m(e,t){const n="object"==typeof t?t:s(t);return r[n.lang]=d(e),n.language===n.lang||r[n.language]||(r[n.language]=d(e)),r[n.lang]}const u=d({group:","});function c(e,t){if("number"!=typeof e)return e;if(e<0)return-c(-e,t);if(t){const n=10**(t||0)||1;return c(e*n,0)/n}return Math.round(e)}function p(e,t,n){const a=e<0?-1:1,r=10**(t||2),i=10**(n||2);let s,o,l=Math.abs(e),d=0,m=0,u=0,c=1;if((e=l)%1==0)o=[e*a,1];else if(e<1e-19)o=[a,1e19];else if(e>1e19)o=[1e19*a,1];else{do{if(l=1/(l-Math.floor(l)),s=c,c=c*Math.floor(l)+d,d=s,m=u,u=Math.floor(e*c+.5),u>=r||c>=i)return[a*m,d]}while(Math.abs(e-u/c)>=1e-10&&l!==Math.floor(l));o=[a*u,c]}return o}u.isDefault=!0,m({group:",",ampm:["上午","下午"],mmmm:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],mmm:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dddd:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],ddd:["周日","周一","周二","周三","周四","周五","周六"]},"zh_CN"),m({group:",",nan:"非數值",ampm:["上午","下午"],mmmm:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],mmm:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dddd:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],ddd:["週日","週一","週二","週三","週四","週五","週六"]},"zh_TW"),m({group:",",ampm:["午前","午後"],mmmm:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],mmm:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dddd:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],ddd:["日","月","火","水","木","金","土"]},"ja"),m({group:",",ampm:["오전","오후"],mmmm:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],mmm:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dddd:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],ddd:["일","월","화","수","목","금","토"]},"ko"),m({group:",",ampm:["ก่อนเที่ยง","หลังเที่ยง"],mmmm:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],mmm:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],dddd:["วันอาทิตย์","วันจันทร์","วันอังคาร","วันพุธ","วันพฤหัสบดี","วันศุกร์","วันเสาร์"],ddd:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."]},"th"),m({decimal:",",ampm:["dop.","odp."],mmmm:["ledna","února","března","dubna","května","června","července","srpna","září","října","listopadu","prosince"],mmm:["led","úno","bře","dub","kvě","čvn","čvc","srp","zář","říj","lis","pro"],dddd:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],ddd:["ne","po","út","st","čt","pá","so"]},"cs"),m({group:".",decimal:",",mmmm:["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"],mmm:["jan.","feb.","mar.","apr.","maj","jun.","jul.","aug.","sep.","okt.","nov.","dec."],dddd:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],ddd:["søn.","man.","tir.","ons.","tor.","fre.","lør."]},"da"),m({group:".",decimal:",",ampm:["a.m.","p.m."],mmmm:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],mmm:["jan.","feb.","mrt.","apr.","mei","jun.","jul.","aug.","sep.","okt.","nov.","dec."],dddd:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],ddd:["zo","ma","di","wo","do","vr","za"]},"nl"),m({group:","},"en"),m({decimal:",",nan:"epäluku",ampm:["ap.","ip."],mmmm:["tammikuuta","helmikuuta","maaliskuuta","huhtikuuta","toukokuuta","kesäkuuta","heinäkuuta","elokuuta","syyskuuta","lokakuuta","marraskuuta","joulukuuta"],mmm:["tammik.","helmik.","maalisk.","huhtik.","toukok.","kesäk.","heinäk.","elok.","syysk.","lokak.","marrask.","jouluk."],dddd:["sunnuntaina","maanantaina","tiistaina","keskiviikkona","torstaina","perjantaina","lauantaina"],ddd:["su","ma","ti","ke","to","pe","la"]},"fi"),m({group:" ",decimal:",",mmmm:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],mmm:["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dddd:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],ddd:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."]},"fr"),m({group:".",decimal:",",mmmm:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],mmm:["Jan.","Feb.","März","Apr.","Mai","Juni","Juli","Aug.","Sept.","Okt.","Nov.","Dez."],dddd:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],ddd:["So.","Mo.","Di.","Mi.","Do.","Fr.","Sa."]},"de"),m({group:".",decimal:",",ampm:["π.μ.","μ.μ."],mmmm:["Ιανουαρίου","Φεβρουαρίου","Μαρτίου","Απριλίου","Μαΐου","Ιουνίου","Ιουλίου","Αυγούστου","Σεπτεμβρίου","Οκτωβρίου","Νοεμβρίου","Δεκεμβρίου"],mmm:["Ιαν","Φεβ","Μαρ","Απρ","Μαΐ","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dddd:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],ddd:["Κυρ","Δευ","Τρί","Τετ","Πέμ","Παρ","Σάβ"]},"el"),m({decimal:",",ampm:["de.","du."],mmmm:["január","február","március","április","május","június","július","augusztus","szeptember","október","november","december"],mmm:["jan.","febr.","márc.","ápr.","máj.","jún.","júl.","aug.","szept.","okt.","nov.","dec."],dddd:["vasárnap","hétfő","kedd","szerda","csütörtök","péntek","szombat"],ddd:["V","H","K","Sze","Cs","P","Szo"]},"hu"),m({group:".",decimal:",",ampm:["f.h.","e.h."],mmmm:["janúar","febrúar","mars","apríl","maí","júní","júlí","ágúst","september","október","nóvember","desember"],mmm:["jan.","feb.","mar.","apr.","maí","jún.","júl.","ágú.","sep.","okt.","nóv.","des."],dddd:["sunnudagur","mánudagur","þriðjudagur","miðvikudagur","fimmtudagur","föstudagur","laugardagur"],ddd:["sun.","mán.","þri.","mið.","fim.","fös.","lau."]},"is"),m({group:".",decimal:",",mmmm:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember"],mmm:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agu","Sep","Okt","Nov","Des"],dddd:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],ddd:["Min","Sen","Sel","Rab","Kam","Jum","Sab"]},"id"),m({group:".",decimal:",",mmmm:["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"],mmm:["gen","feb","mar","apr","mag","giu","lug","ago","set","ott","nov","dic"],dddd:["domenica","lunedì","martedì","mercoledì","giovedì","venerdì","sabato"],ddd:["dom","lun","mar","mer","gio","ven","sab"]},"it"),m({decimal:",",ampm:["a.m.","p.m."],mmmm:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],mmm:["jan.","feb.","mar.","apr.","mai","jun.","jul.","aug.","sep.","okt.","nov.","des."],dddd:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],ddd:["søn.","man.","tir.","ons.","tor.","fre.","lør."]},"nb"),m({decimal:",",mmmm:["stycznia","lutego","marca","kwietnia","maja","czerwca","lipca","sierpnia","września","października","listopada","grudnia"],mmm:["sty","lut","mar","kwi","maj","cze","lip","sie","wrz","paź","lis","gru"],dddd:["niedziela","poniedziałek","wtorek","środa","czwartek","piątek","sobota"],ddd:["niedz.","pon.","wt.","śr.","czw.","pt.","sob."]},"pl"),m({group:".",decimal:",",mmmm:["janeiro","fevereiro","março","abril","maio","junho","julho","agosto","setembro","outubro","novembro","dezembro"],mmm:["jan.","fev.","mar.","abr.","mai.","jun.","jul.","ago.","set.","out.","nov.","dez."],dddd:["domingo","segunda-feira","terça-feira","quarta-feira","quinta-feira","sexta-feira","sábado"],ddd:["dom.","seg.","ter.","qua.","qui.","sex.","sáb."]},"pt"),m({decimal:",",nan:"не число",mmmm:["января","февраля","марта","апреля","мая","июня","июля","августа","сентября","октября","ноября","декабря"],mmm:["янв.","февр.","мар.","апр.","мая","июн.","июл.","авг.","сент.","окт.","нояб.","дек."],dddd:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],ddd:["вс","пн","вт","ср","чт","пт","сб"]},"ru"),m({decimal:",",mmmm:["januára","februára","marca","apríla","mája","júna","júla","augusta","septembra","októbra","novembra","decembra"],mmm:["jan","feb","mar","apr","máj","jún","júl","aug","sep","okt","nov","dec"],dddd:["nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],ddd:["ne","po","ut","st","št","pi","so"]},"sk"),m({group:".",decimal:",",ampm:["a. m.","p. m."],mmmm:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],mmm:["ene.","feb.","mar.","abr.","may.","jun.","jul.","ago.","sept.","oct.","nov.","dic."],dddd:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],ddd:["dom.","lun.","mar.","mié.","jue.","vie.","sáb."]},"es"),m({decimal:",",ampm:["fm","em"],mmmm:["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december"],mmm:["jan.","feb.","mars","apr.","maj","juni","juli","aug.","sep.","okt.","nov.","dec."],dddd:["söndag","måndag","tisdag","onsdag","torsdag","fredag","lördag"],ddd:["sön","mån","tis","ons","tors","fre","lör"]},"sv"),m({group:".",decimal:",",ampm:["ÖÖ","ÖS"],mmmm:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],mmm:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dddd:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],ddd:["Paz","Pzt","Sal","Çar","Per","Cum","Cmt"]},"tr");const f={overflow:"######",dateErrorThrows:!1,dateErrorNumber:!0,dateSpanLarge:!0,leap1900:!0,nbsp:!0,throws:!0,invalid:"######",locale:"",ignoreTimezone:!1},g=Object.assign({},f);function h(e){if(null===e&&(e=f),e)for(const t in e)if(t in f){const n=e[t];g[t]=null==n?f[t]:n}return{...g}}const y={"#":"",0:"0","?":" "},_={"@":"text","-":"minus","+":"plus"},b=["#000","#FFF","#F00","#0F0","#00F","#FF0","#F0F","#0FF","#000","#FFF","#F00","#0F0","#00F","#FF0","#F0F","#0FF","#800","#080","#008","#880","#808","#088","#CCC","#888","#99F","#936","#FFC","#CFF","#606","#F88","#06C","#CCF","#008","#F0F","#FF0","#0FF","#808","#800","#088","#00F","#0CF","#CFF","#CFC","#FF9","#9CF","#F9C","#C9F","#FC9","#36F","#3CC","#9C0","#FC0"],j=["¤","$","£","¥","֏","؋","৳","฿","៛","₡","₦","₩","₪","₫","€","₭","₮","₱","₲","₴","₸","₹","₺","₼","₽","₾","₿"],v=new RegExp("["+j.join("")+"]");function M(e,t,n){return t[n+"_max"]=e.length,t[n+"_min"]=e.replace(/#/g,"").length,t}const k={};function x(e){if(!(e in k)){const t=[],n=e.replace(/^[#,]+/,"").replace(/[1-9]\d*/g,(e=>"?".repeat(e.length)));for(let e=0;e<n.length;e++){const a=n.charAt(e);t[e]=a in y?y[a]:a}k[e]=t.join("")}return k[e]}function F(e,t){"string"==typeof e&&(e={type:"string",value:e=e.replace(/ /g,y["?"])}),t.push(e)}function z(e){const t=[],n={scale:1,percent:!1,text:!1,date:0,date_eval:!1,date_system:1,sec_decimals:0,general:!1,clock:24,int_pattern:[],frac_pattern:[],man_pattern:[],den_pattern:[],num_pattern:[],tokens:t};let a=e+"",r="int",i=!1,s=null;const l=[];let d,m,u=!1;for(;a&&!i;){if(d=/^General/i.exec(a))n.general=!0,F({type:"general"},t);else if("int"===r&&(d=/^[#?0]+(?:,[#?0]+)*/.exec(a))||"den"===r&&(d=/^[#?\d]+/.exec(a))||(d=/^[#?0]+/.exec(a)))n[r+"_pattern"].push(d[0]),s={type:r,num:d[0]},F(s,t);else if((d=/^\//.exec(a))&&n[r+"_pattern"].length){if(!s)throw new SyntaxError("Missing a numerator in pattern ".concat(e));n.fractions=!0,n.num_pattern.push(n[r+"_pattern"].pop()),s.type="num",r="den",F({type:"div"},t)}else if(d=/^,+/.exec(a)){const e=a.charAt(1)in y;m.slice(-1)in y&&(d[0].length>1||!e)?n.scale=.001**d[0].length:n.dec_fractions||F(d[0],t)}else{if(d=/^;/.exec(a)){i=!0;break}if(d=/^[@+-]/.exec(a))"@"===d[0]&&(n.text=!0),F({type:_[d[0]]},t);else if(d=/^(?:\[(h+|m+|s+)\])/i.exec(a)){const e=d[1].toLowerCase(),a=e[0],r={type:"",size:0,date:1,raw:d[0],pad:e.length};"h"===a?(r.size=16,r.type="hour-elap"):"m"===a?(r.size=32,r.type="min-elap"):(r.size=64,r.type="sec-elap"),n.date=n.date|r.size,l.push(r),F(r,t)}else if(d=/^(?:B2)/i.exec(a))u||(n.date_system=6);else if(d=/^(?:B1)/i.exec(a))u||(n.date_system=1);else if(d=/^(?:([hHmMsSyYbBdDegG])\1*)/.exec(a)){const e={type:"",size:0,date:1,raw:d[0]},a=d[0].toLowerCase(),r=a[0];if("y"===a||"yy"===a)e.size=2,e.type="year-short";else if("y"===r||"e"===r)e.size=2,e.type="year";else if("b"===a||"bb"===a)e.size=2,e.type="b-year-short";else if("b"===r)e.size=2,e.type="b-year";else if("d"===a||"dd"===a)e.size=8,e.type="day",e.pad=/dd/.test(a);else if("ddd"===a)e.size=8,e.type="weekday-short";else if("d"===r)e.size=8,e.type="weekday";else if("h"===r)e.size=16,e.type="hour",e.pad=/hh/i.test(a);else if("m"===r){3===a.length?(e.size=4,e.type="monthname-short"):5===a.length?(e.size=4,e.type="monthname-single"):a.length>=4&&(e.size=4,e.type="monthname");const t=l[l.length-1];!e.type&&t&&!t.used&&80&t.size&&(t.used=!0,e.size=32,e.type="min",e.pad=/mm/.test(a)),e.type||(e.size=4,e.type="month",e.pad=/mm/.test(a),e.indeterminate=!0)}else if("s"===r){e.size=64,e.type="sec",e.pad=/ss/.test(a);const t=l[l.length-1];t&&32&t.size?e.used=!0:t&&t.indeterminate&&(delete t.indeterminate,t.size=32,t.type="min",e.used=!0)}n.date=n.date|e.size,n.date_eval=!0,l.push(e),F(e,t)}else if(d=/^(?:AM\/PM|am\/pm|A\/P)/.exec(a))n.clock=12,n.date=16|n.date,n.date_eval=!0,F({type:"am",short:"A/P"===d[0]},t);else if(n.date&&(d=/^\.0{1,3}/i.exec(a))){const e=d[0].length-1,a=[64,128,256,512][e];n.date=n.date|a,n.date_eval=!0,n.sec_decimals=Math.max(n.sec_decimals,e),F({type:"subsec",size:a,decimals:e,date:1,raw:d[0]},t)}else if((d=/^\\(.)/.exec(a))||(d=/^"([^"]*?)"/.exec(a)))F(d[1],t);else if(d=/^\[(<[=>]?|>=?|=)\s*(-?[.\d]+)\]/.exec(a))n.condition=[d[1],parseFloat(d[2],10)];else if(d=/^\[\$([^\]]+)\]/.exec(a)){const e=d[1].split("-"),a=e.length<2?"":e[e.length-1],r=e[0];r&&F(r,t);const i=o(a);i&&(n.locale=i);const s=parseInt(a,16);isFinite(s)&&16711680&s&&6==(s>>16&255)&&(n.date_system=6),u=!0}else if(d=/^\[(black|blue|cyan|green|magenta|red|white|yellow|color\s*(\d+))\]/i.exec(a))n.color=d[2]?b[parseInt(d[2],10)]||"#000":d[1].toLowerCase();else if(d=/^\[(DBNum1|ENG|HIJ|JPN|TWN)\]/i.exec(a));else if(d=/^%/.exec(a))n.scale=100,n.percent=!0,F("%",t);else if(d=/^_(\\.|.)/.exec(a))F(" ",t);else if(d=/^\./.exec(a))F({type:"point",value:d[0]},t),n.dec_fractions=!0,r="frac";else if(d=/^[Ee]([+-]?|(?=[0#?]))/.exec(a))n.exponential=!0,n.exp_plus="+"===d[1],r="man",F({type:"exp",plus:"+"===d[1]},t);else if(d=/^\*(\\.|.)/.exec(a));else{if(d=/^[BENn[]/.exec(a))throw new SyntaxError("Unexpected char ".concat(a.charAt(0)," in pattern ").concat(e));"("===a[0]&&(n.parens=!0),d=[a[0]],F(d[0],t)}}m=d[0],a=a.slice(d?d[0].length:1)}if(n.pattern=e.slice(0,e.length-a.length),/^((?:\[[^\]]+\])+)(;|$)/.test(n.pattern)&&!/^\[(?:h+|m+|s+)\]/.test(n.pattern)&&F({type:"text"},t),n.fractions&&n.dec_fractions||n.fractions&&n.exponential)throw new SyntaxError("Invalid pattern: ".concat(n.pattern));const c=n.int_pattern.join("");if(n.grouping=c.indexOf(",")>=0,n.grouping){const e=c.split(","),t=e.length;2===t?(n.group_pri=e[1].length,n.group_sec=n.group_pri):t>2&&(n.group_pri=e[t-1].length,n.group_sec=e[t-2].length)}else n.group_pri=0,n.group_sec=0;M(c.replace(/[,]/g,""),n,"int"),M(n.frac_pattern.join(""),n,"frac"),M(n.man_pattern.join(""),n,"man");let p=n.num_pattern.join(""),f=n.den_pattern.join("");const g=/\?/.test(f)||/\?/.test(p);return f=f.replace(/\d/g,g?"?":"#"),g&&(f=f.replace(/#$/g,"?")),M(p,n,"num"),M(f,n,"den"),g&&(p=p.replace(/#$/g,"?")),n.int_padding=x(n.int_pattern.join("")),n.man_padding=x(n.man_pattern.join("")),n.num_padding=x(p),n.den_padding=x(f),n.den_pattern.length&&(n.denominator=parseInt(n.den_pattern.join("").replace(/\D/g,""),10)),n.integer=!!n.int_pattern.join("").length,n.fractions&&t.forEach(((e,n)=>{const a=t[n+1];"string"===e.type&&a&&("num"===a.type?e.rule="num+int":"div"===a.type?e.rule="num":"den"===a.type&&(e.rule="den"))})),n}const w=e=>{const t=e.condition;t&&t[1]<0&&("<"===t[0]||"<="===t[0]||"="===t[0])||e.tokens.unshift({type:"minus",volatile:!0})};function D(e){const t=[];let n,a=!1,r=null,i=e,s=0,l=!1,d=0,m=0;do{if(l=z(i),(l.date||l.general)&&(l.int_pattern.length||l.frac_pattern.length||1!==l.scale||l.text))throw new Error("Illegal format");if(l.condition&&(m++,a=!0),l.text){if(r)throw new Error("Unexpected partition");r=l}l.locale&&(n=o(l.locale)),t.push(l),s=";"===i.charAt(l.pattern.length)?1:0,i=i.slice(l.pattern.length+s),d++}while(s&&d<4&&m<3);if(s)throw new Error("Unexpected partition");if(m>2)throw new Error("Unexpected condition");const u=t[3];if(u&&(u.int_pattern.length||u.frac_pattern.length||u.date))throw new Error("Unexpected partition");if(a){const e=t.length;if(1===e&&(t[1]=z("General"),t[1].generated=!0),e<3){const e=t[0],n=t[1];if(w(e),n.condition)w(n);else{const t=e.condition;("="===t[0]||t[1]>=0&&(">"===t[0]||">="===t[0]))&&n.tokens.unshift({type:"minus",volatile:!0})}}else t.forEach(w)}else{if(t.length<4&&r)for(let e=0,n=t.length;e<n;e++)t[e]===r&&t.splice(e,1);if(t.length<1&&r&&(t[0]=z("General"),t[0].generated=!0),t.length<2){const e=z(t[0].pattern);e.tokens.unshift({type:"minus",volatile:!0}),e.generated=!0,t.push(e)}if(t.length<3){const e=z(t[0].pattern);e.generated=!0,t.push(e)}if(t.length<4)if(r)t.push(r);else{const e=z("@");e.generated=!0,t.push(e)}t[0].condition=[">",0],t[1].condition=["<",0],t[2].condition=null}return{pattern:e,partitions:t,locale:n}}const S=Math.floor;function C(e){let t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(t&&e>=0){if(0===e)return[1900,1,0];if(60===e)return[1900,2,29];if(e<60)return[1900,e<32?1:2,(e-1)%31+1]}let n=e+68569+2415019;const a=S(4*n/146097);n-=S((146097*a+3)/4);const r=S(4e3*(n+1)/1461001);n=n-S(1461*r/4)+31;const i=S(80*n/2447),s=n-S(2447*i/80);n=S(i/11);const o=i+2-12*n,l=100*(a-49)+r+n;return[0|l,0|o,0|s]}function E(e){return C(e+1462)}function A(e){if(60===e)throw new Error("#VALUE!");if(e<=1)return[1317,8,29];if(e<60)return[1317,e<32?9:10,1+(e-2)%30];const t=10631/30,n=.1335;let a=e+466935;const r=S(a/10631);a-=10631*r;const i=S((a-n)/t);a-=S(i*t+n);const s=S((a+28.5001)/29.5);return 13===s?[30*r+i,12,30]:[30*r+i,s,a-S(29.5001*s-29)]}function Y(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];const a=S(e);return 6===t?A(a):-1===t?E(a):C(a,n)}const T=Math.floor,N=86400;function P(e,t){let n=null;if(Array.isArray(e)){const[t,a,r,i,s,o]=e;n=Date.UTC(t,null==a?0:a-1,null!=r?r:1,i||0,s||0,o||0)}else if(e instanceof Date&&(n=1*e,!t||!t.ignoreTimezone)){const t=new Date;t.setUTCFullYear(e.getFullYear(),e.getMonth(),e.getDate()),t.setUTCHours(e.getHours(),e.getMinutes(),e.getSeconds(),e.getMilliseconds()),n=1*t}if(null!=n&&isFinite(n)){const e=n/864e5;return e-(e<=-25509?-25568:-25569)}return e}function I(e,t){let n=0|e;const a=N*(e-n);let r=T(a);a-r>.9999&&(r+=1,r===N&&(r=0,n+=1));const i=r<0?N+r:r,[s,o,l]=Y(e,0,t&&t.leap1900),d=T(i/60/60)%60,m=T(i/60)%60,u=T(i)%60;if(t&&t.nativeDate){const e=new Date(0);return e.setUTCFullYear(s,o-1,l),e.setUTCHours(d,m,u),e}return[s,o,l,d,m,u]}function O(e){return!!(e[0]&&e[0].percent||e[1]&&e[1].percent||e[2]&&e[2].percent||e[3]&&e[3].percent)}function J(e){return!!(e[0]&&e[0].date||e[1]&&e[1].date||e[2]&&e[2].date||e[3]&&e[3].date)}function L(e){const[t,n,a,r]=e;return!(t&&!t.generated||n&&!n.generated||a&&!a.generated||!r||!r.text||r.generated)}const U={text:15,datetime:10.8,date:10.8,time:10.8,percent:10.6,currency:10.4,grouped:10.2,scientific:6,number:4,fraction:2,general:0,error:0},R=[["DMY",1],["DM",2],["MY",3],["MDY",4],["MD",5],["hmsa",6],["hma",7],["hms",8],["hm",9]],G={total:1,sign:0,period:0,int:1,frac:0},H=(e,t)=>e.replace(/\./,t.decimal);function B(e,t,n,a){const r=0|n;if("string"==typeof n)e.push(n);else if(n===r)e.push(Math.abs(r));else{const t=Math.abs(n);let r=t?Math.floor(Math.log10(t)):0,i=r<0?t*10**-r:t/10**r;10===i&&(i=1,r++);const s=function(e){let t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];const n=Math.abs(e);if(!n)return G;const a=t&&e<0?1:0,r=Math.floor(n),i=Math.floor(Math.log10(n)+1);let s=0,o=0;if(r!==n){s=1;const e=String(c(i<0?n*10**-i:n/10**i,15));let t=e.length,a=!0,r=0;for(;r<=e.length;){if("."===e[r]){t--;break}"0"===e[r]&&a?t--:a=!1,r++}o=t-i,o<0&&(o=0,s=0)}return{total:a+Math.max(i,1)+s+o,digits:Math.max(i,0)+o,sign:a,period:s,int:Math.max(i,1),frac:o}}(t),o=()=>{const t=Math.abs(r);let n;n=1===i?i:c(i,5),e.push(H(n+"",a),a.exponent,r<0?a.negative:a.positive,t<10?"0":"",t)};if(r>=-4&&r<=-1){const n=t.toPrecision(10+r).replace(/\.?0+$/,"");e.push(H(n,a))}else if(10===r){const n=t.toFixed(10).slice(0,12).replace(/\.$/,"");e.push(H(n,a))}else if(Math.abs(r)<=9)if(s.total<=11){const n=c(t,9).toFixed(s.frac);e.push(H(n,a))}else 9===r?e.push(Math.floor(t)):r>=0&&r<9?e.push(c(t,9-r)):o();else s.total>=12?o():Math.floor(t)===t?e.push(Math.floor(t)):e.push(H(c(t,9).toFixed(s.frac),a))}return e}const $=86400,W={int:"integer",frac:"fraction",man:"mantissa",num:"numerator",den:"denominator"},Z=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;const n=Math.floor(Math.log10(e));return t>1?Math.floor(n/t)*t:n};function K(e,t,n,a){let r="",i="",s="",o="",l="",d=0,m=0|e,f=0,g=0,h=1,_=0,b=0,j=0,v=0,M=0,k=0;const x=a||u;if(!t.text&&isFinite(t.scale)&&1!==t.scale&&(e=function(e){if(0===e)return e;const t=Math.ceil(Math.log10(e<0?-e:e)),n=10**(16-Math.floor(t));return Math.round(e*n)/n}(e*t.scale)),t.exponential){let n=Math.abs(e);if(n){const e=10**-Z(n,t.int_max),a=c(n*e,t.frac_max)/e;d=Z(a,t.int_max)}n/=10**d,e=e<0?-n:n,r+=Math.abs(d)}if(t.integer){const n=Math.abs(c(e,t.fractions?1:t.frac_max));l+=n<1?"":Math.floor(n)}if(t.grouping){let e="",n=l.length;for(n>t.group_pri&&(n-=t.group_pri,e=x.group+l.slice(n,n+t.group_pri)+e);n>t.group_sec;)n-=t.group_sec,e=x.group+l.slice(n,n+t.group_sec)+e;l=n?l.slice(0,n)+e:e}t.dec_fractions&&(o=String(c(e,t.frac_max)).split(".")[1]||"");let F=!1;if(t.fractions){const n=Math.abs(t.integer?e%1:e);if(n)if(F=!0,isFinite(t.denominator))s+=t.denominator,i+=c(n*t.denominator),"0"===i&&(i="",s="",F=!1,l||(l="0"));else{const e=p(n,t.integer?t.num_max:1/0,t.den_max);i+=e[0],s+=e[1],t.integer&&"0"===i&&(l||(l="0"),i="",s="",F=!1)}}if(t.date){m=Math.trunc(e);const a=$*(e-m);if(f=Math.floor(a),k=a-f,Math.abs(k)<1e-6?k=0:k>.9999&&(k=0,f+=1,f===$&&(f=0,m+=1)),k){const e=512&t.date||256&t.date||128&t.date;(512===e&&k>.9995||256===e&&k>.995||128===e&&k>.95||!e&&k>=.5)&&(f++,k=0)}if(m||t.date_system){const a=Y(e,t.date_system,n.leap1900);g=a[0],h=a[1],_=a[2]}if(f){const e=f<0?$+f:f;M=Math.floor(e)%60,v=Math.floor(e/60)%60,j=Math.floor(e/60/60)%60}if(b=(6+m)%7,t.date_eval&&(z=e,w=m+f/$,n.dateSpanLarge?z<-694324||w>=35830291:z<0||w>=2958466)){if(n.dateErrorThrows)throw new Error("Date out of bounds");return n.dateErrorNumber?B(e<0?[x.negative]:[],0,e,x).join(""):n.overflow}}var z,w;if(t.int_padding&&(l=1===t.int_padding.length?l||t.int_padding:t.int_padding.substring(0,t.int_padding.length-l.length)+l),t.num_padding&&(i=1===t.num_padding.length?i||t.num_padding:t.num_padding.substring(0,t.num_padding.length-i.length)+i),t.den_padding&&(s=1===t.den_padding.length?s||t.den_padding:s+t.den_padding.slice(s.length)),t.man_padding){const e=t.exp_plus?"+":"";r=1===t.man_padding.length?(d<0?"-":e)+(r||t.man_padding):(d<0?"-":e)+t.man_padding.slice(0,t.man_padding.length-r.length)+r}const D=[];let S=0;const C={int:0,frac:0,man:0,num:0,den:0};for(let d=0,u=t.tokens.length;d<u;d++){const u=t.tokens[d],c=u.num?u.num.length:0;if("string"===u.type)u.rule?"num"===u.rule?F?D.push(u.value):(t.num_min>0||t.den_min>0)&&D.push(u.value.replace(/./g,y["?"])):"num+int"===u.rule?F&&l?D.push(u.value):t.den_min>0&&(l||t.num_min)&&D.push(u.value.replace(/./g,y["?"])):"den"===u.rule&&(F?D.push(u.value):(t.den_min>0||t.den_min>0)&&D.push(u.value.replace(/./g,y["?"]))):D.push(u.value);else if("error"===u.type)D.push(n.invalid);else if("point"===u.type)D.push(t.date?u.value:x.decimal);else if("general"===u.type)B(D,0,e,x);else if("exp"===u.type)D.push(x.exponent);else if("minus"===u.type)u.volatile&&t.date||u.volatile&&(e>=0||"number"!=typeof e)||(u.volatile&&!t.fractions&&(t.integer||t.dec_fractions)?(e<0&&l&&"0"!==l||o)&&D.push(x.negative):D.push(x.negative));else if("plus"===u.type)D.push(x.positive);else if("text"===u.type)D.push(e);else if("div"===u.type)F?D.push("/"):t.num_min>0||t.den_min>0?D.push(y["?"]):D.push(y["#"]);else if("int"===u.type)if(1===t.int_pattern.length)D.push(l);else{const e=S?t.int_pattern.join("").length-C.int:1/0,n=S===t.int_pattern.length-1?0:t.int_pattern.join("").length-(C.int+u.num.length);D.push(l.substring(l.length-e,l.length-n)),S++,C.int+=u.num.length}else if("frac"===u.type){const e=C.frac;for(let t=0;t<c;t++)D.push(o[t+e]||y[u.num[t]]);C.frac+=c}else if(u.type in W)1===t[u.type+"_pattern"].length?("int"===u.type&&D.push(l),"frac"===u.type&&D.push(o),"man"===u.type&&D.push(r),"num"===u.type&&D.push(i),"den"===u.type&&D.push(s)):(D.push(W[u.type].slice(C[u.type],C[u.type]+c)),C[u.type]+=c);else if("year"===u.type)g<0&&D.push(x.negative),D.push(String(Math.abs(g)).padStart(4,"0"));else if("year-short"===u.type){const e=g%100;D.push(e<10?"0":"",e)}else if("month"===u.type)D.push(u.pad&&h<10?"0":"",h);else if("monthname-single"===u.type)6===t.date_system?D.push(x.mmmm6[h-1].charAt(0)):D.push(x.mmmm[h-1].charAt(0));else if("monthname-short"===u.type)6===t.date_system?D.push(x.mmm6[h-1]):D.push(x.mmm[h-1]);else if("monthname"===u.type)6===t.date_system?D.push(x.mmmm6[h-1]):D.push(x.mmmm[h-1]);else if("weekday-short"===u.type)D.push(x.ddd[b]);else if("weekday"===u.type)D.push(x.dddd[b]);else if("day"===u.type)D.push(u.pad&&_<10?"0":"",_);else if("hour"===u.type){const e=j%t.clock||(t.clock<24?t.clock:0);D.push(u.pad&&e<10?"0":"",e)}else if("min"===u.type)D.push(u.pad&&v<10?"0":"",v);else if("sec"===u.type)D.push(u.pad&&M<10?"0":"",M);else if("subsec"===u.type){D.push(x.decimal);const e=k.toFixed(t.sec_decimals);D.push(e.slice(2,2+u.decimals))}else if("am"===u.type){const e=j<12?0:1;u.short&&!a?D.push("AP"[e]):D.push(x.ampm[e])}else if("hour-elap"===u.type){e<0&&D.push(x.negative);const t=24*m+Math.floor(Math.abs(f)/3600);D.push(String(Math.abs(t)).padStart(u.pad,"0"))}else if("min-elap"===u.type){e<0&&D.push(x.negative);const t=1440*m+Math.floor(Math.abs(f)/60);D.push(String(Math.abs(t)).padStart(u.pad,"0"))}else if("sec-elap"===u.type){e<0&&D.push(x.negative);const t=m*$+Math.abs(f);D.push(String(Math.abs(t)).padStart(u.pad,"0"))}else if("b-year"===u.type)D.push(g+543);else if("b-year-short"===u.type){const e=(g+543)%100;D.push(e<10?"0":"",e)}}return n.nbsp?D.join(""):D.join("").replace(/\u00a0/g," ")}function q(e,t){for(let n=0;n<3;n++){const a=t[n];if(a){let t;if(a.condition){const n=a.condition[0],r=a.condition[1];"="===n?t=e===r:">"===n?t=e>r:"<"===n?t=e<r:">="===n?t=e>=r:"<="===n?t=e<=r:"<>"===n&&(t=e!==r)}else t=!0;if(t)return a}}}const V=z("@"),Q="black",X={};function ee(e,t){if(e){const n=e[0];t[n]=t[n]||{},ee(e.slice(1),t[n])}else t.$=!0}["d-F-y","d-F-Y","d-M-y","d-M-Y","F-d-y","F-d-Y","F-j-y","F-j-Y","j-F-y","j-F-Y","j-M-y","j-M-Y","M-d-y","M-d-Y","M-j-y","M-j-Y","m-d-y","m-d-Y","m-j-y","m-j-Y","n-d-y","n-d-Y","n-j-y","n-j-Y","y-F-d","y-F-j","y-M-d","y-M-j","Y-F-d","Y-F-j","Y-M-d","Y-m-d","Y-M-j","Y-m-j","Y-n-d","Y-n-j","j-F","j-M","d-F","d-M","n-d","n-j","n-Y","m-d","m-j","m-Y","M-Y","M-y","F-y","F-Y","Y-M","Y-n","Y-m","Y-F","Y-M"].forEach((e=>{ee(e,X),ee(e+" x",X),ee(e+" l",X),ee(e+" l x",X),ee("l "+e,X),ee("l "+e+" x",X),ee(e+" D",X),ee(e+" D x",X),ee("D "+e,X),ee("D "+e+" x",X)}));const te={jan:1,feb:2,mar:3,apr:4,may:5,jun:6,jul:7,aug:8,sep:9,oct:10,nov:11,dec:12},ne={january:1,february:2,march:3,april:4,june:6,july:7,august:8,september:9,october:10,november:11,december:12},ae={sunday:"l",monday:"l",tuesday:"l",wednesday:"l",thursday:"l",friday:"l",saturday:"l",sun:"D",mon:"D",tue:"D",wed:"D",thu:"D",fri:"D",sat:"D"},re=(new Date).getUTCFullYear();function ie(e){const t=new RegExp("^([\\s+%"+j.join("")+"(-]*)(((?:(?:\\d[\\d,]*)(?:\\.\\d*)?|(?:\\.\\d+)))([eE][+-]?\\d+)?)([\\s%"+j.join("")+")]*)$").exec(e);if(t){const[,e,n,a,r,i]=t;let s=1,o="",l=!1,d=!1,m=!1,u=!1,c=!1,p=null,f=!1,g=parseFloat(n.replace(/,/g,""));if(!isFinite(g))return null;for(let t=0;t<e.length;t++){const n=e[t];if("-"===n){if(l||d)return null;l=!0,s=-1}else if(v.test(n)){if(c)return null;c=!0,p=n}else if("("===n){if(d||l)return null;d=!0,s=-1}else if("%"===n){if(u)return null;u=!0}}for(let e=0;e<i.length;e++){const t=i[e];if(v.test(t)){if(c)return null;c=!0,p=t,f=!0}else if(")"===t){if(m||!d)return null;m=!0}else if("%"===t){if(u)return null;u=!0}}if(r){if(u||c)return null;o="0.00E+00"}else if(u){if(c)return null;o=a.includes(".")?"0.00%":"0%",g*=.01}else if(c){const e=a.includes(".")?"#,##0.00":"#,##0";o=f?e+p:p+e}else a.includes(",")&&(o=a.includes(".")?"#,##0.00":"#,##0");const h={v:g*s};return o&&(h.z=o),h}}const se=(e,t,n)=>{const a=n.path||"",r=Object.keys(t);for(let i=0;i<r.length;i++){let s;const o=r[i];if(t[o]){if("$"===o||"€"===o)e||(s=n);else if("-"===o){const r=/^(\s*([./-]|,\s)\s*|\s+)/.exec(e);if(r){const i="-"===r[1]||"/"===r[1]||"."===r[1]?r[1]:" ";if(!n.sep||n.sep===i){const l=r[0].replace(/\s+/g," ");s=se(e.slice(r[0].length),t[o],{...n,sep:i,path:a+l})}}}else if(" "===o){const r=/^[,.]?\s+/.exec(e);if(r){const i=r[0].replace(/\s+/g," ");s=se(e.slice(r[0].length),t[o],{...n,path:a+i})}}else if("j"===o||"d"===o){const r=/^(0?[1-9]|1\d|2\d|3[01])\b/.exec(e);r&&(s=se(e.slice(r[0].length),t[o],{...n,day:r[0],path:a+o}))}else if("n"===o||"m"===o){const r=/^(0?[1-9]|1[012])\b/.exec(e);r&&(s=se(e.slice(r[0].length),t[o],{...n,month:+r[0],_mon:r[0],path:a+o}))}else if("F"===o||"M"===o){const r=/^([a-z]{3,9})\b/i.exec(e),i=r&&("F"===o?ne:te)[r[0].toLowerCase()];i&&(s=se(e.slice(r[0].length),t[o],{...n,month:i,_mon:r[0],path:a+o}))}else if("l"===o||"D"===o){const r=/^([a-z]{3,9})\b/i.exec(e);(r&&ae[r[0].toLowerCase()])===o&&(s=se(e.slice(r[0].length),t[o],{...n,path:a+o}))}else if("y"===o){const r=/^\d\d\b/.exec(e);if(r){const i=+r[0]>=30?+r[0]+1900:+r[0]+2e3;s=se(e.slice(r[0].length),t[o],{...n,year:i,path:a+o})}}else if("Y"===o){const r=/^\d\d\d\d\b/.exec(e);r&&(s=se(e.slice(r[0].length),t[o],{...n,year:+r[0],path:a+o}))}else{if("x"!==o)throw new Error('Unknown date token "'.concat(o,'"'));{const r=le(e);r&&(s=se("",t[o],{...n,time:r.v,tf:r.z,path:a+o}))}}if(s)return s}}};function oe(e,t){const n=se(e.trim(),X,{path:""});if(n){var a;if("."===n.sep&&3===n.path.length)return null;const e=+(null!==(a=n.year)&&void 0!==a?a:re);if(n.day||(n.day=1),!function(e,t,n){if(n<1)return!1;if(t<1||t>12)return!1;if(2===t){if(n>(e%4==0&&e%100!=0||e%400==0||1900===e?29:28))return!1}else if((4===t||6===t||9===t||11===t)&&n>30||(1===t||3===t||5===t||7===t||8===t||10===t||12===t)&&n>31)return!1;return!0}(e,n.month,n.day))return null;let r=-1/0;if(e<1900)return null;e<=1900&&n.month<=2?r=25568:e<1e4&&(r=25569);const i=Date.UTC(e,n.month-1,n.day)/864e5+r+(n.time||0);if(i>=0&&i<=2958465){const e="0"===n._mon[0]||"0"===n.day[0]||2===n._mon.length&&2===n.day.length,a=n.path.replace(/[jdlDnmMFyYx-]/g,(t=>"j"===t||"d"===t?e?"dd":"d":"D"===t?"ddd":"l"===t?"dddd":"n"===t||"m"===t?e?"mm":"m":"M"===t?"mmm":"F"===t?"mmmm":"y"===t?"yy":"x"===t?n.tf||"":"Y"===t?"yyyy":t));return t&&t.nativeDate?{v:I(i,t),z:a}:{v:i,z:a}}}return null}function le(e){const t=/^\s*([10]?\d|2[0-4])(?::([0-5]\d|\d))?(?::([0-5]\d|\d))?(\.\d{1,10})?(?:\s*([AP])M?)?\s*$/i.exec(e);if(t){const[,e,n,a,r,i]=t;if(r&&!a)return null;if(!i&&!n&&!a)return null;let s=1*(e||0);if(i){if(s>=13)return null;"p"!==i[0]&&"P"!==i[0]||(s+=12)}return{v:(60*s*60+1*(n||0)*60+1*(a||0)+1*(r||0))/86400,z:(2===e.length?"hh":"h")+":mm"+(a?":ss":"")+(i?" AM/PM":"")}}return null}function de(e){return/^\s*true\s*$/i.test(e)?{v:!0}:/^\s*false\s*$/i.test(e)?{v:!1}:null}const me={};function ue(e,t){e||(e="General");let n=null;return me[e]?n=me[e]:(n=Object.assign({},h(),t).throws?D(e):function(e){try{return D(e)}catch(t){const n={tokens:[{type:"error"}],error:t.message};return{pattern:e,partitions:[n,n,n,n],error:t.message,locale:null}}}(e),n.error||(me[e]=n)),function(e,t){const{pattern:n,partitions:a,locale:r}=e,i=e=>{const n=Object.assign({},h(),t,e);return r&&(n.locale=r),n},s=(e,t)=>{const n=i(t);return function(e,t,n){const a=l(n.locale),r=t[3]?t[3]:V;if("boolean"==typeof e&&(e=e?"TRUE":"FALSE"),null==e)return"";if("number"!=typeof e)return K(e,r,n,a);if(!isFinite(e)){const t=a||u;return isNaN(e)?t.nan:(e<0?t.negative:"")+t.infinity}const i=q(e,t);return i?K(e,i,n,a):n.overflow}(P(e,n),a,n)};s.color=(e,t)=>function(e,t){if("number"!=typeof e||!isFinite(e))return(t[3]?t[3].color:V.color)||Q;const n=q(e,t);return n&&n.color||Q}(P(e,i(t)),a);const o=function(e){var t;let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;const[a,r]=e,i=a.frac_max,s={type:"general",isDate:J(e),isText:L(e),isPercent:O(e),maxDecimals:a.general?9:i,scale:null!==(t=a.scale)&&void 0!==t?t:1,color:0,parentheses:0,grouped:a.grouping?1:0,_partitions:e},o=!s.isDate&&!s.isText&&!a.error&&a.tokens.some((e=>"string"===e.type&&(n?e.value===n:v.test(e.value))));let l="G",d=i>=0?Math.min(15,i):"",m="",u="";if(r&&r.color&&(u="-",s.color=1),a.parens&&(m="()",s.parentheses=1),o)l="C",s.type="currency";else if(a.error)s.type="error",s.maxDecimals=0;else if(s.isDate){let e=0,t=0,n="";a.tokens.forEach((a=>{const r=a.type;/^(b-)?year/.test(r)?(n+="Y",t++):r.startsWith("month")?(n+="M",t++):/^(week)?day/.test(r)?(n+="D",t++):"hour"!==r&&"min"!==r&&"sec"!==r&&"am"!==r||(n+=r[0],e++)})),s.type="date",t&&e?s.type="datetime":!t&&e&&(s.type="time");const r=R.find((e=>n.startsWith(e[0])));l=r?"D":"G",d=r?r[1]:""}else s.isText?(l="G",s.type="text",d="",s.maxDecimals=0):a.general?(l="G",s.type="general",d=""):a.fractions?(l="G",s.type="fraction",d=""):a.exponential?(l="S",s.type="scientific"):s.isPercent?(l="P",s.type="percent"):a.grouping?(l=",",s.type="grouped"):(a.int_max||i)&&(l="F",s.type="number");return s.code=l+d+u+m,s.level=U[s.type],Object.freeze(s)}(a,(t||{}).currency)||new SyntaxError;return s.info=o,s.dateInfo=function(e){const[t]=e;return{year:!!(2&t.date),month:!!(4&t.date),day:!!(8&t.date),hours:!!(16&t.date),minutes:!!(32&t.date),seconds:!!(64&t.date),clockType:12===t.clock?12:24}}(a),s.isPercent=()=>!!o.isPercent,s.isDate=()=>!!o.isDate,s.isText=()=>!!o.isText,s.pattern=n,e.error&&(s.error=e.error),s.options=i,s.locale=r||t&&t.locale||"",Object.freeze(s)}(n,t)}ue.isDate=e=>ue(e,{throws:!1}).isDate(),ue.isPercent=e=>ue(e,{throws:!1}).isPercent(),ue.isText=e=>ue(e,{throws:!1}).isText(),ue.getInfo=(e,t)=>ue(e,{...t,throws:!1}).info,ue.getDateInfo=(e,t)=>ue(e,{...t,throws:!1}).dateInfo,ue.dateToSerial=P,ue.dateFromSerial=I,ue.options=h,ue.dec2frac=p,ue.round=c,ue.codeToLocale=n,ue.parseLocale=s,ue.getLocale=l,ue.addLocale=(e,t)=>{const n=s(t);return delete me[n.lang],delete me[n.language],m(e,n)},ue.format=function(e,t,n){let a=arguments.length>3&&void 0!==arguments[3]&&arguments[3];const r=n&&"object"==typeof n?n:{locale:n,throws:!a};return ue(e,r)(P(t,r),r)},ue.is_date=ue.isDate,ue.parseNumber=ie,ue.parseDate=oe,ue.parseTime=le,ue.parseBool=de,ue.parseValue=function(e,t){var n,a,r;return null!==(n=null!==(a=null!==(r=ie(e))&&void 0!==r?r:oe(e,t))&&void 0!==a?a:le(e))&&void 0!==n?n:de(e)};var ce=ue;return t.default}()},"object"==typeof t&&"object"==typeof n?n.exports=i():"function"==typeof a&&a.amd?a([],i):"object"==typeof t?t.numfmt=i():r.numfmt=i()}));
- ;/*!node_modules/numfmt/index.js*/
- amis.define("a76d5c4",(function(e,a,i,n){i.exports=e("7aeb325")}));
- ;/*!node_modules/office-viewer/lib/excel/sheet/BuiltInNumFmt.js*/
- amis.define("0471109",(function(m,y,s,e){"use strict";Object.defineProperty(y,"__esModule",{value:!0});var d=[];d[0]="General",d[1]="0",d[2]="0.00",d[3]="#,##0",d[4]="#,##0.00",d[9]="0%",d[10]="0.00%",d[11]="0.00E+00",d[12]="# ?/?",d[13]="# ??/??",d[14]="yyyy/m/d",d[15]="yyyy-mmm-d",d[16]="mmm-d",d[17]="yyyy-mmm",d[18]="h:mm AM/PM",d[19]="h:mm:ss AM/PM",d[20]="h:mm",d[21]="h:mm:ss",d[22]="yyyy/m/d h:mm",d[37]="#,##0 ;(#,##0)",d[38]="#,##0 ;[Red](#,##0)",d[39]="#,##0.00;(#,##0.00)",d[40]="#,##0.00;[Red](#,##0.00)",d[45]="mm:ss",d[46]="[h]:mm:ss",d[47]="mmss.0",d[48]="##0.0E+0",d[49]="@",d[56]='"上午/下午 "hh"時"mm"分"ss"秒 "',y.default=d}));
- ;/*!node_modules/office-viewer/lib/excel/render/IndexedColors.js*/
- amis.define("4471e91",(function(F,C,e,d){"use strict";Object.defineProperty(C,"__esModule",{value:!0});C.IndexedColors=["000000","FFFFFF","FF0000","00FF00","0000FF","FFFF00","FF00FF","00FFFF","000000","FFFFFF","FF0000","00FF00","0000FF","FFFF00","FF00FF","00FFFF","800000","008000","000080","808000","800080","008080","C0C0C0","808080","9999FF","993366","FFFFCC","CCFFFF","660066","FF8080","0066CC","CCCCFF","000080","FF00FF","FFFF00","00FFFF","800080","800000","008080","0000FF","00CCFF","CCFFFF","CCFFCC","FFFF99","99CCFF","FF99CC","CC99FF","FFCC99","3366FF","33CCCC","99CC00","FFCC00","FF9900","FF6600","666699","969696","003366","339966","003300","333300","993300","993366","333399","333333","000000","FFFFFF"]}));
- ;/*!node_modules/office-viewer/lib/excel/data/numfmt/amountInWords.js*/
- amis.define("c8ae014",(function(e,r,t,a){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.amountInWords=function(e){var r;if((null===(r=e.toString().split(".")[0])||void 0===r?void 0:r.length)>14)return"最大数额只支持到兆(既小数点前".concat(14,"位)");var t=["角","分"],a=["零","壹","贰","叁","肆","伍","陆","柒","捌","玖"],o=[["元","万","亿","兆"],["","拾","佰","仟"]],l=e<0?"欠":"";e=Math.abs(e);for(var n="",c=0;c<t.length;c++)n+=(a[Math.floor(10*e*Math.pow(10,c))%10]+t[c]).replace(/零./,"");for(n=n||"整",e=Math.floor(e),c=0;c<o[0].length&&e>0;c++){for(var f="",i=0;i<o[1].length&&e>0;i++)f=a[e%10]+o[1][i]+f,e=Math.floor(e/10);n=f.replace(/(零.)*零$/,"").replace(/^$/,"零")+o[0][c]+n}return l+n.replace(/(零.)*零元/,"元").replace(/(零.)+/g,"零").replace(/^整$/,"零元整")}}));
- ;/*!node_modules/office-viewer/lib/excel/data/numfmtExtend.js*/
- amis.define("0375f81",(function(e,n,t,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var o=e("c8ae014");n.numfmtExtend=function(e){var n=function(n){if("[DBNum2][$RMB]General;[Red][DBNum2][$RMB]General"===e){var t=parseFloat(n);return isNaN(t)?n:o.amountInWords(parseFloat(t.toFixed(2)))}return console.warn("numfmtExtend: formatCode not found",e),n};return n.isDate=function(){return!1},n.info={color:0},n}}));
- ;/*!node_modules/office-viewer/lib/excel/data/autoFilter/sortByRange.js*/
- amis.define("da3f995",(function(e,t,r,i){"use strict";function o(e,t){if(e===t)return 0;if("string"==typeof e&&"string"==typeof t)return e.localeCompare(t,void 0,{numeric:!0,sensitivity:"base"});if(void 0===e)return 1;if(void 0===t)return-1;if("object"==typeof e&&"value"in e&&"object"==typeof t&&"value"in t){var r=e.value,i=t.value;return r.localeCompare(i,void 0,{numeric:!0,sensitivity:"base"})}return 0}Object.defineProperty(t,"__esModule",{value:!0}),t.compareCellData=o,t.sortByRange=function(e,t,r){var i=e.slice(t.startRow,t.endRow+1);i.sort((function(e,i){var n=o(e[t.startCol],i[t.startCol]);return"asc"===r?n:-n}));for(var n=0;n<i.length;n++)e[n+t.startRow]=i[n]}}));
- ;/*!node_modules/office-viewer/lib/util/px2pt.js*/
- amis.define("7e3e955",(function(e,t,n,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.px2pt=function(e){return e/1.3333333333333333}}));
- ;/*!node_modules/office-viewer/lib/excel/data/LocalDataProvider.js*/
- amis.define("6d48afa",(function(e,t,o,i){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var l=e("68b98b9"),r=e("3533841"),n=e("39b35d7"),a=e("bec4e73"),d=e("691a873"),u=e("a76d5c4"),v=e("0471109"),s=e("b12ecca"),h=e("7167655"),f=e("ee2e51f"),c=e("69209dc"),y=e("4471e91"),p=e("7705ccb"),g=e("e95ab9d"),w=e("0375f81"),k=e("c4f7092"),x=e("da3f995"),m=e("7e3e955");function C(e){return e&&"object"==typeof e&&"default"in e?e:{default:e}}var S=C(u),b=function(){function e(e,t){this.numfmtInstances=[],this.sheetTotalHeightCache=new Map,this.sheetTotalWidthCache=new Map,this.workbook=e,this.renderOptions=t,this.initNumfmt(),this.defaultFont=this.getDefaultFont(),this.defaultFontStyle=this.getFontStyle(this.defaultFont),this.applyFilter()}return e.prototype.initNumfmt=function(){var e,t,o,i,r,n=this,a=this.renderOptions.locale;v.default.forEach((function(e,t){var o=S.default(e,{locale:a});n.numfmtInstances[t]=o}));try{for(var d=l.__values((null===(i=null===(o=this.workbook.styleSheet)||void 0===o?void 0:o.numFmts)||void 0===i?void 0:i.numFmt)||[]),u=d.next();!u.done;u=d.next()){var s=u.value,h=void 0;try{h=S.default(null===(r=s.formatCode)||void 0===r?void 0:r.replace("aaaa","dddd").replace("aaa","ddd"),{locale:a})}catch(e){console.warn("numfmt error",e),h=w.numfmtExtend(s.formatCode)}var f=s.numFmtId||0;this.numfmtInstances[f]=h}}catch(t){e={error:t}}finally{try{u&&!u.done&&(t=d.return)&&t.call(d)}finally{if(e)throw e.error}}},e.prototype.applyFilter=function(){var e,t,o,i,r,n;try{for(var a=l.__values(this.workbook.sheets.entries()),d=a.next();!d.done;d=a.next()){var u=l.__read(d.value,2),v=u[0],s=u[1];if(null===(r=s.worksheet)||void 0===r?void 0:r.autoFilter){var h=s.worksheet.autoFilter;g.applyAutoFilter(v,this.workbook,s,this,h)}try{for(var f=(o=void 0,l.__values((null===(n=s.worksheet)||void 0===n?void 0:n.tableParts)||[])),c=f.next();!c.done;c=f.next()){var y=c.value;if(y.autoFilter){var p=y.headerRowCount||1;g.applyAutoFilter(v,this.workbook,s,this,y.autoFilter,p)}}}catch(e){o={error:e}}finally{try{c&&!c.done&&(i=f.return)&&i.call(f)}finally{if(o)throw o.error}}}}catch(t){e={error:t}}finally{try{d&&!d.done&&(t=a.return)&&t.call(a)}finally{if(e)throw e.error}}},e.prototype.getSheets=function(){return this.workbook.sheets},e.prototype.getSheetRowData=function(e,t){var o,i=this.getSheetByIndex(e);return i&&(null===(o=i.worksheet)||void 0===o?void 0:o.cellData[t])||[]},e.prototype.getCellData=function(e,t,o){var i,l,r=this.getSheetByIndex(e);if(r)return(null===(l=null===(i=r.worksheet)||void 0===i?void 0:i.cellData[t])||void 0===l?void 0:l[o])||void 0},e.prototype.updateCellData=function(e,t,o,i){var l=this.getSheetByIndex(e);l&&l.worksheet&&(l.worksheet.cellData[t]||(l.worksheet.cellData[t]=[]),l.worksheet.cellData[t][o]=i)},e.prototype.getRowHeight=function(e,t){var o,i,l,n=this.getSheetByIndex(e);if(n){var a=null===(o=n.worksheet)||void 0===o?void 0:o.rows[t];if(null==a?void 0:a.hidden)return 0;var d=null==a?void 0:a.ht;return d||(d=(null===(l=null===(i=n.worksheet)||void 0===i?void 0:i.sheetFormatPr)||void 0===l?void 0:l.defaultRowHeight)||16),r.pt2px(d)}return 0},e.prototype.setRowHeight=function(e,t,o){var i,l=this.getSheetByIndex(e);l&&l.worksheet&&((null===(i=l.worksheet)||void 0===i?void 0:i.rows[t])||(l.worksheet.rows[t]={}),l.worksheet.rows[t].ht=m.px2pt(o))},e.prototype.isRowHidden=function(e,t){var o,i=this.getSheetByIndex(e);if(i){var l=null===(o=i.worksheet)||void 0===o?void 0:o.rows[t];if(null==l?void 0:l.hidden)return!0}return!1},e.prototype.getColHiddenRange=function(e){var t,o,i,r=this.getSheetByIndex(e);if(r){var n=(null===(i=r.worksheet)||void 0===i?void 0:i.cols)||[],a=[];try{for(var d=l.__values(n),u=d.next();!u.done;u=d.next()){var v=u.value;v&&v.hidden&&a.push({min:v.min||0,max:v.max||0})}}catch(e){t={error:e}}finally{try{u&&!u.done&&(o=d.return)&&o.call(d)}finally{if(t)throw t.error}}return a}return[]},e.prototype.isColHidden=function(e,t){var o,i,r,n=this.getSheetByIndex(e);if(n){var a=(null===(r=n.worksheet)||void 0===r?void 0:r.cols)||[];try{for(var d=l.__values(a),u=d.next();!u.done;u=d.next()){var v=u.value;if(v&&v.hidden&&t>=(v.min||0)&&t<=(v.max||0))return!0}}catch(e){o={error:e}}finally{try{u&&!u.done&&(i=d.return)&&i.call(d)}finally{if(o)throw o.error}}}return!1},e.prototype.getColWidth=function(e,t){var o,i,r,a,d,u=this.getSheetByIndex(e);if(u){var v=(null===(r=u.worksheet)||void 0===r?void 0:r.cols)||[];try{for(var s=l.__values(v.entries()),h=s.next();!h.done;h=s.next()){var f=l.__read(h.value,2),c=f[0],y=f[1];if(y){var p=null!==(a=y.min)&&void 0!==a?a:c,g=null!==(d=y.max)&&void 0!==d?d:c;if(t>=p&&t<=g){if(y.hidden)return 0;var w=y.width;if(w){if(0===w)return 0;var k=this.getDefaultFontSize();return n.colWidth2px(w,k.width)}return this.getDefaultWidth(u)}}}}catch(e){o={error:e}}finally{try{h&&!h.done&&(i=s.return)&&i.call(s)}finally{if(o)throw o.error}}return this.getDefaultWidth(u)}return 71.73828125},e.prototype.setColWidth=function(e,t,o){var i,l=this.getSheetByIndex(e);if(l&&l.worksheet){(null===(i=l.worksheet)||void 0===i?void 0:i.cols[t])||(l.worksheet.cols[t]={});var r=this.getDefaultFontSize();l.worksheet.cols[t].width=n.px2colWidth(o,r.width)}},e.prototype.getDefaultWidth=function(e){var t,o,i,l,r=null===(o=null===(t=e.worksheet)||void 0===t?void 0:t.sheetFormatPr)||void 0===o?void 0:o.defaultColWidth;if(!r){var a=this.getDefaultFontSize(),d=(null===(l=null===(i=e.worksheet)||void 0===i?void 0:i.sheetFormatPr)||void 0===l?void 0:l.baseColWidth)||10;return n.baseColWidth2px(d,a.width)}return 8*r},e.prototype.getMaxRow=function(e){var t,o=this.getSheetByIndex(e);return o?((null===(t=o.worksheet)||void 0===t?void 0:t.cellData)||[]).length:0},e.prototype.getTotalHeight=function(e){if(this.sheetTotalHeightCache.has(e))return this.sheetTotalHeightCache.get(e);if(this.getSheetByIndex(e)){for(var t=this.getMaxRow(e),o=0,i=0;i<t;i++)o+=this.getRowHeight(e,i);return this.sheetTotalHeightCache.set(e,o),o}return 0},e.prototype.getMaxCol=function(e){var t,o,i,r=this.getSheetByIndex(e);if(r){var n=(null===(i=r.worksheet)||void 0===i?void 0:i.cellData)||[],a=0,d=0;try{for(var u=l.__values(n),v=u.next();!v.done;v=u.next()){var s=v.value;if(a=Math.max((null==s?void 0:s.length)||0,a),++d>100)break}}catch(e){t={error:e}}finally{try{v&&!v.done&&(o=u.return)&&o.call(u)}finally{if(t)throw t.error}}return a}return 0},e.prototype.getTotalWidth=function(e){if(this.sheetTotalWidthCache.has(e))return this.sheetTotalWidthCache.get(e);if(this.getSheetByIndex(e)){for(var t=this.getMaxCol(e),o=0,i=0;i<t;i++)o+=this.getColWidth(e,i);return this.sheetTotalWidthCache.set(e,o),o}return 0},e.prototype.getSheetByIndex=function(e){return this.workbook.sheets[e]},e.prototype.getSheetByName=function(e){return this.workbook.sheets.find((function(t){return t.name===e}))},e.prototype.getDefaultFont=function(){var e,t,o;return(null===(o=null===(t=null===(e=this.workbook.styleSheet)||void 0===e?void 0:e.fonts)||void 0===t?void 0:t.font)||void 0===o?void 0:o[0])||d.default},e.prototype.getColor=function(e,t){if(void 0===t&&(t="none"),!e)return t;if(e.rgb){var o=e.rgb;return o in p.PresetColorMap?p.PresetColorMap[o]:8===o.length?"#"+o.slice(2):7===o.length&&"#"===o[0]?o:"#"+e.rgb}if(void 0!==e.theme){var i=this.getThemeColor(e.theme);return e.tint?"#"+s.rgbTint(i,e.tint):"#"+i}return e.auto?h.AUTO_COLOR:void 0!==e.indexed&&y.IndexedColors[e.indexed]?"#"+y.IndexedColors[e.indexed]:(console.warn("unknown color",e),"none")},e.prototype.getFontStyle=function(e){var t,o,i,l,r,n,a,d,u,v,s,f,c,y,p=this.defaultFont,g=(null===(t=null==e?void 0:e.name)||void 0===t?void 0:t.val)||(null===(o=p.name)||void 0===o?void 0:o.val)||"Arial",w=(null===(i=null==e?void 0:e.sz)||void 0===i?void 0:i.val)||(null===(l=p.sz)||void 0===l?void 0:l.val)||h.DEFAULT_FONT_SIZE,k=this.getColor(p.color,"#000000");return{family:g,size:w,color:this.getColor(null==e?void 0:e.color,k),b:!(!(null==e?void 0:e.b)&&!p.b),i:!(!(null==e?void 0:e.i)&&!p.i),u:(null===(r=null==e?void 0:e.u)||void 0===r?void 0:r.val)||(null===(n=p.u)||void 0===n?void 0:n.val)||"none",strike:(null===(a=null==e?void 0:e.strike)||void 0===a?void 0:a.val)||(null===(d=p.strike)||void 0===d?void 0:d.val)||!1,outline:(null===(u=null==e?void 0:e.outline)||void 0===u?void 0:u.val)||(null===(v=p.outline)||void 0===v?void 0:v.val)||!1,shadow:(null===(s=null==e?void 0:e.shadow)||void 0===s?void 0:s.val)||(null===(f=p.shadow)||void 0===f?void 0:f.val)||!1,condense:(null===(c=null==e?void 0:e.condense)||void 0===c?void 0:c.val)||(null===(y=p.condense)||void 0===y?void 0:y.val)||!1}},e.prototype.getCellInfo=function(e,t,o){var i,l,r,n,a,d,u,v,s,h,f,c,y,p,g,w,k,x,m,C,S,b,F=this.defaultFont,I=this.getSheetByIndex(e),D="",B="",_="";if(I){var R=this.getCellValueByData((null===(i=I.worksheet)||void 0===i?void 0:i.cellData)||[],t,o),T=null===(r=null===(l=I.worksheet)||void 0===l?void 0:l.cellData[t])||void 0===r?void 0:r[o];if(T)if(D=R.text,_=R.value,B=T,"object"==typeof T&&"s"in T){var W=T.s||0,M=null===(u=null===(d=null===(a=null===(n=this.workbook)||void 0===n?void 0:n.styleSheet)||void 0===a?void 0:a.cellXfs)||void 0===d?void 0:d.xf)||void 0===u?void 0:u[W];if(M){var H=M.fontId||0,z=null===(f=null===(h=null===(s=null===(v=this.workbook)||void 0===v?void 0:v.styleSheet)||void 0===s?void 0:s.fonts)||void 0===h?void 0:h.font)||void 0===f?void 0:f[H];z&&(F=z),R.color&&(F.color={rgb:R.color});var O=M.fillId||0;C=null===(g=null===(p=null===(y=null===(c=this.workbook)||void 0===c?void 0:c.styleSheet)||void 0===y?void 0:y.fills)||void 0===p?void 0:p.fill)||void 0===g?void 0:g[O];var P=M.borderId||0;S=null===(m=null===(x=null===(k=null===(w=this.workbook)||void 0===w?void 0:w.styleSheet)||void 0===k?void 0:k.borders)||void 0===x?void 0:x.border)||void 0===m?void 0:m[P],b=M.alignment}else console.warn("没有找到 cellXfxIndex 为 ".concat(W," 的样式"))}else"string"==typeof T&&(D=T,b={vertical:"center"})}return{row:t,col:o,font:F,value:_,text:D,fill:C,border:S,cellData:B,alignment:b}},e.prototype.getCellValue=function(e,t,o){var i,l=this.getSheetByIndex(e);return l?this.getCellValueByData((null===(i=l.worksheet)||void 0===i?void 0:i.cellData)||[],t,o):{row:t,col:o,color:"",text:"",value:""}},e.prototype.getCellValueByData=function(e,t,o){var i,l,r,n,a,d,u="",v="",s=this.is1904(),h="",f=null===(i=e[t])||void 0===i?void 0:i[o];if(f)if("object"==typeof f&&"s"in f){var c=f.s||0,y=null===(a=null===(n=null===(r=null===(l=this.workbook)||void 0===l?void 0:l.styleSheet)||void 0===r?void 0:r.cellXfs)||void 0===n?void 0:n.xf)||void 0===a?void 0:a[c];if(y){var p=y.numFmtId||0;if(0!==p){var g=this.numfmtInstances[p];if("General"===(null==g?void 0:g.pattern))"string"==typeof f?v=u=f:"object"==typeof f&&"value"in f&&(v=u=f.value);else if(g&&"value"in f){var w=parseFloat(f.value);if(isNaN(w))v=f.value,u=f.value;else{if(g.isDate()){d=!0;var k=w;s&&(k+=1462),u=g(k)}else u=g(w);g.info.color&&(h=g.color(w))}}}else"value"in f&&(v=u=f.value||"")}else console.warn("没有找到 cellXfxIndex 为 ".concat(c," 的样式"))}else"string"==typeof f?v=u=f:"object"==typeof f&&"value"in f&&(v=u=f.value);return{row:t,col:o,color:h,text:u,value:v,isDate:d}},e.prototype.getCellValueByRange=function(e,t,o){var i=[],l=t.endRow;l===h.MAX_ROW&&(l=this.getMaxRow(e));var r=t.endCol;r===h.MAX_ROW&&(r=this.getMaxCol(e));for(var n=t.startRow;n<=l;n++)if(o||!this.isRowHidden(e,n))for(var d=t.startCol;d<=t.endCol;d++)if(o||!this.isColHidden(e,d)){var u=this.getCellValue(e,n,d);a.hasValue(u.text)&&i.push(u)}return i},e.prototype.searchText=function(e,t){var o,i=this,l=[],r=this.getSheetByIndex(e);r&&((null===(o=r.worksheet)||void 0===o?void 0:o.cellData)||[]).forEach((function(o,r){(o||[]).forEach((function(o,n){var a=i.getCellValue(e,r,n);a.text.includes(t)&&l.push(a)}))}));return l},e.prototype.getThemeColor=function(e){return k.getThemeColor(e,this.workbook)},e.prototype.getDefaultFontSize=function(){if(this.defaultFontSize)return this.defaultFontSize;var e=new OffscreenCanvas(256,256).getContext("2d"),t=c.genFontStr(this.defaultFontStyle);e.font=t;var o=f.measureTextWithCache(e,t,"1");return this.defaultFontSize=o,this.defaultFontSize},e.prototype.getDefaultFontStyle=function(){return this.defaultFontStyle},e.prototype.getMergeCells=function(e){var t,o=this.getSheetByIndex(e);return o&&(null===(t=o.worksheet)||void 0===t?void 0:t.mergeCells)||[]},e.prototype.getDrawing=function(e){var t,o=this.getSheetByIndex(e);return o&&(null===(t=o.worksheet)||void 0===t?void 0:t.drawing)||null},e.prototype.getConditionalFormatting=function(e){var t,o=this.getSheetByIndex(e);return o&&(null===(t=o.worksheet)||void 0===t?void 0:t.conditionalFormatting)||[]},e.prototype.getDxf=function(e){var t,o,i;return(null===(i=null===(o=null===(t=this.workbook.styleSheet)||void 0===t?void 0:t.dxfs)||void 0===o?void 0:o.dxf)||void 0===i?void 0:i[e])||null},e.prototype.is1904=function(){var e;return(null===(e=this.workbook.workbookPr)||void 0===e?void 0:e.date1904)||!1},e.prototype.sortColumn=function(e,t,o){var i,l=this.getSheetByIndex(e);if(l){var r=(null===(i=l.worksheet)||void 0===i?void 0:i.cellData)||[];x.sortByRange(r,t,o)}},e}();t.LocalDataProvider=b}));
- ;/*!node_modules/office-viewer/lib/util/base64ToArrayBuffer.js*/
- amis.define("2cbefd6",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.base64ToArrayBuffer=function(e){for(var r=atob(e),t=new Uint8Array(r.length),n=0;n<r.length;n++)t[n]=r.charCodeAt(n);return t.buffer}}));
- ;/*!node_modules/office-viewer/lib/excel/io/csv/emptyXLSX.js*/
- amis.define("6179de2",(function(A,s,B,g){"use strict";Object.defineProperty(s,"__esModule",{value:!0});var b=A("2cbefd6").base64ToArrayBuffer("UEsDBBQABgAIAAAAIQCkU8XPTgEAAAgEAAATAAgCW0NvbnRlbnRfVHlwZXNdLnhtbCCiBAIooAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsk8tOwzAQRfdI/EPkLYrdskAINe2CxxK6KB9g4kli1S953NL+PRP3sUChFWo3sWLP3HM9M57MNtYUa4iovavYmI9YAa72Sru2Yp+Lt/KRFZikU9J4BxXbArLZ9PZmstgGwIKyHVasSyk8CYF1B1Yi9wEcnTQ+WpnoN7YiyHopWxD3o9GDqL1L4FKZeg02nbxAI1cmFa8b2t45iWCQFc+7wJ5VMRmC0bVM5FSsnfpFKfcETpk5Bjsd8I5sMDFI6E/+BuzzPqg0USso5jKmd2nJhtgY8e3j8sv7JT8tMuDSN42uQfl6ZakCHEMEqbADSNbwvHIrtTv4PsHPwSjyMr6ykf5+WfiMj0T9BpG/l1vIMmeAmLYG8Nplz6KnyNSvefQBaXIj/J9+GM0+uwwkBDFpOA7nUJOPRJr6i68L/btSoAbYIr/j6Q8AAAD//wMAUEsDBBQABgAIAAAAIQC1VTAj9AAAAEwCAAALAAgCX3JlbHMvLnJlbHMgogQCKKAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArJJNT8MwDIbvSPyHyPfV3ZAQQkt3QUi7IVR+gEncD7WNoyQb3b8nHBBUGoMDR3+9fvzK2908jerIIfbiNKyLEhQ7I7Z3rYaX+nF1ByomcpZGcazhxBF21fXV9plHSnkodr2PKqu4qKFLyd8jRtPxRLEQzy5XGgkTpRyGFj2ZgVrGTVneYviuAdVCU+2thrC3N6Dqk8+bf9eWpukNP4g5TOzSmRXIc2Jn2a58yGwh9fkaVVNoOWmwYp5yOiJ5X2RswPNEm78T/XwtTpzIUiI0Evgyz0fHJaD1f1q0NPHLnXnENwnDq8jwyYKLH6jeAQAA//8DAFBLAwQUAAYACAAAACEAjYfacOAAAAAtAgAAGgAIAXhsL19yZWxzL3dvcmtib29rLnhtbC5yZWxzIKIEASigAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArJHLasMwEEX3hf6DmH09dgqllMjZlEK2xf0AIY8fxJaEZpLWf1/hgt1ASDbZCK4G3XMkbXc/46BOFLn3TkOR5aDIWV/3rtXwVX08vYJiMa42g3ekYSKGXfn4sP2kwUg6xF0fWKUWxxo6kfCGyLaj0XDmA7k0aXwcjaQYWwzGHkxLuMnzF4z/O6A861T7WkPc18+gqikk8u1u3zS9pXdvjyM5uYBAlmlIF1CViS2Jhr+cJUfAy/jNPfGSnoVW+hxxXotrDsU9Hb59PHBHJKvHssU4TxYZPPvk8hcAAP//AwBQSwMEFAAGAAgAAAAhAKvyIgCYAwAA9wgAAA8AAAB4bC93b3JrYm9vay54bWysVW1vozgQ/n7S/QfEd2qbtySodAUJ6Cq1qyrNtnefVi44xSrgnO28VNX+9x0TSNvN6ZTtbpTY2B4ePzPzzOT8066prQ2Tios2tskZti3WFqLk7WNsf1nkzti2lKZtSWvRsth+Zsr+dPHnH+dbIZ8ehHiyAKBVsV1pvYoQUkXFGqrOxIq1cLIUsqEalvIRqZVktFQVY7qpkYtxiBrKW3uPEMlTMMRyyQs2E8W6Ya3eg0hWUw30VcVXakBrilPgGiqf1iunEM0KIB54zfVzB2pbTRFdPrZC0oca3N6RwNpJ+IbwIxgGd7gJjo6uanghhRJLfQbQaE/6yH+CESHvQrA7jsFpSD6SbMNNDg+sZPhBVuEBK3wFI/iX0QhIq9NKBMH7IFpw4ObaF+dLXrO7vXQtulp9po3JVG1bNVU6K7lmZWyPYCm27N2GXK/SNa/hlGCXEBtdHOR8I62SLem61gsQ8gAf2y52PYyNJQgjqTWTLdVsKloNOuz9+lXNddjTSoDCrTn7d80lg8ICfYGvMNIiog/qhurKWss6ttEXBc6jdsvbEplyhJpFtOHqdXB66a1o8UQfmeql6Gw42zKJlCwQ2xWsRlygQm3QG03T4wL6CVXTwoQKQaz2/uyff4wbuCWjQbk3WlrwfDm7guzd0g3kEhRT9qV+Cckaf33JZyPP99Opk6Rh6niZP3PSUThyQpzkXp5hb5Tk38ALGUaFoGtd9fowmLHtgxiOjq7pbjghOFrz8vX+F9x/HDP/MAxn34ynphPeQVDVq5LM0trdQ3LENrYD7IM3z8OSjEFMlsmc2N7zUlegsLERWL/3F+OPFTAmI9+8BxVjmMX2SzbFSYhx4ARukpsATJwk8VNnEvoTL/Q9knukY4TeUOp6LlDrZqvt6uTW9GECzd3MJrrwLCNzh7wsu5JAw2sFrQuoCzN1hmOomonxmu30ldLdDJLkQI/4OBnhie/gzAscfzxxnbHvuc7Un7lZMMpmWRqY/Jj/jOh3dM6uMqLhz8iwrKjUCwmCh3KYs2VKFShp7xDwfUs2DcYp9oCin5Pc8ckEO2ka+k4wy71gRGbTLOjEtCdr3F9+sG+NUfc2o3oNNW3KuVtHZsz73cPmcr/R5+ld0UXzmYl7//b/Gd6C9zU70Ti/O9Fw+vl6cX2i7VW2+Hqfn2qcXKez5HT7ZD5P/llkfw9XoP8MKDQ3SLgZO5l2TdKUxcV3AAAA//8DAFBLAwQUAAYACAAAACEAXP/u5toCAAD8BgAADQAAAHhsL3N0eWxlcy54bWy0VcuK2zAU3Rf6D0J7jx+J0yTYHprJGAamUJgpdKvYciKqR5CU4LR0102/pKvuh276NWX6Gb2yncRhYGhn6CaRbnTPOfce6SY5rwVHW6oNUzLF4VmAEZWFKplcpvjdbe6NMTKWyJJwJWmKd9Tg8+zli8TYHac3K0otAghpUryydj31fVOsqCDmTK2phF8qpQWxsNVL36w1JaVxSYL7URCMfEGYxC3CVBR/AyKI/rBZe4USa2LZgnFmdw0WRqKYXi2l0mTBQWodDkmB6nCkI1TrPUkTfcAjWKGVUZU9A1xfVRUr6EO5E3/ik+KIBMhPQwpjP4hOaq/1E5GGvqZb5uzDWVIpaQ0q1EbaFEddIEvMR7QlHOyNsJ8lheJKIwsuQZNCF5FE0PbE/fev9z9+ulhFBOO7NtqmrYg24HaLNBi6Q43XXapg0HkX9J2KVsuRevLfeBo6A3yM89PaIZAlcEks1TKHDerWt7s1VC7hPrdym3Mu/ZHTS012YRT3EvyGMEsWSpfwfvZdD6HrbShLOK0sNESz5cp9W7WGz4WyFu5YlpSMLJUk3LVsn9EtoJyCcn7j3tj76gS7rpDciFzYqzLF8Fpds/dLKKFbtnjtJksIZ0spqATzqLascHehgC1t/aorUNDna9mfTYzq6l8VAGev9JPCDwKRu64p/nV39/vbF3iMHQlabBi3TLaUrqmHDMAs62MbA+eidUOiafCBBbpZ0opsuL09/Jji4/oNLdlGRIdTb9lW2QYixcf1tXM7HDkOWttrA08BvtFGsxR/upy9mswv88gbB7OxNxzQ2JvEs7kXDy9m83k+CaLg4nNvVD1jUDWTNUtg3k0Nh3Gmu2K7Em+OsRT3Nq385p6D7L72STQKXsdh4OWDIPSGIzL2xqNB7OVxGM1Hw9llnMc97fETB1rgh2E7Gp34eGqZoJzJvVd7h/pRMAm2jxTh753wj39b2R8AAAD//wMAUEsDBBQABgAIAAAAIQARCadEygcAABgiAAATAAAAeGwvdGhlbWUvdGhlbWUxLnhtbOxazY/cthW/F+j/QOg+HknzvfA4mE9v7N31wjt2kSN3hjOilxIFkrO7gyJA4JyCAAUKJEEuBYpeegiCBmiAGu2h/0td2EjTP6KPlGYk7nBirz/QtNidPUjU7z3++N7j4xOp2x9cxgydEyEpT7pecMv3EEmmfEaTRdd7NBlX2h6SCiczzHhCut6KSO+DO7/8xW28pyISEwTyidzDXS9SKt2rVuUUmrG8xVOSwLM5FzFWcCsW1ZnAF6A3ZtXQ95vVGNPEQwmOQe2D+ZxOCfrns7/98Iev//HJ5/Dv3Vn3MWLQUaKkbpgycaJ7IJagwc7OAo2QKzlgAp1j1vWguxm/mJBL5SGGpYIHXc83f171zu0q3suFmNohW5Ibm79cLheYnYWmT7E43XTqj8J2PdjoNwCmtnGjtv5t9BkAnk5hpBmXss6g0fTbYY4tgbJLh+5OK6jZ+JL+2hbnoNPsh3VLvwFl+uvbYxx3RsOGhTegDN/Ywvf8sN+pWXgDyvDNLXx91GuFIwtvQBGjydk2utlqt5s5egOZc7bvhHeaTb81zOEFCqJhE126izlP1K5Yi/ETLsYA0ECGFU2QWqVkjqcQzL1UcYmGVKYMrzyU4oRLaPbDIIDQq/vh5mcsjvcILklrXsBEbjVpPkhOBU1V17sHWr0S5MWzZ8+ffv/86V+ef/rp86d/Qgd0EalMlSW3j5NFWe7HP/7237/7BP3rz7//8Ysv3XhZxr/89rOXf/37T6mHqVaY4sVX3738/rsXX//mh2++cGjvCXxahk9oTCQ6IhfoIY9hgMYUNn9yKq4nMYkwtSRwBLodqkcqsoBHK8xcuD6xTfhYQJZxAe8un1hcTyKxVNTR8/0otoCHnLM+F04D3Nd9lSw8WSYLd+diWcY9xPjc1fcAJ5aDR8sU0it1qRxExKJ5zHCi8IIkRCH9jJ8R4hjdR5Radj2kU8Elnyv0EUV9TJ0mmdBTK5AKoX0ag19WLoLgass2h49RnzPXqIfk3EbCtMDMQX5CmGXGu3ipcOxSOcExKxv8AKvIRfJkJaZl3Egq8PSCMI5GMyKlS+aBgPGWnH4fQ2Jzuv2QrWIbKRQ9c+k8wJyXkUN+NohwnDo50yQqYz+UZxCiGB1z5YIfcnuG6HvwA052uvsxJZa7X50IHkGCK1MqAkQ/WQqHL+8Sbs/HFZtj4soyPRFb2bUnqDM6+suFFdoHhDB8gWeEoEcfOhj0eWrZvCB9L4Kssk9cgXUP27Gq7xMiCTJ1zXaKPKDSCtkTsuA7+ByuriSeFU5iLHZpPgKvW6F7KmAyOsb5gE3PysAjClUgxIvTKA8k6CgF92iX1uMIW2uXvpfueF0Jy3+vM8dgXj657rwEGXJtGUjsr22bCWZWB0XATDBFB650CyKW+wsRva4asaVTbm5P2sINUBhZ9U5Mk1cVP0dYCH7x36l93lvV41b8NvXOrryyf6XK2YX7H6xthniZHBNYTrYT101pc1PaeP/3pc2uuXxT0NwUNDcFjesV7L0UNEUNA+VNsdVjNn7infs+c8rYiVoxciDN1o+E15rZGBrNnpTZmNzsA6YRXOrxQAcWbiGwkUGCq19RFZ1EOIX9ocDsYi5krnohUcolbBuZZrOtSq7oNptPy/iQz7LtTrO/5GcmlFgV7X4DNp6ydtiqUhm62cobNb81dcN2YbZa1wS07HVIlDqzSdQcJFrrxleQ0Dtn74ZFx8GirdWvXbVlCqC28Qq8dyN4W+96jXrGCHbkoEafaT9lrl57VzvnnXp6lzFZOQJga3Hb0x3Ndefw9OiyUHsNT1skjFOysLJJGF+ZAk9G8DacR2d53/2nAu66vu4ULrXoaVOsZ0NBo9V+H77WSeRKbmBJOVOwBF3AHA9h0nloitOuN4d9Y7iMUwgeqd+9MFvAGcxUiWzGv0lqSYVUQyyjzOIm62T+iakiAjEadz09/k04sMQkkYxcB6buz5VcqCfcz40ceN32MpnPyVSV/V5q0ZbObiHFZ8nC+dSIvzlYS/IluPskml2gU7YUDzGEWKMVaO/OqITjgyBz9YzCedgmkxXxd2VlyrO/dchV5GPM0gjnS0o5m2dws6Bs6Ji7jQ1Kd/mYwaDbJjxd6BX2rZfdV6/V2nLF+tgpFk0rrehl051N398qX2JVrKIWqyx3X825nXWyg0B1LhNvv/aXqBWdWdQ04+08rJN23mpTe4cVQWn1ae6w22aRcFriTZd+kLsatXqFWBeWJvDN+Xn5bJufPoHkMYRTxCXLTrtZAnemtEyPhfHtKZ+t8ksms0ST+VwXpVkqf0jmiM4uu17oqhzzw+O8GmAJoE3NCzNsI+is9mxBvdjlotmE3QhnZeyVetUW3kisj1k3wmZr0UVbXa5P1HWtbnrWDstGbdKwsRRcbVsRjv8FhtI5O8zNci/kmUuVV9pwhZaCdr1f+41efRA2BhW/3RhV6rW6X2k3erVKr9GoBaNG4A/74cdAT0Vx0Mg+gBjDaRBb5Z9BmPatTyHi9YHXrSmPq9x86lA13jefQgSh61OIif7IwQNHAq1wFNTDXjioDIZBs1IPh81Ku1XrVQZhcxj2YNFujnsfe+jcgIP+cDgeN8JKcwC4ut9rVHr92qDSbI/64TgY1Yc+gPPl5xLeYnTOzW0Bl4bXnf8AAAD//wMAUEsDBBQABgAIAAAAIQDJFVyvFgIAAMsDAAAYAAAAeGwvd29ya3NoZWV0cy9zaGVldDEueG1snNNba4MwFADg98H+Q8i7jVrn2lI7tjrZ3sauzzEea2gukqQ3xv77oqXtoC9loKBHz3dyzHF6t5UCrcFYrlWGo0GIESimK64WGf54L4IRRtZRVVGhFWR4Bxbfza6vphttlrYBcMgLyma4ca6dEGJZA5LagW5B+Se1NpI6f2sWxLYGaNUnSUHiMEyJpFzhvTAxlxi6rjmDXLOVBOX2iAFBnV+/bXhrD5pkl3CSmuWqDZiWrSdKLrjb9ShGkk2eF0obWgrf9zZKKENb44/Yn8NDmT5+VklyZrTVtRt4mezXfN7+mIwJZUfpvP+LmCghBta828ATFf9vSdHN0YpP2PCfWHrEus9lJiteZfg7fbzNh1ERB0k+T4I0Tm6Dh5tiHiSPo3CYJsU4zvMfPJtW3O9w1xUyUGf4PsJkNu2H55PDxv65Ro6WbyCAOfAFIoy62Sy1XnYvPvtQ2KWSs9yin80Xg0pqYa7FF69c4wH/D1RQ05Vwr3rzBHzROB9NPfILAAD//wAAAP//sinOSE0tcUksSdS3AwAAAP//AAAA//80zcEKwjAQBNBfCfsBVhHppenFkwehvxDbbRLUnbBZFP/eKuQ2bw4zQ0kQtjxP6laIXRZPB3L2KexJcIa8WGuGUDcOJUS+Bo1Zqnvwap72u56c5phaNpR/eyJ3gxmeTYnDwvrTkbYnWMO2272h95qYbfwCAAD//wMAUEsDBBQABgAIAAAAIQDtiaT2oQEAABoDAAAQAAgBZG9jUHJvcHMvYXBwLnhtbCCiBAEooAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJySwW7bMAyG7wP2DobujZxuKIpAVjGkG3pYsQBJe+dkOhYmS4bEGsmeZZcdBvQNdtrbrMAeY7SNps7a024kf+LnJ4rqYte4rMOYbPCFmM9ykaE3obR+W4ibzYeTc5ElAl+CCx4LscckLvTrV2oVQ4uRLKaMLXwqRE3ULqRMpsYG0oxlz0oVYgPEadzKUFXW4GUwdw16kqd5fiZxR+hLLE/ag6EYHRcd/a9pGUzPl243+5aBtXrXts4aIH6lvrYmhhQqyq7BWE8h1dn7nUGn5LRNMecazV20tNe5ktNUrQ04XPIIXYFLqORTQV0h9OtbgY1Jq44WHRoKMUv2Ky/wVGSfIWEPVogOogVPDNi3jckQuzZR1A8/f/z+9e3P93slWR9rQzhtncb2rZ4PDRwcN/YGIwcLx4QbSw7Tp2oFkV4Ank+BB4YRd8RZ14g0zpzyDS/mSf94L0PTgt+zcIg+Wv8l3bSbcAmEj9s8Lqp1DRFL/oDDtg8FdcWLjK43Wdbgt1g+9jwX+iu4HU9dz89m+Zucv3VSU/LpqPVfAAAA//8DAFBLAwQUAAYACAAAACEAAbRx1j8BAABdAgAAEQAIAWRvY1Byb3BzL2NvcmUueG1sIKIEASigAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjJJRS8MwFIXfBf9DyXubpJ1zhLYDlT05EJwovoXkbis2aUii3f69abvVynzwMfec+91zL8mXB1VHX2Bd1egC0YSgCLRoZKV3BXrZrOIFipznWvK60VCgIzi0LK+vcmGYaCw82caA9RW4KJC0Y8IUaO+9YRg7sQfFXRIcOojbxiruw9PusOHig+8Ap4TMsQLPJfccd8DYjER0QkoxIs2nrXuAFBhqUKC9wzSh+MfrwSr3Z0OvTJyq8kcTdjrFnbKlGMTRfXDVaGzbNmmzPkbIT/Hb+vG5XzWudHcrAajMpWDCAveNLXl6S7JFjiel7nw1d34dLr2tQN4dR9elElh99AEIMgph2BD9rLxm9w+bFSpTks5iksX0dkPmjFJ2k753g3/1d+GGgjqN/z8xZXQ2IZ4BZY4vPkT5DQAA//8DAFBLAQItABQABgAIAAAAIQCkU8XPTgEAAAgEAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAhALVVMCP0AAAATAIAAAsAAAAAAAAAAAAAAAAAhwMAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAhAI2H2nDgAAAALQIAABoAAAAAAAAAAAAAAAAArAYAAHhsL19yZWxzL3dvcmtib29rLnhtbC5yZWxzUEsBAi0AFAAGAAgAAAAhAKvyIgCYAwAA9wgAAA8AAAAAAAAAAAAAAAAAzAgAAHhsL3dvcmtib29rLnhtbFBLAQItABQABgAIAAAAIQBc/+7m2gIAAPwGAAANAAAAAAAAAAAAAAAAAJEMAAB4bC9zdHlsZXMueG1sUEsBAi0AFAAGAAgAAAAhABEJp0TKBwAAGCIAABMAAAAAAAAAAAAAAAAAlg8AAHhsL3RoZW1lL3RoZW1lMS54bWxQSwECLQAUAAYACAAAACEAyRVcrxYCAADLAwAAGAAAAAAAAAAAAAAAAACRFwAAeGwvd29ya3NoZWV0cy9zaGVldDEueG1sUEsBAi0AFAAGAAgAAAAhAO2JpPahAQAAGgMAABAAAAAAAAAAAAAAAAAA3RkAAGRvY1Byb3BzL2FwcC54bWxQSwECLQAUAAYACAAAACEAAbRx1j8BAABdAgAAEQAAAAAAAAAAAAAAAAC0HAAAZG9jUHJvcHMvY29yZS54bWxQSwUGAAAAAAkACQA+AgAAKh8AAAAA");s.emptyXLSX=b}));
- ;/*!node_modules/office-viewer/lib/util/arrayBufferToString.js*/
- amis.define("c267b4e",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0}),r.arrayBufferToString=function(e,r){return void 0===r&&(r="utf-8"),new TextDecoder(r).decode(e)}}));
- ;/*!node_modules/office-viewer/lib/Excel.js*/
- amis.define("2687270",(function(e,t,o,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("68b98b9"),n=e("d09db77"),s=e("e16e8e9"),a=e("1df7f27"),l=e("4d22673"),d=e("6d48afa"),c=e("23acdd3"),u=e("6179de2"),h=e("c267b4e");function p(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(o){if("default"!==o){var r=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(t,o,r.get?r:{enumerable:!0,get:function(){return e[o]}})}})),t.default=e,Object.freeze(t)}var f={data:{},evalVar:function(e,t){return n.get(t,e)},useWorker:!1,height:500,gridLineColor:"#D4D4D4",gridLineWidth:1,dragGridLineColor:"#5D5D5D",frozenLineColor:"#00A92F",gridLineHitRange:4,showRowColHeaders:!0,rowColHeadersColor:"#575757",rowColHeadersBackgroundColor:"#F5F5F5",rowColHeadersLineColor:"#E3E2E2",hiddenRowColHeadersColor:"#575757",hiddenRowColHeadersLineColor:"#217346",hiddenRowColHeadersLineSize:3,selectionBorderColor:"#005500",selectionSquareSize:4,selectionBackgroundColor:"#00B683",selectionBackgroundOpacity:.2,indentSize:15.845,backgroundColor:"#F5F5F5",cellBackgroundColor:"#FFFFFF",showFormulaBar:!0,showSheetTabBar:!0,locale:"zh-CN",embed:!0,editable:!1,fontURL:{}},w=function(){function t(e,o,r,i){void 0===i&&(i=new s.default),this.loaded=!1,this.id=t.globalId++,this.parser=i,this.docFile=e,this.fileName=o,this.updateOptions(r||{})}return t.prototype.updateOptions=function(e){this.renderOptions=i.__assign(i.__assign({},f),e)},t.prototype.loadExcel=function(){return i.__awaiter(this,void 0,void 0,(function(){var e,t;return i.__generator(this,(function(o){switch(o.label){case 0:return this.loaded?[2]:(this.parser.load(this.docFile),e=performance.now(),t=this,[4,a.parseExcel(this.parser)]);case 1:return t.excelFile=o.sent(),this.renderOptions.debug&&(console.log("parse time",performance.now()-e,"ms"),console.log("excelFile",this.excelFile)),this.loaded=!0,[2]}}))}))},t.prototype.loadCSV=function(t){return i.__awaiter(this,void 0,void 0,(function(){var o,r,n;return i.__generator(this,(function(i){switch(i.label){case 0:return this.loaded?[2]:(this.parser.load(u.emptyXLSX),o=this,[4,a.parseExcel(this.parser)]);case 1:return o.excelFile=i.sent(),[4,Promise.resolve().then((function(){return p(e("7c67829"))}))];case 2:return r=i.sent(),n=r.parse(h.arrayBufferToString(this.docFile),{delimiter:"csv"===t?",":"\t"}),this.excelFile.workbook.sheets[0].worksheet.cellData=n.data,this.fileName&&(this.excelFile.workbook.sheets[0].name=this.fileName.split("/").pop()),this.loaded=!0,[2]}}))}))},t.prototype.render=function(e,t){return void 0===t&&(t={}),i.__awaiter(this,void 0,void 0,(function(){var o,r,n,s;return i.__generator(this,(function(a){switch(a.label){case 0:return this.rootElement=e,e.innerHTML="",o=i.__assign(i.__assign({},this.renderOptions),t),e.style.position="relative",0===(r=e.getBoundingClientRect().height)&&(r=o.height,e.style.height=r+"px"),this.excelFile?(n=this.excelFile.workbook,[4,(s=new l.Workbook(e,n,new d.LocalDataProvider(n,o),o)).render()]):(console.warn("excel file not loaded"),[2]);case 1:return a.sent(),this.workbook=s,[2]}}))}))},t.prototype.download=function(e){return i.__awaiter(this,void 0,void 0,(function(){return i.__generator(this,(function(e){throw new Error("must implement this method")}))}))},t.prototype.print=function(){return i.__awaiter(this,void 0,void 0,(function(){var e;return i.__generator(this,(function(t){return this.workbook?((e=document.createElement("iframe")).style.position="absolute",e.style.top="-10000px",document.body.appendChild(e),e.contentDocument?(this.workbook.renderInIframe(e),setTimeout((function(){e.focus(),c.printIframe(e)}),this.renderOptions.printWaitTime||100),window.focus(),[2]):(console.warn("printDocument is null"),[2])):[2]}))}))},t.prototype.getWorkbook=function(){return this.workbook},t.prototype.updateVariable=function(){},t.globalId=0,t}();t.default=w}));
- ;/*!node_modules/office-viewer/lib/UnSupport.js*/
- amis.define("3badc39",(function(e,t,r,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=e("68b98b9"),i=function(){function e(e){this.errorMessage=e}return e.prototype.updateOptions=function(e){throw new Error("Method not implemented.")},e.prototype.updateVariable=function(){throw new Error("Method not implemented.")},e.prototype.render=function(e,t){return n.__awaiter(this,void 0,void 0,(function(){return n.__generator(this,(function(t){return e.innerHTML=this.errorMessage,[2]}))}))},e.prototype.download=function(e){throw new Error("Method not implemented.")},e.prototype.print=function(){throw new Error("Method not implemented.")},e}();t.default=i}));
- ;/*!node_modules/office-viewer/lib/createOfficeViewer.js*/
- amis.define("d9224c3",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var i=e("68b98b9"),l=e("2687270"),o=e("3badc39"),a=e("969117c"),f=e("1ef446b"),d=e("e16e8e9"),u=e("eebe99d");t.createOfficeViewer=function(e,t,n,r){return void 0===r&&(r=new d.default),i.__awaiter(this,void 0,void 0,(function(){var d,s,c,p,v,w,y,x,b,h,_;return i.__generator(this,(function(m){switch(m.label){case 0:return n?"csv"!==(d=n.split(".").pop())&&"tsv"!==d?[3,2]:[4,(b=new l.default(e,n,t,r)).loadCSV(d)]:[3,2];case 1:return m.sent(),[2,b];case 2:if(null===(s=u.fileTypeFromArrayBuffer(e))||"zip"!==s.ext)return"cfb"===(null==s?void 0:s.ext)?[2,new o.default("不支持加密文件")]:[2,new o.default("不支持的文件类型: "+(null==s?void 0:s.ext))];try{r.load(e)}catch(e){return[2,new o.default("文件解析失败")]}if(c=!1,p=!1,r.fileExists("[Content_Types].xml")){v=f.parseContentType(r.getXML("[Content_Types].xml"));try{for(w=i.__values(v.overrides),y=w.next();!y.done;y=w.next()){if(-1!=(x=y.value).contentType.indexOf("wordprocessingml")){c=!0;break}if(-1!==x.contentType.indexOf("spreadsheetml")){p=!0;break}}}catch(e){h={error:e}}finally{try{y&&!y.done&&(_=w.return)&&_.call(w)}finally{if(h)throw h.error}}}else(null==n?void 0:n.endsWith(".xlsx"))?p=!0:(null==n?void 0:n.endsWith(".docx"))&&(c=!0);if(c)return[2,new a.default(e,t,r)];if(p)return[2,b=new l.default(e,n,t,r)];throw new Error("not support file type")}}))}))}}));
- ;/*!node_modules/office-viewer/lib/index.js*/
- amis.define("a2219d5",(function(e,d,f,t){"use strict";Object.defineProperty(d,"__esModule",{value:!0});var a=e("969117c"),c=e("2687270"),r=e("d9224c3"),i={Word:a.default};d.Word=a.default,d.Excel=c.default,d.createOfficeViewer=r.createOfficeViewer,d.default=i}));
|