Update reports execution

This commit is contained in:
Adrián Bernardi 2021-09-22 20:07:04 -03:00
parent bab183f045
commit fa04d41210
39 changed files with 1626 additions and 1679 deletions

View File

@ -2505,9 +2505,9 @@ class CopyTypificationSpreadsheet(Report):
__name__ = 'lims.report_typification_copy.spreadsheet'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
Typification = Pool().get('lims.typification')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['new_typifications'] = Typification.browse(
data['new_typifications'])
report_context['existing_typifications'] = Typification.browse(

View File

@ -1217,12 +1217,12 @@ class ControlChartReport(Report):
__name__ = 'lims.control_chart.report'
@classmethod
def get_context(cls, reports, data):
report_context = super().get_context(reports, data)
def get_context(cls, records, header, data):
pool = Pool()
Company = pool.get('company.company')
ControlTendency = pool.get('lims.control.tendency')
report_context = super().get_context(records, header, data)
if 'id' in data:
tendency = ControlTendency(data['id'])
else:
@ -1794,10 +1794,10 @@ class TrendChartReport(Report):
__name__ = 'lims.trend.chart.report'
@classmethod
def get_context(cls, reports, data):
def get_context(cls, records, header, data):
TrendChart = Pool().get('lims.trend.chart')
report_context = super().get_context(reports, data)
report_context = super().get_context(records, header, data)
chart_id = data.get('chart_id')
chart = TrendChart(chart_id)

View File

@ -1607,13 +1607,13 @@ class AcknowledgmentOfReceipt(Report):
return result
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Company = pool.get('company.company')
Service = pool.get('lims.service')
Entry = pool.get('lims.entry')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
if 'id' in data:
entry = Entry(data['id'])
else:
@ -1805,13 +1805,13 @@ class EntryDetail(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
Company = Pool().get('company.company')
report_context = super().get_context(records, header, data)
company = Company(Transaction().context.get('company'))
report_context['company'] = company
return report_context
@ -1820,8 +1820,8 @@ class EntryLabels(Report):
__name__ = 'lims.entry.labels.report'
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
labels = []
for entry in records:
for sample in entry.samples:
@ -1829,5 +1829,4 @@ class EntryLabels(Report):
for i in range(fraction.packages_quantity):
labels.append(fraction)
report_context['labels'] = labels
return report_context

View File

@ -5998,12 +5998,12 @@ class AnalysisPendingInform(Report):
__name__ = 'lims.analysis_pending_inform'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Laboratory = pool.get('lims.laboratory')
Party = pool.get('party.party')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
today = get_print_date()
report_context['today'] = today
@ -6012,7 +6012,6 @@ class AnalysisPendingInform(Report):
report_context['date_to'] = data['date_to']
report_context['laboratory'] = Laboratory(data['laboratory']).rec_name
report_context['party'] = ''
if data['party']:
report_context['party'] = Party(data['party']).rec_name
report_context['include_comments_of_fraction'] = \
@ -6145,12 +6144,12 @@ class AnalysisCheckedPendingInform(Report):
__name__ = 'lims.analysis_checked_pending_inform'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Laboratory = pool.get('lims.laboratory')
Party = pool.get('party.party')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
today = get_print_date()
report_context['today'] = today

View File

@ -5671,8 +5671,8 @@ class PlanificationSequenceReport(Report):
__name__ = 'lims.planification.sequence.report'
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
@ -5743,7 +5743,7 @@ class PlanificationSequenceReport(Report):
key=lambda x: x['order'])
objects[k1]['methods'][k2]['lines'] = sorted_lines
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -5753,8 +5753,8 @@ class PlanificationWorksheetAnalysisReport(Report):
__name__ = 'lims.planification.worksheet_analysis.report'
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
@ -5867,8 +5867,8 @@ class PlanificationWorksheetMethodReport(Report):
__name__ = 'lims.planification.worksheet_method.report'
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
@ -6039,8 +6039,8 @@ class PlanificationWorksheetReport(Report):
__name__ = 'lims.planification.worksheet.report'
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
@ -6278,13 +6278,13 @@ class PendingServicesUnplannedReport(Report):
__name__ = 'lims.pending_services_unplanned.report'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Laboratory = pool.get('lims.laboratory')
EntryDetailAnalysis = pool.get('lims.entry.detail.analysis')
NotebookLine = pool.get('lims.notebook.line')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['start_date'] = (data['start_date']
@ -6404,7 +6404,7 @@ class PendingServicesUnplannedReport(Report):
objects[k1]['services'][k2]['parties'][k3]['lines'] = (
sorted_lines)
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@classmethod
@ -6444,12 +6444,12 @@ class PendingServicesUnplannedSpreadsheet(Report):
__name__ = 'lims.pending_services_unplanned.spreadsheet'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Laboratory = pool.get('lims.laboratory')
EntryDetailAnalysis = pool.get('lims.entry.detail.analysis')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['start_date'] = (data['start_date']
@ -6552,7 +6552,7 @@ class PendingServicesUnplannedSpreadsheet(Report):
objects = sorted(objects.values(), key=lambda x: (
x['laboratory'], x['service'], x['party'], x['order']))
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@classmethod
@ -6630,11 +6630,11 @@ class BlindSampleReport(Report):
__name__ = 'lims.blind_sample_report'
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records,
data)
def get_context(cls, records, header, data):
BlindSample = Pool().get('lims.blind_sample')
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
objects = []
@ -6742,7 +6742,7 @@ class BlindSampleReport(Report):
record['error'] = round(result - max_value, 2)
objects.append(record)
report_context['objects'] = objects
report_context['records'] = objects
report_context['date_from'] = data['date_from']
report_context['date_to'] = data['date_to']
@ -6775,8 +6775,8 @@ class PlanificationSequenceAnalysisReport(Report):
__name__ = 'lims.planification.sequence.analysis.report'
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
@ -6848,6 +6848,6 @@ class PlanificationSequenceAnalysisReport(Report):
key=lambda x: x['order'])
objects[k1]['methods'][k2]['lines'] = sorted_lines
report_context['objects'] = objects
report_context['records'] = objects
return report_context

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2015-04-09T13:00:47</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="625" meta:image-count="0" meta:non-whitespace-character-count="604" meta:object-count="0" meta:page-count="1" meta:paragraph-count="35" meta:table-count="2" meta:word-count="53"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2015-04-09T13:00:47</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:character-count="625" meta:image-count="0" meta:non-whitespace-character-count="604" meta:object-count="0" meta:page-count="1" meta:paragraph-count="35" meta:table-count="2" meta:word-count="53"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">30886</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14072</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">17078</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">18886</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">3500</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">30884</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14071</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14737</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">110</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">511022</config:config-item>
<config:config-item config:name="Rsid" config:type="int">599408</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -398,7 +398,7 @@
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Webdings" fo:font-size="6pt" fo:font-weight="bold" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Text_20_body" style:master-page-name="Standard">
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Text_20_body" style:master-page-name="">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false" style:page-number="auto" fo:break-before="page"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
@ -409,6 +409,17 @@
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="16pt" style:font-size-asian="16pt" style:font-size-complex="16pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Text_20_body" style:master-page-name="Standard">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false" style:page-number="auto" fo:break-before="page"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="16pt" style:font-size-asian="16pt" style:font-size-complex="16pt"/>
</style:style>
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Frame">
<style:graphic-properties style:vertical-pos="from-top" style:vertical-rel="paragraph" style:horizontal-pos="from-left" style:horizontal-rel="paragraph" fo:padding="0cm" fo:border="none" style:shadow="none" draw:shadow-opacity="100%">
<style:columns fo:column-count="1" fo:column-gap="0cm"/>
@ -442,14 +453,14 @@
<table:table-column table:style-name="Tabla1.B"/>
<table:table-row>
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
<text:h text:style-name="P10" text:outline-level="1"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:h text:style-name="P13" text:outline-level="1"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:h>
</table:table-cell>
<table:table-cell table:style-name="Tabla1.B1" office:value-type="string">
<text:h text:style-name="P11" text:outline-level="1">Blind Samples Report</text:h>
<text:h text:style-name="P14" text:outline-level="1">Blind Samples Report</text:h>
</table:table-cell>
</table:table-row>
</table:table>
@ -470,7 +481,7 @@
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(date_to, user.language)&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;format_date(date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(date_to, user.language)&gt;</text:placeholder></text:p>
<table:table table:name="Tabla2" table:style-name="Tabla2">
<table:table-column table:style-name="Tabla2.A"/>
<table:table-column table:style-name="Tabla2.B"/>
@ -536,7 +547,7 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Tabla2.A2" table:number-columns-spanned="15" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in records&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-05-11T10:46:12.233498975</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="896" meta:image-count="0" meta:non-whitespace-character-count="850" meta:object-count="0" meta:page-count="1" meta:paragraph-count="29" meta:table-count="3" meta:word-count="73"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-05-11T10:46:12.233498975</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:character-count="896" meta:image-count="0" meta:non-whitespace-character-count="850" meta:object-count="0" meta:page-count="1" meta:paragraph-count="29" meta:table-count="3" meta:word-count="73"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">28312</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">12548</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">13760</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">12021</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">13921</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">3997</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">28310</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">12547</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">13758</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">120</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5087180</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5219944</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -430,63 +430,63 @@
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:padding="0.049cm" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #808080" fo:border-bottom="none" style:shadow="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="0047635f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:padding="0.049cm" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #808080" fo:border-bottom="none" style:shadow="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="0047635f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003e7e43" officeooo:paragraph-rsid="003e7e43" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003e7e43" officeooo:paragraph-rsid="003e7e43" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0029694e" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="003dba7d" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0029694e" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="004ad389" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="003dba7d" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="004ad389" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="0047635f" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:padding="0.049cm" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #808080" fo:border-bottom="none" style:shadow="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="0047635f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
@ -557,17 +557,17 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P4">Discharge of Countersamples</text:p>
<text:p text:style-name="P6">Discharge of Countersamples</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P5"/>
<text:p text:style-name="P7"/>
</table:table-cell>
</table:table-row>
</table:table>
@ -592,7 +592,7 @@
<table:table-column table:style-name="Principal.B"/>
<table:table-row table:style-name="Principal.1">
<table:table-cell table:style-name="Principal.A1" office:value-type="string">
<text:p text:style-name="P14">Expiry date range:</text:p>
<text:p text:style-name="P16">Expiry date range:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P26"><text:placeholder text:placeholder-type="text">&lt;format_date(expiry_date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(expiry_date_to, user.language)&gt;</text:placeholder></text:p>
@ -600,7 +600,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Principal.A2" office:value-type="string">
<text:p text:style-name="P15">Input date range:</text:p>
<text:p text:style-name="P17">Input date range:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B2" office:value-type="string">
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;format_date(date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(date_to, user.language)&gt;</text:placeholder></text:p>
@ -608,7 +608,7 @@
</table:table-row>
</table:table>
<text:p text:style-name="P18"/>
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P24"><text:placeholder text:placeholder-type="text">&lt;record.location&gt;</text:placeholder></text:p>
<table:table table:name="Detail" table:style-name="Detail">
<table:table-column table:style-name="Detail.A"/>
@ -623,7 +623,7 @@
<table:table-header-rows>
<table:table-row table:style-name="Detail.1">
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P6">Code</text:p>
<text:p text:style-name="P8">Code</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P19">Type</text:p>
@ -644,7 +644,7 @@
<text:p text:style-name="P21">Study Plan</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P7">Countersample date</text:p>
<text:p text:style-name="P9">Countersample date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.I1" office:value-type="string">
<text:p text:style-name="P22">Expiry date</text:p>
@ -653,7 +653,7 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A2" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in record.fractions&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in record.fractions&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -666,36 +666,36 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;type&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;type&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.C3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;entry_date&apos;], user.language)&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;entry_date&apos;], user.language)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.E3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;results_reports&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;results_reports&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F3" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;comments&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;comments&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;stp_number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;stp_number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.H3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;countersample_date&apos;], user.language) if fraction[&apos;countersample_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;countersample_date&apos;], user.language) if fraction[&apos;countersample_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.I3" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;expiry_date&apos;], user.language) if fraction[&apos;expiry_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;expiry_date&apos;], user.language) if fraction[&apos;expiry_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A4" table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-05-11T10:45:50.537494476</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="675" meta:image-count="0" meta:non-whitespace-character-count="641" meta:object-count="0" meta:page-count="1" meta:paragraph-count="25" meta:table-count="3" meta:word-count="57"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-05-11T10:45:50.537494476</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:character-count="675" meta:image-count="0" meta:non-whitespace-character-count="641" meta:object-count="0" meta:page-count="1" meta:paragraph-count="25" meta:table-count="3" meta:word-count="57"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">28312</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">12548</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">13760</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">11959</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">13859</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">3997</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">28310</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">12547</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">13758</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">120</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4871886</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4972505</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -418,55 +418,55 @@
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:padding="0.049cm" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #808080" fo:border-bottom="none" style:shadow="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00433531" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="00277e02" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:padding="0.049cm" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #808080" fo:border-bottom="none" style:shadow="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00433531" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="00277e02" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="003dba7d" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="003dba7d" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0045a0ec" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0029694e" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00433531" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:padding="0.049cm" fo:border-left="none" fo:border-right="none" fo:border-top="0.06pt solid #808080" fo:border-bottom="none" style:shadow="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00433531" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
@ -529,17 +529,17 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P4">Storage of Countersamples</text:p>
<text:p text:style-name="P6">Storage of Countersamples</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P5"/>
<text:p text:style-name="P7"/>
</table:table-cell>
</table:table-row>
</table:table>
@ -564,7 +564,7 @@
<table:table-column table:style-name="Principal.B"/>
<table:table-row table:style-name="Principal.1">
<table:table-cell table:style-name="Principal.A1" office:value-type="string">
<text:p text:style-name="P12">Report date range:</text:p>
<text:p text:style-name="P14">Report date range:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text">&lt;format_date(report_date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(report_date_to, user.language)&gt;</text:placeholder></text:p>
@ -572,7 +572,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Principal.A2" office:value-type="string">
<text:p text:style-name="P13">Input date range:</text:p>
<text:p text:style-name="P15">Input date range:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B2" office:value-type="string">
<text:p text:style-name="P23"><text:placeholder text:placeholder-type="text">&lt;format_date(date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(date_to, user.language)&gt;</text:placeholder></text:p>
@ -580,7 +580,7 @@
</table:table-row>
</table:table>
<text:p text:style-name="P16"/>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text">&lt;record.location&gt;</text:placeholder></text:p>
<table:table table:name="Detail" table:style-name="Detail">
<table:table-column table:style-name="Detail.A"/>
@ -593,7 +593,7 @@
<table:table-header-rows>
<table:table-row table:style-name="Detail.1">
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P6">Code</text:p>
<text:p text:style-name="P8">Code</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P17">Type</text:p>
@ -617,7 +617,7 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A2" table:number-columns-spanned="7" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in record.fractions&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in record.fractions&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -628,30 +628,30 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B3" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;type&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;type&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.C3" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D3" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;entry_date&apos;], user.language)&gt;</text:placeholder></text:p>
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;entry_date&apos;], user.language)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.E3" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;results_reports&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;results_reports&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;comments&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;comments&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G3" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;stp_number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;stp_number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A4" table:number-columns-spanned="7" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2014-05-15T10:09:19</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:table-count="2" meta:image-count="0" meta:object-count="0" meta:page-count="2" meta:paragraph-count="26" meta:word-count="52" meta:character-count="601" meta:non-whitespace-character-count="570"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2014-05-15T10:09:19</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="2" meta:image-count="0" meta:object-count="0" meta:page-count="2" meta:paragraph-count="26" meta:word-count="52" meta:character-count="601" meta:non-whitespace-character-count="570"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">33313</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14104</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">8070</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">3401</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">1501</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">33311</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14102</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14737</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">1701598</config:config-item>
<config:config-item config:name="Rsid" config:type="int">1746298</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -473,7 +473,7 @@
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name="First_20_Page">
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name="">
<style:paragraph-properties style:page-number="auto" fo:break-before="page"/>
<style:text-properties style:font-name="Liberation Sans1" style:text-underline-style="none"/>
</style:style>
@ -484,6 +484,17 @@
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-size="16pt" style:font-size-asian="16pt" style:font-size-complex="16pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Standard" style:master-page-name="First_20_Page">
<style:paragraph-properties style:page-number="auto" fo:break-before="page"/>
<style:text-properties style:font-name="Liberation Sans1" style:text-underline-style="none"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:text-properties fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-size="16pt" style:font-size-asian="16pt" style:font-size-complex="16pt"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
@ -526,14 +537,14 @@
<table:table-column table:style-name="Header.A" table:number-columns-repeated="3"/>
<table:table-row>
<table:table-cell table:style-name="Header.A1" office:value-type="string">
<text:h text:style-name="P11" text:outline-level="1"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:h text:style-name="P14" text:outline-level="1"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:h>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:h text:style-name="P12" text:outline-level="1">Entry Detail</text:h>
<text:h text:style-name="P15" text:outline-level="1">Entry Detail</text:h>
</table:table-cell>
<table:table-cell table:style-name="Header.A1" office:value-type="string">
<text:p text:style-name="P3"><text:placeholder text:placeholder-type="text">&lt;format_date(datetime.date.today(), user.language)&gt;</text:placeholder></text:p>
@ -554,7 +565,7 @@
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;entry in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;entry in records&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Tabla1" table:style-name="Tabla1">
<table:table-column table:style-name="Tabla1.A"/>
<table:table-column table:style-name="Tabla1.B"/>

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2017-09-14T11:41:02.109374203</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="315" meta:image-count="0" meta:non-whitespace-character-count="298" meta:object-count="0" meta:page-count="1" meta:paragraph-count="7" meta:table-count="1" meta:word-count="17"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2017-09-14T11:41:02.109374203</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:character-count="315" meta:image-count="0" meta:non-whitespace-character-count="298" meta:object-count="0" meta:page-count="1" meta:paragraph-count="7" meta:table-count="1" meta:word-count="17"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">18875</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">8366</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">1501</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">7751</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">1501</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">18874</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">8364</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14737</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">180</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">1822742</config:config-item>
<config:config-item config:name="Rsid" config:type="int">1900282</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2015-03-19T19:35:52</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="1086" meta:image-count="0" meta:non-whitespace-character-count="1038" meta:object-count="0" meta:page-count="2" meta:paragraph-count="38" meta:table-count="2" meta:word-count="86"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2015-03-19T19:35:52</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:character-count="1108" meta:image-count="0" meta:non-whitespace-character-count="1060" meta:object-count="0" meta:page-count="2" meta:paragraph-count="38" meta:table-count="2" meta:word-count="86"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">30886</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14072</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">1593</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">3401</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">1501</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">30884</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14071</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14737</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">110</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">2400983</config:config-item>
<config:config-item config:name="Rsid" config:type="int">2575825</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -470,7 +470,7 @@
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false" fo:padding="0.049cm" fo:border="0.06pt solid #000000" style:shadow="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Text_20_body" style:master-page-name="First_20_Page">
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Text_20_body" style:master-page-name="">
<style:paragraph-properties style:page-number="auto" fo:break-before="page"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
@ -497,6 +497,33 @@
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" officeooo:paragraph-rsid="001d79e3"/>
</style:style>
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Text_20_body" style:master-page-name="First_20_Page">
<style:paragraph-properties style:page-number="auto" fo:break-before="page"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="16pt" style:font-size-asian="16pt" style:font-size-complex="16pt"/>
</style:style>
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:paragraph-properties fo:margin-top="0.12cm" fo:margin-bottom="0.011cm" loext:contextual-spacing="false" fo:line-height="0.499cm" fo:text-align="end" style:justify-single-word="false" fo:break-before="page">
<style:tab-stops>
<style:tab-stop style:position="26.684cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" officeooo:rsid="001d79e3" officeooo:paragraph-rsid="001f6fcf"/>
</style:style>
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:paragraph-properties fo:margin-top="0.12cm" fo:margin-bottom="0.011cm" loext:contextual-spacing="false" fo:line-height="0.499cm">
<style:tab-stops>
<style:tab-stop style:position="26.684cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" officeooo:paragraph-rsid="001d79e3"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties fo:font-size="11pt" fo:font-style="normal" fo:font-weight="normal" style:font-size-asian="11pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style>
@ -554,14 +581,14 @@
<table:table-column table:style-name="Tabla1.B"/>
<table:table-row table:style-name="Tabla1.1">
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
<text:h text:style-name="P25" text:outline-level="1"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;7cm&apos;, &apos;2cm&apos;)" text:anchor-type="paragraph" svg:x="0.15cm" svg:y="-0.011cm" svg:width="7.001cm" draw:z-index="0">
<text:h text:style-name="P30" text:outline-level="1"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;7cm&apos;, &apos;2cm&apos;)" text:anchor-type="paragraph" svg:x="0.15cm" svg:y="-0.011cm" svg:width="7.001cm" draw:z-index="0">
<draw:text-box fo:min-height="2cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:h>
</table:table-cell>
<table:table-cell table:style-name="Tabla1.B1" office:value-type="string">
<text:h text:style-name="P26" text:outline-level="1">Pending Services Unplanned</text:h>
<text:h text:style-name="P31" text:outline-level="1">Pending Services Unplanned</text:h>
</table:table-cell>
</table:table-row>
</table:table>
@ -584,7 +611,7 @@
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="P24"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;laboratory in objects.values()&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P29"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;laboratory in records.values()&quot;&gt;</text:placeholder></text:p>
<text:h text:style-name="P27" text:outline-level="2"><text:span text:style-name="T2">Date range</text:span><text:span text:style-name="T1">: </text:span><text:span text:style-name="T1"><text:placeholder text:placeholder-type="text">&lt;format_date(start_date, user.language)&gt;</text:placeholder></text:span><text:span text:style-name="T1"><text:s/>- </text:span><text:span text:style-name="T1"><text:placeholder text:placeholder-type="text">&lt;format_date(end_date, user.language)&gt;</text:placeholder></text:span></text:h>
<text:h text:style-name="P28" text:outline-level="2"><text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;laboratory.laboratory&gt;</text:placeholder></text:span><text:span text:style-name="T1"><text:tab/>Date of issue: </text:span><text:span text:style-name="T1"><text:placeholder text:placeholder-type="text">&lt;format_date(datetime.date.today(), user.language)&gt;</text:placeholder></text:span></text:h>
<table:table table:name="Tabla2" table:style-name="Tabla2">

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
<office:meta><meta:creation-date>2009-04-16T11:32:48.39</meta:creation-date><meta:editing-duration>P9DT18H57M2S</meta:editing-duration><meta:editing-cycles>21</meta:editing-cycles><meta:generator>LibreOffice/6.1.5.2$Linux_X86_64 LibreOffice_project/10$Build-2</meta:generator><dc:date>2019-05-29T16:39:23.195575724</dc:date><meta:document-statistic meta:table-count="3" meta:cell-count="77" meta:object-count="0"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2009-04-16T11:32:48.39</meta:creation-date><meta:editing-duration>P9DT18H57M39S</meta:editing-duration><meta:editing-cycles>22</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><dc:date>2021-09-22T17:09:52.148106607</dc:date><meta:document-statistic meta:table-count="3" meta:cell-count="77" meta:object-count="0"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="VisibleAreaTop" config:type="int">451</config:config-item>
@ -14,7 +14,7 @@
<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">0</config:config-item>
<config:config-item config:name="CursorPositionY" config:type="int">19</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>
@ -32,7 +32,7 @@
</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">1125</config:config-item>
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1305</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>
@ -40,7 +40,7 @@
<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="GridColor" config:type="long">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>
@ -64,18 +64,17 @@
<config:config-item config:name="IsKernAsianPunctuation" 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="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">lQH+/0dlbmVyaWMgUHJpbnRlcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAU0dFTlBSVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAtgAAAAAAAAAIAFZUAAAkbQAASm9iRGF0YSAxCnByaW50ZXI9R2VuZXJpYyBQcmludGVyCm9yaWVudGF0aW9uPVBvcnRyYWl0CmNvcGllcz0xCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MApjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKRHVwbGV4Ok5vbmUAUGFnZVNpemU6TGV0dGVyAAASAENPTVBBVF9EVVBMRVhfTU9ERQ8ARHVwbGV4TW9kZTo6T2Zm</config:config-item>
<config:config-item config:name="PrinterName" config:type="string">Generic Printer</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">mAH+/0hQLUxhc2VySmV0LTEwMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpIUC1MYXNlckpldC0xMDE4AAAAAAAAAAAAAAAWAAMAtQAAAAAAAwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9SFAtTGFzZXJKZXQtMTAxOApvcmllbnRhdGlvbj1Qb3J0cmFpdApjb3BpZXM9MQpjb2xsYXRlPWZhbHNlCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MQpjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKUGFnZVNpemU6QTQAABIAQ09NUEFUX0RVUExFWF9NT0RFEwBEdXBsZXhNb2RlOjpVbmtub3du</config:config-item>
<config:config-item config:name="PrinterName" config:type="string">HP-LaserJet-1018</config:config-item>
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
<config:config-item config:name="HasColumnRowHeaders" 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="UpdateFromTemplate" config:type="boolean">true</config:config-item>
<config:config-item config:name="ShowZeroValues" config:type="boolean">true</config:config-item>
<config:config-item config:name="GridColor" config:type="int">12632256</config:config-item>
<config:config-item config:name="GridColor" config:type="long">12632256</config:config-item>
<config:config-item config:name="ShowPageBreaks" 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="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsOutlineSymbolsSet" config:type="boolean">true</config:config-item>
<config:config-item config:name="IsDocumentShared" config:type="boolean">false</config:config-item>
<config:config-item config:name="ShowNotes" config:type="boolean">true</config:config-item>
@ -102,7 +101,6 @@
<style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Andale Sans UI" svg:font-family="&apos;Andale Sans UI&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Tahoma1" svg:font-family="Tahoma" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
<office:styles>
@ -295,7 +293,7 @@
<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="2019-05-29">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="16:39:08.851572455">00:00:00</text:time></text:p>
<text:p><text:date style:data-style-name="N2" text:date-value="2021-09-22">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="17:09:15.104615091">00:00:00</text:time></text:p>
</style:region-right>
</style:header>
<style:header-left style:display="false"/>
@ -397,7 +395,7 @@
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="ro2">
<table:table-cell table:style-name="ce21" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="13" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://for%20each=%22line%20in%20objects%22" xlink:type="simple">for each=&quot;line in objects&quot;</text:a></text:p>
<table:table-cell table:style-name="ce21" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="13" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://for%20each=%22line%20in%20records%22" xlink:type="simple">for each=&quot;line in records&quot;</text:a></text:p>
</table:table-cell>
<table:covered-table-cell table:number-columns-repeated="12"/>
<table:table-cell table:number-columns-repeated="4"/>
@ -506,7 +504,7 @@
<table:table-cell/>
</table:table-row>
<table:table-row table:style-name="ro2">
<table:table-cell table:style-name="ce21" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="13" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://for%20each=%22line%20in%20objects%22" xlink:type="simple">for each=&quot;line in objects&quot;</text:a></text:p>
<table:table-cell table:style-name="ce21" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="13" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://for%20each=%22line%20in%20records%22" xlink:type="simple">for each=&quot;line in records&quot;</text:a></text:p>
</table:table-cell>
<table:covered-table-cell table:number-columns-repeated="12"/>
<table:table-cell table:number-columns-repeated="4"/>

