formula/inc/core_resource.hrc                           |    6 
 include/formula/compiler.hxx                            |    2 
 include/formula/opcode.hxx                              |    2 
 sc/README.md                                            |    1 
 sc/inc/helpids.h                                        |    1 
 sc/inc/queryiter.hxx                                    |   60 
 sc/inc/scfuncs.hrc                                      |   18 
 sc/qa/extras/scfunctionlistobj.cxx                      |    2 
 sc/qa/unit/data/functions/spreadsheet/fods/xlookup.fods | 4553 ++++++++++++++++
 sc/qa/unit/ucalc.cxx                                    |    1 
 sc/qa/unit/ucalc_sort.cxx                               |    4 
 sc/source/core/data/funcdesc.cxx                        |    1 
 sc/source/core/data/queryiter.cxx                       |  184 
 sc/source/core/inc/interpre.hxx                         |   61 
 sc/source/core/tool/interpr1.cxx                        | 1232 +++-
 sc/source/core/tool/interpr4.cxx                        |    1 
 sc/source/core/tool/parclass.cxx                        |    1 
 sc/source/core/tool/token.cxx                           |    1 
 sc/source/filter/excel/xlformula.cxx                    |   13 
 sc/source/filter/oox/formulabase.cxx                    |   15 
 20 files changed, 5816 insertions(+), 343 deletions(-)

New commits:
commit f7039822c7ad3987326e1c20ea4a745c158f9682
Author:     Winfried Donkers <winfrieddonk...@libreoffice.org>
AuthorDate: Wed Jun 28 16:13:45 2023 +0200
Commit:     Balazs Varga <balazs.varga.ext...@allotropia.de>
CommitDate: Wed Jan 31 09:14:19 2024 +0100

    tdf#127293 Add Excel2021 function XLOOKUP to Calc
    
    https://issues.oasis-open.org/browse/OFFICE-4154
    
    What is working already: xlookup with normal forward,
    backward search in columns/rows. Binary search in rows with
    real binary search algorithm, in columns only works with linear search yet.
    Linear forward backward wildcard/regex search in columns/rows.
    Looking for the first smaller or greater value with linear and binary search
    ALso all the combination of all these options. Except XLOOKUP
    not supperted wildcard/regex search with binary search.
    
    TODO in next patches:
    - add the binary search option for searching in columns.
    - Evaluate Formula calculation not working in general.
    
    Co-authored-by: Balazs Varga <balazs.varga.ext...@allotropia.de>
    
    Change-Id: I15fd4479b63ec13b093d269760d1bbb5957553e8
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131905
    Tested-by: Jenkins
    Tested-by: Gabor Kelemen <gabor.kelemen.ext...@allotropia.de>
    Reviewed-by: Balazs Varga <balazs.varga.ext...@allotropia.de>

diff --git a/formula/inc/core_resource.hrc b/formula/inc/core_resource.hrc
index baed318f586e..835d928ea4a8 100644
--- a/formula/inc/core_resource.hrc
+++ b/formula/inc/core_resource.hrc
@@ -275,6 +275,7 @@ const std::pair<const char *, int> 
RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF[] =
     { "COUNTIFS" , SC_OPCODE_COUNT_IFS },
     { "LOOKUP" , SC_OPCODE_LOOKUP },
     { "VLOOKUP" , SC_OPCODE_V_LOOKUP },
+    { "COM.MICROSOFT.XLOOKUP" , SC_OPCODE_X_LOOKUP },
     { "HLOOKUP" , SC_OPCODE_H_LOOKUP },
     { "ORG.OPENOFFICE.MULTIRANGE" , SC_OPCODE_MULTI_AREA }, // legacy for 
range list (union)
     { "OFFSET" , SC_OPCODE_OFFSET },
@@ -722,6 +723,7 @@ const std::pair<const char *, int> 
RID_STRLIST_FUNCTION_NAMES_ENGLISH_OOXML[] =
     { "COUNTIFS" , SC_OPCODE_COUNT_IFS },
     { "LOOKUP" , SC_OPCODE_LOOKUP },
     { "VLOOKUP" , SC_OPCODE_V_LOOKUP },
+    { "_xlfn.XLOOKUP" , SC_OPCODE_X_LOOKUP },
     { "HLOOKUP" , SC_OPCODE_H_LOOKUP },
     { "_xlfn.ORG.OPENOFFICE.MULTIRANGE" , SC_OPCODE_MULTI_AREA }, // legacy 
for range list (union)
     { "OFFSET" , SC_OPCODE_OFFSET },
@@ -1172,6 +1174,7 @@ const std::pair<const char *, int> 
RID_STRLIST_FUNCTION_NAMES_ENGLISH_PODF[] =
     { "COUNTIFS" , SC_OPCODE_COUNT_IFS },
     { "LOOKUP" , SC_OPCODE_LOOKUP },
     { "VLOOKUP" , SC_OPCODE_V_LOOKUP },
+    { "XLOOKUP" , SC_OPCODE_X_LOOKUP },
     { "HLOOKUP" , SC_OPCODE_H_LOOKUP },
     { "MULTIRANGE" , SC_OPCODE_MULTI_AREA },    // legacy for range list 
(union)
     { "OFFSET" , SC_OPCODE_OFFSET },
@@ -1623,6 +1626,7 @@ const std::pair<const char *, int> 
RID_STRLIST_FUNCTION_NAMES_ENGLISH_API[] =
     { "COUNTIFS" , SC_OPCODE_COUNT_IFS },
     { "LOOKUP" , SC_OPCODE_LOOKUP },
     { "VLOOKUP" , SC_OPCODE_V_LOOKUP },
+    { "XLOOKUP" , SC_OPCODE_X_LOOKUP },
     { "HLOOKUP" , SC_OPCODE_H_LOOKUP },
     { "MULTIRANGE" , SC_OPCODE_MULTI_AREA },    // legacy for range list 
(union)
     { "OFFSET" , SC_OPCODE_OFFSET },
@@ -2072,6 +2076,7 @@ const std::pair<const char *, int> 
RID_STRLIST_FUNCTION_NAMES_ENGLISH[] =
     { "COUNTIFS" , SC_OPCODE_COUNT_IFS },
     { "LOOKUP" , SC_OPCODE_LOOKUP },
     { "VLOOKUP" , SC_OPCODE_V_LOOKUP },
+    { "XLOOKUP" , SC_OPCODE_X_LOOKUP },
     { "HLOOKUP" , SC_OPCODE_H_LOOKUP },
     { "MULTIRANGE" , SC_OPCODE_MULTI_AREA },
     { "OFFSET" , SC_OPCODE_OFFSET },
@@ -2502,6 +2507,7 @@ const std::pair<TranslateId, int> 
RID_STRLIST_FUNCTION_NAMES[] =
     { NC_("RID_STRLIST_FUNCTION_NAMES", "COUNTIFS") , SC_OPCODE_COUNT_IFS },
     { NC_("RID_STRLIST_FUNCTION_NAMES", "LOOKUP") , SC_OPCODE_LOOKUP },
     { NC_("RID_STRLIST_FUNCTION_NAMES", "VLOOKUP") , SC_OPCODE_V_LOOKUP },
+    { NC_("RID_STRLIST_FUNCTION_NAMES", "XLOOKUP") , SC_OPCODE_X_LOOKUP },
     { NC_("RID_STRLIST_FUNCTION_NAMES", "HLOOKUP") , SC_OPCODE_H_LOOKUP },
     { NC_("RID_STRLIST_FUNCTION_NAMES", "MULTIRANGE") , SC_OPCODE_MULTI_AREA 
}, // legacy for range list (union)
     { NC_("RID_STRLIST_FUNCTION_NAMES", "OFFSET") , SC_OPCODE_OFFSET },
