diff --git a/src/test/java/de/uni_hamburg/corpora/validation/quest/RefcoCheckerTest.java b/src/test/java/de/uni_hamburg/corpora/validation/quest/RefcoCheckerTest.java
index 85dcbcdb0d2cca3a1fae58e42dcafb70764abd5a..7e05330ddfb805f38173c9969c88a54a0f1b2d7c 100644
--- a/src/test/java/de/uni_hamburg/corpora/validation/quest/RefcoCheckerTest.java
+++ b/src/test/java/de/uni_hamburg/corpora/validation/quest/RefcoCheckerTest.java
@@ -66,8 +66,10 @@ public class RefcoCheckerTest {
         // Read corpus
         CorpusIO cio = new CorpusIO();
         URL corpusUrl = new File(resourcePath).toURI().toURL();
+        Report report = new Report();
         setRefcoCorpusMethod.invoke(rc, new Corpus("refcoTest", corpusUrl,
-                cio.read(corpusUrl)));
+                cio.read(corpusUrl,report)));
+        assertTrue(report.getRawStatistics().isEmpty());
     }
 
     @AfterClass
@@ -227,7 +229,7 @@ public class RefcoCheckerTest {
         assertNotNull("Description is null", description);
         assertFalse("Description is empty", description.isEmpty());
         assertEquals("Unexpected description",
-                "checks the RefCo criteria for a corpus. Requires a RefCo corpus documentation spreadsheet.",
+                "Checks the RefCo criteria for a corpus. Requires a RefCo corpus documentation spreadsheet.",
                 description);
     }
 