View File

@ -25,16 +25,16 @@
<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">80</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">Hoja1</config:config-item>
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1344</config:config-item>
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1305</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">80</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>
@ -64,7 +64,7 @@
<config:config-item config:name="IsKernAsianPunctuation" 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="ApplyUserData" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">pwH+/0hQLUxhc2VySmV0LTEwMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpIUC1MYXNlckpldC0xMDE4AAAAAAAAAAAAAAAWAAMAxAAAAAAAAwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9SFAtTGFzZXJKZXQtMTAxOApvcmllbnRhdGlvbj1Qb3J0cmFpdApjb3BpZXM9MQpjb2xsYXRlPWZhbHNlCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MQpjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKUGFnZVNpemU6QTQASW5wdXRTbG90OkF1dG8AABIAQ09NUEFUX0RVUExFWF9NT0RFEwBEdXBsZXhNb2RlOjpVbmtub3du</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">pwH+/0hQLUxhc2VySmV0LTEwMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpIUC1MYXNlckpldC0xMDE4AAAAAAAAAAAAAAAWAAMAxAAAAAAAAwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9SFAtTGFzZXJKZXQtMTAxOApvcmllbnRhdGlvbj1Qb3J0cmFpdApjb3BpZXM9MQpjb2xsYXRlPWZhbHNlCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MQpjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKSW5wdXRTbG90OkF1dG8AUGFnZVNpemU6QTQAABIAQ09NUEFUX0RVUExFWF9NT0RFEwBEdXBsZXhNb2RlOjpVbmtub3du</config:config-item>
<config:config-item config:name="PrinterName" config:type="string">HP-LaserJet-1018</config:config-item>
<config:config-item config:name="AutoCalculate" config:type="boolean">true</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">3</config:config-item>
@ -208,6 +208,15 @@
<style:style style:name="ce3" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce7" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce8" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce9" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:page-layout style:name="pm1">
<style:page-layout-properties style:writing-mode="lr-tb"/>
<style:header-style>
@ -231,9 +240,15 @@
</style:footer-style>
</style:page-layout>
<style:style style:name="T1" style:family="text">
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" style:text-underline-style="none" style:text-underline-color="font-color" style:text-line-through-type="none" fo:font-style="normal" style:text-outline="false" fo:text-shadow="none" style:text-line-through-mode="continuous" fo:language="es" fo:country="AR" style:language-asian="zh" style:country-asian="CN" style:language-complex="hi" style:country-complex="IN" style:font-name-asian="Noto Sans CJK SC" style:font-name-complex="Lohit Devanagari" style:font-size-asian="10pt" style:font-size-complex="10pt" style:font-weight-asian="normal" style:font-weight-complex="normal" style:font-style-asian="normal" style:font-style-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:language="es" fo:country="AR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Devanagari" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="es" fo:country="AR" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-name-asian="Noto Sans CJK SC" style:font-size-asian="10pt" style:language-asian="zh" style:country-asian="CN" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-name-complex="Lohit Devanagari" style:font-size-complex="10pt" style:language-complex="hi" style:country-complex="IN" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" style:text-underline-style="none" style:text-underline-color="font-color" style:text-line-through-type="none" fo:font-style="normal" style:text-outline="false" fo:text-shadow="none" style:text-line-through-mode="continuous" fo:language="es" fo:country="AR" style:language-asian="zh" style:country-asian="CN" style:language-complex="hi" style:country-complex="IN" style:font-name-asian="Noto Sans CJK SC" style:font-name-complex="Lohit Devanagari" style:font-size-asian="10pt" style:font-size-complex="10pt" style:font-weight-asian="normal" style:font-weight-complex="normal" style:font-style-asian="normal" style:font-style-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="T4" style:family="text">
<style:text-properties style:font-name-asian="Noto Sans CJK SC" fo:font-size="10pt" fo:font-weight="normal" style:text-underline-style="none" style:text-underline-color="font-color" style:text-line-through-type="none" fo:font-style="normal" style:text-outline="false" fo:text-shadow="none" style:text-line-through-mode="continuous" fo:language="es" fo:country="AR" style:language-asian="zh" style:country-asian="CN" style:font-name="Liberation Sans" style:language-complex="hi" style:country-complex="IN" style:font-name-complex="Lohit Devanagari" style:font-size-asian="10pt" style:font-size-complex="10pt" style:font-weight-asian="normal" style:font-weight-complex="normal" style:font-style-asian="normal" style:font-style-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
</office:automatic-styles>
@ -254,7 +269,7 @@
<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="2020-07-01">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="10:16:30.462351358">00:00:00</text:time></text:p>
<text:p><text:date style:data-style-name="N2" text:date-value="2021-09-22">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="17:13:01.967734194">00:00:00</text:time></text:p>
</style:region-right>
</style:header>
<style:header-left style:display="false"/>
@ -273,7 +288,7 @@
<table:table-column table:style-name="co1" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co3" table:number-columns-repeated="1020" table:default-cell-style-name="Default"/>
<table:table-row table:style-name="ro1">
<table:table-cell table:style-name="ce1" office:value-type="string" calcext:value-type="string">
<table:table-cell table:style-name="ce7" office:value-type="string" calcext:value-type="string">
<text:p>Referral of Services</text:p>
</table:table-cell>
<table:table-cell table:number-columns-repeated="1023"/>
@ -287,12 +302,12 @@
<table:table-cell table:number-columns-repeated="1023"/>
</table:table-row>
<table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T1">Laboratory: </text:span><text:span text:style-name="T1"><text:a xlink:href="relatorio://record.laboratory.name" xlink:type="simple">record.laboratory.name</text:a></text:span></text:p>
<table:table-cell table:style-name="ce8" office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T3">Laboratory: </text:span><text:span text:style-name="T3"><text:a xlink:href="relatorio://record.laboratory.name" xlink:type="simple">record.laboratory.name</text:a></text:span></text:p>
</table:table-cell>
<table:table-cell table:number-columns-repeated="1023"/>
</table:table-row>
<table:table-row table:style-name="ro4">
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T1">Date: </text:span><text:span text:style-name="T1"><text:a xlink:href="relatorio://format_date(record.date,%20user.language)" xlink:type="simple">format_date(record.date, user.language)</text:a></text:span></text:p>
<table:table-cell table:style-name="ce8" office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T3">Date: </text:span><text:span text:style-name="T3"><text:a xlink:href="relatorio://format_date(record.date,%20user.language)" xlink:type="simple">format_date(record.date, user.language)</text:a></text:span></text:p>
</table:table-cell>
<table:table-cell table:number-columns-repeated="1023"/>
</table:table-row>
@ -300,20 +315,20 @@
<table:table-cell table:number-columns-repeated="1024"/>
</table:table-row>
<table:table-row table:style-name="ro5">
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string">
<table:table-cell table:style-name="ce8" office:value-type="string" calcext:value-type="string">
<text:p>Fraction</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string">
<table:table-cell table:style-name="ce8" office:value-type="string" calcext:value-type="string">
<text:p>Analysis</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce2"/>
<table:table-cell table:style-name="ce2" office:value-type="string" calcext:value-type="string">
<table:table-cell table:style-name="ce8"/>
<table:table-cell table:style-name="ce8" office:value-type="string" calcext:value-type="string">
<text:p>Method</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce2" table:number-columns-repeated="1020"/>
<table:table-cell table:style-name="ce8" table:number-columns-repeated="1020"/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T2"><text:a xlink:href="relatorio://for%20each=%22line%20in%20record.services%22" xlink:type="simple">for each=&quot;line in record.services&quot;</text:a></text:span></text:p>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T4"><text:a xlink:href="relatorio://for%20each=%22line%20in%20record.services%22" xlink:type="simple">for each=&quot;line in record.services&quot;</text:a></text:span></text:p>
</table:table-cell>
<table:table-cell table:number-columns-repeated="1023"/>
</table:table-row>
@ -327,7 +342,7 @@
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://line.method.code" xlink:type="simple">line.method.code</text:a></text:p>
</table:table-cell>
<table:table-cell table:number-columns-repeated="16"/>
<table:table-cell table:style-name="ce3" table:number-columns-repeated="1004"/>
<table:table-cell table:style-name="ce9" table:number-columns-repeated="1004"/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio:///for" xlink:type="simple">/for</text:a></text:p>

View File

@ -1,29 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2015-03-19T10:18:10</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="0" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="2" meta:word-count="3" meta:character-count="18" meta:non-whitespace-character-count="17"/></office:meta>
<office:meta><meta:creation-date>2015-03-19T10:18:10</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:character-count="18" meta:image-count="0" meta:non-whitespace-character-count="17" meta:object-count="0" meta:page-count="1" meta:paragraph-count="2" meta:table-count="0" meta:word-count="3"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">71069</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">29476</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">26033</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">7751</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">4098</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">71067</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">29475</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14737</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">50</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">true</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-indexed>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">786368</config:config-item>
<config:config-item config:name="Rsid" config:type="int">863655</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -294,51 +294,51 @@
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="3pt" officeooo:paragraph-rsid="00059316" style:font-size-asian="2.59999990463257pt" style:font-size-complex="3pt"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="3pt" style:font-size-asian="2.59999990463257pt" style:font-size-complex="3pt"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:text-autospace="none"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="3pt" officeooo:paragraph-rsid="0003db99" style:font-size-asian="2.59999990463257pt" style:font-size-complex="3pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="3pt" style:font-size-asian="2.59999990463257pt" style:font-size-complex="3pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties officeooo:rsid="000a9787" officeooo:paragraph-rsid="000a9787"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0cm" loext:contextual-spacing="false" style:shadow="none"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="3pt" style:font-size-asian="2.59999990463257pt" style:font-size-complex="3pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="00059316" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="000a0177" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="00059316" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="000a0177" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="00059316" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="00059316" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="000a0177" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Standard">
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" fo:break-before="page" style:text-autospace="none"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="6pt" fo:font-weight="bold" officeooo:paragraph-rsid="00059316" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false" style:text-autospace="none"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Sans" fo:font-size="3pt" officeooo:paragraph-rsid="0003db99" style:font-size-asian="2.59999990463257pt" style:font-size-complex="3pt"/>
</style:style>
<style:style style:name="fr1" style:family="graphic" style:parent-style-name="Frameformat">
<style:graphic-properties style:vertical-pos="from-top" style:vertical-rel="paragraph" style:horizontal-pos="center" style:horizontal-rel="page" fo:padding="0cm" fo:border="none" style:shadow="none" draw:shadow-opacity="100%" style:flow-with-text="true" loext:rel-width-rel="paragraph" loext:rel-height-rel="paragraph"/>
</style:style>
@ -369,12 +369,12 @@
<text:p text:style-name="P2"><text:placeholder text:placeholder-type="text">&lt;title&gt;</text:placeholder></text:p>
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (plot, &apos;image/jpeg&apos;)" text:anchor-type="char" svg:y="0.61cm" style:rel-width="100%" svg:height="12.85cm" draw:z-index="0">
<draw:text-box fo:min-height="50%" fo:min-width="19.001cm">
<text:p text:style-name="P10"/>
<text:p text:style-name="P11"/>
</draw:text-box>
</draw:frame></text:p>
<text:p text:style-name="P3"/>
<text:p text:style-name="P9"/>
<text:p text:style-name="P20"/>
<text:p text:style-name="P10"/>
<text:p text:style-name="P8"/>
</office:text>
</office:body>
</office:document>

View File

@ -3850,7 +3850,7 @@ class ResultReport(Report):
return result
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Company = pool.get('company.company')
ResultsDetail = pool.get('lims.results_report.version.detail')
@ -3859,7 +3859,7 @@ class ResultReport(Report):
Sample = pool.get('lims.sample')
RangeType = pool.get('lims.range.type')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
if data.get('alt_lang'):
lang_code = data['alt_lang']

View File

@ -6244,12 +6244,12 @@ class CountersampleStorageReport(Report):
__name__ = 'lims.countersample.storage.report'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Fraction = pool.get('lims.fraction')
NotebookLine = pool.get('lims.notebook.line')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['report_date_from'] = data['report_date_from']
@ -6327,7 +6327,7 @@ class CountersampleStorageReport(Report):
ordered_objects = sorted(list(objects.values()),
key=lambda x: x['location'])
report_context['objects'] = ordered_objects
report_context['records'] = ordered_objects
return report_context
@classmethod
@ -6439,11 +6439,11 @@ class CountersampleDischargeReport(Report):
__name__ = 'lims.countersample.discharge.report'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Fraction = pool.get('lims.fraction')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['expiry_date_from'] = data['expiry_date_from']
@ -6486,7 +6486,7 @@ class CountersampleDischargeReport(Report):
ordered_objects = sorted(list(objects.values()),
key=lambda x: x['location'])
report_context['objects'] = ordered_objects
report_context['records'] = ordered_objects
return report_context
@classmethod

View File

@ -1224,13 +1224,13 @@ class AnalysisSheetReport(Report):
return []
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
AnalysisSheet = pool.get('lims.analysis_sheet')
Field = pool.get('lims.interface.table.field')
Data = pool.get('lims.interface.data')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
sheet = AnalysisSheet(data.get('id'))
print_expression_column = data.get('print_expression_column')

View File

@ -471,8 +471,8 @@ class ResultReport(metaclass=PoolMeta):
__name__ = 'lims.result_report'
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
report_context['state_image'] = cls.get_state_image
return report_context

View File

@ -68,11 +68,11 @@ class FamilyEquivalentReport(Report):
__name__ = 'lims.family.equivalent.report'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Company = pool.get('company.company')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = Company(Transaction().context['company'])
report_context['records'] = cls._get_family_records(records)

View File

