You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by ni...@apache.org on 2002/03/06 18:00:29 UTC

cvs commit: xml-cocoon2/src/webapp/samples/poi/stylesheets simple-page2xls.xsl simple-sql2xls.xsl

nicolaken    02/03/06 09:00:29

  Modified:    src/webapp sitemap.xmap
               src/webapp/docs/samples samples.xml
  Added:       src/webapp/samples/poi sitemap.xmap
               src/webapp/samples/poi/content samples.xml
               src/webapp/samples/poi/content/static anova-2w-wrep.xml
                        hypothetical-sales.xml regress.xml test-date.xml
                        test-format.xml test-indent.xml test-math.xml
                        web_page_sample.xml
               src/webapp/samples/poi/stylesheets simple-page2xls.xsl
                        simple-sql2xls.xsl
  Log:
  Jakarta POI elementprocessor component, HSSF Serializer and samples. Original code by Marc Johnson (mjohnson at apache dot org) and  Andrew C. Oliver (acoliver at apache dot org).
  
  Revision  Changes    Path
  1.36      +8 -0      xml-cocoon2/src/webapp/sitemap.xmap
  
  Index: sitemap.xmap
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/webapp/sitemap.xmap,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- sitemap.xmap	5 Mar 2002 13:33:46 -0000	1.35
  +++ sitemap.xmap	6 Mar 2002 17:00:27 -0000	1.36
  @@ -518,6 +518,14 @@
       </map:match>
     </map:pipeline>
   
  +  <!-- mount other sample pages
  +  -->
  +  <map:pipeline>
  +    <map:match pattern="samples/*/**">
  +      <map:mount uri-prefix="samples/{1}" src="samples/{1}/" check-reload="yes"/>
  +    </map:match>   
  +  </map:pipeline>
  +  
     <!-- "automount" setup
     This causes directories added under "mount"
     (even with Cocoon already running) to be activated automagically
  
  
  
  1.11      +7 -1      xml-cocoon2/src/webapp/docs/samples/samples.xml
  
  Index: samples.xml
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/webapp/docs/samples/samples.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- samples.xml	18 Feb 2002 14:09:51 -0000	1.10
  +++ samples.xml	6 Mar 2002 17:00:28 -0000	1.11
  @@ -1,6 +1,6 @@
   <?xml version="1.0" encoding="iso-8859-1"?>
   
  -<!-- CVS: $Id: samples.xml,v 1.10 2002/02/18 14:09:51 cziegeler Exp $ -->
  +<!-- CVS: $Id: samples.xml,v 1.11 2002/03/06 17:00:28 nicolaken Exp $ -->
   
   <samples xmlns:xlink="http://www.w3.org/1999/xlink">
   
  @@ -72,6 +72,12 @@
       Samples showing how to perform form processing, state management,
       and simple web-application with login and protected resources.
      </sample>
  +   
  +   <sample name="Legacy file formats" href="samples/poi/">
  +    Samples showing how to use Apache POI to use common office file formats
  +    with Cocoon.
  +   </sample>
  +   
     </group>
   
     <group name="System Tools And Pages">
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/sitemap.xmap
  
  Index: sitemap.xmap
  ===================================================================
  <?xml version="1.0"?>
  <map:sitemap xmlns:map="http://apache.org/cocoon/sitemap/1.0">
  
   <map:components>
    <map:generators default="file"/>
    <map:transformers default="xslt"/>
    <map:readers default="resource"/>
    <map:serializers default="html">
      <map:serializer name="xls" src="org.apache.cocoon.serialization.HSSFSerializer" mime-type="application/vnd.ms-excel"/>
    </map:serializers>
    <map:matchers default="wildcard"/>
    <map:selectors default="browser"/>
   </map:components>
  
   <map:pipelines>
    <map:pipeline>
   
     <map:match pattern="">
      <map:redirect-to uri="welcome"/>
     </map:match>
  
     <map:match pattern="welcome">
      <map:generate src="content/samples.xml"/>
      <map:transform src="context://stylesheets/simple-samples2html.xsl"/>
      <map:serialize/>
     </map:match>
  
     <map:match pattern="hello.xls">
      <map:generate src="context://docs/samples/hello-page.xml"/>
      <map:transform src="stylesheets/simple-page2xls.xsl"/>
      <map:serialize type="xls"/>
     </map:match>
  
      <map:match pattern="*.xls">
      <map:generate src="content/static/{1}.xml"/>
      <map:serialize type="xls"/>
     </map:match>
     
     <map:match pattern="sql-xls/*.xls">
      <map:generate src="context://docs/samples/sql/{1}.xml"/>
      <map:transform type="sql">
      <map:parameter name="use-connection" value="personnel"/>
      </map:transform>
  
     <map:transform src="stylesheets/simple-sql2xls.xsl"/>
      <map:serialize type="xls"/>
     </map:match>
  
     <!-- ========================= Resources ================================ -->
  
     <map:match pattern="sites/styles/**.css">
      <map:read src="context://resources/styles/{1}.css" mime-type="text/css"/>
     </map:match>
  
     <map:match pattern="images/**.gif">
      <map:read src="context://resources/images/{1}.gif" mime-type="image/gif"/>
     </map:match>
  
     <map:match pattern="images/**.jpg">
      <map:read src="context://resources/images/{1}.jpg" mime-type="image/jpg"/>
     </map:match>
  
     <map:match pattern="images/**.png">
      <map:read src="context://resources/images/{1}.png" mime-type="image/png"/>
     </map:match>
      
     <!-- delegate to parent sitemap 
     <map:handle-errors/> -->
  
    </map:pipeline>
  
   </map:pipelines>
  
  </map:sitemap>
  
  
  
  <!-- end of file -->
  
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/content/samples.xml
  
  Index: samples.xml
  ===================================================================
  <?xml version="1.0" encoding="iso-8859-1"?>
  <samples xmlns:xlink="http://www.w3.org/1999/xlink">
  
     <group name="Main examples page.">
        <sample name="Back" href="../..">to Cocoon examples main page</sample>
     </group>
  
     <group name="Hello World samples">
        <sample name="Xls serialized Hello World" href="hello.xls">Source is obtained from original Cocoon demo (parent sitemap) and serialized with Poi Serializer after being converted in Gnumeric xml format.</sample>
     </group>
  
     <group name="Static xls serialization samples">
        <sample name="web_page_sample" href="web_page_sample.xls">Web Page</sample>
        <sample name="hypothetical-sales" href="hypothetical-sales.xls">Hypothetical Sales</sample>
        <sample name="regress" href="regress.xls">Regression</sample>
        <sample name="anova-2w-wrep" href="anova-2w-wrep.xls">Anova</sample>      
        <sample name="test-date" href="test-date.xls">Date test</sample>
        <sample name="test-format" href="test-format.xls">Formatting test</sample>
        <sample name="test-indent" href="test-indent.xls">Indentation test</sample>
        <sample name="test-math" href="test-math.xls">Math test</sample>
     </group>
  
  <!--
     <group name="Dynamic xls serialization samples">
        <sample name="SQL query from Cocoon samples transformed in Gnumeric format and serialized to xls." href="sql-xls/sql-page.xls">Source is obtained from Cocoon original sql sample in parent sitemap.</sample>
     </group>
  -->   
  
  </samples>
  
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/content/static/anova-2w-wrep.xml
  
  Index: anova-2w-wrep.xml
  ===================================================================
  <?xml version="1.0"?>
  <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
    <gmr:Attributes>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_horizontal_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_vertical_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_notebook_tabs</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
    </gmr:Attributes>
    <gmr:Summary>
      <gmr:Item>
        <gmr:name>application</gmr:name>
        <gmr:val-string>gnumeric</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>author</gmr:name>
        <gmr:val-string>Andreas J Guelzow</gmr:val-string>
      </gmr:Item>
    </gmr:Summary>
    <gmr:SheetNameIndex>
      <gmr:SheetName>Sheet1</gmr:SheetName>
    </gmr:SheetNameIndex>
    <gmr:Names/>
    <gmr:Geometry Width="960" Height="583"/>
    <gmr:Sheets>
      <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
        <gmr:Name>Sheet1</gmr:Name>
        <gmr:MaxCol>6</gmr:MaxCol>
        <gmr:MaxRow>39</gmr:MaxRow>
        <gmr:Zoom>1.000000</gmr:Zoom>
        <gmr:Names/>
        <gmr:PrintInformation>
          <gmr:Margins>
            <gmr:top Points="28.3" PrefUnit="cm"/>
            <gmr:bottom Points="28.3" PrefUnit="cm"/>
            <gmr:left Points="28.3" PrefUnit="cm"/>
            <gmr:right Points="28.3" PrefUnit="cm"/>
            <gmr:header Points="14.2" PrefUnit="cm"/>
            <gmr:footer Points="14.2" PrefUnit="cm"/>
          </gmr:Margins>
          <gmr:vcenter value="0"/>
          <gmr:hcenter value="0"/>
          <gmr:grid value="0"/>
          <gmr:even_if_only_styles value="0"/>
          <gmr:monochrome value="0"/>
          <gmr:draft value="0"/>
          <gmr:titles value="0"/>
          <gmr:repeat_top value=""/>
          <gmr:repeat_left value=""/>
          <gmr:order>r_then_d</gmr:order>
          <gmr:orientation>landscape</gmr:orientation>
          <gmr:Header Left="" Middle="&amp;[TAB]" Right=""/>
          <gmr:Footer Left="" Middle="Page &amp;[PAGE]" Right=""/>
          <gmr:paper>A4</gmr:paper>
        </gmr:PrintInformation>
        <gmr:Styles>
          <gmr:StyleRegion startCol="0" startRow="25" endCol="0" endRow="25">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="1" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="13" endCol="0" endRow="13">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="1" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="8" startRow="0" endCol="15" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="16" startRow="0" endCol="63" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="0" endCol="7" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="32" endCol="6" endRow="32">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="13" endCol="3" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="14" endCol="0" endRow="18">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="48" endCol="7" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="26" endCol="0" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="33" endCol="6" endRow="33">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="1" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="19" endCol="0" endRow="19">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="1" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="34" endCol="3" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="256" endCol="15" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="7" startRow="32" endCol="7" endRow="47">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="34" endCol="6" endRow="47">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="64" startRow="0" endCol="255" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="0" endCol="3" endRow="11">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="12" endCol="3" endRow="12">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="1" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4096" endCol="63" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="20" endCol="0" endRow="24">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="0" endCol="0" endRow="12">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
        </gmr:Styles>
        <gmr:Cols DefaultSizePts="48">
          <gmr:ColInfo No="0" Unit="48" MarginA="2" MarginB="2" Count="7"/>
        </gmr:Cols>
        <gmr:Rows DefaultSizePts="12.8">
          <gmr:RowInfo No="0" Unit="12.8" MarginA="0" MarginB="0" Count="9"/>
          <gmr:RowInfo No="10" Unit="12.8" MarginA="1" MarginB="0" Count="24"/>
        </gmr:Rows>
        <gmr:Selections CursorCol="0" CursorRow="46">
          <gmr:Selection startCol="0" startRow="46" endCol="0" endRow="46"/>
        </gmr:Selections>
        <gmr:Cells>
          <gmr:Cell Col="1" Row="0" ValueType="60">
            <gmr:Content>Fert. 1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="0" ValueType="60">
            <gmr:Content>Fert. 2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="0" ValueType="60">
            <gmr:Content>Fert. 3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="1" ValueType="60">
            <gmr:Content>Seed 1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="1" ValueType="40">
            <gmr:Content>14.3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="1" ValueType="40">
            <gmr:Content>18.1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="1" ValueType="40">
            <gmr:Content>17.6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="2" ValueType="40">
            <gmr:Content>14.5</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="2" ValueType="40">
            <gmr:Content>17.6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="2" ValueType="40">
            <gmr:Content>18.2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="3" ValueType="40">
            <gmr:Content>11.5</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="3" ValueType="40">
            <gmr:Content>17.1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="3" ValueType="40">
            <gmr:Content>18.9</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="4" ValueType="40">
            <gmr:Content>13.6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="4" ValueType="40">
            <gmr:Content>17.6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="4" ValueType="40">
            <gmr:Content>18.2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="5" ValueType="60">
            <gmr:Content>Seed 2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="5" ValueType="40">
            <gmr:Content>12.6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="5" ValueType="40">
            <gmr:Content>10.5</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="5" ValueType="40">
            <gmr:Content>15.7</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="6" ValueType="40">
            <gmr:Content>11.2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="6" ValueType="40">
            <gmr:Content>12.8</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="6" ValueType="40">
            <gmr:Content>17.5</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="7" ValueType="40">
            <gmr:Content>11</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="7" ValueType="40">
            <gmr:Content>8.3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="7" ValueType="40">
            <gmr:Content>16.7</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="8" ValueType="40">
            <gmr:Content>12.1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="8" ValueType="40">
            <gmr:Content>9.1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="8" ValueType="40">
            <gmr:Content>16.6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="10" ValueType="60">
            <gmr:Content>Anova: Two-Factor With Replication</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="12" ValueType="60">
            <gmr:Content>SUMMARY</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="12" ValueType="60">
            <gmr:Content>Fert. 1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="12" ValueType="60">
            <gmr:Content>Fert. 2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="12" ValueType="60">
            <gmr:Content>Fert. 3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="12" ValueType="60">
            <gmr:Content>Total</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="13" ValueType="60">
            <gmr:Content>Seed 1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="14" ValueType="60">
            <gmr:Content>Count</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="14" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="14" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="14" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="14" ValueType="30">
            <gmr:Content>12</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="15" ValueType="60">
            <gmr:Content>Sum</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="15" ValueType="40">
            <gmr:Content>53.9</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="15" ValueType="40">
            <gmr:Content>70.4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="15" ValueType="40">
            <gmr:Content>72.9</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="15" ValueType="40">
            <gmr:Content>197.2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="16" ValueType="60">
            <gmr:Content>Average</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="16" ValueType="40">
            <gmr:Content>13.475</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="16" ValueType="40">
            <gmr:Content>17.6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="16" ValueType="40">
            <gmr:Content>18.225</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="16" ValueType="40">
            <gmr:Content>16.4333333333333</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="17" ValueType="60">
            <gmr:Content>Variance</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="17" ValueType="40">
            <gmr:Content>1.8825</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="17" ValueType="40">
            <gmr:Content>0.166666666666667</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="17" ValueType="40">
            <gmr:Content>0.282499999999999</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="17" ValueType="40">
            <gmr:Content>5.48060606060604</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="19" ValueType="60">
            <gmr:Content>Seed 2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="20" ValueType="60">
            <gmr:Content>Count</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="20" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="20" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="20" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="20" ValueType="30">
            <gmr:Content>12</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="21" ValueType="60">
            <gmr:Content>Sum</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="21" ValueType="40">
            <gmr:Content>46.9</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="21" ValueType="40">
            <gmr:Content>40.7</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="21" ValueType="40">
            <gmr:Content>66.5</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="21" ValueType="40">
            <gmr:Content>154.1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="22" ValueType="60">
            <gmr:Content>Average</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="22" ValueType="40">
            <gmr:Content>11.725</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="22" ValueType="40">
            <gmr:Content>10.175</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="22" ValueType="40">
            <gmr:Content>16.625</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="22" ValueType="40">
            <gmr:Content>12.8416666666667</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="23" ValueType="60">
            <gmr:Content>Variance</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="23" ValueType="40">
            <gmr:Content>0.569166666666667</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="23" ValueType="40">
            <gmr:Content>3.88916666666667</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="23" ValueType="40">
            <gmr:Content>0.5425</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="23" ValueType="40">
            <gmr:Content>9.60810606060609</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="25" ValueType="60">
            <gmr:Content>Total</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="26" ValueType="60">
            <gmr:Content>Count</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="26" ValueType="30">
            <gmr:Content>8</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="26" ValueType="30">
            <gmr:Content>8</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="26" ValueType="30">
            <gmr:Content>8</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="27" ValueType="60">
            <gmr:Content>Sum</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="27" ValueType="40">
            <gmr:Content>100.8</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="27" ValueType="40">
            <gmr:Content>111.1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="27" ValueType="40">
            <gmr:Content>139.4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="28" ValueType="60">
            <gmr:Content>Average</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="28" ValueType="40">
            <gmr:Content>12.6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="28" ValueType="40">
            <gmr:Content>13.8875</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="28" ValueType="40">
            <gmr:Content>17.425</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="29" ValueType="60">
            <gmr:Content>Variance</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="29" ValueType="40">
            <gmr:Content>1.92571428571432</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="29" ValueType="40">
            <gmr:Content>17.4898214285715</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="29" ValueType="40">
            <gmr:Content>1.08499999999995</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="32" ValueType="60">
            <gmr:Content>ANOVA</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="33" ValueType="60">
            <gmr:Content>Source of Variation</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="33" ValueType="60">
            <gmr:Content>SS</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="33" ValueType="60">
            <gmr:Content>df</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="33" ValueType="60">
            <gmr:Content>MS</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="33" ValueType="60">
            <gmr:Content>F</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="33" ValueType="60">
            <gmr:Content>P-value</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="33" ValueType="60">
            <gmr:Content>F crit</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="34" ValueType="60">
            <gmr:Content>Sample</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="34" ValueType="40">
            <gmr:Content>77.4004166666665</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="34" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="34" ValueType="40">
            <gmr:Content>77.4004166666665</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="34" ValueType="40">
            <gmr:Content>63.3348107739529</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="34" ValueType="40">
            <gmr:Content>2.63979347138292e-07</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="34" ValueType="40">
            <gmr:Content>4.41387341917056</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="35" ValueType="60">
            <gmr:Content>Columns</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="35" ValueType="40">
            <gmr:Content>99.8724999999996</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="35" ValueType="30">
            <gmr:Content>2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="35" ValueType="40">
            <gmr:Content>49.9362499999998</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="35" ValueType="40">
            <gmr:Content>40.8615751789984</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="35" ValueType="40">
            <gmr:Content>2.03370818800739e-07</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="35" ValueType="40">
            <gmr:Content>3.55455714566179</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="36" ValueType="60">
            <gmr:Content>Interaction</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="36" ValueType="40">
            <gmr:Content>44.1058333333339</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="36" ValueType="30">
            <gmr:Content>2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="36" ValueType="40">
            <gmr:Content>22.052916666667</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="36" ValueType="40">
            <gmr:Content>18.0453460620532</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="36" ValueType="40">
            <gmr:Content>5.00437330800508e-05</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="36" ValueType="40">
            <gmr:Content>3.55455714566179</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="37" ValueType="60">
            <gmr:Content>Within</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="37" ValueType="40">
            <gmr:Content>21.9974999999995</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="37" ValueType="30">
            <gmr:Content>18</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="37" ValueType="40">
            <gmr:Content>1.2220833333333</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="39" ValueType="60">
            <gmr:Content>Total</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="39" ValueType="40">
            <gmr:Content>243.376249999999</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="39" ValueType="30">
            <gmr:Content>23</gmr:Content>
          </gmr:Cell>
        </gmr:Cells>
        <gmr:Solver TargetCol="-1" TargetRow="-1" ProblemType="1" Inputs=""/>
      </gmr:Sheet>
    </gmr:Sheets>
    <gmr:UIData SelectedTab="0"/>
  </gmr:Workbook>
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/content/static/hypothetical-sales.xml
  
  Index: hypothetical-sales.xml
  ===================================================================
  <?xml version="1.0"?>
  <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
    <gmr:Attributes>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_horizontal_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_vertical_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_notebook_tabs</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
    </gmr:Attributes>
    <gmr:Summary>
      <gmr:Item>
        <gmr:name>application</gmr:name>
        <gmr:val-string>gnumeric</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>author</gmr:name>
        <gmr:val-string>Jody Goldberg</gmr:val-string>
      </gmr:Item>
    </gmr:Summary>
    <gmr:SheetNameIndex>
      <gmr:SheetName>Sheet 0</gmr:SheetName>
    </gmr:SheetNameIndex>
    <gmr:Names/>
    <gmr:Geometry Width="1166" Height="752"/>
    <gmr:Sheets>
      <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
        <gmr:Name>Sheet 0</gmr:Name>
        <gmr:MaxCol>6</gmr:MaxCol>
        <gmr:MaxRow>20</gmr:MaxRow>
        <gmr:Zoom>1.000000</gmr:Zoom>
        <gmr:Names/>
        <gmr:PrintInformation>
          <gmr:Margins>
            <gmr:top Points="72" PrefUnit="in"/>
            <gmr:bottom Points="72" PrefUnit="in"/>
            <gmr:left Points="54" PrefUnit="in"/>
            <gmr:right Points="54" PrefUnit="in"/>
            <gmr:header Points="36" PrefUnit="in"/>
            <gmr:footer Points="36" PrefUnit="in"/>
          </gmr:Margins>
          <gmr:vcenter value="0"/>
          <gmr:hcenter value="0"/>
          <gmr:grid value="0"/>
          <gmr:even_if_only_styles value="1"/>
          <gmr:monochrome value="0"/>
          <gmr:draft value="0"/>
          <gmr:titles value="0"/>
          <gmr:repeat_top value=""/>
          <gmr:repeat_left value=""/>
          <gmr:order>d_then_r</gmr:order>
          <gmr:orientation>landscape</gmr:orientation>
          <gmr:Header Left="" Middle="&amp;[TAB]" Right=""/>
          <gmr:Footer Left="" Middle="Page &amp;[PAGE]" Right=""/>
          <gmr:paper>US-Letter</gmr:paper>
        </gmr:PrintInformation>
        <gmr:Styles>
          <gmr:StyleRegion startCol="1" startRow="13" endCol="1" endRow="13">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="0:0:0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="14" endCol="3" endRow="14">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="#,##0_);[red](#,##0)">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="1" endCol="1" endRow="1">
            <gmr:Style HAlign="1" VAlign="1" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="#,##0_);[red](#,##0)">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="6" Color="0:0:0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="0:0:0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="13" endCol="0" endRow="13">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="14" endCol="1" endRow="14">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="#,##0_);[red](#,##0)">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="0:0:0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="15" endCol="3" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="14" endCol="0" endRow="14">
            <gmr:Style HAlign="4" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="8" startRow="0" endCol="15" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="16" startRow="0" endCol="63" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="7" startRow="0" endCol="7" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="21" endCol="6" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="0" endCol="6" endRow="19">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="0" endCol="5" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="20" endCol="6" endRow="20">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="32" endCol="7" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="16" endCol="3" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="256" endCol="15" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="64" startRow="0" endCol="255" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="2" endCol="3" endRow="12">
            <gmr:Style HAlign="1" VAlign="1" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="#,##0_);[red](#,##0)">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="0" endCol="3" endRow="0">
            <gmr:Style HAlign="8" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4096" endCol="63" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="2" endCol="1" endRow="12">
            <gmr:Style HAlign="1" VAlign="1" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="#,##0_);[red](#,##0)">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="0:0:0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="1" endCol="0" endRow="12">
            <gmr:Style HAlign="4" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="13" endCol="3" endRow="13">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="0" endCol="0" endRow="0">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="1" endCol="3" endRow="1">
            <gmr:Style HAlign="1" VAlign="1" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="#,##0_);[red](#,##0)">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="6" Color="0:0:0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
        </gmr:Styles>
        <gmr:Cols DefaultSizePts="48">
          <gmr:ColInfo No="0" Unit="97" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="1" Unit="80" MarginA="1" MarginB="2" Count="4"/>
          <gmr:ColInfo No="6" Unit="48" MarginA="2" MarginB="2"/>
        </gmr:Cols>
        <gmr:Rows DefaultSizePts="12.8">
          <gmr:RowInfo No="0" Unit="20" MarginA="1" MarginB="0" Count="15"/>
          <gmr:RowInfo No="20" Unit="18" MarginA="0" MarginB="0"/>
        </gmr:Rows>
        <gmr:Selections CursorCol="2" CursorRow="28">
          <gmr:Selection startCol="2" startRow="28" endCol="2" endRow="28"/>
        </gmr:Selections>
        <gmr:Objects>
          <gmr:SheetObjectFilled Type="102" Width="1" ObjectBound="D15:E16" ObjectOffset="0.00934579409658909 0.0370370373129845 0.359375 0.0588235296308994" ObjectAnchorType="0 0 0 0" Direction="255"/>
        </gmr:Objects>
        <gmr:Cells>
          <gmr:Cell Col="1" Row="0" ValueType="60">
            <gmr:Content>DOS</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="0" ValueType="60">
            <gmr:Content>Linux</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="0" ValueType="60">
            <gmr:Content>SCO</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="1" ValueType="60">
            <gmr:Content>Jannuary</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="1" ValueType="30">
            <gmr:Content>1000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="1" ValueType="30">
            <gmr:Content>900</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="1" ValueType="30">
            <gmr:Content>500</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="2" ValueType="60">
            <gmr:Content>February</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="2" ValueType="30">
            <gmr:Content>900</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="2" ValueType="30">
            <gmr:Content>2500</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="2" ValueType="30">
            <gmr:Content>300</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="3" ValueType="60">
            <gmr:Content>March</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="3" ValueType="30">
            <gmr:Content>800</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="3" ValueType="30">
            <gmr:Content>4100</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="3" ValueType="30">
            <gmr:Content>100</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="4" ValueType="60">
            <gmr:Content>April</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="4" ValueType="30">
            <gmr:Content>700</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="4" ValueType="30">
            <gmr:Content>5700</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="4" ValueType="30">
            <gmr:Content>-100</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="5" ValueType="60">
            <gmr:Content>May</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="5" ValueType="30">
            <gmr:Content>600</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="5" ValueType="30">
            <gmr:Content>7300</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="5" ValueType="30">
            <gmr:Content>-300</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="6" ValueType="60">
            <gmr:Content>June</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="6" ValueType="30">
            <gmr:Content>500</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="6" ValueType="30">
            <gmr:Content>8900</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="6" ValueType="30">
            <gmr:Content>-500</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="7" ValueType="60">
            <gmr:Content>July</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="7" ValueType="30">
            <gmr:Content>400</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="7" ValueType="30">
            <gmr:Content>10500</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="7" ValueType="30">
            <gmr:Content>-700</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="8" ValueType="60">
            <gmr:Content>August</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="8" ValueType="30">
            <gmr:Content>300</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="8" ValueType="30">
            <gmr:Content>12100</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="8" ValueType="30">
            <gmr:Content>-900</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="9" ValueType="60">
            <gmr:Content>September</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="9" ValueType="30">
            <gmr:Content>200</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="9" ValueType="30">
            <gmr:Content>13700</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="9" ValueType="30">
            <gmr:Content>-1100</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="10" ValueType="60">
            <gmr:Content>October</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="10" ValueType="30">
            <gmr:Content>100</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="10" ValueType="30">
            <gmr:Content>15300</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="10" ValueType="30">
            <gmr:Content>-1300</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="11" ValueType="60">
            <gmr:Content>November</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="11" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="11" ValueType="30">
            <gmr:Content>16900</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="11" ValueType="30">
            <gmr:Content>-1500</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="12" ValueType="60">
            <gmr:Content>December</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="12" ValueType="30">
            <gmr:Content>-100</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="12" ValueType="30">
            <gmr:Content>18500</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="12" ValueType="30">
            <gmr:Content>-1700</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="14" ValueType="60">
            <gmr:Content>Totals:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="14">
            <gmr:Content>=sum(B2:B13)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="14">
            <gmr:Content>=sum(C1:C13)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="14">
            <gmr:Content>=sum(D2:D13)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="20" ValueType="60">
            <gmr:Content>Bad year</gmr:Content>
          </gmr:Cell>
        </gmr:Cells>
        <gmr:Solver TargetCol="-1" TargetRow="-1" ProblemType="1" Inputs=""/>
      </gmr:Sheet>
    </gmr:Sheets>
    <gmr:UIData SelectedTab="0"/>
  </gmr:Workbook>
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/content/static/regress.xml
  
  Index: regress.xml
  ===================================================================
  <?xml version="1.0"?>
  <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
    <gmr:Attributes>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_horizontal_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_vertical_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_notebook_tabs</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
    </gmr:Attributes>
    <gmr:Summary>
      <gmr:Item>
        <gmr:name>application</gmr:name>
        <gmr:val-string>gnumeric</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>author</gmr:name>
        <gmr:val-string>Morten Welinder</gmr:val-string>
      </gmr:Item>
    </gmr:Summary>
    <gmr:SheetNameIndex>
      <gmr:SheetName>Sheet1</gmr:SheetName>
    </gmr:SheetNameIndex>
    <gmr:Names/>
    <gmr:Geometry Width="926" Height="614"/>
    <gmr:Sheets>
      <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
        <gmr:Name>Sheet1</gmr:Name>
        <gmr:MaxCol>6</gmr:MaxCol>
        <gmr:MaxRow>99</gmr:MaxRow>
        <gmr:Zoom>1.000000</gmr:Zoom>
        <gmr:Names/>
        <gmr:PrintInformation>
          <gmr:Margins>
            <gmr:top Points="72" PrefUnit="in"/>
            <gmr:bottom Points="72" PrefUnit="in"/>
            <gmr:left Points="54" PrefUnit="in"/>
            <gmr:right Points="54" PrefUnit="in"/>
            <gmr:header Points="36" PrefUnit="in"/>
            <gmr:footer Points="36" PrefUnit="in"/>
          </gmr:Margins>
          <gmr:vcenter value="0"/>
          <gmr:hcenter value="0"/>
          <gmr:grid value="0"/>
          <gmr:even_if_only_styles value="0"/>
          <gmr:monochrome value="0"/>
          <gmr:draft value="0"/>
          <gmr:titles value="0"/>
          <gmr:repeat_top value=""/>
          <gmr:repeat_left value=""/>
          <gmr:order>r_then_d</gmr:order>
          <gmr:orientation>portrait</gmr:orientation>
          <gmr:Header Left="" Middle="Page &amp;amp;amp;[PAGE]" Right=""/>
          <gmr:Footer Left="" Middle="Page &amp;amp;[PAGE]" Right=""/>
          <gmr:paper>A4</gmr:paper>
        </gmr:PrintInformation>
        <gmr:Styles>
          <gmr:StyleRegion startCol="3" startRow="26" endCol="3" endRow="26">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="14" endCol="4" endRow="14">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="13" endCol="1" endRow="13">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="38" endCol="2" endRow="100">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="19" endCol="1" endRow="26">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="27" endCol="3" endRow="27">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="14" endCol="5" endRow="16">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="27" endCol="1" endRow="27">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="15" endCol="4" endRow="16">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="28" endCol="3" endRow="28">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="12" endCol="3" endRow="16">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="0" endCol="6" endRow="5">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="1" endCol="4" endRow="5">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="17" endCol="5" endRow="18">
            <gmr:Style HAlign="4" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="6" endCol="6" endRow="6">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="0" Shade="1" Indent="0" Fore="0:0:0" Back="0:CCCC:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="12" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="0" endCol="3" endRow="5">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="17" endCol="4" endRow="18">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="29" endCol="3" endRow="30">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="14" endCol="1" endRow="17">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="6" endCol="5" endRow="6">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Fore="0:0:0" Back="0:CCCC:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="12" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="1" endCol="2" endRow="5">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="28" endCol="1" endRow="30">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="0" endCol="0" endRow="5">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="7" endCol="6" endRow="7">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="FFFF:0:0" Back="FFFF:0:0" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="6" endCol="3" endRow="6">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Fore="0:0:0" Back="0:CCCC:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="12" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="14" endCol="0" endRow="30">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="18" endCol="1" endRow="18">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="6" endCol="2" endRow="6">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Fore="0:0:0" Back="0:CCCC:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="12" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="6" endCol="1" endRow="6">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Fore="0:0:0" Back="0:CCCC:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="12" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="100" endCol="6" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="31" endCol="1" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="#,##0.00">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="101" endCol="5" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="19" endCol="4" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="7" endCol="4" endRow="8">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="112" endCol="3" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="32" endCol="1" endRow="32">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="$0.00_);[Red]($0.00)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="9" endCol="4" endRow="9">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="33" endCol="1" endRow="33">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="#,##0.00">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="9" endCol="3" endRow="9">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="10" endCol="3" endRow="10">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="7" startRow="0" endCol="255" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="31" endCol="0" endRow="34">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="&quot;$&quot;#,##0.00_);[Red]\(&quot;$&quot;#,##0.00\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="19" endCol="3" endRow="23">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="11" endCol="3" endRow="11">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="35" endCol="0" endRow="35">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="$0.00_);[Red]($0.00)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="7" endCol="5" endRow="12">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="8" endCol="6" endRow="99">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="FFFF:0:0" Back="FFFF:0:0" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="10" endCol="4" endRow="12">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="34" endCol="1" endRow="36">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="$0.00_);[Red]($0.00)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="0" endCol="4" endRow="0">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="31" endCol="3" endRow="111">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="36" endCol="0" endRow="36">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="&quot;$&quot;#,##0.00_);[Red]\(&quot;$&quot;#,##0.00\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="13" endCol="5" endRow="13">
            <gmr:Style HAlign="4" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="101" endCol="2" endRow="111">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="7" endCol="2" endRow="37">
            <gmr:Style HAlign="8" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="24" endCol="3" endRow="25">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="13" endCol="4" endRow="13">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="0" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="0" endCol="2" endRow="0">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="FFFF:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="7" endCol="1" endRow="12">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="19" endCol="5" endRow="100">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="37" endCol="1" endRow="111">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="0" endCol="1" endRow="0">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
        </gmr:Styles>
        <gmr:Cols DefaultSizePts="48">
          <gmr:ColInfo No="0" Unit="57.6" MarginA="2" MarginB="2" HardSize="1" Count="2"/>
          <gmr:ColInfo No="2" Unit="49.7" MarginA="2" MarginB="2" HardSize="1"/>
          <gmr:ColInfo No="3" Unit="221" MarginA="2" MarginB="2" HardSize="1"/>
          <gmr:ColInfo No="4" Unit="54.3" MarginA="2" MarginB="2" HardSize="1" Count="2"/>
          <gmr:ColInfo No="6" Unit="66.8" MarginA="2" MarginB="2" HardSize="1"/>
        </gmr:Cols>
        <gmr:Rows DefaultSizePts="12.8">
          <gmr:RowInfo No="0" Unit="16" MarginA="0" MarginB="0"/>
          <gmr:RowInfo No="4" Unit="12.8" MarginA="0" MarginB="0"/>
          <gmr:RowInfo No="6" Unit="15.6" MarginA="0" MarginB="0"/>
          <gmr:RowInfo No="7" Unit="12.6" MarginA="0" MarginB="0" Count="24"/>
          <gmr:RowInfo No="31" Unit="13.5" MarginA="0" MarginB="0" Count="6"/>
          <gmr:RowInfo No="37" Unit="12.8" MarginA="0" MarginB="0" Count="63"/>
        </gmr:Rows>
        <gmr:Selections CursorCol="0" CursorRow="38">
          <gmr:Selection startCol="0" startRow="38" endCol="0" endRow="38"/>
        </gmr:Selections>
        <gmr:Cells>
          <gmr:Cell Col="1" Row="0" ValueType="60">
            <gmr:Content>Status:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="0">
            <gmr:Content>=if(and(C8:C1000),&quot;All OK&quot;,&quot;BUG!&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="0" ValueType="60">
            <gmr:Content>Empty cell:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="4" ValueType="60">
            <gmr:Content>Tolerance</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="4" ValueType="40">
            <gmr:Content>0.005</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="6" ValueType="60">
            <gmr:Content>Formula</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="6" ValueType="60">
            <gmr:Content>Expected</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="6" ValueType="60">
            <gmr:Content>Ok?</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="6" ValueType="60">
            <gmr:Content>Comment</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="6" ValueType="60">
            <gmr:Content>Found in</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="6" ValueType="60">
            <gmr:Content>Fixed in</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="6" ValueType="60">
            <gmr:Content>Regression</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="7">
            <gmr:Content>=product(F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="7" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="7" ExprID="1">
            <gmr:Content>=if(iserror(A8),if(iserror(B8),error.type(A8)=error.type(B8),FALSE),if(iserror(B8),FALSE,abs(A8-B8)&lt;$B$5))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="7" ValueType="60">
            <gmr:Content>The empty product is defined as zero by Excel</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="7" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="7" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="7" ExprID="2">
            <gmr:Content>=if(and(not(C8),F8&lt;&gt;&quot;-&quot;,F8&lt;&gt;&quot;&quot;),&quot;Yes&quot;,&quot;&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="8">
            <gmr:Content>=count(F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="8" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="8" ExprID="1"/>
          <gmr:Cell Col="3" Row="8" ValueType="60">
            <gmr:Content>Empty cells should be ignored (single cell)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="8" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="8" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="8" ExprID="2"/>
          <gmr:Cell Col="0" Row="9">
            <gmr:Content>=count(F1:F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="9" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="9" ExprID="1"/>
          <gmr:Cell Col="3" Row="9" ValueType="60">
            <gmr:Content>Empty cells should be ignored (range)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="9" ValueType="60">
            <gmr:Content>-</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="9" ValueType="60">
            <gmr:Content>-</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="9" ExprID="2"/>
          <gmr:Cell Col="0" Row="10">
            <gmr:Content>=average()</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="10">
            <gmr:Content>=1/0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="10" ExprID="1"/>
          <gmr:Cell Col="3" Row="10" ValueType="60">
            <gmr:Content>Empty average should give #DIV/0!</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="10" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="10" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="10" ExprID="2"/>
          <gmr:Cell Col="0" Row="11">
            <gmr:Content>=avedev(F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="11">
            <gmr:Content>=sqrt(-1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="11" ExprID="1"/>
          <gmr:Cell Col="3" Row="11" ValueType="60">
            <gmr:Content>Empty average deviation should be #NUM!</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="11" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="11" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="11" ExprID="2"/>
          <gmr:Cell Col="0" Row="12">
            <gmr:Content>=sum(1,&quot;&quot;,2)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="12">
            <gmr:Content>=1+&quot;a&quot;+2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="12" ExprID="1"/>
          <gmr:Cell Col="3" Row="12" ValueType="60">
            <gmr:Content>Empty strings to var-arg functions should be an error</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="12" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="12" ValueType="60">
            <gmr:Content>-</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="12" ExprID="2"/>
          <gmr:Cell Col="0" Row="13">
            <gmr:Content>=suma(1,&quot;&quot;,2)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="13">
            <gmr:Content>=1+&quot;a&quot;+2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="13" ExprID="1"/>
          <gmr:Cell Col="3" Row="13" ValueType="60">
            <gmr:Content>Empty strings to var-arg functions should be an error</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="13" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="13" ValueType="60">
            <gmr:Content>-</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="13" ExprID="2"/>
          <gmr:Cell Col="0" Row="14">
            <gmr:Content>=+&quot;&quot;</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="14">
            <gmr:Content>=&quot;&quot;</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="14" ExprID="1"/>
          <gmr:Cell Col="3" Row="14" ValueType="60">
            <gmr:Content>Unary + does not alter strings</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="14" ValueType="60">
            <gmr:Content>cvs</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="14" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="14" ExprID="2"/>
          <gmr:Cell Col="0" Row="15">
            <gmr:Content>=isblank(+F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="15">
            <gmr:Content>=0=1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="15" ExprID="1"/>
          <gmr:Cell Col="3" Row="15" ValueType="60">
            <gmr:Content>Unary + changes blank to 0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="15" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="15" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="15" ExprID="2"/>
          <gmr:Cell Col="0" Row="16">
            <gmr:Content>=var(F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="16">
            <gmr:Content>=1/0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="16" ExprID="1"/>
          <gmr:Cell Col="3" Row="16" ValueType="60">
            <gmr:Content>VAR with too few points</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="16" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="16" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="16" ExprID="2"/>
          <gmr:Cell Col="0" Row="17">
            <gmr:Content>=var(1,F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="17">
            <gmr:Content>=1/0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="17" ExprID="1"/>
          <gmr:Cell Col="3" Row="17" ValueType="60">
            <gmr:Content>VAR with too few points</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="17" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="17" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="17" ExprID="2"/>
          <gmr:Cell Col="0" Row="18">
            <gmr:Content>=varp(F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="18">
            <gmr:Content>=1/0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="18" ExprID="1"/>
          <gmr:Cell Col="3" Row="18" ValueType="60">
            <gmr:Content>VARP with too few points</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="18" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="18" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="18" ExprID="2"/>
          <gmr:Cell Col="0" Row="19">
            <gmr:Content>=min(F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="19" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="19" ExprID="1"/>
          <gmr:Cell Col="3" Row="19" ValueType="60">
            <gmr:Content>Empty MIN</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="19" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="19" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="19" ExprID="2"/>
          <gmr:Cell Col="0" Row="20">
            <gmr:Content>=max(F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="20" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="20" ExprID="1"/>
          <gmr:Cell Col="3" Row="20" ValueType="60">
            <gmr:Content>Empty MAX</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="20" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="20" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="20" ExprID="2"/>
          <gmr:Cell Col="0" Row="21">
            <gmr:Content>=median(F1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="21">
            <gmr:Content>=sqrt(-1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="21" ExprID="1"/>
          <gmr:Cell Col="3" Row="21" ValueType="60">
            <gmr:Content>Empty MEDIAN</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="21" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="21" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="21" ExprID="2"/>
          <gmr:Cell Col="0" Row="22">
            <gmr:Content>=quartile(F1,1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="22">
            <gmr:Content>=sqrt(-1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="22" ExprID="1"/>
          <gmr:Cell Col="3" Row="22" ValueType="60">
            <gmr:Content>Empty QUARTILE</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="22" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="22" ValueType="40">
            <gmr:Content>0.53</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="22" ExprID="2"/>
          <gmr:Cell Col="0" Row="23">
            <gmr:Content>=power(-1,1.5)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="23">
            <gmr:Content>=sqrt(-1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="23" ExprID="1"/>
          <gmr:Cell Col="3" Row="23" ValueType="60">
            <gmr:Content>Strange POWER behaviour</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="23" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="23" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="23" ExprID="2"/>
          <gmr:Cell Col="0" Row="24">
            <gmr:Content>=power(0,-1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="24">
            <gmr:Content>=1/0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="24" ExprID="1"/>
          <gmr:Cell Col="3" Row="24" ValueType="60">
            <gmr:Content>Strange POWER behaviour</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="24" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="24" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="24" ExprID="2"/>
          <gmr:Cell Col="0" Row="25">
            <gmr:Content>=power(0,0)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="25">
            <gmr:Content>=sqrt(-1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="25" ExprID="1"/>
          <gmr:Cell Col="3" Row="25" ValueType="60">
            <gmr:Content>Strange POWER behaviour</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="25" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="25" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="25" ExprID="2"/>
          <gmr:Cell Col="0" Row="26">
            <gmr:Content>=mod(10,0)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="26">
            <gmr:Content>=1/0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="26" ExprID="1"/>
          <gmr:Cell Col="3" Row="26" ValueType="60">
            <gmr:Content>Modulo 0 is division by 0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="26" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="26" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="26" ExprID="2"/>
          <gmr:Cell Col="0" Row="27">
            <gmr:Content>=mod(0,0)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="27">
            <gmr:Content>=1/0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="27" ExprID="1"/>
          <gmr:Cell Col="3" Row="27" ValueType="60">
            <gmr:Content>Modulo 0 is division by 0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="27" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="27" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="27" ExprID="2"/>
          <gmr:Cell Col="0" Row="28">
            <gmr:Content>=mod(-1,-3)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="28" ValueType="30">
            <gmr:Content>-1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="28" ExprID="1"/>
          <gmr:Cell Col="3" Row="28" ValueType="60">
            <gmr:Content>Modulo with negative numbers</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="28" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="28" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="28" ExprID="2"/>
          <gmr:Cell Col="0" Row="29">
            <gmr:Content>=mod(-5,-2)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="29" ValueType="30">
            <gmr:Content>-1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="29" ExprID="1"/>
          <gmr:Cell Col="3" Row="29" ValueType="60">
            <gmr:Content>Modulo with negative numbers</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="29" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="29" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="29" ExprID="2"/>
          <gmr:Cell Col="0" Row="30">
            <gmr:Content>=mod(2,-3)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="30" ValueType="30">
            <gmr:Content>-1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="30" ExprID="1"/>
          <gmr:Cell Col="3" Row="30" ValueType="60">
            <gmr:Content>Modulo with negative numbers</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="30" ValueType="40">
            <gmr:Content>0.47</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="30" ValueType="40">
            <gmr:Content>0.48</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="30" ExprID="2"/>
          <gmr:Cell Col="0" Row="31">
            <gmr:Content>=pv(-1,10,100)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="31" ValueType="50" ValueFormat="#,##0.00">
            <gmr:Content>#DIV/0!</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="31" ExprID="1"/>
          <gmr:Cell Col="3" Row="31" ValueType="60">
            <gmr:Content>Negative rates</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="31" ValueType="40">
            <gmr:Content>0.65</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="31" ValueType="40">
            <gmr:Content>0.66</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="31" ExprID="2"/>
          <gmr:Cell Col="0" Row="32">
            <gmr:Content>=pv(-0.1,10,100)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="32" ValueType="40" ValueFormat="#,##0.00">
            <gmr:Content>-1867.97199079244</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="32" ExprID="1"/>
          <gmr:Cell Col="3" Row="32" ValueType="60">
            <gmr:Content>Negative rates</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="32" ValueType="40">
            <gmr:Content>0.65</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="32" ValueType="40">
            <gmr:Content>0.66</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="32" ExprID="2"/>
          <gmr:Cell Col="0" Row="33">
            <gmr:Content>=pv(-1e-08,8,-200)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="33" ValueType="40" ValueFormat="#,##0.00">
            <gmr:Content>1600.00007830802</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="33" ExprID="1"/>
          <gmr:Cell Col="3" Row="33" ValueType="60">
            <gmr:Content>Negative rates</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="33" ValueType="40">
            <gmr:Content>0.65</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="33" ValueType="40">
            <gmr:Content>0.66</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="33" ExprID="2"/>
          <gmr:Cell Col="0" Row="34">
            <gmr:Content>=pv(-9,8,-200)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="34" ValueType="40">
            <gmr:Content>-22.22</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="34" ExprID="1"/>
          <gmr:Cell Col="3" Row="34" ValueType="60">
            <gmr:Content>Negative rates</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="34" ValueType="40">
            <gmr:Content>0.65</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="34" ValueType="40">
            <gmr:Content>0.66</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="34" ExprID="2"/>
          <gmr:Cell Col="0" Row="35">
            <gmr:Content>=pv(9,8,-200)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="35" ValueType="40">
            <gmr:Content>22.22</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="35" ExprID="1"/>
          <gmr:Cell Col="3" Row="35" ValueType="60">
            <gmr:Content>Negative rates</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="35" ValueType="40">
            <gmr:Content>0.65</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="35" ValueType="40">
            <gmr:Content>0.66</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="35" ExprID="2"/>
          <gmr:Cell Col="0" Row="36">
            <gmr:Content>=pv(0,12,-263)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="36" ValueType="40" ValueFormat="#,##0.00">
            <gmr:Content>3156</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="36" ExprID="1"/>
          <gmr:Cell Col="3" Row="36" ValueType="60">
            <gmr:Content>Negative rates</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="36" ValueType="40">
            <gmr:Content>0.65</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="36" ValueType="40">
            <gmr:Content>0.66</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="36" ExprID="2"/>
          <gmr:Cell Col="0" Row="37">
            <gmr:Content>=concatenate(&quot;xxx&quot;,1/0,&quot;yyy&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="37">
            <gmr:Content>=1/0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="37" ExprID="1"/>
          <gmr:Cell Col="3" Row="37" ValueType="60">
            <gmr:Content>CONCATENATE is strict</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="37" ValueType="40">
            <gmr:Content>0.67</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="37" ValueType="40">
            <gmr:Content>0.68</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="37" ExprID="2"/>
        </gmr:Cells>
        <gmr:Solver TargetCol="-1" TargetRow="-1" ProblemType="1" Inputs=""/>
      </gmr:Sheet>
    </gmr:Sheets>
    <gmr:UIData SelectedTab="0"/>
  </gmr:Workbook>
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/content/static/test-date.xml
  
  Index: test-date.xml
  ===================================================================
  <?xml version="1.0"?>
  <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
    <gmr:Attributes>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_horizontal_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_vertical_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_notebook_tabs</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
    </gmr:Attributes>
    <gmr:Summary>
      <gmr:Item>
        <gmr:name>application</gmr:name>
        <gmr:val-string>gnumeric</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>author</gmr:name>
        <gmr:val-string/>
      </gmr:Item>
    </gmr:Summary>
    <gmr:SheetNameIndex>
      <gmr:SheetName>Sheet 0</gmr:SheetName>
    </gmr:SheetNameIndex>
    <gmr:Names/>
    <gmr:Geometry Width="1166" Height="752"/>
    <gmr:Sheets>
      <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
        <gmr:Name>Sheet 0</gmr:Name>
        <gmr:MaxCol>3</gmr:MaxCol>
        <gmr:MaxRow>11</gmr:MaxRow>
        <gmr:Zoom>1.000000</gmr:Zoom>
        <gmr:Names/>
        <gmr:PrintInformation>
          <gmr:Margins>
            <gmr:top Points="28.3" PrefUnit="cm"/>
            <gmr:bottom Points="28.3" PrefUnit="cm"/>
            <gmr:left Points="28.3" PrefUnit="cm"/>
            <gmr:right Points="28.3" PrefUnit="cm"/>
            <gmr:header Points="14.2" PrefUnit="cm"/>
            <gmr:footer Points="14.2" PrefUnit="cm"/>
          </gmr:Margins>
          <gmr:vcenter value="0"/>
          <gmr:hcenter value="0"/>
          <gmr:grid value="0"/>
          <gmr:even_if_only_styles value="0"/>
          <gmr:monochrome value="0"/>
          <gmr:draft value="0"/>
          <gmr:titles value="0"/>
          <gmr:repeat_top value=""/>
          <gmr:repeat_left value=""/>
          <gmr:order>r_then_d</gmr:order>
          <gmr:orientation>landscape</gmr:orientation>
          <gmr:Header Left="" Middle="&amp;[TAB]" Right=""/>
          <gmr:Footer Left="" Middle="Page &amp;[PAGE]" Right=""/>
          <gmr:paper>A4</gmr:paper>
        </gmr:PrintInformation>
        <gmr:Styles>
          <gmr:StyleRegion startCol="2" startRow="9" endCol="3" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="0" endCol="1" endRow="2">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="0.000000">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="0" endCol="0" endRow="2">
            <gmr:Style HAlign="4" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="12" endCol="1" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="10" endCol="0" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="3" endCol="1" endRow="3">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="0" endCol="15" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="16" startRow="0" endCol="63" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="0" endCol="2" endRow="5">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="6" endCol="2" endRow="6">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="4" endCol="1" endRow="6">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="0">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="0" endCol="3" endRow="7">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4" endCol="0" endRow="6">
            <gmr:Style HAlign="4" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="7" endCol="2" endRow="7">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="8" endCol="3" endRow="8">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="16" endCol="3" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="256" endCol="15" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="8" endCol="1" endRow="9">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="0">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="8" endCol="0" endRow="9">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="64" startRow="0" endCol="255" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="10" endCol="1" endRow="10">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="11" endCol="1" endRow="11">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="0">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4096" endCol="63" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
        </gmr:Styles>
        <gmr:Cols DefaultSizePts="48">
          <gmr:ColInfo No="0" Unit="175" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="1" Unit="126" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="2" Unit="80" MarginA="1" MarginB="2" Count="2"/>
        </gmr:Cols>
        <gmr:Rows DefaultSizePts="12.8">
          <gmr:RowInfo No="0" Unit="20" MarginA="1" MarginB="0" Count="9"/>
        </gmr:Rows>
        <gmr:Selections CursorCol="0" CursorRow="0">
          <gmr:Selection startCol="0" startRow="0" endCol="0" endRow="0"/>
        </gmr:Selections>
        <gmr:Cells>
          <gmr:Cell Col="0" Row="0" ValueType="60" ValueFormat="@">
            <gmr:Content>Current serial number</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="0">
            <gmr:Content>=now()</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Serial number for today:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="1">
            <gmr:Content>=today()</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="2" ValueType="60" ValueFormat="@">
            <gmr:Content>Current time serial:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="2">
            <gmr:Content>=B1-B2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="4" ValueType="60" ValueFormat="@">
            <gmr:Content>This year is:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="4">
            <gmr:Content>=year(B1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="5" ValueType="60" ValueFormat="@">
            <gmr:Content>this month is:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="5">
            <gmr:Content>=month(B1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="6" ValueType="60" ValueFormat="@">
            <gmr:Content>This day is:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="6">
            <gmr:Content>=day(B1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="6">
            <gmr:Content>=day(today())</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="8" ValueType="60" ValueFormat="@">
            <gmr:Content>Tomorrow is:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="8">
            <gmr:Content>=day(date(year(now()),month(now()),1+day(now())))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="8">
            <gmr:Content>=day(now()+1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="8">
            <gmr:Content>=day(today()+1)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="9" ValueType="60" ValueFormat="@">
            <gmr:Content>Next month is:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="9">
            <gmr:Content>=month(date(year(now()),1+month(now()),day(now())))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="11" ValueType="40" ValueFormat="0">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
        </gmr:Cells>
        <gmr:Solver TargetCol="-1" TargetRow="-1" ProblemType="1" Inputs=""/>
      </gmr:Sheet>
    </gmr:Sheets>
    <gmr:UIData SelectedTab="0"/>
  </gmr:Workbook>
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/content/static/test-format.xml
  
  Index: test-format.xml
  ===================================================================
  <?xml version="1.0"?>
  <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
    <gmr:Attributes>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_horizontal_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_vertical_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_notebook_tabs</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
    </gmr:Attributes>
    <gmr:Summary>
      <gmr:Item>
        <gmr:name>application</gmr:name>
        <gmr:val-string>gnumeric</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>author</gmr:name>
        <gmr:val-string>Jody Goldberg</gmr:val-string>
      </gmr:Item>
    </gmr:Summary>
    <gmr:SheetNameIndex>
      <gmr:SheetName>Sheet 0</gmr:SheetName>
    </gmr:SheetNameIndex>
    <gmr:Names/>
    <gmr:Geometry Width="1169" Height="746"/>
    <gmr:Sheets>
      <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
        <gmr:Name>Sheet 0</gmr:Name>
        <gmr:MaxCol>8</gmr:MaxCol>
        <gmr:MaxRow>6</gmr:MaxRow>
        <gmr:Zoom>1.000000</gmr:Zoom>
        <gmr:Names/>
        <gmr:PrintInformation>
          <gmr:Margins>
            <gmr:top Points="72" PrefUnit="in"/>
            <gmr:bottom Points="72" PrefUnit="in"/>
            <gmr:left Points="54" PrefUnit="in"/>
            <gmr:right Points="54" PrefUnit="in"/>
            <gmr:header Points="36" PrefUnit="in"/>
            <gmr:footer Points="36" PrefUnit="in"/>
          </gmr:Margins>
          <gmr:vcenter value="0"/>
          <gmr:hcenter value="0"/>
          <gmr:grid value="0"/>
          <gmr:even_if_only_styles value="0"/>
          <gmr:monochrome value="0"/>
          <gmr:draft value="0"/>
          <gmr:titles value="0"/>
          <gmr:repeat_top value=""/>
          <gmr:repeat_left value=""/>
          <gmr:order>d_then_r</gmr:order>
          <gmr:orientation>landscape</gmr:orientation>
          <gmr:Header Left="" Middle="&amp;[TAB]" Right=""/>
          <gmr:Footer Left="" Middle="Page &amp;[PAGE]" Right=""/>
          <gmr:paper>US-Letter</gmr:paper>
        </gmr:PrintInformation>
        <gmr:Styles>
          <gmr:StyleRegion startCol="1" startRow="3" endCol="8" endRow="3">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="1" endCol="1" endRow="1">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="0" endCol="0" endRow="1">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="4" endCol="8" endRow="4">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="[Blue][&lt;1000];[Red][&lt;100];[Yellow][&lt;0];[Green][=0];[Blue][&gt;10];[Red][&gt;100];[Yellow][&gt;1000]">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="7" endCol="2" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="2" endCol="0" endRow="2">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4" endCol="0" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="3" endCol="0" endRow="3">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="12" startRow="0" endCol="15" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="4" endCol="1" endRow="4">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="[Blue][&gt;=1000];[Red][&gt;=100];[Yellow][&gt;0];[Green][=0];[Yellow][&gt;-100];[Red][&gt;-1000];[Blue];[Cyan]">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="16" startRow="0" endCol="63" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="5" endCol="2" endRow="5">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="16" endCol="11" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="6" endCol="2" endRow="6">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="[&gt;100]&quot;bigger than 100:&quot; 0.00;[&gt;1000]&quot;bigger than 1000&quot;: 0.00">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="256" endCol="15" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="64" startRow="0" endCol="255" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="8" startRow="0" endCol="8" endRow="0">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="0" endCol="7" endRow="0">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="0">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="1" endCol="8" endRow="1">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="9" startRow="0" endCol="11" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4096" endCol="63" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="2" endCol="8" endRow="2">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="[Blue];[Red];[Yellow];[Green]">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="5" endCol="8" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
        </gmr:Styles>
        <gmr:Cols DefaultSizePts="48">
          <gmr:ColInfo No="0" Unit="102" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="1" Unit="179" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="2" Unit="205" MarginA="1" MarginB="2" HardSize="1"/>
          <gmr:ColInfo No="3" Unit="80" MarginA="1" MarginB="2" Count="6"/>
        </gmr:Cols>
        <gmr:Rows DefaultSizePts="12.8">
          <gmr:RowInfo No="0" Unit="20" MarginA="1" MarginB="0" Count="4"/>
          <gmr:RowInfo No="4" Unit="18.8" MarginA="1" MarginB="0"/>
          <gmr:RowInfo No="6" Unit="20" MarginA="1" MarginB="0"/>
        </gmr:Rows>
        <gmr:Selections CursorCol="1" CursorRow="4">
          <gmr:Selection startCol="1" startRow="4" endCol="8" endRow="4"/>
        </gmr:Selections>
        <gmr:Cells>
          <gmr:Cell Col="0" Row="0" ValueType="60">
            <gmr:Content>Format</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="0" ValueType="30">
            <gmr:Content>-10000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="0" ValueType="30">
            <gmr:Content>-1000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="0" ValueType="30">
            <gmr:Content>-10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="0" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="0" ValueType="30">
            <gmr:Content>10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="0" ValueType="30">
            <gmr:Content>1000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="0" ValueType="30">
            <gmr:Content>10000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="0" ValueType="60">
            <gmr:Content>text</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="1" ValueType="60">
            <gmr:Content>Format:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="1" ValueType="60">
            <gmr:Content>[Blue];[Red];[Yellow];[Green]</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="2" ValueType="30">
            <gmr:Content>-10000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="2" ValueType="30">
            <gmr:Content>-1000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="2" ValueType="30">
            <gmr:Content>-10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="2" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="2" ValueType="30">
            <gmr:Content>10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="2" ValueType="30">
            <gmr:Content>1000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="2" ValueType="30">
            <gmr:Content>10000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="2" ValueType="60">
            <gmr:Content>text</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="3" ValueType="60">
            <gmr:Content>Format:</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="4" ValueType="30">
            <gmr:Content>-10000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="4" ValueType="30">
            <gmr:Content>-1000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="4" ValueType="30">
            <gmr:Content>-10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="4" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="4" ValueType="30">
            <gmr:Content>10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="4" ValueType="30">
            <gmr:Content>1000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="4" ValueType="30">
            <gmr:Content>10000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="4" ValueType="60">
            <gmr:Content>text</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="6" ValueType="30">
            <gmr:Content>10000</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="6" ValueType="30">
            <gmr:Content>1000</gmr:Content>
          </gmr:Cell>
        </gmr:Cells>
        <gmr:Solver TargetCol="-1" TargetRow="-1" ProblemType="1" Inputs=""/>
      </gmr:Sheet>
    </gmr:Sheets>
    <gmr:UIData SelectedTab="0"/>
  </gmr:Workbook>
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/content/static/test-indent.xml
  
  Index: test-indent.xml
  ===================================================================
  <?xml version="1.0"?>
  <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
    <gmr:Attributes>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_horizontal_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_vertical_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_notebook_tabs</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
    </gmr:Attributes>
    <gmr:Summary>
      <gmr:Item>
        <gmr:name>application</gmr:name>
        <gmr:val-string>gnumeric</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>author</gmr:name>
        <gmr:val-string/>
      </gmr:Item>
    </gmr:Summary>
    <gmr:SheetNameIndex>
      <gmr:SheetName>Sheet 0</gmr:SheetName>
    </gmr:SheetNameIndex>
    <gmr:Names/>
    <gmr:Geometry Width="1166" Height="752"/>
    <gmr:Sheets>
      <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
        <gmr:Name>Sheet 0</gmr:Name>
        <gmr:MaxCol>177</gmr:MaxCol>
        <gmr:MaxRow>1</gmr:MaxRow>
        <gmr:Zoom>1.000000</gmr:Zoom>
        <gmr:Names/>
        <gmr:PrintInformation>
          <gmr:Margins>
            <gmr:top Points="28.3" PrefUnit="cm"/>
            <gmr:bottom Points="28.3" PrefUnit="cm"/>
            <gmr:left Points="28.3" PrefUnit="cm"/>
            <gmr:right Points="28.3" PrefUnit="cm"/>
            <gmr:header Points="14.2" PrefUnit="cm"/>
            <gmr:footer Points="14.2" PrefUnit="cm"/>
          </gmr:Margins>
          <gmr:vcenter value="0"/>
          <gmr:hcenter value="0"/>
          <gmr:grid value="0"/>
          <gmr:even_if_only_styles value="0"/>
          <gmr:monochrome value="0"/>
          <gmr:draft value="0"/>
          <gmr:titles value="0"/>
          <gmr:repeat_top value=""/>
          <gmr:repeat_left value=""/>
          <gmr:order>r_then_d</gmr:order>
          <gmr:orientation>landscape</gmr:orientation>
          <gmr:Header Left="" Middle="&amp;[TAB]" Right=""/>
          <gmr:Footer Left="" Middle="Page &amp;[PAGE]" Right=""/>
          <gmr:paper>A4</gmr:paper>
        </gmr:PrintInformation>
        <gmr:Styles>
          <gmr:StyleRegion startCol="2" startRow="1" endCol="2" endRow="1">
            <gmr:Style HAlign="4" VAlign="8" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="1" endCol="1" endRow="1">
            <gmr:Style HAlign="8" VAlign="8" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="1" endCol="0" endRow="1">
            <gmr:Style HAlign="2" VAlign="8" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="2" endCol="5" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="12" startRow="0" endCol="15" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="16" startRow="0" endCol="63" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="16" endCol="11" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="256" endCol="15" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="11" startRow="0" endCol="11" endRow="0">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="64" startRow="0" endCol="255" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="0" endCol="5" endRow="0">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="0" endCol="4" endRow="0">
            <gmr:Style HAlign="4" VAlign="4" WrapText="1" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="11" startRow="1" endCol="11" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="0" endCol="3" endRow="0">
            <gmr:Style HAlign="2" VAlign="2" WrapText="1" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4096" endCol="63" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="0" endCol="10" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="0" endCol="2" endRow="0">
            <gmr:Style HAlign="2" VAlign="1" WrapText="1" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="1" endCol="5" endRow="1">
            <gmr:Style HAlign="4" VAlign="1" WrapText="1" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="0" endCol="1" endRow="0">
            <gmr:Style HAlign="2" VAlign="4" WrapText="1" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="1" endCol="4" endRow="1">
            <gmr:Style HAlign="32" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="0" endCol="0" endRow="0">
            <gmr:Style HAlign="32" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="1" endCol="3" endRow="1">
            <gmr:Style HAlign="4" VAlign="2" WrapText="1" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
        </gmr:Styles>
        <gmr:Cols DefaultSizePts="48">
          <gmr:ColInfo No="0" Unit="102" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="1" Unit="97" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="2" Unit="102" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="3" Unit="110" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="4" Unit="115" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="5" Unit="107" MarginA="1" MarginB="2"/>
          <gmr:ColInfo No="6" Unit="80" MarginA="1" MarginB="2" Count="13"/>
        </gmr:Cols>
        <gmr:Rows DefaultSizePts="12.8">
          <gmr:RowInfo No="0" Unit="292" MarginA="1" MarginB="0" HardSize="1"/>
          <gmr:RowInfo No="1" Unit="210" MarginA="1" MarginB="0" HardSize="1"/>
        </gmr:Rows>
        <gmr:Selections CursorCol="0" CursorRow="0">
          <gmr:Selection startCol="0" startRow="0" endCol="0" endRow="0"/>
        </gmr:Selections>
        <gmr:Objects>
          <gmr:SheetObjectGraphic Type="2" Width="1" ArrowShapeA="8" ArrowShapeB="10" ArrowShapeC="3" ObjectBound="A1:B2" ObjectOffset="0 0 0 0" ObjectAnchorType="0 0 0 0" Direction="255"/>
          <gmr:SheetObjectGraphic Type="2" Width="1" ArrowShapeA="8" ArrowShapeB="10" ArrowShapeC="3" ObjectBound="A1:B2" ObjectOffset="0 0 0 0" ObjectAnchorType="0 0 0 0" Direction="255"/>
          <gmr:SheetObjectGraphic Type="2" Width="1" ArrowShapeA="8" ArrowShapeB="10" ArrowShapeC="3" ObjectBound="A1:B2" ObjectOffset="0 0 0 0" ObjectAnchorType="0 0 0 0" Direction="255"/>
          <gmr:SheetObjectGraphic Type="2" Width="1" ArrowShapeA="8" ArrowShapeB="10" ArrowShapeC="3" ObjectBound="A1:B2" ObjectOffset="0 0 0 0" ObjectAnchorType="0 0 0 0" Direction="255"/>
          <gmr:SheetObjectGraphic Type="2" Width="1" ArrowShapeA="8" ArrowShapeB="10" ArrowShapeC="3" ObjectBound="A1:B2" ObjectOffset="0 0 0 0" ObjectAnchorType="0 0 0 0" Direction="255"/>
          <gmr:SheetObjectFilled Type="102" Width="1" ObjectBound="A1:B2" ObjectOffset="0 0 0 0" ObjectAnchorType="0 0 0 0" Direction="255"/>
        </gmr:Objects>
        <gmr:Cells>
          <gmr:Cell Col="0" Row="0" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="0" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="0" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="0" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="0" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="11" Row="0" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Hello Gnumeric! This is a test of the various indentation styles of Gnumeric</gmr:Content>
          </gmr:Cell>
        </gmr:Cells>
        <gmr:Solver TargetCol="-1" TargetRow="-1" ProblemType="1" Inputs=""/>
      </gmr:Sheet>
    </gmr:Sheets>
    <gmr:UIData SelectedTab="0"/>
  </gmr:Workbook>
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/content/static/test-math.xml
  
  Index: test-math.xml
  ===================================================================
  <?xml version="1.0"?>
  <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
    <gmr:Attributes>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_horizontal_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_vertical_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_notebook_tabs</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
    </gmr:Attributes>
    <gmr:Summary>
      <gmr:Item>
        <gmr:name>application</gmr:name>
        <gmr:val-string>gnumeric</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>author</gmr:name>
        <gmr:val-string/>
      </gmr:Item>
    </gmr:Summary>
    <gmr:SheetNameIndex>
      <gmr:SheetName>Sheet 0</gmr:SheetName>
    </gmr:SheetNameIndex>
    <gmr:Names/>
    <gmr:Geometry Width="1166" Height="752"/>
    <gmr:Sheets>
      <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
        <gmr:Name>Sheet 0</gmr:Name>
        <gmr:MaxCol>32</gmr:MaxCol>
        <gmr:MaxRow>58</gmr:MaxRow>
        <gmr:Zoom>1.000000</gmr:Zoom>
        <gmr:Names/>
        <gmr:PrintInformation>
          <gmr:Margins>
            <gmr:top Points="28.3" PrefUnit="cm"/>
            <gmr:bottom Points="28.3" PrefUnit="cm"/>
            <gmr:left Points="28.3" PrefUnit="cm"/>
            <gmr:right Points="28.3" PrefUnit="cm"/>
            <gmr:header Points="14.2" PrefUnit="cm"/>
            <gmr:footer Points="14.2" PrefUnit="cm"/>
          </gmr:Margins>
          <gmr:vcenter value="0"/>
          <gmr:hcenter value="0"/>
          <gmr:grid value="0"/>
          <gmr:even_if_only_styles value="0"/>
          <gmr:monochrome value="0"/>
          <gmr:draft value="0"/>
          <gmr:titles value="0"/>
          <gmr:repeat_top value=""/>
          <gmr:repeat_left value=""/>
          <gmr:order>r_then_d</gmr:order>
          <gmr:orientation>landscape</gmr:orientation>
          <gmr:Header Left="" Middle="&amp;[TAB]" Right=""/>
          <gmr:Footer Left="" Middle="Page &amp;[PAGE]" Right=""/>
          <gmr:paper>A4</gmr:paper>
        </gmr:PrintInformation>
        <gmr:Styles>
          <gmr:StyleRegion startCol="5" startRow="59" endCol="8" endRow="63">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="3" endCol="0" endRow="7">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="34" endCol="5" endRow="49">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="14" endCol="0" endRow="14">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="25" endCol="1" endRow="28">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="49" endCol="3" endRow="49">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="34" endCol="4" endRow="63">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="35" endCol="0" endRow="35">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="59" endCol="3" endRow="63">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="46" endCol="0" endRow="49">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="56" endCol="0" endRow="56">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="57" endCol="0" endRow="63">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="8" startRow="16" endCol="11" endRow="47">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="8" endCol="4" endRow="12">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="52" endCol="8" endRow="54">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="30" endCol="5" endRow="33">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="52" endCol="3" endRow="54">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="40" endCol="0" endRow="40">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="16" startRow="0" endCol="63" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="64" startRow="0" endCol="255" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="35" endCol="3" endRow="38">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="13" endCol="1" endRow="24">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="15" endCol="0" endRow="24">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="45" endCol="0" endRow="45">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="52" endCol="0" endRow="52">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="9" startRow="0" endCol="11" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="8" startRow="15" endCol="8" endRow="15">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="1" endCol="4" endRow="1">
            <gmr:Style HAlign="8" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="12" startRow="0" endCol="15" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="50" endCol="8" endRow="50">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="29" endCol="5" endRow="29">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="0" endCol="1" endRow="1">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="8" endCol="0" endRow="8">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="64" endCol="11" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="40" endCol="3" endRow="43">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="50" endCol="3" endRow="50">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="26" endCol="0" endRow="29">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4096" endCol="63" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="256" endCol="15" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="0" endCol="8" endRow="13">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="2" endCol="4" endRow="6">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="55" endCol="8" endRow="55">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="34" endCol="3" endRow="34">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="9" endCol="0" endRow="13">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="45" endCol="3" endRow="48">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="31" endCol="0" endRow="34">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="55" endCol="3" endRow="55">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="53" endCol="0" endRow="55">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="39" endCol="3" endRow="39">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="25" endCol="0" endRow="25">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="36" endCol="0" endRow="39">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="0" endCol="5" endRow="23">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="51" endCol="8" endRow="51">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="13" endCol="4" endRow="23">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="56" endCol="8" endRow="58">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="2" endCol="0" endRow="2">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="44" endCol="3" endRow="44">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="30" endCol="0" endRow="30">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="51" endCol="3" endRow="51">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="56" endCol="3" endRow="58">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="41" endCol="0" endRow="44">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="14" endCol="8" endRow="14">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="0" endCol="4" endRow="0">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="7" endCol="4" endRow="7">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="9" startRow="48" endCol="11" endRow="63">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="8" startRow="48" endCol="8" endRow="49">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="24" endCol="5" endRow="28">
            <gmr:Style HAlign="1" VAlign="4" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="14" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="6" startRow="15" endCol="7" endRow="49">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
        </gmr:Styles>
        <gmr:Cols DefaultSizePts="48">
          <gmr:ColInfo No="0" Unit="80" MarginA="1" MarginB="2" Count="13"/>
        </gmr:Cols>
        <gmr:Rows DefaultSizePts="12.8">
          <gmr:RowInfo No="1" Unit="20" MarginA="1" MarginB="0" Count="40"/>
        </gmr:Rows>
        <gmr:Selections CursorCol="0" CursorRow="0">
          <gmr:Selection startCol="0" startRow="0" endCol="0" endRow="0"/>
        </gmr:Selections>
        <gmr:Cells>
          <gmr:Cell Col="2" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Input</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Expression</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="1" ValueType="60" ValueFormat="@">
            <gmr:Content>Expected</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="2" ValueType="60" ValueFormat="@">
            <gmr:Content>ABS test</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="2">
            <gmr:Content>=if(D3=E3,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="2" ValueType="40">
            <gmr:Content>-10.7</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="2">
            <gmr:Content>=abs(C3)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="2" ValueType="40">
            <gmr:Content>10.7</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="3">
            <gmr:Content>=if(D4=E4,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="3" ValueType="30">
            <gmr:Content>-10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="3">
            <gmr:Content>=abs(C4)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="3" ValueType="30">
            <gmr:Content>10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="4">
            <gmr:Content>=if(D5=E5,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="4" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="4">
            <gmr:Content>=abs(C5)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="4" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="5">
            <gmr:Content>=if(D6=E6,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="5" ValueType="30">
            <gmr:Content>10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="5">
            <gmr:Content>=abs(C6)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="5" ValueType="30">
            <gmr:Content>10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="6">
            <gmr:Content>=if(D7=E7,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="6" ValueType="40">
            <gmr:Content>10.7</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="6">
            <gmr:Content>=abs(C7)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="6" ValueType="40">
            <gmr:Content>10.7</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="8" ValueType="60" ValueFormat="@">
            <gmr:Content>Ceil test</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="8">
            <gmr:Content>=if(D9=E9,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="8" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="8">
            <gmr:Content>=ceil(C9)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="8" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="9">
            <gmr:Content>=if(D10=E10,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="9" ValueType="40">
            <gmr:Content>0.1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="9">
            <gmr:Content>=ceil(C10)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="9" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="10">
            <gmr:Content>=if(D11=E11,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="10" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="10">
            <gmr:Content>=ceil(C11)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="10" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="11">
            <gmr:Content>=if(D12=E12,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="11" ValueType="40">
            <gmr:Content>1.5</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="11">
            <gmr:Content>=ceil(C12)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="11" ValueType="30">
            <gmr:Content>2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="12">
            <gmr:Content>=if(D13=E13,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="12" ValueType="40">
            <gmr:Content>1.9</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="12">
            <gmr:Content>=ceil(C13)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="12" ValueType="30">
            <gmr:Content>2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="14" ValueType="60" ValueFormat="@">
            <gmr:Content>Min</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="14" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="14" ValueType="30">
            <gmr:Content>2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="14" ValueType="30">
            <gmr:Content>3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="24" ValueType="60" ValueFormat="@">
            <gmr:Content>InputA</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="24" ValueType="60" ValueFormat="@">
            <gmr:Content>INputB</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="24" ValueType="60" ValueFormat="@">
            <gmr:Content>Expression</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="24" ValueType="60" ValueFormat="@">
            <gmr:Content>Expected</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="25" ValueType="60" ValueFormat="@">
            <gmr:Content>AND</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="25">
            <gmr:Content>=if(E26=F26,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="25" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="25" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="25">
            <gmr:Content>=and(C26,D26)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="25" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="26">
            <gmr:Content>=if(E27=F27,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="26" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="26" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="26">
            <gmr:Content>=and(C27,D27)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="26" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="27">
            <gmr:Content>=if(E28=F28,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="27" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="27" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="27">
            <gmr:Content>=and(C28,D28)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="27" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="28">
            <gmr:Content>=if(E29=F29,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="28" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="28" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="28">
            <gmr:Content>=and(C29,D29)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="28" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="30" ValueType="60" ValueFormat="@">
            <gmr:Content>OR</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="30">
            <gmr:Content>=if(E31=F31,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="30" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="30" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="30">
            <gmr:Content>=or(C31,D31)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="30" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="31">
            <gmr:Content>=if(E32=F32,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="31" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="31" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="31">
            <gmr:Content>=or(C32,D32)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="31" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="32">
            <gmr:Content>=if(E33=F33,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="32" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="32" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="32">
            <gmr:Content>=or(C33,D33)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="32" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="33">
            <gmr:Content>=if(E34=F34,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="33" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="33" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="33">
            <gmr:Content>=or(C34,D34)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="33" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="35" ValueType="60" ValueFormat="@">
            <gmr:Content>sin/asin</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="35">
            <gmr:Content>=if(C36=D36,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="35" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="35">
            <gmr:Content>=sin(asin(C36))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="36">
            <gmr:Content>=if(C37=D37,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="36" ValueType="40">
            <gmr:Content>0.1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="36">
            <gmr:Content>=sin(asin(C37))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="37">
            <gmr:Content>=if(C38=D38,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="37" ValueType="40">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="37">
            <gmr:Content>=sin(asin(C38))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="38">
            <gmr:Content>=if(C39=D39,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="38" ValueType="40">
            <gmr:Content>-0.9</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="38">
            <gmr:Content>=sin(asin(C39))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="40" ValueType="60" ValueFormat="@">
            <gmr:Content>cos/acos</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="40">
            <gmr:Content>=if(C41=D41,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="40" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="40">
            <gmr:Content>=cos(acos(C41))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="41">
            <gmr:Content>=if(C42=D42,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="41" ValueType="40">
            <gmr:Content>0.1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="41">
            <gmr:Content>=cos(acos(C42))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="42">
            <gmr:Content>=if(C43=D43,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="42" ValueType="40">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="42">
            <gmr:Content>=cos(acos(C43))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="43">
            <gmr:Content>=if(C44=D44,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="43" ValueType="40">
            <gmr:Content>-0.9</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="43">
            <gmr:Content>=cos(acos(C44))</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="45" ValueType="60" ValueFormat="@">
            <gmr:Content>bin2dec</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="45">
            <gmr:Content>=if(C46=D46,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="45">
            <gmr:Content>=bin2dec(0)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="45" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="46">
            <gmr:Content>=if(C47=D47,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="46">
            <gmr:Content>=bin2dec(10)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="46" ValueType="30">
            <gmr:Content>2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="47">
            <gmr:Content>=if(C48=D48,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="47">
            <gmr:Content>=bin2dec(1111)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="47" ValueType="30">
            <gmr:Content>15</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="48">
            <gmr:Content>=if(C49=D49,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="48">
            <gmr:Content>=bin2dec(10000000)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="48" ValueType="30">
            <gmr:Content>128</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="50" ValueType="60" ValueFormat="@">
            <gmr:Content>Average</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="50">
            <gmr:Content>=if(C51=D51,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="50">
            <gmr:Content>=average(F51:I51)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="50" ValueType="40">
            <gmr:Content>2.5</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="50" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="50" ValueType="30">
            <gmr:Content>2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="50" ValueType="30">
            <gmr:Content>3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="50" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="52" ValueType="60" ValueFormat="@">
            <gmr:Content>Minimum</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="52">
            <gmr:Content>=if(C53=D53,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="52">
            <gmr:Content>=min(F53:I53)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="52" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="52" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="52" ValueType="30">
            <gmr:Content>2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="52" ValueType="30">
            <gmr:Content>3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="52" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="53">
            <gmr:Content>=if(C54=D54,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="53">
            <gmr:Content>=min(F54:I54)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="53" ValueType="30">
            <gmr:Content>-10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="53" ValueType="30">
            <gmr:Content>-10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="53" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="53" ValueType="30">
            <gmr:Content>6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="53" ValueType="30">
            <gmr:Content>5</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="54">
            <gmr:Content>=if(C55=D55,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="54">
            <gmr:Content>=min(F55:I55)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="54" ValueType="40">
            <gmr:Content>-5.3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="54" ValueType="40">
            <gmr:Content>-5.3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="54" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="54" ValueType="30">
            <gmr:Content>10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="54" ValueType="40">
            <gmr:Content>5.3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="56" ValueType="60" ValueFormat="@">
            <gmr:Content>Maximum</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="56">
            <gmr:Content>=if(C57=D57,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="56" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="56">
            <gmr:Content>=max(F57:I57)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="56" ValueType="30">
            <gmr:Content>1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="56" ValueType="30">
            <gmr:Content>2</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="56" ValueType="30">
            <gmr:Content>3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="56" ValueType="30">
            <gmr:Content>4</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="57">
            <gmr:Content>=if(C58=D58,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="57" ValueType="30">
            <gmr:Content>6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="57">
            <gmr:Content>=max(F58:I58)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="57" ValueType="30">
            <gmr:Content>-10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="57" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="57" ValueType="30">
            <gmr:Content>6</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="57" ValueType="30">
            <gmr:Content>5</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="58">
            <gmr:Content>=if(C59=D59,&quot;PASS&quot;,&quot;NO&quot;)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="58" ValueType="30">
            <gmr:Content>10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="3" Row="58">
            <gmr:Content>=max(F59:I59)</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="5" Row="58" ValueType="40">
            <gmr:Content>-5.3</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="6" Row="58" ValueType="30">
            <gmr:Content>0</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="7" Row="58" ValueType="30">
            <gmr:Content>10</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="8" Row="58" ValueType="40">
            <gmr:Content>5.3</gmr:Content>
          </gmr:Cell>
        </gmr:Cells>
        <gmr:Solver TargetCol="-1" TargetRow="-1" ProblemType="1" Inputs=""/>
      </gmr:Sheet>
    </gmr:Sheets>
    <gmr:UIData SelectedTab="0"/>
  </gmr:Workbook>
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/content/static/web_page_sample.xml
  
  Index: web_page_sample.xml
  ===================================================================
  <?xml version="1.0"?>
  <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
    <gmr:Attributes>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_horizontal_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_vertical_scrollbar</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
      <gmr:Attribute>
        <gmr:name>WorkbookView::show_notebook_tabs</gmr:name>
        <gmr:type>4</gmr:type>
        <gmr:value>TRUE</gmr:value>
      </gmr:Attribute>
    </gmr:Attributes>
    <gmr:Summary>
      <gmr:Item>
        <gmr:name>codepage</gmr:name>
        <gmr:val-string>1252</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>last_saved</gmr:name>
        <gmr:val-string>Wed Mar  8 18:50:25 2000</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>created</gmr:name>
        <gmr:val-string>Wed Mar  8 18:28:23 2000</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>security</gmr:name>
        <gmr:val-int>0</gmr:val-int>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>thumbnail_scaling</gmr:name>
        <gmr:val-string>False</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>links_uptodate</gmr:name>
        <gmr:val-string>False</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>last_author</gmr:name>
        <gmr:val-string>Jody</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>application</gmr:name>
        <gmr:val-string>Microsoft Excel</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>author</gmr:name>
        <gmr:val-string>Jody</gmr:val-string>
      </gmr:Item>
      <gmr:Item>
        <gmr:name>company</gmr:name>
        <gmr:val-string>b</gmr:val-string>
      </gmr:Item>
    </gmr:Summary>
    <gmr:SheetNameIndex>
      <gmr:SheetName>Sheet1</gmr:SheetName>
    </gmr:SheetNameIndex>
    <gmr:Names/>
    <gmr:Geometry Width="1166" Height="752"/>
    <gmr:Sheets>
      <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
        <gmr:Name>Sheet1</gmr:Name>
        <gmr:MaxCol>4</gmr:MaxCol>
        <gmr:MaxRow>18</gmr:MaxRow>
        <gmr:Zoom>1.000000</gmr:Zoom>
        <gmr:Names/>
        <gmr:PrintInformation>
          <gmr:Margins>
            <gmr:top Points="108" PrefUnit="in"/>
            <gmr:bottom Points="72" PrefUnit="in"/>
            <gmr:left Points="54" PrefUnit="in"/>
            <gmr:right Points="54" PrefUnit="in"/>
            <gmr:header Points="108" PrefUnit="in"/>
            <gmr:footer Points="72" PrefUnit="in"/>
          </gmr:Margins>
          <gmr:vcenter value="0"/>
          <gmr:hcenter value="0"/>
          <gmr:grid value="0"/>
          <gmr:even_if_only_styles value="0"/>
          <gmr:monochrome value="0"/>
          <gmr:draft value="0"/>
          <gmr:titles value="0"/>
          <gmr:repeat_top value=""/>
          <gmr:repeat_left value=""/>
          <gmr:order>d_then_r</gmr:order>
          <gmr:orientation>portrait</gmr:orientation>
          <gmr:Header Left="" Middle="&amp;[TAB]" Right=""/>
          <gmr:Footer Left="" Middle="Page &amp;[PAGE]" Right=""/>
          <gmr:paper>US-Letter</gmr:paper>
        </gmr:PrintInformation>
        <gmr:Styles>
          <gmr:StyleRegion startCol="2" startRow="1" endCol="2" endRow="1">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="6" Color="3333:3333:3333"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="14" endCol="3" endRow="14">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="13" endCol="0" endRow="13">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="1" Color="8080:8080:8080"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="1" endCol="1" endRow="1">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="6" Color="3333:3333:3333"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="14" endCol="2" endRow="14">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0%">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="1" endCol="0" endRow="1">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="1" Color="8080:8080:8080"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="2" endCol="3" endRow="2">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="2" endCol="2" endRow="2">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="FFFF:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="14" endCol="0" endRow="14">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="2" endCol="1" endRow="2">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="FFFF:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="3" endCol="3" endRow="3">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="2" endCol="0" endRow="2">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="3" endCol="2" endRow="3">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="F800:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="3" endCol="1" endRow="3">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="4" endCol="3" endRow="4">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="3" endCol="0" endRow="3">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="1" Color="8080:8080:8080"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="8" startRow="0" endCol="15" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="0" endCol="4" endRow="17">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="F800:F800:0" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="4" endCol="2" endRow="4">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="FFFF:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="4" endCol="1" endRow="4">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="FFFF:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="16" startRow="0" endCol="63" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="7" startRow="13" endCol="7" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4" endCol="0" endRow="4">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="5" endCol="3" endRow="5">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="22" endCol="6" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="18" endCol="4" endRow="18">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="F800:F800:0" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="5" endCol="2" endRow="5">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="5" endCol="1" endRow="5">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="5" endCol="0" endRow="5">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="1" Color="8080:8080:8080"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="6" endCol="3" endRow="6">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="6" endCol="2" endRow="6">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="15" endCol="2" endRow="31">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="6" endCol="1" endRow="6">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="32" endCol="7" endRow="255">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="7" endCol="3" endRow="7">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="6" endCol="0" endRow="6">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="7" endCol="2" endRow="7">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="5" startRow="0" endCol="6" endRow="21">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="F800:F800:0" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="7" endCol="1" endRow="7">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="F800:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="8" endCol="3" endRow="8">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="7" endCol="0" endRow="7">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="1" Color="8080:8080:8080"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="4" startRow="19" endCol="4" endRow="21">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="F800:F800:0" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="8" endCol="2" endRow="8">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="FFFF:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="256" endCol="15" endRow="4095">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="15" endCol="3" endRow="21">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="F800:F800:0" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="8" endCol="1" endRow="8">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="FFFF:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="9" endCol="3" endRow="9">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="8" endCol="0" endRow="8">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="9" endCol="2" endRow="9">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="F800:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="7" startRow="0" endCol="7" endRow="11">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="9" endCol="1" endRow="9">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="10" endCol="3" endRow="10">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="9" endCol="0" endRow="9">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="1" Color="8080:8080:8080"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="64" startRow="0" endCol="255" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="10" endCol="2" endRow="10">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="7" startRow="12" endCol="7" endRow="12">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:8000" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="10" endCol="1" endRow="10">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="FFFF:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="11" endCol="3" endRow="11">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="10" endCol="0" endRow="10">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="11" endCol="2" endRow="11">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="11" endCol="1" endRow="11">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="F800:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="12" endCol="3" endRow="12">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="1" Color="8080:8080:8080"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="11" endCol="0" endRow="11">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="1" Color="8080:8080:8080"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="2" startRow="12" endCol="2" endRow="12">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="1" Color="8080:8080:8080"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="0" endCol="3" endRow="0">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="12" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="4096" endCol="63" endRow="65535">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="0" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="FFFF:FFFF:FFFF" PatternColor="0:0:0" Format="General">
              <gmr:Font Unit="9" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="12" endCol="1" endRow="12">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="FFFF:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="1" Color="8080:8080:8080"/>
                <gmr:Left Style="6" Color="3333:3333:3333"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="0" endCol="2" endRow="0">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="1" startRow="13" endCol="3" endRow="13">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="_(* #,##0.00_);_(* (#,##0.00);_(* &quot;-&quot;??_);_(@_)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="8080:8080:8080"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="12" endCol="0" endRow="12">
            <gmr:Style HAlign="4" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="15" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="1" Color="F6F6:F6F6:F6F6"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="0" startRow="0" endCol="0" endRow="0">
            <gmr:Style HAlign="8" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="General">
              <gmr:Font Unit="10" Bold="1" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="0"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
          <gmr:StyleRegion startCol="3" startRow="1" endCol="3" endRow="1">
            <gmr:Style HAlign="1" VAlign="2" WrapText="0" Orient="1" Shade="1" Indent="0" Locked="1" Hidden="0" Fore="0:0:0" Back="C0C0:C0C0:C0C0" PatternColor="9999:9999:FFFF" Format="0.0000_);[Red]\(0.0000\)">
              <gmr:Font Unit="10" Bold="0" Italic="0" Underline="0" StrikeThrough="0">Helvetica</gmr:Font>
              <gmr:StyleBorder>
                <gmr:Top Style="6" Color="3333:3333:3333"/>
                <gmr:Bottom Style="0"/>
                <gmr:Left Style="0"/>
                <gmr:Right Style="0"/>
                <gmr:Diagonal Style="0"/>
                <gmr:Rev-Diagonal Style="0"/>
              </gmr:StyleBorder>
            </gmr:Style>
          </gmr:StyleRegion>
        </gmr:Styles>
        <gmr:Cols DefaultSizePts="48">
          <gmr:ColInfo No="0" Unit="78.8" MarginA="2" MarginB="2" HardSize="1"/>
          <gmr:ColInfo No="1" Unit="73.5" MarginA="2" MarginB="2" HardSize="1"/>
          <gmr:ColInfo No="2" Unit="75" MarginA="2" MarginB="2" HardSize="1"/>
          <gmr:ColInfo No="3" Unit="45" MarginA="2" MarginB="2" HardSize="1"/>
          <gmr:ColInfo No="4" Unit="48" MarginA="2" MarginB="2"/>
        </gmr:Cols>
        <gmr:Rows DefaultSizePts="12.8">
          <gmr:RowInfo No="0" Unit="17.2" MarginA="0" MarginB="0" HardSize="1" Count="13"/>
          <gmr:RowInfo No="13" Unit="12.8" MarginA="0" MarginB="0"/>
          <gmr:RowInfo No="14" Unit="17.2" MarginA="0" MarginB="0" HardSize="1"/>
          <gmr:RowInfo No="17" Unit="12.8" MarginA="0" MarginB="0"/>
          <gmr:RowInfo No="18" Unit="12" MarginA="0" MarginB="0"/>
        </gmr:Rows>
        <gmr:Selections CursorCol="1" CursorRow="23">
          <gmr:Selection startCol="1" startRow="23" endCol="1" endRow="23"/>
        </gmr:Selections>
        <gmr:Objects>
          <gmr:SheetObjectFilled Type="102" Width="1" ObjectBound="A14:C16" ObjectOffset="0.990476191043854 0.647058844566345 0.159999996423721 0.764705896377563" ObjectAnchorType="0 0 0 0" Direction="255"/>
        </gmr:Objects>
        <gmr:Cells>
          <gmr:Cell Col="1" Row="0" ValueType="60">
            <gmr:Content>EUR/USD</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="0" ValueType="60">
            <gmr:Content>GBP/USD</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="1" ValueType="60">
            <gmr:Content>March</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="1" ValueType="40">
            <gmr:Content>1.1806</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="1" ValueType="40">
            <gmr:Content>1.6139</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="2" ValueType="60">
            <gmr:Content>April</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="2" ValueType="40">
            <gmr:Content>1.0229</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="2" ValueType="40">
            <gmr:Content>1.6075</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="3" ValueType="60">
            <gmr:Content>May</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="3" ValueType="40">
            <gmr:Content>1.0705</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="3" ValueType="40">
            <gmr:Content>1.5997</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="4" ValueType="60">
            <gmr:Content>June</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="4" ValueType="40">
            <gmr:Content>1.0459</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="4" ValueType="40">
            <gmr:Content>1.5689</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="5" ValueType="60">
            <gmr:Content>July</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="5" ValueType="40">
            <gmr:Content>1.046</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="5" ValueType="40">
            <gmr:Content>1.6004</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="6" ValueType="60">
            <gmr:Content>August</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="6" ValueType="40">
            <gmr:Content>1.0838</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="6" ValueType="40">
            <gmr:Content>1.6072</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="7" ValueType="60">
            <gmr:Content>September</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="7" ValueType="40">
            <gmr:Content>1.0273</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="7" ValueType="40">
            <gmr:Content>1.6559</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="8" ValueType="60">
            <gmr:Content>October</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="8" ValueType="40">
            <gmr:Content>1.0084</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="8" ValueType="40">
            <gmr:Content>1.6247</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="9" ValueType="60">
            <gmr:Content>November</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="9" ValueType="40">
            <gmr:Content>1.0092</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="9" ValueType="40">
            <gmr:Content>1.6215</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="10" ValueType="60">
            <gmr:Content>December</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="10" ValueType="40">
            <gmr:Content>1.0036</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="10" ValueType="40">
            <gmr:Content>1.6369</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="11" ValueType="60">
            <gmr:Content>January</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="11" ValueType="40">
            <gmr:Content>0.9933</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="11" ValueType="40">
            <gmr:Content>1.6142</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="12" ValueType="60">
            <gmr:Content>February</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="12" ValueType="40">
            <gmr:Content>0.9576</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="12" ValueType="40">
            <gmr:Content>1.5793</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="0" Row="14" ValueType="60">
            <gmr:Content>Loss</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="1" Row="14">
            <gmr:Content>=B13/B2-1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="2" Row="14">
            <gmr:Content>=C13/C2-1</gmr:Content>
          </gmr:Cell>
          <gmr:Cell Col="4" Row="18" ValueType="60">
            <gmr:Content>The UK is happy it is NOT part of EMU</gmr:Content>
          </gmr:Cell>
        </gmr:Cells>
        <gmr:Solver TargetCol="-1" TargetRow="-1" ProblemType="1" Inputs=""/>
      </gmr:Sheet>
    </gmr:Sheets>
    <gmr:UIData SelectedTab="0"/>
  </gmr:Workbook>
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/stylesheets/simple-page2xls.xsl
  
  Index: simple-page2xls.xsl
  ===================================================================
  <?xml version="1.0"?>
  
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                                xmlns:sql="http://apache.org/cocoon/SQL/2.0"
                               xmlns:gmr="http://www.gnome.org/gnumeric/v7" >
  
    <xsl:param name="view-source"/>
  
    <xsl:template match="page">
     <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
       <gmr:Sheets>
           <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
  	         <gmr:Name><xsl:value-of select="title"/></gmr:Name>
          	 <gmr:MaxCol>2</gmr:MaxCol>
  	         <gmr:Cols DefaultSizePts="48">
                       <gmr:ColInfo No="0" Unit="48" MarginA="2" MarginB="2" Count="7"/>
                   </gmr:Cols>
       		 <gmr:Rows DefaultSizePts="12.8">
         			<gmr:RowInfo No="0" Unit="12.8" MarginA="0" MarginB="0" Count="9"/>
         			<gmr:RowInfo No="10" Unit="12.8" MarginA="1" MarginB="0" Count="24"/>
       		 </gmr:Rows>
   		 <gmr:Cells>
       			<xsl:apply-templates/>
                   </gmr:Cells>
       	</gmr:Sheet>
       </gmr:Sheets>
      </gmr:Workbook>
    </xsl:template>
  
    <xsl:template match="content">
        <xsl:apply-templates/>
    </xsl:template>
  
    <xsl:template match="para">
       <gmr:Cell Col="0" ValueType="60">
        <xsl:variable name="rownumber"><xsl:number level="any" from="content" count="para"/></xsl:variable>
        <xsl:attribute name="Row">
           <xsl:value-of select="$rownumber"/>
        </xsl:attribute>
         <gmr:Content>
  		<xsl:apply-templates/> 
  	</gmr:Content>
       </gmr:Cell>
    </xsl:template>
  
   <xsl:template match="title"></xsl:template>
  
  </xsl:stylesheet>
  
  
  
  1.1                  xml-cocoon2/src/webapp/samples/poi/stylesheets/simple-sql2xls.xsl
  
  Index: simple-sql2xls.xsl
  ===================================================================
  <?xml version="1.0"?>
  
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                                xmlns:sql="http://apache.org/cocoon/SQL/2.0"
                                xmlns:gmr="http://www.gnome.org/gnumeric/v7">
  
    <xsl:param name="view-source"/>
  
    <xsl:template match="page">
     <gmr:Workbook xmlns:gmr="http://www.gnome.org/gnumeric/v7">
       <gmr:Sheets>
           <gmr:Sheet DisplayFormulas="false" HideZero="false" HideGrid="false" HideColHeader="false" HideRowHeader="false" DisplayOutlines="true" OutlineSymbolsBelow="true" OutlineSymbolsRight="true">
  	         <gmr:Name><xsl:value-of select="title"/></gmr:Name>
          	 <gmr:MaxCol>2</gmr:MaxCol>
  	         <gmr:Cols DefaultSizePts="48">
                       <gmr:ColInfo No="0" Unit="48" MarginA="2" MarginB="2" Count="7"/>
                   </gmr:Cols>
       		 <gmr:Rows DefaultSizePts="12.8">
         			<gmr:RowInfo No="0" Unit="12.8" MarginA="0" MarginB="0" Count="9"/>
         			<gmr:RowInfo No="10" Unit="12.8" MarginA="1" MarginB="0" Count="24"/>
       		 </gmr:Rows>
   		 <gmr:Cells>
       			<xsl:apply-templates/>
                   </gmr:Cells>
       	</gmr:Sheet>
       </gmr:Sheets>
      </gmr:Workbook>
    </xsl:template>
  
    <xsl:template match="sql:rowset">
        <xsl:apply-templates select="sql:row"/>
    </xsl:template>
    
    <xsl:template match="sql:row">
       <gmr:Cell Col="0" ValueType="60">
        <xsl:variable name="rownumber"><xsl:number level="any" from="content" count="sql:row"/></xsl:variable>
        <xsl:attribute name="Row">
           <xsl:value-of select="$rownumber + 4"/>
        </xsl:attribute>
         <gmr:Content>
  		<xsl:value-of select="sql:name"/> 
  	</gmr:Content>
       </gmr:Cell>
       <xsl:apply-templates select="sql:rowset"/>
    </xsl:template>
  
   <xsl:template match="para"></xsl:template>
   <xsl:template match="title"></xsl:template>
  
  </xsl:stylesheet>
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org