[Libreoffice-commits] core.git: Branch 'distro/escriba/escriba-5.2.1' - 2 commits - sw/qa sw/source

Miklos Vajna vmiklos at collabora.co.uk
Fri Oct 6 21:20:51 UTC 2017


 sw/qa/extras/uiwriter/data/tdf112860.fodt | 1394 ++++++++++++++++++++++++++++++
 sw/qa/extras/uiwriter/uiwriter.cxx        |   10 
 sw/source/core/layout/ftnfrm.cxx          |    1 
 sw/source/core/layout/sectfrm.cxx         |    2 
 sw/source/core/layout/tabfrm.cxx          |   40 
 5 files changed, 1445 insertions(+), 2 deletions(-)

New commits:
commit a3884863aba7807e7b473a0acb3f7aa4e4ae9a37
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Fri Oct 6 22:50:03 2017 +0200

    sw: work around layout loop with split sections inside nested tables
    
    This is just a short-term workaround, the actual root cause has to be
    fixed (and that fix needs a testcase).
    
    The change just makes sure that once a page is formatted, then a follow
    page's table row doesn't invalidate the previous page (when the row is
    shrinking), this way avoiding the loop.
    
    Change-Id: Ic4b9252157ed29c3b554f06caf0630e56ba2ac79

diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx
index 0c6db983d50d..0a336f9cbe76 100644
--- a/sw/source/core/layout/tabfrm.cxx
+++ b/sw/source/core/layout/tabfrm.cxx
@@ -4319,6 +4319,43 @@ SwTwips SwRowFrame::GrowFrame( SwTwips nDist, bool bTst, bool bInfo )
     return nReal;
 }
 
+static bool lcl_ContainsNestedTableContainingSection(SwRowFrame* pRow)
+{
+    SwFrame* pLower = pRow->Lower();
+    if (!pLower)
+        return false;
+    if (!pLower->IsCellFrame())
+        return false;
+    SwCellFrame* pOuterCell = static_cast<SwCellFrame*>(pLower);
+
+    pLower = pOuterCell->Lower();
+    if (!pLower)
+        return false;
+    if (!pLower->IsTabFrame())
+        return false;
+    SwTabFrame* pInnerTab = static_cast<SwTabFrame*>(pLower);
+
+    pLower = pInnerTab->Lower();
+    if (!pLower)
+        return false;
+    if (!pLower->IsRowFrame())
+        return false;
+    SwRowFrame* pInnerRow = static_cast<SwRowFrame*>(pLower);
+
+    pLower = pInnerRow->Lower();
+    if (!pLower)
+        return false;
+    if (!pLower->IsCellFrame())
+        return false;
+    SwCellFrame* pInnerCell = static_cast<SwCellFrame*>(pLower);
+
+    pLower = pInnerCell->Lower();
+    if (!pLower)
+        return false;
+
+    return pLower->IsSctFrame();
+}
+
 SwTwips SwRowFrame::ShrinkFrame( SwTwips nDist, bool bTst, bool bInfo )
 {
     SWRECTFN( this )
@@ -4407,7 +4444,8 @@ SwTwips SwRowFrame::ShrinkFrame( SwTwips nDist, bool bTst, bool bInfo )
                  && !pTab->IsInRecalcLowerRow() )
             {
                 SwTabFrame* pMasterTab = pTab->FindMaster();
-                pMasterTab->InvalidatePos();
+                if (!lcl_ContainsNestedTableContainingSection(this))
+                    pMasterTab->InvalidatePos();
             }
         }
         AdjustCells( (Prt().*fnRect->fnGetHeight)() - nReal, true );
commit 84cd7643533aa5b1c4a096ec47fbd44992a03198
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Tue Oct 3 17:44:01 2017 +0200

    tdf#112860 sw: avoid shortcut for tables in SwFrame::GetNextSctLeaf()
    
    As the comment says the shortcut only works if no columns or pages are
    between the section frames, while for tables there are definitely table,
    row and column frames. This resulted later in
    SwFrame::IsFootnoteAllowed() a nullptr dereference, as the frame was
    still marked as in-table, but wasn't in a table anymore.
    
    Reviewed-on: https://gerrit.libreoffice.org/43091
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Tested-by: Jenkins <ci at libreoffice.org>
    (cherry picked from commit c985ad5f7b479706935459630c5a59ccae6fa8b7)
    
    Conflicts:
            sw/qa/extras/uiwriter/uiwriter.cxx
    
    Change-Id: I4191c77d20c6ccc096156fae15ca7c22cc5b68b6

diff --git a/sw/qa/extras/uiwriter/data/tdf112860.fodt b/sw/qa/extras/uiwriter/data/tdf112860.fodt
new file mode 100644
index 000000000000..845c55ae8f42
--- /dev/null
+++ b/sw/qa/extras/uiwriter/data/tdf112860.fodt
@@ -0,0 +1,1394 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oas
 is:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:
 experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