@ -937,12 +937,11 @@ class ProjectGLPReport01(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
ProjectSampleInCustody = Pool().get(
'lims.project.sample_in_custody')
report_context = super().get_context(
records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['stp_number'] = records[0].stp_number
@ -978,7 +977,7 @@ class ProjectGLPReport01(Report):
sample.file_operator_responsible.rec_name
if sample.file_operator_responsible else ''),
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1000,11 +999,10 @@ class ProjectGLPReport02(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
Fraction = Pool().get('lims.fraction')
report_context = super().get_context(
records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['stp_number'] = records[0].stp_number
@ -1045,7 +1043,7 @@ class ProjectGLPReport02(Report):
'comments': str(fraction.comments or '')
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1102,13 +1100,12 @@ class ProjectGLPReport03(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Project = pool.get('lims.project')
Fraction = pool.get('lims.fraction')
report_context = super().get_context(
records, data)
report_context = super().get_context(records, header, data)
project = Project(data['id'])
@ -1141,7 +1138,7 @@ class ProjectGLPReport03(Report):
'countersample_date': fraction.countersample_date or '',
'comments': str(fraction.comments or ''),
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1163,12 +1160,12 @@ class ProjectGLPReport04(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Fraction = pool.get('lims.fraction')
Move = pool.get('stock.move')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['stp_number'] = records[0].stp_number
@ -1211,7 +1208,7 @@ class ProjectGLPReport04(Report):
'shipment': move.shipment.number,
'responsible': move.create_uid.name,
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1269,12 +1266,12 @@ class ProjectGLPReport05(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Project = pool.get('lims.project')
Fraction = pool.get('lims.fraction')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
project = Project(data['id'])
@ -1305,7 +1302,7 @@ class ProjectGLPReport05(Report):
'discharge_date': fraction.discharge_date or '',
'comments': str(fraction.comments or ''),
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1327,14 +1324,14 @@ class ProjectGLPReport06(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
ProjectDevAndAmndmnt = pool.get(
'lims.project.deviation_amendment')
ProjectDevAndAmndmntProfessional = pool.get(
'lims.project.deviation_amendment.professional')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['stp_number'] = records[0].stp_number
@ -1363,7 +1360,7 @@ class ProjectGLPReport06(Report):
'date': p.date or '',
} for p in professionals],
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1407,12 +1404,12 @@ class ProjectGLPReport07(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Entry = pool.get('lims.entry')
Fraction = pool.get('lims.fraction')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['stp_number'] = records[0].stp_number
@ -1449,7 +1446,7 @@ class ProjectGLPReport07(Report):
'label': fraction.sample.label,
'storage_location': fraction.storage_location.code,
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1471,12 +1468,12 @@ class ProjectGLPReport08(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Entry = pool.get('lims.entry')
Fraction = pool.get('lims.fraction')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['stp_number'] = records[0].stp_number
@ -1510,7 +1507,7 @@ class ProjectGLPReport08(Report):
'label': fraction.sample.label,
'sample_weight': fraction.sample.sample_weight,
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1532,7 +1529,7 @@ class ProjectGLPReport09(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
cursor = Transaction().connection.cursor()
pool = Pool()
Fraction = pool.get('lims.fraction')
@ -1541,7 +1538,7 @@ class ProjectGLPReport09(Report):
ResultsReport = pool.get('lims.results_report')
Analysis = pool.get('lims.analysis')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['stp_number'] = records[0].stp_number
@ -1614,7 +1611,7 @@ class ProjectGLPReport09(Report):
'result': re if re else '',
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1674,11 +1671,11 @@ class ProjectGLPReport10(Report):
__name__ = 'lims.project.glp_report.10'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Project = pool.get('lims.project')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['date_from'] = data['date_from']
@ -1781,7 +1778,7 @@ class ProjectGLPReport10(Report):
'comments': str(s.comments or ''),
} for s in project.stp_samples_in_custody],
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1825,11 +1822,11 @@ class ProjectGLPReport11(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
ProjectReferenceElement = Pool().get(
'lims.project.reference_element')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['stp_number'] = records[0].stp_number
@ -1903,11 +1900,11 @@ class ProjectGLPReport12(Report):
__name__ = 'lims.project.glp_report.12'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
ProjectChangeLog = pool.get('lims.project.stp_changelog')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['date_from'] = data['date_from']
@ -1963,7 +1960,7 @@ class ProjectGLPReport12(Report):
} for p in project.stp_laboratory_professionals],
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@ -1985,8 +1982,8 @@ class ProjectGLPReportStudyPlan(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
project = records[0]
@ -2079,8 +2076,8 @@ class ProjectGLPReportFinalRP(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
project = records[0]
@ -2319,8 +2316,8 @@ class ProjectGLPReportFinalFOR(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
project = records[0]
@ -2564,8 +2561,8 @@ class ProjectGLPReportAnalyticalPhase(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
report_context = super().get_context(records, data)
def get_context(cls, records, header, data):
report_context = super().get_context(records, header, data)
project = records[0]
@ -2801,11 +2798,11 @@ class ProjectGLPReport13(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Fraction = pool.get('lims.fraction')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['company'] = report_context['user'].company
report_context['stp_matrix'] = records[0].stp_matrix_client_description
@ -2826,7 +2823,7 @@ class ProjectGLPReport13(Report):
'label': fraction.sample.label,
'fraction_type': fraction.type.code,
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@staticmethod

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="1056" meta:image-count="0" meta:non-whitespace-character-count="955" meta:object-count="0" meta:page-count="1" meta:paragraph-count="36" meta:table-count="3" meta:word-count="133"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="36" meta:word-count="133" meta:character-count="1056" meta:non-whitespace-character-count="955"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">7197</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">28312</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">12548</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">1249</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">4140</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2900</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">5962</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">28310</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">12547</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">7197</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">21934</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">120</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4745585</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4860755</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -430,70 +430,70 @@
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:font-weight="bold" officeooo:rsid="003d4490" officeooo:paragraph-rsid="003d4490" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="0027ef03" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:font-weight="bold" officeooo:rsid="003ffba9" officeooo:paragraph-rsid="003ffba9" style:font-size-asian="13pt" style:font-weight-asian="bold" style:font-size-complex="13pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-weight="bold" officeooo:rsid="001f0624" officeooo:paragraph-rsid="001f0624" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:rsid="001f0624" officeooo:paragraph-rsid="001f0624" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00268e76" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="0020fde2" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="002b0643" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00268e76" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="0038f2de" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="0020fde2" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:rsid="004741d3" officeooo:paragraph-rsid="004741d3" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="002b0643" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="0038f2de" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:rsid="004741d3" officeooo:paragraph-rsid="004741d3" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="001e2c5a" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:paragraph-properties fo:margin-top="0.199cm" fo:margin-bottom="0.199cm" loext:contextual-spacing="false"/>
<style:text-properties style:font-name="Liberation Sans1" officeooo:rsid="001f0624" officeooo:paragraph-rsid="001f0624"/>
@ -567,18 +567,18 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P4">Sample reception</text:p>
<text:p text:style-name="P5">Temporary input and output of samples to the file</text:p>
<text:p text:style-name="P6">Sample reception</text:p>
<text:p text:style-name="P7">Temporary input and output of samples to the file</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P6">GLP 005 - Annex 3 </text:p>
<text:p text:style-name="P8">GLP 005 - Annex 3 </text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -607,7 +607,7 @@
<text:p text:style-name="P30"><text:span text:style-name="T1">STUDY PLAN:</text:span> <text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P17">Sponsor:</text:p>
<text:p text:style-name="P19">Sponsor:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P29"><text:placeholder text:placeholder-type="text">&lt;stp_sponsor&gt;</text:placeholder></text:p>
@ -616,7 +616,7 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B2" office:value-type="string">
<text:p text:style-name="P17">Matrix: </text:p>
<text:p text:style-name="P19">Matrix: </text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C2" office:value-type="string">
<text:p text:style-name="P29"><text:placeholder text:placeholder-type="text">&lt;stp_matrix&gt;</text:placeholder></text:p>
@ -625,7 +625,7 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B3" office:value-type="string">
<text:p text:style-name="P17">Product brand:</text:p>
<text:p text:style-name="P19">Product brand:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C3" office:value-type="string">
<text:p text:style-name="P29"><text:placeholder text:placeholder-type="text">&lt;stp_product_brand&gt;</text:placeholder></text:p>
@ -633,7 +633,7 @@
</table:table-row>
</table:table>
<text:p text:style-name="P21"/>
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in objects.values()&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in records.values()&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Detail" table:style-name="Detail">
<table:table-column table:style-name="Detail.A"/>
<table:table-column table:style-name="Detail.B"/>
@ -660,7 +660,7 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A2" table:number-columns-spanned="7" office:value-type="string">
<text:p text:style-name="P7">Input</text:p>
<text:p text:style-name="P9">Input</text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -675,7 +675,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P15">Reception date</text:p>
<text:p text:style-name="P17">Reception date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B3" office:value-type="string">
<text:p text:style-name="P24">Packages quantity and type</text:p>
@ -696,7 +696,7 @@
<text:p text:style-name="P24">File operator responsible / </text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.H3" office:value-type="string">
<text:p text:style-name="P8">Output date <text:span text:style-name="T2">*</text:span></text:p>
<text:p text:style-name="P10">Output date <text:span text:style-name="T2">*</text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.I3" office:value-type="string">
<text:p text:style-name="P26">Retire responsible/</text:p>
@ -704,7 +704,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;sample in record[&apos;samples&apos;]&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;sample in record[&apos;samples&apos;]&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -717,36 +717,36 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A5" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;sample[&apos;entry_date&apos;]&quot;&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;format_date(sample[&apos;entry_date&apos;], user.language)&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;sample[&apos;entry_date&apos;]&quot;&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;format_date(sample[&apos;entry_date&apos;], user.language)&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B5" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;packages&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;packages&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.C5" office:value-type="string">
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;temperature&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;temperature&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D5" office:value-type="string">
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;processing_state&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;processing_state&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.E5" office:value-type="string">
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;comments&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;comments&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F5" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;entry_responsible&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;entry_responsible&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G5" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;file_operator_responsible&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;file_operator_responsible&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.H5" office:value-type="string">
<text:p text:style-name="P10"/>
<text:p text:style-name="P12"/>
</table:table-cell>
<table:table-cell table:style-name="Detail.I5" office:value-type="string">
<text:p text:style-name="P10"/>
<text:p text:style-name="P12"/>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P18"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="1119" meta:image-count="0" meta:non-whitespace-character-count="1003" meta:object-count="0" meta:page-count="2" meta:paragraph-count="45" meta:table-count="6" meta:word-count="140"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="6" meta:image-count="0" meta:object-count="0" meta:page-count="2" meta:paragraph-count="45" meta:word-count="140" meta:character-count="1134" meta:non-whitespace-character-count="1018"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">33313</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14104</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2554</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">4080</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2900</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">9548</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">33311</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14102</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14737</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">6505210</config:config-item>
<config:config-item config:name="Rsid" config:type="int">6598944</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -466,95 +466,95 @@
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00316bb6" officeooo:paragraph-rsid="00316bb6" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-weight="bold" officeooo:rsid="001f0624" officeooo:paragraph-rsid="001f0624" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00316bb6" officeooo:paragraph-rsid="00316bb6" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-weight="bold" officeooo:rsid="001f0624" officeooo:paragraph-rsid="001f0624" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="001f0624" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="001f0624" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0037b270" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="003c086c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0041d397" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0037b270" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="003c086c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="003d98bd" officeooo:paragraph-rsid="003d98bd" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0041d397" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="00316bb6" officeooo:paragraph-rsid="0032389c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="00316bb6" officeooo:paragraph-rsid="003560c8" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="003d98bd" officeooo:paragraph-rsid="003d98bd" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="00316bb6" officeooo:paragraph-rsid="005bb79a" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="00316bb6" officeooo:paragraph-rsid="0032389c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="003d98bd" officeooo:paragraph-rsid="003d98bd" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="00316bb6" officeooo:paragraph-rsid="003560c8" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="003fcff7" officeooo:paragraph-rsid="003fcff7" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="00316bb6" officeooo:paragraph-rsid="005bb79a" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="003d98bd" officeooo:paragraph-rsid="003d98bd" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="003fcff7" officeooo:paragraph-rsid="003fcff7" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00316bb6" officeooo:paragraph-rsid="00316bb6" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="001e2c5a" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="normal" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="0042f513" style:font-size-asian="10.5pt" style:font-weight-asian="normal" style:font-size-complex="10.5pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
@ -648,18 +648,18 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="1">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="1">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P4">Control e identificación de Muestras </text:p>
<text:p text:style-name="P4">Ingreso y Egreso DEFINITIVO de Muestras para ANALIZAR</text:p>
<text:p text:style-name="P6">Control e identificación de Muestras </text:p>
<text:p text:style-name="P6">Ingreso y Egreso DEFINITIVO de Muestras para ANALIZAR</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P5"><text:span text:style-name="T1">BPL</text:span> 005 - An<text:span text:style-name="T1">e</text:span>x<text:span text:style-name="T1">o</text:span> 4 <text:span text:style-name="T2">Rev. 4</text:span></text:p>
<text:p text:style-name="P7"><text:span text:style-name="T1">BPL</text:span> 005 - An<text:span text:style-name="T1">e</text:span>x<text:span text:style-name="T1">o</text:span> 4 <text:span text:style-name="T2">Rev. 4</text:span></text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -689,7 +689,7 @@
<text:p text:style-name="P38"/>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P23">Sponsor:</text:p>
<text:p text:style-name="P25">Sponsor:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text">&lt;stp_sponsor&gt;</text:placeholder></text:p>
@ -698,7 +698,7 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B2" office:value-type="string">
<text:p text:style-name="P23">Matrix: </text:p>
<text:p text:style-name="P25">Matrix: </text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C2" office:value-type="string">
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text">&lt;stp_matrix&gt;</text:placeholder></text:p>
@ -707,7 +707,7 @@
<table:table-row table:style-name="Principal.3">
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B3" office:value-type="string">
<text:p text:style-name="P23">Product brand:</text:p>
<text:p text:style-name="P25">Product brand:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C3" office:value-type="string">
<text:p text:style-name="P37"><text:placeholder text:placeholder-type="text">&lt;stp_product_brand&gt;</text:placeholder></text:p>
@ -716,7 +716,7 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B4" office:value-type="string">
<text:p text:style-name="P24"/>
<text:p text:style-name="P26"/>
</table:table-cell>
<table:table-cell table:style-name="Principal.C4" office:value-type="string">
<text:p text:style-name="P37"/>
@ -728,27 +728,27 @@
<table:table-column table:style-name="Tabla1.A"/>
<table:table-row>
<table:table-cell table:style-name="Tabla1.A1" office:value-type="string">
<text:p text:style-name="P22">Control de pesos de muestras</text:p>
<text:p text:style-name="P24">Control de pesos de muestras</text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla1.A2" office:value-type="string">
<text:p text:style-name="P17">Cantidad mínima de muestra (dato obtenido del Plan de Estudio): <text:s/><text:span text:style-name="T4"><text:placeholder text:placeholder-type="text">&lt;min_qty_sample&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P19">Cantidad mínima de muestra (dato obtenido del Plan de Estudio): <text:s/><text:span text:style-name="T4"><text:placeholder text:placeholder-type="text">&lt;min_qty_sample&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla1.A2" office:value-type="string">
<text:p text:style-name="P18">Indicar conformidad con cantidad mínima de muestra:<text:span text:style-name="T3"> </text:span><text:span text:style-name="T4"><text:placeholder text:placeholder-type="text">&lt;min_qty_sample_compliance&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P20">Indicar conformidad con cantidad mínima de muestra:<text:span text:style-name="T3"> </text:span><text:span text:style-name="T4"><text:placeholder text:placeholder-type="text">&lt;min_qty_sample_compliance&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla1.A2" office:value-type="string">
<text:p text:style-name="P19">Balanza utilizada: <text:s/><text:span text:style-name="T4"><text:placeholder text:placeholder-type="text">&lt;balance_name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P21">Balanza utilizada: <text:s/><text:span text:style-name="T4"><text:placeholder text:placeholder-type="text">&lt;balance_name&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P28"/>
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in objects.values()&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in records.values()&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Detail" table:style-name="Detail">
<table:table-column table:style-name="Detail.A" table:number-columns-repeated="4"/>
<table:table-column table:style-name="Detail.E"/>
@ -774,7 +774,7 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A2" table:number-columns-spanned="6" office:value-type="string">
<text:p text:style-name="P6">Input</text:p>
<text:p text:style-name="P8">Input</text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -789,7 +789,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P15"><text:span>CODE </text:span><text:placeholder text:placeholder-type="text">&lt;company.short_name&gt;</text:placeholder></text:p>
<text:p text:style-name="P17">CODE <text:placeholder text:placeholder-type="text">&lt;company.short_name&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B3" office:value-type="string">
<text:p text:style-name="P33">Rótulo</text:p>
@ -806,7 +806,7 @@
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Detail.G3" office:value-type="string">
<text:p text:style-name="P9">Output date</text:p>
<text:p text:style-name="P11">Output date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G3" office:value-type="string">
<text:p text:style-name="P30">Laboratory responsible</text:p>
@ -817,7 +817,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;sample in record[&apos;samples&apos;]&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;sample in record[&apos;samples&apos;]&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -830,36 +830,36 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A5" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D5" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;label&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;label&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D5" office:value-type="string">
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;sample_weight&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;sample_weight&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D5" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;packages&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;packages&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.E5" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P12"/>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;comments&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"/>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;comments&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Detail.G5" office:value-type="string">
<text:p text:style-name="P10"/>
<text:p text:style-name="P12"/>
</table:table-cell>
<table:table-cell table:style-name="Detail.H5" office:value-type="string">
<text:p text:style-name="P10"/>
<text:p text:style-name="P12"/>
</table:table-cell>
<table:table-cell table:style-name="Detail.I5" office:value-type="string">
<text:p text:style-name="P10"/>
<text:p text:style-name="P12"/>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:number-columns-spanned="9" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"/>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"/>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -877,13 +877,13 @@
<table:table-column table:style-name="Tabla2.A"/>
<table:table-row>
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
<text:p text:style-name="P21">Observaciones generales:</text:p>
<text:p text:style-name="P23">Observaciones generales:</text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla2.A2" office:value-type="string">
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;project_comments&gt;</text:placeholder></text:p>
<text:p text:style-name="P7"/>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;project_comments&gt;</text:placeholder></text:p>
<text:p text:style-name="P9"/>
</table:table-cell>
</table:table-row>
</table:table>
@ -893,32 +893,32 @@
<table:table-column table:style-name="Tabla3.B"/>
<table:table-row>
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
<text:p text:style-name="P16">Resp. Ingreso de Muestras</text:p>
<text:p text:style-name="P18">Resp. Ingreso de Muestras</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
<text:p text:style-name="P16">Resp. Op. Archivo</text:p>
<text:p text:style-name="P18">Resp. Op. Archivo</text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
<text:p text:style-name="P16">Firma:</text:p>
<text:p text:style-name="P18">Firma:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
<text:p text:style-name="P16">Firma:</text:p>
<text:p text:style-name="P18">Firma:</text:p>
</table:table-cell>
</table:table-row>
<text:soft-page-break/>
<table:table-row>
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
<text:p text:style-name="P16">Fecha:</text:p>
<text:p text:style-name="P18">Fecha:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
<text:p text:style-name="P16">Fecha:</text:p>
<text:p text:style-name="P18">Fecha:</text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla3.A1" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P20">(*) Registrar el peso de cada muestra, cuando sea necesario o solo verificar conformidad (consultar al Director de Estudio / <text:span text:style-name="T6">Investigador Principal</text:span>).</text:p>
<text:p text:style-name="P22">(*) Registrar el peso de cada muestra, cuando sea necesario o solo verificar conformidad (consultar al Director de Estudio / <text:span text:style-name="T6">Investigador Principal</text:span>).</text:p>
</table:table-cell>
<table:covered-table-cell/>
</table:table-row>

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="738" meta:image-count="0" meta:non-whitespace-character-count="672" meta:object-count="0" meta:page-count="1" meta:paragraph-count="27" meta:table-count="4" meta:word-count="75"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="4" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="27" meta:word-count="75" meta:character-count="753" meta:non-whitespace-character-count="687"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">8255</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">33974</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">15480</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">13760</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2884</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">4103</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2900</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">7627</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">33973</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">15478</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">8255</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">22013</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4895401</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4968563</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -126,8 +126,8 @@
<style:font-face style:name="Arial1" svg:font-family="Arial" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Times New Roman" svg:font-family="&apos;Times New Roman&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Andale Sans UI" svg:font-family="&apos;Andale Sans UI&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
@ -431,7 +431,7 @@
<style:table-cell-properties fo:padding="0.097cm" fo:border-left="0.05pt solid #000000" fo:border-right="0.05pt solid #000000" fo:border-top="none" fo:border-bottom="0.05pt solid #000000"/>
</style:style>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans"/>
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
@ -439,7 +439,7 @@
<style:tab-stop style:position="11.959cm"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00497ab8" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00497ab8" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
@ -447,110 +447,110 @@
<style:tab-stop style:position="12.012cm"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="0044b3d5" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="0044b3d5" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans"/>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="00277e02" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="0041143f" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0048d0ee" officeooo:paragraph-rsid="0048d0ee" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="001f0624" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0044b3d5" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10.5pt" fo:font-weight="normal" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="10.5pt" style:font-weight-asian="normal" style:font-size-complex="10.5pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Standard">
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="11.959cm"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00497ab8" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00497ab8" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Standard">
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="12.012cm"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="0044b3d5" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="0044b3d5" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Standard">
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003114dd" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003114dd" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Standard">
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans" officeooo:paragraph-rsid="0044b3d5"/>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1" officeooo:paragraph-rsid="0044b3d5"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Standard">
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties officeooo:paragraph-rsid="0044b3d5"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="00277e02" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="0041143f" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0048d0ee" officeooo:paragraph-rsid="0048d0ee" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="001f0624" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0044b3d5" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="normal" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="0044b3d5" style:font-size-asian="10.5pt" style:font-weight-asian="normal" style:font-size-complex="10.5pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="001e2c5a" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="001e2c5a" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="20pt" fo:font-weight="bold" officeooo:paragraph-rsid="003ebac5" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="20pt" fo:font-weight="bold" officeooo:paragraph-rsid="003ebac5" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Arial1" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00497ab8" style:font-style-asian="normal" style:font-weight-asian="normal" style:text-emphasize="none"/>
@ -562,23 +562,23 @@
<style:text-properties fo:language="zxx" fo:country="none" officeooo:rsid="003114dd" style:language-asian="zxx" style:country-asian="none" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="T4" style:family="text">
<style:text-properties officeooo:rsid="00327c1f"/>
</style:style>
<style:style style:name="T5" style:family="text">
<style:text-properties officeooo:rsid="0041143f"/>
</style:style>
<style:style style:name="T6" style:family="text">
<style:text-properties officeooo:rsid="00316bb6"/>
</style:style>
<style:style style:name="T7" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Arial1" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:font-style-asian="normal" style:font-weight-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T8" style:family="text">
<style:style style:name="T5" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Arial1" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00497ab8" style:font-style-asian="normal" style:font-weight-asian="normal" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T9" style:family="text">
<style:style style:name="T6" style:family="text">
<style:text-properties fo:language="zxx" fo:country="none" officeooo:rsid="003114dd" style:language-asian="zxx" style:country-asian="none" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="T7" style:family="text">
<style:text-properties officeooo:rsid="00327c1f"/>
</style:style>
<style:style style:name="T8" style:family="text">
<style:text-properties officeooo:rsid="0041143f"/>
</style:style>
<style:style style:name="T9" style:family="text">
<style:text-properties officeooo:rsid="00316bb6"/>
</style:style>
<style:style style:name="T10" style:family="text">
<style:text-properties officeooo:rsid="00568c83"/>
</style:style>
@ -609,17 +609,17 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P4"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P12"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P5">Storage of Countersamples</text:p>
<text:p text:style-name="P13">Storage of Countersamples</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P6"><text:span text:style-name="T4">BPL</text:span> 005 - An<text:span text:style-name="T4">e</text:span>x<text:span text:style-name="T4">o</text:span> <text:span text:style-name="T5">5</text:span> <text:span text:style-name="T6">Rev. 3</text:span></text:p>
<text:p text:style-name="P14"><text:span text:style-name="T7">BPL</text:span> 005 - An<text:span text:style-name="T7">e</text:span>x<text:span text:style-name="T7">o</text:span> <text:span text:style-name="T8">5</text:span> <text:span text:style-name="T9">Rev. 3</text:span></text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -649,7 +649,7 @@
<text:p text:style-name="P29"><text:span text:style-name="T10">PLAN DE ESTUDIO: </text:span><text:span text:style-name="T10"><text:placeholder text:placeholder-type="text">&lt;stp_code&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P16">Report date range:</text:p>
<text:p text:style-name="P24">Report date range:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;format_date(report_date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(report_date_to, user.language)&gt;</text:placeholder></text:p>
@ -658,14 +658,14 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B2" office:value-type="string">
<text:p text:style-name="P17"/>
<text:p text:style-name="P25"/>
</table:table-cell>
<table:table-cell table:style-name="Principal.C2" office:value-type="string">
<text:p text:style-name="P27"/>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P20"/>
<text:p text:style-name="P5"/>
<table:table table:name="Detail" table:style-name="Detail">
<table:table-column table:style-name="Detail.A"/>
<table:table-column table:style-name="Detail.B" table:number-columns-repeated="2"/>
@ -676,46 +676,46 @@
<table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A1" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P14">Sample</text:p>
<text:p text:style-name="P22">Sample</text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Detail.A1" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P15">Sample input to file</text:p>
<text:p text:style-name="P23">Sample input to file</text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Detail.A1" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P23">Countersample</text:p>
<text:p text:style-name="P8">Countersample</text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
</table:table-row>
<table:table-row table:style-name="Detail.2">
<table:table-cell table:style-name="Detail.A2" office:value-type="string">
<text:p text:style-name="P10"><text:span>CODE </text:span><text:placeholder text:placeholder-type="text">&lt;company.short_name&gt;</text:placeholder></text:p>
<text:p text:style-name="P18">CODE <text:placeholder text:placeholder-type="text">&lt;company.short_name&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B2" office:value-type="string">
<text:p text:style-name="P24">Type</text:p>
<text:p text:style-name="P9">Type</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A2" office:value-type="string">
<text:p text:style-name="P24">Packages quantity and type</text:p>
<text:p text:style-name="P9">Packages quantity and type</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B2" office:value-type="string">
<text:p text:style-name="P24">Location</text:p>
<text:p text:style-name="P9">Location</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A2" office:value-type="string">
<text:p text:style-name="P24">Location</text:p>
<text:p text:style-name="P9">Location</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F2" office:value-type="string">
<text:p text:style-name="P12">Countersample date</text:p>
<text:p text:style-name="P20">Countersample date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G2" office:value-type="string">
<text:p text:style-name="P24">Comments</text:p>
<text:p text:style-name="P9">Comments</text:p>
</table:table-cell>
</table:table-row>
</table:table-header-rows>
<table:table-row>
<table:table-cell table:number-columns-spanned="7" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in records&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -726,30 +726,30 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A4" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;type&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;type&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.C4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;storage_location&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;storage_location&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.E4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;countersample_location&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;countersample_location&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;countersample_date&apos;], user.language) if fraction[&apos;countersample_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;countersample_date&apos;], user.language) if fraction[&apos;countersample_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;comments&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;comments&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:number-columns-spanned="7" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -759,24 +759,24 @@
<table:covered-table-cell/>
</table:table-row>
</table:table>
<text:p text:style-name="P20"/>
<text:p text:style-name="P25"/>
<text:p text:style-name="P5"/>
<text:p text:style-name="P10"/>
<table:table table:name="Tabla2" table:style-name="Tabla2">
<table:table-column table:style-name="Tabla2.A"/>
<table:table-row>
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
<text:p text:style-name="P13">General comments:</text:p>
<text:p text:style-name="P21">General comments:</text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla2.A2" office:value-type="string">
<text:p text:style-name="P18"/>
<text:p text:style-name="P18"/>
<text:p text:style-name="P11"/>
<text:p text:style-name="P26"/>
<text:p text:style-name="P26"/>
<text:p text:style-name="P19"/>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P26"/>
<text:p text:style-name="P11"/>
</office:text>
</office:body>
</office:document>

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="529" meta:image-count="0" meta:non-whitespace-character-count="502" meta:object-count="0" meta:page-count="1" meta:paragraph-count="29" meta:table-count="3" meta:word-count="54"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="29" meta:word-count="54" meta:character-count="529" meta:non-whitespace-character-count="502"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">33974</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">15480</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2884</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">4486</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2900</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">6653</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">33973</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">15478</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14737</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">3869541</config:config-item>
<config:config-item config:name="Rsid" config:type="int">3897010</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -421,55 +421,55 @@
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0031f2be" officeooo:paragraph-rsid="0031f2be" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003678ab" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0020fde2" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0033bbad" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="003450fa" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0020fde2" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0033bbad" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="003450fa" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="001e2c5a" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
@ -539,17 +539,17 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P4">Movements of countersamples</text:p>
<text:p text:style-name="P6">Movements of countersamples</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P5"><text:span text:style-name="T1">BPL</text:span> 005 - An<text:span text:style-name="T1">e</text:span>x<text:span text:style-name="T1">o</text:span> <text:span text:style-name="T2">6 </text:span> <text:span text:style-name="T3">Rev. 4</text:span></text:p>
<text:p text:style-name="P7"><text:span text:style-name="T1">BPL</text:span> 005 - An<text:span text:style-name="T1">e</text:span>x<text:span text:style-name="T1">o</text:span> <text:span text:style-name="T2">6 </text:span> <text:span text:style-name="T3">Rev. 4</text:span></text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -578,7 +578,7 @@
<text:p text:style-name="P21"><text:span text:style-name="T4">PLAN DE ESTUDIO:</text:span><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P12">Sponsor:</text:p>
<text:p text:style-name="P14">Sponsor:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P20"><text:placeholder text:placeholder-type="text">&lt;stp_sponsor&gt;</text:placeholder></text:p>
@ -587,7 +587,7 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B2" office:value-type="string">
<text:p text:style-name="P12">Matrix: </text:p>
<text:p text:style-name="P14">Matrix: </text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C2" office:value-type="string">
<text:p text:style-name="P20"><text:placeholder text:placeholder-type="text">&lt;stp_matrix&gt;</text:placeholder></text:p>
@ -596,7 +596,7 @@
<table:table-row table:style-name="Principal.3">
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B3" office:value-type="string">
<text:p text:style-name="P12">Product brand:</text:p>
<text:p text:style-name="P14">Product brand:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C3" office:value-type="string">
<text:p text:style-name="P20"><text:placeholder text:placeholder-type="text">&lt;stp_product_brand&gt;</text:placeholder></text:p>
@ -605,7 +605,7 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B4" office:value-type="string">
<text:p text:style-name="P13"/>
<text:p text:style-name="P15"/>
</table:table-cell>
<table:table-cell table:style-name="Principal.C4" office:value-type="string">
<text:p text:style-name="P23"/>
@ -613,7 +613,7 @@
</table:table-row>
</table:table>
<text:p text:style-name="P16"/>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in objects.values()&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in records.values()&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Tabla1" table:style-name="Tabla1">
<table:table-column table:style-name="Tabla1.A" table:number-columns-repeated="7"/>
<table:table-column table:style-name="Tabla1.H"/>
@ -633,7 +633,7 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Tabla1.A2" office:value-type="string">
<text:p text:style-name="P11">Code</text:p>
<text:p text:style-name="P13">Code</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla1.B2" office:value-type="string">
<text:p text:style-name="P18">From Location</text:p>
@ -659,7 +659,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla1.A3" table:number-columns-spanned="8" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;sample in record[&apos;samples&apos;]&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;sample in record[&apos;samples&apos;]&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -671,22 +671,22 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla1.A4" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla1.B4" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;from_location&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;from_location&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla1.C4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;to_location&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;to_location&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla1.D4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(sample[&apos;date&apos;], user.language)&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;format_date(sample[&apos;date&apos;], user.language)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla1.E4" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;shipment&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;shipment&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla1.F4" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;responsible&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;sample[&apos;responsible&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla1.G4" office:value-type="string">
<text:p text:style-name="Standard"/>
@ -697,7 +697,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla1.A5" table:number-columns-spanned="8" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="832" meta:image-count="0" meta:non-whitespace-character-count="754" meta:object-count="0" meta:page-count="1" meta:paragraph-count="28" meta:table-count="3" meta:word-count="79"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="28" meta:word-count="79" meta:character-count="832" meta:non-whitespace-character-count="754"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">33974</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">15480</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">13760</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2884</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">4530</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2983</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">8481</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">33973</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">15478</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">13758</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4927190</config:config-item>
<config:config-item config:name="Rsid" config:type="int">4956087</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -126,8 +126,8 @@
<style:font-face style:name="Arial1" svg:font-family="Arial" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Times New Roman" svg:font-family="&apos;Times New Roman&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Andale Sans UI" svg:font-family="&apos;Andale Sans UI&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Tahoma" svg:font-family="Tahoma" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
@ -439,11 +439,11 @@
<style:table-cell-properties fo:padding="0cm" fo:border="none"/>
</style:style>
<style:style style:name="P1" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans"/>
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00474492" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00474492" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
@ -453,85 +453,35 @@
<style:tab-stop style:position="28.702cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="0043f9e5" officeooo:paragraph-rsid="00474492" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="0043f9e5" officeooo:paragraph-rsid="00474492" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans"/>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003e9af1" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00474492" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003114dd" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="001f0624" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00432ca5" officeooo:paragraph-rsid="00432ca5" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="00474492" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Standard">
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003114dd" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="003d5bc7" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="003d5bc7" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Footer">
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="11.906cm"/>
@ -539,19 +489,69 @@
<style:tab-stop style:position="28.702cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="0043f9e5" officeooo:paragraph-rsid="00474492" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="0043f9e5" officeooo:paragraph-rsid="00474492" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003e9af1" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:rsid="0029694e" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="0029694e" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" officeooo:rsid="0029694e" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="001f0624" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00432ca5" officeooo:paragraph-rsid="00432ca5" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003d5bc7" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="001e2c5a" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="001e2c5a" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="20pt" fo:font-weight="bold" officeooo:paragraph-rsid="003e9af1" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="20pt" fo:font-weight="bold" officeooo:paragraph-rsid="003e9af1" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Arial1" fo:language="zxx" fo:country="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00474492" style:language-asian="zxx" style:country-asian="none" style:font-style-asian="normal" style:font-weight-asian="normal" style:language-complex="zxx" style:country-complex="none" style:text-emphasize="none"/>
@ -563,23 +563,23 @@
<style:text-properties officeooo:rsid="00474492"/>
</style:style>
<style:style style:name="T4" style:family="text">
<style:text-properties officeooo:rsid="00327c1f"/>
</style:style>
<style:style style:name="T5" style:family="text">
<style:text-properties officeooo:rsid="003e9af1"/>
</style:style>
<style:style style:name="T6" style:family="text">
<style:text-properties officeooo:rsid="00316bb6"/>
</style:style>
<style:style style:name="T7" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Arial1" fo:language="zxx" fo:country="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00474492" style:language-asian="zxx" style:country-asian="none" style:font-style-asian="normal" style:font-weight-asian="normal" style:language-complex="zxx" style:country-complex="none" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T8" style:family="text">
<style:style style:name="T5" style:family="text">
<style:text-properties style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Arial1" fo:language="zxx" fo:country="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="003114dd" style:language-asian="zxx" style:country-asian="none" style:font-style-asian="normal" style:font-weight-asian="normal" style:language-complex="zxx" style:country-complex="none" style:text-emphasize="none"/>
</style:style>
<style:style style:name="T9" style:family="text">
<style:style style:name="T6" style:family="text">
<style:text-properties officeooo:rsid="00474492"/>
</style:style>
<style:style style:name="T7" style:family="text">
<style:text-properties officeooo:rsid="00327c1f"/>
</style:style>
<style:style style:name="T8" style:family="text">
<style:text-properties officeooo:rsid="003e9af1"/>
</style:style>
<style:style style:name="T9" style:family="text">
<style:text-properties officeooo:rsid="00316bb6"/>
</style:style>
<style:style style:name="T10" style:family="text">
<style:text-properties officeooo:rsid="00568c83"/>
</style:style>
@ -610,17 +610,17 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P4"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P12"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P5">Discharge of Countersamples</text:p>
<text:p text:style-name="P13">Discharge of Countersamples</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P6"><text:span text:style-name="T4">BPL</text:span> 005 - An<text:span text:style-name="T4">e</text:span>x<text:span text:style-name="T4">o</text:span> <text:span text:style-name="T5">7</text:span> <text:span text:style-name="T6">Rev. 2</text:span></text:p>
<text:p text:style-name="P14"><text:span text:style-name="T7">BPL</text:span> 005 - An<text:span text:style-name="T7">e</text:span>x<text:span text:style-name="T7">o</text:span> <text:span text:style-name="T8">7</text:span> <text:span text:style-name="T9">Rev. 2</text:span></text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -650,7 +650,7 @@
<text:p text:style-name="P27"><text:span text:style-name="T10">PLAN DE ESTUDIO:</text:span><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P16">Expiry date range:</text:p>
<text:p text:style-name="P24">Expiry date range:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P26"><text:placeholder text:placeholder-type="text">&lt;format_date(expiry_date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(expiry_date_to, user.language)&gt;</text:placeholder></text:p>
@ -659,14 +659,14 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B2" office:value-type="string">
<text:p text:style-name="P15"/>
<text:p text:style-name="P23"/>
</table:table-cell>
<table:table-cell table:style-name="Principal.C2" office:value-type="string">
<text:p text:style-name="P25"/>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P18"/>
<text:p text:style-name="P5"/>
<table:table table:name="Detail" table:style-name="Detail">
<table:table-column table:style-name="Detail.A"/>
<table:table-column table:style-name="Detail.B"/>
@ -679,15 +679,15 @@
<table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A1" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P13">Sample</text:p>
<text:p text:style-name="P21">Sample</text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Detail.A1" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P14">Sample input to file</text:p>
<text:p text:style-name="P22">Sample input to file</text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Detail.A1" table:number-columns-spanned="4" office:value-type="string">
<text:p text:style-name="P20">Countersample</text:p>
<text:p text:style-name="P7">Countersample</text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -695,34 +695,34 @@
</table:table-row>
<table:table-row table:style-name="Detail.2">
<table:table-cell table:style-name="Detail.A2" office:value-type="string">
<text:p text:style-name="P10">Code</text:p>
<text:p text:style-name="P18">Code</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B2" office:value-type="string">
<text:p text:style-name="P21">Type</text:p>
<text:p text:style-name="P8">Type</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A2" office:value-type="string">
<text:p text:style-name="P21">Packages quantity and type</text:p>
<text:p text:style-name="P8">Packages quantity and type</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B2" office:value-type="string">
<text:p text:style-name="P21">Location</text:p>
<text:p text:style-name="P8">Location</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A2" office:value-type="string">
<text:p text:style-name="P21">Location</text:p>
<text:p text:style-name="P8">Location</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F2" office:value-type="string">
<text:p text:style-name="P12">Countersample date</text:p>
<text:p text:style-name="P20">Countersample date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G2" office:value-type="string">
<text:p text:style-name="P23">Discharge date</text:p>
<text:p text:style-name="P10">Discharge date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.H2" office:value-type="string">
<text:p text:style-name="P22">Comments</text:p>
<text:p text:style-name="P9">Comments</text:p>
</table:table-cell>
</table:table-row>
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A3" table:number-columns-spanned="8" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in records&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -734,33 +734,33 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A4" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P19"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B4" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;type&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;type&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.C4" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D4" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;storage_location&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;storage_location&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.E4" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;countersample_location&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;countersample_location&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F4" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;countersample_date&apos;], user.language) if fraction[&apos;countersample_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;countersample_date&apos;], user.language) if fraction[&apos;countersample_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;discharge_date&apos;], user.language) if fraction[&apos;discharge_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;discharge_date&apos;], user.language) if fraction[&apos;discharge_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.H4" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;comments&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;comments&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A5" table:number-columns-spanned="8" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -771,7 +771,7 @@
<table:covered-table-cell/>
</table:table-row>
</table:table>
<text:p text:style-name="P18"/>
<text:p text:style-name="P5"/>
</office:text>
</office:body>
</office:document>

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.1.5.1$Linux_X86_64 LibreOffice_project/10$Build-1</meta:generator><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="2" meta:paragraph-count="35" meta:word-count="72" meta:character-count="649" meta:non-whitespace-character-count="612"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="2" meta:paragraph-count="35" meta:word-count="72" meta:character-count="649" meta:non-whitespace-character-count="612"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">41275</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">46143</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">33710</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">10215</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">9456</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">43651</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">7250</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">1000</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">41275</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">33708</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">51488</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">46143</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">60881</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
@ -37,10 +37,9 @@
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
@ -49,12 +48,12 @@
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" 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="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">1753681</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
<config:config-item config:name="UpdateFromTemplate" 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="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
@ -66,6 +65,7 @@
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
@ -77,11 +77,10 @@
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
@ -93,12 +92,11 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5550534</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5598405</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
@ -109,13 +107,13 @@
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
</config:config-item-set>
</office:settings>
<office:scripts>
@ -512,7 +510,7 @@
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls>
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;record in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;record[&apos;type_number&apos;]&gt;</text:placeholder><text:s/>to the <text:placeholder text:placeholder-type="text">&lt;record[&apos;document_type&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P19">Study plan ID: <text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
<text:p text:style-name="P16">Title: <text:placeholder text:placeholder-type="text">&lt;stp_title&gt;</text:placeholder></text:p>

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="782" meta:image-count="0" meta:non-whitespace-character-count="750" meta:object-count="0" meta:page-count="1" meta:paragraph-count="36" meta:table-count="3" meta:word-count="66"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="36" meta:word-count="66" meta:character-count="782" meta:non-whitespace-character-count="750"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">24268</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">10754</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">13760</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">1249</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">3889</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2997</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">6535</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">24266</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">10753</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">13758</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">140</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5601633</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5705583</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -429,67 +429,67 @@
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003f077c" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003f077c" officeooo:paragraph-rsid="003f077c" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="00418ed6" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="004f10a5" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="004337aa" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="00418ed6" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="004f10a5" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="004337aa" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="00525e4b" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="004337aa" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="00529685" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="00525e4b" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="00529685" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003f077c" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
@ -557,17 +557,17 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P4">Test elements received</text:p>
<text:p text:style-name="P6">Test elements received</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P5">Table 1</text:p>
<text:p text:style-name="P7">Table 1</text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -596,7 +596,7 @@
<text:p text:style-name="P26"><text:span text:style-name="T3">PLAN DE ESTUDIO: </text:span><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P16">Matrix:</text:p>
<text:p text:style-name="P18">Matrix:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;stp_matrix&gt;</text:placeholder></text:p>
@ -605,7 +605,7 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B2" office:value-type="string">
<text:p text:style-name="P15">Entries:</text:p>
<text:p text:style-name="P17">Entries:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C2" office:value-type="string">
<text:p text:style-name="P24"><text:placeholder text:placeholder-type="text">&lt;entries&gt;</text:placeholder></text:p>
@ -634,13 +634,13 @@
<text:p text:style-name="P20">Packages quantity</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P7">Application date</text:p>
<text:p text:style-name="P9">Application date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P7">Sampling date</text:p>
<text:p text:style-name="P9">Sampling date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P7">Treatment</text:p>
<text:p text:style-name="P9">Treatment</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P20">Dosis</text:p>
@ -658,7 +658,7 @@
<text:p text:style-name="P20">Variety</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P8">Code</text:p>
<text:p text:style-name="P10">Code</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P23">Label</text:p>
@ -670,7 +670,7 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A2" table:number-columns-spanned="13" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in records&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -687,48 +687,48 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;reception_date&apos;], user.language) if fraction[&apos;reception_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;reception_date&apos;], user.language) if fraction[&apos;reception_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B3" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.C3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;application_date&apos;], user.language) if fraction[&apos;application_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;application_date&apos;], user.language) if fraction[&apos;application_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;sampling_date&apos;], user.language) if fraction[&apos;sampling_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;sampling_date&apos;], user.language) if fraction[&apos;sampling_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.E3" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;treatment&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;treatment&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;dosis&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;dosis&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;glp_repetitions&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;glp_repetitions&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.H3" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;zone&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;zone&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.I3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;after_application_days&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;after_application_days&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.J3" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;variety&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;variety&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.K3" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.L3" office:value-type="string">
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.M3" office:value-type="string">
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;storage_location&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;storage_location&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A4" table:number-columns-spanned="13" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="715" meta:image-count="0" meta:non-whitespace-character-count="683" meta:object-count="0" meta:page-count="1" meta:paragraph-count="32" meta:table-count="3" meta:word-count="62"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="32" meta:word-count="62" meta:character-count="715" meta:non-whitespace-character-count="683"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">24268</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">10754</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">13760</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">1199</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">3687</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2997</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">6130</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">24266</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">10753</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">13758</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">140</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5867753</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5964493</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -429,55 +429,55 @@
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003f077c" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003f077c" officeooo:paragraph-rsid="003f077c" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="00418ed6" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="004337aa" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="00418ed6" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="004337aa" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="00572bb4" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="004337aa" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0036ad8c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="00572bb4" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
@ -541,17 +541,17 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P4">Test elements received</text:p>
<text:p text:style-name="P6">Test elements received</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P5">Table 2</text:p>
<text:p text:style-name="P7">Table 2</text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -580,7 +580,7 @@
<text:p text:style-name="P22"><text:span text:style-name="T3">PLAN DE ESTUDIO: </text:span><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P13">Entries:</text:p>
<text:p text:style-name="P15">Entries:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text">&lt;entries&gt;</text:placeholder></text:p>
@ -603,13 +603,13 @@
<text:p text:style-name="P17">Reception date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P7">Application date</text:p>
<text:p text:style-name="P9">Application date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P7">Sampling date</text:p>
<text:p text:style-name="P9">Sampling date</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P7">Treatment</text:p>
<text:p text:style-name="P9">Treatment</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P17">Dosis</text:p>
@ -630,7 +630,7 @@
<text:p text:style-name="P19">Sample weight (g)</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A1" office:value-type="string">
<text:p text:style-name="P7">Code</text:p>
<text:p text:style-name="P9">Code</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.L1" office:value-type="string">
<text:p text:style-name="P20">Label</text:p>
@ -639,7 +639,7 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A2" table:number-columns-spanned="12" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in records&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -655,45 +655,45 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;reception_date&apos;], user.language) if fraction[&apos;reception_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;reception_date&apos;], user.language) if fraction[&apos;reception_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B3" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;application_date&apos;], user.language) if fraction[&apos;application_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;application_date&apos;], user.language) if fraction[&apos;application_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.C3" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;sampling_date&apos;], user.language) if fraction[&apos;sampling_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;format_date(fraction[&apos;sampling_date&apos;], user.language) if fraction[&apos;sampling_date&apos;] else &apos;&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D3" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;treatment&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;treatment&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.E3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;dosis&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;dosis&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;glp_repetitions&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;glp_repetitions&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G3" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;zone&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;zone&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.H3" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;after_application_days&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;after_application_days&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.I3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;variety&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;variety&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.J3" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;sample_weight&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;sample_weight&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.K3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.L3" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A4" table:number-columns-spanned="12" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="665" meta:image-count="0" meta:non-whitespace-character-count="634" meta:object-count="0" meta:page-count="1" meta:paragraph-count="33" meta:table-count="4" meta:word-count="62"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-01-11T13:07:10.037989256</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="4" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="33" meta:word-count="62" meta:character-count="665" meta:non-whitespace-character-count="634"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">24268</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">10754</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">1199</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">3687</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2900</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">4974</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">24266</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">10753</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14737</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">140</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">7087549</config:config-item>
<config:config-item config:name="Rsid" config:type="int">7133431</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -447,70 +447,70 @@
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003114dd" officeooo:paragraph-rsid="003f077c" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003f077c" officeooo:paragraph-rsid="0057f36d" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="001f0624" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:paragraph-rsid="00567614" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00567614" officeooo:paragraph-rsid="00649dbb" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0057f36d" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:paragraph-rsid="00567614" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0057f36d" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00567614" officeooo:paragraph-rsid="00649dbb" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="005fb670" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0057f36d" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:rsid="005d9377" officeooo:paragraph-rsid="005e2dcb" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="0057f36d" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:rsid="005d9377" officeooo:paragraph-rsid="005fb670" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="005fb670" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0057f36d" officeooo:paragraph-rsid="005b4964" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:rsid="005d9377" officeooo:paragraph-rsid="005e2dcb" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="0057f36d" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:rsid="005d9377" officeooo:paragraph-rsid="005fb670" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="005d9377" officeooo:paragraph-rsid="005d9377" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0057f36d" officeooo:paragraph-rsid="005b4964" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="0057f36d" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="005d9377" officeooo:paragraph-rsid="005d9377" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" officeooo:paragraph-rsid="00567614" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
@ -594,17 +594,17 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P4"/>
<text:p text:style-name="P6"/>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P5">Table 3</text:p>
<text:p text:style-name="P7">Table 3</text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -633,7 +633,7 @@
<text:p text:style-name="P30"><text:span text:style-name="T4">PLAN DE ESTUDIO: </text:span><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P17"/>
<text:p text:style-name="P19"/>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P29"/>
@ -641,12 +641,12 @@
</table:table-row>
</table:table>
<text:p text:style-name="P20"/>
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;group in objects.values()&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P22"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;group in records.values()&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Group" table:style-name="Group">
<table:table-column table:style-name="Group.A"/>
<table:table-row>
<table:table-cell office:value-type="string">
<text:p text:style-name="P7"><text:span text:style-name="T5">Matrix: </text:span><text:placeholder text:placeholder-type="text">&lt;group[&apos;matrix&apos;]&gt;</text:placeholder><text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;group[&apos;variety&apos;]&quot;&gt;</text:placeholder></text:span><text:span text:style-name="T3"><text:s/>variety </text:span><text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;group[&apos;variety&apos;]&gt;</text:placeholder></text:span><text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P9"><text:span text:style-name="T5">Matrix: </text:span><text:placeholder text:placeholder-type="text">&lt;group[&apos;matrix&apos;]&gt;</text:placeholder><text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;group[&apos;variety&apos;]&quot;&gt;</text:placeholder></text:span><text:span text:style-name="T3"><text:s/>variety </text:span><text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;group[&apos;variety&apos;]&gt;</text:placeholder></text:span><text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -666,7 +666,7 @@
<table:table-header-rows>
<table:table-row table:style-name="Detail.1">
<table:table-cell table:style-name="Detail.A1" table:number-columns-spanned="11" office:value-type="string">
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;report[&apos;zone&apos;]&quot;&gt;</text:placeholder>Zone: <text:placeholder text:placeholder-type="text">&lt;report[&apos;zone&apos;]&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;report[&apos;zone&apos;]&quot;&gt;</text:placeholder>Zone: <text:placeholder text:placeholder-type="text">&lt;report[&apos;zone&apos;]&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -697,13 +697,13 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P15">Code</text:p>
<text:p text:style-name="P17">Code</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P16">Label</text:p>
<text:p text:style-name="P18">Label</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P15">Treatment</text:p>
<text:p text:style-name="P17">Treatment</text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.A3" office:value-type="string">
<text:p text:style-name="P25">Dosis</text:p>
@ -734,7 +734,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A4" table:number-columns-spanned="11" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in report[&apos;fractions&apos;]&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in report[&apos;fractions&apos;]&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -749,42 +749,42 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A5" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.B5" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.C5" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;treatment&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;treatment&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.D5" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;dosis&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;dosis&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.E5" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;glp_repetitions&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;glp_repetitions&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.F5" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;after_application_days&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;after_application_days&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.G5" office:value-type="string">
<text:p text:style-name="P14"/>
<text:p text:style-name="P16"/>
</table:table-cell>
<table:table-cell table:style-name="Detail.H5" office:value-type="string">
<text:p text:style-name="P26"/>
</table:table-cell>
<table:table-cell table:style-name="Detail.I5" office:value-type="string">
<text:p text:style-name="P9"/>
<text:p text:style-name="P11"/>
</table:table-cell>
<table:table-cell table:style-name="Detail.J5" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;analysis&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;analysis&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Detail.K5" office:value-type="string">
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;result&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;result&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Detail.A6" table:number-columns-spanned="11" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-03-22T20:26:46.619537988</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.1.5.1$Linux_X86_64 LibreOffice_project/10$Build-1</meta:generator><meta:document-statistic meta:table-count="4" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="33" meta:word-count="113" meta:character-count="1432" meta:non-whitespace-character-count="1350"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-03-22T20:26:46.619537988</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="4" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="33" meta:word-count="114" meta:character-count="1448" meta:non-whitespace-character-count="1365"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">8040</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">2469</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">28092</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">8227</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">19373</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">11206</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">2469</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">8040</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">30559</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">16265</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2900</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">5729</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">14737</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">120</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -37,10 +37,9 @@
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
@ -49,12 +48,12 @@
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" 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="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">1753681</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
<config:config-item config:name="UpdateFromTemplate" 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="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
@ -66,6 +65,7 @@
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">false</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
@ -77,11 +77,10 @@
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="IsKernAsianPunctuation" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
@ -93,12 +92,11 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5745512</config:config-item>
<config:config-item config:name="Rsid" config:type="int">5863546</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
@ -109,13 +107,13 @@
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">true</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
</config:config-item-set>
</office:settings>
<office:scripts>
@ -126,7 +124,6 @@
</office:script>
</office:scripts>
<office:font-face-decls>
<style:font-face style:name="Droid Sans Mono" svg:font-family="&apos;Droid Sans Mono&apos;, monospace, monospace, &apos;Droid Sans Fallback&apos;"/>
<style:font-face style:name="Tahoma1" svg:font-family="Tahoma"/>
<style:font-face style:name="Times New Roman" svg:font-family="&apos;Times New Roman&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Arial" svg:font-family="Arial" style:font-family-generic="swiss" style:font-pitch="variable"/>
@ -326,16 +323,16 @@
</style:table-properties>
</style:style>
<style:style style:name="Principal.A" style:family="table-column">
<style:table-column-properties style:column-width="5.904cm" style:rel-column-width="3347*"/>
<style:table-column-properties style:column-width="5.904cm" style:rel-column-width="13479*"/>
</style:style>
<style:style style:name="Principal.B" style:family="table-column">
<style:table-column-properties style:column-width="11.398cm" style:rel-column-width="6462*"/>
<style:table-column-properties style:column-width="11.398cm" style:rel-column-width="26025*"/>
</style:style>
<style:style style:name="Principal.C" style:family="table-column">
<style:table-column-properties style:column-width="8.197cm" style:rel-column-width="4647*"/>
<style:table-column-properties style:column-width="8.197cm" style:rel-column-width="18715*"/>
</style:style>
<style:style style:name="Principal.D" style:family="table-column">
<style:table-column-properties style:column-width="3.203cm" style:rel-column-width="1816*"/>
<style:table-column-properties style:column-width="3.205cm" style:rel-column-width="7316*"/>
</style:style>
<style:style style:name="Principal.1" style:family="table-row">
<style:table-row-properties fo:background-color="transparent" fo:keep-together="auto">
@ -470,84 +467,81 @@
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003e7e2f" officeooo:paragraph-rsid="003e7e2f" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Standard">
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="001e2c5a" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="001e2c5a" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="20pt" fo:font-weight="bold" officeooo:paragraph-rsid="003114dd" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="003114dd" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:paragraph-rsid="0052ad31" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003e7e2f" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0053f6cc" officeooo:paragraph-rsid="0053f6cc" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00464bfd" officeooo:paragraph-rsid="00464bfd" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="20pt" fo:font-weight="bold" officeooo:paragraph-rsid="003114dd" style:font-size-asian="20pt" style:font-weight-asian="bold" style:font-size-complex="20pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="0043b7ba" officeooo:paragraph-rsid="00464bfd" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="0043b7ba" officeooo:paragraph-rsid="0047e137" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:paragraph-rsid="0052ad31" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="0043b7ba" officeooo:paragraph-rsid="004f8619" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00463b83" officeooo:paragraph-rsid="00463b83" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="0053f6cc" officeooo:paragraph-rsid="0053f6cc" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:rsid="0056bbe7" officeooo:paragraph-rsid="0056bbe7"/>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00464bfd" officeooo:paragraph-rsid="00464bfd" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="0043b7ba" officeooo:paragraph-rsid="00464bfd" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="0043b7ba" officeooo:paragraph-rsid="0047e137" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
@ -559,31 +553,28 @@
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00463b83" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00463b83" officeooo:paragraph-rsid="00463b83" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0056bbe7" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00463b83" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00463b83" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0056bbe7" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P34" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003e7e2f" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:paragraph-properties style:shadow="none">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00463b83" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0.199cm" fo:margin-right="0cm" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:font-weight="bold" officeooo:rsid="001e2c5a" officeooo:paragraph-rsid="0056bbe7" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:font-weight-complex="bold"/>
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:rsid="0056bbe7" officeooo:paragraph-rsid="0056bbe7"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties fo:language="zxx" fo:country="none" officeooo:rsid="003114dd" style:language-asian="zxx" style:country-asian="none" style:language-complex="zxx" style:country-complex="none"/>
@ -695,21 +686,21 @@
<table:table-column table:style-name="Principal.D"/>
<table:table-row table:style-name="Principal.1">
<table:table-cell table:style-name="Principal.A1" office:value-type="string">
<text:p text:style-name="P34">Ingress date range:</text:p>
<text:p text:style-name="P20">Ingress date range:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P35"><text:placeholder text:placeholder-type="text">&lt;format_date(date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(date_to, user.language)&gt;</text:placeholder></text:p>
<text:p text:style-name="P21"><text:placeholder text:placeholder-type="text">&lt;format_date(date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(date_to, user.language)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P28">Print date:</text:p>
<text:p text:style-name="P14">Print date:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.D1" office:value-type="string">
<text:p text:style-name="P36"><text:placeholder text:placeholder-type="text">&lt;format_date(datetime.datetime.today(), user.language)&gt;</text:placeholder></text:p>
<text:p text:style-name="P19"><text:placeholder text:placeholder-type="text">&lt;format_date(datetime.datetime.today(), user.language)&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P15"/>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;project in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"/>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;project in records&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Project" table:style-name="Project">
<table:table-column table:style-name="Project.A"/>
<table:table-column table:style-name="Project.B"/>
@ -719,21 +710,21 @@
<table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Project.A1" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P19">Study N° <text:placeholder text:placeholder-type="text">&lt;project.stp_code&gt;</text:placeholder></text:p>
<text:p text:style-name="P20"><text:span text:style-name="T11">Id Interno N</text:span>° <text:placeholder text:placeholder-type="text">&lt;project.stp_number&gt;</text:placeholder></text:p>
<text:p text:style-name="P23">Study N° <text:placeholder text:placeholder-type="text">&lt;project.stp_code&gt;</text:placeholder></text:p>
<text:p text:style-name="P24"><text:span text:style-name="T11">Id Interno N</text:span>° <text:placeholder text:placeholder-type="text">&lt;project.stp_number&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Project.C1" office:value-type="string">
<text:p text:style-name="P19"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;project.stp_glp&quot;&gt;</text:placeholder>Under GLP<text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P23"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;project.stp_glp&quot;&gt;</text:placeholder>Under GLP<text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Project.D1" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P19">Sponsor: <text:placeholder text:placeholder-type="text">&lt;project.stp_sponsor&gt;</text:placeholder></text:p>
<text:p text:style-name="P23">Sponsor: <text:placeholder text:placeholder-type="text">&lt;project.stp_sponsor&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Project.A2" table:number-columns-spanned="5" office:value-type="string">
<text:p text:style-name="P21">Description: <text:placeholder text:placeholder-type="text">&lt;project.stp_description&gt;</text:placeholder></text:p>
<text:p text:style-name="P26">Description: <text:placeholder text:placeholder-type="text">&lt;project.stp_description&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -743,7 +734,7 @@
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Project.A2" table:number-columns-spanned="5" office:value-type="string">
<text:p text:style-name="P29"><text:placeholder text:placeholder-type="text">&lt;project.stp_position&gt;</text:placeholder><text:span text:style-name="T15"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;project.stp_position !=&apos;&apos;&quot;&gt;</text:placeholder></text:span><text:span text:style-name="T9">:</text:span><text:span text:style-name="T15"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span> <text:placeholder text:placeholder-type="text">&lt;project.stp_study_director&gt;</text:placeholder></text:p>
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;project.stp_position&gt;</text:placeholder><text:span text:style-name="T15"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;project.stp_position !=&apos;&apos;&quot;&gt;</text:placeholder></text:span><text:span text:style-name="T9">:</text:span><text:span text:style-name="T15"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span> <text:placeholder text:placeholder-type="text">&lt;project.stp_study_director&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -752,64 +743,64 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Project.A4" office:value-type="string">
<text:p text:style-name="P23"><text:span text:style-name="T5">Start date:</text:span><text:span text:style-name="T10"> </text:span><text:span text:style-name="T8"><text:placeholder text:placeholder-type="text">&lt;format_date(project.stp_start_date, user.language) if project.stp_start_date else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P28"><text:span text:style-name="T5">Start date:</text:span><text:span text:style-name="T10"> </text:span><text:span text:style-name="T8"><text:placeholder text:placeholder-type="text">&lt;format_date(project.stp_start_date, user.language) if project.stp_start_date else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P22"><text:span text:style-name="T3">End date:</text:span> <text:span text:style-name="T7"><text:placeholder text:placeholder-type="text">&lt;format_date(project.stp_end_date, user.language) if project.stp_end_date else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P27"><text:span text:style-name="T3">End date:</text:span> <text:span text:style-name="T7"><text:placeholder text:placeholder-type="text">&lt;format_date(project.stp_end_date, user.language) if project.stp_end_date else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Project.A4" office:value-type="string">
<text:p text:style-name="P22"><text:span text:style-name="T3">State:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;project.stp_state&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P27"><text:span text:style-name="T3">State:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;project.stp_state&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P24"><text:span text:style-name="T4">Proposal start date:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;project.stp_proposal_start_date&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P29"><text:span text:style-name="T4">Proposal start date:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;project.stp_proposal_start_date&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P24"><text:span text:style-name="T4">Proposal end date:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;project.stp_proposal_end_date&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P29"><text:span text:style-name="T4">Proposal end date:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;project.stp_proposal_end_date&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P33">Date of entry into the BPL document file: <text:span text:style-name="T14"><text:placeholder text:placeholder-type="text">&lt;format_date(project.stp_date_entry_document_file, user.language) if project.stp_date_entry_document_file else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P34">Date of entry into the BPL document file: <text:span text:style-name="T14"><text:placeholder text:placeholder-type="text">&lt;format_date(project.stp_date_entry_document_file, user.language) if project.stp_date_entry_document_file else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P25"/>
<text:p text:style-name="P30"/>
</table:table-cell>
<table:covered-table-cell/>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P26"><text:span text:style-name="T3">Product brand:</text:span> <text:placeholder text:placeholder-type="text">&lt;project.stp_product_brand&gt;</text:placeholder></text:p>
<text:p text:style-name="P31"><text:span text:style-name="T3">Product brand:</text:span> <text:placeholder text:placeholder-type="text">&lt;project.stp_product_brand&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P25"><text:span text:style-name="T6">Methodology implementation:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;project.stp_implementation_validation&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P30"><text:span text:style-name="T6">Methodology implementation:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;project.stp_implementation_validation&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
</table:table-row>
<table:table-row table:style-name="Project.8">
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P24"><text:span text:style-name="T4">Pattern availability:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;project.stp_pattern_availability&quot;&gt;</text:placeholder></text:span><text:span text:style-name="T9">Yes</text:span><text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P29"><text:span text:style-name="T4">Pattern availability:</text:span> <text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;project.stp_pattern_availability&quot;&gt;</text:placeholder></text:span><text:span text:style-name="T9">Yes</text:span><text:span text:style-name="T9"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P26"><text:span text:style-name="T3">Matrix:</text:span> <text:placeholder text:placeholder-type="text">&lt;project.stp_matrix&gt;</text:placeholder></text:p>
<text:p text:style-name="P31"><text:span text:style-name="T3">Matrix:</text:span> <text:placeholder text:placeholder-type="text">&lt;project.stp_matrix&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
</table:table-row>
<table:table-row table:style-name="Project.8">
<table:table-cell table:style-name="Project.A4" table:number-columns-spanned="5" office:value-type="string">
<text:p text:style-name="P32">Observations: <text:span text:style-name="T13"><text:placeholder text:placeholder-type="text">&lt;project.stp_rector_scheme_comments&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P33">Observations: <text:span text:style-name="T13"><text:placeholder text:placeholder-type="text">&lt;project.stp_rector_scheme_comments&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -817,7 +808,7 @@
<table:covered-table-cell/>
</table:table-row>
</table:table>
<text:p text:style-name="P27"/>
<text:p text:style-name="P35"/>
<table:table table:name="Samples" table:style-name="Samples">
<table:table-column table:style-name="Samples.A"/>
<table:table-column table:style-name="Samples.B"/>
@ -861,9 +852,9 @@
<table:covered-table-cell/>
</table:table-row>
</table:table>
<text:p text:style-name="P15"/>
<text:p text:style-name="P15"/>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P16"/>
<text:p text:style-name="P16"/>
<text:p text:style-name="P16"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</office:text>
</office:body>
</office:document>

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-04-02T11:37:06.439239042</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="1315" meta:image-count="0" meta:non-whitespace-character-count="1243" meta:object-count="0" meta:page-count="1" meta:paragraph-count="40" meta:table-count="3" meta:word-count="110"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-04-02T11:37:06.439239042</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="3" meta:image-count="0" meta:object-count="0" meta:page-count="1" meta:paragraph-count="40" meta:word-count="110" meta:character-count="1313" meta:non-whitespace-character-count="1241"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">7197</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">33974</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">15480</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2884</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">4103</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">2900</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">5888</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">33973</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">15478</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">7197</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">21934</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">6202208</config:config-item>
<config:config-item config:name="Rsid" config:type="int">6320723</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -388,53 +388,53 @@
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="005242db" officeooo:paragraph-rsid="005242db" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="13pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="001cbd64" style:font-size-asian="13pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="13pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="005242db" officeooo:paragraph-rsid="005242db" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:font-weight="bold" officeooo:rsid="00556957" officeooo:paragraph-rsid="00556957" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="005242db" officeooo:paragraph-rsid="005242db" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="005242db" officeooo:paragraph-rsid="00556957" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="0053c040" officeooo:paragraph-rsid="0053c040" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="00556957" officeooo:paragraph-rsid="00556957" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00277e02" officeooo:paragraph-rsid="00277e02" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10.5pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="003e7e2f" officeooo:paragraph-rsid="003e7e2f" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10.5pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
@ -489,17 +489,17 @@
<table:table-column table:style-name="Header.C"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="0">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell table:style-name="Header.B1" office:value-type="string">
<text:p text:style-name="P4">Changelog</text:p>
<text:p text:style-name="P6">Changelog</text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P5"/>
<text:p text:style-name="P7"/>
</table:table-cell>
</table:table-row>
</table:table>
@ -528,7 +528,7 @@
<text:p text:style-name="P20"/>
</table:table-cell>
<table:table-cell table:style-name="Principal.B1" office:value-type="string">
<text:p text:style-name="P14">Date range:</text:p>
<text:p text:style-name="P16">Date range:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C1" office:value-type="string">
<text:p text:style-name="P19"><text:placeholder text:placeholder-type="text">&lt;format_date(date_from, user.language)&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;format_date(date_to, user.language)&gt;</text:placeholder></text:p>
@ -537,7 +537,7 @@
<table:table-row>
<table:covered-table-cell/>
<table:table-cell table:style-name="Principal.B2" office:value-type="string">
<text:p text:style-name="P13">Print date:</text:p>
<text:p text:style-name="P15">Print date:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Principal.C2" office:value-type="string">
<text:p text:style-name="P18"><text:placeholder text:placeholder-type="text">&lt;format_date(datetime.datetime.today(), user.language)&gt;</text:placeholder></text:p>
@ -545,7 +545,7 @@
</table:table-row>
</table:table>
<text:p text:style-name="P17"/>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;change in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P17"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;change in records&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Records" table:style-name="Records">
<table:table-column table:style-name="Records.A"/>
<table:table-column table:style-name="Records.B"/>
@ -555,22 +555,22 @@
<table:table-column table:style-name="Records.G"/>
<table:table-row>
<table:table-cell table:style-name="Records.A1" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P6">Study N° <text:placeholder text:placeholder-type="text">&lt;change.stp_code&gt;</text:placeholder></text:p>
<text:p text:style-name="P8">Study N° <text:placeholder text:placeholder-type="text">&lt;change.stp_code&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A1" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P9"><text:span text:style-name="T4">Update date:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.change_date&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:span text:style-name="T4">Update date:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.change_date&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A1" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P9"><text:span text:style-name="T4">User:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.change_user&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:span text:style-name="T4">User:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.change_user&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A2" table:number-columns-spanned="7" office:value-type="string">
<text:p text:style-name="P9"><text:span text:style-name="T4">Reason:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.change_reason&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:span text:style-name="T4">Reason:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.change_reason&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -581,7 +581,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="6" office:value-type="string">
<text:p text:style-name="P9"><text:span text:style-name="T4">Title:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.stp_title&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:span text:style-name="T4">Title:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.stp_title&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -589,17 +589,17 @@
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A3" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;change.stp_glp&quot;&gt;</text:placeholder>Under GLP<text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;change.stp_glp&quot;&gt;</text:placeholder>Under GLP<text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A3" office:value-type="string">
<text:p text:style-name="P6">Target:</text:p>
<text:p text:style-name="P8">Target:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="6" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in change.stp_target.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;line&gt;</text:placeholder></text:p>
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in change.stp_target.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;line&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -609,10 +609,10 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A3" office:value-type="string">
<text:p text:style-name="P6">Description:</text:p>
<text:p text:style-name="P8">Description:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="6" office:value-type="string">
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;change.stp_description&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;change.stp_description&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -622,53 +622,53 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="4" office:value-type="string">
<text:p text:style-name="P9"><text:span text:style-name="T4">Product brand:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.stp_product_brand&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:span text:style-name="T4">Product brand:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.stp_product_brand&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P9"><text:span text:style-name="T4">Matrix:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.stp_matrix&gt;</text:placeholder></text:p>
<text:p text:style-name="P11"><text:span text:style-name="T4">Matrix:</text:span> <text:placeholder text:placeholder-type="text">&lt;change.stp_matrix&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A3" office:value-type="string">
<text:p text:style-name="P8"/>
<text:p text:style-name="P10"/>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="4" office:value-type="string">
<text:p text:style-name="P11"><text:span text:style-name="T4">Proposal start date:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;change.stp_proposal_start_date&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P13"><text:span text:style-name="T4">Proposal start date:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;change.stp_proposal_start_date&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P11"><text:span text:style-name="T4">Proposal end date:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;change.stp_proposal_end_date&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P13"><text:span text:style-name="T4">Proposal end date:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;change.stp_proposal_end_date&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="4" office:value-type="string">
<text:p text:style-name="P11"><text:span text:style-name="T4">Start date:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;format_date(change.stp_start_date, user.language) if change.stp_start_date else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P13"><text:span text:style-name="T4">Start date:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;format_date(change.stp_start_date, user.language) if change.stp_start_date else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P11"><text:span text:style-name="T4">End date:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;format_date(change.stp_end_date, user.language) if change.stp_end_date else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P13"><text:span text:style-name="T4">End date:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;format_date(change.stp_end_date, user.language) if change.stp_end_date else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A3" office:value-type="string">
<text:p text:style-name="P7">Test method:</text:p>
<text:p text:style-name="P9">Test method:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="6" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in change.stp_test_method.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;line&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in change.stp_test_method.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;line&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -678,29 +678,29 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P12"><text:span text:style-name="T4">Pattern availability:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;change.stp_pattern_availability&quot;&gt;</text:placeholder></text:span>Yes<text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P14"><text:span text:style-name="T4">Pattern availability:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;change.stp_pattern_availability&quot;&gt;</text:placeholder></text:span>Yes<text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P12"><text:span text:style-name="T4">Implementation - Validation:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;change.stp_implementation_validation&quot;&gt;</text:placeholder></text:span>Yes<text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P14"><text:span text:style-name="T4">Implementation - Validation:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;change.stp_implementation_validation&quot;&gt;</text:placeholder></text:span>Yes<text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;/if&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P12"><text:span text:style-name="T4">Client:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;change.stp_sponsor&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P14"><text:span text:style-name="T4">Client:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;change.stp_sponsor&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:table-cell table:style-name="Records.A3" office:value-type="string">
<text:p text:style-name="P12"><text:span text:style-name="T4">State:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;change.stp_state&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P14"><text:span text:style-name="T4">State:</text:span> <text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;change.stp_state&gt;</text:placeholder></text:span></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A3" office:value-type="string">
<text:p text:style-name="P7">Staff involved:</text:p>
<text:p text:style-name="P9">Staff involved:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Records.A3" table:number-columns-spanned="6" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;prof in change.stp_laboratory_professionals&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;prof.position and prof.position + &apos;: &apos; or &apos;&apos;&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;prof.professional&gt;</text:placeholder></text:p>
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;prof in change.stp_laboratory_professionals&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;prof.position and prof.position + &apos;: &apos; or &apos;&apos;&gt;</text:placeholder><text:placeholder text:placeholder-type="text">&lt;prof.professional&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -710,10 +710,10 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Records.A12" office:value-type="string">
<text:p text:style-name="P7">Records:</text:p>
<text:p text:style-name="P9">Records:</text:p>
</table:table-cell>
<table:table-cell table:style-name="Records.A12" table:number-columns-spanned="6" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;change.stp_records&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;change.stp_records&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.spreadsheet">
<office:meta><meta:creation-date>2016-03-08T11:34:41</meta:creation-date><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><dc:date>2017-10-07T17:22:33.489047009</dc:date><meta:editing-duration>P39DT10H35M2S</meta:editing-duration><meta:editing-cycles>163</meta:editing-cycles><meta:document-statistic meta:table-count="3" meta:cell-count="61" meta:object-count="0"/></office:meta>
<office:meta><meta:creation-date>2016-03-08T11:34:41</meta:creation-date><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><dc:date>2021-09-22T17:27:42.269916157</dc:date><meta:editing-duration>P39DT10H35M40S</meta:editing-duration><meta:editing-cycles>164</meta:editing-cycles><meta:document-statistic meta:table-count="3" meta:cell-count="61" 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">451</config:config-item>
@ -14,7 +14,7 @@
<config:config-item-map-named config:name="Tables">
<config:config-item-map-entry config:name="Hoja1">
<config:config-item config:name="CursorPositionX" config:type="int">0</config:config-item>
<config:config-item config:name="CursorPositionY" config:type="int">23</config:config-item>
<config:config-item config:name="CursorPositionY" config:type="int">33</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>
@ -23,18 +23,18 @@
<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">21</config:config-item>
<config:config-item config:name="PositionBottom" config:type="int">31</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ZoomValue" config:type="int">75</config:config-item>
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
<config:config-item config:name="PageViewZoomValue" config:type="int">85</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">Hoja1</config:config-item>
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1285</config:config-item>
<config:config-item config:name="HorizontalScrollbarWidth" config:type="int">1305</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ZoomValue" config:type="int">75</config:config-item>
<config:config-item config:name="ZoomValue" config:type="int">100</config:config-item>
<config:config-item config:name="PageViewZoomValue" config:type="int">85</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>
@ -64,8 +64,8 @@
<config:config-item config:name="IsKernAsianPunctuation" 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="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">mQH+/2hwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpocAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAMAtgAAAAAAAAAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9aHAKb3JpZW50YXRpb249UG9ydHJhaXQKY29waWVzPTEKY29sbGF0ZT1mYWxzZQptYXJnaW5kYWp1c3RtZW50PTAsMCwwLDAKY29sb3JkZXB0aD0yNApwc2xldmVsPTAKcGRmZGV2aWNlPTEKY29sb3JkZXZpY2U9MApQUERDb250ZXhEYXRhCklucHV0U2xvdDpBdXRvAFBhZ2VTaXplOkE0AAASAENPTVBBVF9EVVBMRVhfTU9ERRMARHVwbGV4TW9kZTo6VW5rbm93bg==</config:config-item>
<config:config-item config:name="PrinterName" config:type="string">hp</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary">mAH+/0hQLUxhc2VySmV0LTEwMTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ1VQUzpIUC1MYXNlckpldC0xMDE4AAAAAAAAAAAAAAAWAAMAtQAAAAAAAwAEAAhSAAAEdAAASm9iRGF0YSAxCnByaW50ZXI9SFAtTGFzZXJKZXQtMTAxOApvcmllbnRhdGlvbj1Qb3J0cmFpdApjb3BpZXM9MQpjb2xsYXRlPWZhbHNlCm1hcmdpbmRhanVzdG1lbnQ9MCwwLDAsMApjb2xvcmRlcHRoPTI0CnBzbGV2ZWw9MApwZGZkZXZpY2U9MQpjb2xvcmRldmljZT0wClBQRENvbnRleERhdGEKUGFnZVNpemU6QTQAABIAQ09NUEFUX0RVUExFWF9NT0RFEwBEdXBsZXhNb2RlOjpVbmtub3du</config:config-item>
<config:config-item config:name="PrinterName" config:type="string">HP-LaserJet-1018</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">zxx</config:config-item>
@ -141,6 +141,60 @@
<style:style style:name="Default" style:family="table-cell">
<style:text-properties style:font-name-asian="Droid Sans" style:font-family-asian="&apos;Droid Sans&apos;" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-name-complex="Lohit Hindi" style:font-family-complex="&apos;Lohit Hindi&apos;" style:font-family-generic-complex="system" style:font-pitch-complex="variable"/>
</style:style>
<style:style style:name="Heading_20__28_user_29_" style:display-name="Heading (user)" 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_20__28_user_29_">
<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_20__28_user_29_">
<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:font-style="italic" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold"/>
</style:style>
@ -155,39 +209,39 @@
</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="60.73mm"/>
</style:style>
<style:style style:name="co2" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="46.58mm"/>
</style:style>
<style:style style:name="co3" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="29.4mm"/>
</style:style>
<style:style style:name="co4" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="53.64mm"/>
</style:style>
<style:style style:name="co5" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="39.76mm"/>
</style:style>
<style:style style:name="co6" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="20.41mm"/>
</style:style>
<style:style style:name="co7" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="22.98mm"/>
</style:style>
<style:style style:name="co8" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="40.23mm"/>
</style:style>
<style:style style:name="co9" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="38.66mm"/>
</style:style>
<style:style style:name="co10" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="56.13mm"/>
</style:style>
<style:style style:name="co11" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="22.58mm"/>
</style:style>
<style:style style:name="co2" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="60.73mm"/>
</style:style>
<style:style style:name="co3" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="46.58mm"/>
</style:style>
<style:style style:name="co4" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="29.4mm"/>
</style:style>
<style:style style:name="co5" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="53.64mm"/>
</style:style>
<style:style style:name="co6" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="39.76mm"/>
</style:style>
<style:style style:name="co7" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="20.41mm"/>
</style:style>
<style:style style:name="co8" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="22.98mm"/>
</style:style>
<style:style style:name="co9" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="40.23mm"/>
</style:style>
<style:style style:name="co10" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="38.66mm"/>
</style:style>
<style:style style:name="co12" style:family="table-column">
<style:table-column-properties fo:break-before="auto" style:column-width="56.13mm"/>
</style:style>
<style:style style:name="ro1" style:family="table-row">
<style:table-row-properties style:row-height="4.52mm" fo:break-before="auto" style:use-optimal-row-height="true"/>
</style:style>
@ -231,155 +285,6 @@
<number:text-style style:name="N100">
<number:text-content/>
</number:text-style>
<style:style style:name="ce1" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-size="12pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6.80000019073486pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6.80000019073486pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce11" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:background-color="#eeeeee" fo:border="0.06pt solid #000000"/>
</style:style>
<style:style style:name="ce12" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #000000"/>
<style:paragraph-properties fo:text-align="center" fo:margin-left="0mm"/>
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce13" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:wrap-option="wrap" fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="ce14" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce15" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0mm"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce17" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-size="12pt" fo:font-weight="normal" style:font-size-asian="12pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="ce18" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" style:font-name="Liberation Sans" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
<style:style style:name="ce19" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0mm"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce2" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:background-color="#eeeeee" style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0mm"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce20" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:wrap-option="wrap" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0mm"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce21" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce22" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="normal" style:font-size-asian="12pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="ce23" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="ce24" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="ce25" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-size="14pt" fo:font-weight="bold" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce26" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false"/>
<style:paragraph-properties fo:text-align="end" fo:margin-left="0mm"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce27" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="normal" style:font-size-asian="12pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="ce28" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:background-color="transparent" fo:border="0.06pt solid #000000"/>
</style:style>
<style:style style:name="ce29" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:wrap-option="wrap"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce3" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce30" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:background-color="#eeeeee" fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce31" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
</style:style>
<style:style style:name="ce32" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce33" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N36">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
</style:style>
<style:style style:name="ce34" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce36" style:family="table-cell" style:parent-style-name="Default" style:data-style-name="N100">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
</style:style>
<style:style style:name="ce37" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce4" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0mm"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce40" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="ce46" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="ce53" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="ce61" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:background-color="#eeeeee" fo:wrap-option="wrap" fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce65" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0mm"/>
</style:style>
<style:style style:name="ce7" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce8" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
<style:text-properties style:font-name="Arial" fo:font-size="11pt" fo:font-weight="normal" style:font-name-asian="Droid Sans" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-name-complex="Lohit Hindi" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="ce9" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="ce69" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties style:use-window-font-color="true" style:text-outline="false" style:text-line-through-style="none" style:text-line-through-type="none" fo:font-size="12pt" fo:language="en" fo:country="US" fo:font-style="normal" fo:text-shadow="none" style:text-underline-style="none" fo:font-weight="normal" style:text-underline-mode="continuous" style:text-overline-mode="continuous" style:text-line-through-mode="continuous" style:font-size-asian="6.80000019073486pt" style:language-asian="en" style:country-asian="US" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="6.80000019073486pt" style:language-complex="en" style:country-complex="US" style:font-style-complex="normal" style:font-weight-complex="normal" style:text-emphasize="none" style:font-relief="none" style:text-overline-style="none" style:text-overline-color="font-color"/>
</style:style>
@ -396,11 +301,11 @@
<style:paragraph-properties fo:text-align="start" fo:margin-left="0mm"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="bold" style:font-size-asian="12pt" style:font-weight-asian="bold" style:font-size-complex="12pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="ce73" style:family="table-cell" style:parent-style-name="Default">
<style:style style:name="ce5" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
<style:style style:name="ce74" style:family="table-cell" style:parent-style-name="Default">
<style:style style:name="ce6" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
</style:style>
<style:style style:name="ce75" style:family="table-cell" style:parent-style-name="Default">
@ -414,7 +319,7 @@
<style:style style:name="ce77" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-size="11pt" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="ce78" style:family="table-cell" style:parent-style-name="Default">
<style:style style:name="ce10" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
@ -440,7 +345,7 @@
<style:paragraph-properties fo:text-align="start" fo:margin-left="0mm"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce84" style:family="table-cell" style:parent-style-name="Default">
<style:style style:name="ce16" style:family="table-cell" style:parent-style-name="Default">
<style:text-properties fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="ce85" style:family="table-cell" style:parent-style-name="Default">
@ -471,7 +376,7 @@
<style:paragraph-properties fo:text-align="center"/>
<style:text-properties fo:font-size="12pt" fo:font-weight="normal" style:font-size-asian="12pt" style:font-weight-asian="normal" style:font-size-complex="12pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="ce91" style:family="table-cell" style:parent-style-name="Default">
<style:style style:name="ce23" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:background-color="transparent" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="center"/>
</style:style>
@ -503,7 +408,7 @@
<style:table-cell-properties fo:background-color="#eeeeee" fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce99" style:family="table-cell" style:parent-style-name="Default">
<style:style style:name="ce31" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties fo:background-color="#eeeeee" fo:wrap-option="wrap" fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
@ -519,7 +424,7 @@
<style:table-cell-properties fo:border="0.06pt solid #000000"/>
<style:text-properties fo:font-size="12pt" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="ce103" style:family="table-cell" style:parent-style-name="Default">
<style:style style:name="ce35" style:family="table-cell" style:parent-style-name="Default">
<style:table-cell-properties style:text-align-source="fix" style:repeat-content="false" fo:border="0.06pt solid #000000" style:vertical-align="middle"/>
<style:paragraph-properties fo:text-align="start" fo:margin-left="0mm"/>
</style:style>
@ -557,9 +462,6 @@
<style:style style:name="T2" style:family="text">
<style:text-properties style:font-name-asian="Droid Sans"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties style:font-name-asian="Droid Sans"/>
</style:style>
</office:automatic-styles>
<office:master-styles>
<style:master-page style:name="Default" style:page-layout-name="pm1">
@ -578,7 +480,7 @@
<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="2018-06-08">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="09:33:05.880255011">00:00:00</text:time></text:p>
<text:p><text:date style:data-style-name="N2" text:date-value="2021-09-22">00/00/0000</text:date>, <text:time style:data-style-name="N2" text:time-value="17:27:04.097234929">00:00:00</text:time></text:p>
</style:region-right>
</style:header>
<style:header-left style:display="false"/>
@ -591,16 +493,16 @@
<office:body>
<office:spreadsheet>
<table:table table:name="Hoja1" 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="co3" table:default-cell-style-name="ce84"/>
<table:table-column table:style-name="co4" 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="co4" table:default-cell-style-name="ce16"/>
<table:table-column table:style-name="co5" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co6" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co7" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co8" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co9" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co10" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co12" table:default-cell-style-name="Default"/>
<table:table-column table:style-name="co11" table:number-columns-repeated="1013" table:default-cell-style-name="Default"/>
<table:table-row table:style-name="ro1">
<table:table-cell table:number-columns-repeated="1023"/>
@ -643,7 +545,7 @@
<table:covered-table-cell/>
<table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="8" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://stp_matrix%20if%20stp_matrix%20else%20&apos;&apos;" xlink:type="simple">stp_matrix if stp_matrix else &apos;&apos;</text:a></text:p>
</table:table-cell>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce74"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce6"/>
<table:covered-table-cell table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
@ -654,7 +556,7 @@
<table:covered-table-cell/>
<table:table-cell table:style-name="ce87" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="8" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://stp_reference_objects_list%20if%20stp_reference_objects_list%20else%20&apos;&apos;" xlink:type="simple">stp_reference_objects_list if stp_reference_objects_list else &apos;&apos;</text:a></text:p>
</table:table-cell>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce74"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce6"/>
<table:covered-table-cell table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
@ -665,20 +567,20 @@
<table:covered-table-cell/>
<table:table-cell table:style-name="ce88" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="6" table:number-rows-spanned="1"><text:p><text:a xlink:href="relatorio://stp_test_method%20if%20stp_test_method%20else%20&apos;&apos;" xlink:type="simple">stp_test_method if stp_test_method else &apos;&apos;</text:a></text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce6"/>
<table:covered-table-cell table:style-name="ce79"/>
<table:covered-table-cell table:style-name="ce91"/>
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce74"/>
<table:table-cell table:style-name="ce99" office:value-type="string" calcext:value-type="string">
<table:covered-table-cell table:style-name="ce23"/>
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce6"/>
<table:table-cell table:style-name="ce31" office:value-type="string" calcext:value-type="string">
<text:p>AFS or control used:</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce6"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:table-cell table:style-name="ce70" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p>Date of Weighing / Removal <text:span text:style-name="T1">*2</text:span></text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce78"/>
<table:covered-table-cell table:style-name="ce10"/>
<table:table-cell table:style-name="ce89" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p><text:s/>_____/_____/201___ <text:s text:c="2"/></text:p>
</table:table-cell>
@ -690,7 +592,7 @@
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce102"/>
<table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string"><text:p>OP <text:span text:style-name="T1">*3</text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce6"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro3">
@ -700,20 +602,20 @@
<table:table-cell table:style-name="ce70" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>Location:</text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce91" table:number-columns-spanned="4" table:number-rows-spanned="1"/>
<table:covered-table-cell table:style-name="ce73"/>
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce23" table:number-columns-spanned="4" table:number-rows-spanned="1"/>
<table:covered-table-cell table:style-name="ce5"/>
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce6"/>
<table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string">
<text:p>T°:</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce6"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro5">
<table:table-cell table:style-name="ce70" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p>Date of purification and / or cleaning <text:span text:style-name="T1">*2</text:span></text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce78"/>
<table:covered-table-cell table:style-name="ce10"/>
<table:table-cell table:style-name="ce90" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p><text:s/>_____/_____/201___ <text:s text:c="2"/></text:p>
</table:table-cell>
@ -721,14 +623,14 @@
<table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string">
<text:p>Factor or aliquot:</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce99" office:value-type="string" calcext:value-type="string">
<table:table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce31" office:value-type="string" calcext:value-type="string">
<text:p>Final volume:</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string"><text:p>OP <text:span text:style-name="T1">*3</text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce6"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro3">
@ -737,52 +639,52 @@
<table:table-row table:style-name="ro3">
<table:table-cell table:style-name="ce70" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1"><text:p>Storage of extract <text:span text:style-name="T1">*4</text:span></text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce91" table:number-columns-spanned="2" table:number-rows-spanned="1"/>
<table:covered-table-cell table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce23" table:number-columns-spanned="2" table:number-rows-spanned="1"/>
<table:covered-table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string">
<text:p>Location:</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string">
<text:p>T°:</text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce98" office:value-type="string" calcext:value-type="string"><text:p>OP. <text:span text:style-name="T1">*5</text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce6"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro6">
<table:table-cell table:style-name="ce70" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>Injection date:</text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce78"/>
<table:covered-table-cell table:style-name="ce10"/>
<table:table-cell table:style-name="ce90" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p><text:s/>_____/_____/201___ <text:s text:c="2"/></text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce96"/>
<table:table-cell table:style-name="ce99" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<table:table-cell table:style-name="ce31" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>Equipment (corresponding batch number):</text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce103" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<table:covered-table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>LC-MS-MS N°: <text:s text:c="21"/></text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce74"/>
<table:table-cell table:style-name="ce103" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<table:covered-table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce35" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>GC-MS-MS N°:</text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce103"/>
<table:covered-table-cell table:style-name="ce35"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:table-cell table:style-name="ce70" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="2" table:number-rows-spanned="1">
<text:p>Chromatographic column:</text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce6"/>
<table:table-cell table:style-name="ce92" table:number-columns-spanned="8" table:number-rows-spanned="1"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce74"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce6"/>
<table:covered-table-cell table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
@ -816,38 +718,38 @@
<table:table-cell table:style-name="ce72" office:value-type="string" calcext:value-type="string" table:number-columns-spanned="10" table:number-rows-spanned="1">
<text:p>Observations and / or comments</text:p>
</table:table-cell>
<table:covered-table-cell table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce78"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce6"/>
<table:covered-table-cell table:style-name="ce10"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce6"/>
<table:covered-table-cell table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:table-cell table:style-name="ce73" table:number-columns-spanned="10" table:number-rows-spanned="4"/>
<table:covered-table-cell table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce78"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce74"/>
<table:table-cell table:style-name="ce5" table:number-columns-spanned="10" table:number-rows-spanned="4"/>
<table:covered-table-cell table:style-name="ce6"/>
<table:covered-table-cell table:style-name="ce10"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce6"/>
<table:covered-table-cell table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce78"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce74"/>
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce6"/>
<table:covered-table-cell table:style-name="ce10"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce6"/>
<table:covered-table-cell table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce78"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce74"/>
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce6"/>
<table:covered-table-cell table:style-name="ce10"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce6"/>
<table:covered-table-cell table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
<table:table-row table:style-name="ro3">
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce74"/>
<table:covered-table-cell table:style-name="ce78"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce74"/>
<table:covered-table-cell table:number-columns-repeated="2" table:style-name="ce6"/>
<table:covered-table-cell table:style-name="ce10"/>
<table:covered-table-cell table:number-columns-repeated="5" table:style-name="ce6"/>
<table:covered-table-cell table:number-columns-repeated="2"/>
<table:table-cell table:number-columns-repeated="1013"/>
</table:table-row>
@ -870,8 +772,7 @@
<table:table-cell table:number-columns-repeated="1023"/>
</table:table-row>
<table:table-row table:style-name="ro8">
<table:table-cell table:style-name="ce75" office:value-type="string" calcext:value-type="string">
<text:p><text:a xlink:href="relatorio://'Código %s' % (company.short_name, )" xlink:type="simple">company.short_name</text:a></text:p>
<table:table-cell table:style-name="ce75" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://&apos;Código%20%25s&apos;%20%25%20(company.short_name,%20)" xlink:type="simple">company.short_name</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce80" office:value-type="string" calcext:value-type="string">
<text:p>Label (described by customer)</text:p>
@ -903,22 +804,22 @@
<table:table-cell table:style-name="ce105" table:number-columns-repeated="1012"/>
</table:table-row>
<table:table-row table:style-name="ro1">
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22object%20in%20objects%22" xlink:type="simple">for each=&quot;object in objects&quot;</text:a></text:p>
<table:table-cell office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://for%20each=%22object%20in%20records%22" xlink:type="simple">for each=&quot;object in records&quot;</text:a></text:p>
</table:table-cell>
<table:table-cell table:number-columns-repeated="1022"/>
</table:table-row>
<table:table-row table:style-name="ro9">
<table:table-cell table:style-name="ce76" office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T3"><text:a xlink:href="relatorio://object.number" xlink:type="simple">object.number</text:a></text:span></text:p>
<table:table-cell table:style-name="ce76" office:value-type="string" calcext:value-type="string"><text:p><text:span text:style-name="T2"><text:a xlink:href="relatorio://object.number" xlink:type="simple">object.number</text:a></text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce81" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://object.label" xlink:type="simple">object.label</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce81" office:value-type="string" calcext:value-type="string"><text:p><text:a xlink:href="relatorio://object.fraction_type" xlink:type="simple">object.fraction_type</text:a></text:p>
</table:table-cell>
<table:table-cell table:style-name="ce74" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce6" table:number-columns-repeated="2"/>
<table:table-cell table:style-name="ce101"/>
<table:table-cell table:style-name="ce104"/>
<table:table-cell table:style-name="ce101"/>
<table:table-cell table:style-name="ce74" table:number-columns-repeated="3"/>
<table:table-cell table:style-name="ce6" table:number-columns-repeated="3"/>
<table:table-cell table:number-columns-repeated="1012"/>
</table:table-row>
<table:table-row table:style-name="ro1">

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-05-02T16:12:34.745782454</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="2642" meta:image-count="0" meta:non-whitespace-character-count="2400" meta:object-count="0" meta:page-count="2" meta:paragraph-count="76" meta:table-count="3" meta:word-count="313"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-05-02T16:12:34.745782454</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:character-count="2642" meta:image-count="0" meta:non-whitespace-character-count="2400" meta:object-count="0" meta:page-count="2" meta:paragraph-count="76" meta:table-count="3" meta:word-count="313"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">46143</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">28312</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">12901</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">12894</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">15990</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">3600</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">28310</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">12899</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">46143</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">60881</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">120</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">8126610</config:config-item>
<config:config-item config:name="Rsid" config:type="int">8188339</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -343,20 +343,20 @@
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Footer">
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" fo:language="zxx" fo:country="none" officeooo:rsid="00451303" officeooo:paragraph-rsid="00451303" style:font-size-asian="11pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="11pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
@ -498,7 +498,11 @@
<style:paragraph-properties fo:margin-left="1.245cm" fo:margin-right="0cm" fo:text-indent="0cm" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="0044171c" officeooo:paragraph-rsid="00714a3f" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:master-page-name="Standard">
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:master-page-name="">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="1cm" loext:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false" style:page-number="auto" fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0052720f" officeooo:paragraph-rsid="0052720f" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:master-page-name="Standard">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="1cm" loext:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false" style:page-number="auto" fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0052720f" officeooo:paragraph-rsid="0052720f" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
@ -558,17 +562,17 @@
<table:table-column table:style-name="Header.A" table:number-columns-repeated="3"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="1">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="1">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"/>
<text:p text:style-name="P5"/>
</table:table-cell>
<table:table-cell table:style-name="Header.C1" office:value-type="string">
<text:p text:style-name="P4"><text:span text:style-name="T1">Study plan </text:span><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
<text:p text:style-name="P6"><text:span text:style-name="T1">Study plan </text:span><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -589,7 +593,7 @@
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="P44">Study plan</text:p>
<text:p text:style-name="P45">Study plan</text:p>
<text:p text:style-name="P13">Title:<text:span text:style-name="T3"> </text:span><text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;stp_title&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P13">ID:<text:span text:style-name="T3"> </text:span><text:span text:style-name="T3"><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P7"/>

View File

@ -137,12 +137,12 @@ class ProjectWaterSampling(Report):
return super().execute(ids, data)
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
pool = Pool()
Project = pool.get('lims.project')
Fraction = pool.get('lims.fraction')
Entry = pool.get('lims.entry')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
project = Project(data['id'])
entry = Entry.search([
@ -198,7 +198,7 @@ class ProjectWaterSampling(Report):
'results': (cls.get_results_insitu(fraction.id)),
})
report_context['objects'] = objects
report_context['records'] = objects
return report_context
@classmethod

View File

@ -1,28 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2016-05-02T16:12:34.745782454</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.5.1$Linux_X86_64 LibreOffice_project/00m0$Build-1</meta:generator><meta:document-statistic meta:character-count="1407" meta:image-count="0" meta:non-whitespace-character-count="1327" meta:object-count="0" meta:page-count="2" meta:paragraph-count="72" meta:table-count="6" meta:word-count="145"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:meta><meta:creation-date>2016-05-02T16:12:34.745782454</meta:creation-date><meta:editing-duration>P0D</meta:editing-duration><meta:editing-cycles>1</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="6" meta:image-count="0" meta:object-count="0" meta:page-count="2" meta:paragraph-count="72" meta:word-count="146" meta:character-count="1428" meta:non-whitespace-character-count="1347"/><meta:user-defined meta:name="Info 1"/><meta:user-defined meta:name="Info 2"/><meta:user-defined meta:name="Info 3"/><meta:user-defined meta:name="Info 4"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">21235</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">9410</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">13760</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">7160</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">3600</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">7848</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">41764</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">21234</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">9409</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">13758</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">160</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
@ -92,7 +92,7 @@
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">12882913</config:config-item>
<config:config-item config:name="Rsid" config:type="int">12950917</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
@ -426,70 +426,70 @@
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans"/>
</style:style>
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P4" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="0090ef6f" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="00976dfe" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="0091ea5c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="007c2e5a" officeooo:paragraph-rsid="00c3a5be" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="007c2e5a" officeooo:paragraph-rsid="00c3a5be" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" officeooo:paragraph-rsid="0091ea5c" style:font-size-asian="10pt" style:font-size-complex="10pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="0090ef6f" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="007c2e5a" officeooo:paragraph-rsid="00c3a5be" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="0091ea5c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="007c2e5a" officeooo:paragraph-rsid="00c3a5be" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="0095ec1c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="0090ef6f" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00976dfe" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="0091ea5c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="0095096f" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="0095ec1c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0095096f" officeooo:paragraph-rsid="0095096f" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00976dfe" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00976dfe" officeooo:paragraph-rsid="00976dfe" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00418ed6" officeooo:paragraph-rsid="0095096f" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="009526d2" officeooo:paragraph-rsid="009526d2" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="0095096f" officeooo:paragraph-rsid="0095096f" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00976dfe" officeooo:paragraph-rsid="00976dfe" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="009526d2" officeooo:paragraph-rsid="009526d2" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="bold" officeooo:rsid="00c41f7e" officeooo:paragraph-rsid="00c41f7e" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Header">
<style:text-properties style:font-name="Liberation Sans"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Footer">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:rsid="001cbd64" officeooo:paragraph-rsid="003114dd" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="12pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="007c2e5a" officeooo:paragraph-rsid="007c2e5a" style:font-size-asian="12pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
@ -684,7 +684,11 @@
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="00451303" officeooo:paragraph-rsid="009d9f1b" style:font-size-asian="10pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="10pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:master-page-name="Standard">
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:master-page-name="">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="1cm" loext:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false" style:page-number="auto" fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="007b1f1d" officeooo:paragraph-rsid="007b1f1d" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:master-page-name="Standard">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="1cm" loext:contextual-spacing="false" fo:text-align="center" style:justify-single-word="false" style:page-number="auto" fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="14pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="007b1f1d" officeooo:paragraph-rsid="007b1f1d" style:font-size-asian="14pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="14pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
@ -744,17 +748,17 @@
<table:table-column table:style-name="Header.A" table:number-columns-repeated="3"/>
<table:table-row table:style-name="Header.1">
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="1">
<text:p text:style-name="P5"><draw:frame draw:style-name="fr1" draw:name="image: (company.logo, &apos;image/png&apos;, &apos;6cm&apos;, &apos;1.5cm&apos;)" text:anchor-type="paragraph" svg:x="0.06cm" svg:y="0.019cm" svg:width="6.001cm" draw:z-index="1">
<draw:text-box fo:min-height="1.6cm">
<text:p text:style-name="Frame_20_contents"/>
</draw:text-box>
</draw:frame></text:p>
</table:table-cell>
<table:table-cell office:value-type="string">
<text:p text:style-name="P3"/>
<text:p text:style-name="P5"/>
</table:table-cell>
<table:table-cell table:style-name="Header.C1" office:value-type="string">
<text:p text:style-name="P4"><text:span text:style-name="T1">Water Sampling </text:span><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
<text:p text:style-name="P6"><text:span text:style-name="T1">Water Sampling </text:span><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
</table:table>
@ -775,7 +779,7 @@
<text:sequence-decl text:display-outline-level="0" text:name="Text"/>
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
</text:sequence-decls>
<text:p text:style-name="P74">Report: <text:span text:style-name="T5">Environmental Sampling</text:span></text:p>
<text:p text:style-name="P75">Report: <text:span text:style-name="T5">Environmental Sampling</text:span></text:p>
<text:p text:style-name="P26"><text:span text:style-name="T7">Date:</text:span> <text:span text:style-name="T2"><text:s/></text:span><text:span text:style-name="T2"><text:placeholder text:placeholder-type="text">&lt;format_date(date, user.language) if date else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P23"/>
<text:p text:style-name="P26"><text:span text:style-name="T7">Applicant:</text:span><text:span text:style-name="T2"> </text:span><text:span text:style-name="T2"><text:placeholder text:placeholder-type="text">&lt;client.full_name&gt;</text:placeholder></text:span></text:p>
@ -803,8 +807,8 @@
<text:p text:style-name="P31">Description: <text:s/><text:span text:style-name="T2"><text:placeholder text:placeholder-type="text">&lt;description&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P22"/>
<text:p text:style-name="P36">Numbers of chain of custody:</text:p>
<text:p text:style-name="P8"><text:s/><text:span text:style-name="T2"><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P9"/>
<text:p text:style-name="P10"><text:s/><text:span text:style-name="T2"><text:placeholder text:placeholder-type="text">&lt;code&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P11"/>
<text:p text:style-name="P32">Weather conditions:</text:p>
<text:p text:style-name="P48"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;wtr_comments&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P42"><text:placeholder text:placeholder-type="text">&lt;wtr_comments&gt;</text:placeholder></text:p>
@ -817,7 +821,7 @@
<text:p text:style-name="P21"/>
<text:p text:style-name="P37">Type and number of samples taken:</text:p>
<text:p text:style-name="P65"/>
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;records&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Tabla2" table:style-name="Tabla2">
<table:table-column table:style-name="Tabla2.A"/>
<table:table-column table:style-name="Tabla2.B"/>
@ -828,34 +832,34 @@
<text:p text:style-name="P40">Label</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla2.A1" office:value-type="string">
<text:p text:style-name="P14"><text:span>Code </text:span><text:placeholder text:placeholder-type="text">&lt;company.short_name&gt;</text:placeholder></text:p>
<text:p text:style-name="P16">Code <text:placeholder text:placeholder-type="text">&lt;company.short_name&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla2.C1" office:value-type="string">
<text:p text:style-name="P15">Packages</text:p>
<text:p text:style-name="P17">Packages</text:p>
</table:table-cell>
</table:table-row>
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Tabla2.A2" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P5"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in records&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla2.A3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla2.A3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;number&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla2.C3" office:value-type="string">
<text:p text:style-name="P10"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;packages&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla2.A2" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P5"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -865,7 +869,7 @@
<text:p text:style-name="P61"/>
<text:p text:style-name="P34">Place and description of sampling points:</text:p>
<text:p text:style-name="P34"/>
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;records&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Tabla3" table:style-name="Tabla3">
<table:table-column table:style-name="Tabla3.A"/>
<table:table-column table:style-name="Tabla3.B"/>
@ -876,16 +880,16 @@
<text:p text:style-name="P41">Label</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla3.A1" office:value-type="string">
<text:p text:style-name="P17">Sampling point</text:p>
<text:p text:style-name="P19">Sampling point</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla3.C1" office:value-type="string">
<text:p text:style-name="P18">GPS Coordinates</text:p>
<text:p text:style-name="P20">GPS Coordinates</text:p>
</table:table-cell>
</table:table-row>
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Tabla3.A2" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in records&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -893,18 +897,18 @@
<text:soft-page-break/>
<table:table-row>
<table:table-cell table:style-name="Tabla3.A3" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla3.A3" office:value-type="string">
<text:p text:style-name="P11"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;sampling_point&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;sampling_point&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla3.C3" office:value-type="string">
<text:p text:style-name="P12"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;gps_coordinates&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;gps_coordinates&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla3.A2" table:number-columns-spanned="3" office:value-type="string">
<text:p text:style-name="P7"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P9"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -923,7 +927,7 @@
<text:p text:style-name="P44"/>
<text:p text:style-name="P59">On-site measurements performed:</text:p>
<text:p text:style-name="P59"/>
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P61"><text:placeholder text:placeholder-type="text">&lt;if test=&quot;records&quot;&gt;</text:placeholder></text:p>
<table:table table:name="Tabla4" table:style-name="Tabla4">
<table:table-column table:style-name="Tabla4.A"/>
<table:table-column table:style-name="Tabla4.B"/>
@ -933,19 +937,19 @@
<text:p text:style-name="P39">Label</text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla4.B1" office:value-type="string">
<text:p text:style-name="P16">Results</text:p>
<text:p text:style-name="P18">Results</text:p>
</table:table-cell>
</table:table-row>
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Tabla4.A2" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;fraction in records&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla4.A3" office:value-type="string">
<text:p text:style-name="P13"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;fraction[&apos;label&apos;]&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Tabla4.B3" office:value-type="string">
<text:p text:style-name="P46"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in fraction[&apos;results&apos;]&quot;&gt;</text:placeholder></text:p>
@ -955,7 +959,7 @@
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Tabla4.A2" table:number-columns-spanned="2" office:value-type="string">
<text:p text:style-name="P6"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P8"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
</table:table-row>

View File

@ -659,12 +659,12 @@ class TestReport(CompanyReport):
return result
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
Test = Pool().get('lims.quality.test')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
report_context['objects'] = Test.browse(data['ids'])
report_context['records'] = Test.browse(data['ids'])
report_context['get_professionals'] = cls.get_professionals
return report_context

View File

@ -1,127 +1,119 @@
<?xml version="1.0" encoding="UTF-8"?>
<office:document xmlns:officeooo="http://openoffice.org/2009/office" 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: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:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:rpt="http://openoffice.org/2005/report" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta: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:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:ooo="http://openoffice.org/2004/office" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext: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:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2020-01-14T15:29:16.163960942</meta:creation-date><dc:date>2020-04-30T11:57:28.542811118</dc:date><meta:editing-duration>P2DT7H32M47S</meta:editing-duration><meta:editing-cycles>25</meta:editing-cycles><meta:generator>LibreOffice/6.4.3.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:document-statistic meta:table-count="1" meta:image-count="0" meta:object-count="0" meta:page-count="2" meta:paragraph-count="25" meta:word-count="60" meta:character-count="695" meta:non-whitespace-character-count="656"/></office:meta>
<office:document xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:officeooo="http://openoffice.org/2009/office" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2" office:mimetype="application/vnd.oasis.opendocument.text">
<office:meta><meta:creation-date>2020-01-14T15:29:16.163960942</meta:creation-date><dc:date>2021-09-22T17:22:07.121627594</dc:date><meta:editing-duration>P2DT7H33M3S</meta:editing-duration><meta:editing-cycles>26</meta:editing-cycles><meta:generator>LibreOffice/6.0.7.3$Linux_X86_64 LibreOffice_project/00m0$Build-3</meta:generator><meta:document-statistic meta:table-count="1" meta:image-count="0" meta:object-count="0" meta:page-count="2" meta:paragraph-count="25" meta:word-count="60" meta:character-count="695" meta:non-whitespace-character-count="656"/></office:meta>
<office:settings>
<config:config-item-set config:name="ooo:view-settings">
<config:config-item config:name="ViewAreaTop" config:type="long">35719</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">28998</config:config-item>
<config:config-item config:name="ViewAreaLeft" config:type="long">0</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">21086</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">8650</config:config-item>
<config:config-item config:name="ViewAreaWidth" config:type="long">34503</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">14739</config:config-item>
<config:config-item config:name="ShowRedlineChanges" config:type="boolean">true</config:config-item>
<config:config-item config:name="InBrowseMode" config:type="boolean">false</config:config-item>
<config:config-item-map-indexed config:name="Views">
<config:config-item-map-entry>
<config:config-item config:name="ViewId" config:type="string">view2</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">16417</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">40379</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">8250</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">4461</config:config-item>
<config:config-item config:name="VisibleLeft" config:type="long">0</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">35719</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">21084</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">44367</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">28998</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">34502</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">43736</config:config-item>
<config:config-item config:name="ZoomType" config:type="short">0</config:config-item>
<config:config-item config:name="ViewLayoutColumns" config:type="short">1</config:config-item>
<config:config-item config:name="ViewLayoutBookMode" config:type="boolean">false</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">160</config:config-item>
<config:config-item config:name="ZoomFactor" config:type="short">100</config:config-item>
<config:config-item config:name="IsSelectedFrame" config:type="boolean">false</config:config-item>
<config:config-item config:name="AnchoredTextOverflowLegacy" config:type="boolean">false</config:config-item>
</config:config-item-map-entry>
</config:config-item-map-indexed>
</config:config-item-set>
<config:config-item-set config:name="ooo:configuration-settings">
<config:config-item config:name="PrintPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspect" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintReversed" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintSingleJobs" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintTextPlaceholder" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmptyDbFieldHidesPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="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="ContinuousEndnotes" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintPaperFromSetup" 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="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintFaxName" config:type="string"/>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" 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="SaveThumbnail" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">1500963</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="CharacterCompressionType" config:type="short">0</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterPaperFromSetup" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="PrintTables" config:type="boolean">true</config:config-item>
<config:config-item config:name="DoNotJustifyLinesWithManualBreak" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintProspectRTL" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">false</config:config-item>
<config:config-item config:name="AlignTabStopPosition" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintLeftPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreFirstLineIndentInNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterSetup" config:type="base64Binary"/>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="RedlineProtectionKey" config:type="base64Binary"/>
<config:config-item config:name="UseOldPrinterMetrics" config:type="boolean">false</config:config-item>
<config:config-item config:name="UseOldNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddExternalLeading" config:type="boolean">true</config:config-item>
<config:config-item config:name="TreatSingleColumnBreakAsPageBreak" 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="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">1176009</config:config-item>
<config:config-item config:name="ConsiderTextWrapOnObjPos" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabsRelativeToIndent" 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="UseFormerTextWrapping" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacingAtStart" config:type="boolean">true</config:config-item>
<config:config-item config:name="AllowPrintJobCancel" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaTableSpacing" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintDrawings" config:type="boolean">true</config:config-item>
<config:config-item config:name="AddParaSpacingToTableCells" config:type="boolean">true</config:config-item>
<config:config-item config:name="UseFormerLineSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="OutlineLevelYieldsNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="LinkUpdateMode" config:type="short">1</config:config-item>
<config:config-item config:name="DoNotResetParaAttrsForNumFont" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyUserData" config:type="boolean">true</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbeddedDatabaseName" config:type="string"/>
<config:config-item config:name="FloattableNomargins" config:type="boolean">false</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterName" config:type="string"/>
<config:config-item config:name="UseFormerObjectPositioning" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabOverMargin" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveGlobalDocumentLinks" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseDataSource" config:type="string"/>
<config:config-item config:name="IsKernAsianPunctuation" 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="SmallCapsPercentage66" config:type="boolean">false</config:config-item>
<config:config-item config:name="CurrentDatabaseCommand" config:type="string"/>
<config:config-item config:name="CurrentDatabaseCommandType" config:type="int">0</config:config-item>
<config:config-item config:name="FieldAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="IgnoreTabsAndBlanksForLineCalculation" config:type="boolean">false</config:config-item>
<config:config-item config:name="LoadReadonly" config:type="boolean">false</config:config-item>
<config:config-item config:name="DoNotCaptureDrawObjsOnPage" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClipAsCharacterAnchoredWriterFlyFrames" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintBlackFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="DisableOffPagePositioning" config:type="boolean">true</config:config-item>
<config:config-item config:name="SurroundTextWrapSmall" config:type="boolean">false</config:config-item>
<config:config-item config:name="UnxForceZeroExtLeading" config:type="boolean">false</config:config-item>
<config:config-item config:name="IsLabelDocument" config:type="boolean">false</config:config-item>
<config:config-item config:name="TableRowKeep" config:type="boolean">false</config:config-item>
<config:config-item config:name="RsidRoot" config:type="int">1176009</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="BackgroundParaOverDrawings" config:type="boolean">false</config:config-item>
<config:config-item config:name="SaveVersionOnClose" config:type="boolean">false</config:config-item>
<config:config-item config:name="TabAtLeftIndentForParagraphsInList" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintRightPages" config:type="boolean">true</config:config-item>
<config:config-item config:name="Rsid" config:type="int">1563768</config:config-item>
<config:config-item config:name="MathBaselineAlignment" config:type="boolean">true</config:config-item>
<config:config-item config:name="SmallCapsPercentage66" config:type="boolean">false</config:config-item>
<config:config-item config:name="CollapseEmptyCellPara" config:type="boolean">true</config:config-item>
<config:config-item config:name="MsWordCompTrailingBlanks" config:type="boolean">false</config:config-item>
<config:config-item config:name="InvertBorderSpacing" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrinterIndependentLayout" config:type="string">high-resolution</config:config-item>
<config:config-item config:name="TabOverflow" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintGraphics" config:type="boolean">true</config:config-item>
<config:config-item config:name="PropLineSpacingShrinksFirstLine" config:type="boolean">true</config:config-item>
<config:config-item config:name="UnbreakableNumberings" config:type="boolean">false</config:config-item>
<config:config-item config:name="ChartAutoUpdate" config:type="boolean">true</config:config-item>
<config:config-item config:name="StylesNoDefault" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="ClippedPictures" config:type="boolean">false</config:config-item>
<config:config-item config:name="EmbedSystemFonts" config:type="boolean">false</config:config-item>
<config:config-item config:name="ApplyParagraphMarkFormatToNumbering" config:type="boolean">false</config:config-item>
<config:config-item config:name="SubtractFlysAnchoredAtFlys" config:type="boolean">false</config:config-item>
<config:config-item config:name="AddVerticalFrameOffsets" config:type="boolean">false</config:config-item>
<config:config-item config:name="ProtectForm" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintEmptyPages" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintControls" config:type="boolean">true</config:config-item>
<config:config-item config:name="PrintHiddenText" config:type="boolean">false</config:config-item>
<config:config-item config:name="PrintAnnotationMode" config:type="short">0</config:config-item>
<config:config-item config:name="PrintPageBackground" config:type="boolean">true</config:config-item>
</config:config-item-set>
</office:settings>
<office:scripts>
@ -135,8 +127,8 @@
<style:font-face style:name="FreeSans1" svg:font-family="FreeSans" style:font-family-generic="swiss"/>
<style:font-face style:name="Liberation Serif" svg:font-family="&apos;Liberation Serif&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Open Sans" svg:font-family="&apos;Open Sans&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Predeterminado" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Predeterminado" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
<style:font-face style:name="Open Sans1" svg:font-family="&apos;Open Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
@ -151,7 +143,7 @@
</style:default-style>
<style:default-style style:family="paragraph">
<style:paragraph-properties fo:orphans="2" fo:widows="2" fo:hyphenation-ladder-count="no-limit" style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging" style:line-break="strict" style:tab-stop-distance="1.251cm" style:writing-mode="page"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="es" fo:country="AR" style:letter-kerning="true" style:font-name-asian="DejaVu Sans" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="FreeSans" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2" loext:hyphenation-no-caps="false"/>
<style:text-properties style:use-window-font-color="true" style:font-name="Liberation Serif" fo:font-size="12pt" fo:language="es" fo:country="AR" style:letter-kerning="true" style:font-name-asian="DejaVu Sans" style:font-size-asian="10.5pt" style:language-asian="zh" style:country-asian="CN" style:font-name-complex="FreeSans" style:font-size-complex="12pt" style:language-complex="hi" style:country-complex="IN" fo:hyphenate="false" fo:hyphenation-remain-char-count="2" fo:hyphenation-push-char-count="2"/>
</style:default-style>
<style:default-style style:family="table">
<style:table-properties table:border-model="collapsing"/>
@ -162,7 +154,7 @@
<style:style style:name="Standard" style:family="paragraph" style:class="text"/>
<style:style style:name="Heading" style:family="paragraph" style:parent-style-name="Standard" style:next-style-name="Text_20_body" style:class="text">
<style:paragraph-properties fo:margin-top="0.423cm" fo:margin-bottom="0.212cm" loext:contextual-spacing="false" fo:keep-with-next="always"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="DejaVu Sans" style:font-family-asian="&apos;DejaVu Sans&apos;" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="FreeSans" style:font-family-complex="FreeSans" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-size="14pt" style:font-name-asian="DejaVu Sans" style:font-family-asian="&apos;DejaVu Sans&apos;" style:font-family-generic-asian="system" style:font-pitch-asian="variable" style:font-size-asian="14pt" style:font-name-complex="FreeSans" style:font-family-complex="FreeSans" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="Text_20_body" style:display-name="Text body" style:family="paragraph" style:parent-style-name="Standard" style:class="text">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.247cm" loext:contextual-spacing="false" fo:line-height="115%"/>
@ -327,7 +319,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0011f1c9" style:language-asian="zxx" style:country-asian="none" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans1" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0011f1c9" style:language-asian="zxx" style:country-asian="none" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P2" style:family="paragraph" style:parent-style-name="Horizontal_20_Line">
<style:paragraph-properties fo:margin-top="0cm" fo:margin-bottom="0.25cm" loext:contextual-spacing="false">
@ -354,7 +346,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P5" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
@ -363,7 +355,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P6" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
@ -372,7 +364,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00132d19" officeooo:paragraph-rsid="00132d19" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00132d19" officeooo:paragraph-rsid="00132d19" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P7" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
@ -381,7 +373,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00132d19" officeooo:paragraph-rsid="00132d19" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00132d19" officeooo:paragraph-rsid="00132d19" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P8" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
@ -390,7 +382,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00148442" officeooo:paragraph-rsid="00148442" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00148442" officeooo:paragraph-rsid="00148442" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
@ -399,15 +391,15 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
@ -416,7 +408,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P13" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
@ -425,7 +417,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P14" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
@ -434,7 +426,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
@ -443,7 +435,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:font-weight="normal" officeooo:paragraph-rsid="00132d19" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" fo:font-weight="normal" officeooo:paragraph-rsid="00132d19" style:font-size-asian="9pt" style:font-weight-asian="normal" style:font-size-complex="9pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P16" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
@ -452,7 +444,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
@ -461,45 +453,45 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" fo:font-weight="bold" officeooo:rsid="0011f1c9" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" fo:font-weight="bold" officeooo:rsid="0011f1c9" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" fo:font-weight="bold" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0011f1c9" style:language-asian="zxx" style:country-asian="none" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="00132d19" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:language="zxx" fo:country="none" officeooo:paragraph-rsid="0011f1c9" style:language-asian="zxx" style:country-asian="none" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="P20" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0015a3a6" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="00132d19" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0015a3a6" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P22" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="00148442" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0015a3a6" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="00148442" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0015a3a6" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P25" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
@ -508,7 +500,7 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P26" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
@ -517,34 +509,34 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="00132d19" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P27" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="00132d19" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P28" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00132d19" officeooo:paragraph-rsid="00132d19" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P29" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00132d19" officeooo:paragraph-rsid="00132d19" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:font-weight="bold" officeooo:rsid="00132d19" officeooo:paragraph-rsid="00132d19" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P30" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
@ -553,9 +545,18 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0015a3a6" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="00132d19" officeooo:paragraph-rsid="00132d19" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P31" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:font-weight="normal" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0015a3a6" style:font-size-asian="10pt" style:font-weight-asian="normal" style:font-size-complex="10pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
@ -564,17 +565,8 @@
</style:paragraph-properties>
<style:text-properties fo:font-size="8pt" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P32" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties officeooo:paragraph-rsid="0011f1c9"/>
</style:style>
<style:style style:name="P33" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
@ -589,66 +581,66 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties officeooo:paragraph-rsid="00132d19"/>
<style:text-properties officeooo:paragraph-rsid="0011f1c9"/>
</style:style>
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:paragraph-properties>
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties officeooo:paragraph-rsid="00132d19"/>
</style:style>
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00148442" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="00148442" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0015a3a6" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="006b7a53" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P39" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-size="9pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="bold" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0015a3a6" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="bold" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P40" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:font-size="9pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.15cm" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P42" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.15cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="002e7cdf" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.15cm" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="00132d19" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.15cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="002e7cdf" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P44" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.15cm" fo:text-align="end" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="00132d19" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P45" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.15cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
@ -657,16 +649,16 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="002e7cdf" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="00148442" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P46" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0.15cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="002e7cdf" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P47" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
@ -675,58 +667,58 @@
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false">
<style:paragraph-properties fo:margin-left="0cm" fo:margin-right="0cm" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0cm" style:auto-text-indent="false">
<style:tab-stops>
<style:tab-stop style:position="9.5cm"/>
<style:tab-stop style:position="18.9cm" style:type="right"/>
</style:tab-stops>
</style:paragraph-properties>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" fo:font-weight="bold" officeooo:rsid="0015a3a6" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:paragraph-rsid="0011f1c9" style:font-size-asian="7pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="7pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-weight="normal" style:font-weight-asian="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T2" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" officeooo:rsid="006b7a53" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" fo:language="zxx" fo:country="none" officeooo:rsid="006b7a53" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="T3" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" officeooo:rsid="0015a3a6" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" fo:language="zxx" fo:country="none" officeooo:rsid="0015a3a6" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none"/>
</style:style>
<style:style style:name="T4" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="006b7a53" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="006b7a53" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T5" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="0015a3a6" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="0015a3a6" style:font-size-asian="9pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="9pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T6" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="T7" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="006b7a53" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="006b7a53" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T8" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="00132d19" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="00132d19" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T9" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="0015a3a6" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:language="zxx" fo:country="none" fo:font-weight="normal" officeooo:rsid="0015a3a6" style:font-size-asian="8pt" style:language-asian="zxx" style:country-asian="none" style:font-weight-asian="normal" style:font-size-complex="8pt" style:language-complex="zxx" style:country-complex="none" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T10" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="T11" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:rsid="00626ee7" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:rsid="00626ee7" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="T12" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="normal" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T13" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00626ee7" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:rsid="00626ee7" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="T14" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="10pt" fo:font-weight="bold" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="10pt" fo:font-weight="bold" style:font-size-asian="10pt" style:font-weight-asian="bold" style:font-size-complex="10pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="T15" style:family="text">
<style:text-properties officeooo:rsid="006b7a53"/>
@ -825,16 +817,16 @@
<text:sequence-decl text:display-outline-level="0" text:name="Drawing"/>
<text:sequence-decl text:display-outline-level="0" text:name="Figure"/>
</text:sequence-decls>
<text:p text:style-name="P5"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;test in objects&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P5"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;test in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P3"/>
<text:p text:style-name="P48">Quality Test Report</text:p>
<text:p text:style-name="P18">Quality Test Report</text:p>
<text:p text:style-name="P1"/>
<text:p text:style-name="P33"><text:span text:style-name="T3">Date</text:span><text:span text:style-name="T6">: </text:span><text:span text:style-name="T6"><text:placeholder text:placeholder-type="text">&lt;format_date(test.test_date, user.language)&gt;</text:placeholder></text:span><text:span text:style-name="T6"><text:tab/><text:tab/></text:span><text:span text:style-name="T3">TEST</text:span><text:span text:style-name="T6">: </text:span><text:span text:style-name="T6"><text:placeholder text:placeholder-type="text">&lt;test.number&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P33"><text:span text:style-name="T3">PRODUCT</text:span><text:span text:style-name="T6">: </text:span><text:span text:style-name="T14"><text:placeholder text:placeholder-type="text">&lt;test.product.rec_name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P34"><text:span text:style-name="T3">Date</text:span><text:span text:style-name="T6">: </text:span><text:span text:style-name="T6"><text:placeholder text:placeholder-type="text">&lt;format_date(test.test_date, user.language)&gt;</text:placeholder></text:span><text:span text:style-name="T6"><text:tab/><text:tab/></text:span><text:span text:style-name="T3">TEST</text:span><text:span text:style-name="T6">: </text:span><text:span text:style-name="T6"><text:placeholder text:placeholder-type="text">&lt;test.number&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P34"><text:span text:style-name="T3">PRODUCT</text:span><text:span text:style-name="T6">: </text:span><text:span text:style-name="T14"><text:placeholder text:placeholder-type="text">&lt;test.product.rec_name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P14"/>
<text:p text:style-name="P33"><text:span text:style-name="T5">SAMPLE</text:span><text:span text:style-name="T4">:</text:span><text:span text:style-name="T13"> </text:span><text:span text:style-name="T12"><text:s/></text:span><text:span text:style-name="T12"><text:placeholder text:placeholder-type="text">&lt;test.sample.number&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P34"><text:span text:style-name="T9">COUNTERSAMPLE</text:span><text:span text:style-name="T7">:</text:span><text:span text:style-name="T13"> </text:span><text:span text:style-name="T12"><text:s/></text:span><text:span text:style-name="T12"><text:placeholder text:placeholder-type="text">&lt;test.sample.countersample.number if test.sample.countersample else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P34"><text:span text:style-name="T7">LOT:</text:span><text:span text:style-name="T11"> </text:span><text:span text:style-name="T10"><text:s/></text:span><text:span text:style-name="T14"><text:placeholder text:placeholder-type="text">&lt;test.lot.number&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P34"><text:span text:style-name="T5">SAMPLE</text:span><text:span text:style-name="T4">:</text:span><text:span text:style-name="T13"> </text:span><text:span text:style-name="T12"><text:s/></text:span><text:span text:style-name="T12"><text:placeholder text:placeholder-type="text">&lt;test.sample.number&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P35"><text:span text:style-name="T9">COUNTERSAMPLE</text:span><text:span text:style-name="T7">:</text:span><text:span text:style-name="T13"> </text:span><text:span text:style-name="T12"><text:s/></text:span><text:span text:style-name="T12"><text:placeholder text:placeholder-type="text">&lt;test.sample.countersample.number if test.sample.countersample else &apos;&apos;&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P35"><text:span text:style-name="T7">LOT:</text:span><text:span text:style-name="T11"> </text:span><text:span text:style-name="T10"><text:s/></text:span><text:span text:style-name="T14"><text:placeholder text:placeholder-type="text">&lt;test.lot.number&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P9"/>
<text:p text:style-name="P13">RESULTS</text:p>
<text:p text:style-name="P4"/>
@ -848,28 +840,28 @@
<table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P38">Valid</text:p>
<text:p text:style-name="P39">Valid</text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P38">Analysis</text:p>
<text:p text:style-name="P39">Analysis</text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P20">Specification</text:p>
<text:p text:style-name="P21">Specification</text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P23">Result</text:p>
<text:p text:style-name="P24">Result</text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P22">Min-Max</text:p>
<text:p text:style-name="P23">Min-Max</text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A1" office:value-type="string">
<text:p text:style-name="P40"/>
<text:p text:style-name="P41"/>
</table:table-cell>
</table:table-row>
</table:table-header-rows>
<table:table-row>
<table:table-cell table:style-name="Table1.A2" table:number-columns-spanned="6" office:value-type="string">
<text:p text:style-name="P24"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in test.lines&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in test.lines&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -879,28 +871,28 @@
</table:table-row>
<table:table-row table:style-name="Table1.3">
<table:table-cell table:style-name="Table1.A3" office:value-type="string">
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;&apos;✓&apos; if line.success else &apos;x&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P28"><text:placeholder text:placeholder-type="text">&lt;&apos;✓&apos; if line.success else &apos;x&apos;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.B3" office:value-type="string">
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;line.analysis.rec_name&gt;</text:placeholder></text:p>
<text:p text:style-name="P26"><text:placeholder text:placeholder-type="text">&lt;line.analysis.rec_name&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.C3" office:value-type="string">
<text:p text:style-name="P26"><text:placeholder text:placeholder-type="text">&lt;line.typification.specification&gt;</text:placeholder></text:p>
<text:p text:style-name="P27"><text:placeholder text:placeholder-type="text">&lt;line.typification.specification&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.D3" office:value-type="string">
<text:p text:style-name="P43"><text:placeholder text:placeholder-type="text">&lt;line.literal_result or line.result&gt;</text:placeholder><text:s/><text:placeholder text:placeholder-type="text">&lt;line.initial_unit and line.initial_unit.symbol or &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P47"/>
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;line.literal_result or line.result&gt;</text:placeholder><text:s/><text:placeholder text:placeholder-type="text">&lt;line.initial_unit and line.initial_unit.symbol or &apos;&apos;&gt;</text:placeholder></text:p>
<text:p text:style-name="P48"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.E3" office:value-type="string">
<text:p text:style-name="P44"><text:placeholder text:placeholder-type="text">&lt;line.quality_min&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;line.quality_max&gt;</text:placeholder></text:p>
<text:p text:style-name="P45"><text:placeholder text:placeholder-type="text">&lt;line.quality_min&gt;</text:placeholder><text:s/>- <text:placeholder text:placeholder-type="text">&lt;line.quality_max&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.F3" office:value-type="string">
<text:p text:style-name="P45"/>
<text:p text:style-name="P46"/>
</table:table-cell>
</table:table-row>
<table:table-row>
<table:table-cell table:style-name="Table1.A4" table:number-columns-spanned="6" office:value-type="string">
<text:p text:style-name="P24"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P25"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:covered-table-cell/>
<table:covered-table-cell/>
@ -913,11 +905,11 @@
<text:p text:style-name="P8">Analysts: <text:span text:style-name="T24"><text:placeholder text:placeholder-type="text">&lt;get_professionals(test)&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P8"/>
<text:p text:style-name="P6">Result: <text:span text:style-name="T27"><text:placeholder text:placeholder-type="text">&lt;test.state_string&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P28"/>
<text:p text:style-name="P28"/>
<text:p text:style-name="P28"/>
<text:p text:style-name="P29">_____________________________</text:p>
<text:p text:style-name="P30">Signature</text:p>
<text:p text:style-name="P29"/>
<text:p text:style-name="P29"/>
<text:p text:style-name="P29"/>
<text:p text:style-name="P30">_____________________________</text:p>
<text:p text:style-name="P31">Signature</text:p>
<text:p text:style-name="P5"/>
<text:p text:style-name="P5"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P5"/>

View File

@ -368,10 +368,10 @@ class SampleLabels(Report):
__name__ = 'lims.sample.labels.report'
@classmethod
def get_context(cls, records, data):
def get_context(cls, records, header, data):
Sample = Pool().get('lims.sample')
report_context = super().get_context(records, data)
report_context = super().get_context(records, header, data)
labels = []
if data.get('sample'):
records = [Sample(data.get('sample'))]

View File

@ -465,7 +465,7 @@ class ResultReport(metaclass=PoolMeta):
model = action.model or data.get('model')
if model:
records = cls._get_records(ids, model, data)
oext, content = cls._execute(records, data, action)
oext, content = cls._execute(records, [], data, action)
if not isinstance(content, str):
content = bytearray(content) if bytes == str else bytes(content)
return (oext, content, action.direct_print, action.name)