Show taxes in the reports

This commit is contained in:
Danny Barajas 2022-03-09 18:04:50 -05:00
parent 913eb3c2b3
commit b5e3a4eaf0
6 changed files with 1539 additions and 1402 deletions

View file

@ -0,0 +1 @@
,dannybarajas,danny-Notebook,09.03.2022 16:38,file:///home/dannybarajas/.config/libreoffice/4;

File diff suppressed because it is too large Load diff

View file

@ -223,6 +223,8 @@ class Opportunity(
total = fields.Function(fields.Float('Total'),
'get_total_opportunity')
total_without_tax = fields.Function(fields.Float('Total'),
'get_total_without_tax_opportunity')
# cancelled_reason = fields.Selection([
# ('',''),
@ -887,15 +889,18 @@ class Opportunity(
if converted:
cls.convert(converted)
# @fields.depends('lines')
@fields.depends('lines')
def get_total_opportunity(self, name):
print('total')
# print(self.lines,'lines')
self.total = 0
for line in self.lines:
print(self.total, 'antes')
self.total = 1 + line.total_line
print(self.total)
self.total += line.total_line_with_tax
return self.total
@fields.depends('lines')
def get_total_without_tax_opportunity(self, name):
self.total = 0
for line in self.lines:
self.total += line.total_line
return self.total
class PartyValidationOpportunity(ModelSQL, ModelView):
@ -967,14 +972,22 @@ class CrmOpportunityLine(sequence_ordered(), ModelSQL, ModelView):
unit_digits = fields.Function(fields.Integer('Unit Digits'),
'on_change_with_unit_digits')
tax = fields.Function(fields.Float('Tax Line'),
'get_tax_line')
total_line = fields.Function(fields.Float('Total Line'),
'get_total_line')
base_tax = fields.Function(fields.Float('Base Tax'),
'get_base_tax')
description = fields.Function(fields.Text('Description'),
'on_change_with_description')
unit_price = fields.Numeric('Unit Price', digits=(16, 2))
total_line_with_tax = fields.Function(fields.Float('Total Line'),
'get_total_line_with_tax')
del _states, _depends
@classmethod
@ -993,15 +1006,39 @@ class CrmOpportunityLine(sequence_ordered(), ModelSQL, ModelView):
if self.opportunity:
return self.opportunity.state
@fields.depends('product')
def get_base_tax(self, name=None):
if self.unit_price:
self.base_tax = (float(self.total_line) * 0.1)
else:
self.base_tax = 0
return self.base_tax
@fields.depends('product')
def get_tax_line(self, name=None):
if self.unit_price:
self.tax = (self.base_tax * 0.19)
else:
self.tax = 0
return self.tax
@fields.depends('product')
def get_total_line(self, name=None):
print('Hola')
if self.unit_price:
self.total_line = float(self.unit_price) * float(self.quantity)
else:
self.total_line = 0
return self.total_line
@fields.depends('product')
def get_total_line_with_tax(self, name=None):
if self.unit_price:
self.total_line = float(self.total_line) + self.tax
else:
self.total_line = 0
return self.total_line
@fields.depends('unit')
def on_change_with_unit_digits(self, name=None):
if self.unit:

File diff suppressed because it is too large Load diff

View file

@ -1,24 +1,24 @@
<?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:generator>LibreOffice/6.4.7.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:creation-date>2014-11-17T18:44:37.131005533</meta:creation-date><meta:editing-cycles>1</meta:editing-cycles><meta:editing-duration>P0D</meta:editing-duration><meta:document-statistic meta:table-count="1" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="54" meta:word-count="407" meta:character-count="3007" meta:non-whitespace-character-count="2652"/><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:generator>LibreOffice/6.4.7.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:creation-date>2014-11-17T18:44:37.131005533</meta:creation-date><meta:editing-cycles>1</meta:editing-cycles><meta:editing-duration>P0D</meta:editing-duration><meta:document-statistic meta:table-count="1" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="57" meta:word-count="416" meta:character-count="3202" meta:non-whitespace-character-count="2841"/><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">30438</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">44932</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">25645</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">11298</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">10504</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">3427</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">32544</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">19988</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">51897</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">30438</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">44932</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">25643</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">41734</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">55434</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>
@ -83,7 +83,7 @@
<config:config-item config:name="ChartAutoUpdate" 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">12300480</config:config-item>
<config:config-item config:name="Rsid" config:type="int">12411523</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>
@ -137,14 +137,14 @@
<office:font-face-decls>
<style:font-face style:name="StarSymbol" svg:font-family="StarSymbol"/>
<style:font-face style:name="Thorndale AMT" svg:font-family="&apos;Thorndale AMT&apos;" style:font-family-generic="roman" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans1" svg:font-family="&apos;DejaVu Sans&apos;" style:font-adornments="Book" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans1" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-adornments="Book" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans Condensed" svg:font-family="&apos;DejaVu Sans Condensed&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="DejaVu Sans Light" svg:font-family="&apos;DejaVu Sans Light&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Droid Sans" svg:font-family="&apos;Droid Sans&apos;" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Droid Sans Fallback" svg:font-family="&apos;Droid Sans Fallback&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-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Regular" 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="Regular" 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 Sans2" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
@ -7597,7 +7597,7 @@
</draw:fill-image>
<style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#000000" draw:fill-color="#99ccff" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none"/>
@ -7617,11 +7617,11 @@
</style:style>
<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.1665in" fo:margin-bottom="0.0835in" 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 Sans2" 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="DejaVu Sans2" style:font-family-complex="&apos;DejaVu Sans&apos;" 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 Sans2" 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="DejaVu Sans2" style:font-family-complex="&apos;DejaVu Sans&apos;" 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="0in" fo:margin-bottom="0.0835in" loext:contextual-spacing="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" style:font-size-asian="10.5pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list">
<style:text-properties style:font-size-asian="12pt"/>
@ -7660,7 +7660,7 @@
</style:style>
<style:style style:name="Table_20_Heading" style:display-name="Table Heading" style:family="paragraph" style:parent-style-name="Table_20_Contents" style:class="extra" style:master-page-name="">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false" style:page-number="auto" text:number-lines="false" text:line-number="0"/>
<style:text-properties style:font-name="DejaVu Sans1" fo:font-family="&apos;DejaVu Sans&apos;" style:font-style-name="Book" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-weight="normal" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="DejaVu Sans" fo:font-family="&apos;DejaVu Sans&apos;" style:font-style-name="Book" style:font-family-generic="swiss" style:font-pitch="variable" fo:font-weight="normal" style:font-size-asian="10.5pt" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="Heading_20_2" style:display-name="Heading 2" style:family="paragraph" style:parent-style-name="Header" style:next-style-name="Text_20_body" style:class="text">
<style:text-properties fo:font-size="14pt" fo:font-style="italic" fo:font-weight="bold" style:font-size-asian="14pt" style:font-style-asian="italic" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-style-complex="italic" style:font-weight-complex="bold"/>
@ -15351,123 +15351,123 @@
<style:text-properties style:font-name="DejaVu Sans Light" fo:font-size="8pt" officeooo:rsid="00a60a36" officeooo:paragraph-rsid="00a60a36" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" 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" 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="P4" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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="P5" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="6pt" fo:font-weight="bold" officeooo:rsid="0011d559" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="6pt" fo:font-weight="bold" officeooo:rsid="0011d559" officeooo:paragraph-rsid="00b0978c" 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="P6" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="6pt" fo:font-weight="bold" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="6pt" fo:font-weight="bold" officeooo:paragraph-rsid="00b0978c" 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="P7" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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="P8" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="008c5098" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="008c5098" 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="P13" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" 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="P14" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" 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:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="0002f16f" officeooo:paragraph-rsid="005f6cd6" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="0002f16f" officeooo:paragraph-rsid="005f6cd6" 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="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="005f6cd6" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="005f6cd6" 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="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="007f83a9" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="007f83a9" 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="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00a93f54" officeooo:paragraph-rsid="00a93f54" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00a93f54" officeooo:paragraph-rsid="00a93f54" 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="P20" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="8pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="008c5098" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans1" fo:font-size="8pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="008c5098" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</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="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P22" 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="7pt" officeooo:paragraph-rsid="0096b3e9" 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="0096b3e9" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</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="7pt" officeooo:paragraph-rsid="00b0978c" 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="00b0978c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="00b5fe8f" 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="00b5fe8f" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</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 fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="007404d0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="007404d0" 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="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 fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="00b0978c" 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="P27" 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 fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="0012d488" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="0012d488" officeooo:paragraph-rsid="00b0978c" 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="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 fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="00af486b" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="00af486b" officeooo:paragraph-rsid="00b0978c" 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="P29" 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 fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="0012d488" officeooo:paragraph-rsid="007404d0" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="0012d488" officeooo:paragraph-rsid="007404d0" 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="P30" 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:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" 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="P31" 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:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" 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="end" style:justify-single-word="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00963924" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00963924" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P33" 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 fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P34" 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:color="#000000" style:font-name="Liberation Sans1" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
<style:text-properties fo:color="#000000" 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="P35" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-size-complex="8pt"/>
@ -15489,11 +15489,11 @@
<style:text-properties officeooo:paragraph-rsid="00b0978c"/>
</style:style>
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P42" 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 fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="6pt" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P43" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
@ -15512,70 +15512,70 @@
<style:text-properties style:font-name="Droid Sans Fallback" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="00b5fe8f" 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="P47" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="0030c03e" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="0030c03e" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" fo:font-weight="bold" officeooo:paragraph-rsid="00bad627" 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="00bad627" 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="P49" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" officeooo:paragraph-rsid="00bad627" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" officeooo:paragraph-rsid="00bad627" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" officeooo:paragraph-rsid="00bad627" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" officeooo:paragraph-rsid="00bad627" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties fo:color="#4c4c4c" 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="P52" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:paragraph-rsid="00bad627" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:paragraph-rsid="00bad627" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P53" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="6pt" officeooo:paragraph-rsid="008c5098" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="008c5098" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="12pt" officeooo:rsid="00bb6cdd" officeooo:paragraph-rsid="00bad627" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="12pt" officeooo:rsid="00bb6cdd" officeooo:paragraph-rsid="00bad627" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties fo:color="#4c4c4c" 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="P56" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="9pt" style:text-underline-style="none" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="9pt" style:text-underline-style="none" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P57" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="9pt" style:text-underline-style="none" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="9pt" style:text-underline-style="none" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" officeooo:paragraph-rsid="001e2ebe" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" officeooo:paragraph-rsid="001e2ebe" 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="P59" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P60" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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="P62" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" officeooo:paragraph-rsid="00b5fe8f" 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="P63" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="002ad2bf" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="002ad2bf" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P64" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="002ad2bf" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="002ad2bf" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" officeooo:rsid="00bc41f1" officeooo:paragraph-rsid="00bad627" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" officeooo:rsid="00bc41f1" officeooo:paragraph-rsid="00bad627" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
@ -15585,22 +15585,22 @@
</style:style>
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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="P69" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="11pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="11pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P70" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="11pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00bad627" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="11pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00bad627" 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="P71" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:break-before="auto" fo:break-after="auto"/>
</style:style>
<style:style style:name="P72" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="6pt" officeooo:paragraph-rsid="008c5098" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="008c5098" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:break-before="auto" fo:break-after="auto"/>
@ -15608,27 +15608,27 @@
</style:style>
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="008c5098" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans1" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="008c5098" 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="P76" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="9pt" fo:font-weight="bold" officeooo:paragraph-rsid="008c5098" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans1" fo:font-size="9pt" fo:font-weight="bold" officeooo:paragraph-rsid="008c5098" 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="P77" 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:color="#999999" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="P78" 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:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="P79" 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:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="P80" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
@ -15637,11 +15637,12 @@
<style:text-properties officeooo:paragraph-rsid="00b5fe8f"/>
</style:style>
<style:style style:name="P82" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" officeooo:paragraph-rsid="00bad627" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:rsid="00bd6283" officeooo:paragraph-rsid="00bd6283" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P83" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:style style:name="P83" 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 fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00bd6283" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="T1" style:family="text">
<style:text-properties officeooo:rsid="001d49e4"/>
@ -15701,25 +15702,25 @@
<style:text-properties officeooo:rsid="00b1e466"/>
</style:style>
<style:style style:name="T20" style:family="text">
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="T21" style:family="text">
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="T22" style:family="text">
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b1e466" 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="T23" style:family="text">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="T24" style:family="text">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="T25" style:family="text">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b1e466" 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="T26" style:family="text">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" 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="T27" style:family="text">
<style:text-properties fo:color="#333333" fo:font-size="7pt" fo:language="es" fo:country="ES" fo:font-weight="bold" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
@ -15749,22 +15750,22 @@
<style:text-properties fo:font-size="11pt" fo:font-weight="bold" 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="T36" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" 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" 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="T37" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="00b5fe8f" 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:rsid="00b5fe8f" 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="T38" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="T39" style:family="text">
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:rsid="00b5fe8f" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:rsid="00b5fe8f" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="T40" style:family="text">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" 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="T41" style:family="text">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="00b5fe8f" 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="T42" style:family="text">
<style:text-properties fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
@ -32117,7 +32118,7 @@
<table:table-column table:style-name="Table1.E"/>
<table:table-column table:style-name="Table1.F"/>
<table:table-column table:style-name="Table1.G"/>
<table:table-row table:style-name="TableLine94270043473632">
<table:table-row table:style-name="TableLine94174736858192">
<table:table-cell table:style-name="Table1.A1" table:number-columns-spanned="7" office:value-type="string">
<text:p text:style-name="P7">SERVICIO DE VIGILANCIA FIJA</text:p>
</table:table-cell>
@ -32128,7 +32129,7 @@
<table:covered-table-cell/>
<table:covered-table-cell/>
</table:table-row>
<table:table-row table:style-name="TableLine94270025967648">
<table:table-row table:style-name="TableLine94174738986976">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P43">DESCRIPCION</text:p>
</table:table-cell>
@ -32151,7 +32152,7 @@
<text:p text:style-name="P43"><text:span text:style-name="T34">VALOR </text:span>TOTAL</text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="TableLine94270063594224">
<table:table-row table:style-name="TableLine94174738991168">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P24"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in opp.lines&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
@ -32174,7 +32175,7 @@
<text:p text:style-name="P35"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="TableLine94269961890624">
<table:table-row table:style-name="TableLine94174738992496">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in line.description.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;line&gt;</text:placeholder></text:p>
@ -32187,21 +32188,21 @@
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;format_number(line.unit_price, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;format_number(line.unit_price, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.G2" office:value-type="string">
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;format_number(line.total_line, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="TableLine94269960871808">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P83"><text:placeholder text:placeholder-type="text">&lt;format_number(line.base_tax, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P83"><text:placeholder text:placeholder-type="text">&lt;format_number(line.tax, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.G2" office:value-type="string">
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;format_number(line.total_line_with_tax, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="TableLine94174738993984">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P82"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
@ -32222,7 +32223,7 @@
<text:p text:style-name="P35"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="TableLine94270010665040">
<table:table-row table:style-name="TableLine94174738995504">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P38">Valor Total</text:p>
</table:table-cell>
@ -32242,12 +32243,12 @@
<text:p text:style-name="P35"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.G2" office:value-type="string">
<text:p text:style-name="P33"/>
<text:p text:style-name="P83"><text:placeholder text:placeholder-type="text">&lt;format_number(opp.total, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P47"/>
<text:p text:style-name="P74">Delthac 1 Seguridad se reserva el derecho de retractarse de prestar el servicio de conformidad con los resultados del estudio de seguridad, por la no entrega o entrega incompleta de la documentación requerida por la compañía. La tarifa será reajustada en <text:s/>la misma proporción en caso de incrementos operativos por disposiciones gubernamentales en cargos laborales o generales que de manera directa o indirecta incidan <text:soft-page-break/>en el costo del servicio, y entrarán a regir a partir de la fecha de vigencia de las nuevas disposiciones según el decreto 4950 de 2007. Nota: La prestación del servicio de vigilancia y seguridad privada ofertado en este documento, estará sujeta a la validación de los filtros que la compañía realiza para el riesgo crediticio, así como para la prevención del riesgo de lavado de activos y financiación del terrorismo; de igual forma, la compañía verificará la existencia de condiciones mínimas de seguridad, necesarias para la prestación del servicio. Delthac 1 Seguridad se reserva el derecho de revocarla.</text:p>
<text:p text:style-name="P74">Delthac 1 Seguridad se reserva el derecho de retractarse de prestar el servicio de conformidad con los resultados del estudio de seguridad, por la no entrega o entrega incompleta de la documentación requerida <text:soft-page-break/>por la compañía. La tarifa será reajustada en <text:s/>la misma proporción en caso de incrementos operativos por disposiciones gubernamentales en cargos laborales o generales que de manera directa o indirecta incidan en el costo del servicio, y entrarán a regir a partir de la fecha de vigencia de las nuevas disposiciones según el decreto 4950 de 2007. Nota: La prestación del servicio de vigilancia y seguridad privada ofertado en este documento, estará sujeta a la validación de los filtros que la compañía realiza para el riesgo crediticio, así como para la prevención del riesgo de lavado de activos y financiación del terrorismo; de igual forma, la compañía verificará la existencia de condiciones mínimas de seguridad, necesarias para la prestación del servicio. Delthac 1 Seguridad se reserva el derecho de revocarla.</text:p>
<text:p text:style-name="P62"/>
<text:p text:style-name="P67"><text:span text:style-name="T40">O</text:span><text:span text:style-name="T41">bservaciones</text:span><text:span text:style-name="T40">:</text:span></text:p>
<text:p text:style-name="P64"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;comment in (opp.comment or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>

View file

@ -1,24 +1,24 @@
<?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:generator>LibreOffice/6.4.7.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:creation-date>2014-11-17T18:44:37.131005533</meta:creation-date><meta:editing-cycles>1</meta:editing-cycles><meta:editing-duration>P0D</meta:editing-duration><meta:document-statistic meta:table-count="1" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="52" meta:word-count="403" meta:character-count="2988" meta:non-whitespace-character-count="2635"/><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:generator>LibreOffice/6.4.7.2$Linux_X86_64 LibreOffice_project/40$Build-2</meta:generator><meta:creation-date>2014-11-17T18:44:37.131005533</meta:creation-date><meta:editing-cycles>1</meta:editing-cycles><meta:editing-duration>P0D</meta:editing-duration><meta:document-statistic meta:table-count="1" meta:image-count="1" meta:object-count="0" meta:page-count="3" meta:paragraph-count="53" meta:word-count="406" meta:character-count="3056" meta:non-whitespace-character-count="2701"/><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">41014</config:config-item>
<config:config-item config:name="ViewAreaTop" config:type="long">46233</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">25645</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">11298</config:config-item>
<config:config-item config:name="ViewAreaHeight" config:type="long">10504</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">3427</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">32179</config:config-item>
<config:config-item config:name="ViewLeft" config:type="long">18060</config:config-item>
<config:config-item config:name="ViewTop" config:type="long">51532</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">41014</config:config-item>
<config:config-item config:name="VisibleTop" config:type="long">46233</config:config-item>
<config:config-item config:name="VisibleRight" config:type="long">25643</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">52310</config:config-item>
<config:config-item config:name="VisibleBottom" config:type="long">56735</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>
@ -83,7 +83,7 @@
<config:config-item config:name="ChartAutoUpdate" 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">12293905</config:config-item>
<config:config-item config:name="Rsid" config:type="int">12519525</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>
@ -143,8 +143,8 @@
<style:font-face style:name="DejaVu Sans Light" svg:font-family="&apos;DejaVu Sans Light&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Droid Sans" svg:font-family="&apos;Droid Sans&apos;" style:font-adornments="Normal" style:font-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Droid Sans Fallback" svg:font-family="&apos;Droid Sans Fallback&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-family-generic="swiss" style:font-pitch="variable"/>
<style:font-face style:name="Liberation Sans1" svg:font-family="&apos;Liberation Sans&apos;" style:font-adornments="Regular" 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="Regular" 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 Sans2" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
</office:font-face-decls>
@ -7597,7 +7597,7 @@
</draw:fill-image>
<style:default-style style:family="graphic">
<style:graphic-properties svg:stroke-color="#000000" draw:fill-color="#99ccff" fo:wrap-option="no-wrap" draw:shadow-offset-x="0.1181in" draw:shadow-offset-y="0.1181in" draw:start-line-spacing-horizontal="0.1114in" draw:start-line-spacing-vertical="0.1114in" draw:end-line-spacing-horizontal="0.1114in" draw:end-line-spacing-vertical="0.1114in" style:flow-with-text="false"/>
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:writing-mode="lr-tb" style:font-independent-line-spacing="false">
<style:paragraph-properties style:text-autospace="ideograph-alpha" style:line-break="strict" style:font-independent-line-spacing="false">
<style:tab-stops/>
</style:paragraph-properties>
<style:text-properties style:use-window-font-color="true" style:font-name="Thorndale AMT" fo:font-size="12pt" fo:language="en" fo:country="US" style:letter-kerning="true" style:font-name-asian="Andale Sans UI" style:font-size-asian="10.5pt" style:language-asian="zxx" style:country-asian="none" style:font-name-complex="Andale Sans UI" style:font-size-complex="12pt" style:language-complex="zxx" style:country-complex="none"/>
@ -7617,11 +7617,11 @@
</style:style>
<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.1665in" fo:margin-bottom="0.0835in" loext:contextual-spacing="false" fo:keep-with-next="always"/>
<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 Sans2" 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="DejaVu Sans2" style:font-family-complex="&apos;DejaVu Sans&apos;" style:font-family-generic-complex="system" style:font-pitch-complex="variable" style:font-size-complex="14pt"/>
<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 Sans2" 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="DejaVu Sans2" style:font-family-complex="&apos;DejaVu Sans&apos;" 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="0in" fo:margin-bottom="0.0835in" loext:contextual-spacing="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" style:font-size-asian="10.5pt"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-family="&apos;Liberation Sans&apos;" style:font-style-name="Regular" style:font-family-generic="swiss" style:font-pitch="variable" style:font-size-asian="10.5pt"/>
</style:style>
<style:style style:name="List" style:family="paragraph" style:parent-style-name="Text_20_body" style:class="list">
<style:text-properties style:font-size-asian="12pt"/>
@ -15222,298 +15222,295 @@
<style:text-properties style:font-name="DejaVu Sans Light" fo:font-size="8pt" officeooo:rsid="00a60a36" officeooo:paragraph-rsid="00a60a36" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P3" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" 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 Sans1" fo:font-size="7pt" fo:font-weight="normal" 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="P4" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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 Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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="P5" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="6pt" fo:font-weight="bold" officeooo:rsid="0011d559" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="6pt" fo:font-weight="bold" officeooo:rsid="0011d559" officeooo:paragraph-rsid="00b0978c" 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="P6" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="6pt" fo:font-weight="bold" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="6pt" style:font-weight-asian="bold" style:font-size-complex="6pt" style:font-weight-complex="bold"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="6pt" fo:font-weight="bold" officeooo:paragraph-rsid="00b0978c" 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="P7" style:family="paragraph" style:parent-style-name="Table_20_Heading">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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 Sans1" fo:font-size="11pt" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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="P8" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P9" style:family="paragraph" style:parent-style-name="Heading_20_2">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P10" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P11" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P12" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="center" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="008c5098" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:paragraph-rsid="008c5098" 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="P13" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" 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="P14" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P15" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" 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:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="0002f16f" officeooo:paragraph-rsid="005f6cd6" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="0002f16f" officeooo:paragraph-rsid="005f6cd6" 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="P17" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="005f6cd6" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="005f6cd6" 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="P18" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="007f83a9" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="007f83a9" 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="P19" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00a93f54" officeooo:paragraph-rsid="00a93f54" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00a93f54" officeooo:paragraph-rsid="00a93f54" 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="P20" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:margin-left="0in" fo:margin-right="0in" fo:text-align="start" style:justify-single-word="false" fo:text-indent="0in" style:auto-text-indent="false"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="8pt" fo:font-style="normal" style:text-underline-style="none" fo:font-weight="normal" officeooo:paragraph-rsid="008c5098" style:font-size-asian="8pt" style:font-style-asian="normal" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-style-complex="normal" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P21" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P22" 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="7pt" officeooo:paragraph-rsid="0096b3e9" 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="0096b3e9" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P23" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="00b0978c" 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="00b0978c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P24" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="00b5fe8f" 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="00b5fe8f" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</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 fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="007404d0" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="007404d0" 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="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 fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:paragraph-rsid="00b0978c" 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="P27" 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 fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="0012d488" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="0012d488" officeooo:paragraph-rsid="00b0978c" 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="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 fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="00af486b" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="00af486b" officeooo:paragraph-rsid="00b0978c" 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="P29" 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 fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="0012d488" officeooo:paragraph-rsid="007404d0" style:font-size-asian="7pt" style:font-weight-asian="normal" style:font-size-complex="7pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="0012d488" officeooo:paragraph-rsid="007404d0" 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="P30" 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:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" 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="P31" 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:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" 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="end" style:justify-single-word="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00963924" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00963924" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P33" 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 fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P34" 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:color="#000000" style:font-name="Liberation Sans" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="8pt" officeooo:paragraph-rsid="00bd6fc4" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P35" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties style:font-size-complex="8pt"/>
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="6pt" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P36" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:paragraph-rsid="007404d0" style:font-size-complex="8pt"/>
<style:text-properties style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P37" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:paragraph-rsid="00b0978c" style:font-size-complex="8pt"/>
<style:text-properties officeooo:paragraph-rsid="007404d0" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P38" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties officeooo:rsid="00b6e36a" officeooo:paragraph-rsid="00b6e36a" style:font-size-complex="8pt"/>
<style:text-properties officeooo:paragraph-rsid="00b0978c" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P39" 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 officeooo:rsid="00b6e36a" officeooo:paragraph-rsid="00b6e36a" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P40" 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 officeooo:paragraph-rsid="00b0978c"/>
</style:style>
<style:style style:name="P41" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties officeooo:paragraph-rsid="00b0978c"/>
</style:style>
<style:style style:name="P42" 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 fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P43" 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-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:text-align="end" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="6pt" officeooo:paragraph-rsid="00b0978c" style:font-size-asian="6pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P44" 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-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
<style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P45" 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="Droid Sans Fallback" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
<style:text-properties fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-weight-asian="bold" style:font-size-complex="8pt" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P46" 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="Droid Sans Fallback" fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold"/>
</style:style>
<style:style style:name="P47" 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="Droid Sans Fallback" fo:font-size="7pt" fo:font-weight="bold" officeooo:rsid="00b5fe8f" 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="P47" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="8pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="0030c03e" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P48" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="8pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="0030c03e" style:font-size-asian="8pt" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P49" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P50" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" fo:font-weight="bold" officeooo:paragraph-rsid="00ba0902" 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 Sans1" fo:font-size="11pt" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P51" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" fo:font-weight="bold" officeooo:paragraph-rsid="00ba0902" 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="P52" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="9pt" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties fo:color="#4c4c4c" 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="P53" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="008c5098" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="9pt" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P54" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans" fo:font-size="12pt" officeooo:rsid="00bb6cdd" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="6pt" officeooo:paragraph-rsid="008c5098" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="9pt" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:style style:name="P55" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
<style:text-properties fo:color="#000000" style:font-name="Liberation Sans1" fo:font-size="12pt" officeooo:rsid="00bb6cdd" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="12pt" style:font-size-complex="12pt"/>
</style:style>
<style:style style:name="P56" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="9pt" style:text-underline-style="none" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties fo:color="#4c4c4c" 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="P57" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="9pt" style:text-underline-style="none" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="9pt" style:text-underline-style="none" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P58" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" officeooo:paragraph-rsid="001e2ebe" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="9pt" style:text-underline-style="none" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="9pt" style:font-size-complex="9pt"/>
</style:style>
<style:style style:name="P59" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" officeooo:paragraph-rsid="001e2ebe" 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="P60" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P61" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P62" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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="P63" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="002ad2bf" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" officeooo:paragraph-rsid="00b5fe8f" 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="P64" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="002ad2bf" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="002ad2bf" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="P65" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" officeooo:rsid="00bc41f1" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" officeooo:paragraph-rsid="002ad2bf" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P66" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="11pt" officeooo:rsid="00bc41f1" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P67" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:text-properties officeooo:paragraph-rsid="00b5fe8f"/>
<style:text-properties style:font-name="DejaVu Sans Condensed" fo:font-size="6pt" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P68" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
<style:text-properties officeooo:paragraph-rsid="00b5fe8f"/>
</style:style>
<style:style style:name="P69" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="11pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="7pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" 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="P70" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="11pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="11pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:break-before="auto" fo:break-after="auto"/>
<style:style style:name="P71" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="11pt" fo:language="es" fo:country="ES" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00ba0902" 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="P72" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="6pt" officeooo:paragraph-rsid="008c5098" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:style style:name="P73" style:family="paragraph" style:parent-style-name="Standard">
<style:paragraph-properties fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="6pt" officeooo:paragraph-rsid="008c5098" style:font-size-asian="5.25pt" style:font-size-complex="6pt"/>
</style:style>
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Table_20_Contents">
<style:paragraph-properties fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties officeooo:paragraph-rsid="00b0978c" style:font-size-complex="8pt"/>
</style:style>
<style:style style:name="P74" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="justify" style:justify-single-word="false" fo:break-before="auto" fo:break-after="auto"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P75" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="008c5098" style:font-size-asian="8pt" style:font-weight-asian="normal" style:font-size-complex="8pt" style:font-weight-complex="normal"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="none" fo:font-weight="normal" officeooo:rsid="00b5fe8f" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="normal" style:font-size-complex="11pt" style:font-weight-complex="normal"/>
</style:style>
<style:style style:name="P76" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="9pt" fo:font-weight="bold" officeooo:paragraph-rsid="008c5098" style:font-size-asian="9pt" style:font-weight-asian="bold" style:font-size-complex="9pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="8pt" fo:font-weight="normal" officeooo:paragraph-rsid="008c5098" 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="P77" 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:color="#999999" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:style style:name="P77" style:family="paragraph" style:parent-style-name="Header">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#666666" style:font-name="DejaVu Sans" fo:font-size="9pt" fo:font-weight="bold" officeooo:paragraph-rsid="008c5098" 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="P78" 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:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="P79" 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:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="P80" 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:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" officeooo:paragraph-rsid="00b5fe8f" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Fondo">
<style:style style:name="P81" style:family="paragraph" style:parent-style-name="Heading_20_1">
<style:paragraph-properties fo:text-align="center" style:justify-single-word="false"/>
</style:style>
<style:style style:name="P82" style:family="paragraph" style:parent-style-name="Fondo">
<style:text-properties officeooo:paragraph-rsid="00b5fe8f"/>
</style:style>
<style:style style:name="P82" style:family="paragraph" style:parent-style-name="Standard">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="11pt" officeooo:paragraph-rsid="00ba0902" style:font-size-asian="11pt" style:font-size-complex="11pt"/>
</style:style>
<style:style style:name="P83" style:family="paragraph" style:parent-style-name="Text_20_body">
<style:paragraph-properties fo:text-align="start" style:justify-single-word="false"/>
<style:text-properties fo:color="#4c4c4c" 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="T1" style:family="text">
<style:text-properties officeooo:rsid="001d49e4"/>
</style:style>
@ -15572,25 +15569,25 @@
<style:text-properties officeooo:rsid="00b1e466"/>
</style:style>
<style:style style:name="T20" style:family="text">
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="T21" style:family="text">
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="T22" style:family="text">
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#999999" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b1e466" 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="T23" style:family="text">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="T24" style:family="text">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-size-complex="14pt"/>
</style:style>
<style:style style:name="T25" style:family="text">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b1e466" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b1e466" 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="T26" style:family="text">
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" style:font-size-asian="14pt" style:font-weight-asian="bold" style:font-size-complex="14pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#333333" style:font-name="Liberation Sans1" fo:font-size="14pt" style:text-underline-style="none" fo:font-weight="bold" officeooo:rsid="00b5fe8f" 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="T27" style:family="text">
<style:text-properties fo:color="#333333" fo:font-size="7pt" fo:language="es" fo:country="ES" fo:font-weight="bold" style:font-size-asian="7pt" style:font-weight-asian="bold" style:font-size-complex="7pt" style:font-weight-complex="bold"/>
@ -15620,22 +15617,22 @@
<style:text-properties fo:font-size="11pt" fo:font-weight="bold" 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="T36" style:family="text">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" 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 Sans1" fo:font-size="7pt" fo:font-weight="normal" 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="T37" style:family="text">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="00b5fe8f" 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 Sans1" fo:font-size="7pt" fo:font-weight="normal" officeooo:rsid="00b5fe8f" 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="T38" style:family="text">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="T39" style:family="text">
<style:text-properties style:font-name="Liberation Sans" fo:font-size="7pt" officeooo:rsid="00b5fe8f" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
<style:text-properties style:font-name="Liberation Sans1" fo:font-size="7pt" officeooo:rsid="00b5fe8f" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
</style:style>
<style:style style:name="T40" style:family="text">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="001d3b2b" 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="T41" style:family="text">
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="00b5fe8f" style:font-size-asian="11pt" style:font-weight-asian="bold" style:font-size-complex="11pt" style:font-weight-complex="bold"/>
<style:text-properties fo:color="#4c4c4c" style:font-name="Liberation Sans1" fo:font-size="11pt" style:text-underline-style="solid" style:text-underline-width="auto" style:text-underline-color="font-color" fo:font-weight="bold" officeooo:rsid="00b5fe8f" 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="T42" style:family="text">
<style:text-properties fo:font-size="7pt" style:font-size-asian="7pt" style:font-size-complex="7pt"/>
@ -30578,41 +30575,41 @@
<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="P72"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P52"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;opp in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P73"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P53"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;opp in records&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50">Bucaramanga, <text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;opp.start_date&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50">Señores,</text:p>
<text:p text:style-name="P71"><text:placeholder text:placeholder-type="text">&lt;opp.party.full_name&gt;</text:placeholder></text:p>
<text:p text:style-name="P66">Bucaramanga</text:p>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50">REF: <text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;opp.description&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50">Cordial Saludo:</text:p>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P49">En atención a su amable solicitud, estamos remitiendo la cotización del servicio requerido, cualquier inquietud que surja, estamos en la mejor disposición para atenderla.</text:p>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49">Bucaramanga, <text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;opp.start_date&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49">Señores,</text:p>
<text:p text:style-name="P70"><text:placeholder text:placeholder-type="text">&lt;opp.party.full_name&gt;</text:placeholder></text:p>
<text:p text:style-name="P65">Bucaramanga</text:p>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49">REF: <text:span text:style-name="T31"><text:placeholder text:placeholder-type="text">&lt;opp.description&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49">Cordial Saludo:</text:p>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P48">En atención a su amable solicitud, estamos remitiendo la cotización del servicio requerido, cualquier inquietud que surja, estamos en la mejor disposición para atenderla.</text:p>
<text:p text:style-name="P48"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49">Cordialmente,</text:p>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"><draw:frame draw:style-name="fr1" draw:name="Image1" text:anchor-type="char" svg:x="-0.0602in" svg:y="0.0661in" svg:width="2.6154in" svg:height="0.6957in" draw:z-index="0"><draw:image loext:mime-type="image/png">
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50">Cordialmente,</text:p>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"><draw:frame draw:style-name="fr1" draw:name="Image1" text:anchor-type="char" svg:x="-0.0602in" svg:y="0.0661in" svg:width="2.6154in" svg:height="0.6957in" draw:z-index="0"><draw:image loext:mime-type="image/png">
<office:binary-data>iVBORw0KGgoAAAANSUhEUgAABWAAAAFuCAYAAAAPsrG+AAEWQElEQVR4nOz9WbB8WX3mdx+D
JjQgECCBELMYClEIqoBipkBMkhgkLCF1GFvdYUfYN7bCYV/5rq9873CEw3fusLtl9aumG1qi
qGIuZmqAYpSYRzEJiaERIDW87/vZxPPvVZudeTLPmCfP843IyHMyd+699tpr+K1n/dZv/dj/
@ -31937,58 +31934,58 @@
</office:binary-data>
</draw:image>
</draw:frame></text:p>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P49"/>
<text:p text:style-name="P50">SONIA ORTÍZ SERRANO</text:p>
<text:p text:style-name="P49">Subgerente</text:p>
<text:p text:style-name="P50">DELTHAC 1 SEGURIDAD</text:p>
<text:p text:style-name="P49">Teléfono: (7) 6574309</text:p>
<text:p text:style-name="P54"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"><text:soft-page-break/></text:p>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P51"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P50"/>
<text:p text:style-name="P51">SONIA ORTÍZ SERRANO</text:p>
<text:p text:style-name="P50">Subgerente</text:p>
<text:p text:style-name="P51">DELTHAC 1 SEGURIDAD</text:p>
<text:p text:style-name="P50">Teléfono: (7) 6574309</text:p>
<text:p text:style-name="P55"/>
<text:p text:style-name="P55"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;opp.state == &apos;analysis&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P81"><text:span text:style-name="T22">PROPUESTA </text:span><text:span text:style-name="T26">ECONOMICA</text:span><text:span text:style-name="T20"> EN BORRADOR</text:span></text:p>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;opp.state == &apos;quotation&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P79"><text:span text:style-name="T7">PROPUESTA </text:span><text:span text:style-name="T8">ECONOMICA</text:span> N° <text:placeholder text:placeholder-type="text">&lt;opp.number&gt;</text:placeholder></text:p>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P80"><text:span text:style-name="T25">PROPUESTA </text:span><text:span text:style-name="T26">ECONOMICA</text:span><text:span text:style-name="T25"> </text:span><text:span text:style-name="T23">N° </text:span><text:span text:style-name="T23"><text:placeholder text:placeholder-type="text">&lt;opp.number&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P61"/>
<text:p text:style-name="P59"><text:span text:style-name="T5">Para:</text:span> <text:span text:style-name="T29"><text:placeholder text:placeholder-type="text">&lt;opp.party.full_name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P59"><text:span text:style-name="T5">Vigencia: </text:span>Tarifas vigentes año 2022</text:p>
<text:p text:style-name="P59"><text:span text:style-name="T5">Objeto:</text:span> <text:span text:style-name="T30"><text:placeholder text:placeholder-type="text">&lt;opp.description&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P57"><text:span text:style-name="T35">Fecha:</text:span><text:span text:style-name="T5"> </text:span><text:span text:style-name="T33"><text:placeholder text:placeholder-type="text">&lt;opp.start_date&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P68"/>
<text:p text:style-name="P69">Licencia de Funcionamiento otorgada mediante resolución No. 20174100055687 del 08 de agosto de 2017 y renovada por 10 años más, bajo la Resolución No. 20204100055427, vigente hasta el 17 de mayo del 2028, para la prestación de servicios de Vigilancia y seguridad privada en las modalidades de fija, móvil y escolta a personas y mercancías expedida por la Superintendencia de Vigilancia y Seguridad Privada. </text:p>
<text:p text:style-name="P69">Resolución 1521 del 14/03/2012 por la cual se autoriza la ampliación al medio canino, y, Resolución 1508 de 17/08/2016, para desarrollar actividades de telecomunicaciones expedida por el Ministerio de Comunicaciones.</text:p>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"><text:soft-page-break/></text:p>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P52"/>
<text:p text:style-name="P56"/>
<text:p text:style-name="P56"><text:placeholder text:placeholder-type="text">&lt;choose test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;opp.state == &apos;analysis&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P82"><text:span text:style-name="T22">PROPUESTA </text:span><text:span text:style-name="T26">ECONOMICA</text:span><text:span text:style-name="T20"> EN BORRADOR</text:span></text:p>
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text">&lt;when test=&quot;opp.state == &apos;quotation&apos;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P80"><text:span text:style-name="T7">PROPUESTA </text:span><text:span text:style-name="T8">ECONOMICA</text:span> N° <text:placeholder text:placeholder-type="text">&lt;opp.number&gt;</text:placeholder></text:p>
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text">&lt;/when&gt;</text:placeholder></text:p>
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text">&lt;otherwise test=&quot;&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P81"><text:span text:style-name="T25">PROPUESTA </text:span><text:span text:style-name="T26">ECONOMICA</text:span><text:span text:style-name="T25"> </text:span><text:span text:style-name="T23">N° </text:span><text:span text:style-name="T23"><text:placeholder text:placeholder-type="text">&lt;opp.number&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text">&lt;/otherwise&gt;</text:placeholder></text:p>
<text:p text:style-name="P57"><text:placeholder text:placeholder-type="text">&lt;/choose&gt;</text:placeholder></text:p>
<text:p text:style-name="P62"/>
<text:p text:style-name="P60"><text:span text:style-name="T5">Para:</text:span> <text:span text:style-name="T29"><text:placeholder text:placeholder-type="text">&lt;opp.party.full_name&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P60"><text:span text:style-name="T5">Vigencia: </text:span>Tarifas vigentes año 2022</text:p>
<text:p text:style-name="P60"><text:span text:style-name="T5">Objeto:</text:span> <text:span text:style-name="T30"><text:placeholder text:placeholder-type="text">&lt;opp.description&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P58"><text:span text:style-name="T35">Fecha:</text:span><text:span text:style-name="T5"> </text:span><text:span text:style-name="T33"><text:placeholder text:placeholder-type="text">&lt;opp.start_date&gt;</text:placeholder></text:span></text:p>
<text:p text:style-name="P69"/>
<text:p text:style-name="P70">Licencia de Funcionamiento otorgada mediante resolución No. 20174100055687 del 08 de agosto de 2017 y renovada por 10 años más, bajo la Resolución No. 20204100055427, vigente hasta el 17 de mayo del 2028, para la prestación de servicios de Vigilancia y seguridad privada en las modalidades de fija, móvil y escolta a personas y mercancías expedida por la Superintendencia de Vigilancia y Seguridad Privada. </text:p>
<text:p text:style-name="P70">Resolución 1521 del 14/03/2012 por la cual se autoriza la ampliación al medio canino, y, Resolución 1508 de 17/08/2016, para desarrollar actividades de telecomunicaciones expedida por el Ministerio de Comunicaciones.</text:p>
<table:table table:name="Table1" table:style-name="Table1">
<table:table-column table:style-name="Table1.A"/>
<table:table-column table:style-name="Table1.B"/>
<table:table-column table:style-name="Table1.C"/>
<table:table-column table:style-name="Table1.D"/>
<table:table-column table:style-name="Table1.E"/>
<table:table-row table:style-name="TableLine94270114066128">
<table:table-row table:style-name="TableLine94174814636352">
<table:table-cell table:style-name="Table1.A1" table:number-columns-spanned="5" office:value-type="string">
<text:p text:style-name="P7">SERVICIO DE VIGILANCIA FIJA</text:p>
</table:table-cell>
@ -31997,41 +31994,41 @@
<table:covered-table-cell/>
<table:covered-table-cell/>
</table:table-row>
<table:table-row table:style-name="TableLine94270043680144">
<table:table-row table:style-name="TableLine94174768184576">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P43">DESCRIPCION</text:p>
<text:p text:style-name="P44">DESCRIPCION</text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P44">CANTIDAD</text:p>
<text:p text:style-name="P45">CANTIDAD</text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P45"><text:span text:style-name="T43">VALOR</text:span><text:span text:style-name="T42"> UNITARIO</text:span></text:p>
<text:p text:style-name="P46"><text:span text:style-name="T43">VALOR</text:span><text:span text:style-name="T42"> UNITARIO</text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P43">VALOR <text:span text:style-name="T44">(SIN</text:span> IVA<text:span text:style-name="T44">)</text:span></text:p>
<text:p text:style-name="P44">VALOR <text:span text:style-name="T44">(SIN</text:span> IVA<text:span text:style-name="T44">)</text:span></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.E2" office:value-type="string">
<text:p text:style-name="P43"><text:span text:style-name="T34">VALOR </text:span>TOTAL</text:p>
<text:p text:style-name="P44"><text:span text:style-name="T34">VALOR </text:span>TOTAL</text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="TableLine94269961682064">
<table:table-row table:style-name="TableLine94174815789600">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P24"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in opp.lines&quot;&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.E2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="TableLine94269958317776">
<table:table-row table:style-name="TableLine94174768494704">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;line in line.description.split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P15"><text:placeholder text:placeholder-type="text">&lt;line&gt;</text:placeholder></text:p>
@ -32044,56 +32041,56 @@
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;format_number(line.unit_price, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;format_number(line.unit_price, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text">&lt;format_number(line.total_line, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.E2" office:value-type="string">
<text:p text:style-name="P33"><text:placeholder text:placeholder-type="text">&lt;format_number(line.total_line, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text">&lt;format_number(line.total_line, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="TableLine94269961753760">
<table:table-row table:style-name="TableLine94174805764864">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P14"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.E2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
</table:table-row>
<table:table-row table:style-name="TableLine94270068735280">
<table:table-row table:style-name="TableLine94174780480256">
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P38">Valor Total</text:p>
<text:p text:style-name="P39">Valor Total</text:p>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.A2" office:value-type="string">
<text:p text:style-name="P35"/>
<text:p text:style-name="P36"/>
</table:table-cell>
<table:table-cell table:style-name="Table1.E2" office:value-type="string">
<text:p text:style-name="P33"/>
<text:p text:style-name="P34"><text:placeholder text:placeholder-type="text">&lt;format_number(opp.total_without_tax, company.party.lang, digits=2)&gt;</text:placeholder></text:p>
</table:table-cell>
</table:table-row>
</table:table>
<text:p text:style-name="P47"/>
<text:p text:style-name="P74">Delthac 1 Seguridad se reserva el derecho de retractarse de prestar el servicio de conformidad con los resultados del estudio de seguridad, por la no entrega o entrega incompleta de la documentación requerida por la compañía. La tarifa será reajustada en <text:s/>la misma proporción en caso de incrementos operativos por disposiciones gubernamentales en cargos laborales o generales que de manera directa o indirecta incidan en el costo del servicio, y entrarán a regir a partir de la fecha de vigencia de las nuevas disposiciones según <text:soft-page-break/>el decreto 4950 de 2007. Nota: La prestación del servicio de vigilancia y seguridad privada ofertado en este documento, estará sujeta a la validación de los filtros que la compañía realiza para el riesgo crediticio, así como para la prevención del riesgo de lavado de activos y financiación del terrorismo; de igual forma, la compañía verificará la existencia de condiciones mínimas de seguridad, necesarias para la prestación del servicio. Delthac 1 Seguridad se reserva el derecho de revocarla.</text:p>
<text:p text:style-name="P62"/>
<text:p text:style-name="P67"><text:span text:style-name="T40">O</text:span><text:span text:style-name="T41">bservaciones</text:span><text:span text:style-name="T40">:</text:span></text:p>
<text:p text:style-name="P64"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;comment in (opp.comment or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P64"><text:placeholder text:placeholder-type="text">&lt;comment&gt;</text:placeholder></text:p>
<text:p text:style-name="P64"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P64"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P48"/>
<text:p text:style-name="P75">Delthac 1 Seguridad se reserva el derecho de retractarse de prestar el servicio de conformidad con los resultados del estudio de seguridad, por la no entrega o entrega incompleta de la documentación requerida por la compañía. La tarifa será reajustada en <text:s/>la misma proporción en caso de incrementos operativos por <text:soft-page-break/>disposiciones gubernamentales en cargos laborales o generales que de manera directa o indirecta incidan en el costo del servicio, y entrarán a regir a partir de la fecha de vigencia de las nuevas disposiciones según el decreto 4950 de 2007. Nota: La prestación del servicio de vigilancia y seguridad privada ofertado en este documento, estará sujeta a la validación de los filtros que la compañía realiza para el riesgo crediticio, así como para la prevención del riesgo de lavado de activos y financiación del terrorismo; de igual forma, la compañía verificará la existencia de condiciones mínimas de seguridad, necesarias para la prestación del servicio. Delthac 1 Seguridad se reserva el derecho de revocarla.</text:p>
<text:p text:style-name="P63"/>
<text:p text:style-name="P68"><text:span text:style-name="T40">O</text:span><text:span text:style-name="T41">bservaciones</text:span><text:span text:style-name="T40">:</text:span></text:p>
<text:p text:style-name="P65"><text:placeholder text:placeholder-type="text">&lt;for each=&quot;comment in (opp.comment or &apos;&apos;).split(&apos;\n&apos;)&quot;&gt;</text:placeholder></text:p>
<text:p text:style-name="P65"><text:placeholder text:placeholder-type="text">&lt;comment&gt;</text:placeholder></text:p>
<text:p text:style-name="P65"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P65"><text:placeholder text:placeholder-type="text">&lt;/for&gt;</text:placeholder></text:p>
<text:p text:style-name="P64"/>
</office:text>
</office:body>
</office:document>