diff --git a/include/formula/compiler.hxx b/include/formula/compiler.hxx
index fcf7326d3e0f..479008dfb1a2 100644
--- a/include/formula/compiler.hxx
+++ b/include/formula/compiler.hxx
@@ -398,7 +398,7 @@
 #define SC_OPCODE_CELL              385
 #define SC_OPCODE_ISPMT             386
 #define SC_OPCODE_HYPERLINK         387
-// free: 388
+#define SC_OPCODE_X_LOOKUP          388
 // free: 389
 #define SC_OPCODE_GET_PIVOT_DATA    390
 #define SC_OPCODE_EUROCONVERT       391
diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx
index d92ae0b1d41d..ad056a9b0b50 100644
--- a/include/formula/opcode.hxx
+++ b/include/formula/opcode.hxx
@@ -316,6 +316,7 @@ enum OpCode : sal_uInt16
         ocCountIfs          = SC_OPCODE_COUNT_IFS,
         ocLookup            = SC_OPCODE_LOOKUP,
         ocVLookup           = SC_OPCODE_V_LOOKUP,
+        ocXLookup           = SC_OPCODE_X_LOOKUP,
         ocHLookup           = SC_OPCODE_H_LOOKUP,
         ocMultiArea         = SC_OPCODE_MULTI_AREA,
         ocOffset            = SC_OPCODE_OFFSET,
@@ -798,6 +799,7 @@ inline std::string OpCodeEnumToString(OpCode eCode)
     case ocCountIfs: return "CountIfs";
     case ocLookup: return "Lookup";
     case ocVLookup: return "VLookup";
+    case ocXLookup: return "XLookup";
     case ocHLookup: return "HLookup";
     case ocMultiArea: return "MultiArea";
     case ocOffset: return "Offset";
diff --git a/sc/README.md b/sc/README.md
index 826bb71a9e9b..a778661d46f9 100644
--- a/sc/README.md
+++ b/sc/README.md
@@ -75,6 +75,7 @@ 
https://docs.oasis-open.org/office/OpenDocument/v1.3/os/part4-formula/OpenDocume
   * LOOKUP
   * MATCH
   * VLOOKUP
+  * XLOOKUP
 * Mathematical Functions
   * SUMIF
   * SUMIFS
diff --git a/sc/inc/helpids.h b/sc/inc/helpids.h
index eb3f590beb3c..3dfc8892aef6 100644
--- a/sc/inc/helpids.h
+++ b/sc/inc/helpids.h
@@ -593,5 +593,6 @@ inline constexpr OUString HID_FUNC_REGEX = 
u"SC_HID_FUNC_REGEX"_ustr;
 inline constexpr OUString HID_FUNC_FOURIER = u"SC_HID_FUNC_FOURIER"_ustr;
 inline constexpr OUString HID_FUNC_RAND_NV = u"SC_HID_FUNC_RAND_NV"_ustr;
 inline constexpr OUString HID_FUNC_RANDBETWEEN_NV = 
u"SC_HID_FUNC_RANDBETWEEN_NV"_ustr;
+inline constexpr OUString HID_FUNC_XLOOKUP_MS = u"SC_HID_FUNC_XLOOKUP_MS"_ustr;
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sc/inc/queryiter.hxx b/sc/inc/queryiter.hxx
index 1d0066de7fb8..e34a7be20e13 100644
--- a/sc/inc/queryiter.hxx
+++ b/sc/inc/queryiter.hxx
@@ -62,7 +62,7 @@ class ScQueryCellIteratorAccessSpecific< 
ScQueryCellIteratorAccess::Direct >
 {
 protected:
     ScQueryCellIteratorAccessSpecific( ScDocument& rDocument, 
ScInterpreterContext& rContext,
-        const ScQueryParam& rParam );
+        const ScQueryParam& rParam, bool bReverseSearch );
     // Initialize position for new column.
     void InitPos();
     // Increase position (next row).
@@ -71,12 +71,19 @@ protected:
     // should call IncPos().
     void IncBlock();
 
+    // Decrease position (prev row).
+    void DecPos();
+    // Prev mdds block. If access is not direct/linear, then
+    // should call DecPos().
+    void DecBlock();
+
     // These members needs to be available already in the base class.
     typedef sc::CellStoreType::const_position_type PositionType;
     PositionType maCurPos;
     ScQueryParam    maParam;
     ScDocument&     rDoc;
     ScInterpreterContext& mrContext;
+    bool            mbReverseSearch;
     SCTAB           nTab;
     SCCOL           nCol;
     SCROW           nRow;
@@ -98,19 +105,24 @@ public:
     bool IncPosImpl();
 protected:
     ScQueryCellIteratorAccessSpecific( ScDocument& rDocument, 
ScInterpreterContext& rContext,
-        const ScQueryParam& rParam );
+        const ScQueryParam& rParam, bool bReverseSearch );
     void InitPosStart();
-    void InitPosFinish( SCROW beforeRow, SCROW lastRow );
+    void InitPosFinish( SCROW beforeRow, SCROW lastRow, bool bFirstMatch );
     void IncPos() { IncPosImpl<false>(); }
     bool IncPosFast() { return IncPosImpl<true>(); }
     void IncBlock() { IncPos(); } // Cannot skip entire block, not linear.
 
+    // Initialize for backward search. (no need for SortedCache)
+    static void DecPos() {};
+    static void DecBlock() {};
+
     // These members needs to be available already in the base class.
     typedef sc::CellStoreType::const_position_type PositionType;
     PositionType maCurPos;
     ScQueryParam    maParam;
     ScDocument&     rDoc;
     ScInterpreterContext& mrContext;
+    bool            mbReverseSearch;
     SCTAB           nTab;
     SCCOL           nCol;
     SCROW           nRow;
@@ -163,17 +175,24 @@ protected:
     sal_uInt8            nTestEqualCondition;
     bool            bAdvanceQuery;
     bool            bIgnoreMismatchOnLeadingStrings;
+    bool            bSortedBinarySearch;
+    bool            bXLookUp;
+    SCCOL           nBestFitCol;
+    SCROW           nBestFitRow;
 
     // Make base members directly visible here (templated bases need 'this->').
     using AccessBase::maCurPos;
     using AccessBase::maParam;
     using AccessBase::rDoc;
     using AccessBase::mrContext;
+    using AccessBase::mbReverseSearch;
     using AccessBase::nTab;
     using AccessBase::nCol;
     using AccessBase::nRow;
     using AccessBase::IncPos;
     using AccessBase::IncBlock;
+    using AccessBase::DecPos;
+    using AccessBase::DecBlock;
     using typename AccessBase::BinarySearchCellType;
     using AccessBase::MakeBinarySearchIndexer;
     using TypeBase::HandleItemFound;
@@ -227,9 +246,14 @@ protected:
     bool            IsEqualConditionFulfilled() const
                         { return nTestEqualCondition == 
nTestEqualConditionFulfilled; }
 
+    void            HandleBestFitItemFound(SCCOL nBFitCol, SCROW nBFitRow)
+                        {
+                            nBestFitCol = nBFitCol;
+                            nBestFitRow = nBFitRow;
+                        }
 public:
                     ScQueryCellIteratorBase(ScDocument& rDocument, 
ScInterpreterContext& rContext, SCTAB nTable,
-                                            const ScQueryParam& aParam, bool 
bMod);
+                                            const ScQueryParam& aParam, bool 
bMod, bool bReverse);
                                         // when !bMod, the QueryParam has to 
be filled
                                         // (bIsString)
 
@@ -238,6 +262,12 @@ public:
     void            SetAdvanceQueryParamEntryField( bool bVal )
                         { bAdvanceQuery = bVal; }
     void            AdvanceQueryParamEntryField();
+
+    void            SetSortedBinarySearchMode( bool bVal )
+                        { bSortedBinarySearch = bVal; }
+
+    void            SetXlookupMode( bool bVal )
+                        { bXLookUp = bVal; }
 };
 
 
