Merge branch 'feat/fods'
This commit is contained in:
commit
3e8999ae79
|
|
@ -1,28 +1,14 @@
|
||||||
"""Imports an ods file into a DataFrame object"""
|
"""Imports an ods or fods file into a DataFrame object"""
|
||||||
import ezodf
|
from pathlib import Path
|
||||||
|
|
||||||
from .parsers import ods
|
from .parsers import fods, ods
|
||||||
from .tools import sanitize_df
|
|
||||||
|
|
||||||
|
EXT_MAP = {".ods": ods, ".fods": fods}
|
||||||
|
|
||||||
|
|
||||||
def read_ods(file_or_path, sheet=1, headers=True, columns=None):
|
def read_ods(file_or_path, sheet=1, headers=True, columns=None):
|
||||||
"""
|
loader = EXT_MAP.get(Path(file_or_path).suffix)
|
||||||
This function reads in the provided ods file and converts it to a
|
if not loader:
|
||||||
dictionary. The dictionary is converted to a DataFrame. Trailing empty rows
|
raise ValueError("Unknown filetype.")
|
||||||
and columns are dropped from the DataFrame, before it is returned.
|
return loader.read(file_or_path, sheet, headers=headers, columns=columns)
|
||||||
|
|
||||||
:param file_or_path: str
|
|
||||||
the path to the ODS file
|
|
||||||
:param sheet: int or str, default 1
|
|
||||||
if int, the 1 based index of the sheet to be read in. If str, the name of
|
|
||||||
the sheet to be read in
|
|
||||||
:param header: bool, default True
|
|
||||||
if True, the first row is read in as headers
|
|
||||||
:param columns: list, default None
|
|
||||||
a list of column names to be used as headers
|
|
||||||
:returns: pandas.DataFrame
|
|
||||||
the ODS file as a pandas DataFrame
|
|
||||||
"""
|
|
||||||
doc = ezodf.opendoc(file_or_path)
|
|
||||||
df = ods.load_ods(doc, sheet, headers, columns)
|
|
||||||
return sanitize_df(df)
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,115 @@
|
||||||
|
from collections import defaultdict
|
||||||
|
|
||||||
|
from lxml import etree
|
||||||
|
import pandas as pd
|
||||||
|
|
||||||
|
from ..tools import sanitize_df
|
||||||
|
|
||||||
|
|
||||||
|
BODY_TAG = "office:body"
|
||||||
|
SPREADSHEET_TAG = "office:spreadsheet"
|
||||||
|
OFFICE_KEY = "office"
|
||||||
|
TABLE_KEY = "table"
|
||||||
|
TABLE_TAG = "table:table"
|
||||||
|
TABLE_ROW_TAG = "table:table-row"
|
||||||
|
TABLE_CELL_TAG = "table:table-cell"
|
||||||
|
TABLE_CELL_TEXT_TAG = "text:p"
|
||||||
|
TABLE_CELL_REPEATED_ATTRIB = "number-columns-repeated"
|
||||||
|
VALUE_TYPE_ATTRIB = "value-type"
|
||||||
|
|
||||||
|
|
||||||
|
def get_sheet(spreadsheet, sheet_id):
|
||||||
|
namespaces = spreadsheet.nsmap
|
||||||
|
if isinstance(sheet_id, str):
|
||||||
|
sheet = spreadsheet.find(
|
||||||
|
f"{TABLE_TAG}[@table:name='{sheet_id}']", namespaces=namespaces
|
||||||
|
)
|
||||||
|
if sheet is None:
|
||||||
|
raise KeyError(f"There is no sheet named {sheet_id}.")
|
||||||
|
return sheet
|
||||||
|
tables = spreadsheet.findall(TABLE_TAG, namespaces=namespaces)
|
||||||
|
if sheet_id == 0 or sheet_id > len(tables):
|
||||||
|
raise IndexError(f"There is no sheet at index {sheet_id}.")
|
||||||
|
return tables[sheet_id - 1]
|
||||||
|
|
||||||
|
|
||||||
|
def parse_columns(cells, headers=True, columns=None):
|
||||||
|
orig_columns = cells.pop(0) if headers else None
|
||||||
|
if columns is None:
|
||||||
|
if orig_columns:
|
||||||
|
repeated_val = None
|
||||||
|
columns = []
|
||||||
|
repeated_dict = defaultdict(lambda: 0)
|
||||||
|
for i, col in enumerate(orig_columns):
|
||||||
|
text = col.find(TABLE_CELL_TEXT_TAG, namespaces=col.nsmap)
|
||||||
|
if text is not None:
|
||||||
|
value = text.text
|
||||||
|
elif text is None and repeated_val:
|
||||||
|
value = repeated_val
|
||||||
|
else:
|
||||||
|
value = "unnamed"
|
||||||
|
idx = 1
|
||||||
|
while "{}.{}".format(value, idx) in columns:
|
||||||
|
idx += 1
|
||||||
|
value = f"{value}.{idx}"
|
||||||
|
repeated = col.attrib.get(
|
||||||
|
f"{{{col.nsmap[TABLE_KEY]}}}{TABLE_CELL_REPEATED_ATTRIB}"
|
||||||
|
)
|
||||||
|
if repeated:
|
||||||
|
repeated_dict[value] += 1
|
||||||
|
repeated_val = f"{value}.{repeated_dict[value]}"
|
||||||
|
column = value if value not in columns else f"{value}.{i}"
|
||||||
|
columns.append(column)
|
||||||
|
else:
|
||||||
|
columns = [f"column.{i}" for i in range(len(cells[0]))]
|
||||||
|
return columns, cells
|
||||||
|
|
||||||
|
|
||||||
|
def parse_value(cell):
|
||||||
|
text = cell.find(TABLE_CELL_TEXT_TAG, namespaces=cell.nsmap)
|
||||||
|
is_float = (
|
||||||
|
cell.attrib.get(f"{{{cell.nsmap[OFFICE_KEY]}}}{VALUE_TYPE_ATTRIB}") == "float"
|
||||||
|
)
|
||||||
|
if text is None:
|
||||||
|
return None
|
||||||
|
value = text.text
|
||||||
|
if is_float:
|
||||||
|
return float(value)
|
||||||
|
return value
|
||||||
|
|
||||||
|
|
||||||
|
def load_fods(doc, sheet_id, headers=True, columns=None):
|
||||||
|
if not isinstance(sheet_id, (str, int)):
|
||||||
|
raise ValueError("Sheet id has to be either `str` or `int`")
|
||||||
|
root = doc.getroot()
|
||||||
|
namespaces = root.nsmap
|
||||||
|
spreadsheet = doc.find(BODY_TAG, namespaces=namespaces).find(
|
||||||
|
SPREADSHEET_TAG, namespaces=namespaces
|
||||||
|
)
|
||||||
|
sheet = get_sheet(spreadsheet, sheet_id)
|
||||||
|
rows = sheet.findall(TABLE_ROW_TAG, namespaces=namespaces)
|
||||||
|
allcells = []
|
||||||
|
for row in rows:
|
||||||
|
cells = row.findall(TABLE_CELL_TAG, namespaces=namespaces)
|
||||||
|
allcells.append(cells)
|
||||||
|
columns, values = parse_columns(allcells, headers, columns)
|
||||||
|
data = []
|
||||||
|
for row in values:
|
||||||
|
rowvalues = [parse_value(cell) for cell in row]
|
||||||
|
data.append(rowvalues)
|
||||||
|
final_rows = []
|
||||||
|
for row in data:
|
||||||
|
final_row = []
|
||||||
|
for i in range(len(columns)):
|
||||||
|
if i < len(row):
|
||||||
|
final_row.append(row[i])
|
||||||
|
else:
|
||||||
|
final_row.append(None)
|
||||||
|
final_rows.append(final_row)
|
||||||
|
return pd.DataFrame(final_rows, columns=columns)
|
||||||
|
|
||||||
|
|
||||||
|
def read(file_or_path, sheet=1, headers=True, columns=None):
|
||||||
|
doc = etree.parse(str(file_or_path))
|
||||||
|
df = load_fods(doc, sheet, headers=headers, columns=columns)
|
||||||
|
return sanitize_df(df)
|
||||||
|
|
@ -1,7 +1,10 @@
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
|
|
||||||
|
import ezodf
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
|
|
||||||
|
from ..tools import sanitize_df
|
||||||
|
|
||||||
|
|
||||||
def load_ods(doc, sheet_id, headers=True, columns=None):
|
def load_ods(doc, sheet_id, headers=True, columns=None):
|
||||||
# convert the sheet to a pandas.DataFrame
|
# convert the sheet to a pandas.DataFrame
|
||||||
|
|
@ -51,3 +54,26 @@ def load_ods(doc, sheet_id, headers=True, columns=None):
|
||||||
continue
|
continue
|
||||||
df = pd.DataFrame(df_dict)
|
df = pd.DataFrame(df_dict)
|
||||||
return df
|
return df
|
||||||
|
|
||||||
|
|
||||||
|
def read(file_or_path, sheet=1, headers=True, columns=None):
|
||||||
|
"""
|
||||||
|
This function reads in the provided ods file and converts it to a
|
||||||
|
dictionary. The dictionary is converted to a DataFrame. Trailing empty rows
|
||||||
|
and columns are dropped from the DataFrame, before it is returned.
|
||||||
|
|
||||||
|
:param file_or_path: str
|
||||||
|
the path to the ODS file
|
||||||
|
:param sheet: int or str, default 1
|
||||||
|
if int, the 1 based index of the sheet to be read in. If str, the name of
|
||||||
|
the sheet to be read in
|
||||||
|
:param header: bool, default True
|
||||||
|
if True, the first row is read in as headers
|
||||||
|
:param columns: list, default None
|
||||||
|
a list of column names to be used as headers
|
||||||
|
:returns: pandas.DataFrame
|
||||||
|
the ODS file as a pandas DataFrame
|
||||||
|
"""
|
||||||
|
doc = ezodf.opendoc(file_or_path)
|
||||||
|
df = load_ods(doc, sheet, headers, columns)
|
||||||
|
return sanitize_df(df)
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,451 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
|
||||||
|
<office:meta><meta:initial-creator>Lukas Jansen</meta:initial-creator><meta:creation-date>2019-01-27T03:31:08.931482632</meta:creation-date><dc:date>2019-06-06T11:51:47.467971713</dc:date><dc:creator>Lukas Jansen</dc:creator><meta:editing-duration>PT2M31S</meta:editing-duration><meta:editing-cycles>2</meta:editing-cycles><meta:generator>LibreOffice/7.1.5.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="55" meta:object-count="0"/></office:meta>
|
||||||
|
<office:settings>
|
||||||
|
<config:config-item-set config:name="ooo:view-settings">
|
||||||
|
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaWidth" config:type="int">15185</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaHeight" config:type="int">4967</config:config-item>
|
||||||
|
<config:config-item-map-indexed config:name="Views">
|
||||||
|
<config:config-item-map-entry>
|
||||||
|
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="Tables">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CursorPositionX" config:type="int">7</config:config-item>
|
||||||
|
<config:config-item config:name="CursorPositionY" config:type="int">14</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||||
|
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
<config:config-item config:name="ActiveTable" config:type="string">Sheet1</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1849</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-indexed>
|
||||||
|
</config:config-item-set>
|
||||||
|
<config:config-item-set config:name="ooo:configuration-settings">
|
||||||
|
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterSetup" config:type="base64Binary">jQH+/01GQ0o0OTFEVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNKNDkxRFcAAAAAAAAAAAAAAAAAAAAAAAAWAAMArgAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDSjQ5MURXCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterName" config:type="string">MFCJ491DW</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="ScriptConfiguration">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CodeName" config:type="string">Sheet1</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
</config:config-item-set>
|
||||||
|
</office:settings>
|
||||||
|
<office:scripts>
|
||||||
|
<office:script script:language="ooo:Basic">
|
||||||
|
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||||
|
</office:script>
|
||||||
|
</office:scripts>
|
||||||
|
<office:font-face-decls>
|
||||||
|
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Lohit Devanagari" svg:font-family="'Lohit Devanagari'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC" svg:font-family="'Noto Sans CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC Regular" svg:font-family="'Noto Sans CJK SC Regular'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
</office:font-face-decls>
|
||||||
|
<office:styles>
|
||||||
|
<style:default-style style:family="table-cell">
|
||||||
|
<style:paragraph-properties style:tab-stop-distance="0.4921in"/>
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:language="en" fo:country="NZ" style:font-name-asian="Noto Sans CJK SC Regular" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Lohit Devanagari" style:language-complex="hi" style:country-complex="IN"/>
|
||||||
|
</style:default-style>
|
||||||
|
<number:number-style style:name="N0">
|
||||||
|
<number:number number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:style style:name="Default" style:family="table-cell"/>
|
||||||
|
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||||
|
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||||
|
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||||
|
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#000000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#808080"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#000000" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
</office:styles>
|
||||||
|
<office:automatic-styles>
|
||||||
|
<style:style style:name="co1" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="co2" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="1.3398in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="co3" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="1.972in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ro1" style:family="table-row">
|
||||||
|
<style:table-row-properties style:row-height="0.178in" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||||
|
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||||
|
</style:style>
|
||||||
|
<number:number-style style:name="N2">
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:page-layout style:name="pm1">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in"/>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in"/>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
<style:page-layout style:name="pm2">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
</office:automatic-styles>
|
||||||
|
<office:master-styles>
|
||||||
|
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||||
|
<style:header>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
<style:master-page style:name="Report" style:page-layout-name="pm2">
|
||||||
|
<style:header>
|
||||||
|
<style:region-left>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
|
||||||
|
</style:region-left>
|
||||||
|
<style:region-right>
|
||||||
|
<text:p><text:date style:data-style-name="N2" text:date-value="2021-08-19">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="16:19:19.817255987">00:00:00</text:time></text:p>
|
||||||
|
</style:region-right>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
</office:master-styles>
|
||||||
|
<office:body>
|
||||||
|
<office:spreadsheet>
|
||||||
|
<table:calculation-settings table:automatic-find-labels="false" table:use-regular-expressions="false" table:use-wildcards="true"/>
|
||||||
|
<table:table table:name="Sheet1" table:style-name="ta1">
|
||||||
|
<table:table-column table:style-name="co1" table:default-cell-style-name="Default"/>
|
||||||
|
<table:table-column table:style-name="co2" table:default-cell-style-name="Default"/>
|
||||||
|
<table:table-column table:style-name="co1" table:default-cell-style-name="Default"/>
|
||||||
|
<table:table-column table:style-name="co3" table:default-cell-style-name="Default"/>
|
||||||
|
<table:table-column table:style-name="co1" table:default-cell-style-name="Default"/>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>A</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>B</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>C</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>D</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>E</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="2" calcext:value-type="float">
|
||||||
|
<text:p>2</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="28" calcext:value-type="float">
|
||||||
|
<text:p>28</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="76" calcext:value-type="float">
|
||||||
|
<text:p>76</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="89" calcext:value-type="float">
|
||||||
|
<text:p>89</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="60" calcext:value-type="float">
|
||||||
|
<text:p>60</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="69" calcext:value-type="float">
|
||||||
|
<text:p>69</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="6" calcext:value-type="float">
|
||||||
|
<text:p>6</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="33" calcext:value-type="float">
|
||||||
|
<text:p>33</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="7" calcext:value-type="float">
|
||||||
|
<text:p>7</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="85" calcext:value-type="float">
|
||||||
|
<text:p>85</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="48" calcext:value-type="float">
|
||||||
|
<text:p>48</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="14" calcext:value-type="float">
|
||||||
|
<text:p>14</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="48" calcext:value-type="float">
|
||||||
|
<text:p>48</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="14" calcext:value-type="float">
|
||||||
|
<text:p>14</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="61" calcext:value-type="float">
|
||||||
|
<text:p>61</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="25" calcext:value-type="float">
|
||||||
|
<text:p>25</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="9" calcext:value-type="float">
|
||||||
|
<text:p>9</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="49" calcext:value-type="float">
|
||||||
|
<text:p>49</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="91" calcext:value-type="float">
|
||||||
|
<text:p>91</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="39" calcext:value-type="float">
|
||||||
|
<text:p>39</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="62" calcext:value-type="float">
|
||||||
|
<text:p>62</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="57" calcext:value-type="float">
|
||||||
|
<text:p>57</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="96" calcext:value-type="float">
|
||||||
|
<text:p>96</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="100" calcext:value-type="float">
|
||||||
|
<text:p>100</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="28" calcext:value-type="float">
|
||||||
|
<text:p>28</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="0" calcext:value-type="float">
|
||||||
|
<text:p>0</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="85" calcext:value-type="float">
|
||||||
|
<text:p>85</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="83" calcext:value-type="float">
|
||||||
|
<text:p>83</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="50" calcext:value-type="float">
|
||||||
|
<text:p>50</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="58" calcext:value-type="float">
|
||||||
|
<text:p>58</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="33" calcext:value-type="float">
|
||||||
|
<text:p>33</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="10" calcext:value-type="float">
|
||||||
|
<text:p>10</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="56" calcext:value-type="float">
|
||||||
|
<text:p>56</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="46" calcext:value-type="float">
|
||||||
|
<text:p>46</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="30" calcext:value-type="float">
|
||||||
|
<text:p>30</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="29" calcext:value-type="float">
|
||||||
|
<text:p>29</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="99" calcext:value-type="float">
|
||||||
|
<text:p>99</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="100" calcext:value-type="float">
|
||||||
|
<text:p>100</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="45" calcext:value-type="float">
|
||||||
|
<text:p>45</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="96" calcext:value-type="float">
|
||||||
|
<text:p>96</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="62" calcext:value-type="float">
|
||||||
|
<text:p>62</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="37" calcext:value-type="float">
|
||||||
|
<text:p>37</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="16" calcext:value-type="float">
|
||||||
|
<text:p>16</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="37" calcext:value-type="float">
|
||||||
|
<text:p>37</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="51" calcext:value-type="float">
|
||||||
|
<text:p>51</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="13" calcext:value-type="float">
|
||||||
|
<text:p>13</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="48" calcext:value-type="float">
|
||||||
|
<text:p>48</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="71" calcext:value-type="float">
|
||||||
|
<text:p>71</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="5" calcext:value-type="float">
|
||||||
|
<text:p>5</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="34" calcext:value-type="float">
|
||||||
|
<text:p>34</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
</table:table>
|
||||||
|
<table:named-expressions/>
|
||||||
|
</office:spreadsheet>
|
||||||
|
</office:body>
|
||||||
|
</office:document>
|
||||||
|
|
@ -0,0 +1,485 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
|
||||||
|
<office:meta><meta:creation-date>2019-05-31T10:36:15.918799164</meta:creation-date><dc:date>2019-06-06T14:41:16.030513765</dc:date><meta:editing-duration>PT16H2M57S</meta:editing-duration><meta:editing-cycles>244</meta:editing-cycles><meta:generator>LibreOffice/7.1.5.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="12" meta:object-count="0"/></office:meta>
|
||||||
|
<office:settings>
|
||||||
|
<config:config-item-set config:name="ooo:view-settings">
|
||||||
|
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaWidth" config:type="int">9133</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaHeight" config:type="int">1806</config:config-item>
|
||||||
|
<config:config-item-map-indexed config:name="Views">
|
||||||
|
<config:config-item-map-entry>
|
||||||
|
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="Tables">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CursorPositionX" config:type="int">2</config:config-item>
|
||||||
|
<config:config-item config:name="CursorPositionY" config:type="int">6</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||||
|
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionRight" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
<config:config-item config:name="ActiveTable" config:type="string">Sheet1</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1849</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-indexed>
|
||||||
|
</config:config-item-set>
|
||||||
|
<config:config-item-set config:name="ooo:configuration-settings">
|
||||||
|
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterSetup" config:type="base64Binary">jQH+/01GQ0o0OTFEVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNKNDkxRFcAAAAAAAAAAAAAAAAAAAAAAAAWAAMArgAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDSjQ5MURXCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item-map-indexed config:name="ForbiddenCharacters">
|
||||||
|
<config:config-item-map-entry>
|
||||||
|
<config:config-item config:name="Language" config:type="string">en</config:config-item>
|
||||||
|
<config:config-item config:name="Country" config:type="string">GB</config:config-item>
|
||||||
|
<config:config-item config:name="Variant" config:type="string"/>
|
||||||
|
<config:config-item config:name="BeginLine" config:type="string"/>
|
||||||
|
<config:config-item config:name="EndLine" config:type="string"/>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-indexed>
|
||||||
|
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterName" config:type="string">MFCJ491DW</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="ScriptConfiguration">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CodeName" config:type="string">Sheet1</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
</config:config-item-set>
|
||||||
|
</office:settings>
|
||||||
|
<office:scripts>
|
||||||
|
<office:script script:language="ooo:Basic">
|
||||||
|
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||||
|
</office:script>
|
||||||
|
</office:scripts>
|
||||||
|
<office:font-face-decls>
|
||||||
|
<style:font-face style:name="Calibri" svg:font-family="Calibri" style:font-family-generic="swiss"/>
|
||||||
|
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Arial Unicode MS" svg:font-family="'Arial Unicode MS'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC" svg:font-family="'Noto Sans CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="PingFang SC" svg:font-family="'PingFang SC'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
</office:font-face-decls>
|
||||||
|
<office:styles>
|
||||||
|
<style:default-style style:family="table-cell">
|
||||||
|
<style:paragraph-properties style:tab-stop-distance="0.4921in"/>
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:language="en" fo:country="GB" style:font-name-asian="PingFang SC" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Arial Unicode MS" style:language-complex="hi" style:country-complex="IN"/>
|
||||||
|
</style:default-style>
|
||||||
|
<number:number-style style:name="N0">
|
||||||
|
<number:number number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N121P0" style:volatile="true">
|
||||||
|
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N121">
|
||||||
|
<number:text>-</number:text>
|
||||||
|
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
<style:map style:condition="value()>=0" style:apply-style-name="N121P0"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N122P0" style:volatile="true">
|
||||||
|
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N122">
|
||||||
|
<style:text-properties fo:color="#ff0000"/>
|
||||||
|
<number:text>-</number:text>
|
||||||
|
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
<style:map style:condition="value()>=0" style:apply-style-name="N122P0"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N123P0" style:volatile="true">
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N123">
|
||||||
|
<number:text>-</number:text>
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
<style:map style:condition="value()>=0" style:apply-style-name="N123P0"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N124P0" style:volatile="true">
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N124">
|
||||||
|
<style:text-properties fo:color="#ff0000"/>
|
||||||
|
<number:text>-</number:text>
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
<style:map style:condition="value()>=0" style:apply-style-name="N124P0"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N128P0" style:volatile="true">
|
||||||
|
<number:text> </number:text>
|
||||||
|
<number:fill-character> </number:fill-character>
|
||||||
|
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
<number:text> </number:text>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N128P1" style:volatile="true">
|
||||||
|
<number:text>-</number:text>
|
||||||
|
<number:fill-character> </number:fill-character>
|
||||||
|
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
<number:text> </number:text>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N128P2" style:volatile="true">
|
||||||
|
<number:text> </number:text>
|
||||||
|
<number:fill-character> </number:fill-character>
|
||||||
|
<number:text>- </number:text>
|
||||||
|
</number:number-style>
|
||||||
|
<number:text-style style:name="N128">
|
||||||
|
<number:text> </number:text>
|
||||||
|
<number:text-content/>
|
||||||
|
<number:text> </number:text>
|
||||||
|
<style:map style:condition="value()>0" style:apply-style-name="N128P0"/>
|
||||||
|
<style:map style:condition="value()<0" style:apply-style-name="N128P1"/>
|
||||||
|
<style:map style:condition="value()=0" style:apply-style-name="N128P2"/>
|
||||||
|
</number:text-style>
|
||||||
|
<number:number-style style:name="N132P0" style:volatile="true">
|
||||||
|
<number:text> </number:text>
|
||||||
|
<number:fill-character> </number:fill-character>
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
<number:text> </number:text>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N132P1" style:volatile="true">
|
||||||
|
<number:text>-</number:text>
|
||||||
|
<number:fill-character> </number:fill-character>
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1" number:grouping="true"/>
|
||||||
|
<number:text> </number:text>
|
||||||
|
</number:number-style>
|
||||||
|
<number:number-style style:name="N132P2" style:volatile="true">
|
||||||
|
<number:text> </number:text>
|
||||||
|
<number:fill-character> </number:fill-character>
|
||||||
|
<number:text>-</number:text>
|
||||||
|
<number:number number:decimal-places="0" number:min-decimal-places="0" number:min-integer-digits="0"/>
|
||||||
|
<number:text> </number:text>
|
||||||
|
</number:number-style>
|
||||||
|
<number:text-style style:name="N132">
|
||||||
|
<number:text> </number:text>
|
||||||
|
<number:text-content/>
|
||||||
|
<number:text> </number:text>
|
||||||
|
<style:map style:condition="value()>0" style:apply-style-name="N132P0"/>
|
||||||
|
<style:map style:condition="value()<0" style:apply-style-name="N132P1"/>
|
||||||
|
<style:map style:condition="value()=0" style:apply-style-name="N132P2"/>
|
||||||
|
</number:text-style>
|
||||||
|
<number:time-style style:name="N133">
|
||||||
|
<number:minutes number:style="long"/>
|
||||||
|
<number:text>:</number:text>
|
||||||
|
<number:seconds number:style="long"/>
|
||||||
|
</number:time-style>
|
||||||
|
<number:time-style style:name="N134" number:truncate-on-overflow="false">
|
||||||
|
<number:hours/>
|
||||||
|
<number:text>:</number:text>
|
||||||
|
<number:minutes number:style="long"/>
|
||||||
|
<number:text>:</number:text>
|
||||||
|
<number:seconds number:style="long"/>
|
||||||
|
</number:time-style>
|
||||||
|
<number:time-style style:name="N135">
|
||||||
|
<number:minutes number:style="long"/>
|
||||||
|
<number:text>:</number:text>
|
||||||
|
<number:seconds number:style="long" number:decimal-places="1"/>
|
||||||
|
</number:time-style>
|
||||||
|
<number:number-style style:name="N136">
|
||||||
|
<number:scientific-number number:decimal-places="1" number:min-decimal-places="1" number:min-integer-digits="1" number:min-exponent-digits="1" number:exponent-interval="3" number:forced-exponent-sign="true"/>
|
||||||
|
</number:number-style>
|
||||||
|
<number:date-style style:name="N137">
|
||||||
|
<number:year number:style="long"/>
|
||||||
|
<number:text>/</number:text>
|
||||||
|
<number:month number:style="long"/>
|
||||||
|
<number:text>/</number:text>
|
||||||
|
<number:day number:style="long"/>
|
||||||
|
</number:date-style>
|
||||||
|
<number:date-style style:name="N138P0" style:volatile="true">
|
||||||
|
<number:year number:style="long"/>
|
||||||
|
<number:text>-</number:text>
|
||||||
|
<number:month number:style="long"/>
|
||||||
|
<number:text>-</number:text>
|
||||||
|
<number:day number:style="long"/>
|
||||||
|
</number:date-style>
|
||||||
|
<number:text-style style:name="N138">
|
||||||
|
<number:text-content/>
|
||||||
|
<style:map style:condition="value()<=1.7976931348623157E+308" style:apply-style-name="N138P0"/>
|
||||||
|
</number:text-style>
|
||||||
|
<style:style style:name="Default" style:family="table-cell"/>
|
||||||
|
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||||
|
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||||
|
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||||
|
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#000000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#808080"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#000000" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Excel_20_Built-in_20_Neutral" style:display-name="Excel Built-in Neutral" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffeb9c"/>
|
||||||
|
<style:text-properties fo:color="#9c5700" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Calibri" fo:font-family="Calibri" style:font-family-generic="swiss" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Excel_20_Built-in_20_Good" style:display-name="Excel Built-in Good" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:table-cell-properties fo:background-color="#c6efce"/>
|
||||||
|
<style:text-properties fo:color="#006100" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Calibri" fo:font-family="Calibri" style:font-family-generic="swiss" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Excel_20_Built-in_20_Bad" style:display-name="Excel Built-in Bad" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffc7ce"/>
|
||||||
|
<style:text-properties fo:color="#9c0006" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Calibri" fo:font-family="Calibri" style:font-family-generic="swiss" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Excel_20_Built-in_20_Hyperlink" style:display-name="Excel Built-in Hyperlink" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#0000ff" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Calibri" fo:font-family="Calibri" style:font-family-generic="swiss" fo:font-size="12pt" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="normal" style:font-size-asian="12pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
|
||||||
|
</style:style>
|
||||||
|
</office:styles>
|
||||||
|
<office:automatic-styles>
|
||||||
|
<style:style style:name="co1" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="0.9638in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="co2" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="1.022in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="co3" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="0.8047in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="co4" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ro1" style:family="table-row">
|
||||||
|
<style:table-row-properties style:row-height="0.178in" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||||
|
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||||
|
</style:style>
|
||||||
|
<number:number-style style:name="N2">
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:style style:name="ce14" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffd428"/>
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ce16" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ce3" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffd428"/>
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ce4" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt"/>
|
||||||
|
</style:style>
|
||||||
|
<style:page-layout style:name="pm1">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in"/>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in"/>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
<style:page-layout style:name="pm2">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
</office:automatic-styles>
|
||||||
|
<office:master-styles>
|
||||||
|
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||||
|
<style:header>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
<style:master-page style:name="Report" style:page-layout-name="pm2">
|
||||||
|
<style:header>
|
||||||
|
<style:region-left>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
|
||||||
|
</style:region-left>
|
||||||
|
<style:region-right>
|
||||||
|
<text:p><text:date style:data-style-name="N2" text:date-value="2021-08-19">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="16:19:40.862495905">00:00:00</text:time></text:p>
|
||||||
|
</style:region-right>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
</office:master-styles>
|
||||||
|
<office:body>
|
||||||
|
<office:spreadsheet>
|
||||||
|
<table:calculation-settings table:automatic-find-labels="false" table:use-regular-expressions="false" table:use-wildcards="true"/>
|
||||||
|
<table:table table:name="Sheet1" table:style-name="ta1">
|
||||||
|
<office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
|
||||||
|
<table:table-column table:style-name="co1" table:default-cell-style-name="ce4"/>
|
||||||
|
<table:table-column table:style-name="co2" table:default-cell-style-name="ce4"/>
|
||||||
|
<table:table-column table:style-name="co3" table:number-columns-repeated="2" table:default-cell-style-name="ce4"/>
|
||||||
|
<table:table-column table:style-name="co4" table:number-columns-repeated="996" table:default-cell-style-name="ce4"/>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:style-name="ce3" office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>ID</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:style-name="ce3" office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>name</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:number-columns-repeated="2" table:style-name="ce3" office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>website</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:style-name="ce3" table:number-columns-repeated="996"/>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>Acto_1</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>W</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>sitea</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:number-columns-repeated="997"/>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>Acto_2</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>D</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell/>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>siteb</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:number-columns-repeated="996"/>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>Acto_3</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>S</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:number-columns-repeated="998"/>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1" table:number-rows-repeated="1048571">
|
||||||
|
<table:table-cell table:number-columns-repeated="1000"/>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:number-columns-repeated="1000"/>
|
||||||
|
</table:table-row>
|
||||||
|
</table:table>
|
||||||
|
<table:named-expressions/>
|
||||||
|
<table:database-ranges>
|
||||||
|
<table:database-range table:name="__Anonymous_Sheet_DB__0" table:target-range-address="Sheet1.A1:Sheet1.D127" table:orientation="column"/>
|
||||||
|
</table:database-ranges>
|
||||||
|
</office:spreadsheet>
|
||||||
|
</office:body>
|
||||||
|
</office:document>
|
||||||
|
|
@ -0,0 +1,441 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
|
||||||
|
<office:meta><meta:initial-creator>Lukas Jansen</meta:initial-creator><meta:creation-date>2019-01-27T03:31:08.931482632</meta:creation-date><dc:date>2019-01-27T03:33:20.620959045</dc:date><dc:creator>Lukas Jansen</dc:creator><meta:editing-duration>PT2M14S</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/7.1.4.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="55" meta:object-count="0"/></office:meta>
|
||||||
|
<office:settings>
|
||||||
|
<config:config-item-set config:name="ooo:view-settings">
|
||||||
|
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaWidth" config:type="int">11288</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaHeight" config:type="int">4967</config:config-item>
|
||||||
|
<config:config-item-map-indexed config:name="Views">
|
||||||
|
<config:config-item-map-entry>
|
||||||
|
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="Tables">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CursorPositionX" config:type="int">6</config:config-item>
|
||||||
|
<config:config-item config:name="CursorPositionY" config:type="int">20</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||||
|
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
<config:config-item config:name="ActiveTable" config:type="string">Sheet1</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1849</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-indexed>
|
||||||
|
</config:config-item-set>
|
||||||
|
<config:config-item-set config:name="ooo:configuration-settings">
|
||||||
|
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterSetup" config:type="base64Binary">jQH+/01GQ0o0OTFEVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNKNDkxRFcAAAAAAAAAAAAAAAAAAAAAAAAWAAMArgAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDSjQ5MURXCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterName" config:type="string">MFCJ491DW</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="ScriptConfiguration">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CodeName" config:type="string">Sheet1</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
</config:config-item-set>
|
||||||
|
</office:settings>
|
||||||
|
<office:scripts>
|
||||||
|
<office:script script:language="ooo:Basic">
|
||||||
|
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||||
|
</office:script>
|
||||||
|
</office:scripts>
|
||||||
|
<office:font-face-decls>
|
||||||
|
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Lohit Devanagari" svg:font-family="'Lohit Devanagari'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC" svg:font-family="'Noto Sans CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC Regular" svg:font-family="'Noto Sans CJK SC Regular'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
</office:font-face-decls>
|
||||||
|
<office:styles>
|
||||||
|
<style:default-style style:family="table-cell">
|
||||||
|
<style:paragraph-properties style:tab-stop-distance="0.4921in"/>
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:language="en" fo:country="NZ" style:font-name-asian="Noto Sans CJK SC Regular" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Lohit Devanagari" style:language-complex="hi" style:country-complex="IN"/>
|
||||||
|
</style:default-style>
|
||||||
|
<number:number-style style:name="N0">
|
||||||
|
<number:number number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:style style:name="Default" style:family="table-cell"/>
|
||||||
|
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||||
|
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||||
|
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||||
|
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#000000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#808080"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#000000" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
</office:styles>
|
||||||
|
<office:automatic-styles>
|
||||||
|
<style:style style:name="co1" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ro1" style:family="table-row">
|
||||||
|
<style:table-row-properties style:row-height="0.178in" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||||
|
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||||
|
</style:style>
|
||||||
|
<number:number-style style:name="N2">
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:page-layout style:name="pm1">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in"/>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in"/>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
<style:page-layout style:name="pm2">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
</office:automatic-styles>
|
||||||
|
<office:master-styles>
|
||||||
|
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||||
|
<style:header>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
<style:master-page style:name="Report" style:page-layout-name="pm2">
|
||||||
|
<style:header>
|
||||||
|
<style:region-left>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
|
||||||
|
</style:region-left>
|
||||||
|
<style:region-right>
|
||||||
|
<text:p><text:date style:data-style-name="N2" text:date-value="2021-08-18">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="17:39:31.700350682">00:00:00</text:time></text:p>
|
||||||
|
</style:region-right>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
</office:master-styles>
|
||||||
|
<office:body>
|
||||||
|
<office:spreadsheet>
|
||||||
|
<table:calculation-settings table:automatic-find-labels="false" table:use-regular-expressions="false" table:use-wildcards="true"/>
|
||||||
|
<table:table table:name="Sheet1" table:style-name="ta1">
|
||||||
|
<table:table-column table:style-name="co1" table:number-columns-repeated="5" table:default-cell-style-name="Default"/>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>A</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>B</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>C</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>D</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>E</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="62" calcext:value-type="float">
|
||||||
|
<text:p>62</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="22" calcext:value-type="float">
|
||||||
|
<text:p>22</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="83" calcext:value-type="float">
|
||||||
|
<text:p>83</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="35" calcext:value-type="float">
|
||||||
|
<text:p>35</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="35" calcext:value-type="float">
|
||||||
|
<text:p>35</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="100" calcext:value-type="float">
|
||||||
|
<text:p>100</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="56" calcext:value-type="float">
|
||||||
|
<text:p>56</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="91" calcext:value-type="float">
|
||||||
|
<text:p>91</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="29" calcext:value-type="float">
|
||||||
|
<text:p>29</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="57" calcext:value-type="float">
|
||||||
|
<text:p>57</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="11" calcext:value-type="float">
|
||||||
|
<text:p>11</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="71" calcext:value-type="float">
|
||||||
|
<text:p>71</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="68" calcext:value-type="float">
|
||||||
|
<text:p>68</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="53" calcext:value-type="float">
|
||||||
|
<text:p>53</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="32" calcext:value-type="float">
|
||||||
|
<text:p>32</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="84" calcext:value-type="float">
|
||||||
|
<text:p>84</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="26" calcext:value-type="float">
|
||||||
|
<text:p>26</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="3" calcext:value-type="float">
|
||||||
|
<text:p>3</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="21" calcext:value-type="float">
|
||||||
|
<text:p>21</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="17" calcext:value-type="float">
|
||||||
|
<text:p>17</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="11" calcext:value-type="float">
|
||||||
|
<text:p>11</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="56" calcext:value-type="float">
|
||||||
|
<text:p>56</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="26" calcext:value-type="float">
|
||||||
|
<text:p>26</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="25" calcext:value-type="float">
|
||||||
|
<text:p>25</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="30" calcext:value-type="float">
|
||||||
|
<text:p>30</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="61" calcext:value-type="float">
|
||||||
|
<text:p>61</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="3" calcext:value-type="float">
|
||||||
|
<text:p>3</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="35" calcext:value-type="float">
|
||||||
|
<text:p>35</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="98" calcext:value-type="float">
|
||||||
|
<text:p>98</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="62" calcext:value-type="float">
|
||||||
|
<text:p>62</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="22" calcext:value-type="float">
|
||||||
|
<text:p>22</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="96" calcext:value-type="float">
|
||||||
|
<text:p>96</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="10" calcext:value-type="float">
|
||||||
|
<text:p>10</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="53" calcext:value-type="float">
|
||||||
|
<text:p>53</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="34" calcext:value-type="float">
|
||||||
|
<text:p>34</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="25" calcext:value-type="float">
|
||||||
|
<text:p>25</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="33" calcext:value-type="float">
|
||||||
|
<text:p>33</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="86" calcext:value-type="float">
|
||||||
|
<text:p>86</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="38" calcext:value-type="float">
|
||||||
|
<text:p>38</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="89" calcext:value-type="float">
|
||||||
|
<text:p>89</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="25" calcext:value-type="float">
|
||||||
|
<text:p>25</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="93" calcext:value-type="float">
|
||||||
|
<text:p>93</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="31" calcext:value-type="float">
|
||||||
|
<text:p>31</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="72" calcext:value-type="float">
|
||||||
|
<text:p>72</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="60" calcext:value-type="float">
|
||||||
|
<text:p>60</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="19" calcext:value-type="float">
|
||||||
|
<text:p>19</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="64" calcext:value-type="float">
|
||||||
|
<text:p>64</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="42" calcext:value-type="float">
|
||||||
|
<text:p>42</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="38" calcext:value-type="float">
|
||||||
|
<text:p>38</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="28" calcext:value-type="float">
|
||||||
|
<text:p>28</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
</table:table>
|
||||||
|
<table:named-expressions/>
|
||||||
|
</office:spreadsheet>
|
||||||
|
</office:body>
|
||||||
|
</office:document>
|
||||||
|
|
@ -0,0 +1,439 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
|
||||||
|
<office:meta><meta:initial-creator>Lukas Jansen</meta:initial-creator><meta:creation-date>2019-01-27T03:31:08.931482632</meta:creation-date><dc:date>2019-06-08T15:24:55.731863115</dc:date><dc:creator>Lukas Jansen</dc:creator><meta:editing-duration>PT4M44S</meta:editing-duration><meta:editing-cycles>2</meta:editing-cycles><meta:generator>LibreOffice/7.1.5.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="54" meta:object-count="0"/></office:meta>
|
||||||
|
<office:settings>
|
||||||
|
<config:config-item-set config:name="ooo:view-settings">
|
||||||
|
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaWidth" config:type="int">11288</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaHeight" config:type="int">4967</config:config-item>
|
||||||
|
<config:config-item-map-indexed config:name="Views">
|
||||||
|
<config:config-item-map-entry>
|
||||||
|
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="Tables">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CursorPositionX" config:type="int">7</config:config-item>
|
||||||
|
<config:config-item config:name="CursorPositionY" config:type="int">9</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||||
|
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
<config:config-item config:name="ActiveTable" config:type="string">Sheet1</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1849</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-indexed>
|
||||||
|
</config:config-item-set>
|
||||||
|
<config:config-item-set config:name="ooo:configuration-settings">
|
||||||
|
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterSetup" config:type="base64Binary">jQH+/01GQ0o0OTFEVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNKNDkxRFcAAAAAAAAAAAAAAAAAAAAAAAAWAAMArgAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDSjQ5MURXCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterName" config:type="string">MFCJ491DW</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="ScriptConfiguration">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CodeName" config:type="string">Sheet1</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
</config:config-item-set>
|
||||||
|
</office:settings>
|
||||||
|
<office:scripts>
|
||||||
|
<office:script script:language="ooo:Basic">
|
||||||
|
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||||
|
</office:script>
|
||||||
|
</office:scripts>
|
||||||
|
<office:font-face-decls>
|
||||||
|
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Lohit Devanagari" svg:font-family="'Lohit Devanagari'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC" svg:font-family="'Noto Sans CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC Regular" svg:font-family="'Noto Sans CJK SC Regular'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
</office:font-face-decls>
|
||||||
|
<office:styles>
|
||||||
|
<style:default-style style:family="table-cell">
|
||||||
|
<style:paragraph-properties style:tab-stop-distance="0.4921in"/>
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:language="en" fo:country="NZ" style:font-name-asian="Noto Sans CJK SC Regular" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Lohit Devanagari" style:language-complex="hi" style:country-complex="IN"/>
|
||||||
|
</style:default-style>
|
||||||
|
<number:number-style style:name="N0">
|
||||||
|
<number:number number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:style style:name="Default" style:family="table-cell"/>
|
||||||
|
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||||
|
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||||
|
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||||
|
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#000000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#808080"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#000000" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
</office:styles>
|
||||||
|
<office:automatic-styles>
|
||||||
|
<style:style style:name="co1" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ro1" style:family="table-row">
|
||||||
|
<style:table-row-properties style:row-height="0.178in" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||||
|
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||||
|
</style:style>
|
||||||
|
<number:number-style style:name="N2">
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:page-layout style:name="pm1">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in"/>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in"/>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
<style:page-layout style:name="pm2">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
</office:automatic-styles>
|
||||||
|
<office:master-styles>
|
||||||
|
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||||
|
<style:header>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
<style:master-page style:name="Report" style:page-layout-name="pm2">
|
||||||
|
<style:header>
|
||||||
|
<style:region-left>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
|
||||||
|
</style:region-left>
|
||||||
|
<style:region-right>
|
||||||
|
<text:p><text:date style:data-style-name="N2" text:date-value="2021-08-19">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="16:20:08.918894143">00:00:00</text:time></text:p>
|
||||||
|
</style:region-right>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
</office:master-styles>
|
||||||
|
<office:body>
|
||||||
|
<office:spreadsheet>
|
||||||
|
<table:calculation-settings table:automatic-find-labels="false" table:use-regular-expressions="false" table:use-wildcards="true"/>
|
||||||
|
<table:table table:name="Sheet1" table:style-name="ta1">
|
||||||
|
<table:table-column table:style-name="co1" table:number-columns-repeated="5" table:default-cell-style-name="Default"/>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>A</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>B</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell/>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>D</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>E</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="71" calcext:value-type="float">
|
||||||
|
<text:p>71</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="19" calcext:value-type="float">
|
||||||
|
<text:p>19</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="21" calcext:value-type="float">
|
||||||
|
<text:p>21</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="73" calcext:value-type="float">
|
||||||
|
<text:p>73</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="47" calcext:value-type="float">
|
||||||
|
<text:p>47</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="19" calcext:value-type="float">
|
||||||
|
<text:p>19</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="67" calcext:value-type="float">
|
||||||
|
<text:p>67</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="7" calcext:value-type="float">
|
||||||
|
<text:p>7</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="51" calcext:value-type="float">
|
||||||
|
<text:p>51</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="26" calcext:value-type="float">
|
||||||
|
<text:p>26</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="20" calcext:value-type="float">
|
||||||
|
<text:p>20</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="57" calcext:value-type="float">
|
||||||
|
<text:p>57</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="29" calcext:value-type="float">
|
||||||
|
<text:p>29</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="69" calcext:value-type="float">
|
||||||
|
<text:p>69</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="27" calcext:value-type="float">
|
||||||
|
<text:p>27</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="17" calcext:value-type="float">
|
||||||
|
<text:p>17</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="91" calcext:value-type="float">
|
||||||
|
<text:p>91</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="73" calcext:value-type="float">
|
||||||
|
<text:p>73</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="3" calcext:value-type="float">
|
||||||
|
<text:p>3</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="45" calcext:value-type="float">
|
||||||
|
<text:p>45</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="35" calcext:value-type="float">
|
||||||
|
<text:p>35</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="40" calcext:value-type="float">
|
||||||
|
<text:p>40</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="41" calcext:value-type="float">
|
||||||
|
<text:p>41</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="66" calcext:value-type="float">
|
||||||
|
<text:p>66</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="35" calcext:value-type="float">
|
||||||
|
<text:p>35</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="17" calcext:value-type="float">
|
||||||
|
<text:p>17</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="21" calcext:value-type="float">
|
||||||
|
<text:p>21</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="14" calcext:value-type="float">
|
||||||
|
<text:p>14</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="0" calcext:value-type="float">
|
||||||
|
<text:p>0</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="0" calcext:value-type="float">
|
||||||
|
<text:p>0</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="45" calcext:value-type="float">
|
||||||
|
<text:p>45</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="72" calcext:value-type="float">
|
||||||
|
<text:p>72</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="32" calcext:value-type="float">
|
||||||
|
<text:p>32</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="21" calcext:value-type="float">
|
||||||
|
<text:p>21</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="47" calcext:value-type="float">
|
||||||
|
<text:p>47</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="29" calcext:value-type="float">
|
||||||
|
<text:p>29</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="90" calcext:value-type="float">
|
||||||
|
<text:p>90</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="21" calcext:value-type="float">
|
||||||
|
<text:p>21</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="82" calcext:value-type="float">
|
||||||
|
<text:p>82</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="5" calcext:value-type="float">
|
||||||
|
<text:p>5</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="94" calcext:value-type="float">
|
||||||
|
<text:p>94</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="49" calcext:value-type="float">
|
||||||
|
<text:p>49</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="5" calcext:value-type="float">
|
||||||
|
<text:p>5</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="22" calcext:value-type="float">
|
||||||
|
<text:p>22</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="54" calcext:value-type="float">
|
||||||
|
<text:p>54</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="59" calcext:value-type="float">
|
||||||
|
<text:p>59</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="8" calcext:value-type="float">
|
||||||
|
<text:p>8</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="11" calcext:value-type="float">
|
||||||
|
<text:p>11</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="56" calcext:value-type="float">
|
||||||
|
<text:p>56</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="81" calcext:value-type="float">
|
||||||
|
<text:p>81</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
</table:table>
|
||||||
|
<table:named-expressions/>
|
||||||
|
</office:spreadsheet>
|
||||||
|
</office:body>
|
||||||
|
</office:document>
|
||||||
|
|
@ -0,0 +1,424 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
|
||||||
|
<office:meta><meta:initial-creator>Lukas Jansen</meta:initial-creator><meta:creation-date>2019-01-27T03:31:08.931482632</meta:creation-date><dc:date>2019-01-27T03:33:44.899304723</dc:date><dc:creator>Lukas Jansen</dc:creator><meta:editing-duration>PT2M38S</meta:editing-duration><meta:editing-cycles>2</meta:editing-cycles><meta:generator>LibreOffice/7.1.5.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="50" meta:object-count="0"/></office:meta>
|
||||||
|
<office:settings>
|
||||||
|
<config:config-item-set config:name="ooo:view-settings">
|
||||||
|
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaWidth" config:type="int">11288</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaHeight" config:type="int">4515</config:config-item>
|
||||||
|
<config:config-item-map-indexed config:name="Views">
|
||||||
|
<config:config-item-map-entry>
|
||||||
|
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="Tables">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CursorPositionX" config:type="int">2</config:config-item>
|
||||||
|
<config:config-item config:name="CursorPositionY" config:type="int">10</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||||
|
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
<config:config-item config:name="ActiveTable" config:type="string">Sheet1</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1849</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-indexed>
|
||||||
|
</config:config-item-set>
|
||||||
|
<config:config-item-set config:name="ooo:configuration-settings">
|
||||||
|
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterSetup" config:type="base64Binary">jQH+/01GQ0o0OTFEVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNKNDkxRFcAAAAAAAAAAAAAAAAAAAAAAAAWAAMArgAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDSjQ5MURXCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterName" config:type="string">MFCJ491DW</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="ScriptConfiguration">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CodeName" config:type="string">Sheet1</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
</config:config-item-set>
|
||||||
|
</office:settings>
|
||||||
|
<office:scripts>
|
||||||
|
<office:script script:language="ooo:Basic">
|
||||||
|
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||||
|
</office:script>
|
||||||
|
</office:scripts>
|
||||||
|
<office:font-face-decls>
|
||||||
|
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Lohit Devanagari" svg:font-family="'Lohit Devanagari'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC" svg:font-family="'Noto Sans CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC Regular" svg:font-family="'Noto Sans CJK SC Regular'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
</office:font-face-decls>
|
||||||
|
<office:styles>
|
||||||
|
<style:default-style style:family="table-cell">
|
||||||
|
<style:paragraph-properties style:tab-stop-distance="0.4921in"/>
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:language="en" fo:country="NZ" style:font-name-asian="Noto Sans CJK SC Regular" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Lohit Devanagari" style:language-complex="hi" style:country-complex="IN"/>
|
||||||
|
</style:default-style>
|
||||||
|
<number:number-style style:name="N0">
|
||||||
|
<number:number number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:style style:name="Default" style:family="table-cell"/>
|
||||||
|
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||||
|
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||||
|
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||||
|
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#000000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#808080"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#000000" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
</office:styles>
|
||||||
|
<office:automatic-styles>
|
||||||
|
<style:style style:name="co1" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ro1" style:family="table-row">
|
||||||
|
<style:table-row-properties style:row-height="0.178in" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||||
|
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||||
|
</style:style>
|
||||||
|
<number:number-style style:name="N2">
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:page-layout style:name="pm1">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in"/>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in"/>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
<style:page-layout style:name="pm2">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
</office:automatic-styles>
|
||||||
|
<office:master-styles>
|
||||||
|
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||||
|
<style:header>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
<style:master-page style:name="Report" style:page-layout-name="pm2">
|
||||||
|
<style:header>
|
||||||
|
<style:region-left>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
|
||||||
|
</style:region-left>
|
||||||
|
<style:region-right>
|
||||||
|
<text:p><text:date style:data-style-name="N2" text:date-value="2021-08-19">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="16:20:20.415085136">00:00:00</text:time></text:p>
|
||||||
|
</style:region-right>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
</office:master-styles>
|
||||||
|
<office:body>
|
||||||
|
<office:spreadsheet>
|
||||||
|
<table:calculation-settings table:automatic-find-labels="false" table:use-regular-expressions="false" table:use-wildcards="true"/>
|
||||||
|
<table:table table:name="Sheet1" table:style-name="ta1">
|
||||||
|
<table:table-column table:style-name="co1" table:number-columns-repeated="5" table:default-cell-style-name="Default"/>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="37" calcext:value-type="float">
|
||||||
|
<text:p>37</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="94" calcext:value-type="float">
|
||||||
|
<text:p>94</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="39" calcext:value-type="float">
|
||||||
|
<text:p>39</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="85" calcext:value-type="float">
|
||||||
|
<text:p>85</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="32" calcext:value-type="float">
|
||||||
|
<text:p>32</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="66" calcext:value-type="float">
|
||||||
|
<text:p>66</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="11" calcext:value-type="float">
|
||||||
|
<text:p>11</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="99" calcext:value-type="float">
|
||||||
|
<text:p>99</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="27" calcext:value-type="float">
|
||||||
|
<text:p>27</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="41" calcext:value-type="float">
|
||||||
|
<text:p>41</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="92" calcext:value-type="float">
|
||||||
|
<text:p>92</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="80" calcext:value-type="float">
|
||||||
|
<text:p>80</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="57" calcext:value-type="float">
|
||||||
|
<text:p>57</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="57" calcext:value-type="float">
|
||||||
|
<text:p>57</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="90" calcext:value-type="float">
|
||||||
|
<text:p>90</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="47" calcext:value-type="float">
|
||||||
|
<text:p>47</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="16" calcext:value-type="float">
|
||||||
|
<text:p>16</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="58" calcext:value-type="float">
|
||||||
|
<text:p>58</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="10" calcext:value-type="float">
|
||||||
|
<text:p>10</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="40" calcext:value-type="float">
|
||||||
|
<text:p>40</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="76" calcext:value-type="float">
|
||||||
|
<text:p>76</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="4" calcext:value-type="float">
|
||||||
|
<text:p>4</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="95" calcext:value-type="float">
|
||||||
|
<text:p>95</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="58" calcext:value-type="float">
|
||||||
|
<text:p>58</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="9" calcext:value-type="float">
|
||||||
|
<text:p>9</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="18" calcext:value-type="float">
|
||||||
|
<text:p>18</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="17" calcext:value-type="float">
|
||||||
|
<text:p>17</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="53" calcext:value-type="float">
|
||||||
|
<text:p>53</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="58" calcext:value-type="float">
|
||||||
|
<text:p>58</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="57" calcext:value-type="float">
|
||||||
|
<text:p>57</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="39" calcext:value-type="float">
|
||||||
|
<text:p>39</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="31" calcext:value-type="float">
|
||||||
|
<text:p>31</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="37" calcext:value-type="float">
|
||||||
|
<text:p>37</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="90" calcext:value-type="float">
|
||||||
|
<text:p>90</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="91" calcext:value-type="float">
|
||||||
|
<text:p>91</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="40" calcext:value-type="float">
|
||||||
|
<text:p>40</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="62" calcext:value-type="float">
|
||||||
|
<text:p>62</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="10" calcext:value-type="float">
|
||||||
|
<text:p>10</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="69" calcext:value-type="float">
|
||||||
|
<text:p>69</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="14" calcext:value-type="float">
|
||||||
|
<text:p>14</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="69" calcext:value-type="float">
|
||||||
|
<text:p>69</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="15" calcext:value-type="float">
|
||||||
|
<text:p>15</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="7" calcext:value-type="float">
|
||||||
|
<text:p>7</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="80" calcext:value-type="float">
|
||||||
|
<text:p>80</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="73" calcext:value-type="float">
|
||||||
|
<text:p>73</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="99" calcext:value-type="float">
|
||||||
|
<text:p>99</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="15" calcext:value-type="float">
|
||||||
|
<text:p>15</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="78" calcext:value-type="float">
|
||||||
|
<text:p>78</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="53" calcext:value-type="float">
|
||||||
|
<text:p>53</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="79" calcext:value-type="float">
|
||||||
|
<text:p>79</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
</table:table>
|
||||||
|
<table:named-expressions/>
|
||||||
|
</office:spreadsheet>
|
||||||
|
</office:body>
|
||||||
|
</office:document>
|
||||||
|
|
@ -0,0 +1,441 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<office:document xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rpt="http://openoffice.org/2005/report" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.3" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
|
||||||
|
<office:meta><meta:initial-creator>Lukas Jansen</meta:initial-creator><meta:creation-date>2019-01-27T03:31:08.931482632</meta:creation-date><dc:date>2020-02-23T16:02:58.759849276</dc:date><dc:creator>Lukas Jansen</dc:creator><meta:editing-duration>PT7M9S</meta:editing-duration><meta:editing-cycles>3</meta:editing-cycles><meta:generator>LibreOffice/7.1.5.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:cell-count="55" meta:object-count="0"/></office:meta>
|
||||||
|
<office:settings>
|
||||||
|
<config:config-item-set config:name="ooo:view-settings">
|
||||||
|
<config:config-item config:name="VisibleAreaTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaWidth" config:type="int">11288</config:config-item>
|
||||||
|
<config:config-item config:name="VisibleAreaHeight" config:type="int">4967</config:config-item>
|
||||||
|
<config:config-item-map-indexed config:name="Views">
|
||||||
|
<config:config-item-map-entry>
|
||||||
|
<config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="Tables">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CursorPositionX" config:type="int">6</config:config-item>
|
||||||
|
<config:config-item config:name="CursorPositionY" config:type="int">15</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitMode" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="VerticalSplitPosition" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ActiveSplitRange" config:type="short">2</config:config-item>
|
||||||
|
<config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionRight" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="PositionBottom" config:type="int">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
<config:config-item config:name="ActiveTable" config:type="string">Sheet1</config:config-item>
|
||||||
|
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1849</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
|
||||||
|
<config:config-item config:name="PageViewZoomValue" config:type="int">60</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreakPreview" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsValueHighlightingEnabled" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-indexed>
|
||||||
|
</config:config-item-set>
|
||||||
|
<config:config-item-set config:name="ooo:configuration-settings">
|
||||||
|
<config:config-item config:name="EmbedComplexScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedAsianScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedLatinScriptFonts" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedOnlyUsedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionY" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionY" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
|
||||||
|
<config:config-item config:name="HasColumnRowHeaders" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="HasSheetTabs" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterSetup" config:type="base64Binary">jQH+/01GQ0o0OTFEVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpNRkNKNDkxRFcAAAAAAAAAAAAAAAAAAAAAAAAWAAMArgAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9TUZDSjQ5MURXCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCmNvbGxhdGU9ZmFsc2UKbWFyZ2luZGFqdXN0bWVudD0wLDAsMCwwCmNvbG9yZGVwdGg9MjQKcHNsZXZlbD0wCnBkZmRldmljZT0xCmNvbG9yZGV2aWNlPTAKUFBEQ29udGV4RGF0YQpQYWdlU2l6ZTpBNAAAEgBDT01QQVRfRFVQTEVYX01PREUPAER1cGxleE1vZGU6Ok9mZg==</config:config-item>
|
||||||
|
<config:config-item config:name="RasterResolutionX" config:type="int">1000</config:config-item>
|
||||||
|
<config:config-item config:name="SyntaxStringRef" config:type="short">7</config:config-item>
|
||||||
|
<config:config-item config:name="RasterIsVisible" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="RasterSubdivisionX" config:type="int">1</config:config-item>
|
||||||
|
<config:config-item config:name="IsRasterAxisSynchronized" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="SaveThumbnail" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="ShowGrid" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterName" config:type="string">MFCJ491DW</config:config-item>
|
||||||
|
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
|
||||||
|
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
|
||||||
|
<config:config-item config:name="ShowPageBreaks" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsSnapToRaster" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="UpdateFromTemplate" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
|
||||||
|
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
|
||||||
|
<config:config-item-map-named config:name="ScriptConfiguration">
|
||||||
|
<config:config-item-map-entry config:name="Sheet1">
|
||||||
|
<config:config-item config:name="CodeName" config:type="string">Sheet1</config:config-item>
|
||||||
|
</config:config-item-map-entry>
|
||||||
|
</config:config-item-map-named>
|
||||||
|
</config:config-item-set>
|
||||||
|
</office:settings>
|
||||||
|
<office:scripts>
|
||||||
|
<office:script script:language="ooo:Basic">
|
||||||
|
<ooo:libraries xmlns:ooo="http://openoffice.org/2004/office" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||||
|
</office:script>
|
||||||
|
</office:scripts>
|
||||||
|
<office:font-face-decls>
|
||||||
|
<style:font-face style:name="Liberation Sans" svg:font-family="'Liberation Sans'" style:font-family-generic="swiss" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Lohit Devanagari" svg:font-family="'Lohit Devanagari'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC" svg:font-family="'Noto Sans CJK SC'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
<style:font-face style:name="Noto Sans CJK SC Regular" svg:font-family="'Noto Sans CJK SC Regular'" style:font-family-generic="system" style:font-pitch="variable"/>
|
||||||
|
</office:font-face-decls>
|
||||||
|
<office:styles>
|
||||||
|
<style:default-style style:family="table-cell">
|
||||||
|
<style:paragraph-properties style:tab-stop-distance="0.4921in"/>
|
||||||
|
<style:text-properties style:font-name="Liberation Sans" fo:language="en" fo:country="NZ" style:font-name-asian="Noto Sans CJK SC Regular" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="Lohit Devanagari" style:language-complex="hi" style:country-complex="IN"/>
|
||||||
|
</style:default-style>
|
||||||
|
<number:number-style style:name="N0">
|
||||||
|
<number:number number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:style style:name="Default" style:family="table-cell"/>
|
||||||
|
<style:style style:name="Heading" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="24pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_1" style:display-name="Heading 1" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="18pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="table-cell" style:parent-style-name="Heading">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="12pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Text" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Note" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc" style:diagonal-bl-tr="none" style:diagonal-tl-br="none" fo:border="0.74pt solid #808080"/>
|
||||||
|
<style:text-properties fo:color="#333333" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Footnote" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#808080" fo:font-size="10pt" fo:font-style="italic" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Hyperlink" style:family="table-cell" style:parent-style-name="Text">
|
||||||
|
<style:text-properties fo:color="#0000ee" fo:font-size="10pt" fo:font-style="normal" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#0000ee" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Status" style:family="table-cell" style:parent-style-name="Default"/>
|
||||||
|
<style:style style:name="Good" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ccffcc"/>
|
||||||
|
<style:text-properties fo:color="#006600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Neutral" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffffcc"/>
|
||||||
|
<style:text-properties fo:color="#996600" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Bad" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#ffcccc"/>
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Warning" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:text-properties fo:color="#cc0000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Error" style:family="table-cell" style:parent-style-name="Status">
|
||||||
|
<style:table-cell-properties fo:background-color="#cc0000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_1" style:display-name="Accent 1" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#000000"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_2" style:display-name="Accent 2" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#808080"/>
|
||||||
|
<style:text-properties fo:color="#ffffff" fo:font-size="10pt" fo:font-style="normal" fo:font-weight="normal"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Accent_20_3" style:display-name="Accent 3" style:family="table-cell" style:parent-style-name="Accent">
|
||||||
|
<style:table-cell-properties fo:background-color="#dddddd"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="Result" style:family="table-cell" style:parent-style-name="Default">
|
||||||
|
<style:text-properties fo:color="#000000" fo:font-size="10pt" fo:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="#000000" fo:font-weight="bold"/>
|
||||||
|
</style:style>
|
||||||
|
</office:styles>
|
||||||
|
<office:automatic-styles>
|
||||||
|
<style:style style:name="co1" style:family="table-column">
|
||||||
|
<style:table-column-properties fo:break-before="auto" style:column-width="0.889in"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ro1" style:family="table-row">
|
||||||
|
<style:table-row-properties style:row-height="0.178in" fo:break-before="auto" style:use-optimal-row-height="true"/>
|
||||||
|
</style:style>
|
||||||
|
<style:style style:name="ta1" style:family="table" style:master-page-name="Default">
|
||||||
|
<style:table-properties table:display="true" style:writing-mode="lr-tb"/>
|
||||||
|
</style:style>
|
||||||
|
<number:number-style style:name="N2">
|
||||||
|
<number:number number:decimal-places="2" number:min-decimal-places="2" number:min-integer-digits="1"/>
|
||||||
|
</number:number-style>
|
||||||
|
<style:page-layout style:name="pm1">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in"/>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in"/>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
<style:page-layout style:name="pm2">
|
||||||
|
<style:page-layout-properties style:writing-mode="lr-tb"/>
|
||||||
|
<style:header-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-bottom="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:header-style>
|
||||||
|
<style:footer-style>
|
||||||
|
<style:header-footer-properties fo:min-height="0.2953in" fo:margin-left="0in" fo:margin-right="0in" fo:margin-top="0.0984in" fo:border="2.49pt solid #000000" fo:padding="0.0071in" fo:background-color="#c0c0c0">
|
||||||
|
<style:background-image/>
|
||||||
|
</style:header-footer-properties>
|
||||||
|
</style:footer-style>
|
||||||
|
</style:page-layout>
|
||||||
|
</office:automatic-styles>
|
||||||
|
<office:master-styles>
|
||||||
|
<style:master-page style:name="Default" style:page-layout-name="pm1">
|
||||||
|
<style:header>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name></text:p>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
<style:master-page style:name="Report" style:page-layout-name="pm2">
|
||||||
|
<style:header>
|
||||||
|
<style:region-left>
|
||||||
|
<text:p><text:sheet-name>???</text:sheet-name><text:s/>(<text:title>???</text:title>)</text:p>
|
||||||
|
</style:region-left>
|
||||||
|
<style:region-right>
|
||||||
|
<text:p><text:date style:data-style-name="N2" text:date-value="2021-08-19">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="16:20:30.594271240">00:00:00</text:time></text:p>
|
||||||
|
</style:region-right>
|
||||||
|
</style:header>
|
||||||
|
<style:header-left style:display="false"/>
|
||||||
|
<style:footer>
|
||||||
|
<text:p>Page <text:page-number>1</text:page-number><text:s/>/ <text:page-count>99</text:page-count></text:p>
|
||||||
|
</style:footer>
|
||||||
|
<style:footer-left style:display="false"/>
|
||||||
|
</style:master-page>
|
||||||
|
</office:master-styles>
|
||||||
|
<office:body>
|
||||||
|
<office:spreadsheet>
|
||||||
|
<table:calculation-settings table:automatic-find-labels="false" table:use-regular-expressions="false" table:use-wildcards="true"/>
|
||||||
|
<table:table table:name="Sheet1" table:style-name="ta1">
|
||||||
|
<table:table-column table:style-name="co1" table:number-columns-repeated="5" table:default-cell-style-name="Default"/>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>A</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>B</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>C</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>D</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>E</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="6" calcext:value-type="float">
|
||||||
|
<text:p>6</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="93" calcext:value-type="float">
|
||||||
|
<text:p>93</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="43" calcext:value-type="float">
|
||||||
|
<text:p>43</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="95" calcext:value-type="float">
|
||||||
|
<text:p>95</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>A</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="24" calcext:value-type="float">
|
||||||
|
<text:p>24</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="float" office:value="0.73" calcext:value-type="float">
|
||||||
|
<text:p>0.73</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="50" calcext:value-type="float">
|
||||||
|
<text:p>50</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="78" calcext:value-type="float">
|
||||||
|
<text:p>78</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>B</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="13" calcext:value-type="float">
|
||||||
|
<text:p>13</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="36" calcext:value-type="float">
|
||||||
|
<text:p>36</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="44" calcext:value-type="float">
|
||||||
|
<text:p>44</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="57" calcext:value-type="float">
|
||||||
|
<text:p>57</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>C</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="10" calcext:value-type="float">
|
||||||
|
<text:p>10</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="46" calcext:value-type="float">
|
||||||
|
<text:p>46</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="56" calcext:value-type="float">
|
||||||
|
<text:p>56</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="69" calcext:value-type="float">
|
||||||
|
<text:p>69</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>D</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="34" calcext:value-type="float">
|
||||||
|
<text:p>34</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>S</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="float" office:value="0.52" calcext:value-type="float">
|
||||||
|
<text:p>0.52</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="34" calcext:value-type="float">
|
||||||
|
<text:p>34</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>E</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="24" calcext:value-type="float">
|
||||||
|
<text:p>24</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>Q</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="43" calcext:value-type="float">
|
||||||
|
<text:p>43</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="93" calcext:value-type="float">
|
||||||
|
<text:p>93</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>A</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="43" calcext:value-type="float">
|
||||||
|
<text:p>43</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="15" calcext:value-type="float">
|
||||||
|
<text:p>15</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="95" calcext:value-type="float">
|
||||||
|
<text:p>95</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="89" calcext:value-type="float">
|
||||||
|
<text:p>89</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>B</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="67" calcext:value-type="float">
|
||||||
|
<text:p>67</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="float" office:value="0.89" calcext:value-type="float">
|
||||||
|
<text:p>0.89</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="57" calcext:value-type="float">
|
||||||
|
<text:p>57</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="44" calcext:value-type="float">
|
||||||
|
<text:p>44</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>C</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="74" calcext:value-type="float">
|
||||||
|
<text:p>74</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="26" calcext:value-type="float">
|
||||||
|
<text:p>26</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="float" office:value="0.77" calcext:value-type="float">
|
||||||
|
<text:p>0.77</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="3" calcext:value-type="float">
|
||||||
|
<text:p>3</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>D</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
<table:table-row table:style-name="ro1">
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="2" calcext:value-type="float">
|
||||||
|
<text:p>2</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="14" calcext:value-type="float">
|
||||||
|
<text:p>14</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="93" calcext:value-type="float">
|
||||||
|
<text:p>93</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell table:formula="of:=RANDBETWEEN(0; 100)" office:value-type="float" office:value="54" calcext:value-type="float">
|
||||||
|
<text:p>54</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
<table:table-cell office:value-type="string" calcext:value-type="string">
|
||||||
|
<text:p>E</text:p>
|
||||||
|
</table:table-cell>
|
||||||
|
</table:table-row>
|
||||||
|
</table:table>
|
||||||
|
<table:named-expressions/>
|
||||||
|
</office:spreadsheet>
|
||||||
|
</office:body>
|
||||||
|
</office:document>
|
||||||
|
|
@ -19,117 +19,127 @@ mixed_dtypes_file = "mixed_dtypes.ods"
|
||||||
|
|
||||||
|
|
||||||
class TestOdsReader:
|
class TestOdsReader:
|
||||||
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
def test_header_file_simple(self):
|
def test_header_file_simple(self, suffix):
|
||||||
|
|
||||||
path = rsc / header_file
|
path = rsc / header_file
|
||||||
df = read_ods(path)
|
df = read_ods(path.with_suffix(suffix))
|
||||||
|
|
||||||
assert isinstance(df, pd.DataFrame)
|
assert isinstance(df, pd.DataFrame)
|
||||||
assert len(df) == 10
|
assert len(df) == 10
|
||||||
assert (len(df.columns) == 5)
|
assert len(df.columns) == 5
|
||||||
|
|
||||||
def test_header_file_with_int(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_header_file_with_int(self, suffix):
|
||||||
|
|
||||||
path = rsc / header_file
|
path = rsc / header_file
|
||||||
df = read_ods(path, 1)
|
df = read_ods(path.with_suffix(suffix), 1)
|
||||||
|
|
||||||
assert isinstance(df, pd.DataFrame)
|
assert isinstance(df, pd.DataFrame)
|
||||||
assert len(df) == 10
|
assert len(df) == 10
|
||||||
assert (len(df.columns) == 5)
|
assert len(df.columns) == 5
|
||||||
|
|
||||||
def test_header_file_with_str(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_header_file_with_str(self, suffix):
|
||||||
|
|
||||||
path = rsc / header_file
|
path = rsc / header_file
|
||||||
df = read_ods(path, "Sheet1")
|
df = read_ods(path.with_suffix(suffix), "Sheet1")
|
||||||
|
|
||||||
assert isinstance(df, pd.DataFrame)
|
assert isinstance(df, pd.DataFrame)
|
||||||
assert len(df) == 10
|
assert len(df) == 10
|
||||||
assert (len(df.columns) == 5)
|
assert len(df.columns) == 5
|
||||||
|
|
||||||
def test_header_file_with_cols(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_header_file_with_cols(self, suffix):
|
||||||
|
|
||||||
path = rsc / header_file
|
path = rsc / header_file
|
||||||
columns = ["One", "Two", "Three", "Four", "Five"]
|
columns = ["One", "Two", "Three", "Four", "Five"]
|
||||||
df = read_ods(path, "Sheet1", columns=columns)
|
df = read_ods(path.with_suffix(suffix), "Sheet1", columns=columns)
|
||||||
|
|
||||||
assert list(df.columns) == columns
|
assert list(df.columns) == columns
|
||||||
assert len(df) == 10
|
assert len(df) == 10
|
||||||
assert (len(df.columns) == 5)
|
assert len(df.columns) == 5
|
||||||
|
|
||||||
def test_no_header_file_no_cols(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_no_header_file_no_cols(self, suffix):
|
||||||
|
|
||||||
path = rsc / no_header_file
|
path = rsc / no_header_file
|
||||||
df = read_ods(path, 1, headers=False)
|
df = read_ods(path.with_suffix(suffix), 1, headers=False)
|
||||||
|
|
||||||
assert list(df.columns) == [
|
assert list(df.columns) == [f"column.{i}" for i in range(len(df.columns))]
|
||||||
f"column.{i}" for i in range(len(df.columns))]
|
|
||||||
assert len(df) == 10
|
assert len(df) == 10
|
||||||
assert (len(df.columns) == 5)
|
assert len(df.columns) == 5
|
||||||
|
|
||||||
def test_no_header_file_with_cols(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_no_header_file_with_cols(self, suffix):
|
||||||
|
|
||||||
path = rsc / no_header_file
|
path = rsc / no_header_file
|
||||||
columns = ["A", "B", "C", "D", "E"]
|
columns = ["A", "B", "C", "D", "E"]
|
||||||
df = read_ods(path, 1, headers=False, columns=columns)
|
df = read_ods(path.with_suffix(suffix), 1, headers=False, columns=columns)
|
||||||
|
|
||||||
assert list(df.columns) == columns
|
assert list(df.columns) == columns
|
||||||
assert len(df) == 10
|
assert len(df) == 10
|
||||||
|
|
||||||
def test_duplicated_column_names(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_duplicated_column_names(self, suffix):
|
||||||
|
|
||||||
path = rsc / duplicated_column_names_file
|
path = rsc / duplicated_column_names_file
|
||||||
df = read_ods(path, 1)
|
df = read_ods(path.with_suffix(suffix), 1)
|
||||||
|
|
||||||
assert isinstance(df, pd.DataFrame)
|
assert isinstance(df, pd.DataFrame)
|
||||||
assert len(df.columns) == 4
|
assert len(df.columns) == 4
|
||||||
assert "website.1" in df.columns
|
assert "website.1" in df.columns
|
||||||
|
|
||||||
def test_header_file_col_len(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_header_file_col_len(self, suffix):
|
||||||
|
|
||||||
path = rsc / col_len_file
|
path = rsc / col_len_file
|
||||||
df = read_ods(path, 1)
|
df = read_ods(path.with_suffix(suffix), 1)
|
||||||
|
|
||||||
assert isinstance(df, pd.DataFrame)
|
assert isinstance(df, pd.DataFrame)
|
||||||
assert len(df) == 10
|
assert len(df) == 10
|
||||||
assert (len(df.columns) == 5)
|
assert len(df.columns) == 5
|
||||||
|
|
||||||
def test_wrong_id_type(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_wrong_id_type(self, suffix):
|
||||||
|
|
||||||
path = rsc / header_file
|
path = rsc / header_file
|
||||||
|
|
||||||
with pytest.raises(ValueError) as e_info:
|
with pytest.raises(ValueError) as e_info:
|
||||||
read_ods(path, 1.0)
|
read_ods(path.with_suffix(suffix), 1.0)
|
||||||
assert e_info.match("Sheet id has to be either `str` or `int`")
|
assert e_info.match("Sheet id has to be either `str` or `int`")
|
||||||
|
|
||||||
def test_non_existent_sheet(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_non_existent_sheet(self, suffix):
|
||||||
|
|
||||||
path = rsc / header_file
|
path = rsc / header_file
|
||||||
sheet_name = "No_Sheet"
|
sheet_name = "No_Sheet"
|
||||||
|
|
||||||
with pytest.raises(KeyError) as e_info:
|
with pytest.raises(KeyError) as e_info:
|
||||||
read_ods(path, sheet_name)
|
read_ods(path.with_suffix(suffix), sheet_name)
|
||||||
assert e_info.match(f"There is no sheet named {sheet_name}")
|
assert e_info.match(f"There is no sheet named {sheet_name}")
|
||||||
|
|
||||||
def test_missing_header(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_missing_header(self, suffix):
|
||||||
|
|
||||||
path = rsc / missing_header_file
|
path = rsc / missing_header_file
|
||||||
df = read_ods(path, 1)
|
df = read_ods(path.with_suffix(suffix), 1)
|
||||||
|
|
||||||
assert isinstance(df, pd.DataFrame)
|
assert isinstance(df, pd.DataFrame)
|
||||||
assert len(df) == 10
|
assert len(df) == 10
|
||||||
assert (len(df.columns) == 5)
|
assert len(df.columns) == 5
|
||||||
|
|
||||||
assert df.columns[2] == "unnamed.1"
|
assert df.columns[2] == "unnamed.1"
|
||||||
|
|
||||||
def test_mixed_dtypes(self):
|
@pytest.mark.parametrize("suffix", [".ods", ".fods"])
|
||||||
|
def test_mixed_dtypes(self, suffix):
|
||||||
|
|
||||||
path = rsc / mixed_dtypes_file
|
path = rsc / mixed_dtypes_file
|
||||||
df = read_ods(path, 1)
|
df = read_ods(path.with_suffix(suffix), 1)
|
||||||
|
|
||||||
assert isinstance(df, pd.DataFrame)
|
assert isinstance(df, pd.DataFrame)
|
||||||
assert len(df) == 10
|
assert len(df) == 10
|
||||||
assert (len(df.columns) == 5)
|
assert len(df.columns) == 5
|
||||||
|
|
||||||
type_list = [float, object, float, float, object]
|
type_list = [float, object, float, float, object]
|
||||||
assert df.dtypes.tolist() == type_list
|
assert df.dtypes.tolist() == type_list
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue