From: dpvc v. a. <we...@ma...> - 2009-01-01 03:43:18
|
Log Message: ----------- Bring to version 3.6b. Changes include: * Fixed an error in the Unicode fallback tables for the PC (the "floor" and "ceil" characters were reversed). * Fixed a problem with MSIE where a relative URL used to obtain jsMath from a server that requires a port number was not handled properly by jsMath. * Fixed a bug in which alignments could be clipped on the right in MSIE under certain font-scaling conditions. * Added an eqnarray* environment for consistency with other starred environments, and made the eqn-number extension honor the star. * Updated the bbox extension to avoid a problem with box widths not being properly computed when \bbox commands are nested. Also the old version was inefficient about typesetting the contents of the box (it was performed twice, so nested boxes caused the processing to go up exponentially). Finally, boxed elements now have superscripts and subscripts applied to the box, rather than the contents of the box. * Fixed a problem with how jsMath measures the heights of characters (by removing an old hack that no longer appears to be necessary). This improves spacing in \overline and other situations that are height-sensitive. * Fixed a bug introduced in v3.6a (by a typo) that would prevent processing of mathematics within an \hbox. * In v3.6, the method for handling the position:fixed bug in MSIE caused type-in areas in forms to be difficult to select (due to another bug in MSIE), so the solution had to be scaled back a bit. It now allows you to override the horizontal position of the jsMath button and message box, but you can't position it relative to the top of the window in MSIE. Repositioning works fine in all other browsers. I'll keep working to see if I can get around this. * Properly detect the Google Chrome browser. * Fixed \angle to not use unicode but rather construct it from the fonts similar to how TeX does. * Fixed bug where \char did not properly respect the current style (e.g., in scripts) * Added a new macros field to the easy/load.js file that lets you define custom macros automatically. (This is easier than having to make your own local.js file.) * Fixed a bug with \operatorname in the AMSmath package that incorrectly handled the unstarred version of the operator in displayed math mode. Modified Files: -------------- webwork-modperl/htdocs/jsMath: jsMath-easy-load.js jsMath-fallback-pc.js jsMath.js webwork-modperl/htdocs/jsMath/easy: load.js webwork-modperl/htdocs/jsMath/extensions: AMSmath.js bbox.js eqn-number.js webwork-modperl/htdocs/jsMath/plugins: autoload.js noImageFonts.js webwork-modperl/htdocs/jsMath/uncompressed: jsMath-fallback-pc.js jsMath.js Revision Data ------------- Index: noImageFonts.js =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/htdocs/jsMath/plugins/noImageFonts.js,v retrieving revision 1.7 retrieving revision 1.8 diff -Lhtdocs/jsMath/plugins/noImageFonts.js -Lhtdocs/jsMath/plugins/noImageFonts.js -u -r1.7 -r1.8 --- htdocs/jsMath/plugins/noImageFonts.js +++ htdocs/jsMath/plugins/noImageFonts.js @@ -24,12 +24,4 @@ */ if (!window.jsMath) {window.jsMath = {}} -jsMath.noImgFonts = 1; - -if (!jsMath.Font) {jsMath.Font = {}} -if (!jsMath.Font.extra_message) { - jsMath.Font.extra_message = - 'Extra TeX fonts not found: <b><span id="jsMath_ExtraFonts"></span></b><br/>' - + 'Using unicode fonts instead. This may be slow and might not print well.<br/>\n' - + 'Use the jsMath control panel to get additional information.'; -} \ No newline at end of file +window.jsMath.noImgFonts = 1; Index: autoload.js =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/htdocs/jsMath/plugins/autoload.js,v retrieving revision 1.12 retrieving revision 1.13 diff -Lhtdocs/jsMath/plugins/autoload.js -Lhtdocs/jsMath/plugins/autoload.js -u -r1.12 -r1.13 --- htdocs/jsMath/plugins/autoload.js +++ htdocs/jsMath/plugins/autoload.js @@ -405,6 +405,16 @@ if (typeof(files) != 'object') {files = [files]} for (var i = 0; i < files.length; i++) {jsMath.Setup.Script(files[i])} } + var macros = jsMath.Autoload.macros; + if (macros) { + for (var id in macros) { + if (typeof(macros[id]) == 'string') { + jsMath.Macro(id,macros[id]); + } else { + jsMath.Macro(id,macros[id][0],macros[id][1]); + } + } + } jsMath.Synchronize(function () {jsMath.Autoload.Script.RunStack()}); jsMath.Autoload.setMessage(); }, Index: bbox.js =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/htdocs/jsMath/extensions/bbox.js,v retrieving revision 1.4 retrieving revision 1.5 diff -Lhtdocs/jsMath/extensions/bbox.js -Lhtdocs/jsMath/extensions/bbox.js -u -r1.4 -r1.5 --- htdocs/jsMath/extensions/bbox.js +++ htdocs/jsMath/extensions/bbox.js @@ -63,38 +63,26 @@ * Creates the box HTML */ bbox: function (style,size,mitem,prev,mlist) { - var box = jsMath.Box.Set(mitem.nuc2,style,size,1).Remeasured(); - delete mitem.nuc2; - /* - * If the box has super- or subscripts, move them - * to the contained item if is in a big operator - * (does anything else need this?) - */ - if (mitem.sup || mitem.sub) { - if (mitem.nuc.type == 'mlist' && mitem.nuc.mlist.Length() == 1) { - var atom = mitem.nuc.mlist.Last(); - if (atom.atom && atom.type == 'op' && !atom.sup && !atom.sub) { - if (mitem.sup) {atom.sup = mitem.sup; delete mitem.sup} - if (mitem.sub) {atom.sub = mitem.sub; delete mitem.sub} - } - } - } - jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); + var box; var w; var h; var d; + var nuc = mitem.nuc = jsMath.Box.Set(mitem.nuc,style,size).Remeasured(); + if (box == null) {w = nuc.w; h = nuc.h; d = nuc.d} // values before super/subs-cript var nuc = mitem.nuc; nuc.Styled(); var pad = mitem.pad; - if (pad) {box.w += 2*pad; box.h += pad; box.d += pad; nuc.w += pad} + if (pad) {w += 2*pad; h += pad; d += pad; nuc.w += pad} if (jsMath.Browser.msieCenterBugFix) {nuc.html = '<span style="position:relative">'+nuc.html+'</span>'} nuc.html = - jsMath.HTML.BBox(box.w,box.h,box.d,mitem.color,mitem.style) + - jsMath.HTML.Spacer(pad-box.w) + + jsMath.HTML.BBox(w,h,d,mitem.color,mitem.style) + + jsMath.HTML.Spacer(pad-w) + nuc.html; - if (pad && nuc.w < box.w) { - nuc.html += jsMath.HTML.Spacer(box.w-nuc.w); - nuc.w = box.w; + nuc.Remeasured(); + if (pad && nuc.w < w) { + nuc.html += jsMath.HTML.Spacer(w-nuc.w); + nuc.w = w; } - nuc.h = Math.max(nuc.h,box.h); nuc.d = Math.max(nuc.d,box.d); - nuc.bh = Math.max(nuc.bh,box.h); nuc.bd = Math.max(nuc.bd,box.d); + nuc.h = Math.max(nuc.h,h); nuc.d = Math.max(nuc.d,d); + nuc.bh = Math.max(nuc.bh,nuc.h); nuc.bd = Math.max(nuc.bd,nuc.d); mitem.type = 'ord'; + jsMath.mList.prototype.Atomize.SupSub(style,size,mitem); } }); @@ -109,7 +97,6 @@ var extra = this.GetBrackets(this.cmd+name); if (this.error) return; var arg = this.GetArgument(this.cmd+name); if (this.error) return; var nuc = this.Process(arg); if (this.error) return; - var nuc2 = this.Process(arg); // need a second copy since Box.Set changes the list var color; var pad = 0; var style = ''; if (extra != '') { var parts = extra.split(/,/); @@ -120,9 +107,7 @@ else {color = parts[i]} } } - this.mlist.Add(new jsMath.mItem('bbox',{ - nuc: nuc, nuc2: nuc2, atom: 1, pad: pad, color: color, style: style - })); + var atom = {nuc: nuc, atom: 1, pad: pad, color: color, style: style}; + this.mlist.Add(new jsMath.mItem('bbox',atom)); } - }); Index: AMSmath.js =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/htdocs/jsMath/extensions/AMSmath.js,v retrieving revision 1.2 retrieving revision 1.3 diff -Lhtdocs/jsMath/extensions/AMSmath.js -Lhtdocs/jsMath/extensions/AMSmath.js -u -r1.2 -r1.3 --- htdocs/jsMath/extensions/AMSmath.js +++ htdocs/jsMath/extensions/AMSmath.js @@ -125,7 +125,7 @@ }, HandleOperatorName: function (name) { - var limits = ""; + var limits = "\\nolimits"; var op = this.trimSpaces(this.GetArgument(this.cmd+name)); if (this.error) return; if (op == "*") { limits = "\\limits"; Index: eqn-number.js =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/htdocs/jsMath/extensions/eqn-number.js,v retrieving revision 1.3 retrieving revision 1.4 diff -Lhtdocs/jsMath/extensions/eqn-number.js -Lhtdocs/jsMath/extensions/eqn-number.js -u -r1.3 -r1.4 --- htdocs/jsMath/extensions/eqn-number.js +++ htdocs/jsMath/extensions/eqn-number.js @@ -158,6 +158,7 @@ environments: { 'equation*': 'Star', + 'eqnarray*': 'Star', 'align*': 'Star', 'multline*': 'Star', 'gather*': 'Star', Index: jsMath-easy-load.js =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/htdocs/jsMath/jsMath-easy-load.js,v retrieving revision 1.5 retrieving revision 1.6 diff -Lhtdocs/jsMath/jsMath-easy-load.js -Lhtdocs/jsMath/jsMath-easy-load.js -u -r1.5 -r1.6 --- htdocs/jsMath/jsMath-easy-load.js +++ htdocs/jsMath/jsMath-easy-load.js @@ -93,6 +93,7 @@ jsMath.Autoload.findCustomSettings = jsMath.Easy.findCustomSettings; jsMath.Autoload.loadFiles = jsMath.Easy.loadFiles; jsMath.Autoload.loadFonts = jsMath.Easy.loadFonts; + jsMath.Autoload.macros = jsMath.Easy.macros; jsMath.Autoload.delayCheck = 1; jsMath.Easy.autoloadCheck = 1; document.write('<script src="'+jsMath.Autoload.root+'plugins/autoload.js"></script>'); @@ -110,12 +111,26 @@ if (!jsMath.Setup) {jsMath.Setup = {}} if (!jsMath.Setup.UserEvent) {jsMath.Setup.UserEvent = {}} jsMath.Setup.UserEvent.onload = function () { - if (jsMath.Easy.tex2math) jsMath.Setup.Script("plugins/tex2math.js"); + var easy = jsMath.Easy; + if (easy.tex2math) jsMath.Setup.Script("plugins/tex2math.js"); var i; - for (i = 0; i < jsMath.Easy.loadFiles.length; i++) - jsMath.Setup.Script(jsMath.Easy.loadFiles[i]); - for (i = 0; i < jsMath.Easy.loadFonts.length; i++) - jsMath.Font.Load(jsMath.Easy.loadFonts[i]); + if (easy.loadFiles) { + for (i = 0; i < easy.loadFiles.length; i++) + jsMath.Setup.Script(easy.loadFiles[i]); + } + if (easy.loadFonts) { + for (i = 0; i < easy.loadFonts.length; i++) + jsMath.Font.Load(easy.loadFonts[i]); + } + if (easy.macros) { + for (i in easy.macros) { + if (typeof(easy.macros[i]) == 'string') { + jsMath.Macro(i,easy.macros[i]); + } else { + jsMath.Macro(i,easy.macros[i][0],easy.macros[i][1]); + } + } + } } document.write('<script src="'+jsMath.Easy.root+'/jsMath.js"></script>'+"\n"); } Index: jsMath.js =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/htdocs/jsMath/jsMath.js,v retrieving revision 1.43 retrieving revision 1.44 diff -Lhtdocs/jsMath/jsMath.js -Lhtdocs/jsMath/jsMath.js -u -r1.43 -r1.44 --- htdocs/jsMath/jsMath.js +++ htdocs/jsMath/jsMath.js @@ -40,11 +40,11 @@ //start = new Date().getTime(); jsMath.Script.Uncompress([ - ['if(!','window','.jsMath','||!',1,'.','jsMath.','loaded','){var ','jsMath_old','=',1,2,';',0,'document.','getElementById','||!',15,'childNodes||!',15,'createElement','){','alert("','The',' mathematics ','on this page requires W3C DOM support in its JavaScript. Unfortunately, your ','browser',' doesn\'t seem to have this.")}else{',1,2,'={version:"3.6a",document:document,',1,':',1,',','platform',':(','navigator.',36,'.match(/','Mac/)?"mac":',38,36,40,'Win/)?"pc":"unix"),','sizes',':[50,60,70,85,100,120,144,173,207,249],styles:{".math','":{"font-family":"serif","font-style":"normal","font-weight":"normal','"},".typeset',48,'","line-height":"normal','","text-indent":"0px','"},".typeset .','normal',48,'"},"div','.typeset','":{"text-align":"','center",margin:"1em 0px"},"span',57,58,'left',49,' span',58,'left",border',':"0px",margin:"0px','",padding',':"0px"},"a .typeset img, .typeset a img','":{border:"0px','","border-bottom":"','1px solid',' blue;"},".typeset .size0','":{"fon! t-size":"','50','%"},".typeset .','size1',74,'60',76,'size2',74,'70',76,'size3',74,'85',76,'size4',74,'100',76,'size5',74,'120',76,'size6',74,'144',76,'size7',74,'173',76,'size8',74,'207',76,'size9',74,'249',76,'cmr10','":{"font-family":"jsMath-',113,', serif',53,'cmbx10',114,118,', ','jsMath-cmr10',53,'cmti10',114,124,', ',122,53,'cmmi10',114,130,53,'cmsy10',114,134,53,'cmex10',114,138,53,'textit','":{"font-family":"','serif","','font-style":"italic',53,'textbf',143,'serif","font-weight":"bold',53,'link":{"','text-decoration":"none',53,'error',74,'90%","',145,'","background-color','":"#FFFFCC',68,':"1px','",border:"',72,' #CC0000',53,'blank','":{display:"','inline-block','",overflow:"','hidden',162,'0px none",width:"0px",height:"0px',53,'spacer',167,168,'"},"#','jsMath_hiddenSpan":{','visibility:"hidden",position:"absolute",','top:"0px",left:"0px',51,52,177,'jsMath_message','":{position:"fixed",bottom:"','1px",left:"2px',158,'":"#E6E6E6','",border:"solid 1px #959595",margi! n:"0px",padding:"','1px 8px','","z-index":"','102','",color:"b! lack","f ont-size":"','small",width:"auto','"},"#jsMath_panel',185,'1.75em",right:"1.5em',68,':".8em 1.6em',158,'":"#DDDDDD',162,'outset 2px',191,'103",','width:"auto',193,'10pt","font-style":"',54,195,' .disabled":{color:"#888888',195,' .infoLink',74,'85%"},"#jsMath_panel *":{"','font-size":"inherit","font-style":"inherit","font-family":"inherit',51,195,' div":{"','background-color":"inherit",color:"inherit"},"#jsMath_panel ','span":{"',220,'td',70,68,67,'","',220,'tr',70,68,67,'","',220,'table',70,68,67,158,'":"inherit",color:"inherit",height:"auto",',206,177,'jsMath_button',185,'1px",right:"2px',158,'":"white',189,'0px 3px 1px 3px',191,'102",color:"black","',152,'","font-size":"x-',194,'",cursor:"hand"},"#',243,' *":{padding:"0px",border',67,51,'","',216,177,'jsMath_global":{"',145,177,'jsMath_noFont',' .message":{"text-align":"center",padding:".8em 1.6em",border:"3px solid #DD0000","background-color":"#FFF8F8",color:"#AA0000","font-size":"',194,177,'jsMath_noFont .link":{padding:! "0px 5px 2px 5px',162,'2px outset',158,'":"#E8E8E8',193,'80%",',206,255,'jsMath_PrintWarning',267,'x-',194,'"},"@media print":{"#',243,167,'none',177,'jsMath_Warning',167,'none"}},"@media screen":{"#',279,167,'none"}}},Element',':function(','A','){return ',6,15,16,'("jsMath_"+A)},','BBoxFor',294,'A','){this.','hidden.innerHTML','=\'<nobr><','span class="','typeset"><',307,'scale">\'+A+"</span></span></nobr>";var B={w:this.',170,'.offsetWidth',',h:this.',170,'.offsetHeight','};this.',305,'="";return B},EmBoxFor',294,'B){var A=',6,'Global.cache.R;if(!A[this.em]){A[this.em]={}}if(!A[this.em][B]){var C=this.BBoxFor(B);','A[this.em][B]={w:C.w/this.em,h:C.h/this.em}}return A[this.em][B]},','EmBoxForItalics',294,320,6,322,'if(B.match(/<i>|class=\\"(icm|italic|igreek|iaccent)/i)){C.w=C.Mw=','this.BBoxFor','(B+',6,'Browser.','italicString',').w-',6,333,'italicCorrection','}',323,'Init',':function(){','if(',6,'Setup.inited','!=1){',0,6,345,'){',6,'Setup.','Body()}if(',6,345,'!=1){if(! ',6,345,'==-100','){return }',23,'It looks like jsMath failed ! to set u p properly (error code "+',6,345,'+"). I will try to keep going, but it could get ugly.");',6,345,'=1}}this.em=this.CurrentEm();','var A=',6,'Global.cache','.B;',0,'A[this.em]){A[this.em]={};','A[this.em].','bb=',330,'("x");var C=',375,'bb.h;',375,'d=',330,'("x"+',6,'HTML.Rule(1,','C/',6,'em)).h-C;if(',6,333,334,'){',375,'ic=',6,301,'(',6,333,334,').w}}',6,333,338,'=',375,'ic;var F=',375,'bb;var D=F.h;var E=',375,'d;this.h=(D-E)/this.em;this.d=E/this.em;this.hd=this.h+','this.d;this.',352,'TeXfonts','();var B=this.EmBoxFor(\'<',307,113,'">M</span>\').w/2;this.TeX.M_height=B*(26/14);this.TeX.h=this.h;this.TeX.d=',413,'TeX.hd=this.hd;this.Img.Scale();',0,'this.initialized',304,352,'Sizes','();this.','Img.UpdateFonts()}this.p_height=(','this.TeX.cmex10[0].','h+',429,'d)/0.85;',423,'=1},ReInit',342,'if(this.','em!=this.CurrentEm()){this.Init()}},CurrentEm',342,369,330,'(\'<span style="\'+',6,333,'block+\';','width:13em;height:1em','"></span>\').','w/13;if(A>0',296,'A}return ',3! 30,'(\'<img src="\'+',6,166,'+\'" style="',445,'"/>\').w/13},Loaded',342,'if(',9,8,'B=["Process","ProcessBeforeShowing","ConvertTeX","ConvertTeX2","ConvertLaTeX","ConvertCustom","CustomSearch","Synchronize","Macro","document"];','for(var A=0;A<','B','.length;A++){','if(',9,'[B[A]]){','delete ',9,'[B[A]]}}}if(',9,304,'Insert(jsMath,',9,')}',9,'=null;',6,7,'=1},Add',294,'C,A){for(var B in A){','C[B]=A[B]}},Insert',294,482,'if(C[B]&&typeof (A[B])=="object"&&(','typeof (C[B])=="','object"||',487,'function")){this.Insert(C[B],A[B])}else{C[B]=A[B]}}},Package',294,'B,A',304,'Insert(B.prototype,A)}};',6,'Global={isLocal:1,cache:{','T:{},D:{},R:{},B',':{}},ClearCache',342,6,371,'={',497,':{}}},GoGlobal',294,320,'String(',6,1,'.','location);var C','=(',6,'isCHMmode','?"#":"?");if(B){A=A.replace(/\\?.*/,"")+"?"+B}',6,'Controls.','Reload(',6,'root+"jsMath-','global.html"+C+escape(A))},Init',342,'if(',6,'Controls.cookie.','global=="always"&&!',6,'noGoGlobal','){if(',38,'accentColorName'! ,360,0,6,1,'){',6,1,'=',1,'}',6,517,7,'=1;',6,517,'defaults.hi! ddenGlob al=null;this.GoGlobal(',6,517,'SetCookie(2))}},Register',342,369,6,1,'.parent;',0,6,'isCHMode){',6,514,'=(',6,1,'.','location.','protocol=="mk:")}try{',0,6,514,304,'Domain()}if(A',2,'&&A.',6,'isGlobal){A.',6,'Register(',6,1,')}}catch(B){',6,528,'=1}},Domain',342,'if(',38,'appName=="Microsoft Internet Explorer"&&',6,36,'=="mac"&&',38,'userProfile','!=null',360,'if(',1,'==parent',360,'var B=',6,15,'domain',';try{while(true){try{if(parent.',15,'title',594,'){return }}','catch(A){}',0,15,603,'.match(/\\..*\\./)){break}',6,15,603,'=',6,15,603,'.replace(/^[^.]*\\./,"")}}',609,6,15,603,'=B}};',6,'Script={request:null,Init',342,'if(!(',6,525,'asynch&&',6,525,'progress',')){if(',1,'.XMLHttpRequest','){try{','this.request','=new XMLHttpRequest}catch(C){}if(',641,'&&',6,'root.match','(/^file:\\/\\//)){try{',641,'.open("GET",',6,'root+"',6,'js",false);',641,'.send(null)}catch(','C){',641,'=null;if(',1,'.postMessage&&',1,'.addEventListener',304,'mustPost','=1;',6,1,662,'("message",',6,'P! ost.','Listener,false)}}}}',0,641,'&&',1,'.ActiveXObject&&!this.',664,8,'A=["MSXML2.XMLHTTP.5','.0","MSXML2.XMLHTTP','.4',681,'.3',681,'","Microsoft.XMLHTTP"];','for(var B=0;B<','A.length&&!',641,';B++){try{',641,'=new ActiveXObject(A[B])}catch(C){}}}}',0,641,'||',6,352,'domainChanged',304,'Load=this.delayedLoad;this.needsBody=1}},Load',294,'B,A){','if(A){',6,'Message.Set("Loading "+','B);',6,'Script.','Delay(1);',6,'Script.Push(','this,"xmlRequest",B',');',6,711,6,'Message',',"Clear")}else{',6,711,712,')}},xmlRequest',294,'url){','this.blocking','=1;try{',641,649,'url,false);',641,655,'err){',725,'=0;if(',6,'Translate.','restart&&',6,'Translate.asynchronous){return""}throw"jsMath can\'t load the file \'"+url+"\'\\','nMessage: "+err.message}if(',641,'.status',594,'&&(',641,742,'>=400||',641,742,'<0)){',725,'=0;if(',6,736,'restart&&',6,739,'nError status: "+',641,742,'}',0,'url','.match(/\\.js$/)){','return(',641,'.responseText',')}var tmpQueue','=this.queue;this.queue','=[]! ;',6,1,'.eval(',641,767,');',725,'=0;','this.queue=this.queue.! concat(' ,'tmpQueue);this.Process();return""},cancelTimeout:30*1000,blocking:0,cancelTimer:null,needsBody:0,queue:[],Synchronize',294,'A,B){','if(typeof (','A)!="string"){',6,711,'null,A,B',')}else{',6,711,6,1,',"eval",A)}},Push',294,'A,C,B',304,'queue[','this.queue.length',']=[A,C,B];if(!(',725,'||(this.needsBody&&!',6,15,'body))){this.Process()}},Process',342,'while(',798,'&&!',725,8,'C=this.queue[0];this.queue=this.queue.slice(1);',369,'this.SaveQueue();var B=C[0];var E=C[1];var D=C[2];if(B){B[E](D',788,'if(E){E(D)}}this.','RestoreQueue','(A)}},SaveQueue',342,'var A',769,'=[];return A},',816,294,'A){',779,'A)},delayedLoad',294,'A',304,'Push(','this,"','startLoad','",A)},',832,294,'A',8,'B=',6,15,21,'("iframe");','B.style.','visibility="','hidden";',843,'position="absolute";',843,'width="0px";B','.style.height="','0px";if(',6,15,'body.firstChild','){',6,15,'body.insertBefore(B,',6,15,854,788,6,15,'body','.appendChild(','B)}',725,'=1;this.','url=A;if(A','.substr(0,',6,'root.length',! ')==',6,'root){A=A.substr(',6,873,')}',6,705,'A);this.cancelTimer=setTimeout("',6,708,'cancelLoad','()",this.cancelTimeout);',436,664,'){B.src=',6,671,832,'(A,B',788,'if(A',764,'B.src=',6,520,'loader.html"}else{B.src=this.url}}},','endLoad',294,'A){if(this.cancelTimer){clearTimeout(this.cancelTimer);this.cancelTimer=null}',6,671,901,'();',6,717,'.Clear();if(A!="cancel"){',725,'=0;this.Process','()}},Start',342,'this.tmpQueue',769,'=[]},End',342,779,915,');',468,915,'},',885,294,'B,',903,'if(B==null){B','="Can\'t load file"}if(A==null){A=2000}',6,717,'.Set(B);setTimeout(\'',6,708,901,'("cancel")\',A)},Delay',294,'A){',725,'=1;setTimeout("',6,708,'endDelay','()",A)},',944,342,725,912,'()},','imageCount',':0,WaitForImage',294,'B){',725,869,951,'++;',436,'img==null',304,'img=[]}',369,'new Image',427,'img[this.img.length]=A;A.onload=function(){if(--',6,708,951,'==0){',6,708,944,'()}};A.onerror=A.onload;A.onabort=A.onload;A.src=B},Uncompress',294,'data){for(var k=0;k<data.length;! k++){var d=data[k];var n=d.length;for(var i=0;i<n;i++){',783,'! d[i])==" number"){d[i]=d[d[i]]}}data[k]=d.join("")}',1,773,'data.join(""))}};',6,'Post={',1,':null,Listener',294,'D){if(D.source!=',6,671,1,360,'var E=D.origin','.replace(/^file:\\/\\//,"");',369,15,603,993,'if(E==null||E==""){E','="localhost"}if(','A==null||A==""){A',999,'E!=A||!','D.data.substr(','0,6).match(/jsM(CP|LD):/)){return }var B=',1003,'6,3).replace(/ /g,"");var C=',1003,'10);if(',6,'Post.Commands[B',']){(',6,1010,'])(C)}},Commands:{SCR',294,'message){',6,1,773,'message)},ERR',294,'A){',6,708,885,'(A,3000)},BGN',294,'A){',6,708,'Start()},END',294,'A){',703,6,708,'End()}',6,708,901,'()}},',832,294,'A,B',304,1,'=B.contentWindow;',0,'A',764,'return ',6,'root+',449,6,520,'loader-post.html?"+A},',901,342,'this.',1,'=null}};',6,717,'={',166,':null,message:null,text:null,clear:null,Init',342,0,6,15,'body||!',6,525,636,360,'if(',6,352,'stylesReady){','this.message','=',6,'Setup.DIV("','message",{visibility:"',170,'"},',6,'fixedDiv',788,1081,'=',6,1084,'message",{',179,'bottom:"',1! 86,'",','backgroundColor',':"#E6E6E6',189,190,'",zIndex:102,color:"black",fontSize:"',194,'"},',6,1089,')}','this.text','=',6,15,'createTextNode','("");',1081,866,1110,');',1081,'.onmousedown=',6,736,'Cancel},Set',294,702,'if(this.clear){clearTimeout(this.clear',');this.clear=null}if(',6,525,636,'){',0,1110,304,'Init();',0,1110,608,'if(',6,333,'textNodeBug','){',1081,'.innerHTML','=B','}else{',1110,'.nodeValue','=B}','this.message.style.',844,'visible";',703,1152,'cursor="pointer','";',0,1152,'cursor){',1152,'cursor="hand"}',1081,'.title=" Cancel Processing of Math "}else{',1152,'cursor="";',1081,'.title=""}}else{if(B',871,'8)!="Loading "){',6,1,742,'=B}}},Clear',342,1127,')}this.clear=setTimeout("',6,717,'.doClear()",1000)},doClear',342,436,'clear',304,'clear=null;',6,1,742,'="";',436,'text){',1110,1150,'=""}if(',1081,'){',1152,844,170,'"}}},Blank',342,436,166,'||!',6,15,'body',360,'this.blank','=',6,1084,166,'",{position',':(',6,333,'msiePositionFixedBug','?"absolute":"fi! xed"),',180,'",bottom:"0px",right:"0px",zIndex:101,',1100,':"w! hite"},' ,6,1089,');if(',6,333,'msieBlankBug){',1210,1146,'=" ";',1210,'.style.width="110%";',1210,850,'110%"}},UnBlank',342,436,166,'){',6,15,'body.removeChild(',1210,')}',1210,'=null}};',6,'Setup={',7,':[],DIV',294,'E,C,B){',929,'=',6,15,'body}var D=',6,15,21,'("div");D.id="jsMath_"+E;','for(var A in C){','D.style[A]=C[A]}',0,'B.hasChildNodes){B',866,'D',788,'B.insertBefore(D,','B.firstChild',')}return D},Script',294,702,436,7,'[B]){return }else{this.',7,'[B]=1}',0,'B.match("^([a-zA-Z]+:/?)?/")){B=',6,'root+B}',6,708,'Load(B,A)},Hidden',342,6,170,'=this.DIV("Hidden",{',179,'top:0,left:0,border:0,padding:0,margin:0});',6,'hiddenTop=',6,170,';return },Source',342,'if(',6,'Autoload','&&',6,1303,'.root){',6,'root=',6,1303,'.','root}else{',6,'root="";',369,6,15,'getElementsByTagName("','script");',703,687,'A.','length;B++){','var D=A[B].src;if(D&&D.match("(^|/|\\\\\\\\)',6,'js$")){',6,1309,'D.replace','(/',6,'js$/,"");break}}}}if(',6,'root.charAt(','0)=="\\\\"){',6,1309,6,'root.rep! lace','(/\\\\/g,"/")}if(',6,1335,'0)=="/"){if(',6,1335,'1)!="/"){if(',6,15,566,'port){',6,'root=":"+',6,15,566,'port+',6,'root}',6,'root="//"+',6,15,566,'host+',6,1359,6,1309,6,15,566,'protocol+',6,1313,0,6,646,'(/^[a-z]+:/i)){var D=','new String(',6,15,511,'=new RegExp("/[^/]*/\\\\.\\\\./");',6,1309,1330,'(new RegExp("[^/]*$"),"")+',6,'root;while(',6,646,'(C)){',6,1309,6,1340,'(C,"/")}}}',6,'Img.',1309,6,651,'fonts/";',6,166,'=',6,651,166,'.gif";this.Domain()},Domain',342,'try{',6,15,603,'}catch(D',360,'var C="";',369,6,15,603,';if(',6,646,'("://([^/]*)/")){C=RegExp.$1}C=C.replace(/:\\d+$/,"");if(C==""||C==A',360,'if(',38,'appName=="Microsoft Internet Explorer"&&',6,36,'=="mac"&&',38,'onLine&&',38,593,'&&',6,15,'all',360,'C=C.split(/\\./);A=A.split(/\\./);if(C.length<2||A.length<2||','C[C.length-','1',']!=A[A.length-','1]||',1445,'2',1447,'2]){this.','DomainWarning','();return }var E=',1445,'2]+"."+',1445,'1];for(var B=3;B<=C.length&&B<=A.',1324,'if(',1445,'B',1447,'B]){br! eak}E=',1445,'B]+"."+E}',6,15,603,'=E;this.',698,'=1},',1453,3! 42,23,'I n order for jsMath to be able to load the additional components that it may need, the ',6,'js file must be ',7,' from a server in the same ',603,' as the page that contains it. Because that is not the case for this page, the',25,'displayed here may not appear correctly.")},','EncodeFont',294,'C',8,'B=',6,'TeX[C];if(B','[0].c',594,360,462,'128;A++){var D=B[A];B[A]=D[3];if(B[A]==null){B[A]={}}B[A].w=D[0];B[A].h=D[1];if(D[2]!=null){B[A].d=D[2]}B[A].c=',6,'TeX.encoding[A]}},Fonts',342,687,6,'TeX.fam','.',1324,369,6,1502,'[B];if(A',304,1485,'(A)}}},TeXfont',294,'C',8,'B=',6,1491,'==null',360,369,6,'EmBoxFor(\'<span class="\'+C+\'">\'+B[65].c','+"</span>");B.hd=A.h;B.dh=0.05;B.d=',6,1522,'+',6,386,'B.hd)+"</span>").h-B.hd;B.h=B.hd-B.d;if(C=="',130,'"){B.skewchar=','127','}else{if(','C=="',134,1531,'48}}},',415,342,462,6,1502,464,'if(',6,1502,'[A]){this.TeXfont(',6,1502,'[A])}}},Sizes',342,6,'TeXparams','=[];var B;var A;for(A=0;A<',6,46,464,6,1553,'[A]={}}for(B in ',6,'TeX){',783,! 6,'TeX[B])!="object"){for(A=0;A<',6,46,464,6,1553,'[A][B]=',6,46,'[A]*',6,'TeX[B]/100}}}},Styles',294,'A){',0,'A){A=',6,'styles;A[".typeset .scale"]={"font-size":',6,525,'scale+"%"};this.stylesReady=1}',6,711,831,'AddStyleSheet','",A);if(',6,333,'styleChangeDelay','){',6,711,6,'Script,"Delay",1)}},StyleString',294,'E',8,'A={},F;for(F in E){if(typeof E[F]==="string"){A[F]=E[F]}else{if(F',871,'1)==="@"){A[F]=','this.StyleString(','E[F])}else{if(E[F]!=null',8,'D=[];for(var C in E[F]){if(E[F][C]!=null){D[D.length]=C+": "+E[F][C]}}A[F]=D.join("; ")}}}}var B="";for(F in A){B+=F+" {"+A[F]+"}\\n"}return B},',1589,294,'D',8,'B=',6,15,1319,'head")[0];',369,1605,'D);if(',6,15,'createStyleSheet){B.insertAdjacentHTML("beforeEnd",\'<','span style="display:','none">x</span><style type="text/css">\'+A+"</style>")}else{var C=',6,15,21,'("style");C.type="text/css";C',866,6,15,1114,'(A));B',866,'C)}},Body',342,436,'inited',360,'this.inited=-','1;',6,352,'Hidden();',1641,'2;',6,333,1136,1641,'! 3;if(',6,525,166,'){',6,717,'.Blank()}',1641,'4;',6,352,'Style! s();',16 41,'5;',6,517,1136,1641,'6;',6,711,6,'Setup,"User","pre-font");',1641,'7;',6,711,6,'Font,"Check");if(',6,'Font.register.length){',6,711,6,'Font,"LoadRegistered")}this.inited=1},User',294,'A){if(',6,'Setup.UserEvent[A',']){(',6,1691,'])()}},UserEvent:{"pre-font":null,onload:null}};',6,'Update={',415,294,'D){for(var A in D){for(var B in D[A]){for(var C in D[A][B]){',6,'TeX[A][B][C]=D[A][B][C]}}}},TeXfontCodes',294,'C){',1265,687,'C[A].',1324,6,'TeX[A][B].c=C[A][B]}}}};',6,'Browser={allowAbsolute:1,allowAbsoluteDelim:0,','separateSkips',':0,valignBug:0,operaHiddenFix:"",','msieCenterBugFix',':"",','msieInlineBlockFix',':"",msieSpaceFix:"",imgScale:1,renameOK:1,',1593,':0,delay:1,version:0,','TestSpanHeight',342,6,305,'=\'<span><','span style="\'+this.block','+\';height:2em;width:','1px"></span></span>\';var B=',6,'hidden.firstChild;',369,1273,';this.','spanHeightVaries','=(B',315,'>=A',315,'&&B',315,'>0);','this.spanHeightTooBig','=(B',315,'>A',315,');',6,305,'=""},','TestInlin! eBlock',342,'this.block="display',':-','moz-inline-box";','this.hasInlineBlock','=',6,'BBoxFor(\'<span style="\'+this.block','+\';width:10px;height:5px"></span>\').w>0;if','(',1756,'){',6,'styles[".typeset',' .',166,'"].display="-',1755,468,6,1765,' .spacer"].display',1148,1753,':',168,'";',1756,'=',6,1759,1760,'(!',1756,608,'this.block+=";overflow:',845,369,6,301,'("x").h;this.mozInlineBlockBug=',6,1759,'+";height:"+A+\'px;width:1px','"></span>x','<',1726,'+";height:"+A+"px;width:1px;vertical-align:-"+A+\'px',446,'h>2*A;this.widthAddsBorder=',6,1759,'+\';overflow:',170,';height:1px;width:10px',';border-left:','10px solid',446,'w>10;','this.msieBorderBug','=',6,1759,1795,1796,'\').h!=',6,1759,1795,1807,72,1796,'\').h;','this.blankWidthBug=',1811,'||',6,1759,1727,'0px',446,'h==0},','TestRenameOK',342,6,305,'="<span></span>";',369,6,1730,'A.setAttribute("name","','jsMath_test','");this.renameOK=(',6,15,'getElementsByName("',1843,'").length>0);',6,305,1750,'TestStyleChange',34! 2,6,305,'=\'<span ID="',1843,'">x</span>\';var B=',6,1730,369,! 'B',312, ';',6,352,1589,'({"#',1843,'":"font-size:200%"});this.',1593,'=(B',312,'==A);',6,305,1750,'VersionAtLeast',294,320,1380,'this.version).split(".");B=',1380,'B).split(".");if(B[1]==null){B[1]="0"}return A[0]>B[0]||(A[0]==B[0]&&A[1]>=B[1])},Init',342,6,27,'="unknown";this.',1751,427,1721,427,1834,427,1853,427,'MSIE',427,'Mozilla',427,'Opera',427,'OmniWeb',427,'Safari',427,'Konqueror();if(','this.allowAbsoluteDelim','){',6,'Box.DelimExtend=',6,'Box.DelimExtendAbsolute;',6,'Box.Layout=',6,'Box.LayoutAbsolute',1148,6,'Box.DelimExtend=',6,'Box.DelimExtendRelative;',6,'Box.Layout=',6,'Box.LayoutRelative}',436,1713,'){',6,'HTML.Place=',6,'HTML.','PlaceSeparateSkips',';',6,'Typeset.prototype.','Place=',6,1938,1935,'}},MSIE',342,436,1734,'&&!',1742,'){',6,27,'="MSIE";if(',6,36,'=="pc"){this.','IE7=(',1,639,594,');','this.quirks','=(',6,15,'compatMode=="BackCompat");this.msieStandard6=!',1961,'&&!this.IE7;',1909,869,1713,'=1',';this.buttonCheck=1;this.','msieBlankBug=1;this.','msieAccen! tBug',869,'msieRelativeClipBug','=1;this.msieDivWidthBug=1;this.',1219,869,'msieIntegralBug',869,'waitForImages',869,'msieAlphaBug','=!this.IE7;this.','alphaPrintBug',1985,1715,'="position:relative; ";this.',1717,'=" display:',168,';";this.msieTeXfontBaselineBug=!',1961,';',1811,'=',1825,'1;this.msieSpaceFix=\'<',1624,168,'"></span>\';',6,'Macro("joinrel","\\\\mathrel{\\\\kern-5mu}"),',6,'Parser.prototype.mathchardef.','mapstocharOrig','=',6,2006,'mapstochar;',468,6,2006,2011,6,'Macro("mapstochar","\\\\rlap{\\\\',2007,'\\\\,}\\\\kern1mu"),',6,1765,' .arial"]={"font-family":"\'Arial unicode MS\'"};',0,'this.IE7||',1961,'){',6,'styles["#jsMath_message"].',847,468,6,2028,'width;',6,'styles["#jsMath_panel"].',847,468,6,2035,'width;',6,'styles["#jsMath_button"].','width="1px";',6,2042,847,468,6,2042,'width;',6,1089,'=',6,1084,1089,1215,':"absolute",zIndex:101});',6,1,'.attachEvent("','onscroll",',6,'Controls.MoveButton',');',6,1,2061,'onresize",',6,2064,');',6,2064,'()}',6,'styl! es["#jsMath_noFont .link"].','display="',168,'";',468,6,1765,1! 773,';', 6,'styles[".tex2math_div','"]={};',6,'Add(',6,2087,'"],',6,'styles["div',57,'"]);',6,2087,'"].width="100%";',6,2087,'"].',2078,168,'";',6,1765,'"]["letter-spacing"]="0";if(','screen.deviceXDPI','&&','screen.logicalXDPI','&&',2110,'!=',2112,304,'imgScale*=',2112,'/',2110,';',6,525,'alpha=0}this.',334,'="<i>x</i>";',6,'EmBoxFor=',6,324,1533,6,36,'=="mac"){this.msieAbsoluteBug',869,'msieButtonBug',1977,1973,'quirks=1;',6,'Setup.Script("jsMath-','msie-mac.js");',6,'Parser.prototype.macros.angle=["Replace","ord",\'<font face="Symbol">‹</font>\',"',54,'"];',6,2035,'width="42em";',6,525,'printwarn=0}}',6,'Macro("not","\\\\mathrel{\\\\rlap{\\\\kern3mu','/}}")}},',1900,342,'if(',6,170,'.ATTRIBUTE_NODE){',6,27,'="',1900,'";if(',6,36,1955,1986,'=1}',1909,'=1;',6,2042,'cursor=',6,2077,1157,'",',6,2155,'/}}");if(',38,'vendor=="Firefox"){','this.version=',38,'vendorSub',1533,38,'userAgent.match','(" Firefox/([0-9.]+)([a-z ]|$)")){',2187,'RegExp.$1}}',436,1879,'("3.0")){this.mozImageS! izeBug=1}}},',1904,342,'if(',38,'accentColorName){',6,27,'="',1904,'";','this.allowAbsolute','=',1756,';',1909,'=',2209,';this.valignBug=!',2209,1972,1143,'=1;',6,'noChangeGlobal=1;',0,1756,'){',6,2142,'old-browsers.js','")}}},Opera',342,'if(',1742,'){',6,27,'="Opera";var B=',38,2192,'("Opera 7");',2209,'=0;this.delay=10;this.operaHiddenFix="[Processing]";if(B){',6,2142,2228,'")}',369,38,'appVersion.match(/^(\\d+\\.\\d+)/);',703,2187,'A[1]}else{this.vesion=0}this.operaAbsoluteWidthBug=this.operaL'], - ['ineHeightBug=(A[1]>=9.5)}},Safari',':function(){','if(navigator.','appVersion.match(/Safari\\//)){','jsMath.','browser','="Safari";','var A=','navigator.userAgent.match','("Safari/([0-9]+)");A=(A)?A[1]:400;this.version=A;','for(var B=0;B<',4,'TeX.fam','.length',';B++){','if(',4,12,'[B]&&',4,'TeX[',4,12,'[B]]){',4,20,4,12,'[B]].dh=0.1}}',4,'TeX.axis_height+=0.05;',4,'TeX.','default_rule_thickness','+=0.025',';this.allowAbsoluteDelim=','A>=125;this.safariIFRAMEbug=A>=312&&A<412;this.safariButtonBug=A<412;this.safariImgBug=1;this.textNodeBug=1;this.buttonCheck=A<500;this.styleChangeDelay=1}},','Konqueror',1,2,'product&&navigator.product.match("',37,'")){',4,5,'="',37,'";this.allowAbsolute=0',35,'0;if(',8,'(/',37,'\\/(\\d+)\\.(\\d+)/)){if(RegExp.$1<3||(RegExp.$1==3&&RegExp.$2<3)){this.separateSkips=1;this.valignBug=1;',4,'Setup.Script("jsMath-','old-browsers.js")}}',4,'Add(',4,'styles,{".typeset .cmr10','":"font-family: jsMath-','cmr10',', jsMath ','cmr10, serif','",".types! et .','cmbx10',61,66,63,66,', jsMath-cmr10, jsMath cmr10",".typeset .','cmti10',61,72,63,72,71,'cmmi10',61,78,63,78,65,'cmsy10',61,84,63,84,65,'cmex10',61,'cmex10, jsMath cmex10','"});',4,'Font.testFont','="jsMath','-',92,'"}}};',4,'Font={testFont:"jsMath-cmex10",','fallback',':"symbol",register:[],message:"<b>No jsMath TeX fonts found</b> -- using',' image fonts instead','.<br/>\\nThese',' may be slow and might not print well.<br/>\\nUse the jsMath control panel to get additional information','.",','extra_message',':\'Extra TeX fonts not found: <b><span id="jsMath_ExtraFonts"></span></b><br/>Using',104,'. This',106,'.\',','print_message',':"To print higher-resolution math symbols, click the<br/>\\n<b>Hi-Res Fonts for Printing</b> button on',' the jsMath control panel.<br/>\\n",','alpha_message',':"If the math symbols print as black boxes, turn off <b>image alpha channels</b><br/>\\nusing the <B>Options</B> pane of',116,'Test1',':function(','C',',F,D,E){if(F==null){F=124}i! f(D==null){D=2}if(E==null){E=""}var B=jsMath.BBoxFor(\'<span s! tyle="fo nt-family: \'+E+C+\', serif">\'+jsMath.TeX[C][F].c+"</span>");var A=jsMath.BBoxFor(\'<span style="font-family: serif">\'+jsMath.TeX[C][F].c+"</span>");return','(B.w>D*A.w&&B.h!=0)},Test2',121,'C',123,'(A.w>D*B.w&&B.h!=0)},CheckTeX',1,7,4,'BBoxFor(\'<span style="font-family',': \'+',4,95,'+\', serif">\'+',4,'TeX.cmex10[1','].c+"</span>");',4,'nofonts=((A.w*3>A.h||A.h==0)&&!this.Test1("cmr10','",null,null,"jsMath-"));if(!',4,'nofonts){','return }if(',4,5,'!="Mozilla"||(',4,'platform','=="mac"&&(!',4,'Browser.VersionAtLeast(','1.5)||',4,153,'3)))||(',4,150,'!="mac"&&!',4,153,'3))){A=',4,132,': CMEX10, serif">\'+',4,'TeX.cmex10[1',139,4,141,'"));if(!',4,144,4,55,'BaKoMa-fonts.js")}}},Check',1,7,4,'Controls.','cookie;this.CheckTeX();if(',4,144,'if(A.autofont','||A','.font=="tex"){','A.font=this.',102,';if(A.warn){',4,'nofontMessage=1;A.warn=0;',4,181,'SetCookie(0);if','(',4,'window.NoFontMessage','){',4,198,'()}else{','this.Message(this.','message)}}}}else{',185,'){A.font="tex"}i! f(A',187,'return }}if(',4,'noImgFonts){','A.font="unicode"}if(A','.font=="unicode','"){',4,55,102,'-"+',4,150,'+".js");',4,'Box.TeXnonfallback=',4,'Box.TeX',';',4,224,'=',4,'Box.TeXfallback;return }','if(!A.print&&A.printwarn){this.','PrintMessage','((',4,'Browser.','alphaPrintBug&&',4,181,'cookie.alpha)?this.',114,'+this.',117,':this.',114,')}if(',4,235,'waitForImages){',4,'Script.','Push(',4,'Script,"WaitForImage",',4,'blank)}if(A.font=="symbol"){',4,55,102,'-symbols.js");',4,'Box.TeXnonfallback=',4,224,';',4,224,'=',4,230,4,'Img.SetFont','({cmr10',':["all"],',78,273,84,273,'cmex10',273,66,273,72,':["all"]});',4,'Img.LoadFont','("cm-fonts")},Message',121,'A){if(',4,'Element("Warning',42,'return }var ','B=',4,'Setup.DIV("','Warning','",{});B.innerHTML=\'<center><table><tr><td><div ','id="jsMath_noFont"><div ','class="message">\'+A','+\'<div style="text-align:left"><span style="float:left; margin: 8px 0px 0px 20px"><span onclick="',4,181,'Panel()" ','title=" Open ','the ','! jsMath Control Panel',' " class="link">',306,'</span></span','! ><span s tyle="margin: 8px 20px 0px 0px; float:right"><span onclick="',4,'Font.','HideMessage','()" title=" Remove this font warning message',307,'Hide this Message',309,'></div><div style="height:6px"></div><br clear="all"/></div></','div><div style="width:22em; height:1px"></div></td></tr></table></center><hr/>\'},',313,1,7,4,290,'");if(A','){A.style.display="none"}},',232,121,288,4,'Element("','PrintWarning',42,292,'B=',4,295,332,297,299,'+\'</',319,'Register',121,'H,B){if(typeof (H)=="string"){H={name:H}}if(!',4,'Setup.inited','&&!B){','this.register','[',349,13,']=H;',292,'I=H.name;',7,'I.replace(/10$/,"");var F=',4,12,13,';if(H.prefix==null){H.prefix=""}if(!H.style){H.style="font-family: "+H.prefix+I+", serif"}if(!H.styles){H.styles={}}if(!H.macros){H.macros={}}',4,12,'[F]=I;',4,'TeX.famName[I]=F;H.macros[A]=["HandleFont",F];',4,58,4,'Parser.prototype.macros,H.macros);H.styles[".typeset ."+I]=H.style;',4,'Setup.Styles(H.styles);if(',4,'initialized){',4,250,'Push(',4,'Setup,"TeX! font",I)}var C=',4,181,'cookie;var E=!',4,'nofonts&&H.test(I,H.testChar,H.testFactor,H.prefix);if(E&&C',187,'if(H.tex){H.tex(I,F,H)}return }if(!E&&C.warn&&C.font=="tex"&&!',4,144,'if(!C.fonts.match("/"+I+"/")){C.fonts+=I+"/";',4,181,195,'(!',4,290,42,203,108,')}var G=',4,331,'ExtraFonts");if(G){if(G','.innerHTML','!=""){G',403,'+=","}G',403,'+=" "+H.prefix+I}}}if(C',212,'"||',4,210,'if(H.',102,'){H.',102,'(I,F,H)}',292,'D={};if(C.font=="symbol"&&H.symbol!=null){D[I]=H.symbol(I,F,H)}else{D[I]=["all"]}',4,271,'(D);',4,285,'(I);if(',4,'initialized){',4,250,'Push(',4,'Img,"Scale");',4,250,'Push(',4,'Img,"UpdateFonts")}},LoadRegistered',1,7,'0;while(A<',349,13,'){this.Register(',349,'[A++],1)}',349,'=[]},Load',121,'A){',4,'Setup.Script(this.URL(A))},URL',121,'A){','return ',4,'Img.root+A+"/def.js"}};',4,'Controls={cookie:{scale:100,font:"tex",autofont:1,scaleImg:0,alpha:1,warn:1,fonts:"/",printwarn:1,stayhires:0,button:1,progress:1,asynch:0,blank:0,print:0,keep:"0D",global:"auto! ",hiddenGlobal:1},cookiePath:"/",','noCookiePattern',':/^(file! |mk):$/, Init',1,'this.panel=',4,295,'panel",{display:"none"},',4,'fixedDiv);','if(!',4,235,'msieButtonBug){this.Button',202,'setTimeout("',4,181,'Button()",500)}},Panel',1,4,'Translate.Cancel();if(this.loaded){this.Main',202,4,250,'delayedLoad(',4,'root+"jsMath-controls.html")}},Button',1,7,4,295,'button",{},',4,467,'A.',304,306,' ";A',403,'=\'<span onclick="',4,181,'Panel()">jsMath</span>\';if(!',4,'Global.','isLocal&&!',4,'noShowGlobal){A',403,'+=\'<span id="jsMath_global" ',304,'jsMath Global Panel " onclick="',4,503,'Show(1)">Global </span>\'}if(A.offsetWidth<30){A.style.width="auto"}if(!','this.cookie','.button',326,'MoveButton',1,4,'fixedDiv.style.','left','=document.body.','scrollLeft+"px";',4,520,'top',522,'scrollTop+"px";',4,520,'width',522,'clientWidth+"px";',4,520,'height',522,'clientHeight+"px"},GetCookie',1,'if(','this.defaults','==null){',541,'={}}',4,58,541,',',514,');this.userSet={};var C=',4,'document.cookie',';if(',4,'window.location','.protocol.match(this.',4! 59,')){C=this.','localGetCookie','();','this.isLocalCookie','=1}if(','C.match(/jsMath','=([^;]+)/)){var D=unescape(RegExp.$1).split(/,/);',10,'D',13,14,7,'D[B].match(/(.*):(.*)/);if(A[2].match(/^\\d+$/)){A[2]=1*A[2]}',514,'[A[1]]=A[2];this.userSet[A[1]]=1}}},',559,1,454,4,555,'.search.substr(1)},SetCookie',121,'F){var B=[];for(var E in ',514,'){if(',541,'[E]==null||',514,'[E]!=',541,'[E]){B[B',13,']=E+":"+',514,'[E]}}B=B.join(",");if(',561,'){if(F==2){return"','jsMath="+escape(B)}','this.','localSetCookie','(B,F)}else{B=escape(B);if(B==""){F=0}if(','this.cookiePath','){B+="; path="+',599,'}if(','this.cookieDomain','){B+="; domain="+',603,'}if(',514,'.keep!="0D"){var A={D',':1000*60*60*24',',W',609,'*7,M',609,'*30,Y',609,'*365};var D=new Date;D.setTime(D.getTime()+',514,'.keep.substr(','0,1)*A[',514,618,'1,1)]);B+="; expires="+D.toGMTString()}if(B!=""){',4,552,96,'="+B;var C=',4,552,';if(F&&!',563,'=/)){alert("Cookies must be enabled in order to save jsMath options")}}}',454! ,'null},',597,121,'B,C){if(!C){return }',7,'String(',4,555,').! replace( /\\?.*/,"");if(B!=""){A+="?',595,'if(A!=',4,555,'.href){this.Reload(A)}},Reload',121,'A){if(!this.loaded){return }this.loaded=0;',4,347,'=-100;',4,503,'ClearCache();if(A){',4,555,'.replace(A)}else{',4,555,'.reload()}}};',4,'Click={CheckClick',121,'A){if(!A){A=',4,'window.event}if','(A.altKey){',4,181,'Panel()}},CheckDblClick',121,'B){if(!B){B=',4,666,'(!',4,'Click.DblClick){',4,'Extension.Require("double-click",1);',7,'B;B={};for(var C in A){B[C]=A[C]}}',4,250,'Push(',4,'Click,"DblClick",[B,this.alt])}};',4,'TeX={thinmuskip:3/18,medmuskip:4/18,thickmuskip:5/18,x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,',33,':0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,integer:6553.6,scriptspace:0.05,nulldelimiterspace:0.12,delimiterf! actor:901,delimitershortfall:0.5,scale:1,atom:["ord","op","bin","rel","open","close","punct","ord"],fam:["cmr10","',78,'","',84,'","cmex10","',72,'","","',66,'",""],famName:{cmr10:0,',78,':1,',84,':2,cmex10:3,',72,':4,',66,':6},encoding:["À","Á","Â","Ã","Ä","Å","Æ","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï","°","Ñ","Ò","Ó","Ô","Õ","Ö","·","Ø","Ù","Ú","Û","Ü","µ","¶","ß","ï","!",""","#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","ÿ"],cmr10:[[0.625',',0.683],[0.','83! 3',707,'778',707,'694',707,'667',707,'75',707,'722',707,'778',! 707,'722 ',707,'778',707,'722',707,'583',',0.694,0,{ic:0.0778,krn:{"39":0.0778,"63":0.0778,"33":0.0778,"41":0.0778,"93":0.0778},lig:{"105":','14,"108":15}}],[0.556',',0.694],[0.','556',731,'833',731,'833',731,'278',',0.431],[0.','306',',0.431,0.194],[0.','5',731,'5',731,'5,0.628],[0.5',731,'5,0.568],[0.75',731,'444,0,0.17],[0.5',731,'722',739,'778',739,'5,0.528,0.0972],[0.903,0.683],[1.01',707,'778,0.732,0.0486],[0.278',',0.431,0,{','krn:{"108":-0.278,"76":-0.319}}],[0.278',',0.694,0,{','lig:{"96":','60}}],[0.5',731,'833',',0.694,0.194],[','0.5',',0.75,0.0556],[0.','833',768,'778',731,'278',761,'krn:{"63":0.111,"33":0.111},lig:{"39":34}}],[0.389',',0.75,0.25],[0.','389',776,'5,0.75],[','0.778,0.583,0.0833],[','0.278,0.106',',0.194],[0.','333',759,'lig:{"45":','123}}],[',781,'],[0.5',776,'5,0.644','],[0.5,0.644],[0.5,0.','644',791,'644',791,'644',791,'644],[0.5,0.644],[0.278',739,'278',741,'278,0.5',782,'778',',0.367,-0.133],[','0.472,0.5',782,'472',761,762,'62}}],[0.778',731,'75',',0! .683,0,{krn:{"','116','":-0.0278,"','67',816,'79',816,'71',816,'85',816,'81',816,'84":-0.0833,"89":-0.0833,"86":-0.111,"87":-0.111}}],[0.','708',707,'722',707,'764',814,'88',816,'87',816,'65',816,'86',816,'89":-','0.0278}}],[0.','681',707,'653',',0.683,0,{','krn:{"111":-0.0833,"101":-0.0833,"117":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.111,"79":-0.0278,"67":-0.0278,"71":-0.0278,"81":-0.0278}}],[','0.785',707,'75',707,'361',814,'73":',843,'514',707,'778',814,'79',816,'67',816,'71',816,'81":-',843,'625',814,827,'917',707,'75',707,'778',814,'88',816,'87',816,'65',816,'86',816,'89":-',843,'681',814,'65','":-0.0833,"','111',816,'101',816,'97',816,'46',891,'44":-0.','0833}}],[0.','778,0.683',782,'736',814,'116',816,'67',816,'79',816,'71',816,'85',816,'81',816,827,'556',707,'722',814,'121',816,'101',891,'111',891,'114',891,'97',891,'65',891,'117":-0.',901,'75',707,'75',',0.683,0,{ic:0.','0139,',848,'1.03',940,'0139,',848,'0.75',814,'79',816,'67',816,'71',816,'81":-',843,'75',94! 0,'025,krn:{"101',891,'111',891,'114',891,'97',891,'65',891,93! 5,901,'6 11',707,'278',776,'5',731,'278',776,'5',731,'278,0.668],[0.','278',761,762,'92}}],[0.5',759,'krn:{"118',816,'106":0.0556,"121',816,'119":-',843,'556,0.','694,0',',{krn:{"101":0.0278,"111":0.0278,"120":-0.0278,"100":0.0278,"99":0.0278,"113":0.0278,"118":-0.0278,"106":0.0556,"121":-0.0278,"119":-0.0278}}],[0.','444',759,'krn:{"104',816,'107":-',843,'556',731,'444',739,'306',729,'12,"102":11,"108":13}}],[0.5',',0.431,0.194,{','ic:0.','0139,krn:{"','106":',843,'556',761,'krn:{"116',816,'117',816,'98',816,'121',816,'118',816,'119":-',843,981,'306,0.668',782,'528',761,'krn:{"97','":-0.0556,"','101',816,'97',816,'111',816,'99":-',843,'278',731,'833',759,'krn:{"116',816,'117',816,'98',816,'121',816,'118',816,'119":-',843,'556',759,'krn:{"116',816,'117',816,'98',816,'121',816,'118',816,'119":-',843,'5,0.431,0',995,993,'431,0.194',995,'528',741,'392',739,'394',739,'389,0.615,0,{krn:{"121',816,'119":-',843,'556',759,'krn:{"119":-',843,'528',',0.431,0,{ic:0.',1011,'97',1034,'101',816,'9! 7',816,'111',816,'99":-',843,'722',1093,1011,'101',816,'97',816,'111',816,'99":-',843,'528',739,'528',1009,'ic:0.',1011,'111',816,'101',816,'97',816,'46',891,'44":-0.',901,'444',739,'5',1093,'0278,',785,'124}}],[1',1093,'0278}],[0.','5',731,'5,0.668],[0.5,0.668]],',78,':[[0.615',940,'139',',krn:{"61":-0.0556,"59":-0.111,"58":-0.111,"127":0.',901,'833',814,'127":0.167}}],[0.','763',940,1136,'krn:{"127":0.0833}}],[0.','694',814,1152,'742',940,'0757,',1156,'831',940,'0812,krn:{"61',1034,'59":-0.0556,"58":-0.0556,"127":0.','0556}}],[0.','78',940,'0576,',1156,'583',940,'139',1148,1169,'667',847,1156,'612',940,'11,krn:{"61',1034,1168,1169,'772',940,'0502,',1156,'64',1093,'0037,','krn:{"127":',843,'566',',0.694,0.194,{ic:0.','0528,',1156,'518',1009,'ic:0.0556','}],[0.444',761,'ic:0.0378,krn:{"',1168,1169,'406',759,'krn:{"127":0.0556}}],[0.','438',1198,'0738,',1156,'497',1009,'ic:0.0359',',',1211,'469',761,'ic:0.',1136,1156,'354',759,1211,'576',739,'583',731,'603',1009,1195,843,'49! 4',1093,'0637,krn:{"',1168,'0278}}],[0.','438',1198,'046,',119! 5,'0.111 }}],[0.','57',1093,'0359}],[0.','517',1009,1156,'571',1093,'0359,krn:{"59',1034,'58":-0.',1169,'437',1093,'113,krn:{"',1168,1241,'54',1093,'0359,',1195,843,'596,0.694,0.194,{',1156,'626',1009,1211,'651',1198,'0359,',1195,1246,'622',1093,1249,'466',759,1156,'591',761,1156,'828',1093,1140,'517',1009,1156,'363,0.431,0.0972,{ic:0.0799,',1156,'654',1009,1195,'0.0833}}],[1',805,'1',805,'1',805,'1',805,'0.278',',0.464,-0.0363],[','0.278',1308,'0.5,0.465,-0.0347],[',1311,'0.5',739,'5',739,'5',739,'5',741,'5',741,'5,0.',1076,791,1076,791,'431',782,'278,0.106],[',781,782,'778',',0.539,0.0391],[','0.5,0.75,0.25,{krn:{"1',1034,'65',1034,'77',1034,'78',1034,'89":0.0556,"90":-0.',1169,'778',1334,1311,'0.531',761,1203,',',1156,'75',814,'127":','0.','139}}],[0.','759',940,'0502,',1156,'715',940,'0715,krn:{"61',816,1168,901,'828',940,1136,1211,'738',940,'0576,',1156,'643',940,'139',1148,901,'786',847,1156,'831',940,'0812,krn:{"61',1034,1168,1169,'44',940,'0785,',1195,1246,'555',940,'0962',11! 48,'167}}],[0.','849',940,'0715,krn:{"61',1034,1168,1169,'681',814,1355,843,'97',940,'109,krn:{"','61',1034,1168,901,'803',940,1412,'61',891,'61',816,1168,901,'763',940,1136,1156,'642',940,'139',1148,901,'791,0.683,0.194,{',1156,'759',940,'00773,',1156,'613',940,'0576,krn:{"61',1034,1168,901,'584',940,'139,krn:{"61',816,1168,901,'683',940,1412,'59":-0.111,"',1257,'111,"61',1034,1355,843,'583',940,'222',',krn:{"59":-0.167,"58":-0.167,"61":-0.111}}],[0.','944',940,'139',1465,'828',940,'0785,krn:{"61',891,'61',816,1168,901,'581',940,'222',1465,'683',940,'0715,krn:{"61',1034,1168,901,'389,0.75],[0.389',766,'0.389',766,'1,0.358,-0.142],[',1492,'0.417',761,1195,1246,'529',739,'429',731,'433',759,1211,'52',761,'krn:{"89":0.0556,"90',1034,'106":-0.111,"102":-0.167,"',1152,'466',759,1211,'49',1198,'108,krn:{"',1168,1399,'477',1009,1218,',',1195,843,'576',761,'krn:{"127":-',843,'345,0.66],[0.412,0.66,0.194,{ic:0.0572,krn:{"59',1034,1257,1169,'521',761,'ic:0.0315}],[0.298',761,'ic:0.0! 197,',1156,'878',739,'6',739,'485',759,1211,'503',1009,1156,'4! 46',1009 ,1218,',',1156,'451',1093,1136,'krn:{"',1168,1169,'469',759,1211,'361,0.615,0,{',1156,'572',759,1195,843,'485',1093,'0359,',1195,843,'716',1093,'0269,',1156,'572',759,1195,843,'49',1009,1218,',',1211,'465',1093,'044,',1211,'322',759,1195,843,'384',1009,1156,'636',1009,1195,1246,'5,0.714,0,{ic:0.154}],[0.278',761,'ic:0.399}]],',84,':[[',780,'0.278,0.444,-0.0556],[',780,1311,780,'0.5,0.444,-0.0556],[',780,780,780,780,780,780,780,'1',766,1612,1612,'0.778',1308,'0.778,0.464,-0.0363','],[0.778,0.636,0.136',1627,1627,1627,1627,1627,'],[0.778',805,'0.778,0.483,-0.0169],[0.778',1334,'0.778',1334,'1',1334,'1',1334,'0.778',1334,'0.778',1334,'1',805,'1',805,'0.5',766,'0.5',766,'1',805,'1',766,'1',766,'0.778',1308,'1',805,'1',805,'0.611',766,'0.611',766,'1',805,'1',766,'1',766,'0.778',739,'275,0.556],[1',739,'667',1334,'0.667',1334,'0.889',766,'0.889',766,'0',766,'0',805,'0.556',731,'556',731,'667',739,'5',768,'722',731,'722',731,'778',731,'778',731,'611',731,'798',814,'48":0.','194}}],! [0.657',940,'0304',',krn:{"48":0.',1357,'527',940,'0583',1717,1357,'771',940,'0278',1717,901,'528',940,'0894',1717,'111}}],[0.','719',940,'0993',1717,1733,'595',',0.683,0.0972,{ic:0.','0593',1717,1733,'845',940,'00965',1717,1733,'545',940,'0738,krn:{"48":',843,'678',1740,'185',1717,1399,'762',940,'0144',1717,1169,'69',814,1713,'139}}],[1.2',814,1713,1357,'82',940,'147',1717,901,'796',940,1726,1717,1733,'696',940,'0822',1717,901,'817,0.683,0.0972,{krn:{"48":',1246,'848',814,1713,901,'606',940,'075',1717,1357,'545',940,'254,krn:{"48":',843,'626',940,'0993',1717,901,'613',940,'0822,krn:{"48":',843,'988',940,'0822',1717,901,'713',940,'146',1717,1357,'668',1740,'0822',1717,901,'725',940,'0794',1717,1357,'667,0.556],[0.',1829,1829,1829,1829,'611',731,'611',731,'444',776,'444',776,'444',776,'444',776,'5',776,'5',776,'389',776,'389',776,'278',776,'5',776,'5',776,'611',776,'5',776,'278',766,'0.833,0.04,0.96],[0.75',707,'833',707,'417',1198,'111}],[0.',1829,'667,0.556',1627,1627,'],[! 0.444',766,'0.444',766,'0.444',766,'0.611',766,'0.778,0.694,0.! 13','],[ ',1885,'],[',1885,'],[',1885,']],cmex10:[[0.458',',0.04,1.16,{n:','16}],[0.458',1893,'17}],[0.417',1893,'104}],[0.417',1893,'105','}],[0.472,0.04,1.16,{n:','106',1901,'107',1901,'108',1901,'109}],[0.583',1893,'110}],[0.583',1893,'111',1901,'68',1901,'69}],[0.333',',0,0.6,{delim:{rep:','12}}],[0.556',1917,'13}}],[0.578',1893,'46}],[0.578',1893,'47}],[0.597',',0.04,1.76,{n:','18}],[0.597',1925,'19}],[0.736',',0.04,2.36,{n:','32}],[0.736',1929,'33}],[0.528',1929,'34}],[0.528',1929,'35}],[0.583',1929,'36}],[0.583',1929,'37}],[0.583',1929,'38}],[0.583',1929,'39}],[0.75',1929,'40}],[0.75',1929,'41}],[0.75',1929,'42}],[0.75',1929,'43}],[1.04',1929,'44}],[1.04',1929,'45}],[0.792',',0.04,2.96,{n:','48}],[0.792',1957,'49}],[0.583',1957,'50}],[0.583',1957,'51}],[0.639',1957,'52}],[0.639',1957,'53}],[0.639',1957,'54}],[0.639',1957,'55}],[0.806',1957,'56}],[0.806',1957,'57}],[0.806',',0.04,2.96],[','0.806',1977,'1.28',1977,'1.28',1977,'0.811',1925,'30}],[0.811',1925,'31}],[0.875',',0.04,! 1.76,{delim:{top:','48,bot:64,rep:66}}],[0.875',1989,'49,bot:65,rep:67}}],[0.667',1989,'50,bot:52,rep:54}}],[0.667',1989,'51,bot:53,rep:55','}}],[0.667,0.04,1.76,{delim:{bot:','52,rep:54',1997,'53,rep:55','}}],[0.667,0,0.6,{delim:{top:','50,rep:54',2001,'51,rep:55','}}],[0.889,0,0.9,{delim:{top:','56,mid:60,bot:58,rep:62',2005,'57,mid:61,bot:59,rep:62',2005,'56,bot:58,rep:62',2005,'57,bot:59,rep:62','}}],[0.889,0,1.8,{delim:{rep:','63',2013,'119}}],[0.889,0,0.3,{delim:{rep:62',2001,'120,bot:121,rep:63}}],[0.875',1989,'56,bot:59,rep:62}}],[0.875',1989,'57,bot:58,rep:62}}],[0.875',1917,'66}}],[0.875',1917,'67}}],[0.611',1925,'28}],[0.611',1925,'29','}],[0.833,0,1,{n:','71}],[1.11,0.1,1.5],[','0.472,0,1.11,{ic:0.194,n:','73}],[0.556,0,2.22,{ic:0.444}],[1.','11,0,1,{n:','75}],[1.51',',0.1,1.5],[1.',2035,'77}],[1.51',2037,2035,'79}],[1.51',2037,'06,0,1,{n:88}],[0.944,0,1,{n:89}],[',2033,'90',2031,'91',2031,'92',2031,'93',2031,'94',2031,'95}],[1.44',2037,'28,0.1,1.5],[0.556,0,2.2! 2,{ic:0.444}],[1.11',2037,'11',2037,'11',2037,'11,0.1,1.5],[1.! 11,0.1,1 .5],'], - ['[0.944,0,1,{n:97}],[1.28,0.1,1.5','],[0.556,0.722,0,{n:','99','}],[1,0.75,0,{n:','100}],[1.44,0.75',1,'102',3,'103}],[1.44,0.75],[0.472',',0.04,1.76,{n:','20}],[0.472',9,'21}],[0.528',9,'22}],[0.528',9,'23}],[0.528',9,'24}],[0.528',9,'25}],[0.667',9,'26}],[0.667',9,'27','}],[1,0.04,','1.16,{n:113}],[1',9,'114',25,'2.36,{n:115',25,'2.96,{n:116}],[1.06,0,1.8,{delim:{top:118,bot:116,rep:117}}],[1.06,0,0.6],[1.06,0.04,0.56],[0.778',',0,0.6,{delim:{','top:126,','bot:127,rep:119','}}],[0.667',33,'top:120,rep:63}}],[0.667',33,'bot:121,rep:63}}],[0','.45,0.12],[0',41,41,41,'.778',33,34,'rep:119}}],[0.778',33,35,'}}]],cmti10:[[0.627',',0.683,0,{ic:0.','133}],[0.818,0.683],[0.767',52,'094}],[0.','692,0.683],[0.664',52,'153}],[0.743',52,'164}],[0.','716',52,'12}],[0.','767',52,'111}],[0.716',52,'0599}],[0.767',52,'111}],[0.716',52,'103}],[0.','613',',0.694',',0.194,{ic:0.','212,krn:{"39":0.104,"63":0.104,"33":0.104,"41":0.104,"93":0.104},lig:{"105":','14,"108":15}}],[0.','562',74,! 75,72,'588',74,75,72,'882',74,75,72,'894',74,75,72,'307',',0.431,0,{ic:0.','0767}],[0.','332,0.431',75,'0374}],[0.511',',0.694],[0.','511',',0.694,0,{ic:0.','0969','}],[0.511,0.','628',',0,{ic:0.','083}],[0.511',102,'108',104,'562',106,72,'831',100,'46,0,0.17],[0.537',74,75,'105}],[0.','716',95,'0751','}],[0.716',95,122,104,'528,0.0972,{ic:0.0919}],[0.883',52,63,'985',52,63,'767,0.732,0.0486,{ic:0.',55,'256,0.431,0,{krn:{"108":-0.256,"76":-0.321}}],[0.307',102,'124,lig:{"96":','60}}],[0.','514',102,'0696}],[0.818',74,75,'0662}],[0.769',100,'818',',0.75,0.0556',',{ic:0.136}],[0.','767',102,'0969}],[0.307',102,'124',',krn:{"','63":0.102,"33":0.102','},lig:{"39":34}}],[0.','409',',0.75,0.25,{ic:0.','162}],[0.409',158,'0369',104,'75',106,'149}],[0.767,0.562,0.0567,{ic:0.0369','}],[0.307,0.','106',',0.194],[0.','358',95,'0283,','lig:{"45":123}}],[0.','307,0.106],[0.511',158,'162',104,'644,0',',{ic:0.136}],[0.511,0.644,0',178,178,178,'.194',178,178,178,182,178,178,148,'307',95,'0! 582',166,'431',75,'0582',166,'5',75,'0756}],[0.767,0.367,-0.13! 3,{ic:0. 0662',104,'5',168,'511',102,'122,lig:{"96":62}}],[0.767',102,'096}],[0.743,0.683,0,{','krn:{"110":-0.0256,"108":-0.0256,"114":-0.0256,"117":-0.0256,"109":-0.0256,"116":-0.0256,"105":-0.0256,"67":-0.0256,"79":-0.0256,"71":-0.0256,"104":-0.0256,"98":-0.0256,"85":-0.0256,"107":-0.0256,"118":-0.0256,"119":-0.0256,"81":-','0.0256,"84','":-0.0767,"','89',211,'86','":-0.102,"','87',215,'101":-0.0511,"97":-0.0511,"111":-0.0511,"100":-0.0511,"99":-0.0511,"103":-0.0511,"113":-0.0511}}],[0.','704',52,72,'716',52,'145}],[0.','755',52,'094',154,'88','":-0.0256,"','87',230,'65',230,'86',230,'89','":-0.0256}}],[0.','678',52,63,'653',52,'133',154,'111',211,'101',211,'117','":-0.0767,"114":-0.0767,"97":-0.0767,"','65',215,'79":-0.0256,"67":-0.0256,"71":-0.0256,"81":-0.0256}}],[0.','774',52,'0872}],[0.743',52,60,'386',52,'158}],[0.525',52,'14}],[0.769',52,'145',154,254,'627,0.683,0,{krn:{"84',211,'89',211,'86',215,'87',215,218,'897',52,60,'743',52,60,'767',52,'094',154,'88',230,'87',230,'65',! 230,'86',230,'89',238,'678',52,'103',154,'65":-0.0767}}],[0.','767,0.683',75,55,'729',52,'0387,',209,'0.0256,"84',211,'89',211,'86',215,'87',215,218,'562',52,63,'716',52,'133',154,'121',211,'101',211,'111',251,'117',211,302,'743',52,60,'743',52,'184',154,'111',211,'101',211,'117',251,'65',215,254,'999',52,'184',154,302,'743',52,'158',154,254,'743',52,'194',154,'101',211,'111',251,'117',211,302,'613',52,224,'307',158,'188}],[0.514',102,'169}],[0.307',158,119,'511',102,'0665',166,'668',106,'118}],[0.307',102,137,'92}}],[0.','511',95,96,'46',102,'0631',154,218,'46',95,'0565',154,218,'511',102,'103',',krn:{"108":0.0511}}],[0.','46',95,122,154,218,'307',74,75,76,'12,"102":11,"108":13}}],[0.','46,0.431',75,'0885}],[0.','511',102,96,'307,0.655',106,'102',166,'655',75,224,'46',102,'108}],[0.','256',102,'103',408,'818',95,96,'562',95,'0767',154,'39":-0.102}}],[0.511',95,'0631',154,218,'511,0.431',75,'0631',154,218,'46,0.431',75,421,'422',95,'108',154,218,'409',95,'0821}],[0.332,0.61! 5',106,'0949}],[0.537',95,96,'46',95,434,'664',95,'108',408,'4! 64',95,6 3,'486,0.431',75,421,'409',95,'123}],[0.511',95,'0921',',lig:{"45":124}}],[1.','02',95,'0921}],[0.511',102,'122',104,'668',106,'116',104,'668',106,'105}]],cmbx10:[[0.692',',0.686],[0.','958',503,'894',503,'806',503,'767',503,'9',503,'831',503,'894',503,'831',503,'894',503,'831',503,'671',102,'109,krn:{"39":0.109,"63":0.109,"33":0.109,"41":0.109,"93":0.109},lig:{"105":',77,'639',100,'639',100,'958',100,'958',100,'319',',0.444],[0.','351,0.444',168,'575',100,'575',100,'575,0.','632],[0.575',100,544,'596],[0.869',100,'511,0,0.17],[0.597',100,'831',537,'894',537,544,'542,0.0972],[1.04,0.686],[1.17',503,'894,0.735,0.0486],[0.319',',0.444,0,{krn:{"','108":-0.319,"76":-0.378}}],[0.35',',0.694,0,{lig:{"96":',138,'603',100,'958',74,168,'575',147,'],[0.958',147,'],[0.894',100,'319',',0.694,0,{krn:{"','63":0.128,"33":0.128',156,'447',',0.75,0.25],[0.','447',580,544,'75],[0.894,0.633,0.133],[0.','319,0.156',168,'383,0.444,0,{',172,585,'],[0.575',580,544,'644],[','0.575,0.644],[0.575,0.6! 44],[',594,594,594,'0.',544,'644],[0.319',537,'319,0.444',168,'35,0.5',168,'894,0.391,-0.109],[0.543,0.5',168,'543',562,'62}}],[0.894',100,'869',',0.686,0,{krn:{"','116','":-0.0319,"','67',615,'79',615,'71',615,'85',615,'81',615,'84":-0.0958,"89":-0.0958,"86":-0.128,"87":-0.128}}],[','0.818',503,'831',503,'882',613,'88',615,'87',615,'65',615,'86',615,'89','":-0.0319}}],[0.','756',503,'724,0.686,0,{','krn:{"111":-0.0958,"101":-0.0958,"117":-0.0958,"114":-0.0958,"97":-0.0958,"65":-0.128,"79":-0.0319,"67":-0.0319,"71":-0.0319,"81":-0.0319}}],[','0.904',503,'9',503,'436',613,'73','":0.0319}}],[0.','594',503,'901',613,'79',615,'67',615,'71',615,'81',642,'692',613,626,'1.09',503,'9',503,'864',613,'88',615,'87',615,'65',615,'86',615,'89',642,'786',613,'65":-0.0958,"111',615,'101',615,'97',615,'46":-0.0958,"44":-0.0958}}],[0.','864,0.686',168,'862',613,'116',615,'67',615,'79',615,'71',615,'85',615,'81',615,626,'0.639',503,'8',613,'121',615,'101":-0.0958,"111":-0.0958,"114":-0.0958,! "97":-0.0958,"65":-0.0958,"117":-0.0958}}],[0.','885',503,'869! ,0.686', 106,'016,',646,'1.19,0.686',106,'016,',646,'0.869',613,'79',615,'67',615,'71',615,'81',642,'869,0.686',106,'0287',154,718,'703',503,'319',580,'603',100,'319',580,'575',100,'319',100,'319',562,391,'559',560,'11... [truncated message content] |