@@ -259,11 +289,13 @@ class ScQueryCellIterator
     using Base::maParam;
     using Base::rDoc;
     using Base::mrContext;
+    using Base::mbReverseSearch;
     using Base::nTab;
     using Base::nCol;
     using Base::nRow;
     using Base::InitPos;
     using Base::IncPos;
+    using Base::DecPos;
     using Base::bIgnoreMismatchOnLeadingStrings;
     using Base::SetStopOnMismatch;
     using Base::SetTestEqualCondition;
@@ -279,13 +311,17 @@ class ScQueryCellIterator
     using Base::nTestEqualConditionEnabled;
     using Base::PerformQuery;
     using Base::getThisResult;
+    using Base::nBestFitCol;
+    using Base::nBestFitRow;
+    using Base::bSortedBinarySearch;
+    using Base::bXLookUp;
 
     bool GetThis();
 
 public:
     ScQueryCellIterator(ScDocument& rDocument, ScInterpreterContext& rContext, 
SCTAB nTable,
-                        const ScQueryParam& aParam, bool bMod)
-        : Base( rDocument, rContext, nTable, aParam, bMod ) {}
+                        const ScQueryParam& aParam, bool bMod, bool bReverse)
+        : Base( rDocument, rContext, nTable, aParam, bMod, bReverse ) {}
     bool GetFirst();
     bool GetNext();
     SCCOL GetCol() const { return nCol; }
@@ -320,8 +356,8 @@ class ScQueryCellIteratorSortedCache
     typedef ScQueryCellIterator< ScQueryCellIteratorAccess::SortedCache > Base;
 public:
     ScQueryCellIteratorSortedCache(ScDocument& rDocument, 
ScInterpreterContext& rContext,
-        SCTAB nTable, const ScQueryParam& aParam, bool bMod)
-    : Base( rDocument, rContext, nTable, aParam, bMod ) {}
+        SCTAB nTable, const ScQueryParam& aParam, bool bMod, bool bReverse )
+    : Base( rDocument, rContext, nTable, aParam, bMod, bReverse ) {}
     // Returns true if this iterator can be used for the given query.
     static bool CanBeUsed(ScDocument& rDoc, const ScQueryParam& aParam,
         SCTAB nTab, const ScFormulaCell* cell, const ScComplexRefData* refData,
@@ -357,8 +393,8 @@ protected:
 
 public:
     ScCountIfCellIterator(ScDocument& rDocument, ScInterpreterContext& 
rContext, SCTAB nTable,
-                          const ScQueryParam& aParam, bool bMod)
-        : Base( rDocument, rContext, nTable, aParam, bMod ) {}
+                          const ScQueryParam& aParam, bool bMod, bool bReverse)
+        : Base( rDocument, rContext, nTable, aParam, bMod, bReverse ) {}
     sal_uInt64 GetCount();
 };
 
@@ -370,8 +406,8 @@ class ScCountIfCellIteratorSortedCache
     typedef ScCountIfCellIterator< ScQueryCellIteratorAccess::SortedCache > 