+  <office:settings>
+    <config:config-item-set config:name="ooo:view-settings">
+      <config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
+      <config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
+      <config:config-item config:name="ViewAreaWidth" config:type="long">59761</config:config-item>
+      <config:config-item config:name="ViewAreaHeight" config:type="long">30542</config:config-item>
+      <config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
+      <config:config-item-map-indexed config:name="Views">
+        <config:config-item-map-entry>
+          <config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
+          <config:config-item config:name="ViewLeft" config:type="long">22682</config:config-item>
+          <config:config-item config:name="ViewTop" config:type="long">3567</config:config-item>
+          <config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
+          <config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
+          <config:config-item config:name="VisibleRight" config:type="long">59759</config:config-item>
+          <config:config-item config:name="VisibleBottom" config:type="long">30540</config:config-item>
+          <config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
+          <config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
+          <config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
+          <config:config-item config:name="ZoomFactor" config:type="short">70</config:config-item>
+          <config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
+          <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
+        </config:config-item-map-entry>
+      </config:config-item-map-indexed>
+    </config:config-item-set>
+    <config:config-item-set config:name="ooo:configuration-settings">
+      <config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
+      <config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="PrintFaxName" config:type="string"/>
+      <config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="TabOverMargin" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="TabOverflow" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="SmallCapsPercentage66" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="RsidRoot" config:type="int">104774</config:config-item>
+      <config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="AddFrameOffsets" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="PrinterName" config:type="string"/>
+      <config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
+      <config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="Rsid" config:type="int">279286</config:config-item>
+      <config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
+      <config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
+      <config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="AllowPaddingWithoutBorders" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
+      <config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
+      <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
+      <config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
+      <config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
+      <config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
+      <config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
+      <config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
+      <config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
+    </config:config-item-set>
+  </office:settings>
+  <office:scripts>
+    <office:script script:language="ooo:Basic">
+      <ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
+    </office:script>
+  </office:scripts>
+  <office:font-face-decls>
+    <style:font-face style:name="OpenSymbol" svg:font-family="OpenSymbol"/>
+    <style:font-face style:name="Tahoma1" svg:font-family="Tahoma"/>
+    <style:font-face style:name="Tahoma2" svg:font-family="Tahoma" style:font-family-generic="system"/>
+    <style:font-face style:name="Times New Roman" svg:font-family="'Times New Roman'" style:font-family-generic="roman" style:font-pitch="variable"/>
+    <style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
+    <style:font-face style:name="Arial1" svg:font-family="Arial" style:font-adornments="Regular" style:font-family-generic="swiss" style:font-pitch="variable"/>
+    <style:font-face style:name="Arial Unicode MS" svg:font-family="'Arial Unicode MS'" style:font-family-generic="system" style:font-pitch="variable"/>
+    <style:font-face style:name="MS Mincho" svg:font-family="'MS Mincho'" style:font-family-generic="system" style:font-pitch="variable"/>
+    <style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-family-generic="system" style:font-pitch="variable"/>
+  </office:font-face-decls>
+  <office:styles>
+    <style:default-style style:family="graphic">
+      <style:graphic-properties svg:stroke-color="#000000" draw:fill-color="#99ccff" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" draw:shadow-offset-y="0.3cm" draw:start-line-spacing-horizontal="0.283cm" draw:start-line-spacing-vertical="0.283cm" draw:end-line-spacing-horizontal="0.283cm" draw:end-line-spacing-vertical="0.283cm" style:flow-with-text="true"/>
+      <style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
+        <style:tab-stops/>
+      </style:paragraph-properties>
+      <style:text-properties style:use-window-font-color="true" style:font-name="Times New Roman" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Arial Unicode MS" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Tahoma" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none"/>
+    </style:default-style>
+    <style:default-style style:family="paragraph">
+      <style:paragraph-properties fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
+      <style:text-properties style:use-window-font-color="true" style:font-name="Times New Roman" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Arial Unicode MS" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Tahoma" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2"/>
+    </style:default-style>
+    <style:default-style style:family="table">
+      <style:table-properties table:border-model="collapsing"/>
+    </style:default-style>
+    <style:default-style style:family="table-row">
+      <style:table-row-properties fo:keep-together="always"/>
+    </style:default-style>
+    <style:style style:name="Standard" style:family="paragraph" style:class="text">
+      <style:text-properties fo:language="en" fo:country="GB"/>
+    </style:style>
+    <style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
+      <style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" loext:contextual-spacing="false" fo:keep-with-next="always"/>
+      <style:text-properties style:font-name="Arial" fo:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="MS Mincho" style:font-family-asian="'MS Mincho'" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="Tahoma2" style:font-family-complex="Tahoma" style:font-family-generic-complex="system" style:font-size-complex="14pt"/>
+    </style:style>
+    <style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text"/>
+    <style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list">
+      <style:text-properties style:font-name-complex="Tahoma1" style:font-family-complex="Tahoma"/>
+    </style:style>
+    <style:style style:name="Caption" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+      <style:paragraph-properties fo:margin-top="0.212cm" fo:margin-bottom="0.212cm" loext:contextual-spacing="false" text:number-lines="false" text:line-number="0"/>
+      <style:text-properties fo:font-size="12pt" fo:font-style="italic" style:font-size-asian="12pt" style:font-style-asian="italic" style:font-name-complex="Tahoma1" style:font-family-complex="Tahoma" style:font-size-complex="12pt" style:font-style-complex="italic"/>
+    </style:style>
+    <style:style style:name="Index" style:family="paragraph" style:parent-style-name="Standard" style:class="index">
+      <style:paragraph-properties text:number-lines="false" text:line-number="0"/>
+      <style:text-properties style:font-name-complex="Tahoma1" style:font-family-complex="Tahoma"/>
+    </style:style>
+    <style:style style:name="Footer" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+      <style:paragraph-properties text:number-lines="false" text:line-number="0">
+        <style:tab-stops>
+          <style:tab-stop style:position="8.5cm" style:type="center"/>
+          <style:tab-stop style:position="17cm" style:type="right"/>
+        </style:tab-stops>
+      </style:paragraph-properties>
+    </style:style>
+    <style:style style:name="P_5f_Clause_20_Header" style:display-name="P_Clause Header" style:family="paragraph" style:parent-style-name="P_5f_Heading" style:master-page-name="">
+      <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" loext:contextual-spacing="false" fo:text-align="start" style:justify-single-word="false" style:page-number="auto"/>
+      <style:text-properties fo:color="#077b99"/>
+    </style:style>
+    <style:style style:name="Table_20_Contents" style:display-name="Table Contents" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+      <style:paragraph-properties text:number-lines="false" text:line-number="0"/>
+    </style:style>
+    <style:style style:name="Illustration" style:family="paragraph" style:parent-style-name="Caption" style:class="extra"/>
+    <style:style style:name="P_5f_Heading" style:display-name="P_Heading" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt">
+      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.21cm" fo:margin-bottom="0.21cm" loext:contextual-spacing="false" fo:line-height="100%" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
+      <style:text-properties fo:color="#077b99" fo:font-size="14pt" fo:font-weight="bold"/>
+    </style:style>
+    <style:style style:name="P_5f_Default_5f_6pt_20_Arabic" style:display-name="P_Default_6pt Arabic" style:family="paragraph" style:parent-style-name="P_5f_Default_5f_6pt_20_centered" style:master-page-name="">
+      <style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:page-number="auto" style:shadow="none" style:writing-mode="rl-tb"/>
+      <style:text-properties style:font-size-asian="6pt" style:font-name-complex="Arial1" style:font-family-complex="Arial" style:font-style-name-complex="Regular" style:font-family-generic-complex="swiss" style:font-pitch-complex="variable" style:font-size-complex="6pt" style:language-complex="ar" style:country-complex="AE"/>
+    </style:style>
+    <style:style style:name="Frame_20_contents" style:display-name="Frame contents" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="extra"/>
+    <style:style style:name="_5f_P_5f_Default_5f_10pt" style:display-name="_P_Default_10pt" style:family="paragraph" style:parent-style-name="Standard">
+      <style:paragraph-properties fo:line-height="0.559cm" fo:text-align="justify" style:justify-single-word="false"/>
+      <style:text-properties style:font-name="Arial1" fo:font-family="Arial" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="10pt"/>
+    </style:style>
+    <style:style style:name="P_5f_Default_5f_10pt_5f_left" style:display-name="P_Default_10pt_left" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt">
+      <style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
+    </style:style>
+    <style:style style:name="P_5f_Terms_20_and_20_Conditions_20_Heading_20__28_center_29_" style:display-name="P_Terms and Conditions Heading (center)" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt" style:master-page-name="">
+      <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" loext:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false" style:page-number="auto"/>
+    </style:style>
+    <style:style style:name="Table" style:family="paragraph" style:parent-style-name="Caption" style:class="extra"/>
+    <style:style style:name="Text" style:family="paragraph" style:parent-style-name="Caption" style:class="extra"/>
+    <style:style style:name="Table_20_Heading" style:display-name="Table Heading" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:class="extra">
+      <style:paragraph-properties text:number-lines="false" text:line-number="0"/>
+    </style:style>
+    <style:style style:name="P_5f_Default_5f_6pt" style:display-name="P_Default_6pt" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt">
+      <style:text-properties fo:font-size="6pt"/>
+    </style:style>
+    <style:style style:name="P_5f_Default_5f_8pt" style:display-name="P_Default_8pt" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt">
+      <style:paragraph-properties fo:line-height="0.42cm"/>
+      <style:text-properties fo:font-size="8pt"/>
+    </style:style>
+    <style:style style:name="Sender" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+      <style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.106cm" loext:contextual-spacing="false" text:number-lines="false" text:line-number="0"/>
+    </style:style>
+    <style:style style:name="P_5f_Terms_20_and_20_Conditions" style:display-name="P_Terms and Conditions" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt"/>
+    <style:style style:name="Header" style:family="paragraph" style:parent-style-name="Standard" style:class="extra">
+      <style:paragraph-properties text:number-lines="false" text:line-number="0">
+        <style:tab-stops>
+          <style:tab-stop style:position="8.498cm" style:type="center"/>
+          <style:tab-stop style:position="16.999cm" style:type="right"/>
+        </style:tab-stops>
+      </style:paragraph-properties>
+    </style:style>
+    <style:style style:name="P_5f_Document_20_Header_20__28_left_29_" style:display-name="P_Document Header (left)" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt">
+      <style:text-properties fo:font-variant="normal" fo:text-transform="none" fo:color="#000000" fo:font-size="8pt"/>
+    </style:style>
+    <style:style style:name="P_5f_Subheading" style:display-name="P_Subheading" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt">
+      <loext:graphic-properties draw:fill="none" draw:fill-color="#99ccff"/>
+      <style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false" fo:background-color="transparent">
+        <style:tab-stops/>
+      </style:paragraph-properties>
+    </style:style>
+    <style:style style:name="P_5f_Default_5f_6pt_20_centered" style:display-name="P_Default_6pt centered" style:family="paragraph" style:parent-style-name="P_5f_Default_5f_6pt">
+      <style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
+    </style:style>
+    <style:style style:name="P_5f_Document_20_Header_20__28_right_29_" style:display-name="P_Document Header (right)" style:family="paragraph" style:parent-style-name="P_5f_Document_20_Header_20__28_left_29_">
+      <style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
+    </style:style>
+    <style:style style:name="Endnote_20_Symbol" style:display-name="Endnote Symbol" style:family="text"/>
+    <style:style style:name="Bullet_20_Symbols" style:display-name="Bullet Symbols" style:family="text">
+      <style:text-properties style:font-name="OpenSymbol" fo:font-family="OpenSymbol" style:font-name-asian="OpenSymbol" style:font-family-asian="OpenSymbol" style:font-name-complex="OpenSymbol" style:font-family-complex="OpenSymbol"/>
+    </style:style>
+    <style:style style:name="C_5f_Underlined" style:display-name="C_Underlined" style:family="text">
+      <style:text-properties style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold"/>
+    </style:style>
+    <style:style style:name="C_5f_White" style:display-name="C_White" style:family="text">
+      <style:text-properties fo:color="#ffffff"/>
+    </style:style>
+    <style:style style:name="Numbering_20_Symbols" style:display-name="Numbering Symbols" style:family="text"/>
+    <style:style style:name="Footnote_20_Symbol" style:display-name="Footnote Symbol" style:family="text"/>
+    <style:style style:name="C_5f_TODO" style:display-name="C_TODO" style:family="text">
+      <style:text-properties fo:color="#ff0000"/>
+    </style:style>
+    <style:style style:name="C_5f_Bold" style:display-name="C_Bold" style:family="text">
+      <style:text-properties fo:font-weight="bold"/>
+    </style:style>
+    <style:style style:name="C_5f_Capitals" style:display-name="C_Capitals" style:family="text">
+      <style:text-properties fo:text-transform="uppercase"/>
+    </style:style>
+    <style:style style:name="Graphics" style:family="graphic">
+      <style:graphic-properties text:anchor-type="paragraph" svg:x="0cm" svg:y="0cm" style:wrap="none" style:vertical-pos="top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="paragraph"/>
+    </style:style>
+    <text:notes-configuration text:note-class="footnote" text:citation-style-name="Footnote_20_Symbol" style:num-format="1" text:start-value="0" text:footnotes-position="page" text:start-numbering-at="page"/>
+    <text:notes-configuration text:note-class="endnote" text:citation-style-name="Endnote_20_Symbol" text:master-page-name="Endnote" style:num-format="1" text:start-value="0"/>
+    <text:linenumbering-configuration text:number-lines="false" text:offset="0.499cm" style:num-format="1" text:number-position="left" text:increment="5"/>
+  </office:styles>
+  <office:automatic-styles>
+    <style:style style:name="Table29" style:family="table">
+      <style:table-properties style:width="16.674cm" fo:margin-left="0cm" fo:margin-right="-0.012cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table29.A" style:family="table-column">
+      <style:table-column-properties style:column-width="7.597cm" style:rel-column-width="29862*"/>
+    </style:style>
+    <style:style style:name="Table29.B" style:family="table-column">
+      <style:table-column-properties style:column-width="9.077cm" style:rel-column-width="35673*"/>
+    </style:style>
+    <style:style style:name="Table29.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="none"/>
+    </style:style>
+    <style:style style:name="Table1" style:family="table">
+      <style:table-properties style:width="16.662cm" fo:margin-left="0cm" fo:margin-right="0cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table1.A" style:family="table-column">
+      <style:table-column-properties style:column-width="2.122cm" style:rel-column-width="8343*"/>
+    </style:style>
+    <style:style style:name="Table1.B" style:family="table-column">
+      <style:table-column-properties style:column-width="6.154cm" style:rel-column-width="24206*"/>
+    </style:style>
+    <style:style style:name="Table1.C" style:family="table-column">
+      <style:table-column-properties style:column-width="8.386cm" style:rel-column-width="32986*"/>
+    </style:style>
+    <style:style style:name="Table1.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.101cm" fo:border="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table1.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.101cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="0.05pt solid #000000" fo:border-bottom="none"/>
+    </style:style>
+    <style:style style:name="Table1.B2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.101cm" fo:border-left="none" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="none"/>
+    </style:style>
+    <style:style style:name="Table1.C2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.101cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="0.05pt solid #000000" fo:border-bottom="none"/>
+    </style:style>
+    <style:style style:name="Table1.A3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.101cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="none"/>
+    </style:style>
+    <style:style style:name="Table1.B3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.101cm" fo:border="none"/>
+    </style:style>
+    <style:style style:name="Table1.C3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.101cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="none"/>
+    </style:style>
+    <style:style style:name="Table1.A4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.101cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table1.B4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.101cm" fo:border-left="none" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table1.C4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.101cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table3" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table3.A" style:family="table-column">
+      <style:table-column-properties style:column-width="8.273cm" style:rel-column-width="32536*"/>
+    </style:style>
+    <style:style style:name="Table3.B" style:family="table-column">
+      <style:table-column-properties style:column-width="8.389cm" style:rel-column-width="32999*"/>
+    </style:style>
+    <style:style style:name="Table3.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table3.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table4" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table4.A" style:family="table-column">
+      <style:table-column-properties style:column-width="8.273cm" style:rel-column-width="32536*"/>
+    </style:style>
+    <style:style style:name="Table4.B" style:family="table-column">
+      <style:table-column-properties style:column-width="8.389cm" style:rel-column-width="32999*"/>
+    </style:style>
+    <style:style style:name="Table4.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table4.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table5" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table5.A" style:family="table-column">
+      <style:table-column-properties style:column-width="8.273cm" style:rel-column-width="32536*"/>
+    </style:style>
+    <style:style style:name="Table5.B" style:family="table-column">
+      <style:table-column-properties style:column-width="8.389cm" style:rel-column-width="32999*"/>
+    </style:style>
+    <style:style style:name="Table5.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table5.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table6" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table6.A" style:family="table-column">
+      <style:table-column-properties style:column-width="8.273cm" style:rel-column-width="32536*"/>
+    </style:style>
+    <style:style style:name="Table6.B" style:family="table-column">
+      <style:table-column-properties style:column-width="8.389cm" style:rel-column-width="32999*"/>
+    </style:style>
+    <style:style style:name="Table6.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table6.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table7" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table7.A" style:family="table-column">
+      <style:table-column-properties style:column-width="8.273cm" style:rel-column-width="32536*"/>
+    </style:style>
+    <style:style style:name="Table7.B" style:family="table-column">
+      <style:table-column-properties style:column-width="8.389cm" style:rel-column-width="32999*"/>
+    </style:style>
+    <style:style style:name="Table7.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table7.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table8" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table8.A" style:family="table-column">
+      <style:table-column-properties style:column-width="8.273cm" style:rel-column-width="32536*"/>
+    </style:style>
+    <style:style style:name="Table8.B" style:family="table-column">
+      <style:table-column-properties style:column-width="8.389cm" style:rel-column-width="32999*"/>
+    </style:style>
+    <style:style style:name="Table8.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table8.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table9" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table9.A" style:family="table-column">
+      <style:table-column-properties style:column-width="8.273cm" style:rel-column-width="32536*"/>
+    </style:style>
+    <style:style style:name="Table9.B" style:family="table-column">
+      <style:table-column-properties style:column-width="8.389cm" style:rel-column-width="32999*"/>
+    </style:style>
+    <style:style style:name="Table9.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table9.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table10" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table10.A" style:family="table-column">
+      <style:table-column-properties style:column-width="8.273cm" style:rel-column-width="32536*"/>
+    </style:style>
+    <style:style style:name="Table10.B" style:family="table-column">
+      <style:table-column-properties style:column-width="8.389cm" style:rel-column-width="32999*"/>
+    </style:style>
+    <style:style style:name="Table10.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table10.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table10.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table10.B2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table11" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table11.A" style:family="table-column">
+      <style:table-column-properties style:column-width="16.662cm" style:rel-column-width="65535*"/>
+    </style:style>
+    <style:style style:name="Table11.1" style:family="table-row">
+      <style:table-row-properties fo:keep-together="auto"/>
+    </style:style>
+    <style:style style:name="Table11.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="0.05pt solid #000000" fo:border-bottom="none">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table12" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table12.A" style:family="table-column">
+      <style:table-column-properties style:column-width="3.625cm" style:rel-column-width="14258*"/>
+    </style:style>
+    <style:style style:name="Table12.B" style:family="table-column">
+      <style:table-column-properties style:column-width="13.037cm" style:rel-column-width="51277*"/>
+    </style:style>
+    <style:style style:name="Table12.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table12.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table13" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table13.A" style:family="table-column">
+      <style:table-column-properties style:column-width="3.627cm" style:rel-column-width="14265*"/>
+    </style:style>
+    <style:style style:name="Table13.B" style:family="table-column">
+      <style:table-column-properties style:column-width="13.035cm" style:rel-column-width="51270*"/>
+    </style:style>
+    <style:style style:name="Table13.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table13.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table14" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table14.A" style:family="table-column">
+      <style:table-column-properties style:column-width="3.625cm" style:rel-column-width="14258*"/>
+    </style:style>
+    <style:style style:name="Table14.B" style:family="table-column">
+      <style:table-column-properties style:column-width="13.037cm" style:rel-column-width="51277*"/>
+    </style:style>
+    <style:style style:name="Table14.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table14.B1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="transparent" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table15" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table15.A" style:family="table-column">
+      <style:table-column-properties style:column-width="3.627cm" style:rel-column-width="14265*"/>
+    </style:style>
+    <style:style style:name="Table15.B" style:family="table-column">
+      <style:table-column-properties style:column-width="13.035cm" style:rel-column-width="51270*"/>
+    </style:style>
+    <style:style style:name="Table15.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table15.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table16" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table16.A" style:family="table-column">
+      <style:table-column-properties style:column-width="16.662cm" style:rel-column-width="65535*"/>
+    </style:style>
+    <style:style style:name="Table16.1" style:family="table-row">
+      <style:table-row-properties fo:keep-together="auto"/>
+    </style:style>
+    <style:style style:name="Table16.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.097cm" fo:border-left="1pt solid #000000" fo:border-right="1pt solid #000000" fo:border-top="1pt solid #000000" fo:border-bottom="none">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table16.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0cm" fo:border="none"/>
+    </style:style>
+    <style:style style:name="Table16.A4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0cm" fo:border="none"/>
+    </style:style>
+    <style:style style:name="Table17" style:family="table">
+      <style:table-properties style:width="16.623cm" fo:margin-left="0.005cm" fo:margin-right="0.034cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table17.A" style:family="table-column">
+      <style:table-column-properties style:column-width="16.623cm" style:rel-column-width="65535*"/>
+    </style:style>
+    <style:style style:name="Table17.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table18" style:family="table">
+      <style:table-properties style:width="16.623cm" fo:margin-left="0cm" fo:margin-right="0.039cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table18.A" style:family="table-column">
+      <style:table-column-properties style:column-width="7.664cm" style:rel-column-width="30218*"/>
+    </style:style>
+    <style:style style:name="Table18.B" style:family="table-column">
+      <style:table-column-properties style:column-width="3.669cm" style:rel-column-width="14461*"/>
+    </style:style>
+    <style:style style:name="Table18.C" style:family="table-column">
+      <style:table-column-properties style:column-width="2.096cm" style:rel-column-width="8260*"/>
+    </style:style>
+    <style:style style:name="Table18.D" style:family="table-column">
+      <style:table-column-properties style:column-width="3.194cm" style:rel-column-width="12596*"/>
+    </style:style>
+    <style:style style:name="Table18.1" style:family="table-row">
+      <style:table-row-properties fo:keep-together="auto"/>
+    </style:style>
+    <style:style style:name="Table18.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table18.D1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table18.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table18.D2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table19" style:family="table">
+      <style:table-properties style:width="16.623cm" fo:margin-left="0.005cm" fo:margin-right="0.034cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table19.A" style:family="table-column">
+      <style:table-column-properties style:column-width="16.623cm" style:rel-column-width="65535*"/>
+    </style:style>
+    <style:style style:name="Table19.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table20" style:family="table">
+      <style:table-properties style:width="16.623cm" fo:margin-left="0cm" fo:margin-right="0.039cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table20.A" style:family="table-column">
+      <style:table-column-properties style:column-width="7.664cm" style:rel-column-width="30218*"/>
+    </style:style>
+    <style:style style:name="Table20.B" style:family="table-column">
+      <style:table-column-properties style:column-width="3.669cm" style:rel-column-width="14461*"/>
+    </style:style>
+    <style:style style:name="Table20.C" style:family="table-column">
+      <style:table-column-properties style:column-width="2.096cm" style:rel-column-width="8260*"/>
+    </style:style>
+    <style:style style:name="Table20.D" style:family="table-column">
+      <style:table-column-properties style:column-width="3.194cm" style:rel-column-width="12596*"/>
+    </style:style>
+    <style:style style:name="Table20.1" style:family="table-row">
+      <style:table-row-properties fo:keep-together="auto"/>
+    </style:style>
+    <style:style style:name="Table20.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table20.D1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table20.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table20.D2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table21.A" style:family="table-column">
+      <style:table-column-properties style:column-width="3.078cm" style:rel-column-width="12110*"/>
+    </style:style>
+    <style:style style:name="Table21.B" style:family="table-column">
+      <style:table-column-properties style:column-width="13.584cm" style:rel-column-width="53425*"/>
+    </style:style>
+    <style:style style:name="Table21.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table21.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21.B2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21.A3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21.B3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21.A4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21.B4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21.A5" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21.B5" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21.A6" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table21.B6" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table22.A" style:family="table-column">
+      <style:table-column-properties style:column-width="2.925cm" style:rel-column-width="11505*"/>
+    </style:style>
+    <style:style style:name="Table22.B" style:family="table-column">
+      <style:table-column-properties style:column-width="1.813cm" style:rel-column-width="7132*"/>
+    </style:style>
+    <style:style style:name="Table22.C" style:family="table-column">
+      <style:table-column-properties style:column-width="11.924cm" style:rel-column-width="46898*"/>
+    </style:style>
+    <style:style style:name="Table22.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table22.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.B2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.C2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.A3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.B3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.C3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.A4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.B4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.C4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.A5" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.B5" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.C5" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.A6" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.B6" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.C6" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.A7" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.B7" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table22.C7" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table23" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table23.A" style:family="table-column">
+      <style:table-column-properties style:column-width="16.662cm" style:rel-column-width="65535*"/>
+    </style:style>
+    <style:style style:name="Table23.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table24" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table24.A" style:family="table-column">
+      <style:table-column-properties style:column-width="2.926cm" style:rel-column-width="11511*"/>
+    </style:style>
+    <style:style style:name="Table24.B" style:family="table-column">
+      <style:table-column-properties style:column-width="13.735cm" style:rel-column-width="54024*"/>
+    </style:style>
+    <style:style style:name="Table24.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table24.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table25" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table25.A" style:family="table-column">
+      <style:table-column-properties style:column-width="2.926cm" style:rel-column-width="11511*"/>
+    </style:style>
+    <style:style style:name="Table25.B" style:family="table-column">
+      <style:table-column-properties style:column-width="13.735cm" style:rel-column-width="54024*"/>
+    </style:style>
+    <style:style style:name="Table25.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table25.B1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table26" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table26.A" style:family="table-column">
+      <style:table-column-properties style:column-width="16.662cm" style:rel-column-width="65535*"/>
+    </style:style>
+    <style:style style:name="Table26.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table26.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table27.A" style:family="table-column">
+      <style:table-column-properties style:column-width="2.237cm" style:rel-column-width="8798*"/>
+    </style:style>
+    <style:style style:name="Table27.B" style:family="table-column">
+      <style:table-column-properties style:column-width="6.089cm" style:rel-column-width="23948*"/>
+    </style:style>
+    <style:style style:name="Table27.C" style:family="table-column">
+      <style:table-column-properties style:column-width="2.235cm" style:rel-column-width="8791*"/>
+    </style:style>
+    <style:style style:name="Table27.D" style:family="table-column">
+      <style:table-column-properties style:column-width="6.101cm" style:rel-column-width="23998*"/>
+    </style:style>
+    <style:style style:name="Table27.A1" style:family="table-cell">
+      <style:table-cell-properties fo:background-color="#0899cc" fo:padding="0.097cm" fo:border="0.05pt solid #000000">
+        <style:background-image/>
+      </style:table-cell-properties>
+    </style:style>
+    <style:style style:name="Table27.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.C2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.A3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.B3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.C3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.D3" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.A4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.B4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.C4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.D4" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.A5" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.B5" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.C5" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.D5" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.A6" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.B6" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.C6" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table27.D6" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table28" style:family="table">
+      <style:table-properties style:width="16.662cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table28.A" style:family="table-column">
+      <style:table-column-properties style:column-width="2.235cm" style:rel-column-width="8791*"/>
+    </style:style>
+    <style:style style:name="Table28.B" style:family="table-column">
+      <style:table-column-properties style:column-width="6.087cm" style:rel-column-width="23941*"/>
+    </style:style>
+    <style:style style:name="Table28.D" style:family="table-column">
+      <style:table-column-properties style:column-width="6.105cm" style:rel-column-width="24012*"/>
+    </style:style>
+    <style:style style:name="Table28.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table28.C1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="none" fo:border-right="none" fo:border-top="0.05pt solid #000000" fo:border-bottom="none"/>
+    </style:style>
+    <style:style style:name="Table28.A2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="none" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table28.B2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
+    </style:style>
+    <style:style style:name="Table28.C2" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="none"/>
+    </style:style>
+    <style:style style:name="Table29" style:family="table">
+      <style:table-properties style:width="16.674cm" fo:margin-left="0cm" fo:margin-right="-0.012cm" table:align="margins"/>
+    </style:style>
+    <style:style style:name="Table29.A" style:family="table-column">
+      <style:table-column-properties style:column-width="7.597cm" style:rel-column-width="29862*"/>
+    </style:style>
+    <style:style style:name="Table29.B" style:family="table-column">
+      <style:table-column-properties style:column-width="9.077cm" style:rel-column-width="35673*"/>
+    </style:style>
+    <style:style style:name="Table29.A1" style:family="table-cell">
+      <style:table-cell-properties fo:padding="0.097cm" fo:border="none"/>
+    </style:style>
+    <style:style style:name="P1" style:family="paragraph" style:parent-style-name="P_5f_Heading">
+      <style:text-properties fo:language="en" fo:country="GB"/>
+    </style:style>
+    <style:style style:name="P2" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt">
+      <style:text-properties fo:language="en" fo:country="GB"/>
+    </style:style>
+    <style:style style:name="P3" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt" style:master-page-name="">
+      <style:paragraph-properties style:page-number="auto"/>
+    </style:style>
+    <style:style style:name="P4" style:family="paragraph" style:parent-style-name="P_5f_Default_5f_10pt_5f_left">
+      <style:text-properties fo:language="en" fo:country="GB"/>
+    </style:style>
+    <style:style style:name="P5" style:family="paragraph" style:parent-style-name="P_5f_Default_5f_6pt">
+      <style:text-properties fo:language="en" fo:country="GB"/>
+    </style:style>
+    <style:style style:name="P6" style:family="paragraph" style:parent-style-name="P_5f_Default_5f_6pt_20_centered">
+      <style:text-properties fo:language="en" fo:country="GB"/>
+    </style:style>
+    <style:style style:name="P7" style:family="paragraph" style:parent-style-name="_5f_P_5f_Default_5f_10pt" style:master-page-name="PG_5f_Default">
+      <style:paragraph-properties style:page-number="auto"/>
+    </style:style>
+    <style:style style:name="T1" style:family="text">
+      <style:text-properties fo:language="en" fo:country="GB"/>
+    </style:style>
+    <style:style style:name="T2" style:family="text">
+      <style:text-properties fo:language="en" fo:country="US"/>
+    </style:style>
+    <style:style style:name="Sect1" style:family="section">
+      <style:section-properties fo:background-color="transparent" style:editable="false">
+        <style:columns fo:column-count="1" fo:column-gap="0cm"/>
+        <style:background-image/>
+      </style:section-properties>
+    </style:style>
+    <style:style style:name="Sect2" style:family="section">
+      <style:section-properties fo:background-color="#df3c56" style:editable="false">
+        <style:columns fo:column-count="1" fo:column-gap="0cm"/>
+        <style:background-image/>
+      </style:section-properties>
+    </style:style>
+    <style:style style:name="Sect3" style:family="section">
+      <style:section-properties fo:background-color="#f2f9fb" style:editable="false">
+        <style:columns fo:column-count="1" fo:column-gap="0cm"/>
+        <style:background-image/>
+      </style:section-properties>
+    </style:style>
+    <style:style style:name="Sect4" style:family="section">
+      <style:section-properties fo:background-color="#f8f3fc" style:editable="false">
+        <style:columns fo:column-count="1" fo:column-gap="0cm"/>
+        <style:background-image/>
+      </style:section-properties>
+    </style:style>
+    <style:page-layout style:name="pm1">
+      <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:footnote-max-height="0cm">
+        <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="none" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
+      </style:page-layout-properties>
+      <style:header-style/>
+      <style:footer-style/>
+    </style:page-layout>
+    <style:page-layout style:name="pm2">
+      <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="2cm" fo:margin-bottom="2cm" fo:margin-left="2cm" fo:margin-right="2cm" style:writing-mode="lr-tb" style:footnote-max-height="0cm">
+        <style:footnote-sep style:line-style="none" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
+      </style:page-layout-properties>
+      <style:header-style/>
+      <style:footer-style/>
+    </style:page-layout>
+    <style:page-layout style:name="pm3">
+      <style:page-layout-properties fo:page-width="21.001cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:margin-top="0.4cm" fo:margin-bottom="0.499cm" fo:margin-left="2.54cm" fo:margin-right="1.799cm" fo:border="none" fo:padding="0cm" style:shadow="none" style:writing-mode="lr-tb" style:footnote-max-height="0cm">
+        <style:footnote-sep style:width="0.018cm" style:distance-before-sep="0.101cm" style:distance-after-sep="0.101cm" style:line-style="none" style:adjustment="left" style:rel-width="25%" style:color="#000000"/>
+      </style:page-layout-properties>
+      <style:header-style/>
+      <style:footer-style>
+        <style:header-footer-properties fo:min-height="0.998cm" fo:margin-left="0cm" fo:margin-right="0cm" fo:margin-top="0.499cm" style:dynamic-spacing="false"/>
+      </style:footer-style>
+    </style:page-layout>
+    <number:number-style style:name="N10003" number:language="en" number:country="GB">
+      <number:number number:decimal-places="0" loext:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
+    </number:number-style>
+    <number:number-style style:name="N10004" number:language="en" number:country="GB">
+      <number:number number:decimal-places="2" loext:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
+    </number:number-style>
+  </office:automatic-styles>
+  <office:master-styles>
+    <style:master-page style:name="Standard" style:page-layout-name="pm1"/>
+    <style:master-page style:name="Endnote" style:page-layout-name="pm2"/>
+    <style:master-page style:name="PG_5f_Default" style:display-name="PG_Default" style:page-layout-name="pm3">
+      <style:footer>
+        <table:table table:name="Table29" table:style-name="Table29">
+          <table:table-column table:style-name="Table29.A"/>
+          <table:table-column table:style-name="Table29.B"/>
+          <table:table-row>
+            <table:table-cell table:style-name="Table29.A1" office:value-type="string">
+              <text:p/>
+            </table:table-cell>
+            <table:table-cell table:style-name="Table29.A1" office:value-type="string">
+              <text:p/>
+            </table:table-cell>
+          </table:table-row>
+        </table:table>
+        <text:p/>
+      </style:footer>
+    </style:master-page>
+  </office:master-styles>
+  <office:body>
+    <office:text text:use-soft-page-breaks="true">
+      <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
+      <text:sequence-decls>
+        <text:sequence-decl text:display-outline-level="0" text:name="Illustration"/>
+        <text:sequence-decl text:display-outline-level="0" text:name="Table"/>
+        <text:sequence-decl text:display-outline-level="0" text:name="Text"/>
+        <text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
+      </text:sequence-decls>
+      <text:p text:style-name="P7"/>
+      <text:p text:style-name="P1"></text:p>
+      <text:p text:style-name="_5f_P_5f_Default_5f_10pt"><text:line-break/><text:line-break/><text:line-break/><text:line-break/><text:line-break/></text:p>
+      <text:p text:style-name="_5f_P_5f_Default_5f_10pt"/>
+      <table:table table:name="Table16" table:style-name="Table16">
+        <table:table-column table:style-name="Table16.A"/>
+        <table:table-row table:style-name="Table16.1">
+          <table:table-cell table:style-name="Table16.A1" office:value-type="string">
+            <text:p text:style-name="_5f_P_5f_Default_5f_10pt"></text:p>
+          </table:table-cell>
+        </table:table-row>
+        <table:table-row table:style-name="Table16.1">
+          <table:table-cell table:style-name="Table16.A4" office:value-type="string">
+            <table:table table:name="Table18" table:style-name="Table18">
+              <table:table-column table:style-name="Table18.A"/>
+              <table:table-column table:style-name="Table18.B"/>
+              <table:table-column table:style-name="Table18.C"/>
+              <table:table-column table:style-name="Table18.D"/>
+              <table:table-row>
+                <table:table-cell table:style-name="Table1.A1" table:number-columns-spanned="3" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_10pt_5f_left"></text:p>
+                </table:table-cell>
+                <table:covered-table-cell/>
+                <table:covered-table-cell/>
+              </table:table-row>
+              <table:table-row>
+                <table:table-cell table:style-name="Table1.A2" office:value-type="string">
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt"></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table1.B2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_10pt_5f_left"></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table1.C2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_10pt_5f_left"></text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row>
+                <table:table-cell table:style-name="Table1.A3" office:value-type="string">
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt"></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table1.B3" office:value-type="string">
+                  <text:p text:style-name="P4"></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table1.C3" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_10pt_5f_left"></text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row>
+                <table:table-cell table:style-name="Table1.A4" office:value-type="string">
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt">A</text:p>
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt">A</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table1.B4" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_10pt_5f_left"></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table1.C4" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_10pt_5f_left"></text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row>
+                <table:table-cell table:style-name="Table3.A1" office:value-type="string">
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt"></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table3.B1" office:value-type="string">
+                  <text:p></text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row>
+                <table:table-cell table:style-name="Table4.A1" office:value-type="string">
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt"></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table4.B1" office:value-type="string">
+                  <text:p></text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row>
+                <table:table-cell table:style-name="Table5.A1" office:value-type="string">
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt"></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table5.B1" office:value-type="string">
+                  <text:p text:style-name="P2"></text:p>
+                  <text:p text:style-name="P2"></text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row>
+                <table:table-cell table:style-name="Table6.A1" office:value-type="string">
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt"></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table6.B1" office:value-type="string">
+                  <text:p text:style-name="Standard"/>
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt"></text:p>
+                  <text:p text:style-name="Standard"/>
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt"/>
+                  <text:p text:style-name="Standard"/>
+                  <text:p text:style-name="_5f_P_5f_Default_5f_10pt"/>
+                  <text:p/>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row table:style-name="Table18.1">
+                <table:table-cell table:style-name="Table18.A1" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_6pt"><text:span text:style-name="T1">Aaaaaaaaaa01 Bbbbbbb cc </text:span><text:span text:style-name="T1">Ddddddd</text:span></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A1" office:value-type="string">
+                  <text:p>B</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A1" office:value-type="string">
+                  <text:p>C</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.D1" office:value-type="string">
+                  <text:p>D</text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row table:style-name="Table18.1">
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_6pt"><text:span text:style-name="T1">Aaaaaaaaaa02 Bbbbbbb cc </text:span><text:span text:style-name="T1">Ddddddd</text:span></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>B</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>C</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.D2" office:value-type="string">
+                  <text:p>D</text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row table:style-name="Table18.1">
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_6pt"><text:span text:style-name="T1">Aaaaaaaaaa03 Bbbbbbb cc </text:span><text:span text:style-name="T1">Ddddddd</text:span></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>B</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>C</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.D2" office:value-type="string">
+                  <text:p>D</text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row table:style-name="Table18.1">
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_6pt"><text:span text:style-name="T1">Aaaaaaaaaa04 Bbbbbbb cc </text:span><text:span text:style-name="T1">Ddddddd</text:span></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>B</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>C</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.D2" office:value-type="string">
+                  <text:p>D</text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row table:style-name="Table18.1">
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_6pt"><text:span text:style-name="T1">Aaaaaaaaaa05 Bbbbbbb cc </text:span><text:span text:style-name="T1">Ddddddd</text:span></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>B</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>C</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.D2" office:value-type="string">
+                  <text:p>D</text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row table:style-name="Table18.1">
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_6pt"><text:span text:style-name="T1">Aaaaaaaaaa06 Bbbbbbb cc </text:span><text:span text:style-name="T1">Ddddddd</text:span></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>B</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>C</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.D2" office:value-type="string">
+                  <text:p>D</text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row table:style-name="Table18.1">
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_6pt"><text:span text:style-name="T1">Aaaaaaaaaa07 Bbbbbbb cc </text:span><text:span text:style-name="T1">Ddddddd</text:span></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>B</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>C</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.D2" office:value-type="string">
+                  <text:p>D</text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row table:style-name="Table18.1">
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_6pt"><text:span text:style-name="T1">Aaaaaaaaaa08 Bbbbbbb cc </text:span><text:span text:style-name="T1">Ddddddd</text:span></text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>B</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p>C</text:p>
+                </table:table-cell>
+                <table:table-cell table:style-name="Table18.D2" office:value-type="string">
+                  <text:p>D</text:p>
+                </table:table-cell>
+              </table:table-row>
+              <table:table-row table:style-name="Table18.1">
+                <table:table-cell table:style-name="Table18.A2" office:value-type="string">
+                  <text:p text:style-name="P_5f_Default_5f_6pt"><text:span text:style-name="T1">Aaaaaaaaaa09 Bbbbbbb cc </text:span><text:span text:style-name="T1">Ddddddd</text:span></text:p>
+                </table:table-cell>

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list