[Libreoffice-commits] core.git: include/oox oox/source sd/qa

Muthu Subramanian sumuthu at collabora.com
Wed Oct 9 23:50:59 PDT 2013


 include/oox/drawingml/customshapeproperties.hxx |    2 
 oox/source/drawingml/customshapeproperties.cxx  |    5 
 oox/source/drawingml/shape.cxx                  |    2 
 sd/qa/unit/data/xml/n762695_0.xml               |    2 
 sd/qa/unit/data/xml/n762695_1.xml               |    4 
 sd/qa/unit/data/xml/n819614_0.xml               |13843 ++++++++++++------------
 sd/qa/unit/import-tests.cxx                     |    2 
 7 files changed, 6993 insertions(+), 6867 deletions(-)

New commits:
commit cd40d2ba9e8ed17cc870606b17ac2dffceb2813d
Author: Muthu Subramanian <sumuthu at collabora.com>
Date:   Thu Oct 10 12:19:38 2013 +0530

    n#819614: Lines running off the screens.
    
    Also fixed the test cases.

diff --git a/include/oox/drawingml/customshapeproperties.hxx b/include/oox/drawingml/customshapeproperties.hxx
index e44f20db..00f47de 100644
--- a/include/oox/drawingml/customshapeproperties.hxx
+++ b/include/oox/drawingml/customshapeproperties.hxx
@@ -130,7 +130,7 @@ public:
 
     void pushToPropSet( const ::oox::core::FilterBase& rFilterBase,
             const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet > & xPropSet,
-                        const ::com::sun::star::uno::Reference < ::com::sun::star::drawing::XShape > & xShape);
+                        const ::com::sun::star::uno::Reference < ::com::sun::star::drawing::XShape > & xShape, const ::com::sun::star::awt::Size &aSize );
 
     sal_Int32 getShapePresetType() const { return mnShapePresetType; }
     OUString getShapePresetTypeName() const;