Base;
 public:
     ScCountIfCellIteratorSortedCache(ScDocument& rDocument, 
ScInterpreterContext& rContext,
-        SCTAB nTable, const ScQueryParam& aParam, bool bMod)
-    : Base( rDocument, rContext, nTable, aParam, bMod ) {}
+        SCTAB nTable, const ScQueryParam& aParam, bool bMod, bool bReverse)
+    : Base( rDocument, rContext, nTable, aParam, bMod, bReverse ) {}
     // Returns true if this iterator can be used for the given query.
     static bool CanBeUsed(ScDocument& rDoc, const ScQueryParam& aParam,
         SCTAB nTab, const ScFormulaCell* cell, const ScComplexRefData* refData,
diff --git a/sc/inc/scfuncs.hrc b/sc/inc/scfuncs.hrc
index 8fb9f59e9029..279ba37b6b92 100644
--- a/sc/inc/scfuncs.hrc
+++ b/sc/inc/scfuncs.hrc
@@ -3377,6 +3377,24 @@ const TranslateId SC_OPCODE_V_LOOKUP_ARY[] =
     NC_("SC_OPCODE_V_LOOKUP", "If the value is TRUE or not given, the search 
column of the array represents a series of ranges, and must be sorted in 
ascending order.")
 };
 
+// -=*# Resource for function XLOOKUP #*=-
+const TranslateId SC_OPCODE_X_LOOKUP_ARY[] =
+{
+    NC_("SC_OPCODE_X_LOOKUP", "Extended vertical search and reference to 
indicated cells."),
+    NC_("SC_OPCODE_X_LOOKUP", "Search criterion"),
+    NC_("SC_OPCODE_X_LOOKUP", "The value to be found in the first column."),
+    NC_("SC_OPCODE_X_LOOKUP", "Search Array"),
+    NC_("SC_OPCODE_X_LOOKUP", "The array or range to search."),
+    NC_("SC_OPCODE_X_LOOKUP", "Result Array"),
+    NC_("SC_OPCODE_X_LOOKUP", "The array or range to return."),
+    NC_("SC_OPCODE_X_LOOKUP", "Result if not found"),
+    NC_("SC_OPCODE_X_LOOKUP", "If given, return given text, otherwise return 
#N/A."),
+    NC_("SC_OPCODE_X_LOOKUP", "Match Mode"),
+    NC_("SC_OPCODE_X_LOOKUP", "0, -1, 1 or 2 "), // TODO : add explanation of 
values
+    NC_("SC_OPCODE_X_LOOKUP", "Search Mode"),
+    NC_("SC_OPCODE_X_LOOKUP", "1, -1, 2 or -2 ") // TODO : add explanation of 
values
+};
+
 // -=*# Resource for function INDEX #*=-
 const TranslateId SC_OPCODE_INDEX_ARY[] =
 {
diff --git a/sc/qa/extras/scfunctionlistobj.cxx 
b/sc/qa/extras/scfunctionlistobj.cxx
index 940aba8c3983..03cd76733f9f 100644
--- a/sc/qa/extras/scfunctionlistobj.cxx
+++ b/sc/qa/extras/scfunctionlistobj.cxx
@@ -78,7 +78,7 @@ public:
 ScFunctionListObj::ScFunctionListObj()
     : UnoApiTest("/sc/qa/extras/testdocuments")
     , XElementAccess(cppu::UnoType<uno::Sequence<beans::PropertyValue>>::get())
-    , XIndexAccess(395)
+    , XIndexAccess(396)
     , XNameAccess("IF")
     , XServiceInfo("stardiv.StarCalc.ScFunctionListObj", 
"com.sun.star.sheet.FunctionDescriptions")
 {
diff --git a/sc/qa/unit/data/functions/spreadsheet/fods/xlookup.fods 
b/sc/qa/unit/data/functions/spreadsheet/fods/xlookup.fods
new file mode 100644
index 000000000000..16abcbcacb4b
--- /dev/null
+++ b/sc/qa/unit/data/functions/spreadsheet/fods/xlookup.fods
@@ -0,0 +1,4553 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<office:document 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:ooo="http://openoffice.org/2004/office"; 
xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" 
xmlns:xlink="http://www.w3.org/1999/xlink"; 
xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" 
xmlns:dc="http://purl.org/dc/elements/1.1/"; 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta: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:rpt="http://openoffice.org/2005/report"; 
xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" 
xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d: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:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" 
xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" 
xmlns:ooow="http://openoffice.org/200
 4/writer" xmlns:oooc="http://openoffice.org/2004/calc"; 
xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" 
xmlns:xforms="http://www.w3.org/2002/xforms"; 
xmlns:tableooo="http://openoffice.org/2009/table"; 
xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0"
 xmlns:drawooo="http://openoffice.org/2010/draw"; 
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: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:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0"
 xmlns:dom="http://www.w3.org/2001/xml-events"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:xhtml="http://www.w3.org/1999/xhtml"; 
xmlns:grddl="http://www.w3.org/2003/g/data-view#"; xmlns
 :css3t="http://www.w3.org/TR/css3-text/"; 
xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" 
office:version="1.3" 
office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
+ 
<office:meta><meta:creation-date>2024-01-16T18:30:06.278000000</meta:creation-date><meta:editing-duration>PT52M13S</meta:editing-duration><meta:editing-cycles>14</meta:editing-cycles><meta:generator>LibreOfficeDev/24.8.0.0.alpha0$Windows_X86_64
 
LibreOffice_project/8f959fffda28199c3d97aea8d5468776a0e43d90</meta:generator><dc:date>2024-01-26T18:16:42.850000000</dc:date><meta:document-statistic
 meta:table-count="2" meta:cell-count="754" 
meta:object-count="0"/></office:meta>
+ <office:settings>
+  <config:config-item-set config:name="ooo:view-settings">
+   <config:config-item config:name="VisibleAreaTop" 
config:type="int">0</config:config-item>
+   <config:config-item config:name="VisibleAreaLeft" 
config:type="int">0</config:config-item>
+   <config:config-item config:name="VisibleAreaWidth" 
config:type="int">15882</config:config-item>
+   <config:config-item config:name="VisibleAreaHeight" 
config:type="int">5013</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">view1</config:config-item>
+     <config:config-item-map-named config:name="Tables">
+      <config:config-item-map-entry config:name="Sheet1">
+       <config:config-item config:name="CursorPositionX" 
config:type="int">2</config:config-item>
+       <config:config-item config:name="CursorPositionY" 
config:type="int">0</config:config-item>
+       <config:config-item config:name="ActiveSplitRange" 
config:type="short">2</config:config-item>
+       <config:config-item config:name="PositionLeft" 
config:type="int">0</config:config-item>
+       <config:config-item config:name="PositionRight" 
config:type="int">0</config:config-item>
+       <config:config-item config:name="PositionTop" 
config:type="int">0</config:config-item>
+       <config:config-item config:name="PositionBottom" 
config:type="int">0</config:config-item>
+       <config:config-item config:name="ZoomType" 
config:type="short">0</config:config-item>
+       <config:config-item config:name="ZoomValue" 
config:type="int">65</config:config-item>
+       <config:config-item config:name="PageViewZoomValue" 
config:type="int">60</config:config-item>
+       <config:config-item config:name="ShowGrid" 
config:type="boolean">true</config:config-item>
+       <config:config-item config:name="AnchoredTextOverflowLegacy" 
config:type="boolean">false</config:config-item>
+       <config:config-item config:name="LegacySingleLineFontwork" 
config:type="boolean">false</config:config-item>
+       <config:config-item config:name="ConnectorUseSnapRect" 
config:type="boolean">false</config:config-item>
+       <config:config-item config:name="IgnoreBreakAfterMultilineField" 
config:type="boolean">false</config:config-item>
+      </config:config-item-map-entry>
+      <config:config-item-map-entry config:name="Sheet2">
+       <config:config-item config:name="CursorPositionX" 
config:type="int">0</config:config-item>
+       <config:config-item config:name="CursorPositionY" 
config:type="int">104</config:config-item>
+       <config:config-item config:name="ActiveSplitRange" 
config:type="short">2</config:config-item>
+       <config:config-item config:name="PositionLeft" 
config:type="int">0</config:config-item>
+       <config:config-item config:name="PositionRight" 
config:type="int">0</config:config-item>
+       <config:config-item config:name="PositionTop" 
config:type="int">0</config:config-item>
+       <config:config-item config:name="PositionBottom" 
config:type="int">81</config:config-item>
+       <config:config-item config:name="ZoomType" 
config:type="short">0</config:config-item>
+       <config:config-item config:name="ZoomValue" 
config:type="int">65</config:config-item>
+       <config:config-item config:name="PageViewZoomValue" 
config:type="int">60</config:config-item>
+       <config:config-item config:name="ShowGrid" 
config:type="boolean">true</config:config-item>
+       <config:config-item config:name="AnchoredTextOverflowLegacy" 
config:type="boolean">false</config:config-item>
+       <config:config-item config:name="LegacySingleLineFontwork" 
config:type="boolean">false</config:config-item>
+       <config:config-item config:name="ConnectorUseSnapRect" 
config:type="boolean">false</config:config-item>
+       <config:config-item config:name="IgnoreBreakAfterMultilineField" 
config:type="boolean">false</config:config-item>
+      </config:config-item-map-entry>
+     </config:config-item-map-named>
+     <config:config-item config:name="ActiveTable" 
config:type="string">Sheet1</config:config-item>
+     <config:config-item config:name="HorizontalScrollbarWidth" 
config:type="int">1835</config:config-item>
+     <config:config-item config:name="ZoomType" 
config:type="short">0</config:config-item>
+     <config:config-item config:name="ZoomValue" 
config:type="int">65</config:config-item>
+     <config:config-item config:name="PageViewZoomValue" 
config:type="int">60</config:config-item>
+     <config:config-item config:name="ShowPageBreakPreview" 
config:type="boolean">false</config:config-item>
+     <config:config-item config:name="ShowZeroValues" 
config:type="boolean">true</config:config-item>
+     <config:config-item config:name="ShowNotes" 
config:type="boolean">true</config:config-item>
+     <config:config-item config:name="ShowFormulasMarks" 
config:type="boolean">false</config:config-item>
+     <config:config-item config:name="ShowGrid" 
config:type="boolean">true</config:config-item>
+     <config:config-item config:name="GridColor" 
config:type="int">12632256</config:config-item>
+     <config:config-item config:name="ShowPageBreaks" 
config:type="boolean">true</config:config-item>
+     <config:config-item config:name="FormulaBarHeight" 
config:type="short">1</config:config-item>
+     <config:config-item config:name="HasSheetTabs" 
config:type="boolean">true</config:config-item>
+     <config:config-item config:name="IsOutlineSymbolsSet" 
config:type="boolean">true</config:config-item>
+     <config:config-item config:name="IsValueHighlightingEnabled" 
config:type="boolean">false</config:config-item>
+     <config:config-item config:name="IsSnapToRaster" 
config:type="boolean">false</config:config-item>
+     <config:config-item config:name="RasterIsVisible" 
config:type="boolean">false</config:config-item>
+     <config:config-item config:name="RasterResolutionX" 
config:type="int">1270</config:config-item>
+     <config:config-item config:name="RasterResolutionY" 
config:type="int">1270</config:config-item>
+     <config:config-item config:name="RasterSubdivisionX" 
config:type="int">1</config:config-item>
+     <config:config-item config:name="RasterSubdivisionY" 
config:type="int">1</config:config-item>
+     <config:config-item config:name="IsRasterAxisSynchronized" 
config:type="boolean">true</config:config-item>
+     <config:config-item config:name="AnchoredTextOverflowLegacy" 
config:type="boolean">false</config:config-item>
+     <config:config-item config:name="LegacySingleLineFontwork" 
config:type="boolean">false</config:config-item>
+     <config:config-item config:name="ConnectorUseSnapRect" 
config:type="boolean">false</config:config-item>
+     <config:config-item config:name="IgnoreBreakAfterMultilineField" 
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="AllowPrintJobCancel" 
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="AutoCalculate" 
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="EmbedAsianScriptFonts" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="EmbedComplexScriptFonts" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="EmbedFonts" 
config:type="boolean">false</config:config-item>
+   <config:config-item config:name="EmbedLatinScriptFonts" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="EmbedOnlyUsedFonts" 
config:type="boolean">false</config:config-item>
+   <config:config-item-map-indexed config:name="ForbiddenCharacters">
+    <config:config-item-map-entry>
+     <config:config-item config:name="Language" 
config:type="string">en</config:config-item>
+     <config:config-item config:name="Country" 
config:type="string">US</config:config-item>
+     <config:config-item config:name="Variant" config:type="string"/>
+     <config:config-item config:name="BeginLine" config:type="string"/>
+     <config:config-item config:name="EndLine" config:type="string"/>
+    </config:config-item-map-entry>
+   </config:config-item-map-indexed>
+   <config:config-item config:name="GridColor" 
config:type="int">12632256</config:config-item>
+   <config:config-item config:name="HasColumnRowHeaders" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="HasSheetTabs" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="ImagePreferredDPI" 
config:type="int">0</config:config-item>
+   <config:config-item config:name="IsDocumentShared" 
config:type="boolean">false</config:config-item>
+   <config:config-item config:name="IsKernAsianPunctuation" 
config:type="boolean">false</config:config-item>
+   <config:config-item config:name="IsOutlineSymbolsSet" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="IsRasterAxisSynchronized" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="IsSnapToRaster" 
config:type="boolean">false</config:config-item>
+   <config:config-item config:name="LinkUpdateMode" 
config:type="short">3</config:config-item>
+   <config:config-item config:name="LoadReadonly" 
config:type="boolean">false</config:config-item>
+   <config:config-item config:name="PrinterName" 
config:type="string">Microsoft Print to PDF</config:config-item>
+   <config:config-item config:name="PrinterPaperFromSetup" 
config:type="boolean">false</config:config-item>
+   <config:config-item config:name="PrinterSetup" 
config:type="base64Binary">ZBb+/01pY3Jvc29mdCBQcmludCB0byBQREYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATWljcm9zb2Z0IFByaW50IFRvIFBERgAAAAAAAAAAAAAWAAEANhUAAAAAAAAEAAhSAAAEdAAAM1ROVwAAAAAKAE0AaQBjAHIAbwBzAG8AZgB0ACAAUAByAGkAbgB0ACAAdABvACAAUABEAEYAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAMG3ABQFAMvAQABAAkAmgs0CGQAAQAPAFgCAgABAFgCAwABAEEANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAIAAAABAAAA/////0dJUzQAAAAAAAAAAAAAAABESU5VIgDIACQDLBE/XXt+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyAAAAFNNVEoAAAAAEAC4AHsAMAA4ADQARgAwADEARgBBAC0ARQA2ADMANAAtADQARAA3ADcALQA4ADMARQBFAC0AMAA3ADQAOAAxADcAQwAwADMANQA4ADEAfQAAAFJFU0RMTABVbmlyZXNETEwAUGFwZXJTaXplAEE0AE9yaWVudGF0aW9uAFBPUlRSQUlUAFJlc29sdXRpb24AUmVzT3B0aW9uMQBDb2xvck1vZGUAQ29sb3IAAAAAAAAAAAAAAAAAAAAAAAAsEQAAVjRETQEAAAAAAAAAnApwIhwAAADsAAAAAwAAAPoBTwg05ndNg+4HSBfANYHQAAAATAAAAAMAAAAACAAAAAAAAAAAAAADAAAAAAgAACoAAAAACAAAAwAAAEAAAABWAAAAABAAAEQAbwBjAHUAbQBlAG4AdABVAHMAZQByAFAAYQBzAHMAdwBvAHIAZAAAAEQAbwBjAHUAbQBlAG4AdABPAHcAbgBlAHIAUABhAHMAcwB3AG8AcgBkAAAARABvAGMAdQBtAGUAbgB0AEMAcgB5AHAAdABTA
 
GUAYwB1AHIAaQB0AHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgBDT01QQVRfRFVQTEVYX01PREUTAER1cGxleE1vZGU6OlVua25vd24MAFBSSU5URVJfTkFNRRYATWljcm9zb2Z0IFByaW50IHRvIFBERgsARFJJVkVSX05BTUUWAE1pY3Jvc29mdCBQcmludCBUbyBQREY=</config:config-item>
+   <config:config-item config:name="RasterIsVisible" 
config:type="boolean">false</config:config-item>
+   <config:config-item config:name="RasterResolutionX" 
config:type="int">1270</config:config-item>
+   <config:config-item config:name="RasterResolutionY" 
config:type="int">1270</config:config-item>
+   <config:config-item config:name="RasterSubdivisionX" 
config:type="int">1</config:config-item>
+   <config:config-item config:name="RasterSubdivisionY" 
config:type="int">1</config:config-item>
+   <config:config-item config:name="SaveThumbnail" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="SaveVersionOnClose" 
config:type="boolean">false</config:config-item>
+   <config:config-item config:name="ShowFormulasMarks" 
config:type="boolean">false</config:config-item>
+   <config:config-item config:name="ShowGrid" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="ShowNotes" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="ShowPageBreaks" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="ShowZeroValues" 
config:type="boolean">true</config:config-item>
+   <config:config-item config:name="SyntaxStringRef" 
config:type="short">7</config:config-item>
+   <config:config-item config:name="UpdateFromTemplate" 
config:type="boolean">true</config:config-item>
+   <config:config-item-map-named config:name="ScriptConfiguration">
+    <config:config-item-map-entry config:name="Sheet1">
+     <config:config-item config:name="CodeName" 
config:type="string">Sheet1</config:config-item>
+    </config:config-item-map-entry>
+    <config:config-item-map-entry config:name="Sheet2">
+     <config:config-item config:name="CodeName" 
config:type="string">Sheet2</config:config-item>
+    </config:config-item-map-entry>
+   </config:config-item-map-named>
+  </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="FreeSans" svg:font-family="FreeSans" 
style:font-family-generic="system" style:font-pitch="variable"/>
+  <style:font-face style:name="Liberation Sans" 
svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" 
style:font-pitch="variable"/>
+  <style:font-face style:name="Lucida Sans" svg:font-family="&apos;Lucida 
Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
+  <style:font-face style:name="Microsoft YaHei" 
svg:font-family="&apos;Microsoft YaHei&apos;" 
style:font-family-generic="system" style:font-pitch="variable"/>
+  <style:font-face style:name="WenQuanYi Micro Hei" 
svg:font-family="&apos;WenQuanYi Micro Hei&apos;" 
style:font-family-generic="system" style:font-pitch="variable"/>
+ </office:font-face-decls>
+ <office:styles>
+  <style:default-style style:family="table-cell">
+   <style:paragraph-properties style:tab-stop-distance="1.27cm"/>
+   <style:text-properties style:font-name="Liberation Sans" 
fo:font-size="10pt" fo:language="en" fo:country="US" 
style:font-name-asian="WenQuanYi Micro Hei" style:font-size-asian="10pt" 
style:language-asian="zh" style:country-asian="CN" 
style:font-name-complex="FreeSans" style:font-size-complex="10pt" 
style:language-complex="hi" style:country-complex="IN"/>
+  </style:default-style>
+  <style:default-style style:family="graphic">
+   <style:graphic-properties svg:stroke-color="#3465a4" 
draw:fill-color="#729fcf" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.3cm" 
draw:shadow-offset-y="0.3cm" style:writing-mode="page"/>
+   <style:paragraph-properties style:text-autospace="ideograph-alpha" 
style:punctuation-wrap="simple" style:line-break="strict" 
loext:tab-stop-distance="0cm" style:writing-mode="page" 
style:font-independent-line-spacing="false">
+    <style:tab-stops/>
+   </style:paragraph-properties>
+   <style:text-properties style:use-window-font-color="true" 
loext:opacity="0%" fo:font-family="&apos;Liberation Serif&apos;" 
style:font-family-generic="roman" style:font-pitch="variable" 
fo:font-size="12pt" fo:language="en" fo:country="US" 
style:letter-kerning="true" style:font-family-asian="&apos;Segoe UI&apos;" 
style:font-family-generic-asian="system" style:font-pitch-asian="variable" 
style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" 
style:font-family-complex="Tahoma" style:font-family-generic-complex="system" 
style:font-pitch-complex="variable" style:font-size-complex="12pt" 
style:language-complex="hi" style:country-complex="IN"/>
+  </style:default-style>
+  <style:style style:name="Default" style:family="graphic"/>
+  <style:style style:name="Note" style:family="graphic" 
style:parent-style-name="Default">
+   <style:graphic-properties draw:stroke="solid" 
draw:marker-start="Arrowheads_20_1" draw:marker-start-width="0.2cm" 
draw:marker-start-center="false" draw:fill="solid" draw:fill-color="#ffffc0" 
draw:auto-grow-height="true" draw:auto-grow-width="false" 
fo:padding-top="0.1cm" fo:padding-bottom="0.1cm" fo:padding-left="0.1cm" 
fo:padding-right="0.1cm" draw:shadow="visible" draw:shadow-offset-x="0.1cm" 
draw:shadow-offset-y="0.1cm"/>
+   <style:text-properties style:font-name="Liberation Sans" 
fo:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" 
style:font-pitch="variable" fo:font-size="10pt" 
style:font-name-asian="WenQuanYi Micro Hei" 
style:font-family-asian="&apos;WenQuanYi Micro Hei&apos;" 
style:font-family-generic-asian="system" style:font-pitch-asian="variable" 
style:font-size-asian="10pt" style:font-name-complex="FreeSans" 
style:font-family-complex="FreeSans" style:font-family-generic-complex="system" 
style:font-pitch-complex="variable" style:font-size-complex="10pt"/>
+  </style:style>
+  <number:number-style style:name="N0">
+   <number:number number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:currency-style style:name="N149P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N149">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N149P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N151P0" style:volatile="true">
+   <number:text>\</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:number-style>
+  <number:number-style style:name="N151">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>\-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N151P0"/>
+  </number:number-style>
+  <number:percentage-style style:name="N152">
+   <number:number number:decimal-places="1" number:min-decimal-places="1" 
number:min-integer-digits="1"/>
+   <number:text>%</number:text>
+  </number:percentage-style>
+  <number:number-style style:name="N156P0" style:volatile="true">
+   <number:text> \</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N156P1" style:volatile="true">
+   <number:text> \</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N156P2" style:volatile="true">
+   <number:text> \</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:text>- </number:text>
+  </number:number-style>
+  <number:text-style style:name="N156">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N156P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N156P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N156P2"/>
+  </number:text-style>
+  <number:currency-style style:name="N158P0" style:volatile="true">
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N158">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N158P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N159">
+   <number:number number:decimal-places="3" number:min-decimal-places="3" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N163P0" style:volatile="true">
+   <number:text> $</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N163P1" style:volatile="true">
+   <number:text> $</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:text>(</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+  </number:number-style>
+  <number:number-style style:name="N163P2" style:volatile="true">
+   <number:text> $</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="0"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:text-style style:name="N163">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N163P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N163P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N163P2"/>
+  </number:text-style>
+  <number:date-style style:name="N164">
+   <number:day number:style="long"/>
+   <number:text>.</number:text>
+   <number:month number:style="long"/>
+   <number:text>.</number:text>
+   <number:year number:style="long"/>
+  </number:date-style>
+  <number:number-style style:name="N166P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N166">
+   <number:text>(</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N166P0"/>
+  </number:number-style>
+  <number:currency-style style:name="N168P0" style:volatile="true">
+   <number:currency-symbol number:language="nl" 
number:country="NL">€</number:currency-symbol>
+   <number:text> </number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N168">
+   <number:currency-symbol number:language="nl" 
number:country="NL">€</number:currency-symbol>
+   <number:text> -</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N168P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N170P0" style:volatile="true">
+   <number:text>$</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N170">
+   <number:text>($</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N170P0"/>
+  </number:number-style>
+  <number:number-style style:name="N174P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N174P1" style:volatile="true">
+   <number:text> (</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+  </number:number-style>
+  <number:number-style style:name="N174P2" style:volatile="true">
+   <number:text> - </number:text>
+  </number:number-style>
+  <number:text-style style:name="N174">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N174P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N174P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N174P2"/>
+  </number:text-style>
+  <number:date-style style:name="N175">
+   <number:text>⌀ </number:text>
+   <number:year number:style="long"/>
+  </number:date-style>
+  <number:number-style style:name="N179P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> € </number:text>
+  </number:number-style>
+  <number:number-style style:name="N179P1" style:volatile="true">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> € </number:text>
+  </number:number-style>
+  <number:number-style style:name="N179P2" style:volatile="true">
+   <number:text> - € </number:text>
+  </number:number-style>
+  <number:text-style style:name="N179">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N179P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N179P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N179P2"/>
+  </number:text-style>
+  <number:number-style style:name="N180">
+   <number:number number:decimal-places="17" number:min-decimal-places="17" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N181">
+   <number:scientific-number number:decimal-places="14" 
number:min-decimal-places="14" number:min-integer-digits="1" 
number:min-exponent-digits="3" number:exponent-interval="1" 
number:forced-exponent-sign="true"/>
+  </number:number-style>
+  <number:currency-style style:name="N182P0" style:volatile="true">
+   <number:currency-symbol number:language="nl" 
number:country="NL">€</number:currency-symbol>
+   <number:text> </number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N182">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:currency-symbol number:language="nl" 
number:country="NL">€</number:currency-symbol>
+   <number:text> </number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>-</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N182P0"/>
+  </number:currency-style>
+  <number:date-style style:name="N183">
+   <number:month number:style="long"/>
+   <number:text>-</number:text>
+   <number:day number:style="long"/>
+   <number:text>-</number:text>
+   <number:year number:style="long"/>
+  </number:date-style>
+  <number:currency-style style:name="N185P0" style:volatile="true">
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N185">
+   <number:text>-</number:text>
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N185P0"/>
+  </number:currency-style>
+  <number:date-style style:name="N186">
+   <number:day number:style="long"/>
+   <number:text>-</number:text>
+   <number:month number:style="long"/>
+  </number:date-style>
+  <number:number-style style:name="N187">
+   <number:number number:decimal-places="9" number:min-decimal-places="9" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N188">
+   <number:number number:decimal-places="15" number:min-decimal-places="15" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N192P0" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N192P1" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N192P2" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="0"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:text-style style:name="N192">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N192P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N192P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N192P2"/>
+  </number:text-style>
+  <number:currency-style style:name="N194P0" style:volatile="true">
+   <number:currency-symbol>€</number:currency-symbol>
+   <number:text> </number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:currency-style>
+  <number:currency-style style:name="N194">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>(</number:text>
+   <number:currency-symbol>€</number:currency-symbol>
+   <number:text> </number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N194P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N195">
+   <number:number number:decimal-places="1" number:min-decimal-places="1" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N196">
+   <number:number number:decimal-places="5" number:min-decimal-places="5" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N197">
+   <number:text>$</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:number-style>
+  <number:number-style style:name="N198P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N198">
+   <number:text>(</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N198P0"/>
+  </number:number-style>
+  <number:currency-style style:name="N200P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N200">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N200P0"/>
+  </number:currency-style>
+  <number:currency-style style:name="N202P0" style:volatile="true">
+   <number:currency-symbol number:language="es" 
number:country="MX">$</number:currency-symbol>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N202">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:currency-symbol number:language="es" 
number:country="MX">$</number:currency-symbol>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N202P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N206P0" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N206P1" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N206P2" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:text>- </number:text>
+  </number:number-style>
+  <number:text-style style:name="N206">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N206P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N206P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N206P2"/>
+  </number:text-style>
+  <number:currency-style style:name="N208P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="0" 
number:decimal-replacement="--" number:min-integer-digits="1" 
number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N208">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="0" 
number:decimal-replacement="--" number:min-integer-digits="1" 
number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N208P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N210P0" style:volatile="true">
+   <number:text>Yes</number:text>
+  </number:number-style>
+  <number:number-style style:name="N210P1" style:volatile="true">
+   <number:text>Yes</number:text>
+  </number:number-style>
+  <number:number-style style:name="N210">
+   <number:text>No</number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N210P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N210P1"/>
+  </number:number-style>
+  <number:number-style style:name="N211">
+   <number:number number:decimal-places="12" number:min-decimal-places="12" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N212">
+   <number:number number:decimal-places="6" number:min-decimal-places="6" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:currency-style style:name="N214P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol>EUR</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N214">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol>EUR</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N214P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N216P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> €</number:text>
+  </number:number-style>
+  <number:number-style style:name="N216">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> €</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N216P0"/>
+  </number:number-style>
+  <number:number-style style:name="N218P0" style:volatile="true">
+   <number:text>\</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:number-style>
+  <number:number-style style:name="N218">
+   <number:text>\-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N218P0"/>
+  </number:number-style>
+  <number:number-style style:name="N222P0" style:volatile="true">
+   <number:text> \</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N222P1" style:volatile="true">
+   <number:text> \</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N222P2" style:volatile="true">
+   <number:text> \</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="0"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:text-style style:name="N222">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N222P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N222P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N222P2"/>
+  </number:text-style>
+  <number:number-style style:name="N223">
+   <number:number number:decimal-places="18" number:min-decimal-places="18" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N224">
+   <number:number number:decimal-places="4" number:min-decimal-places="4" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N225">
+   <number:scientific-number number:decimal-places="1" 
number:min-decimal-places="1" number:min-integer-digits="3" 
number:min-exponent-digits="1" number:exponent-interval="3" 
number:forced-exponent-sign="true"/>
+  </number:number-style>
+  <number:number-style style:name="N227P0" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N227P1" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:text>(</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+  </number:number-style>
+  <number:number-style style:name="N227P2" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:text>- </number:text>
+  </number:number-style>
+  <number:text-style style:name="N227">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N227P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N227P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N227P2"/>
+  </number:text-style>
+  <number:currency-style style:name="N228P0" style:volatile="true">
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N228">
+   <number:text>-</number:text>
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N228P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N229">
+   <number:scientific-number number:decimal-places="1" 
number:min-decimal-places="1" number:min-integer-digits="1" 
number:min-exponent-digits="1" number:exponent-interval="1" 
number:forced-exponent-sign="true"/>
+  </number:number-style>
+  <number:number-style style:name="N230">
+   <number:scientific-number number:decimal-places="1" 
number:min-decimal-places="1" number:min-integer-digits="1" 
number:min-exponent-digits="1" number:exponent-interval="3" 
number:forced-exponent-sign="true"/>
+  </number:number-style>
+  <number:currency-style style:name="N232P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol>EUR</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N232">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol>EUR</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N232P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N233P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> €</number:text>
+  </number:number-style>
+  <number:number-style style:name="N233">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> €</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N233P0"/>
+  </number:number-style>
+  <number:date-style style:name="N234">
+   <number:month number:style="long"/>
+   <number:text>-</number:text>
+   <number:day/>
+   <number:text>-</number:text>
+   <number:year/>
+  </number:date-style>
+  <number:number-style style:name="N238P0" style:volatile="true">
+   <number:text> $</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N238P1" style:volatile="true">
+   <number:text> $</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:text>(</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+  </number:number-style>
+  <number:number-style style:name="N238P2" style:volatile="true">
+   <number:text> $</number:text>
+   <number:fill-character> </number:fill-character>
+   <number:text>- </number:text>
+  </number:number-style>
+  <number:text-style style:name="N238">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N238P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N238P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N238P2"/>
+  </number:text-style>
+  <number:number-style style:name="N242P0" style:volatile="true">
+   <number:text> $</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N242P1" style:volatile="true">
+   <number:text> $(</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+  </number:number-style>
+  <number:number-style style:name="N242P2" style:volatile="true">
+   <number:text> $- </number:text>
+  </number:number-style>
+  <number:text-style style:name="N242">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N242P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N242P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N242P2"/>
+  </number:text-style>
+  <number:date-style style:name="N243">
+   <number:year number:style="long"/>
+  </number:date-style>
+  <number:number-style style:name="N244">
+   <number:number number:decimal-places="20" number:min-decimal-places="20" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:currency-style style:name="N246P0" style:volatile="true">
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N246">
+   <number:text>-</number:text>
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N246P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N248P0" style:volatile="true">
+   <number:text>On</number:text>
+  </number:number-style>
+  <number:number-style style:name="N248P1" style:volatile="true">
+   <number:text>On</number:text>
+  </number:number-style>
+  <number:number-style style:name="N248">
+   <number:text>Off</number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N248P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N248P1"/>
+  </number:number-style>
+  <number:number-style style:name="N250P0" style:volatile="true">
+   <number:text>$</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N250">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>($</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N250P0"/>
+  </number:number-style>
+  <number:number-style style:name="N252P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> €</number:text>
+  </number:number-style>
+  <number:number-style style:name="N252">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> €</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N252P0"/>
+  </number:number-style>
+  <number:number-style style:name="N253">
+   <number:number number:decimal-places="14" number:min-decimal-places="14" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N254P0" style:volatile="true">
+   <number:text>$</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N254">
+   <number:text>($</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N254P0"/>
+  </number:number-style>
+  <number:number-style style:name="N255P0" style:volatile="true">
+   <number:text>$</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N255">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>($</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N255P0"/>
+  </number:number-style>
+  <number:number-style style:name="N256">
+   <number:number number:decimal-places="8" number:min-decimal-places="8" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N258P0" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N258P1" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:text>(</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+  </number:number-style>
+  <number:number-style style:name="N258P2" style:volatile="true">
+   <number:fill-character> </number:fill-character>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="0"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:text-style style:name="N258">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N258P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N258P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N258P2"/>
+  </number:text-style>
+  <number:currency-style style:name="N259P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N259">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N259P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N260">
+   <number:number number:decimal-places="11" number:min-decimal-places="11" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N262P0" style:volatile="true">
+   <number:text>True</number:text>
+  </number:number-style>
+  <number:number-style style:name="N262P1" style:volatile="true">
+   <number:text>True</number:text>
+  </number:number-style>
+  <number:number-style style:name="N262">
+   <number:text>False</number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N262P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N262P1"/>
+  </number:number-style>
+  <number:number-style style:name="N266P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> € </number:text>
+  </number:number-style>
+  <number:number-style style:name="N266P1" style:volatile="true">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> € </number:text>
+  </number:number-style>
+  <number:number-style style:name="N266P2" style:volatile="true">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="0"/>
+   <number:text> € </number:text>
+  </number:number-style>
+  <number:text-style style:name="N266">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N266P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N266P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N266P2"/>
+  </number:text-style>
+  <number:number-style style:name="N267">
+   <number:number number:decimal-places="7" number:min-decimal-places="7" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N271P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>    </number:text>
+  </number:number-style>
+  <number:number-style style:name="N271P1" style:volatile="true">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>    </number:text>
+  </number:number-style>
+  <number:number-style style:name="N271P2" style:volatile="true">
+   <number:text> -    </number:text>
+  </number:number-style>
+  <number:text-style style:name="N271">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N271P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N271P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N271P2"/>
+  </number:text-style>
+  <number:date-style style:name="N272">
+   <number:month number:style="long"/>
+   <number:text>/</number:text>
+   <number:year number:style="long"/>
+  </number:date-style>
+  <number:currency-style style:name="N273P0" style:volatile="true">
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N273">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N273P0"/>
+  </number:currency-style>
+  <number:currency-style style:name="N275P0" style:volatile="true">
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="2" number:min-decimal-places="0" 
number:decimal-replacement="--" number:min-integer-digits="1" 
number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N275">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:number number:decimal-places="2" number:min-decimal-places="0" 
number:decimal-replacement="--" number:min-integer-digits="1" 
number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N275P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N279P0" style:volatile="true">
+   <number:text> $</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N279P1" style:volatile="true">
+   <number:text> $(</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+  </number:number-style>
+  <number:number-style style:name="N279P2" style:volatile="true">
+   <number:text> $-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="0"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:text-style style:name="N279">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N279P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N279P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N279P2"/>
+  </number:text-style>
+  <number:number-style style:name="N283P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>    </number:text>
+  </number:number-style>
+  <number:number-style style:name="N283P1" style:volatile="true">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>    </number:text>
+  </number:number-style>
+  <number:number-style style:name="N283P2" style:volatile="true">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="0"/>
+   <number:text>    </number:text>
+  </number:number-style>
+  <number:text-style style:name="N283">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N283P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N283P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N283P2"/>
+  </number:text-style>
+  <number:number-style style:name="N285P0" style:volatile="true">
+   <number:text>WAHR</number:text>
+  </number:number-style>
+  <number:number-style style:name="N285P1" style:volatile="true">
+   <number:text>WAHR</number:text>
+  </number:number-style>
+  <number:number-style style:name="N285">
+   <number:text>FALSCH</number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N285P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N285P1"/>
+  </number:number-style>
+  <number:date-style style:name="N286">
+   <number:month number:style="long"/>
+   <number:text>.</number:text>
+   <number:year number:style="long"/>
+  </number:date-style>
+  <number:currency-style style:name="N288P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="fr" 
number:country="FR">€</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N288">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="fr" 
number:country="FR">€</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N288P0"/>
+  </number:currency-style>
+  <number:currency-style style:name="N290P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="de" 
number:country="DE">€</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N290">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="de" 
number:country="DE">€</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N290P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N291">
+   <number:number number:decimal-places="16" number:min-decimal-places="16" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N294P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:number-style style:name="N294P1" style:volatile="true">
+   <number:text> (</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text>)</number:text>
+  </number:number-style>
+  <number:number-style style:name="N294P2" style:volatile="true">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="0"/>
+   <number:text> </number:text>
+  </number:number-style>
+  <number:text-style style:name="N294">
+   <number:text-content/>
+   <number:text> </number:text>
+   <style:map style:condition="value()&gt;0" style:apply-style-name="N294P0"/>
+   <style:map style:condition="value()&lt;0" style:apply-style-name="N294P1"/>
+   <style:map style:condition="value()=0" style:apply-style-name="N294P2"/>
+  </number:text-style>
+  <number:time-style style:name="N295">
+   <number:minutes number:style="long"/>
+   <number:text>:</number:text>
+   <number:seconds number:style="long" number:decimal-places="1"/>
+  </number:time-style>
+  <number:time-style style:name="N296">
+   <number:minutes number:style="long"/>
+   <number:text>:</number:text>
+   <number:seconds number:style="long"/>
+  </number:time-style>
+  <number:currency-style style:name="N298P0" style:volatile="true">
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N298">
+   <number:text>-</number:text>
+   <number:currency-symbol number:language="en" 
number:country="GB">£</number:currency-symbol>
+   <number:fill-character> </number:fill-character>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N298P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N299P0" style:volatile="true">
+   <number:text>\</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:number-style>
+  <number:number-style style:name="N299">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>\-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N299P0"/>
+  </number:number-style>
+  <number:currency-style style:name="N301P0" style:volatile="true">
+   <number:currency-symbol number:language="nl" 
number:country="NL">€</number:currency-symbol>
+   <number:text> </number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:currency-style>
+  <number:currency-style style:name="N301">
+   <number:currency-symbol number:language="nl" 
number:country="NL">€</number:currency-symbol>
+   <number:text> -</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N301P0"/>
+  </number:currency-style>
+  <number:currency-style style:name="N303P0" style:volatile="true">
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="de" 
number:country="DE">€</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N303">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="0" number:min-decimal-places="0" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="de" 
number:country="DE">€</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N303P0"/>
+  </number:currency-style>
+  <number:number-style style:name="N304">
+   <number:number number:decimal-places="10" number:min-decimal-places="10" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N305">
+   <number:number number:decimal-places="13" number:min-decimal-places="13" 
number:min-integer-digits="1"/>
+  </number:number-style>
+  <number:number-style style:name="N306P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> €</number:text>
+  </number:number-style>
+  <number:number-style style:name="N306">
+   <style:text-properties fo:color="#ff0000"/>
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> €</number:text>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N306P0"/>
+  </number:number-style>
+  <number:currency-style style:name="N307P0" style:volatile="true">
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+  </number:currency-style>
+  <number:currency-style style:name="N307">
+   <number:text>-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <number:text> </number:text>
+   <number:currency-symbol number:language="cs" 
number:country="CZ">Kč</number:currency-symbol>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N307P0"/>
+  </number:currency-style>
+  <number:time-style style:name="N308" number:truncate-on-overflow="false">
+   <number:hours/>
+   <number:text>:</number:text>
+   <number:minutes number:style="long"/>
+   <number:text>:</number:text>
+   <number:seconds number:style="long"/>
+  </number:time-style>
+  <number:number-style style:name="N309P0" style:volatile="true">
+   <number:text>\</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+  </number:number-style>
+  <number:number-style style:name="N309">
+   <number:text>\-</number:text>
+   <number:number number:decimal-places="2" number:min-decimal-places="2" 
number:min-integer-digits="1" number:grouping="true"/>
+   <style:map style:condition="value()&gt;=0" style:apply-style-name="N309P0"/>
+  </number:number-style>
+  <number:date-style style:name="N10129" number:language="en" 
number:country="US">
+   <number:month/>
+   <number:text>/</number:text>
+   <number:day/>
+   <number:text>/</number:text>
+   <number:year number:style="long"/>
+  </number:date-style>
+  <number:date-style style:name="N10130" number:language="en" 
number:country="US">
+   <number:day/>
+   <number:text>-</number:text>
+   <number:month number:textual="true"/>
+   <number:text>-</number:text>
+   <number:year/>
+  </number:date-style>
+  <number:date-style style:name="N10131" number:language="en" 
number:country="US">
+   <number:day/>
+   <number:text>-</number:text>
+   <number:month number:textual="true"/>
+  </number:date-style>
+  <number:date-style style:name="N10132" number:language="en" 
number:country="US">
+   <number:month number:textual="true"/>
+   <number:text>-</number:text>
+   <number:year/>
+  </number:date-style>
+  <number:time-style style:name="N10133" number:language="en" 
number:country="US">
+   <number:hours/>
+   <number:text>:</number:text>
+   <number:minutes number:style="long"/>
+   <number:text> </number:text>
+   <number:am-pm/>
+  </number:time-style>
+  <number:time-style style:name="N10134" number:language="en" 
number:country="US">
+   <number:hours/>
+   <number:text>:</number:text>
+   <number:minutes number:style="long"/>
+   <number:text>:</number:text>
+   <number:seconds number:style="long"/>
+   <number:text> </number:text>
+   <number:am-pm/>
+  </number:time-style>
+  <number:time-style style:name="N10135" number:language="en" 
number:country="US">
+   <number:hours/>
+   <number:text>:</number:text>
+   <number:minutes number:style="long"/>
+  </number:time-style>
+  <number:time-style style:name="N10136" number:language="en" 
number:country="US">
+   <number:hours/>
+   <number:text>:</number:text>
-e 
... etc. - the rest is truncated

Reply via email to