summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.classpath2
-rw-r--r--src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java2
-rw-r--r--src/java/org/apache/poi/ss/usermodel/DifferentialStyleProvider.java32
-rw-r--r--src/java/org/apache/poi/ss/usermodel/Table.java6
-rw-r--r--src/java/org/apache/poi/ss/usermodel/TableStyle.java23
-rw-r--r--src/java/org/apache/poi/ss/usermodel/TableStyleInfo.java40
-rw-r--r--src/java/org/apache/poi/ss/usermodel/TableStyleType.java49
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/model/StylesTable.java44
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java411
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDxfStyleProvider.java59
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java10
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTableStyle.java54
-rw-r--r--src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTableStyleInfo.java55
-rw-r--r--src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestTableStyles.java62
-rw-r--r--src/resources/ooxml/org/apache/poi/xssf/usermodel/presetTableStyles.xml18070
-rw-r--r--test-data/spreadsheet/tableStyle.xlsxbin0 -> 10899 bytes
-rw-r--r--test-data/spreadsheet/~$tableStyle.xlsxbin0 -> 165 bytes
17 files changed, 18914 insertions, 5 deletions
diff --git a/.classpath b/.classpath
index b860811a20..f700e8e5e2 100644
--- a/.classpath
+++ b/.classpath
@@ -18,7 +18,7 @@
<classpathentry kind="lib" path="lib/ant-1.9.4.jar"/>
<classpathentry kind="lib" path="lib/ant-launcher-1.9.4.jar"/>
<classpathentry kind="lib" path="lib/log4j-1.2.17.jar"/>
- <classpathentry exported="true" kind="lib" path="ooxml-lib/xmlbeans-2.6.0.jar"/>
+ <classpathentry exported="true" kind="lib" path="ooxml-lib/xmlbeans-2.6.0.jar" sourcepath="ooxml-lib/xmlbeans-2.6.0.jar"/>
<classpathentry kind="lib" path="lib/hamcrest-core-1.3.jar"/>
<classpathentry kind="lib" path="lib/junit-4.12.jar"/>
<classpathentry kind="lib" path="ooxml-lib/curvesapi-1.04.jar"/>
diff --git a/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java b/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java
index 78b16ad87e..bb8fec46f9 100644
--- a/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java
+++ b/src/java/org/apache/poi/ss/usermodel/ConditionalFormattingRule.java
@@ -22,7 +22,7 @@ package org.apache.poi.ss.usermodel;
/**
* Represents a description of a conditional formatting rule
*/
-public interface ConditionalFormattingRule {
+public interface ConditionalFormattingRule extends DifferentialStyleProvider {
/**
* Create a new border formatting structure if it does not exist,
* otherwise just return existing object.
diff --git a/src/java/org/apache/poi/ss/usermodel/DifferentialStyleProvider.java b/src/java/org/apache/poi/ss/usermodel/DifferentialStyleProvider.java
new file mode 100644
index 0000000000..ab002e9261
--- /dev/null
+++ b/src/java/org/apache/poi/ss/usermodel/DifferentialStyleProvider.java
@@ -0,0 +1,32 @@
+package org.apache.poi.ss.usermodel;
+
+/**
+ * Interface for classes providing differential style definitions, such as conditional format rules
+ * and table/pivot table styles.
+ *
+ * @since 3.17 beta 1
+ */
+public interface DifferentialStyleProvider {
+
+ /**
+ * @return - border formatting object if defined, <code>null</code> otherwise
+ */
+ BorderFormatting getBorderFormatting();
+
+ /**
+ * @return - font formatting object if defined, <code>null</code> otherwise
+ */
+ FontFormatting getFontFormatting();
+
+ /**
+ *
+ * @return number format defined for this rule, or null if the cell default should be used
+ */
+ ExcelNumberFormat getNumberFormat();
+
+ /**
+ * @return - pattern formatting object if defined, <code>null</code> otherwise
+ */
+ PatternFormatting getPatternFormatting();
+
+}
diff --git a/src/java/org/apache/poi/ss/usermodel/Table.java b/src/java/org/apache/poi/ss/usermodel/Table.java
index 8a189d6bd6..01e0394aa2 100644
--- a/src/java/org/apache/poi/ss/usermodel/Table.java
+++ b/src/java/org/apache/poi/ss/usermodel/Table.java
@@ -77,5 +77,9 @@ public interface Table {
*/
boolean isHasTotalsRow();
-
+ /**
+ * @return TableStyleInfo for this instance
+ * @since 3.17 beta 1
+ */
+ TableStyleInfo getStyle();
}
diff --git a/src/java/org/apache/poi/ss/usermodel/TableStyle.java b/src/java/org/apache/poi/ss/usermodel/TableStyle.java
new file mode 100644
index 0000000000..09092d4473
--- /dev/null
+++ b/src/java/org/apache/poi/ss/usermodel/TableStyle.java
@@ -0,0 +1,23 @@
+package org.apache.poi.ss.usermodel;
+
+/**
+ * Data table style definition. Includes style elements for various table components.
+ * Any number of style elements may be represented, and any cell may be styled by
+ * multiple elements. The order of elements in {@link TableStyleType} defines precedence.
+ *
+ * @since 3.17 beta 1
+ */
+public interface TableStyle {
+
+ /**
+ * @return name (may be a builtin name)
+ */
+ String getName();
+
+ /**
+ *
+ * @param type
+ * @return style definition for the given type, or null if not defined in this style.
+ */
+ DifferentialStyleProvider getStyle(TableStyleType type);
+}
diff --git a/src/java/org/apache/poi/ss/usermodel/TableStyleInfo.java b/src/java/org/apache/poi/ss/usermodel/TableStyleInfo.java
new file mode 100644
index 0000000000..a4bfd1ff67
--- /dev/null
+++ b/src/java/org/apache/poi/ss/usermodel/TableStyleInfo.java
@@ -0,0 +1,40 @@
+package org.apache.poi.ss.usermodel;
+
+/**
+ * style information for a specific table instance, referencing the document style
+ * and indicating which optional portions of the style to apply.
+ *
+ * @since 3.17 beta 1
+ */
+public interface TableStyleInfo {
+
+ /**
+ * @return true if alternating column styles should be applied
+ */
+ boolean isShowColumnStripes();
+
+ /**
+ * @return true if alternating row styles should be applied
+ */
+ boolean isShowRowStripes();
+
+ /**
+ * @return true if the distinct first column style should be applied
+ */
+ boolean isShowFirstColumn();
+
+ /**
+ * @return true if the distinct last column style should be applied
+ */
+ boolean isShowLastColumn();
+
+ /**
+ * @return the name of the style (may reference a built-in style)
+ */
+ String getName();
+
+ /**
+ * @return style definition
+ */
+ TableStyle getStyle();
+}
diff --git a/src/java/org/apache/poi/ss/usermodel/TableStyleType.java b/src/java/org/apache/poi/ss/usermodel/TableStyleType.java
new file mode 100644
index 0000000000..67810b76df
--- /dev/null
+++ b/src/java/org/apache/poi/ss/usermodel/TableStyleType.java
@@ -0,0 +1,49 @@
+package org.apache.poi.ss.usermodel;
+
+/**
+ * Ordered list of table style elements, for both data tables and pivot tables.
+ * Some elements only apply to pivot tables, but any style definition can omit any number,
+ * so having them in one list should not be a problem.
+ * <p/>
+ * The order is the specification order of application, with later elements overriding previous
+ * ones, if style properties conflict.
+ * <p/>
+ * Processing could iterate bottom-up if looking for specific properties, and stop when the
+ * first style is found defining a value for that property.
+ * <p/>
+ * Enum names match the OOXML spec values exactly, so {@link #valueOf(String)} will work.
+ *
+ * @since 3.17 beta 1
+ */
+public enum TableStyleType {
+
+ wholeTable,
+ headerRow,
+ totalRow,
+ firstColumn,
+ lastColumn,
+ firstRowStripe,
+ secondRowStripe,
+ firstColumnStripe,
+ secondColumnStripe,
+ firstHeaderCell,
+ lastHeaderCell,
+ firstTotalCell,
+ lastTotalCell,
+ firstSubtotalColumn,
+ secondSubtotalColumn,
+ thirdSubtotalColumn,
+ firstSubtotalRow,
+ secondSubtotalRow,
+ thirdSubtotalRow,
+ blankRow,
+ firstColumnSubheading,
+ secondColumnSubheading,
+ thirdColumnSubheading,
+ firstRowSubheading,
+ secondRowSubheading,
+ thirdRowSubheading,
+ pageFieldLabels,
+ pageFieldValues,
+ ;
+}
diff --git a/src/ooxml/java/org/apache/poi/xssf/model/StylesTable.java b/src/ooxml/java/org/apache/poi/xssf/model/StylesTable.java
index c192aed3da..9017575828 100644
--- a/src/ooxml/java/org/apache/poi/xssf/model/StylesTable.java
+++ b/src/ooxml/java/org/apache/poi/xssf/model/StylesTable.java
@@ -25,6 +25,7 @@ import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
+import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
@@ -37,11 +38,14 @@ import org.apache.poi.ss.SpreadsheetVersion;
import org.apache.poi.ss.usermodel.BuiltinFormats;
import org.apache.poi.ss.usermodel.FontFamily;
import org.apache.poi.ss.usermodel.FontScheme;
+import org.apache.poi.ss.usermodel.TableStyle;
import org.apache.poi.util.Internal;
+import org.apache.poi.xssf.usermodel.XSSFBuiltinTableStyle;
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
import org.apache.poi.xssf.usermodel.XSSFFactory;
import org.apache.poi.xssf.usermodel.XSSFFont;
import org.apache.poi.xssf.usermodel.XSSFRelation;
+import org.apache.poi.xssf.usermodel.XSSFTableStyle;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.apache.poi.xssf.usermodel.extensions.XSSFCellBorder;
import org.apache.poi.xssf.usermodel.extensions.XSSFCellFill;
@@ -59,6 +63,8 @@ import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTFonts;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTNumFmt;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTNumFmts;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTStylesheet;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableStyle;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableStyles;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTXf;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.STPatternType;
import org.openxmlformats.schemas.spreadsheetml.x2006.main.StyleSheetDocument;
@@ -75,6 +81,7 @@ public class StylesTable extends POIXMLDocumentPart {
private final List<CTXf> xfs = new ArrayList<CTXf>();
private final List<CTDxf> dxfs = new ArrayList<CTDxf>();
+ private final Map<String, TableStyle> tableStyles = new HashMap<String, TableStyle>();
/**
* The first style id available for use as a custom style
@@ -189,7 +196,7 @@ public class StylesTable extends POIXMLDocumentPart {
* @param is The input stream containing the XML document.
* @throws IOException if an error occurs while reading.
*/
- protected void readFrom(InputStream is) throws IOException {
+ public void readFrom(InputStream is) throws IOException {
try {
doc = StyleSheetDocument.Factory.parse(is, DEFAULT_XML_OPTIONS);
@@ -237,6 +244,13 @@ public class StylesTable extends POIXMLDocumentPart {
CTDxfs styleDxfs = styleSheet.getDxfs();
if(styleDxfs != null) dxfs.addAll(Arrays.asList(styleDxfs.getDxfArray()));
+ CTTableStyles ctTableStyles = styleSheet.getTableStyles();
+ if (ctTableStyles != null) {
+ for (CTTableStyle style : Arrays.asList(ctTableStyles.getTableStyleArray())) {
+ tableStyles.put(style.getName(), new XSSFTableStyle(styleDxfs, style));
+ }
+ }
+
} catch (XmlException e) {
throw new IOException(e.getLocalizedMessage());
}
@@ -766,7 +780,33 @@ public class StylesTable extends POIXMLDocumentPart {
this.dxfs.add(dxf);
return this.dxfs.size();
}
-
+
+ /**
+ * NOTE: this only returns explicitly defined styles
+ * @param name of the table style
+ * @return defined style, or null if not explicitly defined
+ *
+ * @since 3.17 beta 1
+ */
+ public TableStyle getExplicitTableStyle(String name) {
+ return tableStyles.get(name);
+ }
+
+ /**
+ * @param name of the table style
+ * @return defined style, either explicit or built-in, or null if not found
+ *
+ * @since 3.17 beta 1
+ */
+ public TableStyle getTableStyle(String name) {
+ if (name == null) return null;
+ try {
+ return XSSFBuiltinTableStyle.valueOf(name).getStyle();
+ } catch (IllegalArgumentException e) {
+ return getExplicitTableStyle(name);
+ }
+ }
+
/**
* Create a cell style in this style table.
* Note - End users probably want to call {@link XSSFWorkbook#createCellStyle()}
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java
new file mode 100644
index 0000000000..f2df055fcf
--- /dev/null
+++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFBuiltinTableStyle.java
@@ -0,0 +1,411 @@
+package org.apache.poi.xssf.usermodel;
+
+import java.io.ByteArrayInputStream;
+import java.io.InputStream;
+import java.nio.charset.Charset;
+import java.util.HashMap;
+import java.util.Map;
+
+import org.apache.poi.ss.usermodel.TableStyle;
+import org.apache.poi.util.DocumentHelper;
+import org.apache.poi.util.IOUtils;
+import org.apache.poi.xssf.model.StylesTable;
+import org.apache.xmlbeans.XmlOptions;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDxfs;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableStyle;
+import org.w3c.dom.Document;
+import org.w3c.dom.Element;
+import org.w3c.dom.Node;
+import org.w3c.dom.NodeList;
+import org.w3c.dom.ls.DOMImplementationLS;
+import org.w3c.dom.ls.LSSerializer;
+
+/**
+ * Table style names defined in the OOXML spec.
+ * The actual styling is defined in presetTableStyles.xml
+ */
+public enum XSSFBuiltinTableStyle {
+ /***/
+ TableStyleDark1,
+ /***/
+ TableStyleDark2,
+ /***/
+ TableStyleDark3,
+ /***/
+ TableStyleDark4,
+ /***/
+ TableStyleDark5,
+ /***/
+ TableStyleDark6,
+ /***/
+ TableStyleDark7,
+ /***/
+ TableStyleDark8,
+ /***/
+ TableStyleDark9,
+ /***/
+ TableStyleDark10,
+ /***/
+ TableStyleDark11,
+ /***/
+ TableStyleLight1,
+ /***/
+ TableStyleLight2,
+ /***/
+ TableStyleLight3,
+ /***/
+ TableStyleLight4,
+ /***/
+ TableStyleLight5,
+ /***/
+ TableStyleLight6,
+ /***/
+ TableStyleLight7,
+ /***/
+ TableStyleLight8,
+ /***/
+ TableStyleLight9,
+ /***/
+ TableStyleLight10,
+ /***/
+ TableStyleLight11,
+ /***/
+ TableStyleLight12,
+ /***/
+ TableStyleLight13,
+ /***/
+ TableStyleLight14,
+ /***/
+ TableStyleLight15,
+ /***/
+ TableStyleLight16,
+ /***/
+ TableStyleLight17,
+ /***/
+ TableStyleLight18,
+ /***/
+ TableStyleLight19,
+ /***/
+ TableStyleLight20,
+ /***/
+ TableStyleLight21,
+ /***/
+ TableStyleMedium1,
+ /***/
+ TableStyleMedium2,
+ /***/
+ TableStyleMedium3,
+ /***/
+ TableStyleMedium4,
+ /***/
+ TableStyleMedium5,
+ /***/
+ TableStyleMedium6,
+ /***/
+ TableStyleMedium7,
+ /***/
+ TableStyleMedium8,
+ /***/
+ TableStyleMedium9,
+ /***/
+ TableStyleMedium10,
+ /***/
+ TableStyleMedium11,
+ /***/
+ TableStyleMedium12,
+ /***/
+ TableStyleMedium13,
+ /***/
+ TableStyleMedium14,
+ /***/
+ TableStyleMedium15,
+ /***/
+ TableStyleMedium16,
+ /***/
+ TableStyleMedium17,
+ /***/
+ TableStyleMedium18,
+ /***/
+ TableStyleMedium19,
+ /***/
+ TableStyleMedium20,
+ /***/
+ TableStyleMedium21,
+ /***/
+ TableStyleMedium22,
+ /***/
+ TableStyleMedium23,
+ /***/
+ TableStyleMedium24,
+ /***/
+ TableStyleMedium25,
+ /***/
+ TableStyleMedium26,
+ /***/
+ TableStyleMedium27,
+ /***/
+ TableStyleMedium28,
+ /***/
+ PivotStyleMedium1,
+ /***/
+ PivotStyleMedium2,
+ /***/
+ PivotStyleMedium3,
+ /***/
+ PivotStyleMedium4,
+ /***/
+ PivotStyleMedium5,
+ /***/
+ PivotStyleMedium6,
+ /***/
+ PivotStyleMedium7,
+ /***/
+ PivotStyleMedium8,
+ /***/
+ PivotStyleMedium9,
+ /***/
+ PivotStyleMedium10,
+ /***/
+ PivotStyleMedium11,
+ /***/
+ PivotStyleMedium12,
+ /***/
+ PivotStyleMedium13,
+ /***/
+ PivotStyleMedium14,
+ /***/
+ PivotStyleMedium15,
+ /***/
+ PivotStyleMedium16,
+ /***/
+ PivotStyleMedium17,
+ /***/
+ PivotStyleMedium18,
+ /***/
+ PivotStyleMedium19,
+ /***/
+ PivotStyleMedium20,
+ /***/
+ PivotStyleMedium21,
+ /***/
+ PivotStyleMedium22,
+ /***/
+ PivotStyleMedium23,
+ /***/
+ PivotStyleMedium24,
+ /***/
+ PivotStyleMedium25,
+ /***/
+ PivotStyleMedium26,
+ /***/
+ PivotStyleMedium27,
+ /***/
+ PivotStyleMedium28,
+ /***/
+ PivotStyleLight1,
+ /***/
+ PivotStyleLight2,
+ /***/
+ PivotStyleLight3,
+ /***/
+ PivotStyleLight4,
+ /***/
+ PivotStyleLight5,
+ /***/
+ PivotStyleLight6,
+ /***/
+ PivotStyleLight7,
+ /***/
+ PivotStyleLight8,
+ /***/
+ PivotStyleLight9,
+ /***/
+ PivotStyleLight10,
+ /***/
+ PivotStyleLight11,
+ /***/
+ PivotStyleLight12,
+ /***/
+ PivotStyleLight13,
+ /***/
+ PivotStyleLight14,
+ /***/
+ PivotStyleLight15,
+ /***/
+ PivotStyleLight16,
+ /***/
+ PivotStyleLight17,
+ /***/
+ PivotStyleLight18,
+ /***/
+ PivotStyleLight19,
+ /***/
+ PivotStyleLight20,
+ /***/
+ PivotStyleLight21,
+ /***/
+ PivotStyleLight22,
+ /***/
+ PivotStyleLight23,
+ /***/
+ PivotStyleLight24,
+ /***/
+ PivotStyleLight25,
+ /***/
+ PivotStyleLight26,
+ /***/
+ PivotStyleLight27,
+ /***/
+ PivotStyleLight28,
+ /***/
+ PivotStyleDark1,
+ /***/
+ PivotStyleDark2,
+ /***/
+ PivotStyleDark3,
+ /***/
+ PivotStyleDark4,
+ /***/
+ PivotStyleDark5,
+ /***/
+ PivotStyleDark6,
+ /***/
+ PivotStyleDark7,
+ /***/
+ PivotStyleDark8,
+ /***/
+ PivotStyleDark9,
+ /***/
+ PivotStyleDark10,
+ /***/
+ PivotStyleDark11,
+ /***/
+ PivotStyleDark12,
+ /***/
+ PivotStyleDark13,
+ /***/
+ PivotStyleDark14,
+ /***/
+ PivotStyleDark15,
+ /***/
+ PivotStyleDark16,
+ /***/
+ PivotStyleDark17,
+ /***/
+ PivotStyleDark18,
+ /***/
+ PivotStyleDark19,
+ /***/
+ PivotStyleDark20,
+ /***/
+ PivotStyleDark21,
+ /***/
+ PivotStyleDark22,
+ /***/
+ PivotStyleDark23,
+ /***/
+ PivotStyleDark24,
+ /***/
+ PivotStyleDark25,
+ /***/
+ PivotStyleDark26,
+ /***/
+ PivotStyleDark27,
+ /***/
+ PivotStyleDark28,
+ ;
+
+ private static final Map<XSSFBuiltinTableStyle, TableStyle> styleMap = new HashMap<XSSFBuiltinTableStyle, TableStyle>(60);
+
+ private XSSFBuiltinTableStyle() {
+ }
+
+ /**
+ * @return built-in {@link TableStyle} definition
+ */
+ public TableStyle getStyle() {
+ init();
+ return styleMap.get(this);
+ }
+
+ /**
+ * NOTE: only checks by name, not definition.
+ * @param style
+ * @return true if the style represents a built-in style, false if it is null or a custom style
+ */
+ public static boolean isBuiltinStyle(TableStyle style) {
+ if (style == null) return false;
+ try {
+ XSSFBuiltinTableStyle.valueOf(style.getName());
+ return true;
+ } catch (IllegalArgumentException e) {
+ return false;
+ }
+ }
+ /**
+ * Only init once - thus the synchronized. Lazy, after creating instances,
+ * and only when a style is actually needed, to avoid overhead for uses
+ * that don't need the actual style definitions.
+ * <p/>
+ * Public so clients can initialize the map on startup rather than lazily
+ * during evaluation if desired.
+ */
+ public static final synchronized void init() {
+ if (! styleMap.isEmpty()) return;
+
+ /*
+ * initialize map. Every built-in has this format:
+ * <styleName>
+ * <dxfs>
+ * <dxf>...</dxf>
+ * ...
+ * </dxfs>
+ * <tableStyles count="1">
+ * <tableStyle>...</tableStyle>
+ * </tableStyles>
+ * </styleName>
+ */
+ try {
+ final InputStream is = XSSFBuiltinTableStyle.class.getResourceAsStream("presetTableStyles.xml");
+ try {
+ final Document doc = DocumentHelper.readDocument(is);
+ final NodeList styleNodes = doc.getDocumentElement().getChildNodes();
+ for (int i=0; i < styleNodes.getLength(); i++) {
+ final Node node = styleNodes.item(i);
+ if (node.getNodeType() != Node.ELEMENT_NODE) continue; // only care about elements
+ final Element tag = (Element) node;
+ String styleName = tag.getTagName();
+ Node dxfsNode = tag.getElementsByTagName("dxfs").item(0);
+ Node tableStyleNode = tag.getElementsByTagName("tableStyles").item(0);
+
+ // hack because I can't figure out how to get XMLBeans to parse a sub-element in a standalone manner
+ // - build a fake styles.xml file with just this built-in
+ StylesTable styles = new StylesTable();
+ styles.readFrom(new ByteArrayInputStream(styleXML(dxfsNode, tableStyleNode).getBytes(Charset.forName("UTF-8"))));
+ styleMap.put(XSSFBuiltinTableStyle.valueOf(styleName), styles.getExplicitTableStyle(styleName));
+ }
+ } finally {
+ IOUtils.closeQuietly(is);
+ }
+ } catch (Exception e) {
+ throw new RuntimeException(e);
+ }
+ }
+
+ private static String styleXML(Node dxfsNode, Node tableStyleNode) {
+ DOMImplementationLS lsImpl = (DOMImplementationLS)dxfsNode.getOwnerDocument().getImplementation().getFeature("LS", "3.0");
+ LSSerializer lsSerializer = lsImpl.createLSSerializer();
+ lsSerializer.getDomConfig().setParameter("xml-declaration", false);
+ StringBuilder sb = new StringBuilder();
+ sb.append("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n")
+ .append("<styleSheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\" "
+ + "xmlns:mc=\"http://schemas.openxmlformats.org/markup-compatibility/2006\" "
+ + "xmlns:x14ac=\"http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac\" "
+ + "xmlns:x16r2=\"http://schemas.microsoft.com/office/spreadsheetml/2015/02/main\" "
+ + "mc:Ignorable=\"x14ac x16r2\">\n");
+ sb.append(lsSerializer.writeToString(dxfsNode));
+ sb.append(lsSerializer.writeToString(tableStyleNode));
+ sb.append("</styleSheet>");
+ return sb.toString();
+ }
+}
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDxfStyleProvider.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDxfStyleProvider.java
new file mode 100644
index 0000000000..95c3ef3f45
--- /dev/null
+++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFDxfStyleProvider.java
@@ -0,0 +1,59 @@
+package org.apache.poi.xssf.usermodel;
+
+import org.apache.poi.ss.usermodel.BorderFormatting;
+import org.apache.poi.ss.usermodel.DifferentialStyleProvider;
+import org.apache.poi.ss.usermodel.ExcelNumberFormat;
+import org.apache.poi.ss.usermodel.FontFormatting;
+import org.apache.poi.ss.usermodel.PatternFormatting;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDxf;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTNumFmt;
+
+/**
+ * Style based on a dxf record - e.g. table style element or conditional formatting rule
+ */
+public class XSSFDxfStyleProvider implements DifferentialStyleProvider {
+
+ private final BorderFormatting border;
+ private final FontFormatting font;
+ private final ExcelNumberFormat number;
+ private final PatternFormatting fill;
+
+ /**
+ * @param dxf
+ */
+ public XSSFDxfStyleProvider(CTDxf dxf) {
+ if (dxf == null) {
+ border = null;
+ font = null;
+ number = null;
+ fill = null;
+ } else {
+ border = dxf.isSetBorder() ? new XSSFBorderFormatting(dxf.getBorder()) : null;
+ font = dxf.isSetFont() ? new XSSFFontFormatting(dxf.getFont()) : null;
+ if (dxf.isSetNumFmt()) {
+ CTNumFmt numFmt = dxf.getNumFmt();
+ number = new ExcelNumberFormat((int) numFmt.getNumFmtId(), numFmt.getFormatCode());
+ } else {
+ number = null;
+ }
+ fill = dxf.isSetFill() ? new XSSFPatternFormatting(dxf.getFill()) : null;
+ }
+ }
+
+ public BorderFormatting getBorderFormatting() {
+ return border;
+ }
+
+ public FontFormatting getFontFormatting() {
+ return font;
+ }
+
+ public ExcelNumberFormat getNumberFormat() {
+ return number;
+ }
+
+ public PatternFormatting getPatternFormatting() {
+ return fill;
+ }
+
+}
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java
index 5bdd950dea..f1a31b0f9e 100644
--- a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java
+++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTable.java
@@ -31,6 +31,7 @@ import java.util.Locale;
import org.apache.poi.POIXMLDocumentPart;
import org.apache.poi.openxml4j.opc.PackagePart;
import org.apache.poi.ss.usermodel.Table;
+import org.apache.poi.ss.usermodel.TableStyleInfo;
import org.apache.poi.ss.util.CellReference;
import org.apache.poi.util.Internal;
import org.apache.poi.util.StringUtil;
@@ -444,4 +445,13 @@ public class XSSFTable extends POIXMLDocumentPart implements Table {
public int getEndRowIndex() {
return getEndCellReference().getRow();
}
+
+ /**
+ *
+ * @since 3.17 beta 1
+ */
+ public TableStyleInfo getStyle() {
+ if (! ctTable.isSetTableStyleInfo()) return null;
+ return new XSSFTableStyleInfo(((XSSFSheet) getParent()).getWorkbook().getStylesSource(), ctTable.getTableStyleInfo());
+ }
}
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTableStyle.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTableStyle.java
new file mode 100644
index 0000000000..b7f709e03e
--- /dev/null
+++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTableStyle.java
@@ -0,0 +1,54 @@
+package org.apache.poi.xssf.usermodel;
+
+import java.util.EnumMap;
+import java.util.Map;
+
+import org.apache.poi.ss.usermodel.DifferentialStyleProvider;
+import org.apache.poi.ss.usermodel.TableStyle;
+import org.apache.poi.ss.usermodel.TableStyleType;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDxf;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTDxfs;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableStyle;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableStyleElement;
+
+/**
+ * {@link TableStyle} implementation for styles defined in the OOXML styles.xml.
+ * Also used for built-in styles via dummy XML generated from presetTableStyles.xml.
+ */
+public class XSSFTableStyle implements TableStyle {
+
+ private final String name;
+ private final Map<TableStyleType, DifferentialStyleProvider> elementMap = new EnumMap<TableStyleType, DifferentialStyleProvider>(TableStyleType.class);
+
+ /**
+ * @param dxfs
+ * @param tableStyle
+ */
+ public XSSFTableStyle(CTDxfs dxfs, CTTableStyle tableStyle) {
+ this.name = tableStyle.getName();
+ for (CTTableStyleElement element : tableStyle.getTableStyleElementList()) {
+ TableStyleType type = TableStyleType.valueOf(element.getType().toString());
+ DifferentialStyleProvider dstyle = null;
+ if (element.isSetDxfId()) {
+ int idx = (int) element.getDxfId() -1;
+ CTDxf dxf;
+ if (idx >= 0 && idx < dxfs.getCount()) {
+ dxf = dxfs.getDxfArray(idx);
+ } else {
+ dxf = null;
+ }
+ if (dxf != null) dstyle = new XSSFDxfStyleProvider(dxf);
+ }
+ elementMap.put(type, dstyle);
+ }
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public DifferentialStyleProvider getStyle(TableStyleType type) {
+ return elementMap.get(type);
+ }
+
+} \ No newline at end of file
diff --git a/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTableStyleInfo.java b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTableStyleInfo.java
new file mode 100644
index 0000000000..325564c8e1
--- /dev/null
+++ b/src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFTableStyleInfo.java
@@ -0,0 +1,55 @@
+package org.apache.poi.xssf.usermodel;
+
+import org.apache.poi.ss.usermodel.TableStyle;
+import org.apache.poi.ss.usermodel.TableStyleInfo;
+import org.apache.poi.xssf.model.StylesTable;
+import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTTableStyleInfo;
+
+/**
+ * Wrapper for the CT class, to cache values and add style lookup
+ */
+public class XSSFTableStyleInfo implements TableStyleInfo {
+
+ private final boolean columnStripes;
+ private final boolean rowStripes;
+ private final boolean firstColumn;
+ private final boolean lastColumn;
+ private final TableStyle style;
+
+ /**
+ * @param stylesTable
+ * @param tableStyleInfo
+ */
+ public XSSFTableStyleInfo(StylesTable stylesTable, CTTableStyleInfo tableStyleInfo) {
+ this.columnStripes = tableStyleInfo.getShowColumnStripes();
+ this.rowStripes = tableStyleInfo.getShowRowStripes();
+ this.firstColumn = tableStyleInfo.getShowFirstColumn();
+ this.lastColumn = tableStyleInfo.getShowLastColumn();
+ this.style = stylesTable.getTableStyle(tableStyleInfo.getName());
+ }
+
+ public boolean isShowColumnStripes() {
+ return columnStripes;
+ }
+
+ public boolean isShowRowStripes() {
+ return rowStripes;
+ }
+
+ public boolean isShowFirstColumn() {
+ return firstColumn;
+ }
+
+ public boolean isShowLastColumn() {
+ return lastColumn;
+ }
+
+ public String getName() {
+ return style.getName();
+ }
+
+ public TableStyle getStyle() {
+ return style;
+ }
+
+}
diff --git a/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestTableStyles.java b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestTableStyles.java
new file mode 100644
index 0000000000..1ca90a990c
--- /dev/null
+++ b/src/ooxml/testcases/org/apache/poi/xssf/usermodel/TestTableStyles.java
@@ -0,0 +1,62 @@
+package org.apache.poi.xssf.usermodel;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertTrue;
+
+import org.apache.poi.ss.usermodel.DifferentialStyleProvider;
+import org.apache.poi.ss.usermodel.FontFormatting;
+import org.apache.poi.ss.usermodel.PatternFormatting;
+import org.apache.poi.ss.usermodel.Table;
+import org.apache.poi.ss.usermodel.TableStyle;
+import org.apache.poi.ss.usermodel.TableStyleInfo;
+import org.apache.poi.ss.usermodel.TableStyleType;
+import org.apache.poi.xssf.XSSFTestDataSamples;
+import org.junit.Test;
+
+/**
+ * Test built-in table styles
+ */
+public class TestTableStyles {
+
+ /**
+ * Test that a built-in style is initialized properly
+ */
+ @Test
+ public void testBuiltinStyleInit() {
+ TableStyle style = XSSFBuiltinTableStyle.TableStyleMedium2.getStyle();
+ assertNotNull("no style found for Medium2", style);
+ assertNull("Should not have style info for blankRow", style.getStyle(TableStyleType.blankRow));
+ DifferentialStyleProvider headerRow = style.getStyle(TableStyleType.headerRow);
+ assertNotNull("no header row style", headerRow);
+ FontFormatting font = headerRow.getFontFormatting();
+ assertNotNull("No header row font formatting", font);
+ assertTrue("header row not bold", font.isBold());
+ PatternFormatting fill = headerRow.getPatternFormatting();
+ assertNotNull("No header fill", fill);
+ assertEquals("wrong header fill", 4, ((XSSFColor) fill.getFillBackgroundColorColor()).getTheme());
+ }
+
+ @Test
+ public void testCustomStyle() throws Exception {
+ XSSFWorkbook wb = XSSFTestDataSamples.openSampleWorkbook("tableStyle.xlsx");
+
+ Table table = wb.getTable("Table1");
+ assertNotNull("missing table", table);
+
+ TableStyleInfo style = table.getStyle();
+ assertNotNull("Missing table style info", style);
+ assertNotNull("Missing table style", style.getStyle());
+ assertEquals("Wrong name", "TestTableStyle", style.getName());
+ assertEquals("Wrong name", "TestTableStyle", style.getStyle().getName());
+
+ DifferentialStyleProvider firstColumn = style.getStyle().getStyle(TableStyleType.firstColumn);
+ assertNotNull("no first column style", firstColumn);
+ FontFormatting font = firstColumn.getFontFormatting();
+ assertNotNull("no first col font", font);
+ assertTrue("wrong first col bold", font.isBold());
+
+ wb.close();
+ }
+}
diff --git a/src/resources/ooxml/org/apache/poi/xssf/usermodel/presetTableStyles.xml b/src/resources/ooxml/org/apache/poi/xssf/usermodel/presetTableStyles.xml
new file mode 100644
index 0000000000..f83f2e33c1
--- /dev/null
+++ b/src/resources/ooxml/org/apache/poi/xssf/usermodel/presetTableStyles.xml
@@ -0,0 +1,18070 @@
+<?xml version="1.0" encoding="utf-8"?>
+<presetTableStyles>
+ <TableStyleMedium28>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="9"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium28" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium28>
+ <TableStyleMedium27>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="8"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium27" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium27>
+ <TableStyleMedium26>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="7"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium26" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium26>
+ <TableStyleMedium25>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="6"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium25" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium25>
+ <TableStyleMedium24>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="5"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium24" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium24>
+ <TableStyleMedium23>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="4"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium23" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium23>
+ <TableStyleMedium22>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.34998626667073579"/>
+ <bgColor theme="0" tint="-0.34998626667073579"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.34998626667073579"/>
+ <bgColor theme="0" tint="-0.34998626667073579"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="1"/>
+ </left>
+ <right style="thin">
+ <color theme="1"/>
+ </right>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="1"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="1"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium22" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium22>
+ <TableStyleMedium21>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="1"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium21" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium21>
+ <TableStyleMedium20>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="1"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium20" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium20>
+ <TableStyleMedium19>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="1"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium19" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium19>
+ <TableStyleMedium18>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="1"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium18" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium18>
+ <TableStyleMedium17>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="1"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium17" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium17>
+ <TableStyleMedium16>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="1"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium16" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium16>
+ <TableStyleMedium15>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="1"/>
+ </left>
+ <right style="thin">
+ <color theme="1"/>
+ </right>
+ <top style="medium">
+ <color theme="1"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="1"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="1"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium15" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium15>
+ <TableStyleMedium14>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thick">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thick">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium14" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium14>
+ <TableStyleMedium13>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thick">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thick">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium13" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium13>
+ <TableStyleMedium12>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thick">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thick">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium12" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium12>
+ <TableStyleMedium11>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thick">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thick">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium11" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium11>
+ <TableStyleMedium10>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thick">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thick">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium10" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium10>
+ <TableStyleMedium9>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thick">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thick">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium9" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium9>
+ <TableStyleMedium8>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.34998626667073579"/>
+ <bgColor theme="0" tint="-0.34998626667073579"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.34998626667073579"/>
+ <bgColor theme="0" tint="-0.34998626667073579"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thick">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thick">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium8" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium8>
+ <TableStyleMedium7>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="9"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium7" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium7>
+ <TableStyleMedium6>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="8"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium6" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium6>
+ <TableStyleMedium5>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="7"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium5" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium5>
+ <TableStyleMedium4>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="6"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium4" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium4>
+ <TableStyleMedium3>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="5"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium3" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium3>
+ <TableStyleMedium2>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="4"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium2" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium2>
+ <TableStyleMedium1>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="1"/>
+ </left>
+ <right style="thin">
+ <color theme="1"/>
+ </right>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="1"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleMedium1" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleMedium1>
+ <TableStyleLight21>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="9"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="medium">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="9"/>
+ </left>
+ <right style="thin">
+ <color theme="9"/>
+ </right>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="9"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="9"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight21" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight21>
+ <TableStyleLight20>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="8"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="medium">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="8"/>
+ </left>
+ <right style="thin">
+ <color theme="8"/>
+ </right>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="8"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="8"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight20" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight20>
+ <TableStyleLight19>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="7"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="medium">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="7"/>
+ </left>
+ <right style="thin">
+ <color theme="7"/>
+ </right>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="7"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="7"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight19" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight19>
+ <TableStyleLight18>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="6"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="medium">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="6"/>
+ </left>
+ <right style="thin">
+ <color theme="6"/>
+ </right>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="6"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="6"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight18" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight18>
+ <TableStyleLight17>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="5"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="medium">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="5"/>
+ </left>
+ <right style="thin">
+ <color theme="5"/>
+ </right>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="5"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="5"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight17" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight17>
+ <TableStyleLight16>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="4"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="medium">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="4"/>
+ </left>
+ <right style="thin">
+ <color theme="4"/>
+ </right>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="4"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="4"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight16" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight16>
+ <TableStyleLight15>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="medium">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="1"/>
+ </left>
+ <right style="thin">
+ <color theme="1"/>
+ </right>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="1"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="1"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight15" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight15>
+ <TableStyleLight14>
+ <dxfs count="10">
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="9"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="9"/>
+ </left>
+ <right style="thin">
+ <color theme="9"/>
+ </right>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight14" pivot="0" count="9">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="lastColumn" dxfId="5"/>
+ <tableStyleElement type="firstRowStripe" dxfId="4"/>
+ <tableStyleElement type="secondRowStripe" dxfId="3"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="2"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight14>
+ <TableStyleLight13>
+ <dxfs count="9">
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="8"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="8"/>
+ </left>
+ <right style="thin">
+ <color theme="8"/>
+ </right>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight13" pivot="0" count="9">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="lastColumn" dxfId="5"/>
+ <tableStyleElement type="firstRowStripe" dxfId="4"/>
+ <tableStyleElement type="secondRowStripe" dxfId="3"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="2"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight13>
+ <TableStyleLight12>
+ <dxfs count="9">
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="7"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="7"/>
+ </left>
+ <right style="thin">
+ <color theme="7"/>
+ </right>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight12" pivot="0" count="9">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="lastColumn" dxfId="5"/>
+ <tableStyleElement type="firstRowStripe" dxfId="4"/>
+ <tableStyleElement type="secondRowStripe" dxfId="3"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="2"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight12>
+ <TableStyleLight11>
+ <dxfs count="9">
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="6"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="6"/>
+ </left>
+ <right style="thin">
+ <color theme="6"/>
+ </right>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight11" pivot="0" count="9">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="lastColumn" dxfId="5"/>
+ <tableStyleElement type="firstRowStripe" dxfId="4"/>
+ <tableStyleElement type="secondRowStripe" dxfId="3"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="2"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight11>
+ <TableStyleLight10>
+ <dxfs count="9">
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="5"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="5"/>
+ </left>
+ <right style="thin">
+ <color theme="5"/>
+ </right>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight10" pivot="0" count="9">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="lastColumn" dxfId="5"/>
+ <tableStyleElement type="firstRowStripe" dxfId="4"/>
+ <tableStyleElement type="secondRowStripe" dxfId="3"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="2"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight10>
+ <TableStyleLight9>
+ <dxfs count="9">
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="4"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="4"/>
+ </left>
+ <right style="thin">
+ <color theme="4"/>
+ </right>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight9" pivot="0" count="9">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="lastColumn" dxfId="5"/>
+ <tableStyleElement type="firstRowStripe" dxfId="4"/>
+ <tableStyleElement type="secondRowStripe" dxfId="3"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="2"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight9>
+ <TableStyleLight8>
+ <dxfs count="9">
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="1"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="1"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="1"/>
+ </left>
+ <right style="thin">
+ <color theme="1"/>
+ </right>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight8" pivot="0" count="9">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="lastColumn" dxfId="5"/>
+ <tableStyleElement type="firstRowStripe" dxfId="4"/>
+ <tableStyleElement type="secondRowStripe" dxfId="3"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="2"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight8>
+ <TableStyleLight7>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight7" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight7>
+ <TableStyleLight6>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight6" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight6>
+ <TableStyleLight5>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight5" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight5>
+ <TableStyleLight4>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight4" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight4>
+ <TableStyleLight3>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight3" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight3>
+ <TableStyleLight2>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight2" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight2>
+ <TableStyleLight1>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleLight1" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleLight1>
+ <TableStyleDark11>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark11" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark11>
+ <TableStyleDark10>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark10" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark10>
+ <TableStyleDark9>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark9" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark9>
+ <TableStyleDark8>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.34998626667073579"/>
+ <bgColor theme="0" tint="-0.34998626667073579"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.34998626667073579"/>
+ <bgColor theme="0" tint="-0.34998626667073579"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="1"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark8" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark8>
+ <TableStyleDark7>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="0"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <right style="medium">
+ <color theme="0"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.499984740745262"/>
+ <bgColor theme="9" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark7" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark7>
+ <TableStyleDark6>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="0"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <right style="medium">
+ <color theme="0"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.499984740745262"/>
+ <bgColor theme="8" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark6" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark6>
+ <TableStyleDark5>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="0"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <right style="medium">
+ <color theme="0"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.499984740745262"/>
+ <bgColor theme="7" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark5" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark5>
+ <TableStyleDark4>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="0"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <right style="medium">
+ <color theme="0"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.499984740745262"/>
+ <bgColor theme="6" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark4" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark4>
+ <TableStyleDark3>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="0"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <right style="medium">
+ <color theme="0"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.499984740745262"/>
+ <bgColor theme="5" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark3" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark3>
+ <TableStyleDark2>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="0"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <right style="medium">
+ <color theme="0"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.499984740745262"/>
+ <bgColor theme="4" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark2" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark2>
+ <TableStyleDark1>
+ <dxfs count="7">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="0"/>
+ </left>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <right style="medium">
+ <color theme="0"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.14999847407452621"/>
+ <bgColor theme="1" tint="0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.44999542222357858"/>
+ <bgColor theme="1" tint="0.44999542222357858"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="TableStyleDark1" pivot="0" count="7">
+ <tableStyleElement type="wholeTable" dxfId="7"/>
+ <tableStyleElement type="headerRow" dxfId="6"/>
+ <tableStyleElement type="totalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumn" dxfId="4"/>
+ <tableStyleElement type="lastColumn" dxfId="3"/>
+ <tableStyleElement type="firstRowStripe" dxfId="2"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="1"/>
+ </tableStyle>
+ </tableStyles>
+ </TableStyleDark1>
+ <PivotStyleMedium28>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium28" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="secondRowStripe" dxfId="5"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium28>
+ <PivotStyleMedium27>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium27" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="secondRowStripe" dxfId="5"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium27>
+ <PivotStyleMedium26>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium26" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="secondRowStripe" dxfId="5"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium26>
+ <PivotStyleMedium25>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium25" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="secondRowStripe" dxfId="5"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium25>
+ <PivotStyleMedium24>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium24" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="secondRowStripe" dxfId="5"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium24>
+ <PivotStyleMedium23>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium23" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="secondRowStripe" dxfId="5"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium23>
+ <PivotStyleMedium22>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.249977111117893"/>
+ <bgColor theme="0" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.249977111117893"/>
+ <bgColor theme="0" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.249977111117893"/>
+ <bgColor theme="0" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.249977111117893"/>
+ <bgColor theme="0" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium22" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="secondRowStripe" dxfId="5"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium22>
+ <PivotStyleMedium21>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </right>
+ <vertical style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium21" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="4"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium21>
+ <PivotStyleMedium20>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </right>
+ <vertical style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium20" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="4"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium20>
+ <PivotStyleMedium19>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </right>
+ <vertical style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium19" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="4"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium19>
+ <PivotStyleMedium18>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </right>
+ <vertical style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium18" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="4"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium18>
+ <PivotStyleMedium17>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </right>
+ <vertical style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium17" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="4"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium17>
+ <PivotStyleMedium16>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </right>
+ <vertical style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium16" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="4"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium16>
+ <PivotStyleMedium15>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.249977111117893"/>
+ <bgColor theme="0" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </right>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left/>
+ <right/>
+ <vertical/>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-4.9989318521683403E-2"/>
+ <bgColor theme="0" tint="-4.9989318521683403E-2"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </right>
+ <vertical style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium15" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="4"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium15>
+ <PivotStyleMedium14>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="9" tint="0.59999389629810485"/>
+ </left>
+ <right style="medium">
+ <color theme="9" tint="0.59999389629810485"/>
+ </right>
+ <top style="medium">
+ <color theme="9" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="medium">
+ <color theme="9" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="medium">
+ <color theme="9" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="9" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium14" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium14>
+ <PivotStyleMedium13>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="8" tint="0.59999389629810485"/>
+ </left>
+ <right style="medium">
+ <color theme="8" tint="0.59999389629810485"/>
+ </right>
+ <top style="medium">
+ <color theme="8" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="medium">
+ <color theme="8" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="medium">
+ <color theme="8" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="8" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium13" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium13>
+ <PivotStyleMedium12>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="7" tint="0.59999389629810485"/>
+ </left>
+ <right style="medium">
+ <color theme="7" tint="0.59999389629810485"/>
+ </right>
+ <top style="medium">
+ <color theme="7" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="medium">
+ <color theme="7" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="medium">
+ <color theme="7" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="7" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium12" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium12>
+ <PivotStyleMedium11>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="6" tint="0.59999389629810485"/>
+ </left>
+ <right style="medium">
+ <color theme="6" tint="0.59999389629810485"/>
+ </right>
+ <top style="medium">
+ <color theme="6" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="medium">
+ <color theme="6" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="medium">
+ <color theme="6" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="6" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium11" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium11>
+ <PivotStyleMedium10>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="5" tint="0.59999389629810485"/>
+ </left>
+ <right style="medium">
+ <color theme="5" tint="0.59999389629810485"/>
+ </right>
+ <top style="medium">
+ <color theme="5" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="medium">
+ <color theme="5" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="medium">
+ <color theme="5" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="5" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium10" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium10>
+ <PivotStyleMedium9>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="4" tint="0.59999389629810485"/>
+ </left>
+ <right style="medium">
+ <color theme="4" tint="0.59999389629810485"/>
+ </right>
+ <top style="medium">
+ <color theme="4" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="medium">
+ <color theme="4" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="medium">
+ <color theme="4" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="4" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium9" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium9>
+ <PivotStyleMedium8>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.249977111117893"/>
+ <bgColor theme="0" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="medium">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ <top style="medium">
+ <color theme="0" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="medium">
+ <color theme="0" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="medium">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </left>
+ <right style="medium">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="1"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium8" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium8>
+ <PivotStyleMedium7>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.39997558519241921"/>
+ <bgColor theme="9" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.39997558519241921"/>
+ <bgColor theme="9" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="-0.249977111117893"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="9" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="9" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="9" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium7" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium7>
+ <PivotStyleMedium6>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.39997558519241921"/>
+ <bgColor theme="8" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.39997558519241921"/>
+ <bgColor theme="8" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="-0.249977111117893"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="8" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="8" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="8" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium6" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium6>
+ <PivotStyleMedium5>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.39997558519241921"/>
+ <bgColor theme="7" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.39997558519241921"/>
+ <bgColor theme="7" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="-0.249977111117893"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="7" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="7" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="7" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium5" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium5>
+ <PivotStyleMedium4>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.39997558519241921"/>
+ <bgColor theme="6" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.39997558519241921"/>
+ <bgColor theme="6" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="-0.249977111117893"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="6" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="6" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="6" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium4" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium4>
+ <PivotStyleMedium3>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.39997558519241921"/>
+ <bgColor theme="5" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.39997558519241921"/>
+ <bgColor theme="5" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="-0.249977111117893"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="5" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="5" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="5" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium3" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium3>
+ <PivotStyleMedium2>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.39997558519241921"/>
+ <bgColor theme="4" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.39997558519241921"/>
+ <bgColor theme="4" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="-0.249977111117893"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="4" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="4" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="4" tint="-0.249977111117893"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium2" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium2>
+ <PivotStyleMedium1>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.34998626667073579"/>
+ <bgColor theme="0" tint="-0.34998626667073579"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.34998626667073579"/>
+ <bgColor theme="0" tint="-0.34998626667073579"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="double">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleMedium1" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="firstRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleMedium1>
+ <PivotStyleLight28>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="9"/>
+ </left>
+ <right style="thin">
+ <color theme="9"/>
+ </right>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="9"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight28" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="firstRowStripe" dxfId="5"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="3"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight28>
+ <PivotStyleLight27>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="8"/>
+ </left>
+ <right style="thin">
+ <color theme="8"/>
+ </right>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="8"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight27" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="firstRowStripe" dxfId="5"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="3"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight27>
+ <PivotStyleLight26>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="7"/>
+ </left>
+ <right style="thin">
+ <color theme="7"/>
+ </right>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="7"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight26" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="firstRowStripe" dxfId="5"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="3"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight26>
+ <PivotStyleLight25>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="6"/>
+ </left>
+ <right style="thin">
+ <color theme="6"/>
+ </right>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="6"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight25" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="firstRowStripe" dxfId="5"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="3"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight25>
+ <PivotStyleLight24>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="5"/>
+ </left>
+ <right style="thin">
+ <color theme="5"/>
+ </right>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="5"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight24" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="firstRowStripe" dxfId="5"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="3"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight24>
+ <PivotStyleLight23>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="4"/>
+ </left>
+ <right style="thin">
+ <color theme="4"/>
+ </right>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="4"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight23" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="firstRowStripe" dxfId="5"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="3"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight23>
+ <PivotStyleLight22>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight22" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="firstColumn" dxfId="6"/>
+ <tableStyleElement type="firstRowStripe" dxfId="5"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="4"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="3"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="2"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight22>
+ <PivotStyleLight21>
+ <dxfs count="11">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight21" table="0" count="11">
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight21>
+ <PivotStyleLight20>
+ <dxfs count="11">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight20" table="0" count="11">
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight20>
+ <PivotStyleLight19>
+ <dxfs count="11">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight19" table="0" count="11">
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight19>
+ <PivotStyleLight18>
+ <dxfs count="11">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight18" table="0" count="11">
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight18>
+ <PivotStyleLight17>
+ <dxfs count="11">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight17" table="0" count="11">
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight17>
+ <PivotStyleLight16>
+ <dxfs count="11">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight16" table="0" count="11">
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight16>
+ <PivotStyleLight15>
+ <dxfs count="11">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight15" table="0" count="11">
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstRowStripe" dxfId="8"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight15>
+ <PivotStyleLight14>
+ <dxfs count="12">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9"/>
+ </left>
+ <right style="thin">
+ <color theme="9"/>
+ </right>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <right style="thin">
+ <color theme="9"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="9"/>
+ </left>
+ <right style="medium">
+ <color theme="9"/>
+ </right>
+ <top style="medium">
+ <color theme="9"/>
+ </top>
+ <bottom style="medium">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="9"/>
+ </left>
+ <right style="medium">
+ <color theme="9"/>
+ </right>
+ <top style="medium">
+ <color theme="9"/>
+ </top>
+ <bottom style="medium">
+ <color theme="9"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight14" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight14>
+ <PivotStyleLight13>
+ <dxfs count="12">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8"/>
+ </left>
+ <right style="thin">
+ <color theme="8"/>
+ </right>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <right style="thin">
+ <color theme="8"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="8"/>
+ </left>
+ <right style="medium">
+ <color theme="8"/>
+ </right>
+ <top style="medium">
+ <color theme="8"/>
+ </top>
+ <bottom style="medium">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="8"/>
+ </left>
+ <right style="medium">
+ <color theme="8"/>
+ </right>
+ <top style="medium">
+ <color theme="8"/>
+ </top>
+ <bottom style="medium">
+ <color theme="8"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight13" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight13>
+ <PivotStyleLight12>
+ <dxfs count="12">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7"/>
+ </left>
+ <right style="thin">
+ <color theme="7"/>
+ </right>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <right style="thin">
+ <color theme="7"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="7"/>
+ </left>
+ <right style="medium">
+ <color theme="7"/>
+ </right>
+ <top style="medium">
+ <color theme="7"/>
+ </top>
+ <bottom style="medium">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="7"/>
+ </left>
+ <right style="medium">
+ <color theme="7"/>
+ </right>
+ <top style="medium">
+ <color theme="7"/>
+ </top>
+ <bottom style="medium">
+ <color theme="7"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight12" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight12>
+ <PivotStyleLight11>
+ <dxfs count="12">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6"/>
+ </left>
+ <right style="thin">
+ <color theme="6"/>
+ </right>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <right style="thin">
+ <color theme="6"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="6"/>
+ </left>
+ <right style="medium">
+ <color theme="6"/>
+ </right>
+ <top style="medium">
+ <color theme="6"/>
+ </top>
+ <bottom style="medium">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="6"/>
+ </left>
+ <right style="medium">
+ <color theme="6"/>
+ </right>
+ <top style="medium">
+ <color theme="6"/>
+ </top>
+ <bottom style="medium">
+ <color theme="6"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight11" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight11>
+ <PivotStyleLight10>
+ <dxfs count="12">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5"/>
+ </left>
+ <right style="thin">
+ <color theme="5"/>
+ </right>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <right style="thin">
+ <color theme="5"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="5"/>
+ </left>
+ <right style="medium">
+ <color theme="5"/>
+ </right>
+ <top style="medium">
+ <color theme="5"/>
+ </top>
+ <bottom style="medium">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="5"/>
+ </left>
+ <right style="medium">
+ <color theme="5"/>
+ </right>
+ <top style="medium">
+ <color theme="5"/>
+ </top>
+ <bottom style="medium">
+ <color theme="5"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight10" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight10>
+ <PivotStyleLight9>
+ <dxfs count="12">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4"/>
+ </left>
+ <right style="thin">
+ <color theme="4"/>
+ </right>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <right style="thin">
+ <color theme="4"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="4"/>
+ </left>
+ <right style="medium">
+ <color theme="4"/>
+ </right>
+ <top style="medium">
+ <color theme="4"/>
+ </top>
+ <bottom style="medium">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="4"/>
+ </left>
+ <right style="medium">
+ <color theme="4"/>
+ </right>
+ <top style="medium">
+ <color theme="4"/>
+ </top>
+ <bottom style="medium">
+ <color theme="4"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="-0.249977111117893"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight9" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight9>
+ <PivotStyleLight8>
+ <dxfs count="11">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.44999542222357858"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.44999542222357858"/>
+ </right>
+ <top style="thin">
+ <color theme="0" tint="-0.44999542222357858"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.44999542222357858"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </right>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <right style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="0"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight8" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstColumn" dxfId="7"/>
+ <tableStyleElement type="firstRowStripe" dxfId="6"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="2"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="1"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight8>
+ <PivotStyleLight7>
+ <dxfs count="11">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="9"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0"/>
+ <bgColor theme="0"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="9"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight7" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight7>
+ <PivotStyleLight6>
+ <dxfs count="11">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="8"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0"/>
+ <bgColor theme="0"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="8"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight6" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight6>
+ <PivotStyleLight5>
+ <dxfs count="11">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="7"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0"/>
+ <bgColor theme="0"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="7"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight5" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight5>
+ <PivotStyleLight4>
+ <dxfs count="11">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="6"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0"/>
+ <bgColor theme="0"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="6"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight4" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight4>
+ <PivotStyleLight3>
+ <dxfs count="11">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="5"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0"/>
+ <bgColor theme="0"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="5"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight3" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight3>
+ <PivotStyleLight2>
+ <dxfs count="11">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </right>
+ <top style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0"/>
+ <bgColor theme="0"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="4"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight2" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight2>
+ <PivotStyleLight1>
+ <dxfs count="11">
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1" tint="0.499984740745262"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </right>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ <vertical style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </vertical>
+ <horizontal style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0"/>
+ <bgColor theme="0"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <top style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <border>
+ <horizontal style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleLight1" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="5"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleLight1>
+ <PivotStyleDark28>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="0.79998168889431442"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.39997558519241921"/>
+ <bgColor theme="9" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.39997558519241921"/>
+ <bgColor theme="9" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark28" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="secondRowStripe" dxfId="7"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark28>
+ <PivotStyleDark27>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="0.79998168889431442"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.39997558519241921"/>
+ <bgColor theme="8" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.39997558519241921"/>
+ <bgColor theme="8" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark27" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="secondRowStripe" dxfId="7"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark27>
+ <PivotStyleDark26>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="0.79998168889431442"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.39997558519241921"/>
+ <bgColor theme="7" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.39997558519241921"/>
+ <bgColor theme="7" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark26" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="secondRowStripe" dxfId="7"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark26>
+ <PivotStyleDark25>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="0.79998168889431442"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.39997558519241921"/>
+ <bgColor theme="6" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.39997558519241921"/>
+ <bgColor theme="6" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark25" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="secondRowStripe" dxfId="7"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark25>
+ <PivotStyleDark24>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="0.79998168889431442"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.39997558519241921"/>
+ <bgColor theme="5" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.39997558519241921"/>
+ <bgColor theme="5" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark24" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="secondRowStripe" dxfId="7"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark24>
+ <PivotStyleDark23>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="0.79998168889431442"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.39997558519241921"/>
+ <bgColor theme="4" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.39997558519241921"/>
+ <bgColor theme="4" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark23" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="secondRowStripe" dxfId="7"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark23>
+ <PivotStyleDark22>
+ <dxfs count="12">
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0" tint="-0.14999847407452621"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.44999542222357858"/>
+ <bgColor theme="0" tint="-0.44999542222357858"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.44999542222357858"/>
+ <bgColor theme="0" tint="-0.44999542222357858"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <border>
+ <top style="medium">
+ <color theme="0"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0" tint="-0.14999847407452621"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.499984740745262"/>
+ <bgColor theme="0" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <vertical style="thin">
+ <color theme="0"/>
+ </vertical>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark22" table="0" count="12">
+ <tableStyleElement type="wholeTable" dxfId="11"/>
+ <tableStyleElement type="headerRow" dxfId="10"/>
+ <tableStyleElement type="totalRow" dxfId="9"/>
+ <tableStyleElement type="firstColumn" dxfId="8"/>
+ <tableStyleElement type="secondRowStripe" dxfId="7"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstHeaderCell" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="secondSubtotalRow" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark22>
+ <PivotStyleDark21>
+ <dxfs count="11">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.249977111117893"/>
+ <bgColor theme="9" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="9" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9"/>
+ <bgColor theme="9"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark21" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark21>
+ <PivotStyleDark20>
+ <dxfs count="11">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.249977111117893"/>
+ <bgColor theme="8" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="8" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8"/>
+ <bgColor theme="8"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark20" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark20>
+ <PivotStyleDark19>
+ <dxfs count="11">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.249977111117893"/>
+ <bgColor theme="7" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="7" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7"/>
+ <bgColor theme="7"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark19" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark19>
+ <PivotStyleDark18>
+ <dxfs count="11">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.249977111117893"/>
+ <bgColor theme="6" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="6" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6"/>
+ <bgColor theme="6"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark18" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark18>
+ <PivotStyleDark17>
+ <dxfs count="11">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.249977111117893"/>
+ <bgColor theme="5" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="5" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5"/>
+ <bgColor theme="5"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark17" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark17>
+ <PivotStyleDark16>
+ <dxfs count="11">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.249977111117893"/>
+ <bgColor theme="4" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </right>
+ <top style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="4" tint="0.79998168889431442"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4"/>
+ <bgColor theme="4"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark16" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark16>
+ <PivotStyleDark15>
+ <dxfs count="11">
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </right>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1"/>
+ <bgColor theme="1"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="0" tint="-0.14999847407452621"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.44999542222357858"/>
+ <bgColor theme="0" tint="-0.44999542222357858"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark15" table="0" count="11">
+ <tableStyleElement type="wholeTable" dxfId="10"/>
+ <tableStyleElement type="headerRow" dxfId="9"/>
+ <tableStyleElement type="totalRow" dxfId="8"/>
+ <tableStyleElement type="firstRowStripe" dxfId="7"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="6"/>
+ <tableStyleElement type="firstSubtotalColumn" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstColumnSubheading" dxfId="3"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="2"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="1"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark15>
+ <PivotStyleDark14>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="9" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="9" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="9" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark14" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="secondRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="5"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark14>
+ <PivotStyleDark13>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="8" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="8" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="8" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark13" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="secondRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="5"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark13>
+ <PivotStyleDark12>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="7" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="7" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="7" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark12" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="secondRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="5"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark12>
+ <PivotStyleDark11>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="6" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="6" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="6" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark11" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="secondRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="5"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark11>
+ <PivotStyleDark10>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="5" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="5" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="5" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark10" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="secondRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="5"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark10>
+ <PivotStyleDark9>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="4" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="4" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="4" tint="0.79998168889431442"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.59999389629810485"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark9" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="secondRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="5"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark9>
+ <PivotStyleDark8>
+ <dxfs count="13">
+ <dxf>
+ <border>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.249977111117893"/>
+ <bgColor theme="0" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="medium">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="0" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="medium">
+ <color theme="0" tint="-0.249977111117893"/>
+ </top>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.249977111117893"/>
+ <bgColor theme="0" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.44999542222357858"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.44999542222357858"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.44999542222357858"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.44999542222357858"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.249977111117893"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.249977111117893"/>
+ <bgColor theme="1" tint="0.249977111117893"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <left style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </left>
+ <right style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </right>
+ <top style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </top>
+ <bottom style="medium">
+ <color theme="1" tint="0.499984740745262"/>
+ </bottom>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark8" table="0" count="13">
+ <tableStyleElement type="wholeTable" dxfId="12"/>
+ <tableStyleElement type="headerRow" dxfId="11"/>
+ <tableStyleElement type="totalRow" dxfId="10"/>
+ <tableStyleElement type="secondRowStripe" dxfId="9"/>
+ <tableStyleElement type="firstColumnStripe" dxfId="8"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="7"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="6"/>
+ <tableStyleElement type="secondColumnSubheading" dxfId="5"/>
+ <tableStyleElement type="thirdColumnSubheading" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark8>
+ <PivotStyleDark7>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.499984740745262"/>
+ <bgColor theme="9" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="9" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.499984740745262"/>
+ <bgColor theme="9" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="9" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.79998168889431442"/>
+ <bgColor theme="9" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="9" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </left>
+ <right style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.39997558519241921"/>
+ <bgColor theme="9" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.499984740745262"/>
+ <bgColor theme="9" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="-0.499984740745262"/>
+ <bgColor theme="9" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="9"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="9" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="9" tint="0.59999389629810485"/>
+ <bgColor theme="9" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="9" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark7" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="secondRowStripe" dxfId="6"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark7>
+ <PivotStyleDark6>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.499984740745262"/>
+ <bgColor theme="8" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="8" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.499984740745262"/>
+ <bgColor theme="8" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="8" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.79998168889431442"/>
+ <bgColor theme="8" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="8" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </left>
+ <right style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.39997558519241921"/>
+ <bgColor theme="8" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.499984740745262"/>
+ <bgColor theme="8" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="-0.499984740745262"/>
+ <bgColor theme="8" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="8"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="8" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="8" tint="0.59999389629810485"/>
+ <bgColor theme="8" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="8" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark6" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="secondRowStripe" dxfId="6"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark6>
+ <PivotStyleDark5>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.499984740745262"/>
+ <bgColor theme="7" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="7" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.499984740745262"/>
+ <bgColor theme="7" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="7" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.79998168889431442"/>
+ <bgColor theme="7" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="7" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </left>
+ <right style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.39997558519241921"/>
+ <bgColor theme="7" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.499984740745262"/>
+ <bgColor theme="7" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="-0.499984740745262"/>
+ <bgColor theme="7" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="7"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="7" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="7" tint="0.59999389629810485"/>
+ <bgColor theme="7" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="7" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark5" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="secondRowStripe" dxfId="6"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark5>
+ <PivotStyleDark4>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.499984740745262"/>
+ <bgColor theme="6" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="6" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.499984740745262"/>
+ <bgColor theme="6" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="6" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.79998168889431442"/>
+ <bgColor theme="6" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="6" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </left>
+ <right style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.39997558519241921"/>
+ <bgColor theme="6" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.499984740745262"/>
+ <bgColor theme="6" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="-0.499984740745262"/>
+ <bgColor theme="6" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="6"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="6" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="6" tint="0.59999389629810485"/>
+ <bgColor theme="6" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="6" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark4" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="secondRowStripe" dxfId="6"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark4>
+ <PivotStyleDark3>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.499984740745262"/>
+ <bgColor theme="5" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="5" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.499984740745262"/>
+ <bgColor theme="5" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="5" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.79998168889431442"/>
+ <bgColor theme="5" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="5" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </left>
+ <right style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.39997558519241921"/>
+ <bgColor theme="5" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.499984740745262"/>
+ <bgColor theme="5" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="-0.499984740745262"/>
+ <bgColor theme="5" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="5"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="5" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="5" tint="0.59999389629810485"/>
+ <bgColor theme="5" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="5" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark3" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="secondRowStripe" dxfId="6"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark3>
+ <PivotStyleDark2>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.499984740745262"/>
+ <bgColor theme="4" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="4" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.499984740745262"/>
+ <bgColor theme="4" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="4" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.79998168889431442"/>
+ <bgColor theme="4" tint="0.79998168889431442"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </top>
+ <bottom style="thin">
+ <color theme="4" tint="0.39997558519241921"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </left>
+ <right style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.39997558519241921"/>
+ <bgColor theme="4" tint="0.39997558519241921"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.499984740745262"/>
+ <bgColor theme="4" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="-0.499984740745262"/>
+ <bgColor theme="4" tint="-0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="4"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="4" tint="-0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="4" tint="0.59999389629810485"/>
+ <bgColor theme="4" tint="0.59999389629810485"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="4" tint="0.79998168889431442"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark2" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="secondRowStripe" dxfId="6"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark2>
+ <PivotStyleDark1>
+ <dxfs count="10">
+ <dxf>
+ <font>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.14999847407452621"/>
+ <bgColor theme="0" tint="-0.14999847407452621"/>
+ </patternFill>
+ </fill>
+ <border>
+ <top style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </top>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="1"/>
+ </font>
+ <border>
+ <bottom style="thin">
+ <color theme="0" tint="-0.34998626667073579"/>
+ </bottom>
+ </border>
+ </dxf>
+ <dxf>
+ <border>
+ <left style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </left>
+ <right style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </right>
+ </border>
+ </dxf>
+ <dxf>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.34998626667073579"/>
+ <bgColor theme="0" tint="-0.34998626667073579"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ </dxf>
+ <dxf>
+ <font>
+ <b/>
+ <color theme="0"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="1" tint="0.499984740745262"/>
+ <bgColor theme="1" tint="0.499984740745262"/>
+ </patternFill>
+ </fill>
+ <border>
+ <bottom style="thin">
+ <color theme="0"/>
+ </bottom>
+ <horizontal style="thin">
+ <color theme="1" tint="0.499984740745262"/>
+ </horizontal>
+ </border>
+ </dxf>
+ <dxf>
+ <font>
+ <color theme="1"/>
+ </font>
+ <fill>
+ <patternFill patternType="solid">
+ <fgColor theme="0" tint="-0.249977111117893"/>
+ <bgColor theme="0" tint="-0.249977111117893"/>
+ </patternFill>
+ </fill>
+ <border>
+ <horizontal style="thin">
+ <color theme="0" tint="-0.14999847407452621"/>
+ </horizontal>
+ </border>
+ </dxf>
+ </dxfs>
+ <tableStyles count="1" defaultTableStyle="TableStyleMedium9" defaultPivotStyle="PivotStyleLight16">
+ <tableStyle name="PivotStyleDark1" table="0" count="10">
+ <tableStyleElement type="wholeTable" dxfId="9"/>
+ <tableStyleElement type="headerRow" dxfId="8"/>
+ <tableStyleElement type="totalRow" dxfId="7"/>
+ <tableStyleElement type="secondRowStripe" dxfId="6"/>
+ <tableStyleElement type="secondColumnStripe" dxfId="5"/>
+ <tableStyleElement type="firstSubtotalRow" dxfId="4"/>
+ <tableStyleElement type="firstRowSubheading" dxfId="3"/>
+ <tableStyleElement type="secondRowSubheading" dxfId="2"/>
+ <tableStyleElement type="pageFieldLabels" dxfId="1"/>
+ <tableStyleElement type="pageFieldValues" dxfId="0"/>
+ </tableStyle>
+ </tableStyles>
+ </PivotStyleDark1>
+</presetTableStyles>
diff --git a/test-data/spreadsheet/tableStyle.xlsx b/test-data/spreadsheet/tableStyle.xlsx
new file mode 100644
index 0000000000..e926287a1d
--- /dev/null
+++ b/test-data/spreadsheet/tableStyle.xlsx
Binary files differ
diff --git a/test-data/spreadsheet/~$tableStyle.xlsx b/test-data/spreadsheet/~$tableStyle.xlsx
new file mode 100644
index 0000000000..6b2e003e92
--- /dev/null
+++ b/test-data/spreadsheet/~$tableStyle.xlsx
Binary files differ