diff --git a/oox/source/drawingml/customshapeproperties.cxx b/oox/source/drawingml/customshapeproperties.cxx
index 05a9e0c..48ace8b 100644
--- a/oox/source/drawingml/customshapeproperties.cxx
+++ b/oox/source/drawingml/customshapeproperties.cxx
@@ -109,7 +109,7 @@ static OUString GetConnectorShapeType( sal_Int32 nType )
 
 
 void CustomShapeProperties::pushToPropSet( const ::oox::core::FilterBase& /* rFilterBase */,
-    const Reference < XPropertySet >& xPropSet, const Reference < XShape > & xShape )
+    const Reference < XPropertySet >& xPropSet, const Reference < XShape > & xShape, const awt::Size &aSize )
 {
     if ( mnShapePresetType >= 0 )
     {
@@ -213,8 +213,7 @@ void CustomShapeProperties::pushToPropSet( const ::oox::core::FilterBase& /* rFi
         aPropertyMap[ PROP_Type ] <<= OUString( "ooxml-non-primitive" );
         aPropertyMap[ PROP_MirroredX ] <<= Any( mbMirroredX );
         aPropertyMap[ PROP_MirroredY ] <<= Any( mbMirroredY );
-        awt::Size aSize;
-        awt::Rectangle aViewBox( 0, 0, aSize.Width * 360, aSize.Height * 360 );
+        awt::Rectangle aViewBox( 0, 0, aSize.Width, aSize.Height );
         aPropertyMap[ PROP_ViewBox ] <<= aViewBox;
 
         Sequence< EnhancedCustomShapeAdjustmentValue > aAdjustmentValues( maAdjustmentGuideList.size() );
diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx
index 44a43ff..f174b34 100644
--- a/oox/source/drawingml/shape.cxx
+++ b/oox/source/drawingml/shape.cxx
@@ -621,7 +621,7 @@ Reference< XShape > Shape::createAndInsert(
             }
 
             SAL_INFO("oox.cscode", "==cscode== shape name: '" << msName << "'");
-            mpCustomShapePropertiesPtr->pushToPropSet( rFilterBase, xSet, mxShape );
+            mpCustomShapePropertiesPtr->pushToPropSet( rFilterBase, xSet, mxShape, maSize );
         }
         else if( getTextBody() )
             getTextBody()->getTextProperties().pushVertSimulation();
diff --git a/sd/qa/unit/data/xml/n762695_0.xml b/sd/qa/unit/data/xml/n762695_0.xml
index d55c979..5f3080f 100644
--- a/sd/qa/unit/data/xml/n762695_0.xml
+++ b/sd/qa/unit/data/xml/n762695_0.xml
@@ -83,7 +83,7 @@
    </PropertyValue>
    <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
+    <ViewBox x="0" y="0" width="4820911" height="3908235"/>
    </PropertyValue>
   </CustomShapeGeometry>
  </XShape>
diff --git a/sd/qa/unit/data/xml/n762695_1.xml b/sd/qa/unit/data/xml/n762695_1.xml
index fb24ba08..d746783 100644
--- a/sd/qa/unit/data/xml/n762695_1.xml
+++ b/sd/qa/unit/data/xml/n762695_1.xml
@@ -83,7 +83,7 @@
    </PropertyValue>
    <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
+    <ViewBox x="0" y="0" width="6477000" height="2743200"/>
    </PropertyValue>
   </CustomShapeGeometry>
  </XShape>
@@ -170,7 +170,7 @@
    </PropertyValue>
    <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
    <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
+    <ViewBox x="0" y="0" width="6365875" height="3430587"/>
    </PropertyValue>
   </CustomShapeGeometry>
  </XShape>
diff --git a/sd/qa/unit/data/xml/n819614_0.xml b/sd/qa/unit/data/xml/n819614_0.xml
index 029ccaa..050ba3f 100644
--- a/sd/qa/unit/data/xml/n819614_0.xml
+++ b/sd/qa/unit/data/xml/n819614_0.xml
@@ -1,6863 +1,6 @@
 <?xml version="1.0"?>
 <XShapes>
- <XShape positionX="10751" positionY="3496" sizeX="1563" sizeY="253" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="1564.000000" column2="0.000000" column3="10751.000000"/>
-   <Line2 column1="0.000000" column2="254.000000" column3="3496.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="1564" type="0"/>
-        <Second value="127" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="1564" type="0"/>
-        <Second value="337" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="337" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="22386" positionY="5702" sizeX="363" sizeY="2071" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="364.000000" column2="0.000000" column3="22386.000000"/>
-   <Line2 column1="0.000000" column2="2072.000000" column3="5702.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="2072" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="364" type="0"/>
-        <Second value="2072" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="22386" positionY="5702" sizeX="363" sizeY="810" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="364.000000" column2="0.000000" column3="22386.000000"/>
-   <Line2 column1="0.000000" column2="811.000000" column3="5702.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="811" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="364" type="0"/>
-        <Second value="811" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12315" positionY="3623" sizeX="11167" sizeY="833" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="11168.000000" column2="0.000000" column3="12315.000000"/>
-   <Line2 column1="0.000000" column2="834.000000" column3="3623.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="760" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="11168" type="0"/>
-        <Second value="760" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="11168" type="0"/>
-        <Second value="834" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="3"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="457" sizeY="4508" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="458.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="4509.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="4509" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="458" type="0"/>
-        <Second value="4509" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="457" sizeY="3164" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="458.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="3165.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="3165" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="458" type="0"/>
-        <Second value="3165" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="362" sizeY="7482" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="363.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="7483.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="7483" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="363" type="0"/>
-        <Second value="7483" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="457" sizeY="5902" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="458.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="5903.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="5903" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="458" type="0"/>
-        <Second value="5903" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="19023" positionY="7078" sizeX="253" sizeY="629" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="254.000000" column2="0.000000" column3="19023.000000"/>
-   <Line2 column1="0.000000" column2="630.000000" column3="7078.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="127" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="127" type="0"/>
-        <Second value="630" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="278" type="0"/>
-        <Second value="630" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="18514" positionY="5771" sizeX="361" sizeY="740" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="362.000000" column2="0.000000" column3="18514.000000"/>
-   <Line2 column1="0.000000" column2="741.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="741" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="362" type="0"/>
-        <Second value="741" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12315" positionY="3623" sizeX="7295" sizeY="902" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="7296.000000" column2="0.000000" column3="12315.000000"/>
-   <Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="7296" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="7296" type="0"/>
-        <Second value="903" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="3"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="15231" positionY="5771" sizeX="411" sizeY="3271" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="412.000000" column2="0.000000" column3="15231.000000"/>
-   <Line2 column1="0.000000" column2="3272.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="3272" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="412" type="0"/>
-        <Second value="3272" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="15231" positionY="5771" sizeX="411" sizeY="1991" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="412.000000" column2="0.000000" column3="15231.000000"/>
-   <Line2 column1="0.000000" column2="1992.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="1992" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="412" type="0"/>
-        <Second value="1992" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="15231" positionY="5771" sizeX="411" sizeY="712" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="412.000000" column2="0.000000" column3="15231.000000"/>
-   <Line2 column1="0.000000" column2="713.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="713" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="412" type="0"/>
-        <Second value="713" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12315" positionY="3623" sizeX="4012" sizeY="902" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="4013.000000" column2="0.000000" column3="12315.000000"/>
-   <Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="4013" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="4013" type="0"/>
-        <Second value="903" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="3"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12289" positionY="13817" sizeX="337" sizeY="1988" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="338.000000" column2="0.000000" column3="12289.000000"/>
-   <Line2 column1="0.000000" column2="1989.000000" column3="13817.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="1989" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="338" type="0"/>
-        <Second value="1989" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12289" positionY="13817" sizeX="337" sizeY="736" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="338.000000" column2="0.000000" column3="12289.000000"/>
-   <Line2 column1="0.000000" column2="737.000000" column3="13817.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="737" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="338" type="0"/>
-        <Second value="737" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="463" sizeY="7376" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="464.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="7377.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="7377" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="464" type="0"/>
-        <Second value="7377" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="463" sizeY="5850" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="464.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="5851.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="5851" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="464" type="0"/>
-        <Second value="5851" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="458" sizeY="12372" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="459.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="12373.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="12373" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="459" type="0"/>
-        <Second value="12373" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="462" sizeY="11249" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="463.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="11250.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="11250" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="463" type="0"/>
-        <Second value="11250" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12091" positionY="7232" sizeX="397" sizeY="3176" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="398.000000" column2="0.000000" column3="12091.000000"/>
-   <Line2 column1="0.000000" column2="3177.000000" column3="7232.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="3177" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="398" type="0"/>
-        <Second value="3177" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12091" positionY="7232" sizeX="397" sizeY="1948" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="398.000000" column2="0.000000" column3="12091.000000"/>
-   <Line2 column1="0.000000" column2="1949.000000" column3="7232.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="1949" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="398" type="0"/>
-        <Second value="1949" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12091" positionY="7232" sizeX="389" sizeY="727" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="390.000000" column2="0.000000" column3="12091.000000"/>
-   <Line2 column1="0.000000" column2="728.000000" column3="7232.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="728" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="390" type="0"/>
-        <Second value="728" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="11527" positionY="5771" sizeX="289" sizeY="776" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="290.000000" column2="0.000000" column3="11527.000000"/>
-   <Line2 column1="0.000000" column2="777.000000" column3="5771.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="777" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="290" type="0"/>
-        <Second value="777" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="12315" positionY="3623" sizeX="309" sizeY="902" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="310.000000" column2="0.000000" column3="12315.000000"/>
-   <Line2 column1="0.000000" column2="903.000000" column3="3623.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="310" type="0"/>
-        <Second value="829" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="310" type="0"/>
-        <Second value="903" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="3"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="8247" positionY="5774" sizeX="438" sizeY="7084" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="439.000000" column2="0.000000" column3="8247.000000"/>
-   <Line2 column1="0.000000" column2="7085.000000" column3="5774.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="7085" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="439" type="0"/>
-        <Second value="7085" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>
-   <PropertyValue name="Type" value="ooxml-non-primitive" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="ViewBox">
-    <ViewBox x="0" y="0" width="0" height="0"/>
-   </PropertyValue>
-  </CustomShapeGeometry>
- </XShape>
- <XShape positionX="8247" positionY="5774" sizeX="411" sizeY="5829" type="com.sun.star.drawing.CustomShape" fontHeight="18.000000" fontColor="ffffffff" textAutoGrowHeight="false" textAutoGrowWidth="false" textContourFrame="false" textFitToSize="NONE" textHorizontalAdjust="BLOCK" textVerticalAdjust="TOP" textLeftDistance="250" textRightDistance="250" textUpperDistance="125" textLowerDistance="125" textMaximumFrameHeight="0" textMaximumFrameWidth="0" textMinimumFrameHeight="0" textMinimumFrameWidth="0" textAnimationAmount="0" textAnimationCount="0" textAnimationDelay="0" textAnimationDirection="LEFT" textAnimationKind="NONE" textAnimationStartInside="false" textAnimationStopInside="false" textWritingMode="LR_TB" fillStyle="NONE" fillColor="729fcf" fillTransparence="0" fillTransparenceGradientName="">
-  <FillTransparenceGradient style="LINEAR" startColor="000000" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillGradient style="LINEAR" startColor="3465a4" endColor="ffffff" angle="0" border="0" xOffset="50" yOffset="50" startIntensity="100" endIntensity="100" stepCount="0"/>
-  <FillHatch style="SINGLE" color="3465a4" distance="20" angle="0"/>
-  <FillBitmap width="32" height="32"/>
-  <LineDash style="RECT" dots="1" dotLen="20" dashes="1" dashLen="20" distance="20"/>
-  <LineStart/>
-  <LineEnd/>
-  <Transformation>
-   <Line1 column1="412.000000" column2="0.000000" column3="8247.000000"/>
-   <Line2 column1="0.000000" column2="5830.000000" column3="5774.000000"/>
-   <Line3 column1="0.000000" column2="0.000000" column3="1.000000"/>
-  </Transformation>
-  <CustomShapeGeometry>
-   <PropertyValue name="AdjustmentValues">
-    <AdjustmentValues/>
-   </PropertyValue>
-   <PropertyValue name="Equations">
-    <Equations/>
-   </PropertyValue>
-   <PropertyValue name="Handles">
-    <Handles/>
-   </PropertyValue>
-   <PropertyValue name="MirroredX" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="MirroredY" value="false" handle="0" propertyState="DIRECT_VALUE"/>
-   <PropertyValue name="Path">
-    <Path>
-     <PropertyValue name="Coordinates">
-      <Coordinates>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="0" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="0" type="0"/>
-        <Second value="5830" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-       <EnhancedCustomShapeParameterPair>
-        <First value="412" type="0"/>
-        <Second value="5830" type="0"/>
-       </EnhancedCustomShapeParameterPair>
-      </Coordinates>
-     </PropertyValue>
-     <PropertyValue name="Segments">
-      <Segments>
-       <EnhancedCustomShapeSegment command="1" count="1"/>
-       <EnhancedCustomShapeSegment command="2" count="2"/>
-       <EnhancedCustomShapeSegment command="5" count="0"/>
-      </Segments>
-     </PropertyValue>
-     <PropertyValue name="TextFrames" handle="0" propertyState="DIRECT_VALUE"/>
-    </Path>
-   </PropertyValue>

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list