@@ -447,10 +449,10 @@ public class RefcoCheckerTest {
         text = (String) getTextInRowMethod.invoke(rc,cellXPath, table, "Morphologie",-1);
         assertNotNull("Text is null for negative index", text);
         assertTrue("Text is not empty for negative index", text.isEmpty());
-        text = (String) getTextInRowMethod.invoke(rc,cellXPath, table, "Morphologie",5);
-        assertNotNull("Text is null for valid index", text);
-        assertFalse("Text is empty for valid index", text.isEmpty());
-        assertEquals("Unexpected text for valid index", "UpperGramLowerLex", text);
+//        text = (String) getTextInRowMethod.invoke(rc,cellXPath, table, "Morphologie",5);
+//        assertNotNull("Text is null for valid index", text);
+//        assertFalse("Text is empty for valid index", text.isEmpty());
+//        assertEquals("Unexpected text for valid index", "UpperGramLowerLex", text);
         text = (String) getTextInRowMethod.invoke(rc,cellXPath, table, "Morphologie",20);
         assertNotNull("Text is null for index out of bounds", text);
         assertTrue("Text is empty for valid bounds", text.isEmpty());
@@ -537,7 +539,7 @@ public class RefcoCheckerTest {
     }
 
     /**
-     * Test for "private Report refcoGenericCheck()"
+     * Test for "private Report refcoGenericCheck()" NOTE: Takes 2 minutes
      */
     @Test
     public void refcoGenericCheckTest() throws NoSuchMethodException, InvocationTargetException,
@@ -735,7 +737,7 @@ public class RefcoCheckerTest {
             assertEquals("Report does not contain the expected number of elements for invalid filename", 2,
                     report.getRawStatistics().size());
             assertTrue("Report does not contain the expected item for invalid filename",
-                    report.getFullReports().contains("File does not exist"));
+                    report.getFullReports().contains("Check the file references in the documentation and remove the reference to the files if they have been removed intentionally"));
             //checkReport("invalid file name", report);
             // The invalid file name followed by the original valid one
             s.fileName = "foo," + origFileName;
@@ -775,7 +777,7 @@ public class RefcoCheckerTest {
     }
 
     /**
-     *  Test for "private Report refcoTierCheck()"
+     *  Test for "private Report refcoTierCheck()" NOTE: Takes ca 1:35 min
      */
     @Test
     public void refcoTierCheckTest() throws NoSuchMethodException, InvocationTargetException, IllegalAccessException {
@@ -791,8 +793,6 @@ public class RefcoCheckerTest {
                 if (f.getType() == String.class
                         // Tier name also triggers not all tiers documented
                         && !f.getName().equals("tierName")
-                        // Morpheme distinction is optional for non-morphology tiers
-                        && !f.getName().equals("morphemeDistinction")
                 ) {
                     String orig = (String) f.get(t);
                     f.set(t, (String) null);
@@ -858,26 +858,6 @@ public class RefcoCheckerTest {
             rc.getCriteria().tiers.get(0).languages = origLanguages;
 
         }
-        // Check morpheme distinction
-        {
-            // Backup original value
-            ArrayList<String> origTierFunction =
-                    (ArrayList<String>) rc.getCriteria().tiers.get(0).tierFunctions.stream().collect(Collectors.toList());
-            String origMorphemeDistinction = rc.getCriteria().tiers.get(0).morphemeDistinction;
-            // make sure it is a morpheme tier
-            rc.getCriteria().tiers.get(0).tierFunctions = new ArrayList<>(Collections.singleton("morpheme gloss"));
-            // null morpheme distinction
-            rc.getCriteria().tiers.get(0).morphemeDistinction = null;
-            report = (Report) refcoTierCheckMethod.invoke(rc);
-            checkReport("null morpheme distinction", report);
-            // empty morpheme distinction
-            rc.getCriteria().tiers.get(0).morphemeDistinction = "";
-            report = (Report) refcoTierCheckMethod.invoke(rc);
-            checkReport("null morpheme distinction", report);
-            // Restore origingal
-            rc.getCriteria().tiers.get(0).tierFunctions = origTierFunction.stream().collect(Collectors.toList());
-            rc.getCriteria().tiers.get(0).morphemeDistinction = origMorphemeDistinction;
-        }
         // Check all tiers
         {
             ArrayList<RefcoChecker.Tier> origTiers = (ArrayList<RefcoChecker.Tier>)
@@ -1097,7 +1077,7 @@ public class RefcoCheckerTest {
             assertEquals("Report does not contain exactly one item", 1,
                     report.getRawStatistics().size());
             assertTrue("Report does not contain the positive notice",
-                    report.getFullReports().contains("More than 99 percent of transcription characters are valid"));
+                    report.getFullReports().contains("All characters are valid"));
         }
         // Warning about non-matched word because all-caps glosses are ignored
         {
@@ -1136,8 +1116,7 @@ public class RefcoCheckerTest {
             assertNotEquals("Report is empty for all valid characters", 0,
                     report.getRawStatistics().size());
             assertTrue("Report does not contain expected item for all valid characters",
-                    report.getRawStatistics().get(0).toString().contains("More than 99 percent of transcription " +
-                            "characters are valid"));
+                    report.getRawStatistics().get(0).toString().contains("All characters are valid"));
         }
         // Valid characters below threshold
         {
@@ -1177,7 +1156,7 @@ public class RefcoCheckerTest {
                     report.getRawStatistics().size());
             assertTrue("Report does not contain the expected item",
                     report.getRawStatistics().stream().collect(Collectors.toList()).get(0).toString()
-                            .contains("More than 99 percent of transcription characters are valid"));
+                            .contains("All characters are valid"));
         }
         // No documented transcription tier
         {
@@ -1391,33 +1370,33 @@ public class RefcoCheckerTest {
 //        ELANData cd = (ELANData) refcoCorpus.getCorpusData().stream().collect(Collectors.toList()).get(0);
 //        // Null token
 //        {
-//            RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, (String) null);
+//            CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, (String) null);
 //            assertEquals("Location for empty token is unknown",
-//                    new RefcoChecker.Location("unknown",""), location);
+//                    new CorpusData.Location("unknown",""), location);
 //        }
 //        // Empty token
 //        {
-//            RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, "");
+//            CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, "");
 //            assertEquals("Location for empty token is unknown",
-//                    new RefcoChecker.Location("unknown",""), location);
+//                    new CorpusData.Location("unknown",""), location);
 //        }
 //        // Invalid token
 //        {
-//            RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, "foobar");
+//            CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, "foobar");
 //            assertEquals("Location for invalid token is unknown",
-//                    new RefcoChecker.Location("unknown",""), location);
+//                    new CorpusData.Location("unknown",""), location);
 //        }
 //        // Token in first tier
 //        {
-//            RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, "Ga=vu");
+//            CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, "Ga=vu");
 //            assertEquals("Unexpected location for token in first tier",
-//                    new RefcoChecker.Location("Tier:Aven","Segment:a1, Time:00:01.738-00:02.300"), location);
+//                    new CorpusData.Location("Tier:Aven","Segment:a1, Time:00:01.738-00:02.300"), location);
 //        }
 //        // Token in morphology tier
 //        {
-//            RefcoChecker.Location location = (RefcoChecker.Location) getLocationMethod.invoke(rc, cd, "ARBRE=DEI.P");
+//            CorpusData.Location location = (CorpusData.Location) getLocationMethod.invoke(rc, cd, "ARBRE=DEI.P");
 //            assertEquals("Unexpected location for token in third tier",
-//                    new RefcoChecker.Location("Tier:Aven","Segment:a226, Time:00:11.800-00:12.695"), location);
+//                    new CorpusData.Location("Tier:Aven","Segment:a226, Time:00:11.800-00:12.695"), location);
 //        }
 //    }
 
@@ -1437,70 +1416,70 @@ public class RefcoCheckerTest {
         List<String> tierList = new ArrayList<>(Arrays.asList(new String[]{"Aven"}));
         // Null token
         {
-            List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>)
+            List<CorpusData.Location> locations = (List<CorpusData.Location>)
                     getLocationsMethod.invoke(rc,cd,tierList,(String) null);
             assertTrue("Locations not empty for null token", locations.isEmpty());
         }
         // Empty token
         {
-            List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>)
+            List<CorpusData.Location> locations = (List<CorpusData.Location>)
                     getLocationsMethod.invoke(rc,cd,tierList,"");
             assertTrue("Locations not empty for empty token", locations.isEmpty());
         }
         // Null tier list
         {
-            List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>)
+            List<CorpusData.Location> locations = (List<CorpusData.Location>)
                     getLocationsMethod.invoke(rc, cd, null, "Ga=vu");
             assertTrue("Locations not empty for null tier list", locations.isEmpty());
         }
         // Empty tier list
         {
-            List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>)
+            List<CorpusData.Location> locations = (List<CorpusData.Location>)
                     getLocationsMethod.invoke(rc, cd, new ArrayList<>(), "Ga=vu");
             assertTrue("Locations not empty for empty tier list", locations.isEmpty());
         }
         // Invalid token in a valid tier
         {
-            List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>)
+            List<CorpusData.Location> locations = (List<CorpusData.Location>)
                     getLocationsMethod.invoke(rc, cd, tierList, "foobar");
             assertEquals("Locations not empty for invalid token in valid tier",
-                    Collections.singletonList(new RefcoChecker.Location("Unknown", "")), locations);
+                    Collections.singletonList(new CorpusData.Location("Unknown", "")), locations);
         }
         // [hors-texte] in Transcription tier
         {
-            List<RefcoChecker.Location> expectedLocations = Collections.singletonList(
-                            new RefcoChecker.Location("Tier:Aven", "Segment:a1, Time:00:01.738-00:02.300"));
-            List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>)
+            List<CorpusData.Location> expectedLocations = Collections.singletonList(
+                            new CorpusData.Location("Tier:Aven", "Segment:a1, Time:00:01.738-00:02.300"));
+            List<CorpusData.Location> locations = (List<CorpusData.Location>)
                     getLocationsMethod.invoke(rc, cd, tierList, "[hors-texte]");
             assertEquals("Unexpected locations for [hors-texte] in Transcription tier", expectedLocations, locations);
         }
         // [hors-texte] in Morphology tier
         {
-            List<RefcoChecker.Location> expectedLocations = Collections.singletonList(
-                    new RefcoChecker.Location("Tier:Morphologie", "Segment:a225, Time:00:10.361-00:11.607"));
+            List<CorpusData.Location> expectedLocations = Collections.singletonList(
+                    new CorpusData.Location("Tier:Morphologie", "Segment:a225, Time:00:10.361-00:11.607"));
             tierList = new ArrayList<>(Arrays.asList(new String[]{"Morphologie"}));
-            List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>)
+            List<CorpusData.Location> locations = (List<CorpusData.Location>)
                     getLocationsMethod.invoke(rc, cd, tierList, "[hors-texte]");
             assertEquals("Unexpected locations for [hors-texte] in Morphology tier", expectedLocations, locations);
         }
         // [hors-texte] in both tiers
         {
-             List<RefcoChecker.Location> expectedLocations = Arrays.asList(new RefcoChecker.Location[]{
-                             new RefcoChecker.Location("Tier:Aven", "Segment:a1, Time:00:01.738-00:02.300"),
-                             new RefcoChecker.Location("Tier:Morphologie", "Segment:a225, Time:00:10.361-00:11.607")
+             List<CorpusData.Location> expectedLocations = Arrays.asList(new CorpusData.Location[]{
+                             new CorpusData.Location("Tier:Aven", "Segment:a1, Time:00:01.738-00:02.300"),
+                             new CorpusData.Location("Tier:Morphologie", "Segment:a225, Time:00:10.361-00:11.607")
                      });
             tierList.add("Aven");
-            List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>)
+            List<CorpusData.Location> locations = (List<CorpusData.Location>)
                     getLocationsMethod.invoke(rc, cd, tierList, "[hors-texte]");
             assertEquals("Unexpected locations for [hors-texte] in both tier", expectedLocations, locations);
         }
         // Legal token with several occurrences
         {
-            List<RefcoChecker.Location> expectedLocations = new ArrayList<>(Arrays.asList(new RefcoChecker.Location[]{
-                    new RefcoChecker.Location("Tier:Aven","Segment:a1, Time:00:01.738-00:02.300"),
-                    new RefcoChecker.Location("Tier:Aven","Segment:a125, Time:06:22.285-06:25.179")
+            List<CorpusData.Location> expectedLocations = new ArrayList<>(Arrays.asList(new CorpusData.Location[]{
+                    new CorpusData.Location("Tier:Aven","Segment:a1, Time:00:01.738-00:02.300"),
+                    new CorpusData.Location("Tier:Aven","Segment:a125, Time:06:22.285-06:25.179")
             }));
-            List<RefcoChecker.Location> locations = (List<RefcoChecker.Location>)
+            List<CorpusData.Location> locations = (List<CorpusData.Location>)
                     getLocationsMethod.invoke(rc, cd, tierList, "Ga=vu");
             assertEquals("Unexpected locations for legal token with several occurrences", expectedLocations, locations);
         }
diff --git a/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.fods b/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.fods
index 825a58c293f1415e88d16fed2b17a295f9d972a5..f39fa550cd2764104a996350e8cd426a9f0ecb3d 100644
--- a/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.fods
+++ b/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.fods
@@ -1,20 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d: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:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" 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:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
- <office:meta><meta:creation-date>2021-01-04T11:07:53</meta:creation-date><dc:language>fr-FR</dc:language><dc:date>2022-01-12T15:58:55.203457723</dc:date><meta:editing-cycles>251</meta:editing-cycles><meta:editing-duration>P4DT10M30S</meta:editing-duration><meta:generator>LibreOffice/7.1.5.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="9" meta:cell-count="815" meta:object-count="0"/><meta:user-defined meta:name="AppVersion">15.0000</meta:user-defined></office:meta>
+ <office:meta><meta:creation-date>2021-01-04T11:07:53</meta:creation-date><dc:language>fr-FR</dc:language><dc:date>2022-02-17T12:30:29.028264437</dc:date><meta:editing-cycles>252</meta:editing-cycles><meta:editing-duration>P4DT10M46S</meta:editing-duration><meta:generator>LibreOffice/7.2.5.2.0$Linux_X86_64 LibreOffice_project/20$Build-2</meta:generator><meta:document-statistic meta:table-count="9" meta:cell-count="813" meta:object-count="0"/><meta:user-defined meta:name="AppVersion">15.0000</meta:user-defined></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">49785</config:config-item>
-   <config:config-item config:name="VisibleAreaHeight" config:type="int">10583</config:config-item>
+   <config:config-item config:name="VisibleAreaWidth" config:type="int">29303</config:config-item>
+   <config:config-item config:name="VisibleAreaHeight" config:type="int">3175</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="AnnotationTiers">
-       <config:config-item config:name="CursorPositionX" config:type="int">1</config:config-item>
-       <config:config-item config:name="CursorPositionY" config:type="int">5</config:config-item>
+       <config:config-item config:name="CursorPositionX" config:type="int">2</config:config-item>
+       <config:config-item config:name="CursorPositionY" config:type="int">2</config:config-item>
        <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
        <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
        <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
@@ -32,7 +32,7 @@
       </config:config-item-map-entry>
       <config:config-item-map-entry config:name="CorpusComposition">
        <config:config-item config:name="CursorPositionX" config:type="int">1</config:config-item>
-       <config:config-item config:name="CursorPositionY" config:type="int">5</config:config-item>
+       <config:config-item config:name="CursorPositionY" config:type="int">1</config:config-item>
        <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
        <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
        <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
@@ -139,8 +139,8 @@
        <config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
       </config:config-item-map-entry>
       <config:config-item-map-entry config:name="Punctuations">
-       <config:config-item config:name="CursorPositionX" config:type="int">3</config:config-item>
-       <config:config-item config:name="CursorPositionY" config:type="int">19</config:config-item>
+       <config:config-item config:name="CursorPositionX" config:type="int">0</config:config-item>
+       <config:config-item config:name="CursorPositionY" config:type="int">2</config:config-item>
        <config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
        <config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
        <config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
@@ -175,7 +175,7 @@
        <config:config-item config:name="AnchoredTextOverflowLegacy" 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">Glosses</config:config-item>
+     <config:config-item config:name="ActiveTable" config:type="string">CorpusComposition</config:config-item>
      <config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1461</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">75</config:config-item>
@@ -202,26 +202,23 @@
    </config:config-item-map-indexed>
   </config:config-item-set>
   <config:config-item-set config:name="ooo:configuration-settings">
-   <config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
+   <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 config:name="RasterResolutionY" config:type="int">1000</config:config-item>
-   <config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
-   <config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
-   <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="ShowNotes" 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="PrinterSetup" config:type="base64Binary">uAH+/01GQ0wyNzEwRE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNMMjcxMEROAAAAAAAAAAAAAAAAAAAAAAAWAAMA0wAAAAAAAQAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDTDI3MTBETgpvcmllbnRhdGlvbj1Qb3J0cmFpdApjb3BpZXM9MQpjb2xsYXRlPWZhbHNlCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MQpjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKUGFnZVNpemU6QTQASW5wdXRTbG90OlRSQVkxAER1cGxleDpEdXBsZXhUdW1ibGUAABIAQ09NUEFUX0RVUExFWF9NT0RFFQBEdXBsZXhNb2RlOjpTaG9ydEVkZ2U=</config:config-item>
-   <config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
-   <config:config-item config:name="SyntaxStringRef" config:type="short">2</config:config-item>
-   <config:config-item config:name="RasterIsVisible" 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="ApplyUserData" config:type="boolean">true</config:config-item>
-   <config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
-   <config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</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-entry>
      <config:config-item config:name="Language" config:type="string">fr</config:config-item>
      <config:config-item config:name="Country" config:type="string">FR</config:config-item>
@@ -230,22 +227,32 @@
      <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="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="AutoCalculate" 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="SaveThumbnail" config:type="boolean">true</config:config-item>
-   <config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
    <config:config-item config:name="PrinterName" config:type="string">MFCL2710DN</config:config-item>
    <config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
-   <config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
-   <config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
-   <config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
+   <config:config-item config:name="PrinterSetup" config:type="base64Binary">uQH+/01GQ0wyNzEwRE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNMMjcxMEROAAAAAAAAAAAAAAAAAAAAAAAWAAMA1AAAAAAAAQAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDTDI3MTBETgpvcmllbnRhdGlvbj1Qb3J0cmFpdApjb3BpZXM9MQpjb2xsYXRlPWZhbHNlCm1hcmdpbmFkanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MQpjb2xvcmRldmljZT0wClBQRENvbnRleHREYXRhCkR1cGxleDpEdXBsZXhUdW1ibGUASW5wdXRTbG90OlRSQVkxAFBhZ2VTaXplOkE0AAASAENPTVBBVF9EVVBMRVhfTU9ERRUARHVwbGV4TW9kZTo6U2hvcnRFZGdl</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">1000</config:config-item>
+   <config:config-item config:name="RasterResolutionY" config:type="int">1000</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="IsSnapToRaster" 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="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">2</config:config-item>
    <config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
-   <config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
-   <config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
    <config:config-item-map-named config:name="ScriptConfiguration">
     <config:config-item-map-entry config:name="Foobar">
      <config:config-item config:name="CodeName" config:type="string">Sheet1</config:config-item>
@@ -286,24 +293,24 @@
  </office:scripts>
  <office:font-face-decls>
   <style:font-face style:name="*" svg:font-family="*"/>
-  <style:font-face style:name="Liberation Sans12" svg:font-family="&apos;Liberation Sans1&apos;"/>
-  <style:font-face style:name="Liberation Sans11" svg:font-family="&apos;Liberation Sans11&apos;"/>
-  <style:font-face style:name="Times New Roman" svg:font-family="&apos;Times New Roman&apos;" style:font-family-generic="roman"/>
-  <style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans1&apos;" style:font-family-generic="swiss"/>
-  <style:font-face style:name="Liberation Sans13" svg:font-family="&apos;Liberation Sans1&apos;" style:font-pitch="variable"/>
-  <style:font-face style:name="Noto Sans CJK SC1" svg:font-family="&apos;Noto Sans CJK SC&apos;" style:font-pitch="variable"/>
-  <style:font-face style:name="Liberation Serif" svg:font-family="&apos;Liberation Serif&apos;, &apos;Times New Roman&apos;" style:font-family-generic="roman" 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="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
   <style:font-face style:name="Droid Sans Devanagari" svg:font-family="&apos;Droid Sans Devanagari&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
   <style:font-face style:name="Droid Sans Fallback" svg:font-family="&apos;Droid Sans Fallback&apos;" 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="Liberation Sans1" svg:font-family="&apos;Liberation Sans1&apos;"/>
+  <style:font-face style:name="Liberation Sans11" svg:font-family="&apos;Liberation Sans1&apos;" style:font-family-generic="swiss"/>
+  <style:font-face style:name="Liberation Sans111" svg:font-family="&apos;Liberation Sans11&apos;"/>
+  <style:font-face style:name="Liberation Sans12" svg:font-family="&apos;Liberation Sans1&apos;" style:font-pitch="variable"/>
   <style:font-face style:name="Liberation Sans2" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
+  <style:font-face style:name="Liberation Serif" svg:font-family="&apos;Liberation Serif&apos;, &apos;Times New Roman&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
   <style:font-face style:name="Noto Sans CJK SC" svg:font-family="&apos;Noto Sans CJK SC&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
+  <style:font-face style:name="Noto Sans CJK SC1" svg:font-family="&apos;Noto Sans CJK SC&apos;" style:font-pitch="variable"/>
+  <style:font-face style:name="Times New Roman" svg:font-family="&apos;Times New Roman&apos;" style:font-family-generic="roman"/>
  </office:font-face-decls>
  <office:styles>
   <style:default-style style:family="table-cell">
    <style:paragraph-properties style:tab-stop-distance="0.4921in"/>
-   <style:text-properties style:font-name="Liberation Sans" fo:language="fr" fo:country="FR" style:font-name-asian="Noto Sans CJK SC" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari" style:language-complex="hi" style:country-complex="IN"/>
+   <style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="fr" fo:country="FR" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Droid Sans Devanagari" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN"/>
   </style:default-style>
   <number:number-style style:name="N0">
    <number:number number:min-integer-digits="1"/>
@@ -562,7 +569,7 @@
   </number:text-style>
   <style:style style:name="Default" style:family="table-cell">
    <style:table-cell-properties style:rotation-align="none" style:vertical-align="bottom"/>
-   <style:text-properties fo:color="#000000" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="12pt" style:font-size-asian="12pt" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="12pt"/>
+   <style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="12pt" style:font-size-asian="12pt" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="12pt"/>
   </style:style>
   <style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default"/>
   <style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Default">
@@ -620,62 +627,62 @@
   <style:style style:name="Accent_20_1_20_5" style:display-name="Accent 1 5" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties fo:background-color="#000000" style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="Accent_20_2_20_6" style:display-name="Accent 2 6" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties fo:background-color="#808080" style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="Accent_20_3_20_7" style:display-name="Accent 3 7" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties fo:background-color="#dddddd" style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="Accent_20_4" style:display-name="Accent 4" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="Error_20_8" style:display-name="Error 8" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties fo:background-color="#cc0000" style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#ffffff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="Footnote_20_9" style:display-name="Footnote 9" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#808080" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="italic" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#808080" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="italic" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="italic" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="Heading_20__28_user_29__20_10" style:display-name="Heading (user) 10" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="24pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="24pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="24pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="Hyperlink_20_11" style:display-name="Hyperlink 11" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#0000ee" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#0000ee" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="Result_20__28_user_29__20_12" style:display-name="Result (user) 12" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="italic" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="italic" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" style:font-size-asian="10pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="italic" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="Status_20_13" style:display-name="Status 13" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="Text_20_14" style:display-name="Text 14" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="Warning_20_15" style:display-name="Warning 15" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:table-cell-properties style:cell-protect="protected" style:print-content="true" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="value-type" style:repeat-content="false" fo:background-color="transparent" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#cc0000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#cc0000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans1&apos;" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-family-complex="&apos;Liberation Sans1&apos;" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
  </office:styles>
  <office:automatic-styles>
@@ -692,101 +699,92 @@
    <style:table-column-properties fo:break-before="auto" style:column-width="1.1543in"/>
   </style:style>
   <style:style style:name="co5" style:family="table-column">
-   <style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/>
-  </style:style>
-  <style:style style:name="co6" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="5.1374in"/>
   </style:style>
-  <style:style style:name="co7" style:family="table-column">
+  <style:style style:name="co6" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="3.4547in"/>
   </style:style>
-  <style:style style:name="co8" style:family="table-column">
+  <style:style style:name="co7" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="1.5047in"/>
   </style:style>
-  <style:style style:name="co9" style:family="table-column">
+  <style:style style:name="co8" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="1.2016in"/>
   </style:style>
-  <style:style style:name="co10" style:family="table-column">
+  <style:style style:name="co9" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="10.0063in"/>
   </style:style>
-  <style:style style:name="co11" style:family="table-column">
+  <style:style style:name="co10" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="1.7583in"/>
   </style:style>
-  <style:style style:name="co12" style:family="table-column">
+  <style:style style:name="co11" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="1.5228in"/>
   </style:style>
-  <style:style style:name="co13" style:family="table-column">
+  <style:style style:name="co12" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="1.0811in"/>
   </style:style>
-  <style:style style:name="co14" style:family="table-column">
+  <style:style style:name="co13" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="2.7016in"/>
   </style:style>
-  <style:style style:name="co15" style:family="table-column">
+  <style:style style:name="co14" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="2.2689in"/>
   </style:style>
-  <style:style style:name="co16" style:family="table-column">
+  <style:style style:name="co15" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="3.4016in"/>
   </style:style>
-  <style:style style:name="co17" style:family="table-column">
+  <style:style style:name="co16" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="1.1154in"/>
   </style:style>
-  <style:style style:name="co18" style:family="table-column">
+  <style:style style:name="co17" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="2.3201in"/>
   </style:style>
-  <style:style style:name="co19" style:family="table-column">
+  <style:style style:name="co18" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="2.4484in"/>
   </style:style>
-  <style:style style:name="co20" style:family="table-column">
+  <style:style style:name="co19" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="3.2602in"/>
   </style:style>
-  <style:style style:name="co21" style:family="table-column">
+  <style:style style:name="co20" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="3.5075in"/>
   </style:style>
-  <style:style style:name="co22" style:family="table-column">
-   <style:table-column-properties fo:break-before="auto" style:column-width="2.4811in"/>
-  </style:style>
-  <style:style style:name="co23" style:family="table-column">
+  <style:style style:name="co21" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="2.3752in"/>
   </style:style>
-  <style:style style:name="co24" style:family="table-column">
+  <style:style style:name="co22" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="3.4366in"/>
   </style:style>
-  <style:style style:name="co25" style:family="table-column">
+  <style:style style:name="co23" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="4.1457in"/>
   </style:style>
-  <style:style style:name="co26" style:family="table-column">
+  <style:style style:name="co24" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="2.0016in"/>
   </style:style>
-  <style:style style:name="co27" style:family="table-column">
+  <style:style style:name="co25" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="4.1807in"/>
   </style:style>
-  <style:style style:name="co28" style:family="table-column">
+  <style:style style:name="co26" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="5.2618in"/>
   </style:style>
-  <style:style style:name="co29" style:family="table-column">
+  <style:style style:name="co27" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="6.0228in"/>
   </style:style>
-  <style:style style:name="co30" style:family="table-column">
+  <style:style style:name="co28" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="2.1339in"/>
   </style:style>
-  <style:style style:name="co31" style:family="table-column">
+  <style:style style:name="co29" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="2.1791in"/>
   </style:style>
-  <style:style style:name="co32" style:family="table-column">
+  <style:style style:name="co30" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="6.8839in"/>
   </style:style>
-  <style:style style:name="co33" style:family="table-column">
+  <style:style style:name="co31" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="4.7665in"/>
   </style:style>
-  <style:style style:name="co34" style:family="table-column">
+  <style:style style:name="co32" style:family="table-column">
    <style:table-column-properties fo:break-before="auto" style:column-width="5.7043in"/>
   </style:style>
   <style:style style:name="ro1" style:family="table-row">
    <style:table-row-properties style:row-height="0.2083in" fo:break-before="auto" style:use-optimal-row-height="true"/>
   </style:style>
-  <style:style style:name="ro2" style:family="table-row">
-   <style:table-row-properties style:row-height="0.2209in" fo:break-before="auto" style:use-optimal-row-height="true"/>
-  </style:style>
   <style:style style:name="ta1" style:family="table" style:master-page-name="PageStyle_5f_Gloss-Abbrev_5f_">
    <style:table-properties table:display="true" style:writing-mode="lr-tb"/>
   </style:style>
@@ -819,11 +817,11 @@
   </number:text-style>
   <style:style style:name="ce35" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:rotation-align="none"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="ce36" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:rotation-align="none"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="ce37" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties fo:wrap-option="wrap"/>
@@ -834,26 +832,26 @@
   </style:style>
   <style:style style:name="ce39" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:rotation-align="none"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="DejaVu Sans" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="DejaVu Sans" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
   </style:style>
   <style:style style:name="ce40" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:rotation-align="none"/>
-   <style:text-properties style:font-name="Liberation Sans12" style:font-name-complex="Liberation Sans12"/>
+   <style:text-properties style:font-name="Liberation Sans1" style:font-name-complex="Liberation Sans1"/>
   </style:style>
   <style:style style:name="ce41" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:rotation-align="none"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
   </style:style>
   <style:style style:name="ce8" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:diagonal-bl-tr="none" style:diagonal-tl-br="none" style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="no-wrap" fo:border="none" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties fo:text-align="center" css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="ce43" style:family="table-cell" style:parent-style-name="Default">
    <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="ce44" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
-   <style:text-properties style:font-name="Liberation Sans1" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
+   <style:text-properties style:font-name="Liberation Sans11" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="ce45" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
    <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
@@ -865,30 +863,30 @@
   </style:style>
   <style:style style:name="ce47" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:rotation-align="none"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans11" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans11" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans111" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans111" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="ce48" style:family="table-cell" style:parent-style-name="Hyperlink_20_11">
    <style:table-cell-properties style:rotation-align="none"/>
-   <style:text-properties fo:color="#0000ee" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#0000ee" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:font-size-asian="10pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="10pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="ce49" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="no-wrap" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties fo:text-align="center" css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="ce50" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="no-wrap" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties fo:text-align="center" css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="ce51" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="no-wrap" style:direction="ltr" style:rotation-angle="0" style:rotation-align="none" style:shrink-to-fit="false" style:vertical-align="bottom" loext:vertical-justify="auto"/>
    <style:paragraph-properties fo:text-align="start" css3t:text-justify="auto" fo:margin-left="0in" style:writing-mode="page"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
   <style:style style:name="ce52" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
    <style:table-cell-properties style:rotation-align="none"/>
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="bold" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="bold" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="bold"/>
   </style:style>
   <style:style style:name="ce53" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N158">
    <style:table-cell-properties style:rotation-align="none"/>
@@ -905,20 +903,11 @@
    <style:paragraph-properties fo:text-align="justify"/>
    <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC1" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
   </style:style>
-  <style:style style:name="ce57" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N0">
-   <style:table-cell-properties fo:background-color="transparent"/>
-   <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
-  </style:style>
-  <style:style style:name="ce58" style:family="table-cell" style:parent-style-name="Default">
-   <style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
-   <style:paragraph-properties fo:text-align="justify"/>
-   <style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC1" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="bold" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
-  </style:style>
   <style:style style:name="ce60" style:family="table-cell" style:parent-style-name="Default">
-   <style:text-properties style:font-name="Liberation Sans12" style:font-name-complex="Liberation Sans12"/>
+   <style:text-properties style:font-name="Liberation Sans1" style:font-name-complex="Liberation Sans1"/>
   </style:style>
   <style:style style:name="ce82" style:family="table-cell" style:parent-style-name="Default">
-   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
+   <style:text-properties fo:color="#000000" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="fr" fo:country="FR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans1" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
   </style:style>
   <style:style style:name="ce83" style:family="table-cell" style:parent-style-name="Default">
    <style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
@@ -934,7 +923,7 @@
   <style:style style:name="ce90" style:family="table-cell" style:parent-style-name="Default">
    <style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:language="en" fo:country="US" style:font-name-asian="Noto Sans CJK SC1" style:font-name-complex="Liberation Serif"/>
   </style:style>
-  <style:style style:name="ce31" style:family="table-cell" style:parent-style-name="Default">
+  <style:style style:name="ce29" style:family="table-cell" style:parent-style-name="Default">
    <style:table-cell-properties style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="none" style:rotation-align="none"/>
   </style:style>
   <style:page-layout style:name="pm1">
@@ -981,7 +970,7 @@
    <style:text-properties fo:font-size="12pt" style:letter-kerning="true" fo:language="en" fo:country="US" style:language-asian="zh" style:country-asian="CN" style:language-complex="hi" style:country-complex="IN" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
   </style:style>
   <style:style style:name="T5" style:family="text">
-   <style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Liberation Sans13" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans13" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
+   <style:text-properties fo:color="#000000" loext:opacity="100%" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:text-position="0% 100%" style:font-name="Liberation Sans12" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Liberation Sans12" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
   </style:style>
  </office:automatic-styles>
  <office:master-styles>
@@ -990,10 +979,12 @@
     <text:p><text:sheet-name>???</text:sheet-name></text:p>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p>Page <text:page-number>1</text:page-number></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
   <style:master-page style:name="Report" style:page-layout-name="pm2">
    <style:header>
@@ -1001,94 +992,112 @@
      <text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
     </style:region-left>
     <style:region-right>
-     <text:p><text:date style:data-style-name="N2" text:date-value="2022-01-12">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="15:19:45.493405173">00:00:00</text:time></text:p>
+     <text:p><text:date style:data-style-name="N2" text:date-value="2022-02-17">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="15:05:16.846482135">00:00:00</text:time></text:p>
     </style:region-right>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p>Page <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
   <style:master-page style:name="PageStyle_5f_Gloss-Abbrev_5f_" style:display-name="PageStyle_Gloss-Abbrev_" style:page-layout-name="pm3">
    <style:header>
     <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
   <style:master-page style:name="PageStyle_5f_Punctuations" style:display-name="PageStyle_Punctuations" style:page-layout-name="pm3">
    <style:header>
     <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
   <style:master-page style:name="PageStyle_5f_AnnotationTiers" style:display-name="PageStyle_AnnotationTiers" style:page-layout-name="pm3">
    <style:header>
     <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
   <style:master-page style:name="PageStyle_5f_Transcription" style:display-name="PageStyle_Transcription" style:page-layout-name="pm3">
    <style:header>
     <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
   <style:master-page style:name="PageStyle_5f_CorpusComposition" style:display-name="PageStyle_CorpusComposition" style:page-layout-name="pm3">
    <style:header>
     <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
   <style:master-page style:name="PageStyle_5f_Overview" style:display-name="PageStyle_Overview" style:page-layout-name="pm3">
    <style:header>
     <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
   <style:master-page style:name="PageStyle_5f_CorpusOpenDescription" style:display-name="PageStyle_CorpusOpenDescription" style:page-layout-name="pm3">
    <style:header>
     <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
   <style:master-page style:name="PageStyle_5f_Glossary" style:display-name="PageStyle_Glossary" style:page-layout-name="pm3">
    <style:header>
     <text:p><text:span text:style-name="T5"><text:sheet-name>???</text:sheet-name></text:span></text:p>
    </style:header>
    <style:header-left style:display="false"/>
+   <style:header-first style:display="false"/>
    <style:footer>
     <text:p><text:span text:style-name="T5">Page </text:span><text:span text:style-name="T5"><text:page-number>1</text:page-number></text:span></text:p>
    </style:footer>
    <style:footer-left style:display="false"/>
+   <style:footer-first style:display="false"/>
   </style:master-page>
  </office:master-styles>
  <office:body>
@@ -2577,9 +2586,9 @@
     </table:table-row>
    </table:table>
    <table:table table:name="Overview" table:style-name="ta2">
+    <table:table-column table:style-name="co5" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co6" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co7" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co8" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co4" table:number-columns-repeated="61" table:default-cell-style-name="Default"/>
     <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce8" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="3" table:number-rows-spanned="1">
@@ -2790,16 +2799,17 @@
     </table:table-row>
    </table:table>
    <table:table table:name="CorpusComposition" table:style-name="ta3">
+    <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
+    <table:table-column table:style-name="co8" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co9" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co10" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co11" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co12" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co13" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co14" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co15" table:default-cell-style-name="ce54"/>
-    <table:table-column table:style-name="co16" table:default-cell-style-name="ce38"/>
+    <table:table-column table:style-name="co14" table:default-cell-style-name="ce54"/>
+    <table:table-column table:style-name="co15" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co4" table:number-columns-repeated="1014" table:default-cell-style-name="Default"/>
-    <table:table-column table:style-name="co17" table:number-columns-repeated="2" table:default-cell-style-name="ce38"/>
+    <table:table-column table:style-name="co16" table:number-columns-repeated="2" table:default-cell-style-name="ce38"/>
     <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string">
       <text:p>Sessions</text:p>
@@ -2893,13 +2903,13 @@
     </table:table-row>
    </table:table>
    <table:table table:name="AnnotationTiers" table:style-name="ta4">
+    <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
+    <table:table-column table:style-name="co17" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co18" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co19" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co20" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co21" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co22" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co4" table:number-columns-repeated="1017" table:default-cell-style-name="Default"/>
-    <table:table-column table:style-name="co17" table:number-columns-repeated="2" table:default-cell-style-name="ce38"/>
+    <table:table-column table:style-name="co16" table:number-columns-repeated="2" table:default-cell-style-name="ce38"/>
     <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string">
       <text:p>Names</text:p>
@@ -2913,9 +2923,6 @@
      <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string">
       <text:p>Languages</text:p>
      </table:table-cell>
-     <table:table-cell table:style-name="ce57" office:value-type="string" calcext:value-type="string">
-      <text:p>MorphemeDistinction</text:p>
-     </table:table-cell>
      <table:table-cell table:style-name="ce35"/>
      <table:table-cell table:number-columns-repeated="1018"/>
     </table:table-row>
@@ -2932,9 +2939,6 @@
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>French</text:p>
      </table:table-cell>
-     <table:table-cell table:style-name="ce58" office:value-type="string" calcext:value-type="string">
-      <text:p>UpperGramLowerLex</text:p>
-     </table:table-cell>
      <table:table-cell table:number-columns-repeated="1019"/>
     </table:table-row>
     <table:table-row table:style-name="ro1">
@@ -2950,7 +2954,7 @@
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>French, bisl1239, nisv1234</text:p>
      </table:table-cell>
-     <table:table-cell table:number-columns-repeated="1020"/>
+     <table:table-cell table:number-columns-repeated="1019"/>
     </table:table-row>
     <table:table-row table:style-name="ro1">
      <table:table-cell office:value-type="string" calcext:value-type="string">
@@ -2965,7 +2969,7 @@
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>French</text:p>
      </table:table-cell>
-     <table:table-cell table:number-columns-repeated="1020"/>
+     <table:table-cell table:number-columns-repeated="1019"/>
     </table:table-row>
     <table:table-row table:style-name="ro1">
      <table:table-cell office:value-type="string" calcext:value-type="string">
@@ -2980,7 +2984,7 @@
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>French</text:p>
      </table:table-cell>
-     <table:table-cell table:number-columns-repeated="1020"/>
+     <table:table-cell table:number-columns-repeated="1019"/>
     </table:table-row>
     <table:table-row table:style-name="ro1">
      <table:table-cell office:value-type="string" calcext:value-type="string">
@@ -2995,19 +2999,20 @@
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>nisv1234</text:p>
      </table:table-cell>
-     <table:table-cell table:number-columns-repeated="1020"/>
+     <table:table-cell table:number-columns-repeated="1019"/>
     </table:table-row>
     <table:table-row table:style-name="ro1" table:number-rows-repeated="1048569">
-     <table:table-cell table:number-columns-repeated="1024"/>
+     <table:table-cell table:number-columns-repeated="1023"/>
     </table:table-row>
     <table:table-row table:style-name="ro1">
-     <table:table-cell table:number-columns-repeated="1024"/>
+     <table:table-cell table:number-columns-repeated="1023"/>
     </table:table-row>
    </table:table>
    <table:table table:name="Transcription" table:style-name="ta5">
+    <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
+    <table:table-column table:style-name="co21" table:default-cell-style-name="ce38"/>
+    <table:table-column table:style-name="co22" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co23" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co24" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co25" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co4" table:number-columns-repeated="61" table:default-cell-style-name="Default"/>
     <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce45" office:value-type="string" calcext:value-type="string">
@@ -3568,7 +3573,6 @@
     </table:table-row>
    </table:table>
    <table:table table:name="Glosses" table:style-name="ta1">
-    <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
     <table:table-column table:style-name="co1" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co2" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co3" table:default-cell-style-name="ce38"/>
@@ -3653,7 +3657,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>DEF</text:p>
      </table:table-cell>
@@ -3666,7 +3670,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>INTR</text:p>
      </table:table-cell>
@@ -3705,7 +3709,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>COO</text:p>
      </table:table-cell>
@@ -3731,7 +3735,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>T</text:p>
      </table:table-cell>
@@ -3848,7 +3852,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>R</text:p>
      </table:table-cell>
@@ -3861,7 +3865,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>A</text:p>
      </table:table-cell>
@@ -3887,7 +3891,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>INT</text:p>
      </table:table-cell>
@@ -3926,7 +3930,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>INST</text:p>
      </table:table-cell>
@@ -3939,7 +3943,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>OP</text:p>
      </table:table-cell>
@@ -3952,7 +3956,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>DET</text:p>
      </table:table-cell>
@@ -3965,7 +3969,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce37" office:value-type="string" calcext:value-type="string">
       <text:p>C</text:p>
      </table:table-cell>
@@ -3978,7 +3982,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>TMP</text:p>
      </table:table-cell>
@@ -3991,7 +3995,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>INTER</text:p>
      </table:table-cell>
@@ -4199,7 +4203,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>I</text:p>
      </table:table-cell>
@@ -4212,7 +4216,7 @@
      </table:table-cell>
      <table:table-cell table:number-columns-repeated="60"/>
     </table:table-row>
-    <table:table-row table:style-name="ro2">
+    <table:table-row table:style-name="ro1">
      <table:table-cell office:value-type="string" calcext:value-type="string">
       <text:p>PN</text:p>
      </table:table-cell>
@@ -4393,11 +4397,11 @@
    </table:table>
    <table:table table:name="Punctuations" table:style-name="ta6">
     <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
+    <table:table-column table:style-name="co24" table:default-cell-style-name="ce38"/>
+    <table:table-column table:style-name="co25" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co26" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co27" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co28" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co29" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co30" table:default-cell-style-name="Default"/>
+    <table:table-column table:style-name="co28" table:default-cell-style-name="Default"/>
     <table:table-column table:style-name="co4" table:number-columns-repeated="59" table:default-cell-style-name="Default"/>
     <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string">
@@ -4735,8 +4739,9 @@
     </table:table-row>
    </table:table>
    <table:table table:name="CorpusOpenDescription" table:style-name="ta7">
-    <table:table-column table:style-name="co31" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co32" table:default-cell-style-name="ce38"/>
+    <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
+    <table:table-column table:style-name="co29" table:default-cell-style-name="ce38"/>
+    <table:table-column table:style-name="co30" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co4" table:number-columns-repeated="62" table:default-cell-style-name="Default"/>
     <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string">
@@ -4760,8 +4765,8 @@
      <table:table-cell table:number-columns-repeated="64"/>
     </table:table-row>
     <table:table-row table:style-name="ro1">
-     <table:table-cell table:style-name="ce31" table:number-columns-spanned="2" table:number-rows-spanned="1"/>
-     <table:covered-table-cell table:style-name="ce31"/>
+     <table:table-cell table:style-name="ce29" table:number-columns-spanned="2" table:number-rows-spanned="1"/>
+     <table:covered-table-cell table:style-name="ce29"/>
      <table:table-cell table:number-columns-repeated="62"/>
     </table:table-row>
     <table:table-row table:style-name="ro1" table:number-rows-repeated="1048568">
@@ -4772,8 +4777,9 @@
     </table:table-row>
    </table:table>
    <table:table table:name="Glossary" table:style-name="ta8">
-    <table:table-column table:style-name="co33" table:default-cell-style-name="ce38"/>
-    <table:table-column table:style-name="co34" table:default-cell-style-name="ce38"/>
+    <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
+    <table:table-column table:style-name="co31" table:default-cell-style-name="ce38"/>
+    <table:table-column table:style-name="co32" table:default-cell-style-name="ce38"/>
     <table:table-column table:style-name="co4" table:number-columns-repeated="62" table:default-cell-style-name="Default"/>
     <table:table-row table:style-name="ro1">
      <table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string">
@@ -4785,8 +4791,8 @@
      <table:table-cell table:number-columns-repeated="62"/>
     </table:table-row>
     <table:table-row table:style-name="ro1">
-     <table:table-cell table:style-name="ce31" table:number-columns-spanned="2" table:number-rows-spanned="1"/>
-     <table:covered-table-cell table:style-name="ce31"/>
+     <table:table-cell table:style-name="ce29" table:number-columns-spanned="2" table:number-rows-spanned="1"/>
+     <table:covered-table-cell table:style-name="ce29"/>
      <table:table-cell table:number-columns-repeated="62"/>
     </table:table-row>
     <table:table-row table:style-name="ro1" table:number-rows-repeated="1048573">
diff --git a/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.ods b/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.ods
index cebbca49a442cf945dbebb3fbb6da28bd0fdf0ab..c42156d7093ae5e9cdf93502362c5f640cff064c 100644
Binary files a/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.ods and b/src/test/java/de/uni_hamburg/corpora/validation/quest/resources/CorpusDocumentation_nisv1234_JocelynAznar_Nisvai.ods differ