<property name="scratchpad.output.test.dir" location="build/scratchpad-test-classes"/>
<property name="scratchpad.testokfile" location="build/scratchpad-testokfile.txt"/>
- <property name="geometry.schema" value="src/resources/ooxml/org/apache/poi/xslf/usermodel/presetShapeDefinitions.xml"/>
+ <!-- Scratchpad/Geometry -->
+ <property name="geometry.pkg" value="org.apache.poi.sl.draw.binding"/>
+ <property name="geometry.output.tmpdir" value="build/geometry-java"/>
+
+
<!-- Examples: -->
<property name="examples.src" location="src/examples/src"/>
<property name="examples.output.dir" location="build/examples-classes"/>
</copy>
</target>
- <target name="compile-scratchpad" depends="compile-main">
- <target name="generate-geometry" depends="fetch-ooxml-xsds" if="ignoreMe">
++ <target name="generate-geometry" depends="fetch-ooxml-xsds" if="ignoreme">
+ <delete dir="${geometry.output.tmpdir}"/>
+ <!-- taskdef xjc -->
+ <!-- "D:\Program Files\Java\jdk1.6.0_45\bin\xjc" -p org.apache.poi.sl.model.geom.binding -readOnly -Xlocator -mark-generated ooxml-schemas\dml-shapeGeometry.xsd -->
+ <unzip src="${ooxml.lib}/${ooxml.xsds.izip.1}" dest="${geometry.output.tmpdir}"/>
+ <exec executable="${env.JAVA_HOME}/bin/xjc">
+ <arg value="-p"/>
+ <arg value="${geometry.pkg}"/>
+ <arg value="-b"/>
+ <arg file="src/types/definitions/dml-shapeGeometry.xjb"/>
+ <arg value="-readOnly"/>
+ <arg value="-npa"/>
+ <arg value="-no-header"/>
+ <!--arg value="-mark-generated"/ -->
+ <!--arg value="-Xlocator"/ -->
+ <arg file="${geometry.output.tmpdir}/dml-shapeGeometry.xsd"/>
+ <arg value="-d"/>
+ <arg file="${geometry.output.tmpdir}"/>
+ </exec>
+ <copy file="src/java/org/apache/poi/POIDocument.java" tofile="${geometry.output.tmpdir}/apache-license.txt">
+ <filterchain>
+ <headfilter lines="16"/>
+ </filterchain>
+ </copy>
+ <copy todir="${main.src}">
+ <fileset dir="${geometry.output.tmpdir}" includes="**/*.java"/>
+ <filterchain>
+ <concatfilter prepend="${geometry.output.tmpdir}/apache-license.txt"/>
+ </filterchain>
+ </copy>
+ </target>
+
+ <target name="compile-scratchpad" depends="compile-main,generate-geometry">
<javac target="${jdk.version.class}"
source="${jdk.version.source}"
destdir="${scratchpad.output.dir}"
<exclude name="contrib/testcases/dummy.txt" />
<exclude name="examples/lib/dummy.txt" />
<exclude name="resources/ooxml/org/apache/poi/xslf/usermodel/notesMaster.xml" />
-- <exclude name="resources/ooxml/org/apache/poi/xslf/usermodel/presetShapeDefinitions.xml" />
++ <exclude name="resources/main/org/apache/poi/sl/draw/geom/presetShapeDefinitions.xml" />
<exclude name="examples/src/org/apache/poi/xslf/usermodel/pie-chart-data.txt" />
</fileset>
</rat:report>
package org.apache.poi.hslf.examples;
- import org.apache.poi.hslf.usermodel.*;
- import org.apache.poi.hslf.model.*;
- import org.apache.poi.hslf.record.TextHeaderAtom;
-
- import java.io.IOException;
-import java.awt.*;
++import java.awt.Color;
++import java.awt.Dimension;
++import java.awt.Font;
++import java.awt.Graphics2D;
++import java.awt.Rectangle;
import java.io.FileOutputStream;
- import java.awt.*;
+ import java.io.IOException;
+ import java.util.List;
+
-import org.apache.poi.hslf.model.*;
++import org.apache.poi.hslf.model.Line;
++import org.apache.poi.hslf.model.PPGraphics2D;
+ import org.apache.poi.hslf.record.TextHeaderAtom;
-import org.apache.poi.hslf.usermodel.*;
++import org.apache.poi.hslf.usermodel.HSLFAutoShape;
++import org.apache.poi.hslf.usermodel.HSLFGroupShape;
++import org.apache.poi.hslf.usermodel.HSLFSlide;
++import org.apache.poi.hslf.usermodel.HSLFSlideShow;
++import org.apache.poi.hslf.usermodel.HSLFTable;
++import org.apache.poi.hslf.usermodel.HSLFTableCell;
++import org.apache.poi.hslf.usermodel.HSLFTextBox;
++import org.apache.poi.hslf.usermodel.HSLFTextParagraph;
++import org.apache.poi.hslf.usermodel.HSLFTextRun;
+ import org.apache.poi.sl.usermodel.ShapeType;
+ import org.apache.poi.sl.usermodel.VerticalAlignment;
/**
* Presentation for Fast Feather Track on ApacheconEU 2008
package org.apache.poi.hslf.examples;
- import org.apache.poi.hslf.usermodel.SlideShow;
- import org.apache.poi.hslf.usermodel.RichTextRun;
- import org.apache.poi.hslf.model.Slide;
- import org.apache.poi.hslf.model.TextBox;
-import org.apache.poi.hslf.usermodel.*;
--
import java.io.FileOutputStream;
++import org.apache.poi.hslf.usermodel.HSLFSlide;
++import org.apache.poi.hslf.usermodel.HSLFSlideShow;
++import org.apache.poi.hslf.usermodel.HSLFTextBox;
++import org.apache.poi.hslf.usermodel.HSLFTextParagraph;
++
/**
* How to create a single-level bulleted list
* and change some of the bullet attributes
package org.apache.poi.hslf.examples;
- import org.apache.poi.hslf.usermodel.SlideShow;
-import org.apache.poi.hslf.usermodel.*;
--import org.apache.poi.hslf.model.*;
--
++import java.awt.Rectangle;
import java.io.FileOutputStream;
--import java.awt.*;
++
++import org.apache.poi.hslf.usermodel.HSLFHyperlink;
++import org.apache.poi.hslf.usermodel.HSLFSlide;
++import org.apache.poi.hslf.usermodel.HSLFSlideShow;
++import org.apache.poi.hslf.usermodel.HSLFTextBox;
/**
* Demonstrates how to create hyperlinks in PowerPoint presentations
*/
public final class CreateHyperlink {
++ @SuppressWarnings("unused")
public static void main(String[] args) throws Exception {
- SlideShow ppt = new SlideShow();
+ HSLFSlideShow ppt = new HSLFSlideShow();
- Slide slideA = ppt.createSlide();
- Slide slideB = ppt.createSlide();
- Slide slideC = ppt.createSlide();
+ HSLFSlide slideA = ppt.createSlide();
+ HSLFSlide slideB = ppt.createSlide();
+ HSLFSlide slideC = ppt.createSlide();
// link to a URL
- TextBox textBox1 = new TextBox();
+ HSLFTextBox textBox1 = new HSLFTextBox();
textBox1.setText("Apache POI");
textBox1.setAnchor(new Rectangle(100, 100, 200, 50));
package org.apache.poi.hslf.examples;
--import org.apache.poi.hslf.usermodel.*;
--import org.apache.poi.hslf.model.*;
++import java.io.FileInputStream;
++import java.io.FileOutputStream;
++import java.io.InputStream;
++
++import org.apache.poi.hslf.model.OLEShape;
++import org.apache.poi.hslf.usermodel.HSLFObjectData;
++import org.apache.poi.hslf.usermodel.HSLFPictureData;
++import org.apache.poi.hslf.usermodel.HSLFPictureShape;
++import org.apache.poi.hslf.usermodel.HSLFShape;
++import org.apache.poi.hslf.usermodel.HSLFSlide;
++import org.apache.poi.hslf.usermodel.HSLFSlideShow;
++import org.apache.poi.hslf.usermodel.HSLFSoundData;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hwpf.HWPFDocument;
--import org.apache.poi.hwpf.usermodel.Range;
import org.apache.poi.hwpf.usermodel.Paragraph;
--
--import java.io.*;
++import org.apache.poi.hwpf.usermodel.Range;
/**
* Demonstrates how you can extract misc embedded data from a ppt file
package org.apache.poi.hslf.examples;
- import org.apache.poi.hslf.usermodel.SlideShow;
-import org.apache.poi.hslf.usermodel.*;
--import org.apache.poi.hslf.model.*;
--
--import java.awt.*;
++import java.awt.Color;
++import java.awt.Font;
++import java.awt.Graphics2D;
++import java.awt.Rectangle;
import java.io.FileOutputStream;
++import org.apache.poi.hslf.model.PPGraphics2D;
++import org.apache.poi.hslf.usermodel.HSLFGroupShape;
++import org.apache.poi.hslf.usermodel.HSLFSlide;
++import org.apache.poi.hslf.usermodel.HSLFSlideShow;
++
/**
* Demonstrates how to draw into a slide using the HSLF Graphics2D driver.
*
==================================================================== */
package org.apache.poi.hslf.examples;
- import org.apache.poi.hslf.usermodel.SlideShow;
- import org.apache.poi.hslf.model.HeadersFooters;
- import org.apache.poi.hslf.model.Slide;
-
+import java.io.FileOutputStream;
+
++import org.apache.poi.hslf.model.HeadersFooters;
+ import org.apache.poi.hslf.usermodel.HSLFSlide;
+ import org.apache.poi.hslf.usermodel.HSLFSlideShow;
-import org.apache.poi.hslf.model.HeadersFooters;
-
-import java.io.FileOutputStream;
+
/**
* Demonstrates how to set headers / footers
*
package org.apache.poi.hslf.examples;
- import org.apache.poi.hslf.usermodel.SlideShow;
- import org.apache.poi.hslf.model.Slide;
- import org.apache.poi.hslf.model.TextRun;
- import org.apache.poi.hslf.model.Hyperlink;
- import org.apache.poi.hslf.model.Shape;
-
import java.io.FileInputStream;
-import org.apache.poi.hslf.usermodel.*;
+ import java.util.List;
+
++import org.apache.poi.hslf.usermodel.HSLFHyperlink;
++import org.apache.poi.hslf.usermodel.HSLFShape;
++import org.apache.poi.hslf.usermodel.HSLFSlide;
++import org.apache.poi.hslf.usermodel.HSLFSlideShow;
++import org.apache.poi.hslf.usermodel.HSLFTextParagraph;
/**
* Demonstrates how to read hyperlinks from a presentation
package org.apache.poi.hslf.examples;
- import org.apache.poi.hslf.usermodel.*;
- import org.apache.poi.hslf.model.*;
-import java.awt.*;
++import java.awt.Color;
++import java.awt.Dimension;
++import java.awt.Graphics2D;
++import java.awt.RenderingHints;
+ import java.awt.geom.Rectangle2D;
+ import java.awt.image.BufferedImage;
+ import java.io.FileInputStream;
+ import java.io.FileOutputStream;
import javax.imageio.ImageIO;
- import java.io.FileOutputStream;
- import java.io.FileInputStream;
- import java.awt.*;
- import java.awt.image.BufferedImage;
- import java.awt.geom.Rectangle2D;
+
+ import org.apache.poi.hslf.usermodel.HSLFSlide;
+ import org.apache.poi.hslf.usermodel.HSLFSlideShow;
/**
* Demonstrates how you can use HSLF to convert each slide into a PNG image
limitations under the License.
==================================================================== */
package org.apache.poi.hslf.examples;
- import org.apache.poi.ddf.*;
- import org.apache.poi.hslf.model.*;
+ import java.io.FileInputStream;
-import java.util.Iterator;
-import java.util.List;
+
-import org.apache.poi.ddf.*;
-import org.apache.poi.hslf.record.*;
-import org.apache.poi.hslf.usermodel.*;
++import org.apache.poi.ddf.EscherClientDataRecord;
++import org.apache.poi.ddf.EscherContainerRecord;
++import org.apache.poi.ddf.EscherRecord;
+import org.apache.poi.hslf.record.InteractiveInfo;
+import org.apache.poi.hslf.record.InteractiveInfoAtom;
+import org.apache.poi.hslf.record.Record;
- import org.apache.poi.hslf.usermodel.*;
- import java.io.FileInputStream;
- import java.util.Iterator;
- import java.util.List;
++import org.apache.poi.hslf.usermodel.HSLFShape;
++import org.apache.poi.hslf.usermodel.HSLFSlide;
++import org.apache.poi.hslf.usermodel.HSLFSlideShow;
++import org.apache.poi.hslf.usermodel.HSLFSoundData;
/**
* For each slide iterate over shapes and found associated sound data.
int soundRef = -1;
//dive into the shape container and search for InteractiveInfoAtom
EscherContainerRecord spContainer = shape.getSpContainer();
-- List spchild = spContainer.getChildRecords();
-- for (Iterator it = spchild.iterator(); it.hasNext();) {
-- EscherRecord obj = (EscherRecord) it.next();
++ for (EscherRecord obj : spContainer.getChildRecords()) {
if (obj.getRecordId() == EscherClientDataRecord.RECORD_ID) {
byte[] data = obj.serialize();
-- Record[] records = Record.findChildRecords(data, 8,
--data.length - 8);
-- for (int j = 0; j < records.length; j++) {
-- if (records[j] instanceof InteractiveInfo) {
-- InteractiveInfoAtom info = ((InteractiveInfo)records[j]).getInteractiveInfoAtom();
++ for (Record record : Record.findChildRecords(data, 8, data.length - 8)) {
++ if (record instanceof InteractiveInfo) {
++ InteractiveInfoAtom info = ((InteractiveInfo)record).getInteractiveInfoAtom();
if (info.getAction() == InteractiveInfoAtom.ACTION_MEDIA) {
soundRef = info.getSoundRef();
}
package org.apache.poi.hslf.examples;
- import org.apache.poi.hslf.usermodel.SlideShow;
- import org.apache.poi.hslf.usermodel.RichTextRun;
-import org.apache.poi.hslf.usermodel.*;
--import org.apache.poi.hslf.model.*;
-
- import java.awt.*;
++import java.awt.Color;
+import java.io.FileOutputStream;
+
++import org.apache.poi.hslf.model.Line;
++import org.apache.poi.hslf.usermodel.HSLFSlide;
++import org.apache.poi.hslf.usermodel.HSLFSlideShow;
++import org.apache.poi.hslf.usermodel.HSLFTable;
++import org.apache.poi.hslf.usermodel.HSLFTableCell;
++import org.apache.poi.hslf.usermodel.HSLFTextRun;
+ import org.apache.poi.sl.usermodel.TextParagraph.TextAlign;
+ import org.apache.poi.sl.usermodel.VerticalAlignment;
+
-import java.awt.*;
-import java.io.FileOutputStream;
-
/**
* Demonstrates how to create tables
*
==================================================================== */\r
package org.apache.poi.hssf.usermodel.examples;\r
\r
--import org.apache.poi.hssf.usermodel.*;\r
++import java.io.FileInputStream;\r
++import java.util.Iterator;\r
++\r
++import org.apache.poi.hslf.usermodel.HSLFSlideShow;\r
++import org.apache.poi.hslf.usermodel.HSLFSlideShowImpl;\r
++import org.apache.poi.hssf.usermodel.HSSFObjectData;\r
++import org.apache.poi.hssf.usermodel.HSSFWorkbook;\r
++import org.apache.poi.hwpf.HWPFDocument;\r
import org.apache.poi.poifs.filesystem.DirectoryNode;\r
import org.apache.poi.poifs.filesystem.Entry;\r
import org.apache.poi.poifs.filesystem.POIFSFileSystem;\r
--import org.apache.poi.hwpf.HWPFDocument;\r
- import org.apache.poi.hslf.HSLFSlideShow;\r
- import org.apache.poi.hslf.usermodel.SlideShow;\r
-import org.apache.poi.hslf.usermodel.HSLFSlideShow;\r
-import org.apache.poi.hslf.usermodel.HSLFSlideShowImpl;\r
--\r
--import java.io.FileInputStream;\r
--import java.util.Iterator;\r
\r
/**\r
* Demonstrates how you can extract embedded data from a .xls file\r
*/\r
public class EmeddedObjects {\r
++ @SuppressWarnings("unused")\r
public static void main(String[] args) throws Exception {\r
POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(args[0]));\r
HSSFWorkbook workbook = new HSSFWorkbook(fs);\r
DirectoryNode dn = (DirectoryNode) obj.getDirectory();\r
HSSFWorkbook embeddedWorkbook = new HSSFWorkbook(dn, fs, false);\r
//System.out.println(entry.getName() + ": " + embeddedWorkbook.getNumberOfSheets());\r
++ embeddedWorkbook.close();\r
} else if (oleName.equals("Document")) {\r
DirectoryNode dn = (DirectoryNode) obj.getDirectory();\r
HWPFDocument embeddedWordDocument = new HWPFDocument(dn);\r
if(obj.hasDirectoryEntry()){\r
// The DirectoryEntry is a DocumentNode. Examine its entries to find out what it is\r
DirectoryNode dn = (DirectoryNode) obj.getDirectory();\r
-- for (Iterator entries = dn.getEntries(); entries.hasNext();) {\r
-- Entry entry = (Entry) entries.next();\r
++ for (Iterator<Entry> entries = dn.getEntries(); entries.hasNext();) {\r
++ Entry entry = entries.next();\r
//System.out.println(oleName + "." + entry.getName());\r
}\r
} else {\r
}\r
}\r
}\r
++ workbook.close();\r
}\r
}\r
\r
package org.apache.poi.xslf.usermodel;\r
\r
--import org.apache.poi.openxml4j.opc.PackagePart;\r
--\r
--import java.awt.*;\r
--import java.awt.geom.Rectangle2D;\r
++import java.awt.Dimension;\r
import java.io.FileInputStream;\r
import java.io.InputStream;\r
import java.util.List;\r
\r
++import org.apache.poi.openxml4j.opc.PackagePart;\r
++\r
/**\r
* Demonstrates how you can extract data from a .pptx file\r
*\r
*/\r
public final class DataExtraction {\r
\r
++ @SuppressWarnings("unused")\r
public static void main(String args[]) throws Exception {\r
\r
if (args.length == 0) {\r
}\r
}\r
}\r
++ \r
++ ppt.close();\r
}\r
\r
}\r
for(XSLFSlide srcSlide : src.getSlides()){\r
ppt.createSlide().importContent(srcSlide);\r
}\r
++ \r
++ src.close();\r
}\r
\r
FileOutputStream out = new FileOutputStream("merged.pptx");\r
ppt.write(out);\r
out.close();\r
++ \r
++ ppt.close();\r
}\r
\r
}\r
}\r
\r
BufferedReader modelReader = new BufferedReader(new FileReader(args[1]));\r
++ XMLSlideShow pptx = null;\r
try {\r
String chartTitle = modelReader.readLine(); // first line is chart title\r
\r
-- XMLSlideShow pptx = new XMLSlideShow(new FileInputStream(args[0]));\r
- XSLFSlide slide = pptx.getSlides()[0];\r
++ pptx = new XMLSlideShow(new FileInputStream(args[0]));\r
+ XSLFSlide slide = pptx.getSlides().get(0);\r
\r
// find chart in the slide\r
XSLFChart chart = null;\r
wb.close();\r
}\r
} finally {\r
++ if (pptx != null) pptx.close();\r
modelReader.close();\r
}\r
}\r
// we are going to add text by paragraphs. Clear the default placehoder text before that\r
bodyPlaceholder.clearText();\r
XSLFTextParagraph p1 = bodyPlaceholder.addNewTextParagraph();\r
- p1.setLevel(0);\r
+ p1.setIndentLevel(0);\r
p1.addNewTextRun().setText("Level1 text");\r
XSLFTextParagraph p2 = bodyPlaceholder.addNewTextParagraph();\r
- p2.setLevel(1);\r
+ p2.setIndentLevel(1);\r
p2.addNewTextRun().setText("Level2 text");\r
XSLFTextParagraph p3 = bodyPlaceholder.addNewTextParagraph();\r
- p3.setLevel(3);\r
- p3.setIndentLevel(3);\r
++ p3.setIndentLevel(2);\r
p3.addNewTextRun().setText("Level3 text");\r
\r
FileOutputStream out = new FileOutputStream("slides.pptx");\r
ppt.write(out);\r
out.close();\r
++\r
++ ppt.close();\r
}\r
}\r
\r
package org.apache.poi.xslf.usermodel;\r
\r
--import java.awt.*;\r
++import java.awt.Color;\r
++import java.awt.Rectangle;\r
import java.io.FileOutputStream;\r
import java.io.IOException;\r
\r
FileOutputStream out = new FileOutputStream("text.pptx");\r
ppt.write(out);\r
out.close();\r
++ \r
++ ppt.close();\r
}\r
}\r
\r
package org.apache.poi.xslf.usermodel;\r
\r
--import java.awt.*;\r
++import java.awt.Rectangle;\r
import java.io.FileOutputStream;\r
import java.io.IOException;\r
\r
FileOutputStream out = new FileOutputStream("title.pptx");\r
ppt.write(out);\r
out.close();\r
++ \r
++ ppt.close();\r
}\r
}\r
FileOutputStream out = new FileOutputStream("table.pptx");\r
ppt.write(out);\r
out.close();\r
++ \r
++ ppt.close();\r
}\r
}\r
FileOutputStream out = new FileOutputStream("images.pptx");\r
ppt.write(out);\r
out.close();\r
++ \r
++ ppt.close();\r
}\r
}\r
\r
package org.apache.poi.xslf.usermodel;\r
\r
--import java.awt.*;\r
++import java.awt.Rectangle;\r
import java.io.FileOutputStream;\r
import java.io.IOException;\r
\r
FileOutputStream out = new FileOutputStream("hyperlinks.pptx");\r
ppt.write(out);\r
out.close();\r
++ \r
++ ppt.close();\r
}\r
}\r
\r
package org.apache.poi.xslf.usermodel;\r
\r
--import java.awt.*;\r
++import java.awt.Color;\r
++import java.awt.Rectangle;\r
import java.io.FileOutputStream;\r
import java.io.IOException;\r
\r
FileOutputStream out = new FileOutputStream("list.pptx");\r
ppt.write(out);\r
out.close();\r
++ \r
++ ppt.close();\r
}\r
}\r
--- /dev/null
-import org.apache.poi.sl.usermodel.*;\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw;\r
+ \r
++import java.awt.Graphics2D;\r
++import java.util.ArrayList;\r
++import java.util.Collection;\r
++import java.util.List;\r
++\r
++import org.apache.poi.sl.draw.geom.Outline;\r
++import org.apache.poi.sl.draw.geom.Path;\r
++import org.apache.poi.sl.usermodel.FillStyle;\r
++import org.apache.poi.sl.usermodel.FreeformShape;\r
++import org.apache.poi.sl.usermodel.StrokeStyle;\r
++import org.apache.poi.sl.usermodel.TextParagraph;\r
++import org.apache.poi.sl.usermodel.TextRun;\r
+ \r
+ public class DrawFreeformShape<T extends FreeformShape<? extends TextParagraph<? extends TextRun>>> extends DrawAutoShape<T> {\r
+ public DrawFreeformShape(T shape) {\r
+ super(shape);\r
+ }\r
++ \r
++ protected Collection<Outline> computeOutlines(Graphics2D graphics) {\r
++ List<Outline> lst = new ArrayList<Outline>();\r
++ java.awt.Shape sh = shape.getPath();\r
++ FillStyle fs = shape.getFillStyle();\r
++ StrokeStyle ss = shape.getStrokeStyle();\r
++ Path path = new Path(fs != null, ss != null);\r
++ lst.add(new Outline(sh, path));\r
++ return lst;\r
++ }\r
+ }\r
--- /dev/null
- y2 = anchor.getY() + anchor.getHeight();\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw;\r
+ \r
+ import java.awt.*;\r
+ import java.awt.geom.*;\r
+ import java.io.*;\r
+ import java.nio.charset.Charset;\r
+ import java.util.*;\r
+ import java.util.List;\r
+ \r
+ import javax.xml.bind.*;\r
+ import javax.xml.stream.*;\r
+ import javax.xml.stream.EventFilter;\r
+ import javax.xml.stream.events.StartElement;\r
+ import javax.xml.stream.events.XMLEvent;\r
+ \r
+ import org.apache.poi.sl.draw.binding.CTCustomGeometry2D;\r
+ import org.apache.poi.sl.draw.geom.*;\r
+ import org.apache.poi.sl.usermodel.*;\r
+ import org.apache.poi.sl.usermodel.LineDecoration.DecorationSize;\r
+ import org.apache.poi.sl.usermodel.PaintStyle.SolidPaint;\r
+ import org.apache.poi.sl.usermodel.StrokeStyle.*;\r
+ import org.apache.poi.util.Units;\r
+ \r
+ \r
+ public class DrawSimpleShape<T extends SimpleShape> extends DrawShape<T> {\r
+ \r
+ public DrawSimpleShape(T shape) {\r
+ super(shape);\r
+ }\r
+ \r
+ @Override\r
+ public void draw(Graphics2D graphics) {\r
+ // RenderableShape rShape = new RenderableShape(this);\r
+ // rShape.render(graphics);\r
+ \r
+ DrawPaint drawPaint = DrawFactory.getInstance(graphics).getPaint(shape);\r
+ Paint fill = drawPaint.getPaint(graphics, shape.getFillStyle().getPaint());\r
+ Paint line = drawPaint.getPaint(graphics, shape.getStrokeStyle().getPaint());\r
+ BasicStroke stroke = getStroke(); // the stroke applies both to the shadow and the shape\r
+ graphics.setStroke(stroke);\r
+ \r
+ Collection<Outline> elems = computeOutlines(graphics);\r
+ \r
+ // first paint the shadow\r
+ drawShadow(graphics, elems, fill, line);\r
+ \r
+ // then fill the shape interior\r
+ if (fill != null) {\r
+ graphics.setPaint(fill);\r
+ for (Outline o : elems) {\r
+ if (o.getPath().isFilled()){\r
+ java.awt.Shape s = o.getOutline();\r
+ graphics.setRenderingHint(Drawable.GRADIENT_SHAPE, s);\r
+ graphics.fill(s);\r
+ } \r
+ }\r
+ }\r
+ \r
+ // then draw any content within this shape (text, image, etc.)\r
+ drawContent(graphics);\r
+ \r
+ // then stroke the shape outline\r
+ if(line != null) {\r
+ graphics.setPaint(line);\r
+ for(Outline o : elems){\r
+ if(o.getPath().isStroked()){\r
+ java.awt.Shape s = o.getOutline();\r
+ graphics.setRenderingHint(Drawable.GRADIENT_SHAPE, s);\r
+ graphics.draw(s);\r
+ }\r
+ }\r
+ }\r
+ \r
+ // draw line decorations\r
+ drawDecoration(graphics, line, stroke);\r
+ }\r
+ \r
+ protected void drawDecoration(Graphics2D graphics, Paint line, BasicStroke stroke) {\r
+ if(line == null) return;\r
+ graphics.setPaint(line);\r
+ \r
+ List<Outline> lst = new ArrayList<Outline>();\r
+ LineDecoration deco = shape.getLineDecoration();\r
+ Outline head = getHeadDecoration(graphics, deco, stroke);\r
+ if (head != null) lst.add(head);\r
+ Outline tail = getTailDecoration(graphics, deco, stroke);\r
+ if (tail != null) lst.add(tail);\r
+ \r
+ \r
+ for(Outline o : lst){\r
+ java.awt.Shape s = o.getOutline();\r
+ Path p = o.getPath();\r
+ graphics.setRenderingHint(Drawable.GRADIENT_SHAPE, s);\r
+ \r
+ if(p.isFilled()) graphics.fill(s);\r
+ if(p.isStroked()) graphics.draw(s);\r
+ }\r
+ }\r
+ \r
+ protected Outline getTailDecoration(Graphics2D graphics, LineDecoration deco, BasicStroke stroke) {\r
+ DecorationSize tailLength = deco.getTailLength();\r
+ DecorationSize tailWidth = deco.getTailWidth();\r
+ \r
+ double lineWidth = Math.max(2.5, stroke.getLineWidth());\r
+ \r
+ Rectangle2D anchor = getAnchor(graphics, shape);\r
+ double x2 = anchor.getX() + anchor.getWidth(),\r
- double scaleY = Math.pow(2, tailWidth.ordinal());\r
- double scaleX = Math.pow(2, tailLength.ordinal());\r
++ y2 = anchor.getY() + anchor.getHeight();\r
+ \r
+ double alpha = Math.atan(anchor.getHeight() / anchor.getWidth());\r
+ \r
+ AffineTransform at = new AffineTransform();\r
+ java.awt.Shape shape = null;\r
+ Path p = null;\r
+ Rectangle2D bounds;\r
- p = new Path();\r
++ final double scaleY = Math.pow(2, tailWidth.ordinal()+1);\r
++ final double scaleX = Math.pow(2, tailLength.ordinal()+1);\r
+ switch (deco.getTailShape()) {\r
+ case OVAL:\r
+ p = new Path();\r
+ shape = new Ellipse2D.Double(0, 0, lineWidth * scaleX, lineWidth * scaleY);\r
+ bounds = shape.getBounds2D();\r
+ at.translate(x2 - bounds.getWidth() / 2, y2 - bounds.getHeight() / 2);\r
+ at.rotate(alpha, bounds.getX() + bounds.getWidth() / 2, bounds.getY() + bounds.getHeight() / 2);\r
+ break;\r
++ case STEALTH:\r
+ case ARROW:\r
- arrow.moveTo((float) (-lineWidth * 3), (float) (-lineWidth * 2));\r
++ p = new Path(false, true);\r
+ GeneralPath arrow = new GeneralPath();\r
- arrow.lineTo((float) (-lineWidth * 3), (float) (lineWidth * 2));\r
++ arrow.moveTo((float) (-lineWidth * scaleX), (float) (-lineWidth * scaleY / 2));\r
+ arrow.lineTo(0, 0);\r
- scaleY = tailWidth.ordinal() + 1;\r
- scaleX = tailLength.ordinal() + 1;\r
++ arrow.lineTo((float) (-lineWidth * scaleX), (float) (lineWidth * scaleY / 2));\r
+ shape = arrow;\r
+ at.translate(x2, y2);\r
+ at.rotate(alpha);\r
+ break;\r
+ case TRIANGLE:\r
+ p = new Path();\r
- Outline getHeadDecoration(Graphics2D graphics, LineDecoration deco, BasicStroke stroke) {\r
+ GeneralPath triangle = new GeneralPath();\r
+ triangle.moveTo((float) (-lineWidth * scaleX), (float) (-lineWidth * scaleY / 2));\r
+ triangle.lineTo(0, 0);\r
+ triangle.lineTo((float) (-lineWidth * scaleX), (float) (lineWidth * scaleY / 2));\r
+ triangle.closePath();\r
+ shape = triangle;\r
+ at.translate(x2, y2);\r
+ at.rotate(alpha);\r
+ break;\r
+ default:\r
+ break;\r
+ }\r
+ \r
+ if (shape != null) {\r
+ shape = at.createTransformedShape(shape);\r
+ }\r
+ return shape == null ? null : new Outline(shape, p);\r
+ }\r
+ \r
- double scaleY = 1;\r
- double scaleX = 1;\r
++ protected Outline getHeadDecoration(Graphics2D graphics, LineDecoration deco, BasicStroke stroke) {\r
+ DecorationSize headLength = deco.getHeadLength();\r
+ DecorationSize headWidth = deco.getHeadWidth();\r
+ \r
+ double lineWidth = Math.max(2.5, stroke.getLineWidth());\r
+ \r
+ Rectangle2D anchor = getAnchor(graphics, shape);\r
+ double x1 = anchor.getX(),\r
+ y1 = anchor.getY();\r
+ \r
+ double alpha = Math.atan(anchor.getHeight() / anchor.getWidth());\r
+ \r
+ AffineTransform at = new AffineTransform();\r
+ java.awt.Shape shape = null;\r
+ Path p = null;\r
+ Rectangle2D bounds;\r
- arrow.moveTo((float) (lineWidth * 3 * scaleX), (float) (-lineWidth * scaleY * 2));\r
++ final double scaleY = Math.pow(2, headWidth.ordinal()+1);\r
++ final double scaleX = Math.pow(2, headLength.ordinal()+1);\r
+ switch (deco.getHeadShape()) {\r
+ case OVAL:\r
+ p = new Path();\r
+ shape = new Ellipse2D.Double(0, 0, lineWidth * scaleX, lineWidth * scaleY);\r
+ bounds = shape.getBounds2D();\r
+ at.translate(x1 - bounds.getWidth() / 2, y1 - bounds.getHeight() / 2);\r
+ at.rotate(alpha, bounds.getX() + bounds.getWidth() / 2, bounds.getY() + bounds.getHeight() / 2);\r
+ break;\r
+ case STEALTH:\r
+ case ARROW:\r
+ p = new Path(false, true);\r
+ GeneralPath arrow = new GeneralPath();\r
- arrow.lineTo((float) (lineWidth * 3 * scaleX), (float) (lineWidth * scaleY * 2));\r
++ arrow.moveTo((float) (lineWidth * scaleX), (float) (-lineWidth * scaleY / 2));\r
+ arrow.lineTo(0, 0);\r
- scaleY = headWidth.ordinal() + 1;\r
- scaleX = headLength.ordinal() + 1;\r
++ arrow.lineTo((float) (lineWidth * scaleX), (float) (lineWidth * scaleY / 2));\r
+ shape = arrow;\r
+ at.translate(x1, y1);\r
+ at.rotate(alpha);\r
+ break;\r
+ case TRIANGLE:\r
+ p = new Path();\r
+ GeneralPath triangle = new GeneralPath();\r
+ triangle.moveTo((float) (lineWidth * scaleX), (float) (-lineWidth * scaleY / 2));\r
+ triangle.lineTo(0, 0);\r
+ triangle.lineTo((float) (lineWidth * scaleX), (float) (lineWidth * scaleY / 2));\r
+ triangle.closePath();\r
+ shape = triangle;\r
+ at.translate(x1, y1);\r
+ at.rotate(alpha);\r
+ break;\r
+ default:\r
+ break;\r
+ }\r
+ \r
+ if (shape != null) {\r
+ shape = at.createTransformedShape(shape);\r
+ }\r
+ return shape == null ? null : new Outline(shape, p);\r
+ }\r
+ \r
+ public BasicStroke getStroke() {\r
+ StrokeStyle strokeStyle = shape.getStrokeStyle();\r
+ \r
+ float lineWidth = (float) strokeStyle.getLineWidth();\r
+ if (lineWidth == 0.0f) lineWidth = 0.25f; // Both PowerPoint and OOo draw zero-length lines as 0.25pt\r
+ \r
+ LineDash lineDash = strokeStyle.getLineDash();\r
+ if (lineDash == null) {\r
+ lineDash = LineDash.SOLID;\r
+ }\r
+ \r
+ int dashPatI[] = lineDash.pattern;\r
+ final float dash_phase = 0;\r
+ float[] dashPatF = null;\r
+ if (dashPatI != null) {\r
+ dashPatF = new float[dashPatI.length];\r
+ for (int i=0; i<dashPatI.length; i++) {\r
+ dashPatF[i] = dashPatI[i]*Math.max(1, lineWidth);\r
+ }\r
+ }\r
+ \r
+ LineCap lineCapE = strokeStyle.getLineCap();\r
+ if (lineCapE == null) lineCapE = LineCap.FLAT;\r
+ int lineCap;\r
+ switch (lineCapE) {\r
+ case ROUND:\r
+ lineCap = BasicStroke.CAP_ROUND;\r
+ break;\r
+ case SQUARE:\r
+ lineCap = BasicStroke.CAP_SQUARE;\r
+ break;\r
+ default:\r
+ case FLAT:\r
+ lineCap = BasicStroke.CAP_BUTT;\r
+ break;\r
+ }\r
+ \r
+ int lineJoin = BasicStroke.JOIN_ROUND;\r
+ \r
+ return new BasicStroke(lineWidth, lineCap, lineJoin, lineWidth, dashPatF, dash_phase);\r
+ }\r
+ \r
+ protected void drawShadow(\r
+ Graphics2D graphics\r
+ , Collection<Outline> outlines\r
+ , Paint fill\r
+ , Paint line\r
+ ) {\r
+ Shadow shadow = shape.getShadow();\r
+ if (shadow == null || (fill == null && line == null)) return;\r
+ \r
+ SolidPaint shadowPaint = shadow.getFillStyle();\r
+ Color shadowColor = DrawPaint.applyColorTransform(shadowPaint.getSolidColor());\r
+ \r
+ double shapeRotation = shape.getRotation();\r
+ if(shape.getFlipVertical()) {\r
+ shapeRotation += 180;\r
+ }\r
+ double angle = shadow.getAngle() - shapeRotation;\r
+ double dist = shadow.getDistance();\r
+ double dx = dist * Math.cos(Math.toRadians(angle));\r
+ double dy = dist * Math.sin(Math.toRadians(angle));\r
+ \r
+ graphics.translate(dx, dy);\r
+ \r
+ for(Outline o : outlines){\r
+ java.awt.Shape s = o.getOutline();\r
+ Path p = o.getPath();\r
+ graphics.setRenderingHint(Drawable.GRADIENT_SHAPE, s);\r
+ graphics.setPaint(shadowColor);\r
+ \r
+ if(fill != null && p.isFilled()){\r
+ graphics.fill(s);\r
+ } else if (line != null && p.isStroked()) {\r
+ graphics.draw(s);\r
+ }\r
+ }\r
+ \r
+ graphics.translate(-dx, -dy);\r
+ }\r
+ \r
+ protected static CustomGeometry getCustomGeometry(String name) {\r
+ return getCustomGeometry(name, null);\r
+ }\r
+ \r
+ protected static CustomGeometry getCustomGeometry(String name, Graphics2D graphics) {\r
+ @SuppressWarnings("unchecked")\r
+ Map<String, CustomGeometry> presets = (graphics == null)\r
+ ? null\r
+ : (Map<String, CustomGeometry>)graphics.getRenderingHint(Drawable.PRESET_GEOMETRY_CACHE);\r
+ \r
+ if (presets == null) {\r
+ presets = new HashMap<String,CustomGeometry>();\r
+ if (graphics != null) {\r
+ graphics.setRenderingHint(Drawable.PRESET_GEOMETRY_CACHE, presets);\r
+ }\r
+ \r
+ String packageName = "org.apache.poi.sl.draw.binding";\r
+ InputStream presetIS = Drawable.class.getResourceAsStream("presetShapeDefinitions.xml");\r
+ Reader xml = new InputStreamReader( presetIS, Charset.forName("UTF-8") );\r
+ \r
+ // StAX:\r
+ EventFilter startElementFilter = new EventFilter() {\r
+ @Override\r
+ public boolean accept(XMLEvent event) {\r
+ return event.isStartElement();\r
+ }\r
+ };\r
+ \r
+ try {\r
+ XMLInputFactory staxFactory = XMLInputFactory.newInstance();\r
+ XMLEventReader staxReader = staxFactory.createXMLEventReader(xml);\r
+ XMLEventReader staxFiltRd = staxFactory.createFilteredReader(staxReader, startElementFilter);\r
+ // Ignore StartElement:\r
+ staxFiltRd.nextEvent();\r
+ // JAXB:\r
+ JAXBContext jaxbContext = JAXBContext.newInstance(packageName);\r
+ Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();\r
+ \r
+ while (staxFiltRd.peek() != null) {\r
+ StartElement evRoot = (StartElement)staxFiltRd.peek();\r
+ String cusName = evRoot.getName().getLocalPart();\r
+ // XMLEvent ev = staxReader.nextEvent();\r
+ JAXBElement<org.apache.poi.sl.draw.binding.CTCustomGeometry2D> el = unmarshaller.unmarshal(staxReader, CTCustomGeometry2D.class);\r
+ CTCustomGeometry2D cusGeom = el.getValue();\r
+ \r
+ presets.put(cusName, new CustomGeometry(cusGeom));\r
+ }\r
+ } catch (Exception e) {\r
+ throw new RuntimeException("Unable to load preset geometries.", e);\r
+ }\r
+ }\r
+ \r
+ return presets.get(name);\r
+ }\r
+ \r
+ protected Collection<Outline> computeOutlines(Graphics2D graphics) {\r
+ \r
+ List<Outline> lst = new ArrayList<Outline>();\r
+ CustomGeometry geom = shape.getGeometry();\r
+ if(geom == null) {\r
+ return lst;\r
+ }\r
+ \r
+ Rectangle2D anchor = getAnchor(graphics, shape);\r
+ for (Path p : geom) {\r
+ \r
+ double w = p.getW() == -1 ? anchor.getWidth() * Units.EMU_PER_POINT : p.getW();\r
+ double h = p.getH() == -1 ? anchor.getHeight() * Units.EMU_PER_POINT : p.getH();\r
+ \r
+ // the guides in the shape definitions are all defined relative to each other,\r
+ // so we build the path starting from (0,0).\r
+ final Rectangle2D pathAnchor = new Rectangle2D.Double(0,0,w,h);\r
+ \r
+ Context ctx = new Context(geom, pathAnchor, shape);\r
+ \r
+ java.awt.Shape gp = p.getPath(ctx);\r
+ \r
+ // translate the result to the canvas coordinates in points\r
+ AffineTransform at = new AffineTransform();\r
+ at.translate(anchor.getX(), anchor.getY());\r
+ \r
+ double scaleX, scaleY;\r
+ if (p.getW() != -1) {\r
+ scaleX = anchor.getWidth() / p.getW();\r
+ } else {\r
+ scaleX = 1.0 / Units.EMU_PER_POINT;\r
+ }\r
+ if (p.getH() != -1) {\r
+ scaleY = anchor.getHeight() / p.getH();\r
+ } else {\r
+ scaleY = 1.0 / Units.EMU_PER_POINT;\r
+ }\r
+ \r
+ at.scale(scaleX, scaleY);\r
+ \r
+ java.awt.Shape canvasShape = at.createTransformedShape(gp);\r
+ \r
+ lst.add(new Outline(canvasShape, p));\r
+ }\r
+ \r
+ return lst;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- if(nextBreak == -1) nextBreak = it.getEndIndex();\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw;\r
+ \r
+ import java.awt.Color;\r
+ import java.awt.Graphics2D;\r
+ import java.awt.font.*;\r
+ import java.awt.geom.Rectangle2D;\r
+ import java.text.*;\r
+ import java.text.AttributedCharacterIterator.Attribute;\r
+ import java.util.*;\r
+ \r
+ import org.apache.poi.sl.usermodel.*;\r
+ import org.apache.poi.sl.usermodel.TextParagraph.BulletStyle;\r
+ import org.apache.poi.sl.usermodel.TextParagraph.TextAlign;\r
+ import org.apache.poi.sl.usermodel.TextRun.TextCap;\r
+ import org.apache.poi.util.Units;\r
+ \r
+ public class DrawTextParagraph<T extends TextRun> implements Drawable {\r
+ protected TextParagraph<T> paragraph;\r
+ double x, y;\r
+ protected List<DrawTextFragment> lines = new ArrayList<DrawTextFragment>();\r
+ protected String rawText;\r
+ protected DrawTextFragment bullet;\r
+ protected int autoNbrIdx = 0;\r
+ \r
+ /**\r
+ * the highest line in this paragraph. Used for line spacing.\r
+ */\r
+ protected double maxLineHeight;\r
+ \r
+ public DrawTextParagraph(TextParagraph<T> paragraph) {\r
+ this.paragraph = paragraph;\r
+ }\r
+ \r
+ public void setPosition(double x, double y) {\r
+ // TODO: replace it, by applyTransform????\r
+ this.x = x;\r
+ this.y = y;\r
+ }\r
+ \r
+ public double getY() {\r
+ return y;\r
+ }\r
+ \r
+ /**\r
+ * Sets the auto numbering index of the handled paragraph\r
+ * @param index the auto numbering index\r
+ */\r
+ public void setAutoNumberingIdx(int index) {\r
+ autoNbrIdx = index;\r
+ }\r
+ \r
+ public void draw(Graphics2D graphics){\r
+ if (lines.isEmpty()) return;\r
+ \r
+ Insets2D insets = paragraph.getParentShape().getInsets();\r
+ double leftInset = insets.left;\r
+ double rightInset = insets.right;\r
+ double penY = y;\r
+ \r
+ boolean firstLine = true;\r
+ int indentLevel = paragraph.getIndentLevel();\r
+ Double leftMargin = paragraph.getLeftMargin();\r
+ if (leftMargin == null) {\r
+ // if the marL attribute is omitted, then a value of 347663 is implied\r
+ leftMargin = Units.toPoints(347663*(indentLevel+1));\r
+ }\r
+ Double indent = paragraph.getIndent();\r
+ if (indent == null) {\r
+ indent = Units.toPoints(347663*indentLevel);\r
+ }\r
+ Double rightMargin = paragraph.getRightMargin();\r
+ if (rightMargin == null) {\r
+ rightMargin = 0d;\r
+ }\r
+ \r
+ //The vertical line spacing\r
+ Double spacing = paragraph.getLineSpacing();\r
+ if (spacing == null) spacing = 100d;\r
+ \r
+ for(DrawTextFragment line : lines){\r
+ double penX;\r
+ \r
+ if(firstLine) {\r
+ if (!isEmptyParagraph()) {\r
+ // TODO: find out character style for empty, but bulleted/numbered lines\r
+ bullet = getBullet(graphics, line.getAttributedString().getIterator());\r
+ }\r
+ \r
+ if (bullet != null){\r
+ bullet.setPosition(x + indent, penY);\r
+ bullet.draw(graphics);\r
+ // don't let text overlay the bullet and advance by the bullet width\r
+ double bulletWidth = bullet.getLayout().getAdvance() + 1;\r
+ penX = x + Math.max(leftMargin, indent+bulletWidth);\r
+ } else {\r
+ penX = x + indent;\r
+ }\r
+ } else {\r
+ penX = x + leftMargin;\r
+ }\r
+ \r
+ Rectangle2D anchor = DrawShape.getAnchor(graphics, paragraph.getParentShape());\r
+ \r
+ TextAlign ta = paragraph.getTextAlign();\r
+ if (ta == null) ta = TextAlign.LEFT;\r
+ switch (ta) {\r
+ case CENTER:\r
+ penX += (anchor.getWidth() - leftMargin - line.getWidth() - leftInset - rightInset) / 2;\r
+ break;\r
+ case RIGHT:\r
+ penX += (anchor.getWidth() - line.getWidth() - leftInset - rightInset);\r
+ break;\r
+ default:\r
+ break;\r
+ }\r
+ \r
+ line.setPosition(penX, penY);\r
+ line.draw(graphics);\r
+ \r
+ if(spacing > 0) {\r
+ // If linespacing >= 0, then linespacing is a percentage of normal line height.\r
+ penY += spacing*0.01* line.getHeight();\r
+ } else {\r
+ // negative value means absolute spacing in points\r
+ penY += -spacing;\r
+ }\r
+ \r
+ firstLine = false;\r
+ }\r
+ \r
+ y = penY - y;\r
+ }\r
+ \r
+ public float getFirstLineHeight() {\r
+ return (lines.isEmpty()) ? 0 : lines.get(0).getHeight();\r
+ }\r
+ \r
+ public float getLastLineHeight() {\r
+ return (lines.isEmpty()) ? 0 : lines.get(lines.size()-1).getHeight();\r
+ }\r
+ \r
+ public boolean isEmptyParagraph() {\r
+ return (lines.isEmpty() || rawText.trim().isEmpty());\r
+ }\r
+ \r
+ public void applyTransform(Graphics2D graphics) {\r
+ }\r
+ \r
+ public void drawContent(Graphics2D graphics) {\r
+ }\r
+ \r
+ /**\r
+ * break text into lines, each representing a line of text that fits in the wrapping width\r
+ *\r
+ * @param graphics\r
+ */\r
+ protected void breakText(Graphics2D graphics){\r
+ lines.clear();\r
+ \r
+ DrawFactory fact = DrawFactory.getInstance(graphics);\r
+ StringBuilder text = new StringBuilder();\r
+ AttributedString at = getAttributedString(graphics, text);\r
+ boolean emptyParagraph = ("".equals(text.toString().trim()));\r
+ \r
+ AttributedCharacterIterator it = at.getIterator();\r
+ LineBreakMeasurer measurer = new LineBreakMeasurer(it, graphics.getFontRenderContext());\r
+ for (;;) {\r
+ int startIndex = measurer.getPosition();\r
+ \r
+ double wrappingWidth = getWrappingWidth(lines.size() == 0, graphics) + 1; // add a pixel to compensate rounding errors\r
+ // shape width can be smaller that the sum of insets (this was proved by a test file)\r
+ if(wrappingWidth < 0) wrappingWidth = 1;\r
+ \r
+ int nextBreak = text.indexOf("\n", startIndex + 1);\r
++ if (nextBreak == -1) nextBreak = it.getEndIndex();\r
+ \r
+ TextLayout layout = measurer.nextLayout((float)wrappingWidth, nextBreak, true);\r
+ if (layout == null) {\r
+ // layout can be null if the entire word at the current position\r
+ // does not fit within the wrapping width. Try with requireNextWord=false.\r
+ layout = measurer.nextLayout((float)wrappingWidth, nextBreak, false);\r
+ }\r
+ \r
+ if(layout == null) {\r
+ // exit if can't break any more\r
+ break;\r
+ }\r
+ \r
+ int endIndex = measurer.getPosition();\r
+ // skip over new line breaks (we paint 'clear' text runs not starting or ending with \n)\r
+ if(endIndex < it.getEndIndex() && text.charAt(endIndex) == '\n'){\r
+ measurer.setPosition(endIndex + 1);\r
+ }\r
+ \r
+ TextAlign hAlign = paragraph.getTextAlign();\r
+ if(hAlign == TextAlign.JUSTIFY || hAlign == TextAlign.JUSTIFY_LOW) {\r
+ layout = layout.getJustifiedLayout((float)wrappingWidth);\r
+ }\r
+ \r
+ AttributedString str = (emptyParagraph)\r
+ ? null // we will not paint empty paragraphs\r
+ : new AttributedString(it, startIndex, endIndex);\r
+ DrawTextFragment line = fact.getTextFragment(layout, str);\r
+ lines.add(line);\r
+ \r
+ maxLineHeight = Math.max(maxLineHeight, line.getHeight());\r
+ \r
+ if(endIndex == it.getEndIndex()) break;\r
+ }\r
+ \r
+ rawText = text.toString();\r
+ }\r
+ \r
+ protected DrawTextFragment getBullet(Graphics2D graphics, AttributedCharacterIterator firstLineAttr) {\r
+ BulletStyle bulletStyle = paragraph.getBulletStyle();\r
+ if (bulletStyle == null) return null;\r
+ \r
+ String buCharacter;\r
+ AutoNumberingScheme ans = bulletStyle.getAutoNumberingScheme();\r
+ if (ans != null) {\r
+ buCharacter = ans.format(autoNbrIdx);\r
+ } else {\r
+ buCharacter = bulletStyle.getBulletCharacter();\r
+ }\r
+ if (buCharacter == null) return null;\r
+ \r
+ String buFont = bulletStyle.getBulletFont();\r
+ if (buFont == null) buFont = paragraph.getDefaultFontFamily();\r
+ assert(buFont != null);\r
+ \r
+ Color buColor = bulletStyle.getBulletFontColor();\r
+ if (buColor == null) buColor = (Color)firstLineAttr.getAttribute(TextAttribute.FOREGROUND);\r
+ \r
+ float fontSize = (Float)firstLineAttr.getAttribute(TextAttribute.SIZE);\r
+ Double buSz = bulletStyle.getBulletFontSize();\r
+ if (buSz == null) buSz = 100d; \r
+ if (buSz > 0) fontSize *= buSz* 0.01;\r
+ else fontSize = (float)-buSz;\r
+ \r
+ \r
+ AttributedString str = new AttributedString(buCharacter);\r
+ str.addAttribute(TextAttribute.FOREGROUND, buColor);\r
+ str.addAttribute(TextAttribute.FAMILY, buFont);\r
+ str.addAttribute(TextAttribute.SIZE, fontSize);\r
+ \r
+ TextLayout layout = new TextLayout(str.getIterator(), graphics.getFontRenderContext());\r
+ DrawFactory fact = DrawFactory.getInstance(graphics);\r
+ return fact.getTextFragment(layout, str);\r
+ }\r
+ \r
+ protected String getRenderableText(TextRun tr) {\r
+ StringBuilder buf = new StringBuilder();\r
+ TextCap cap = tr.getTextCap();\r
+ String tabs = null;\r
+ for (char c : tr.getRawText().toCharArray()) {\r
+ if(c == '\t') {\r
+ if (tabs == null) {\r
+ tabs = tab2space(tr);\r
+ }\r
+ buf.append(tabs);\r
+ continue;\r
+ }\r
+ \r
+ switch (cap) {\r
+ case ALL: c = Character.toUpperCase(c); break;\r
+ case SMALL: c = Character.toLowerCase(c); break;\r
+ case NONE: break;\r
+ }\r
+ \r
+ buf.append(c);\r
+ }\r
+ \r
+ return buf.toString();\r
+ }\r
+ \r
+ /**\r
+ * Replace a tab with the effective number of white spaces.\r
+ */\r
+ private String tab2space(TextRun tr) {\r
+ AttributedString string = new AttributedString(" ");\r
+ String typeFace = tr.getFontFamily();\r
+ if (typeFace == null) typeFace = "Lucida Sans";\r
+ string.addAttribute(TextAttribute.FAMILY, typeFace);\r
+ \r
+ Double fs = tr.getFontSize();\r
+ if (fs == null) fs = 12d;\r
+ string.addAttribute(TextAttribute.SIZE, fs.floatValue());\r
+ \r
+ TextLayout l = new TextLayout(string.getIterator(), new FontRenderContext(null, true, true));\r
+ double wspace = l.getAdvance();\r
+ \r
+ Double tabSz = paragraph.getDefaultTabSize();\r
+ if (tabSz == null) tabSz = wspace*4;\r
+ \r
+ int numSpaces = (int)Math.ceil(tabSz / wspace);\r
+ StringBuilder buf = new StringBuilder();\r
+ for(int i = 0; i < numSpaces; i++) {\r
+ buf.append(' ');\r
+ }\r
+ return buf.toString();\r
+ }\r
+ \r
+ \r
+ /**\r
+ * Returns wrapping width to break lines in this paragraph\r
+ *\r
+ * @param firstLine whether the first line is breaking\r
+ *\r
+ * @return wrapping width in points\r
+ */\r
+ protected double getWrappingWidth(boolean firstLine, Graphics2D graphics){\r
+ // internal margins for the text box\r
+ \r
+ Insets2D insets = paragraph.getParentShape().getInsets();\r
+ double leftInset = insets.left;\r
+ double rightInset = insets.right;\r
+ \r
+ Rectangle2D anchor = DrawShape.getAnchor(graphics, paragraph.getParentShape());\r
+ \r
+ int indentLevel = paragraph.getIndentLevel();\r
+ Double leftMargin = paragraph.getLeftMargin();\r
+ if (leftMargin == null) {\r
+ // if the marL attribute is omitted, then a value of 347663 is implied\r
+ leftMargin = Units.toPoints(347663*(indentLevel+1));\r
+ }\r
+ Double indent = paragraph.getIndent();\r
+ if (indent == null) {\r
+ indent = Units.toPoints(347663*indentLevel);\r
+ }\r
+ Double rightMargin = paragraph.getRightMargin();\r
+ if (rightMargin == null) {\r
+ rightMargin = 0d;\r
+ }\r
+ \r
+ double width;\r
+ TextShape<? extends TextParagraph<T>> ts = paragraph.getParentShape();\r
+ if (!ts.getWordWrap()) {\r
+ // if wordWrap == false then we return the advance to the right border of the sheet\r
+ width = ts.getSheet().getSlideShow().getPageSize().getWidth() - anchor.getX();\r
+ } else {\r
+ width = anchor.getWidth() - leftInset - rightInset - leftMargin - rightMargin;\r
+ if (firstLine) {\r
+ if (bullet != null){\r
+ if (indent > 0) width -= indent;\r
+ } else {\r
+ if (indent > 0) width -= indent; // first line indentation\r
+ else if (indent < 0) { // hanging indentation: the first line start at the left margin\r
+ width += leftMargin;\r
+ }\r
+ }\r
+ }\r
+ }\r
+ \r
+ return width;\r
+ }\r
+ \r
+ private static class AttributedStringData {\r
+ Attribute attribute;\r
+ Object value;\r
+ int beginIndex, endIndex;\r
+ AttributedStringData(Attribute attribute, Object value, int beginIndex, int endIndex) {\r
+ this.attribute = attribute;\r
+ this.value = value;\r
+ this.beginIndex = beginIndex;\r
+ this.endIndex = endIndex;\r
+ }\r
+ }\r
+ \r
+ protected AttributedString getAttributedString(Graphics2D graphics, StringBuilder text){\r
+ List<AttributedStringData> attList = new ArrayList<AttributedStringData>();\r
+ if (text == null) text = new StringBuilder();\r
+ \r
+ DrawFontManager fontHandler = (DrawFontManager)graphics.getRenderingHint(Drawable.FONT_HANDLER);\r
+ \r
+ for (TextRun run : paragraph){\r
+ String runText = getRenderableText(run);\r
+ // skip empty runs\r
+ if (runText.isEmpty()) continue;\r
+ \r
+ int beginIndex = text.length();\r
+ text.append(runText);\r
+ int endIndex = text.length();\r
+ \r
+ Color fgColor = run.getFontColor();\r
+ if (fgColor == null) fgColor = Color.BLACK;\r
+ attList.add(new AttributedStringData(TextAttribute.FOREGROUND, fgColor, beginIndex, endIndex));\r
+ \r
+ // user can pass an custom object to convert fonts\r
+ String fontFamily = run.getFontFamily();\r
+ @SuppressWarnings("unchecked")\r
+ Map<String,String> fontMap = (Map<String,String>)graphics.getRenderingHint(Drawable.FONT_MAP);\r
+ if (fontMap != null && fontMap.containsKey(fontFamily)) {\r
+ fontFamily = fontMap.get(fontFamily);\r
+ }\r
+ if(fontHandler != null) {\r
+ fontFamily = fontHandler.getRendererableFont(fontFamily, run.getPitchAndFamily());\r
+ }\r
+ if (fontFamily == null) {\r
+ fontFamily = paragraph.getDefaultFontFamily();\r
+ }\r
+ attList.add(new AttributedStringData(TextAttribute.FAMILY, fontFamily, beginIndex, endIndex));\r
+ \r
+ Double fontSz = run.getFontSize();\r
+ if (fontSz == null) fontSz = paragraph.getDefaultFontSize();\r
+ attList.add(new AttributedStringData(TextAttribute.SIZE, fontSz.floatValue(), beginIndex, endIndex));\r
+ \r
+ if(run.isBold()) {\r
+ attList.add(new AttributedStringData(TextAttribute.WEIGHT, TextAttribute.WEIGHT_BOLD, beginIndex, endIndex));\r
+ }\r
+ if(run.isItalic()) {\r
+ attList.add(new AttributedStringData(TextAttribute.POSTURE, TextAttribute.POSTURE_OBLIQUE, beginIndex, endIndex));\r
+ }\r
+ if(run.isUnderlined()) {\r
+ attList.add(new AttributedStringData(TextAttribute.UNDERLINE, TextAttribute.UNDERLINE_ON, beginIndex, endIndex));\r
+ attList.add(new AttributedStringData(TextAttribute.INPUT_METHOD_UNDERLINE, TextAttribute.UNDERLINE_LOW_TWO_PIXEL, beginIndex, endIndex));\r
+ }\r
+ if(run.isStrikethrough()) {\r
+ attList.add(new AttributedStringData(TextAttribute.STRIKETHROUGH, TextAttribute.STRIKETHROUGH_ON, beginIndex, endIndex));\r
+ }\r
+ if(run.isSubscript()) {\r
+ attList.add(new AttributedStringData(TextAttribute.SUPERSCRIPT, TextAttribute.SUPERSCRIPT_SUB, beginIndex, endIndex));\r
+ }\r
+ if(run.isSuperscript()) {\r
+ attList.add(new AttributedStringData(TextAttribute.SUPERSCRIPT, TextAttribute.SUPERSCRIPT_SUPER, beginIndex, endIndex));\r
+ }\r
+ }\r
+ \r
+ // ensure that the paragraph contains at least one character\r
+ // We need this trick to correctly measure text\r
+ if (text.length() == 0) {\r
+ Double fontSz = paragraph.getDefaultFontSize();\r
+ text.append(" ");\r
+ attList.add(new AttributedStringData(TextAttribute.SIZE, fontSz.floatValue(), 0, 1));\r
+ }\r
+ \r
+ AttributedString string = new AttributedString(text.toString());\r
+ for (AttributedStringData asd : attList) {\r
+ string.addAttribute(asd.attribute, asd.value, asd.beginIndex, asd.endIndex);\r
+ }\r
+ \r
+ return string;\r
+ }\r
+ \r
+ \r
+ }\r
--- /dev/null
- if (fontMap == null) fontMap = new HashMap<String,String>();\r
- fontMap.put("Calibri", "Lucida Sans");\r
- fontMap.put("Cambria", "Lucida Bright");\r
- graphics.setRenderingHint(Drawable.FONT_MAP, fontMap); \r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw;\r
+ \r
+ import java.awt.Graphics2D;\r
+ import java.awt.geom.AffineTransform;\r
+ import java.awt.geom.Rectangle2D;\r
+ import java.awt.image.BufferedImage;\r
+ import java.util.*;\r
+ \r
+ import org.apache.poi.sl.usermodel.*;\r
+ import org.apache.poi.sl.usermodel.TextParagraph.BulletStyle;\r
+ import org.apache.poi.util.JvmBugs;\r
+ \r
+ public class DrawTextShape<T extends TextShape<? extends TextParagraph<? extends TextRun>>> extends DrawSimpleShape<T> {\r
+ \r
+ public DrawTextShape(T shape) {\r
+ super(shape);\r
+ }\r
+ \r
+ @Override\r
+ public void drawContent(Graphics2D graphics) {\r
++ fixFonts(graphics);\r
++ \r
+ Rectangle2D anchor = DrawShape.getAnchor(graphics, shape);\r
+ Insets2D insets = shape.getInsets();\r
+ double x = anchor.getX() + insets.left;\r
+ double y = anchor.getY();\r
+ \r
+ // remember the initial transform\r
+ AffineTransform tx = graphics.getTransform();\r
+ \r
+ // Transform of text in flipped shapes is special.\r
+ // At this point the flip and rotation transform is already applied\r
+ // (see DrawShape#applyTransform ), but we need to restore it to avoid painting "upside down".\r
+ // See Bugzilla 54210.\r
+ \r
+ if(shape.getFlipVertical()){\r
+ graphics.translate(anchor.getX(), anchor.getY() + anchor.getHeight());\r
+ graphics.scale(1, -1);\r
+ graphics.translate(-anchor.getX(), -anchor.getY());\r
+ \r
+ // text in vertically flipped shapes is rotated by 180 degrees\r
+ double centerX = anchor.getX() + anchor.getWidth()/2;\r
+ double centerY = anchor.getY() + anchor.getHeight()/2;\r
+ graphics.translate(centerX, centerY);\r
+ graphics.rotate(Math.toRadians(180));\r
+ graphics.translate(-centerX, -centerY);\r
+ }\r
+ \r
+ // Horizontal flipping applies only to shape outline and not to the text in the shape.\r
+ // Applying flip second time restores the original not-flipped transform\r
+ if(shape.getFlipHorizontal()){\r
+ graphics.translate(anchor.getX() + anchor.getWidth(), anchor.getY());\r
+ graphics.scale(-1, 1);\r
+ graphics.translate(-anchor.getX() , -anchor.getY());\r
+ }\r
+ \r
+ \r
+ // first dry-run to calculate the total height of the text\r
+ double textHeight = shape.getTextHeight();\r
+ \r
+ switch (shape.getVerticalAlignment()){\r
+ case TOP:\r
+ y += insets.top;\r
+ break;\r
+ case BOTTOM:\r
+ y += anchor.getHeight() - textHeight - insets.bottom;\r
+ break;\r
+ default:\r
+ case MIDDLE:\r
+ double delta = anchor.getHeight() - textHeight - insets.top - insets.bottom;\r
+ y += insets.top + delta/2;\r
+ break;\r
+ }\r
+ \r
+ drawParagraphs(graphics, x, y);\r
+ \r
+ // restore the transform\r
+ graphics.setTransform(tx);\r
+ }\r
+ \r
+ /**\r
+ * paint the paragraphs starting from top left (x,y)\r
+ *\r
+ * @return the vertical advance, i.e. the cumulative space occupied by the text\r
+ */\r
+ public double drawParagraphs(Graphics2D graphics, double x, double y) {\r
+ DrawFactory fact = DrawFactory.getInstance(graphics);\r
+ Insets2D shapePadding = shape.getInsets();\r
+ \r
+ double y0 = y;\r
+ Iterator<? extends TextParagraph<? extends TextRun>> paragraphs = shape.iterator();\r
+ \r
+ boolean isFirstLine = true;\r
+ for (int autoNbrIdx=0; paragraphs.hasNext(); autoNbrIdx++){\r
+ TextParagraph<? extends TextRun> p = paragraphs.next();\r
+ DrawTextParagraph<? extends TextRun> dp = fact.getDrawable(p);\r
+ BulletStyle bs = p.getBulletStyle();\r
+ if (bs == null || bs.getAutoNumberingScheme() == null) {\r
+ autoNbrIdx = -1;\r
+ } else {\r
+ Integer startAt = bs.getAutoNumberingStartAt();\r
+ if (startAt == null) startAt = 1;\r
+ // TODO: handle reset auto number indexes\r
+ if (startAt > autoNbrIdx) autoNbrIdx = startAt;\r
+ }\r
+ dp.setAutoNumberingIdx(autoNbrIdx);\r
+ dp.breakText(graphics);\r
+ \r
+ if (!isFirstLine) {\r
+ // the amount of vertical white space before the paragraph\r
+ Double spaceBefore = p.getSpaceBefore();\r
+ if (spaceBefore == null) spaceBefore = 0d;\r
+ if(spaceBefore > 0) {\r
+ // positive value means percentage spacing of the height of the first line, e.g.\r
+ // the higher the first line, the bigger the space before the paragraph\r
+ y += spaceBefore*0.01*dp.getFirstLineHeight();\r
+ } else {\r
+ // negative value means the absolute spacing in points\r
+ y += -spaceBefore;\r
+ }\r
+ }\r
+ isFirstLine = false;\r
+ \r
+ dp.setPosition(x, y);\r
+ dp.draw(graphics);\r
+ y += dp.getY();\r
+ \r
+ if (paragraphs.hasNext()) {\r
+ Double spaceAfter = p.getSpaceAfter();\r
+ if (spaceAfter == null) spaceAfter = 0d;\r
+ if(spaceAfter > 0) {\r
+ // positive value means percentage spacing of the height of the last line, e.g.\r
+ // the higher the last line, the bigger the space after the paragraph\r
+ y += spaceAfter*0.01*dp.getLastLineHeight();\r
+ } else {\r
+ // negative value means the absolute spacing in points\r
+ y += -spaceAfter;\r
+ }\r
+ }\r
+ }\r
+ return y - y0;\r
+ }\r
+ \r
+ /**\r
+ * Compute the cumulative height occupied by the text\r
+ */\r
+ public double getTextHeight(){\r
+ // dry-run in a 1x1 image and return the vertical advance\r
+ BufferedImage img = new BufferedImage(1, 1, BufferedImage.TYPE_INT_RGB);\r
+ Graphics2D graphics = img.createGraphics();\r
+ fixFonts(graphics);\r
+ return drawParagraphs(graphics, 0, 0);\r
+ }\r
+ \r
+ @SuppressWarnings("unchecked")\r
+ private static void fixFonts(Graphics2D graphics) {\r
+ if (!JvmBugs.hasLineBreakMeasurerBug()) return;\r
+ Map<String,String> fontMap = (Map<String,String>)graphics.getRenderingHint(Drawable.FONT_MAP);\r
++ if (fontMap == null) {\r
++ fontMap = new HashMap<String,String>();\r
++ graphics.setRenderingHint(Drawable.FONT_MAP, fontMap);\r
++ }\r
++ \r
++ if (!fontMap.containsKey("Calibri")) fontMap.put("Calibri", "Lucida Sans");\r
++ if (!fontMap.containsKey("Cambria")) fontMap.put("Cambria", "Lucida Bright");\r
+ }\r
+ }\r
--- /dev/null
- @XmlAttribute(name = "x", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_AdjPoint2D complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_AdjPoint2D">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="x" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="y" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_AdjPoint2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTAdjPoint2D {\r
+ \r
- @XmlAttribute(name = "y", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected String x;\r
++ @XmlAttribute(required = true)\r
+ protected String y;\r
+ \r
+ /**\r
+ * Gets the value of the x property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getX() {\r
+ return x;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the x property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setX(String value) {\r
+ this.x = value;\r
+ }\r
+ \r
+ public boolean isSetX() {\r
+ return (this.x!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the y property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getY() {\r
+ return y;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the y property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setY(String value) {\r
+ this.y = value;\r
+ }\r
+ \r
+ public boolean isSetY() {\r
+ return (this.y!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "val", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Angle complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Angle">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Angle", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTAngle {\r
+ \r
++ @XmlAttribute(required = true)\r
+ protected int val;\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ */\r
+ public int getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ */\r
+ public void setVal(int value) {\r
+ this.val = value;\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlElement(name = "scrgbClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTScRgbColor.class),\r
- @XmlElement(name = "srgbClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTSRgbColor.class),\r
- @XmlElement(name = "hslClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTHslColor.class),\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import java.util.ArrayList;\r
+ import java.util.List;\r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlElements;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_ColorMRU complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_ColorMRU">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorChoice" maxOccurs="10" minOccurs="0"/>\r
+ * </sequence>\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_ColorMRU", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "egColorChoice"\r
+ })\r
+ public class CTColorMRU {\r
+ \r
+ @XmlElements({\r
- @XmlElement(name = "schemeClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTSchemeColor.class),\r
- @XmlElement(name = "prstClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPresetColor.class)\r
++ @XmlElement(name = "prstClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPresetColor.class),\r
+ @XmlElement(name = "sysClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTSystemColor.class),\r
- * {@link CTScRgbColor }\r
- * {@link CTSRgbColor }\r
- * {@link CTHslColor }\r
++ @XmlElement(name = "hslClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTHslColor.class),\r
++ @XmlElement(name = "srgbClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTSRgbColor.class),\r
++ @XmlElement(name = "scrgbClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTScRgbColor.class),\r
++ @XmlElement(name = "schemeClr", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTSchemeColor.class)\r
+ })\r
+ protected List<Object> egColorChoice;\r
+ \r
+ /**\r
+ * Gets the value of the egColorChoice property.\r
+ * \r
+ * <p>\r
+ * This accessor method returns a reference to the live list,\r
+ * not a snapshot. Therefore any modification you make to the\r
+ * returned list will be present inside the JAXB object.\r
+ * This is why there is not a <CODE>set</CODE> method for the egColorChoice property.\r
+ * \r
+ * <p>\r
+ * For example, to add a new item, do as follows:\r
+ * <pre>\r
+ * getEGColorChoice().add(newItem);\r
+ * </pre>\r
+ * \r
+ * \r
+ * <p>\r
+ * Objects of the following type(s) are allowed in the list\r
- * {@link CTPresetColor }\r
++ * {@link CTPresetColor }\r
+ * {@link CTSystemColor }\r
++ * {@link CTHslColor }\r
++ * {@link CTSRgbColor }\r
++ * {@link CTScRgbColor }\r
+ * {@link CTSchemeColor }\r
+ * \r
+ * \r
+ */\r
+ public List<Object> getEGColorChoice() {\r
+ if (egColorChoice == null) {\r
+ egColorChoice = new ArrayList<Object>();\r
+ }\r
+ return this.egColorChoice;\r
+ }\r
+ \r
+ public boolean isSetEGColorChoice() {\r
+ return ((this.egColorChoice!= null)&&(!this.egColorChoice.isEmpty()));\r
+ }\r
+ \r
+ public void unsetEGColorChoice() {\r
+ this.egColorChoice = null;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "id", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlSchemaType;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Connection complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Connection">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="id" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_DrawingElementId" />\r
+ * <attribute name="idx" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Connection", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTConnection {\r
+ \r
- @XmlAttribute(name = "idx", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected long id;\r
++ @XmlAttribute(required = true)\r
+ @XmlSchemaType(name = "unsignedInt")\r
+ protected long idx;\r
+ \r
+ /**\r
+ * Gets the value of the id property.\r
+ * \r
+ */\r
+ public long getId() {\r
+ return id;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the id property.\r
+ * \r
+ */\r
+ public void setId(long value) {\r
+ this.id = value;\r
+ }\r
+ \r
+ public boolean isSetId() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the idx property.\r
+ * \r
+ */\r
+ public long getIdx() {\r
+ return idx;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the idx property.\r
+ * \r
+ */\r
+ public void setIdx(long value) {\r
+ this.idx = value;\r
+ }\r
+ \r
+ public boolean isSetIdx() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "ang", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_ConnectionSite complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_ConnectionSite">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>\r
+ * </sequence>\r
+ * <attribute name="ang" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_ConnectionSite", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "pos"\r
+ })\r
+ public class CTConnectionSite {\r
+ \r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)\r
+ protected CTAdjPoint2D pos;\r
++ @XmlAttribute(required = true)\r
+ protected String ang;\r
+ \r
+ /**\r
+ * Gets the value of the pos property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTAdjPoint2D }\r
+ * \r
+ */\r
+ public CTAdjPoint2D getPos() {\r
+ return pos;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the pos property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTAdjPoint2D }\r
+ * \r
+ */\r
+ public void setPos(CTAdjPoint2D value) {\r
+ this.pos = value;\r
+ }\r
+ \r
+ public boolean isSetPos() {\r
+ return (this.pos!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the ang property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getAng() {\r
+ return ang;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the ang property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setAng(String value) {\r
+ this.ang = value;\r
+ }\r
+ \r
+ public boolean isSetAng() {\r
+ return (this.ang!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "embed", namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_EmbeddedWAVAudioFile complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_EmbeddedWAVAudioFile">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute ref="{http://schemas.openxmlformats.org/officeDocument/2006/relationships}embed use="required""/>\r
+ * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" default="" />\r
+ * <attribute name="builtIn" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_EmbeddedWAVAudioFile", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTEmbeddedWAVAudioFile {\r
+ \r
- @XmlAttribute(name = "name")\r
++ @XmlAttribute(namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships", required = true)\r
+ protected String embed;\r
- @XmlAttribute(name = "builtIn")\r
++ @XmlAttribute\r
+ protected String name;\r
++ @XmlAttribute\r
+ protected Boolean builtIn;\r
+ \r
+ /**\r
+ * Embedded Audio File Relationship ID\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getEmbed() {\r
+ return embed;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the embed property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setEmbed(String value) {\r
+ this.embed = value;\r
+ }\r
+ \r
+ public boolean isSetEmbed() {\r
+ return (this.embed!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the name property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getName() {\r
+ if (name == null) {\r
+ return "";\r
+ } else {\r
+ return name;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the name property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setName(String value) {\r
+ this.name = value;\r
+ }\r
+ \r
+ public boolean isSetName() {\r
+ return (this.name!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the builtIn property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isBuiltIn() {\r
+ if (builtIn == null) {\r
+ return false;\r
+ } else {\r
+ return builtIn;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the builtIn property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setBuiltIn(boolean value) {\r
+ this.builtIn = value;\r
+ }\r
+ \r
+ public boolean isSetBuiltIn() {\r
+ return (this.builtIn!= null);\r
+ }\r
+ \r
+ public void unsetBuiltIn() {\r
+ this.builtIn = null;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "val", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_FixedPercentage complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_FixedPercentage">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_FixedPercentage" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_FixedPercentage", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTFixedPercentage {\r
+ \r
++ @XmlAttribute(required = true)\r
+ protected int val;\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ */\r
+ public int getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ */\r
+ public void setVal(int value) {\r
+ this.val = value;\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "name", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;\r
+ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_GeomGuide complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_GeomGuide">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="name" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />\r
+ * <attribute name="fmla" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideFormula" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_GeomGuide", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTGeomGuide {\r
+ \r
- @XmlAttribute(name = "fmla", required = true)\r
++ @XmlAttribute(required = true)\r
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)\r
+ protected String name;\r
++ @XmlAttribute(required = true)\r
+ protected String fmla;\r
+ \r
+ /**\r
+ * Gets the value of the name property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getName() {\r
+ return name;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the name property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setName(String value) {\r
+ this.name = value;\r
+ }\r
+ \r
+ public boolean isSetName() {\r
+ return (this.name!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the fmla property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getFmla() {\r
+ return fmla;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the fmla property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setFmla(String value) {\r
+ this.fmla = value;\r
+ }\r
+ \r
+ public boolean isSetFmla() {\r
+ return (this.fmla!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "l", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_GeomRect complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_GeomRect">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="l" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="t" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="r" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="b" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_GeomRect", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTGeomRect {\r
+ \r
- @XmlAttribute(name = "t", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected String l;\r
- @XmlAttribute(name = "r", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected String t;\r
- @XmlAttribute(name = "b", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected String r;\r
++ @XmlAttribute(required = true)\r
+ protected String b;\r
+ \r
+ /**\r
+ * Gets the value of the l property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getL() {\r
+ return l;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the l property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setL(String value) {\r
+ this.l = value;\r
+ }\r
+ \r
+ public boolean isSetL() {\r
+ return (this.l!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the t property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getT() {\r
+ return t;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the t property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setT(String value) {\r
+ this.t = value;\r
+ }\r
+ \r
+ public boolean isSetT() {\r
+ return (this.t!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the r property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getR() {\r
+ return r;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the r property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setR(String value) {\r
+ this.r = value;\r
+ }\r
+ \r
+ public boolean isSetR() {\r
+ return (this.r!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the b property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getB() {\r
+ return b;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the b property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setB(String value) {\r
+ this.b = value;\r
+ }\r
+ \r
+ public boolean isSetB() {\r
+ return (this.b!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "rot")\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_GroupTransform2D complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_GroupTransform2D">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <element name="off" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>\r
+ * <element name="ext" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>\r
+ * <element name="chOff" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>\r
+ * <element name="chExt" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="rot" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" default="0" />\r
+ * <attribute name="flipH" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />\r
+ * <attribute name="flipV" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_GroupTransform2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "off",\r
+ "ext",\r
+ "chOff",\r
+ "chExt"\r
+ })\r
+ public class CTGroupTransform2D {\r
+ \r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTPoint2D off;\r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTPositiveSize2D ext;\r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTPoint2D chOff;\r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTPositiveSize2D chExt;\r
- @XmlAttribute(name = "flipH")\r
++ @XmlAttribute\r
+ protected Integer rot;\r
- @XmlAttribute(name = "flipV")\r
++ @XmlAttribute\r
+ protected Boolean flipH;\r
++ @XmlAttribute\r
+ protected Boolean flipV;\r
+ \r
+ /**\r
+ * Gets the value of the off property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTPoint2D }\r
+ * \r
+ */\r
+ public CTPoint2D getOff() {\r
+ return off;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the off property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTPoint2D }\r
+ * \r
+ */\r
+ public void setOff(CTPoint2D value) {\r
+ this.off = value;\r
+ }\r
+ \r
+ public boolean isSetOff() {\r
+ return (this.off!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the ext property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTPositiveSize2D }\r
+ * \r
+ */\r
+ public CTPositiveSize2D getExt() {\r
+ return ext;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the ext property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTPositiveSize2D }\r
+ * \r
+ */\r
+ public void setExt(CTPositiveSize2D value) {\r
+ this.ext = value;\r
+ }\r
+ \r
+ public boolean isSetExt() {\r
+ return (this.ext!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the chOff property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTPoint2D }\r
+ * \r
+ */\r
+ public CTPoint2D getChOff() {\r
+ return chOff;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the chOff property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTPoint2D }\r
+ * \r
+ */\r
+ public void setChOff(CTPoint2D value) {\r
+ this.chOff = value;\r
+ }\r
+ \r
+ public boolean isSetChOff() {\r
+ return (this.chOff!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the chExt property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTPositiveSize2D }\r
+ * \r
+ */\r
+ public CTPositiveSize2D getChExt() {\r
+ return chExt;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the chExt property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTPositiveSize2D }\r
+ * \r
+ */\r
+ public void setChExt(CTPositiveSize2D value) {\r
+ this.chExt = value;\r
+ }\r
+ \r
+ public boolean isSetChExt() {\r
+ return (this.chExt!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the rot property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public int getRot() {\r
+ if (rot == null) {\r
+ return 0;\r
+ } else {\r
+ return rot;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the rot property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public void setRot(int value) {\r
+ this.rot = value;\r
+ }\r
+ \r
+ public boolean isSetRot() {\r
+ return (this.rot!= null);\r
+ }\r
+ \r
+ public void unsetRot() {\r
+ this.rot = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the flipH property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isFlipH() {\r
+ if (flipH == null) {\r
+ return false;\r
+ } else {\r
+ return flipH;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the flipH property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setFlipH(boolean value) {\r
+ this.flipH = value;\r
+ }\r
+ \r
+ public boolean isSetFlipH() {\r
+ return (this.flipH!= null);\r
+ }\r
+ \r
+ public void unsetFlipH() {\r
+ this.flipH = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the flipV property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isFlipV() {\r
+ if (flipV == null) {\r
+ return false;\r
+ } else {\r
+ return flipV;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the flipV property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setFlipV(boolean value) {\r
+ this.flipV = value;\r
+ }\r
+ \r
+ public boolean isSetFlipV() {\r
+ return (this.flipV!= null);\r
+ }\r
+ \r
+ public void unsetFlipV() {\r
+ this.flipV = null;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import java.util.ArrayList;\r
+ import java.util.List;\r
+ import javax.xml.bind.JAXBElement;\r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElementRef;\r
+ import javax.xml.bind.annotation.XmlElementRefs;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_HslColor complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_HslColor">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="hue" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />\r
+ * <attribute name="sat" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />\r
+ * <attribute name="lum" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_HslColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "egColorTransform"\r
+ })\r
+ public class CTHslColor {\r
+ \r
+ @XmlElementRefs({\r
- @XmlAttribute(name = "hue", required = true)\r
++ @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)\r
+ })\r
+ protected List<JAXBElement<?>> egColorTransform;\r
- @XmlAttribute(name = "sat", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected int hue;\r
- @XmlAttribute(name = "lum", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected int sat;\r
- * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
++ @XmlAttribute(required = true)\r
+ protected int lum;\r
+ \r
+ /**\r
+ * Gets the value of the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * This accessor method returns a reference to the live list,\r
+ * not a snapshot. Therefore any modification you make to the\r
+ * returned list will be present inside the JAXB object.\r
+ * This is why there is not a <CODE>set</CODE> method for the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * For example, to add a new item, do as follows:\r
+ * <pre>\r
+ * getEGColorTransform().add(newItem);\r
+ * </pre>\r
+ * \r
+ * \r
+ * <p>\r
+ * Objects of the following type(s) are allowed in the list\r
- * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * \r
+ * \r
+ */\r
+ public List<JAXBElement<?>> getEGColorTransform() {\r
+ if (egColorTransform == null) {\r
+ egColorTransform = new ArrayList<JAXBElement<?>>();\r
+ }\r
+ return this.egColorTransform;\r
+ }\r
+ \r
+ public boolean isSetEGColorTransform() {\r
+ return ((this.egColorTransform!= null)&&(!this.egColorTransform.isEmpty()));\r
+ }\r
+ \r
+ public void unsetEGColorTransform() {\r
+ this.egColorTransform = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the hue property.\r
+ * \r
+ */\r
+ public int getHue() {\r
+ return hue;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the hue property.\r
+ * \r
+ */\r
+ public void setHue(int value) {\r
+ this.hue = value;\r
+ }\r
+ \r
+ public boolean isSetHue() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the sat property.\r
+ * \r
+ */\r
+ public int getSat() {\r
+ return sat;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the sat property.\r
+ * \r
+ */\r
+ public void setSat(int value) {\r
+ this.sat = value;\r
+ }\r
+ \r
+ public boolean isSetSat() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the lum property.\r
+ * \r
+ */\r
+ public int getLum() {\r
+ return lum;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the lum property.\r
+ * \r
+ */\r
+ public void setLum(int value) {\r
+ this.lum = value;\r
+ }\r
+ \r
+ public boolean isSetLum() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "id", namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships")\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Hyperlink complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Hyperlink">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <element name="snd" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_EmbeddedWAVAudioFile" minOccurs="0"/>\r
+ * <element name="extLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_OfficeArtExtensionList" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute ref="{http://schemas.openxmlformats.org/officeDocument/2006/relationships}id"/>\r
+ * <attribute name="invalidUrl" type="{http://www.w3.org/2001/XMLSchema}string" default="" />\r
+ * <attribute name="action" type="{http://www.w3.org/2001/XMLSchema}string" default="" />\r
+ * <attribute name="tgtFrame" type="{http://www.w3.org/2001/XMLSchema}string" default="" />\r
+ * <attribute name="tooltip" type="{http://www.w3.org/2001/XMLSchema}string" default="" />\r
+ * <attribute name="history" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />\r
+ * <attribute name="highlightClick" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />\r
+ * <attribute name="endSnd" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Hyperlink", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "snd",\r
+ "extLst"\r
+ })\r
+ public class CTHyperlink {\r
+ \r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTEmbeddedWAVAudioFile snd;\r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTOfficeArtExtensionList extLst;\r
- @XmlAttribute(name = "invalidUrl")\r
++ @XmlAttribute(namespace = "http://schemas.openxmlformats.org/officeDocument/2006/relationships")\r
+ protected String id;\r
- @XmlAttribute(name = "action")\r
++ @XmlAttribute\r
+ protected String invalidUrl;\r
- @XmlAttribute(name = "tgtFrame")\r
++ @XmlAttribute\r
+ protected String action;\r
- @XmlAttribute(name = "tooltip")\r
++ @XmlAttribute\r
+ protected String tgtFrame;\r
- @XmlAttribute(name = "history")\r
++ @XmlAttribute\r
+ protected String tooltip;\r
- @XmlAttribute(name = "highlightClick")\r
++ @XmlAttribute\r
+ protected Boolean history;\r
- @XmlAttribute(name = "endSnd")\r
++ @XmlAttribute\r
+ protected Boolean highlightClick;\r
++ @XmlAttribute\r
+ protected Boolean endSnd;\r
+ \r
+ /**\r
+ * Gets the value of the snd property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTEmbeddedWAVAudioFile }\r
+ * \r
+ */\r
+ public CTEmbeddedWAVAudioFile getSnd() {\r
+ return snd;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the snd property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTEmbeddedWAVAudioFile }\r
+ * \r
+ */\r
+ public void setSnd(CTEmbeddedWAVAudioFile value) {\r
+ this.snd = value;\r
+ }\r
+ \r
+ public boolean isSetSnd() {\r
+ return (this.snd!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the extLst property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTOfficeArtExtensionList }\r
+ * \r
+ */\r
+ public CTOfficeArtExtensionList getExtLst() {\r
+ return extLst;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the extLst property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTOfficeArtExtensionList }\r
+ * \r
+ */\r
+ public void setExtLst(CTOfficeArtExtensionList value) {\r
+ this.extLst = value;\r
+ }\r
+ \r
+ public boolean isSetExtLst() {\r
+ return (this.extLst!= null);\r
+ }\r
+ \r
+ /**\r
+ * Drawing Object Hyperlink Target\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getId() {\r
+ return id;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the id property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setId(String value) {\r
+ this.id = value;\r
+ }\r
+ \r
+ public boolean isSetId() {\r
+ return (this.id!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the invalidUrl property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getInvalidUrl() {\r
+ if (invalidUrl == null) {\r
+ return "";\r
+ } else {\r
+ return invalidUrl;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the invalidUrl property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setInvalidUrl(String value) {\r
+ this.invalidUrl = value;\r
+ }\r
+ \r
+ public boolean isSetInvalidUrl() {\r
+ return (this.invalidUrl!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the action property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getAction() {\r
+ if (action == null) {\r
+ return "";\r
+ } else {\r
+ return action;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the action property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setAction(String value) {\r
+ this.action = value;\r
+ }\r
+ \r
+ public boolean isSetAction() {\r
+ return (this.action!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the tgtFrame property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getTgtFrame() {\r
+ if (tgtFrame == null) {\r
+ return "";\r
+ } else {\r
+ return tgtFrame;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the tgtFrame property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setTgtFrame(String value) {\r
+ this.tgtFrame = value;\r
+ }\r
+ \r
+ public boolean isSetTgtFrame() {\r
+ return (this.tgtFrame!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the tooltip property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getTooltip() {\r
+ if (tooltip == null) {\r
+ return "";\r
+ } else {\r
+ return tooltip;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the tooltip property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setTooltip(String value) {\r
+ this.tooltip = value;\r
+ }\r
+ \r
+ public boolean isSetTooltip() {\r
+ return (this.tooltip!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the history property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isHistory() {\r
+ if (history == null) {\r
+ return true;\r
+ } else {\r
+ return history;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the history property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setHistory(boolean value) {\r
+ this.history = value;\r
+ }\r
+ \r
+ public boolean isSetHistory() {\r
+ return (this.history!= null);\r
+ }\r
+ \r
+ public void unsetHistory() {\r
+ this.history = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the highlightClick property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isHighlightClick() {\r
+ if (highlightClick == null) {\r
+ return false;\r
+ } else {\r
+ return highlightClick;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the highlightClick property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setHighlightClick(boolean value) {\r
+ this.highlightClick = value;\r
+ }\r
+ \r
+ public boolean isSetHighlightClick() {\r
+ return (this.highlightClick!= null);\r
+ }\r
+ \r
+ public void unsetHighlightClick() {\r
+ this.highlightClick = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the endSnd property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isEndSnd() {\r
+ if (endSnd == null) {\r
+ return false;\r
+ } else {\r
+ return endSnd;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the endSnd property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setEndSnd(boolean value) {\r
+ this.endSnd = value;\r
+ }\r
+ \r
+ public boolean isSetEndSnd() {\r
+ return (this.endSnd!= null);\r
+ }\r
+ \r
+ public void unsetEndSnd() {\r
+ this.endSnd = null;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "uri")\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAnyElement;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlSchemaType;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;\r
+ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;\r
+ import org.w3c.dom.Element;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_OfficeArtExtension complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_OfficeArtExtension">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <any processContents='lax'/>\r
+ * </sequence>\r
+ * <attribute name="uri" type="{http://www.w3.org/2001/XMLSchema}token" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_OfficeArtExtension", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "any"\r
+ })\r
+ public class CTOfficeArtExtension {\r
+ \r
+ @XmlAnyElement(lax = true)\r
+ protected Object any;\r
++ @XmlAttribute\r
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)\r
+ @XmlSchemaType(name = "token")\r
+ protected String uri;\r
+ \r
+ /**\r
+ * Gets the value of the any property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Object }\r
+ * {@link Element }\r
+ * \r
+ */\r
+ public Object getAny() {\r
+ return any;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the any property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Object }\r
+ * {@link Element }\r
+ * \r
+ */\r
+ public void setAny(Object value) {\r
+ this.any = value;\r
+ }\r
+ \r
+ public boolean isSetAny() {\r
+ return (this.any!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the uri property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getUri() {\r
+ return uri;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the uri property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setUri(String value) {\r
+ this.uri = value;\r
+ }\r
+ \r
+ public boolean isSetUri() {\r
+ return (this.uri!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlElement(name = "close", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DClose.class),\r
- @XmlElement(name = "moveTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DMoveTo.class),\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import java.util.ArrayList;\r
+ import java.util.List;\r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlElements;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Path2D complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Path2D">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <choice maxOccurs="unbounded" minOccurs="0">\r
+ * <element name="close" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DClose"/>\r
+ * <element name="moveTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DMoveTo"/>\r
+ * <element name="lnTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DLineTo"/>\r
+ * <element name="arcTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DArcTo"/>\r
+ * <element name="quadBezTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DQuadBezierTo"/>\r
+ * <element name="cubicBezTo" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Path2DCubicBezierTo"/>\r
+ * </choice>\r
+ * <attribute name="w" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" default="0" />\r
+ * <attribute name="h" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" default="0" />\r
+ * <attribute name="fill" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PathFillMode" default="norm" />\r
+ * <attribute name="stroke" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />\r
+ * <attribute name="extrusionOk" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Path2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "closeOrMoveToOrLnTo"\r
+ })\r
+ public class CTPath2D {\r
+ \r
+ @XmlElements({\r
- @XmlElement(name = "arcTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DArcTo.class),\r
+ @XmlElement(name = "lnTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DLineTo.class),\r
- @XmlElement(name = "cubicBezTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DCubicBezierTo.class)\r
++ @XmlElement(name = "close", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DClose.class),\r
++ @XmlElement(name = "cubicBezTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DCubicBezierTo.class),\r
+ @XmlElement(name = "quadBezTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DQuadBezierTo.class),\r
- @XmlAttribute(name = "w")\r
++ @XmlElement(name = "arcTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DArcTo.class),\r
++ @XmlElement(name = "moveTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = CTPath2DMoveTo.class)\r
+ })\r
+ protected List<Object> closeOrMoveToOrLnTo;\r
- @XmlAttribute(name = "h")\r
++ @XmlAttribute\r
+ protected Long w;\r
- @XmlAttribute(name = "fill")\r
++ @XmlAttribute\r
+ protected Long h;\r
- @XmlAttribute(name = "stroke")\r
++ @XmlAttribute\r
+ protected STPathFillMode fill;\r
- @XmlAttribute(name = "extrusionOk")\r
++ @XmlAttribute\r
+ protected Boolean stroke;\r
- * {@link CTPath2DClose }\r
- * {@link CTPath2DMoveTo }\r
++ @XmlAttribute\r
+ protected Boolean extrusionOk;\r
+ \r
+ /**\r
+ * Gets the value of the closeOrMoveToOrLnTo property.\r
+ * \r
+ * <p>\r
+ * This accessor method returns a reference to the live list,\r
+ * not a snapshot. Therefore any modification you make to the\r
+ * returned list will be present inside the JAXB object.\r
+ * This is why there is not a <CODE>set</CODE> method for the closeOrMoveToOrLnTo property.\r
+ * \r
+ * <p>\r
+ * For example, to add a new item, do as follows:\r
+ * <pre>\r
+ * getCloseOrMoveToOrLnTo().add(newItem);\r
+ * </pre>\r
+ * \r
+ * \r
+ * <p>\r
+ * Objects of the following type(s) are allowed in the list\r
- * {@link CTPath2DArcTo }\r
- * {@link CTPath2DQuadBezierTo }\r
+ * {@link CTPath2DLineTo }\r
++ * {@link CTPath2DClose }\r
+ * {@link CTPath2DCubicBezierTo }\r
++ * {@link CTPath2DQuadBezierTo }\r
++ * {@link CTPath2DArcTo }\r
++ * {@link CTPath2DMoveTo }\r
+ * \r
+ * \r
+ */\r
+ public List<Object> getCloseOrMoveToOrLnTo() {\r
+ if (closeOrMoveToOrLnTo == null) {\r
+ closeOrMoveToOrLnTo = new ArrayList<Object>();\r
+ }\r
+ return this.closeOrMoveToOrLnTo;\r
+ }\r
+ \r
+ public boolean isSetCloseOrMoveToOrLnTo() {\r
+ return ((this.closeOrMoveToOrLnTo!= null)&&(!this.closeOrMoveToOrLnTo.isEmpty()));\r
+ }\r
+ \r
+ public void unsetCloseOrMoveToOrLnTo() {\r
+ this.closeOrMoveToOrLnTo = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the w property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Long }\r
+ * \r
+ */\r
+ public long getW() {\r
+ if (w == null) {\r
+ return 0L;\r
+ } else {\r
+ return w;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the w property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Long }\r
+ * \r
+ */\r
+ public void setW(long value) {\r
+ this.w = value;\r
+ }\r
+ \r
+ public boolean isSetW() {\r
+ return (this.w!= null);\r
+ }\r
+ \r
+ public void unsetW() {\r
+ this.w = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the h property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Long }\r
+ * \r
+ */\r
+ public long getH() {\r
+ if (h == null) {\r
+ return 0L;\r
+ } else {\r
+ return h;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the h property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Long }\r
+ * \r
+ */\r
+ public void setH(long value) {\r
+ this.h = value;\r
+ }\r
+ \r
+ public boolean isSetH() {\r
+ return (this.h!= null);\r
+ }\r
+ \r
+ public void unsetH() {\r
+ this.h = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the fill property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link STPathFillMode }\r
+ * \r
+ */\r
+ public STPathFillMode getFill() {\r
+ if (fill == null) {\r
+ return STPathFillMode.NORM;\r
+ } else {\r
+ return fill;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the fill property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link STPathFillMode }\r
+ * \r
+ */\r
+ public void setFill(STPathFillMode value) {\r
+ this.fill = value;\r
+ }\r
+ \r
+ public boolean isSetFill() {\r
+ return (this.fill!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the stroke property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isStroke() {\r
+ if (stroke == null) {\r
+ return true;\r
+ } else {\r
+ return stroke;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the stroke property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setStroke(boolean value) {\r
+ this.stroke = value;\r
+ }\r
+ \r
+ public boolean isSetStroke() {\r
+ return (this.stroke!= null);\r
+ }\r
+ \r
+ public void unsetStroke() {\r
+ this.stroke = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the extrusionOk property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isExtrusionOk() {\r
+ if (extrusionOk == null) {\r
+ return true;\r
+ } else {\r
+ return extrusionOk;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the extrusionOk property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setExtrusionOk(boolean value) {\r
+ this.extrusionOk = value;\r
+ }\r
+ \r
+ public boolean isSetExtrusionOk() {\r
+ return (this.extrusionOk!= null);\r
+ }\r
+ \r
+ public void unsetExtrusionOk() {\r
+ this.extrusionOk = null;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "stAng", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Path2DArcTo complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Path2DArcTo">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="wR" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="hR" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="stAng" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />\r
+ * <attribute name="swAng" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Path2DArcTo", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTPath2DArcTo {\r
+ \r
+ @XmlAttribute(name = "wR", required = true)\r
+ protected String wr;\r
+ @XmlAttribute(name = "hR", required = true)\r
+ protected String hr;\r
- @XmlAttribute(name = "swAng", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected String stAng;\r
++ @XmlAttribute(required = true)\r
+ protected String swAng;\r
+ \r
+ /**\r
+ * Gets the value of the wr property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getWR() {\r
+ return wr;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the wr property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setWR(String value) {\r
+ this.wr = value;\r
+ }\r
+ \r
+ public boolean isSetWR() {\r
+ return (this.wr!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the hr property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getHR() {\r
+ return hr;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the hr property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setHR(String value) {\r
+ this.hr = value;\r
+ }\r
+ \r
+ public boolean isSetHR() {\r
+ return (this.hr!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the stAng property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getStAng() {\r
+ return stAng;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the stAng property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setStAng(String value) {\r
+ this.stAng = value;\r
+ }\r
+ \r
+ public boolean isSetStAng() {\r
+ return (this.stAng!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the swAng property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getSwAng() {\r
+ return swAng;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the swAng property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setSwAng(String value) {\r
+ this.swAng = value;\r
+ }\r
+ \r
+ public boolean isSetSwAng() {\r
+ return (this.swAng!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "val", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Percentage complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Percentage">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Percentage", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTPercentage {\r
+ \r
++ @XmlAttribute(required = true)\r
+ protected int val;\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ */\r
+ public int getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ */\r
+ public void setVal(int value) {\r
+ this.val = value;\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "x", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Point2D complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Point2D">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="x" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />\r
+ * <attribute name="y" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Point2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTPoint2D {\r
+ \r
- @XmlAttribute(name = "y", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected long x;\r
++ @XmlAttribute(required = true)\r
+ protected long y;\r
+ \r
+ /**\r
+ * Gets the value of the x property.\r
+ * \r
+ */\r
+ public long getX() {\r
+ return x;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the x property.\r
+ * \r
+ */\r
+ public void setX(long value) {\r
+ this.x = value;\r
+ }\r
+ \r
+ public boolean isSetX() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the y property.\r
+ * \r
+ */\r
+ public long getY() {\r
+ return y;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the y property.\r
+ * \r
+ */\r
+ public void setY(long value) {\r
+ this.y = value;\r
+ }\r
+ \r
+ public boolean isSetY() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "x", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Point3D complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Point3D">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="x" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />\r
+ * <attribute name="y" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />\r
+ * <attribute name="z" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Point3D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTPoint3D {\r
+ \r
- @XmlAttribute(name = "y", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected long x;\r
- @XmlAttribute(name = "z", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected long y;\r
++ @XmlAttribute(required = true)\r
+ protected long z;\r
+ \r
+ /**\r
+ * Gets the value of the x property.\r
+ * \r
+ */\r
+ public long getX() {\r
+ return x;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the x property.\r
+ * \r
+ */\r
+ public void setX(long value) {\r
+ this.x = value;\r
+ }\r
+ \r
+ public boolean isSetX() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the y property.\r
+ * \r
+ */\r
+ public long getY() {\r
+ return y;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the y property.\r
+ * \r
+ */\r
+ public void setY(long value) {\r
+ this.y = value;\r
+ }\r
+ \r
+ public boolean isSetY() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the z property.\r
+ * \r
+ */\r
+ public long getZ() {\r
+ return z;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the z property.\r
+ * \r
+ */\r
+ public void setZ(long value) {\r
+ this.z = value;\r
+ }\r
+ \r
+ public boolean isSetZ() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "gdRefR")\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;\r
+ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_PolarAdjustHandle complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_PolarAdjustHandle">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>\r
+ * </sequence>\r
+ * <attribute name="gdRefR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />\r
+ * <attribute name="minR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="maxR" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="gdRefAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />\r
+ * <attribute name="minAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />\r
+ * <attribute name="maxAng" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjAngle" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_PolarAdjustHandle", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "pos"\r
+ })\r
+ public class CTPolarAdjustHandle {\r
+ \r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)\r
+ protected CTAdjPoint2D pos;\r
- @XmlAttribute(name = "minR")\r
++ @XmlAttribute\r
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)\r
+ protected String gdRefR;\r
- @XmlAttribute(name = "maxR")\r
++ @XmlAttribute\r
+ protected String minR;\r
- @XmlAttribute(name = "gdRefAng")\r
++ @XmlAttribute\r
+ protected String maxR;\r
- @XmlAttribute(name = "minAng")\r
++ @XmlAttribute\r
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)\r
+ protected String gdRefAng;\r
- @XmlAttribute(name = "maxAng")\r
++ @XmlAttribute\r
+ protected String minAng;\r
++ @XmlAttribute\r
+ protected String maxAng;\r
+ \r
+ /**\r
+ * Gets the value of the pos property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTAdjPoint2D }\r
+ * \r
+ */\r
+ public CTAdjPoint2D getPos() {\r
+ return pos;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the pos property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTAdjPoint2D }\r
+ * \r
+ */\r
+ public void setPos(CTAdjPoint2D value) {\r
+ this.pos = value;\r
+ }\r
+ \r
+ public boolean isSetPos() {\r
+ return (this.pos!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the gdRefR property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getGdRefR() {\r
+ return gdRefR;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the gdRefR property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setGdRefR(String value) {\r
+ this.gdRefR = value;\r
+ }\r
+ \r
+ public boolean isSetGdRefR() {\r
+ return (this.gdRefR!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the minR property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getMinR() {\r
+ return minR;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the minR property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setMinR(String value) {\r
+ this.minR = value;\r
+ }\r
+ \r
+ public boolean isSetMinR() {\r
+ return (this.minR!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the maxR property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getMaxR() {\r
+ return maxR;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the maxR property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setMaxR(String value) {\r
+ this.maxR = value;\r
+ }\r
+ \r
+ public boolean isSetMaxR() {\r
+ return (this.maxR!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the gdRefAng property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getGdRefAng() {\r
+ return gdRefAng;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the gdRefAng property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setGdRefAng(String value) {\r
+ this.gdRefAng = value;\r
+ }\r
+ \r
+ public boolean isSetGdRefAng() {\r
+ return (this.gdRefAng!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the minAng property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getMinAng() {\r
+ return minAng;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the minAng property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setMinAng(String value) {\r
+ this.minAng = value;\r
+ }\r
+ \r
+ public boolean isSetMinAng() {\r
+ return (this.minAng!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the maxAng property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getMaxAng() {\r
+ return maxAng;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the maxAng property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setMaxAng(String value) {\r
+ this.maxAng = value;\r
+ }\r
+ \r
+ public boolean isSetMaxAng() {\r
+ return (this.maxAng!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "val", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_PositiveFixedAngle complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_PositiveFixedAngle">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_PositiveFixedAngle", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTPositiveFixedAngle {\r
+ \r
++ @XmlAttribute(required = true)\r
+ protected int val;\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ */\r
+ public int getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ */\r
+ public void setVal(int value) {\r
+ this.val = value;\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "val", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_PositiveFixedPercentage complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_PositiveFixedPercentage">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedPercentage" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_PositiveFixedPercentage", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTPositiveFixedPercentage {\r
+ \r
++ @XmlAttribute(required = true)\r
+ protected int val;\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ */\r
+ public int getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ */\r
+ public void setVal(int value) {\r
+ this.val = value;\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "val", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_PositivePercentage complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_PositivePercentage">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositivePercentage" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_PositivePercentage", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTPositivePercentage {\r
+ \r
++ @XmlAttribute(required = true)\r
+ protected int val;\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ */\r
+ public int getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ */\r
+ public void setVal(int value) {\r
+ this.val = value;\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "cx", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_PositiveSize2D complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_PositiveSize2D">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="cx" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" />\r
+ * <attribute name="cy" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveCoordinate" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_PositiveSize2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTPositiveSize2D {\r
+ \r
- @XmlAttribute(name = "cy", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected long cx;\r
++ @XmlAttribute(required = true)\r
+ protected long cy;\r
+ \r
+ /**\r
+ * Gets the value of the cx property.\r
+ * \r
+ */\r
+ public long getCx() {\r
+ return cx;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the cx property.\r
+ * \r
+ */\r
+ public void setCx(long value) {\r
+ this.cx = value;\r
+ }\r
+ \r
+ public boolean isSetCx() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the cy property.\r
+ * \r
+ */\r
+ public long getCy() {\r
+ return cy;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the cy property.\r
+ * \r
+ */\r
+ public void setCy(long value) {\r
+ this.cy = value;\r
+ }\r
+ \r
+ public boolean isSetCy() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import java.util.ArrayList;\r
+ import java.util.List;\r
+ import javax.xml.bind.JAXBElement;\r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElementRef;\r
+ import javax.xml.bind.annotation.XmlElementRefs;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_PresetColor complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_PresetColor">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="val" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PresetColorVal" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_PresetColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "egColorTransform"\r
+ })\r
+ public class CTPresetColor {\r
+ \r
+ @XmlElementRefs({\r
- @XmlAttribute(name = "val")\r
++ @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)\r
+ })\r
+ protected List<JAXBElement<?>> egColorTransform;\r
- * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
++ @XmlAttribute\r
+ protected STPresetColorVal val;\r
+ \r
+ /**\r
+ * Gets the value of the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * This accessor method returns a reference to the live list,\r
+ * not a snapshot. Therefore any modification you make to the\r
+ * returned list will be present inside the JAXB object.\r
+ * This is why there is not a <CODE>set</CODE> method for the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * For example, to add a new item, do as follows:\r
+ * <pre>\r
+ * getEGColorTransform().add(newItem);\r
+ * </pre>\r
+ * \r
+ * \r
+ * <p>\r
+ * Objects of the following type(s) are allowed in the list\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * \r
+ * \r
+ */\r
+ public List<JAXBElement<?>> getEGColorTransform() {\r
+ if (egColorTransform == null) {\r
+ egColorTransform = new ArrayList<JAXBElement<?>>();\r
+ }\r
+ return this.egColorTransform;\r
+ }\r
+ \r
+ public boolean isSetEGColorTransform() {\r
+ return ((this.egColorTransform!= null)&&(!this.egColorTransform.isEmpty()));\r
+ }\r
+ \r
+ public void unsetEGColorTransform() {\r
+ this.egColorTransform = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link STPresetColorVal }\r
+ * \r
+ */\r
+ public STPresetColorVal getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link STPresetColorVal }\r
+ * \r
+ */\r
+ public void setVal(STPresetColorVal value) {\r
+ this.val = value;\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return (this.val!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "prst", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_PresetGeometry2D complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_PresetGeometry2D">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="prst" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_ShapeType" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_PresetGeometry2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "avLst"\r
+ })\r
+ public class CTPresetGeometry2D {\r
+ \r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTGeomGuideList avLst;\r
++ @XmlAttribute(required = true)\r
+ protected STShapeType prst;\r
+ \r
+ /**\r
+ * Gets the value of the avLst property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTGeomGuideList }\r
+ * \r
+ */\r
+ public CTGeomGuideList getAvLst() {\r
+ return avLst;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the avLst property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTGeomGuideList }\r
+ * \r
+ */\r
+ public void setAvLst(CTGeomGuideList value) {\r
+ this.avLst = value;\r
+ }\r
+ \r
+ public boolean isSetAvLst() {\r
+ return (this.avLst!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the prst property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link STShapeType }\r
+ * \r
+ */\r
+ public STShapeType getPrst() {\r
+ return prst;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the prst property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link STShapeType }\r
+ * \r
+ */\r
+ public void setPrst(STShapeType value) {\r
+ this.prst = value;\r
+ }\r
+ \r
+ public boolean isSetPrst() {\r
+ return (this.prst!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "prst", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_PresetTextShape complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_PresetTextShape">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <element name="avLst" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_GeomGuideList" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="prst" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_TextShapeType" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_PresetTextShape", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "avLst"\r
+ })\r
+ public class CTPresetTextShape {\r
+ \r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTGeomGuideList avLst;\r
++ @XmlAttribute(required = true)\r
+ protected STTextShapeType prst;\r
+ \r
+ /**\r
+ * Gets the value of the avLst property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTGeomGuideList }\r
+ * \r
+ */\r
+ public CTGeomGuideList getAvLst() {\r
+ return avLst;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the avLst property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTGeomGuideList }\r
+ * \r
+ */\r
+ public void setAvLst(CTGeomGuideList value) {\r
+ this.avLst = value;\r
+ }\r
+ \r
+ public boolean isSetAvLst() {\r
+ return (this.avLst!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the prst property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link STTextShapeType }\r
+ * \r
+ */\r
+ public STTextShapeType getPrst() {\r
+ return prst;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the prst property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link STTextShapeType }\r
+ * \r
+ */\r
+ public void setPrst(STTextShapeType value) {\r
+ this.prst = value;\r
+ }\r
+ \r
+ public boolean isSetPrst() {\r
+ return (this.prst!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "n", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Ratio complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Ratio">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="n" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />\r
+ * <attribute name="d" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Ratio", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTRatio {\r
+ \r
- @XmlAttribute(name = "d", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected long n;\r
++ @XmlAttribute(required = true)\r
+ protected long d;\r
+ \r
+ /**\r
+ * Gets the value of the n property.\r
+ * \r
+ */\r
+ public long getN() {\r
+ return n;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the n property.\r
+ * \r
+ */\r
+ public void setN(long value) {\r
+ this.n = value;\r
+ }\r
+ \r
+ public boolean isSetN() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the d property.\r
+ * \r
+ */\r
+ public long getD() {\r
+ return d;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the d property.\r
+ * \r
+ */\r
+ public void setD(long value) {\r
+ this.d = value;\r
+ }\r
+ \r
+ public boolean isSetD() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "l")\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_RelativeRect complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_RelativeRect">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="l" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />\r
+ * <attribute name="t" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />\r
+ * <attribute name="r" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />\r
+ * <attribute name="b" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" default="0" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_RelativeRect", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTRelativeRect {\r
+ \r
- @XmlAttribute(name = "t")\r
++ @XmlAttribute\r
+ protected Integer l;\r
- @XmlAttribute(name = "r")\r
++ @XmlAttribute\r
+ protected Integer t;\r
- @XmlAttribute(name = "b")\r
++ @XmlAttribute\r
+ protected Integer r;\r
++ @XmlAttribute\r
+ protected Integer b;\r
+ \r
+ /**\r
+ * Gets the value of the l property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public int getL() {\r
+ if (l == null) {\r
+ return 0;\r
+ } else {\r
+ return l;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the l property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public void setL(int value) {\r
+ this.l = value;\r
+ }\r
+ \r
+ public boolean isSetL() {\r
+ return (this.l!= null);\r
+ }\r
+ \r
+ public void unsetL() {\r
+ this.l = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the t property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public int getT() {\r
+ if (t == null) {\r
+ return 0;\r
+ } else {\r
+ return t;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the t property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public void setT(int value) {\r
+ this.t = value;\r
+ }\r
+ \r
+ public boolean isSetT() {\r
+ return (this.t!= null);\r
+ }\r
+ \r
+ public void unsetT() {\r
+ this.t = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the r property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public int getR() {\r
+ if (r == null) {\r
+ return 0;\r
+ } else {\r
+ return r;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the r property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public void setR(int value) {\r
+ this.r = value;\r
+ }\r
+ \r
+ public boolean isSetR() {\r
+ return (this.r!= null);\r
+ }\r
+ \r
+ public void unsetR() {\r
+ this.r = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the b property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public int getB() {\r
+ if (b == null) {\r
+ return 0;\r
+ } else {\r
+ return b;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the b property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public void setB(int value) {\r
+ this.b = value;\r
+ }\r
+ \r
+ public boolean isSetB() {\r
+ return (this.b!= null);\r
+ }\r
+ \r
+ public void unsetB() {\r
+ this.b = null;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import java.util.ArrayList;\r
+ import java.util.List;\r
+ import javax.xml.bind.JAXBElement;\r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElementRef;\r
+ import javax.xml.bind.annotation.XmlElementRefs;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ import javax.xml.bind.annotation.adapters.HexBinaryAdapter;\r
+ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_SRgbColor complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_SRgbColor">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_HexBinary3" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_SRgbColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "egColorTransform"\r
+ })\r
+ public class CTSRgbColor {\r
+ \r
+ @XmlElementRefs({\r
- @XmlAttribute(name = "val", required = true)\r
++ @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)\r
+ })\r
+ protected List<JAXBElement<?>> egColorTransform;\r
- * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
++ @XmlAttribute(required = true)\r
+ @XmlJavaTypeAdapter(HexBinaryAdapter.class)\r
+ protected byte[] val;\r
+ \r
+ /**\r
+ * Gets the value of the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * This accessor method returns a reference to the live list,\r
+ * not a snapshot. Therefore any modification you make to the\r
+ * returned list will be present inside the JAXB object.\r
+ * This is why there is not a <CODE>set</CODE> method for the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * For example, to add a new item, do as follows:\r
+ * <pre>\r
+ * getEGColorTransform().add(newItem);\r
+ * </pre>\r
+ * \r
+ * \r
+ * <p>\r
+ * Objects of the following type(s) are allowed in the list\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- this.val = value;\r
+ * \r
+ * \r
+ */\r
+ public List<JAXBElement<?>> getEGColorTransform() {\r
+ if (egColorTransform == null) {\r
+ egColorTransform = new ArrayList<JAXBElement<?>>();\r
+ }\r
+ return this.egColorTransform;\r
+ }\r
+ \r
+ public boolean isSetEGColorTransform() {\r
+ return ((this.egColorTransform!= null)&&(!this.egColorTransform.isEmpty()));\r
+ }\r
+ \r
+ public void unsetEGColorTransform() {\r
+ this.egColorTransform = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public byte[] getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setVal(byte[] value) {\r
++ this.val = ((byte[]) value);\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return (this.val!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import java.util.ArrayList;\r
+ import java.util.List;\r
+ import javax.xml.bind.JAXBElement;\r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElementRef;\r
+ import javax.xml.bind.annotation.XmlElementRefs;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_ScRgbColor complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_ScRgbColor">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="r" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />\r
+ * <attribute name="g" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />\r
+ * <attribute name="b" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Percentage" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_ScRgbColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "egColorTransform"\r
+ })\r
+ public class CTScRgbColor {\r
+ \r
+ @XmlElementRefs({\r
- @XmlAttribute(name = "r", required = true)\r
++ @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)\r
+ })\r
+ protected List<JAXBElement<?>> egColorTransform;\r
- @XmlAttribute(name = "g", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected int r;\r
- @XmlAttribute(name = "b", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected int g;\r
- * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ @XmlAttribute(required = true)\r
+ protected int b;\r
+ \r
+ /**\r
+ * Gets the value of the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * This accessor method returns a reference to the live list,\r
+ * not a snapshot. Therefore any modification you make to the\r
+ * returned list will be present inside the JAXB object.\r
+ * This is why there is not a <CODE>set</CODE> method for the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * For example, to add a new item, do as follows:\r
+ * <pre>\r
+ * getEGColorTransform().add(newItem);\r
+ * </pre>\r
+ * \r
+ * \r
+ * <p>\r
+ * Objects of the following type(s) are allowed in the list\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * \r
+ * \r
+ */\r
+ public List<JAXBElement<?>> getEGColorTransform() {\r
+ if (egColorTransform == null) {\r
+ egColorTransform = new ArrayList<JAXBElement<?>>();\r
+ }\r
+ return this.egColorTransform;\r
+ }\r
+ \r
+ public boolean isSetEGColorTransform() {\r
+ return ((this.egColorTransform!= null)&&(!this.egColorTransform.isEmpty()));\r
+ }\r
+ \r
+ public void unsetEGColorTransform() {\r
+ this.egColorTransform = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the r property.\r
+ * \r
+ */\r
+ public int getR() {\r
+ return r;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the r property.\r
+ * \r
+ */\r
+ public void setR(int value) {\r
+ this.r = value;\r
+ }\r
+ \r
+ public boolean isSetR() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the g property.\r
+ * \r
+ */\r
+ public int getG() {\r
+ return g;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the g property.\r
+ * \r
+ */\r
+ public void setG(int value) {\r
+ this.g = value;\r
+ }\r
+ \r
+ public boolean isSetG() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the b property.\r
+ * \r
+ */\r
+ public int getB() {\r
+ return b;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the b property.\r
+ * \r
+ */\r
+ public void setB(int value) {\r
+ this.b = value;\r
+ }\r
+ \r
+ public boolean isSetB() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import java.util.ArrayList;\r
+ import java.util.List;\r
+ import javax.xml.bind.JAXBElement;\r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElementRef;\r
+ import javax.xml.bind.annotation.XmlElementRefs;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_SchemeColor complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_SchemeColor">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_SchemeColorVal" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_SchemeColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "egColorTransform"\r
+ })\r
+ public class CTSchemeColor {\r
+ \r
+ @XmlElementRefs({\r
- @XmlAttribute(name = "val", required = true)\r
++ @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)\r
+ })\r
+ protected List<JAXBElement<?>> egColorTransform;\r
- * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
++ @XmlAttribute(required = true)\r
+ protected STSchemeColorVal val;\r
+ \r
+ /**\r
+ * Gets the value of the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * This accessor method returns a reference to the live list,\r
+ * not a snapshot. Therefore any modification you make to the\r
+ * returned list will be present inside the JAXB object.\r
+ * This is why there is not a <CODE>set</CODE> method for the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * For example, to add a new item, do as follows:\r
+ * <pre>\r
+ * getEGColorTransform().add(newItem);\r
+ * </pre>\r
+ * \r
+ * \r
+ * <p>\r
+ * Objects of the following type(s) are allowed in the list\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * \r
+ * \r
+ */\r
+ public List<JAXBElement<?>> getEGColorTransform() {\r
+ if (egColorTransform == null) {\r
+ egColorTransform = new ArrayList<JAXBElement<?>>();\r
+ }\r
+ return this.egColorTransform;\r
+ }\r
+ \r
+ public boolean isSetEGColorTransform() {\r
+ return ((this.egColorTransform!= null)&&(!this.egColorTransform.isEmpty()));\r
+ }\r
+ \r
+ public void unsetEGColorTransform() {\r
+ this.egColorTransform = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link STSchemeColorVal }\r
+ * \r
+ */\r
+ public STSchemeColorVal getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link STSchemeColorVal }\r
+ * \r
+ */\r
+ public void setVal(STSchemeColorVal value) {\r
+ this.val = value;\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return (this.val!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "lat", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_SphereCoords complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_SphereCoords">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="lat" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />\r
+ * <attribute name="lon" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />\r
+ * <attribute name="rev" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_PositiveFixedAngle" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_SphereCoords", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTSphereCoords {\r
+ \r
- @XmlAttribute(name = "lon", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected int lat;\r
- @XmlAttribute(name = "rev", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected int lon;\r
++ @XmlAttribute(required = true)\r
+ protected int rev;\r
+ \r
+ /**\r
+ * Gets the value of the lat property.\r
+ * \r
+ */\r
+ public int getLat() {\r
+ return lat;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the lat property.\r
+ * \r
+ */\r
+ public void setLat(int value) {\r
+ this.lat = value;\r
+ }\r
+ \r
+ public boolean isSetLat() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the lon property.\r
+ * \r
+ */\r
+ public int getLon() {\r
+ return lon;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the lon property.\r
+ * \r
+ */\r
+ public void setLon(int value) {\r
+ this.lon = value;\r
+ }\r
+ \r
+ public boolean isSetLon() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the rev property.\r
+ * \r
+ */\r
+ public int getRev() {\r
+ return rev;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the rev property.\r
+ * \r
+ */\r
+ public void setRev(int value) {\r
+ this.rev = value;\r
+ }\r
+ \r
+ public boolean isSetRev() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false),\r
- @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class, required = false)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import java.util.ArrayList;\r
+ import java.util.List;\r
+ import javax.xml.bind.JAXBElement;\r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElementRef;\r
+ import javax.xml.bind.annotation.XmlElementRefs;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;\r
+ import javax.xml.bind.annotation.adapters.HexBinaryAdapter;\r
+ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_SystemColor complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_SystemColor">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <group ref="{http://schemas.openxmlformats.org/drawingml/2006/main}EG_ColorTransform" maxOccurs="unbounded" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_SystemColorVal" />\r
+ * <attribute name="lastClr" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_HexBinary3" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_SystemColor", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "egColorTransform"\r
+ })\r
+ public class CTSystemColor {\r
+ \r
+ @XmlElementRefs({\r
- @XmlAttribute(name = "val", required = true)\r
++ @XmlElementRef(name = "gray", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "green", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "shade", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "sat", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alphaOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "red", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "gamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "redOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hue", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "satMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lum", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "comp", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "invGamma", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "hueOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "alpha", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "greenMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "inv", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "blueMod", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "tint", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class),\r
++ @XmlElementRef(name = "lumOff", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", type = JAXBElement.class)\r
+ })\r
+ protected List<JAXBElement<?>> egColorTransform;\r
- @XmlAttribute(name = "lastClr")\r
++ @XmlAttribute(required = true)\r
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)\r
+ protected String val;\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ @XmlAttribute\r
+ @XmlJavaTypeAdapter(HexBinaryAdapter.class)\r
+ protected byte[] lastClr;\r
+ \r
+ /**\r
+ * Gets the value of the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * This accessor method returns a reference to the live list,\r
+ * not a snapshot. Therefore any modification you make to the\r
+ * returned list will be present inside the JAXB object.\r
+ * This is why there is not a <CODE>set</CODE> method for the egColorTransform property.\r
+ * \r
+ * <p>\r
+ * For example, to add a new item, do as follows:\r
+ * <pre>\r
+ * getEGColorTransform().add(newItem);\r
+ * </pre>\r
+ * \r
+ * \r
+ * <p>\r
+ * Objects of the following type(s) are allowed in the list\r
- * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}\r
- * {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTAngle }{@code >}\r
- this.lastClr = value;\r
++ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}\r
++ * {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}\r
+ * \r
+ * \r
+ */\r
+ public List<JAXBElement<?>> getEGColorTransform() {\r
+ if (egColorTransform == null) {\r
+ egColorTransform = new ArrayList<JAXBElement<?>>();\r
+ }\r
+ return this.egColorTransform;\r
+ }\r
+ \r
+ public boolean isSetEGColorTransform() {\r
+ return ((this.egColorTransform!= null)&&(!this.egColorTransform.isEmpty()));\r
+ }\r
+ \r
+ public void unsetEGColorTransform() {\r
+ this.egColorTransform = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the val property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getVal() {\r
+ return val;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the val property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setVal(String value) {\r
+ this.val = value;\r
+ }\r
+ \r
+ public boolean isSetVal() {\r
+ return (this.val!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the lastClr property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public byte[] getLastClr() {\r
+ return lastClr;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the lastClr property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setLastClr(byte[] value) {\r
++ this.lastClr = ((byte[]) value);\r
+ }\r
+ \r
+ public boolean isSetLastClr() {\r
+ return (this.lastClr!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "rot")\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Transform2D complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Transform2D">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <element name="off" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_Point2D" minOccurs="0"/>\r
+ * <element name="ext" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_PositiveSize2D" minOccurs="0"/>\r
+ * </sequence>\r
+ * <attribute name="rot" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Angle" default="0" />\r
+ * <attribute name="flipH" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />\r
+ * <attribute name="flipV" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Transform2D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "off",\r
+ "ext"\r
+ })\r
+ public class CTTransform2D {\r
+ \r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTPoint2D off;\r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ protected CTPositiveSize2D ext;\r
- @XmlAttribute(name = "flipH")\r
++ @XmlAttribute\r
+ protected Integer rot;\r
- @XmlAttribute(name = "flipV")\r
++ @XmlAttribute\r
+ protected Boolean flipH;\r
++ @XmlAttribute\r
+ protected Boolean flipV;\r
+ \r
+ /**\r
+ * Gets the value of the off property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTPoint2D }\r
+ * \r
+ */\r
+ public CTPoint2D getOff() {\r
+ return off;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the off property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTPoint2D }\r
+ * \r
+ */\r
+ public void setOff(CTPoint2D value) {\r
+ this.off = value;\r
+ }\r
+ \r
+ public boolean isSetOff() {\r
+ return (this.off!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the ext property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTPositiveSize2D }\r
+ * \r
+ */\r
+ public CTPositiveSize2D getExt() {\r
+ return ext;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the ext property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTPositiveSize2D }\r
+ * \r
+ */\r
+ public void setExt(CTPositiveSize2D value) {\r
+ this.ext = value;\r
+ }\r
+ \r
+ public boolean isSetExt() {\r
+ return (this.ext!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the rot property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public int getRot() {\r
+ if (rot == null) {\r
+ return 0;\r
+ } else {\r
+ return rot;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the rot property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Integer }\r
+ * \r
+ */\r
+ public void setRot(int value) {\r
+ this.rot = value;\r
+ }\r
+ \r
+ public boolean isSetRot() {\r
+ return (this.rot!= null);\r
+ }\r
+ \r
+ public void unsetRot() {\r
+ this.rot = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the flipH property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isFlipH() {\r
+ if (flipH == null) {\r
+ return false;\r
+ } else {\r
+ return flipH;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the flipH property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setFlipH(boolean value) {\r
+ this.flipH = value;\r
+ }\r
+ \r
+ public boolean isSetFlipH() {\r
+ return (this.flipH!= null);\r
+ }\r
+ \r
+ public void unsetFlipH() {\r
+ this.flipH = null;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the flipV property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public boolean isFlipV() {\r
+ if (flipV == null) {\r
+ return false;\r
+ } else {\r
+ return flipV;\r
+ }\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the flipV property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link Boolean }\r
+ * \r
+ */\r
+ public void setFlipV(boolean value) {\r
+ this.flipV = value;\r
+ }\r
+ \r
+ public boolean isSetFlipV() {\r
+ return (this.flipV!= null);\r
+ }\r
+ \r
+ public void unsetFlipV() {\r
+ this.flipV = null;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "dx", required = true)\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_Vector3D complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_Vector3D">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <attribute name="dx" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />\r
+ * <attribute name="dy" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />\r
+ * <attribute name="dz" use="required" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_Coordinate" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_Vector3D", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main")\r
+ public class CTVector3D {\r
+ \r
- @XmlAttribute(name = "dy", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected long dx;\r
- @XmlAttribute(name = "dz", required = true)\r
++ @XmlAttribute(required = true)\r
+ protected long dy;\r
++ @XmlAttribute(required = true)\r
+ protected long dz;\r
+ \r
+ /**\r
+ * Gets the value of the dx property.\r
+ * \r
+ */\r
+ public long getDx() {\r
+ return dx;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the dx property.\r
+ * \r
+ */\r
+ public void setDx(long value) {\r
+ this.dx = value;\r
+ }\r
+ \r
+ public boolean isSetDx() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the dy property.\r
+ * \r
+ */\r
+ public long getDy() {\r
+ return dy;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the dy property.\r
+ * \r
+ */\r
+ public void setDy(long value) {\r
+ this.dy = value;\r
+ }\r
+ \r
+ public boolean isSetDy() {\r
+ return true;\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the dz property.\r
+ * \r
+ */\r
+ public long getDz() {\r
+ return dz;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the dz property.\r
+ * \r
+ */\r
+ public void setDz(long value) {\r
+ this.dz = value;\r
+ }\r
+ \r
+ public boolean isSetDz() {\r
+ return true;\r
+ }\r
+ \r
+ }\r
--- /dev/null
- @XmlAttribute(name = "gdRefX")\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.annotation.XmlAccessType;\r
+ import javax.xml.bind.annotation.XmlAccessorType;\r
+ import javax.xml.bind.annotation.XmlAttribute;\r
+ import javax.xml.bind.annotation.XmlElement;\r
+ import javax.xml.bind.annotation.XmlType;\r
+ import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;\r
+ import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;\r
+ \r
+ \r
+ /**\r
+ * <p>Java class for CT_XYAdjustHandle complex type.\r
+ * \r
+ * <p>The following schema fragment specifies the expected content contained within this class.\r
+ * \r
+ * <pre>\r
+ * <complexType name="CT_XYAdjustHandle">\r
+ * <complexContent>\r
+ * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">\r
+ * <sequence>\r
+ * <element name="pos" type="{http://schemas.openxmlformats.org/drawingml/2006/main}CT_AdjPoint2D"/>\r
+ * </sequence>\r
+ * <attribute name="gdRefX" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />\r
+ * <attribute name="minX" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="maxX" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="gdRefY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_GeomGuideName" />\r
+ * <attribute name="minY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * <attribute name="maxY" type="{http://schemas.openxmlformats.org/drawingml/2006/main}ST_AdjCoordinate" />\r
+ * </restriction>\r
+ * </complexContent>\r
+ * </complexType>\r
+ * </pre>\r
+ * \r
+ * \r
+ */\r
+ @XmlAccessorType(XmlAccessType.FIELD)\r
+ @XmlType(name = "CT_XYAdjustHandle", namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", propOrder = {\r
+ "pos"\r
+ })\r
+ public class CTXYAdjustHandle {\r
+ \r
+ @XmlElement(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", required = true)\r
+ protected CTAdjPoint2D pos;\r
- @XmlAttribute(name = "minX")\r
++ @XmlAttribute\r
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)\r
+ protected String gdRefX;\r
- @XmlAttribute(name = "maxX")\r
++ @XmlAttribute\r
+ protected String minX;\r
- @XmlAttribute(name = "gdRefY")\r
++ @XmlAttribute\r
+ protected String maxX;\r
- @XmlAttribute(name = "minY")\r
++ @XmlAttribute\r
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)\r
+ protected String gdRefY;\r
- @XmlAttribute(name = "maxY")\r
++ @XmlAttribute\r
+ protected String minY;\r
++ @XmlAttribute\r
+ protected String maxY;\r
+ \r
+ /**\r
+ * Gets the value of the pos property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link CTAdjPoint2D }\r
+ * \r
+ */\r
+ public CTAdjPoint2D getPos() {\r
+ return pos;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the pos property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link CTAdjPoint2D }\r
+ * \r
+ */\r
+ public void setPos(CTAdjPoint2D value) {\r
+ this.pos = value;\r
+ }\r
+ \r
+ public boolean isSetPos() {\r
+ return (this.pos!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the gdRefX property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getGdRefX() {\r
+ return gdRefX;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the gdRefX property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setGdRefX(String value) {\r
+ this.gdRefX = value;\r
+ }\r
+ \r
+ public boolean isSetGdRefX() {\r
+ return (this.gdRefX!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the minX property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getMinX() {\r
+ return minX;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the minX property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setMinX(String value) {\r
+ this.minX = value;\r
+ }\r
+ \r
+ public boolean isSetMinX() {\r
+ return (this.minX!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the maxX property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getMaxX() {\r
+ return maxX;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the maxX property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setMaxX(String value) {\r
+ this.maxX = value;\r
+ }\r
+ \r
+ public boolean isSetMaxX() {\r
+ return (this.maxX!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the gdRefY property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getGdRefY() {\r
+ return gdRefY;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the gdRefY property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setGdRefY(String value) {\r
+ this.gdRefY = value;\r
+ }\r
+ \r
+ public boolean isSetGdRefY() {\r
+ return (this.gdRefY!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the minY property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getMinY() {\r
+ return minY;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the minY property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setMinY(String value) {\r
+ this.minY = value;\r
+ }\r
+ \r
+ public boolean isSetMinY() {\r
+ return (this.minY!= null);\r
+ }\r
+ \r
+ /**\r
+ * Gets the value of the maxY property.\r
+ * \r
+ * @return\r
+ * possible object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public String getMaxY() {\r
+ return maxY;\r
+ }\r
+ \r
+ /**\r
+ * Sets the value of the maxY property.\r
+ * \r
+ * @param value\r
+ * allowed object is\r
+ * {@link String }\r
+ * \r
+ */\r
+ public void setMaxY(String value) {\r
+ this.maxY = value;\r
+ }\r
+ \r
+ public boolean isSetMaxY() {\r
+ return (this.maxY!= null);\r
+ }\r
+ \r
+ }\r
--- /dev/null
- private final static QName _CTSRgbColorAlphaMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alphaMod");\r
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.draw.binding;\r
+ \r
+ import javax.xml.bind.JAXBElement;\r
+ import javax.xml.bind.annotation.XmlElementDecl;\r
+ import javax.xml.bind.annotation.XmlRegistry;\r
+ import javax.xml.namespace.QName;\r
+ \r
+ \r
+ /**\r
+ * This object contains factory methods for each \r
+ * Java content interface and Java element interface \r
+ * generated in the org.apache.poi.sl.draw.binding package. \r
+ * <p>An ObjectFactory allows you to programatically \r
+ * construct new instances of the Java representation \r
+ * for XML content. The Java representation of XML \r
+ * content can consist of schema derived interfaces \r
+ * and classes representing the binding of schema \r
+ * type definitions, element declarations and model \r
+ * groups. Factory methods for each of these are \r
+ * provided in this class.\r
+ * \r
+ */\r
+ @XmlRegistry\r
+ public class ObjectFactory {\r
+ \r
+ private final static QName _CTSRgbColorAlpha_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alpha");\r
+ private final static QName _CTSRgbColorLum_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lum");\r
+ private final static QName _CTSRgbColorGamma_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "gamma");\r
+ private final static QName _CTSRgbColorInvGamma_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "invGamma");\r
- private final static QName _CTSRgbColorHue_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hue");\r
+ private final static QName _CTSRgbColorRedOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "redOff");\r
++ private final static QName _CTSRgbColorAlphaMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alphaMod");\r
+ private final static QName _CTSRgbColorAlphaOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "alphaOff");\r
+ private final static QName _CTSRgbColorGreenOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "greenOff");\r
- private final static QName _CTSRgbColorBlueMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blueMod");\r
+ private final static QName _CTSRgbColorRedMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "redMod");\r
++ private final static QName _CTSRgbColorHue_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hue");\r
+ private final static QName _CTSRgbColorSatOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "satOff");\r
+ private final static QName _CTSRgbColorGreenMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "greenMod");\r
+ private final static QName _CTSRgbColorSat_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "sat");\r
+ private final static QName _CTSRgbColorBlue_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blue");\r
+ private final static QName _CTSRgbColorRed_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "red");\r
+ private final static QName _CTSRgbColorSatMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "satMod");\r
- * Create an instance of {@link CTPath2DQuadBezierTo }\r
+ private final static QName _CTSRgbColorHueOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hueOff");\r
++ private final static QName _CTSRgbColorBlueMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blueMod");\r
+ private final static QName _CTSRgbColorShade_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "shade");\r
+ private final static QName _CTSRgbColorLumMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lumMod");\r
+ private final static QName _CTSRgbColorInv_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "inv");\r
+ private final static QName _CTSRgbColorLumOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "lumOff");\r
+ private final static QName _CTSRgbColorTint_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "tint");\r
+ private final static QName _CTSRgbColorGreen_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "green");\r
+ private final static QName _CTSRgbColorComp_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "comp");\r
+ private final static QName _CTSRgbColorBlueOff_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "blueOff");\r
+ private final static QName _CTSRgbColorHueMod_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "hueMod");\r
+ private final static QName _CTSRgbColorGray_QNAME = new QName("http://schemas.openxmlformats.org/drawingml/2006/main", "gray");\r
+ \r
+ /**\r
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.poi.sl.draw.binding\r
+ * \r
+ */\r
+ public ObjectFactory() {\r
+ }\r
+ \r
+ /**\r
- public CTPath2DQuadBezierTo createCTPath2DQuadBezierTo() {\r
- return new CTPath2DQuadBezierTo();\r
++ * Create an instance of {@link CTPositiveSize2D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTCustomGeometry2D }\r
++ public CTPositiveSize2D createCTPositiveSize2D() {\r
++ return new CTPositiveSize2D();\r
+ }\r
+ \r
+ /**\r
- public CTCustomGeometry2D createCTCustomGeometry2D() {\r
- return new CTCustomGeometry2D();\r
++ * Create an instance of {@link CTSphereCoords }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPolarAdjustHandle }\r
++ public CTSphereCoords createCTSphereCoords() {\r
++ return new CTSphereCoords();\r
+ }\r
+ \r
+ /**\r
- public CTPolarAdjustHandle createCTPolarAdjustHandle() {\r
- return new CTPolarAdjustHandle();\r
++ * Create an instance of {@link CTPositivePercentage }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPath2DClose }\r
++ public CTPositivePercentage createCTPositivePercentage() {\r
++ return new CTPositivePercentage();\r
+ }\r
+ \r
+ /**\r
- public CTPath2DClose createCTPath2DClose() {\r
- return new CTPath2DClose();\r
++ * Create an instance of {@link CTAdjPoint2D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPoint2D }\r
++ public CTAdjPoint2D createCTAdjPoint2D() {\r
++ return new CTAdjPoint2D();\r
+ }\r
+ \r
+ /**\r
- public CTPoint2D createCTPoint2D() {\r
- return new CTPoint2D();\r
++ * Create an instance of {@link CTPath2DCubicBezierTo }\r
+ * \r
+ */\r
- * Create an instance of {@link CTInverseTransform }\r
++ public CTPath2DCubicBezierTo createCTPath2DCubicBezierTo() {\r
++ return new CTPath2DCubicBezierTo();\r
+ }\r
+ \r
+ /**\r
- public CTInverseTransform createCTInverseTransform() {\r
- return new CTInverseTransform();\r
++ * Create an instance of {@link CTEmbeddedWAVAudioFile }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPercentage }\r
++ public CTEmbeddedWAVAudioFile createCTEmbeddedWAVAudioFile() {\r
++ return new CTEmbeddedWAVAudioFile();\r
+ }\r
+ \r
+ /**\r
- public CTPercentage createCTPercentage() {\r
- return new CTPercentage();\r
++ * Create an instance of {@link CTPresetGeometry2D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTSystemColor }\r
++ public CTPresetGeometry2D createCTPresetGeometry2D() {\r
++ return new CTPresetGeometry2D();\r
+ }\r
+ \r
+ /**\r
- public CTSystemColor createCTSystemColor() {\r
- return new CTSystemColor();\r
++ * Create an instance of {@link CTSchemeColor }\r
+ * \r
+ */\r
- * Create an instance of {@link CTConnectionSite }\r
++ public CTSchemeColor createCTSchemeColor() {\r
++ return new CTSchemeColor();\r
+ }\r
+ \r
+ /**\r
- public CTConnectionSite createCTConnectionSite() {\r
- return new CTConnectionSite();\r
++ * Create an instance of {@link CTInverseTransform }\r
+ * \r
+ */\r
- * Create an instance of {@link CTColor }\r
++ public CTInverseTransform createCTInverseTransform() {\r
++ return new CTInverseTransform();\r
+ }\r
+ \r
+ /**\r
- public CTColor createCTColor() {\r
- return new CTColor();\r
++ * Create an instance of {@link CTScRgbColor }\r
+ * \r
+ */\r
- * Create an instance of {@link CTFixedPercentage }\r
++ public CTScRgbColor createCTScRgbColor() {\r
++ return new CTScRgbColor();\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link CTPositiveFixedAngle }\r
+ * \r
+ */\r
+ public CTPositiveFixedAngle createCTPositiveFixedAngle() {\r
+ return new CTPositiveFixedAngle();\r
+ }\r
+ \r
+ /**\r
- public CTFixedPercentage createCTFixedPercentage() {\r
- return new CTFixedPercentage();\r
++ * Create an instance of {@link CTInverseGammaTransform }\r
+ * \r
+ */\r
- * Create an instance of {@link CTHslColor }\r
++ public CTInverseGammaTransform createCTInverseGammaTransform() {\r
++ return new CTInverseGammaTransform();\r
+ }\r
+ \r
+ /**\r
- public CTHslColor createCTHslColor() {\r
- return new CTHslColor();\r
++ * Create an instance of {@link CTColorMRU }\r
+ * \r
+ */\r
- * Create an instance of {@link CTConnection }\r
++ public CTColorMRU createCTColorMRU() {\r
++ return new CTColorMRU();\r
+ }\r
+ \r
+ /**\r
- public CTConnection createCTConnection() {\r
- return new CTConnection();\r
++ * Create an instance of {@link CTPath2DArcTo }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPath2DLineTo }\r
++ public CTPath2DArcTo createCTPath2DArcTo() {\r
++ return new CTPath2DArcTo();\r
+ }\r
+ \r
+ /**\r
- public CTPath2DLineTo createCTPath2DLineTo() {\r
- return new CTPath2DLineTo();\r
++ * Create an instance of {@link CTSystemColor }\r
+ * \r
+ */\r
- * Create an instance of {@link CTTransform2D }\r
++ public CTSystemColor createCTSystemColor() {\r
++ return new CTSystemColor();\r
+ }\r
+ \r
+ /**\r
- public CTTransform2D createCTTransform2D() {\r
- return new CTTransform2D();\r
++ * Create an instance of {@link CTGroupTransform2D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPositivePercentage }\r
++ public CTGroupTransform2D createCTGroupTransform2D() {\r
++ return new CTGroupTransform2D();\r
+ }\r
+ \r
+ /**\r
- public CTPositivePercentage createCTPositivePercentage() {\r
- return new CTPositivePercentage();\r
++ * Create an instance of {@link CTPoint2D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTVector3D }\r
++ public CTPoint2D createCTPoint2D() {\r
++ return new CTPoint2D();\r
+ }\r
+ \r
+ /**\r
- public CTVector3D createCTVector3D() {\r
- return new CTVector3D();\r
++ * Create an instance of {@link CTGeomRect }\r
+ * \r
+ */\r
- * Create an instance of {@link CTSphereCoords }\r
++ public CTGeomRect createCTGeomRect() {\r
++ return new CTGeomRect();\r
+ }\r
+ \r
+ /**\r
- public CTSphereCoords createCTSphereCoords() {\r
- return new CTSphereCoords();\r
++ * Create an instance of {@link CTScale2D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPath2D }\r
++ public CTScale2D createCTScale2D() {\r
++ return new CTScale2D();\r
+ }\r
+ \r
+ /**\r
- public CTPath2D createCTPath2D() {\r
- return new CTPath2D();\r
++ * Create an instance of {@link CTGeomGuide }\r
+ * \r
+ */\r
- * Create an instance of {@link CTGroupTransform2D }\r
++ public CTGeomGuide createCTGeomGuide() {\r
++ return new CTGeomGuide();\r
+ }\r
+ \r
+ /**\r
- public CTGroupTransform2D createCTGroupTransform2D() {\r
- return new CTGroupTransform2D();\r
++ * Create an instance of {@link CTXYAdjustHandle }\r
+ * \r
+ */\r
- * Create an instance of {@link CTGrayscaleTransform }\r
++ public CTXYAdjustHandle createCTXYAdjustHandle() {\r
++ return new CTXYAdjustHandle();\r
+ }\r
+ \r
+ /**\r
- public CTGrayscaleTransform createCTGrayscaleTransform() {\r
- return new CTGrayscaleTransform();\r
++ * Create an instance of {@link CTCustomGeometry2D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTRatio }\r
++ public CTCustomGeometry2D createCTCustomGeometry2D() {\r
++ return new CTCustomGeometry2D();\r
+ }\r
+ \r
+ /**\r
- public CTRatio createCTRatio() {\r
- return new CTRatio();\r
++ * Create an instance of {@link CTOfficeArtExtension }\r
+ * \r
+ */\r
- * Create an instance of {@link CTSRgbColor }\r
++ public CTOfficeArtExtension createCTOfficeArtExtension() {\r
++ return new CTOfficeArtExtension();\r
+ }\r
+ \r
+ /**\r
- public CTSRgbColor createCTSRgbColor() {\r
- return new CTSRgbColor();\r
++ * Create an instance of {@link CTGrayscaleTransform }\r
+ * \r
+ */\r
- * Create an instance of {@link CTGeomGuideList }\r
++ public CTGrayscaleTransform createCTGrayscaleTransform() {\r
++ return new CTGrayscaleTransform();\r
+ }\r
+ \r
+ /**\r
- public CTGeomGuideList createCTGeomGuideList() {\r
- return new CTGeomGuideList();\r
++ * Create an instance of {@link CTPath2DClose }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPath2DCubicBezierTo }\r
- * \r
- */\r
- public CTPath2DCubicBezierTo createCTPath2DCubicBezierTo() {\r
- return new CTPath2DCubicBezierTo();\r
- }\r
-\r
- /**\r
- * Create an instance of {@link CTXYAdjustHandle }\r
++ public CTPath2DClose createCTPath2DClose() {\r
++ return new CTPath2DClose();\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link CTComplementTransform }\r
+ * \r
+ */\r
+ public CTComplementTransform createCTComplementTransform() {\r
+ return new CTComplementTransform();\r
+ }\r
+ \r
+ /**\r
- public CTXYAdjustHandle createCTXYAdjustHandle() {\r
- return new CTXYAdjustHandle();\r
++ * Create an instance of {@link CTPoint3D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPresetColor }\r
++ public CTPoint3D createCTPoint3D() {\r
++ return new CTPoint3D();\r
+ }\r
+ \r
+ /**\r
- public CTPresetColor createCTPresetColor() {\r
- return new CTPresetColor();\r
++ * Create an instance of {@link CTPositiveFixedPercentage }\r
+ * \r
+ */\r
- * Create an instance of {@link CTOfficeArtExtension }\r
++ public CTPositiveFixedPercentage createCTPositiveFixedPercentage() {\r
++ return new CTPositiveFixedPercentage();\r
+ }\r
+ \r
+ /**\r
- public CTOfficeArtExtension createCTOfficeArtExtension() {\r
- return new CTOfficeArtExtension();\r
++ * Create an instance of {@link CTPath2D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTSchemeColor }\r
++ public CTPath2D createCTPath2D() {\r
++ return new CTPath2D();\r
+ }\r
+ \r
+ /**\r
- public CTSchemeColor createCTSchemeColor() {\r
- return new CTSchemeColor();\r
++ * Create an instance of {@link CTAdjustHandleList }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPath2DArcTo }\r
++ public CTAdjustHandleList createCTAdjustHandleList() {\r
++ return new CTAdjustHandleList();\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link CTConnectionSiteList }\r
+ * \r
+ */\r
+ public CTConnectionSiteList createCTConnectionSiteList() {\r
+ return new CTConnectionSiteList();\r
+ }\r
+ \r
+ /**\r
- public CTPath2DArcTo createCTPath2DArcTo() {\r
- return new CTPath2DArcTo();\r
++ * Create an instance of {@link CTPresetTextShape }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPath2DList }\r
++ public CTPresetTextShape createCTPresetTextShape() {\r
++ return new CTPresetTextShape();\r
+ }\r
+ \r
+ /**\r
- public CTPath2DList createCTPath2DList() {\r
- return new CTPath2DList();\r
++ * Create an instance of {@link CTSRgbColor }\r
+ * \r
+ */\r
- * Create an instance of {@link CTAngle }\r
++ public CTSRgbColor createCTSRgbColor() {\r
++ return new CTSRgbColor();\r
+ }\r
+ \r
+ /**\r
- public CTAngle createCTAngle() {\r
- return new CTAngle();\r
++ * Create an instance of {@link CTPath2DMoveTo }\r
+ * \r
+ */\r
- * Create an instance of {@link CTScale2D }\r
++ public CTPath2DMoveTo createCTPath2DMoveTo() {\r
++ return new CTPath2DMoveTo();\r
+ }\r
+ \r
+ /**\r
- public CTScale2D createCTScale2D() {\r
- return new CTScale2D();\r
++ * Create an instance of {@link CTRelativeRect }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPositiveSize2D }\r
++ public CTRelativeRect createCTRelativeRect() {\r
++ return new CTRelativeRect();\r
+ }\r
+ \r
+ /**\r
- public CTPositiveSize2D createCTPositiveSize2D() {\r
- return new CTPositiveSize2D();\r
++ * Create an instance of {@link CTPath2DList }\r
+ * \r
+ */\r
- * Create an instance of {@link CTOfficeArtExtensionList }\r
++ public CTPath2DList createCTPath2DList() {\r
++ return new CTPath2DList();\r
+ }\r
+ \r
+ /**\r
- public CTOfficeArtExtensionList createCTOfficeArtExtensionList() {\r
- return new CTOfficeArtExtensionList();\r
++ * Create an instance of {@link CTPolarAdjustHandle }\r
+ * \r
+ */\r
- * Create an instance of {@link CTHyperlink }\r
++ public CTPolarAdjustHandle createCTPolarAdjustHandle() {\r
++ return new CTPolarAdjustHandle();\r
+ }\r
+ \r
+ /**\r
- public CTHyperlink createCTHyperlink() {\r
- return new CTHyperlink();\r
++ * Create an instance of {@link CTPercentage }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPoint3D }\r
++ public CTPercentage createCTPercentage() {\r
++ return new CTPercentage();\r
+ }\r
+ \r
+ /**\r
- public CTPoint3D createCTPoint3D() {\r
- return new CTPoint3D();\r
++ * Create an instance of {@link CTHslColor }\r
+ * \r
+ */\r
- * Create an instance of {@link CTInverseGammaTransform }\r
++ public CTHslColor createCTHslColor() {\r
++ return new CTHslColor();\r
+ }\r
+ \r
+ /**\r
- public CTInverseGammaTransform createCTInverseGammaTransform() {\r
- return new CTInverseGammaTransform();\r
++ * Create an instance of {@link CTRatio }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPositiveFixedPercentage }\r
++ public CTRatio createCTRatio() {\r
++ return new CTRatio();\r
+ }\r
+ \r
+ /**\r
- public CTPositiveFixedPercentage createCTPositiveFixedPercentage() {\r
- return new CTPositiveFixedPercentage();\r
++ * Create an instance of {@link CTGeomGuideList }\r
+ * \r
+ */\r
- * Create an instance of {@link CTGeomRect }\r
++ public CTGeomGuideList createCTGeomGuideList() {\r
++ return new CTGeomGuideList();\r
+ }\r
+ \r
+ /**\r
- public CTGeomRect createCTGeomRect() {\r
- return new CTGeomRect();\r
++ * Create an instance of {@link CTTransform2D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPresetTextShape }\r
++ public CTTransform2D createCTTransform2D() {\r
++ return new CTTransform2D();\r
+ }\r
+ \r
+ /**\r
- public CTPresetTextShape createCTPresetTextShape() {\r
- return new CTPresetTextShape();\r
++ * Create an instance of {@link CTGammaTransform }\r
+ * \r
+ */\r
- * Create an instance of {@link CTColorMRU }\r
++ public CTGammaTransform createCTGammaTransform() {\r
++ return new CTGammaTransform();\r
+ }\r
+ \r
+ /**\r
- public CTColorMRU createCTColorMRU() {\r
- return new CTColorMRU();\r
++ * Create an instance of {@link CTPath2DQuadBezierTo }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPath2DMoveTo }\r
++ public CTPath2DQuadBezierTo createCTPath2DQuadBezierTo() {\r
++ return new CTPath2DQuadBezierTo();\r
+ }\r
+ \r
+ /**\r
- public CTPath2DMoveTo createCTPath2DMoveTo() {\r
- return new CTPath2DMoveTo();\r
++ * Create an instance of {@link CTAngle }\r
+ * \r
+ */\r
- * Create an instance of {@link CTEmbeddedWAVAudioFile }\r
++ public CTAngle createCTAngle() {\r
++ return new CTAngle();\r
+ }\r
+ \r
+ /**\r
- public CTEmbeddedWAVAudioFile createCTEmbeddedWAVAudioFile() {\r
- return new CTEmbeddedWAVAudioFile();\r
++ * Create an instance of {@link CTConnectionSite }\r
+ * \r
+ */\r
- * Create an instance of {@link CTScRgbColor }\r
++ public CTConnectionSite createCTConnectionSite() {\r
++ return new CTConnectionSite();\r
+ }\r
+ \r
+ /**\r
- public CTScRgbColor createCTScRgbColor() {\r
- return new CTScRgbColor();\r
++ * Create an instance of {@link CTHyperlink }\r
+ * \r
+ */\r
- * Create an instance of {@link CTPresetGeometry2D }\r
++ public CTHyperlink createCTHyperlink() {\r
++ return new CTHyperlink();\r
+ }\r
+ \r
+ /**\r
- public CTPresetGeometry2D createCTPresetGeometry2D() {\r
- return new CTPresetGeometry2D();\r
++ * Create an instance of {@link CTFixedPercentage }\r
+ * \r
+ */\r
- * Create an instance of {@link CTGeomGuide }\r
++ public CTFixedPercentage createCTFixedPercentage() {\r
++ return new CTFixedPercentage();\r
+ }\r
+ \r
+ /**\r
- public CTGeomGuide createCTGeomGuide() {\r
- return new CTGeomGuide();\r
++ * Create an instance of {@link CTPath2DLineTo }\r
+ * \r
+ */\r
- * Create an instance of {@link CTRelativeRect }\r
++ public CTPath2DLineTo createCTPath2DLineTo() {\r
++ return new CTPath2DLineTo();\r
+ }\r
+ \r
+ /**\r
- public CTRelativeRect createCTRelativeRect() {\r
- return new CTRelativeRect();\r
++ * Create an instance of {@link CTColor }\r
+ * \r
+ */\r
- * Create an instance of {@link CTAdjustHandleList }\r
++ public CTColor createCTColor() {\r
++ return new CTColor();\r
+ }\r
+ \r
+ /**\r
- public CTAdjustHandleList createCTAdjustHandleList() {\r
- return new CTAdjustHandleList();\r
++ * Create an instance of {@link CTPresetColor }\r
+ * \r
+ */\r
- * Create an instance of {@link CTAdjPoint2D }\r
++ public CTPresetColor createCTPresetColor() {\r
++ return new CTPresetColor();\r
+ }\r
+ \r
+ /**\r
- public CTAdjPoint2D createCTAdjPoint2D() {\r
- return new CTAdjPoint2D();\r
++ * Create an instance of {@link CTVector3D }\r
+ * \r
+ */\r
- * Create an instance of {@link CTGammaTransform }\r
++ public CTVector3D createCTVector3D() {\r
++ return new CTVector3D();\r
+ }\r
+ \r
+ /**\r
- public CTGammaTransform createCTGammaTransform() {\r
- return new CTGammaTransform();\r
++ * Create an instance of {@link CTOfficeArtExtensionList }\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
++ public CTOfficeArtExtensionList createCTOfficeArtExtensionList() {\r
++ return new CTOfficeArtExtensionList();\r
++ }\r
++\r
++ /**\r
++ * Create an instance of {@link CTConnection }\r
++ * \r
++ */\r
++ public CTConnection createCTConnection() {\r
++ return new CTConnection();\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPositiveFixedPercentage> createCTSRgbColorAlpha(CTPositiveFixedPercentage value) {\r
+ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorLum(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTGammaTransform> createCTSRgbColorGamma(CTGammaTransform value) {\r
+ return new JAXBElement<CTGammaTransform>(_CTSRgbColorGamma_QNAME, CTGammaTransform.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTInverseGammaTransform> createCTSRgbColorInvGamma(CTInverseGammaTransform value) {\r
+ return new JAXBElement<CTInverseGammaTransform>(_CTSRgbColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSRgbColor.class)\r
- public JAXBElement<CTPositivePercentage> createCTSRgbColorAlphaMod(CTPositivePercentage value) {\r
- return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTSRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTSRgbColorRedOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTSRgbColorRedOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSRgbColor.class)\r
++ public JAXBElement<CTPositivePercentage> createCTSRgbColorAlphaMod(CTPositivePercentage value) {\r
++ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTFixedPercentage> createCTSRgbColorAlphaOff(CTFixedPercentage value) {\r
+ return new JAXBElement<CTFixedPercentage>(_CTSRgbColorAlphaOff_QNAME, CTFixedPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorGreenOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenOff_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSRgbColor.class)\r
- public JAXBElement<CTPositiveFixedAngle> createCTSRgbColorHue(CTPositiveFixedAngle value) {\r
- return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTSRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTSRgbColorRedMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTSRgbColorRedMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSRgbColor.class)\r
++ public JAXBElement<CTPositiveFixedAngle> createCTSRgbColorHue(CTPositiveFixedAngle value) {\r
++ return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorSatOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorSatOff_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorGreenMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenMod_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorSat(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorBlue(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorRed(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorRed_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorSatMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorSatMod_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTSRgbColorBlueMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSRgbColor.class)\r
++ public JAXBElement<CTAngle> createCTSRgbColorHueOff(CTAngle value) {\r
++ return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSRgbColor.class)\r
- public JAXBElement<CTAngle> createCTSRgbColorHueOff(CTAngle value) {\r
- return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTSRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTSRgbColorBlueMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPositiveFixedPercentage> createCTSRgbColorShade(CTPositiveFixedPercentage value) {\r
+ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorShade_QNAME, CTPositiveFixedPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorLumMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorLumMod_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTInverseTransform> createCTSRgbColorInv(CTInverseTransform value) {\r
+ return new JAXBElement<CTInverseTransform>(_CTSRgbColorInv_QNAME, CTInverseTransform.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorLumOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorLumOff_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPositiveFixedPercentage> createCTSRgbColorTint(CTPositiveFixedPercentage value) {\r
+ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorTint_QNAME, CTPositiveFixedPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorGreen(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorGreen_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTComplementTransform> createCTSRgbColorComp(CTComplementTransform value) {\r
+ return new JAXBElement<CTComplementTransform>(_CTSRgbColorComp_QNAME, CTComplementTransform.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPercentage> createCTSRgbColorBlueOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueOff_QNAME, CTPercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTPositivePercentage> createCTSRgbColorHueMod(CTPositivePercentage value) {\r
+ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorHueMod_QNAME, CTPositivePercentage.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSRgbColor.class)\r
+ public JAXBElement<CTGrayscaleTransform> createCTSRgbColorGray(CTGrayscaleTransform value) {\r
+ return new JAXBElement<CTGrayscaleTransform>(_CTSRgbColorGray_QNAME, CTGrayscaleTransform.class, CTSRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorAlpha(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorLum(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorLum(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSchemeColor.class)\r
- public JAXBElement<CTGammaTransform> createCTSchemeColorGamma(CTGammaTransform value) {\r
- return new JAXBElement<CTGammaTransform>(_CTSRgbColorGamma_QNAME, CTGammaTransform.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorAlpha(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSchemeColor.class)\r
- public JAXBElement<CTInverseGammaTransform> createCTSchemeColorInvGamma(CTInverseGammaTransform value) {\r
- return new JAXBElement<CTInverseGammaTransform>(_CTSRgbColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSystemColor.class)\r
++ public JAXBElement<CTGammaTransform> createCTSystemColorGamma(CTGammaTransform value) {\r
++ return new JAXBElement<CTGammaTransform>(_CTSRgbColorGamma_QNAME, CTGammaTransform.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPositivePercentage> createCTSchemeColorAlphaMod(CTPositivePercentage value) {\r
- return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSystemColor.class)\r
++ public JAXBElement<CTInverseGammaTransform> createCTSystemColorInvGamma(CTInverseGammaTransform value) {\r
++ return new JAXBElement<CTInverseGammaTransform>(_CTSRgbColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorRedOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPositivePercentage> createCTSystemColorAlphaMod(CTPositivePercentage value) {\r
++ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSchemeColor.class)\r
- public JAXBElement<CTFixedPercentage> createCTSchemeColorAlphaOff(CTFixedPercentage value) {\r
- return new JAXBElement<CTFixedPercentage>(_CTSRgbColorAlphaOff_QNAME, CTFixedPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorRedOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorGreenOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorGreenOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSystemColor.class)\r
++ public JAXBElement<CTFixedPercentage> createCTSystemColorAlphaOff(CTFixedPercentage value) {\r
++ return new JAXBElement<CTFixedPercentage>(_CTSRgbColorAlphaOff_QNAME, CTFixedPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorGreenOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPositiveFixedAngle> createCTSchemeColorHue(CTPositiveFixedAngle value) {\r
- return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTSchemeColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorRedMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorRedMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorSatOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSatOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPositiveFixedAngle> createCTSystemColorHue(CTPositiveFixedAngle value) {\r
++ return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorGreenMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorGreenMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorSatOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSatOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorSat(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorGreenMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorBlue(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorBlue(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorRed(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRed_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorSat(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorSatMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSatMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorRed(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRed_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorBlueMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorSatMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSatMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSchemeColor.class)\r
- public JAXBElement<CTAngle> createCTSchemeColorHueOff(CTAngle value) {\r
- return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorBlueMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorShade(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorShade_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSystemColor.class)\r
++ public JAXBElement<CTAngle> createCTSystemColorHueOff(CTAngle value) {\r
++ return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorLumMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLumMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorShade(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorShade_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSchemeColor.class)\r
- public JAXBElement<CTInverseTransform> createCTSchemeColorInv(CTInverseTransform value) {\r
- return new JAXBElement<CTInverseTransform>(_CTSRgbColorInv_QNAME, CTInverseTransform.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorLumMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLumMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorLumOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLumOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSystemColor.class)\r
++ public JAXBElement<CTInverseTransform> createCTSystemColorInv(CTInverseTransform value) {\r
++ return new JAXBElement<CTInverseTransform>(_CTSRgbColorInv_QNAME, CTInverseTransform.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorTint(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorTint_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorLumOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLumOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorGreen(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorGreen_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorTint(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorTint_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSchemeColor.class)\r
- public JAXBElement<CTComplementTransform> createCTSchemeColorComp(CTComplementTransform value) {\r
- return new JAXBElement<CTComplementTransform>(_CTSRgbColorComp_QNAME, CTComplementTransform.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorGreen(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorGreen_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPercentage> createCTSchemeColorBlueOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlueOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSystemColor.class)\r
++ public JAXBElement<CTComplementTransform> createCTSystemColorComp(CTComplementTransform value) {\r
++ return new JAXBElement<CTComplementTransform>(_CTSRgbColorComp_QNAME, CTComplementTransform.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSchemeColor.class)\r
- public JAXBElement<CTPositivePercentage> createCTSchemeColorHueMod(CTPositivePercentage value) {\r
- return new JAXBElement<CTPositivePercentage>(_CTSRgbColorHueMod_QNAME, CTPositivePercentage.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPercentage> createCTSystemColorBlueOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSchemeColor.class)\r
- public JAXBElement<CTGrayscaleTransform> createCTSchemeColorGray(CTGrayscaleTransform value) {\r
- return new JAXBElement<CTGrayscaleTransform>(_CTSRgbColorGray_QNAME, CTGrayscaleTransform.class, CTSchemeColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSystemColor.class)\r
++ public JAXBElement<CTPositivePercentage> createCTSystemColorHueMod(CTPositivePercentage value) {\r
++ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorHueMod_QNAME, CTPositivePercentage.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSystemColor.class)\r
++ public JAXBElement<CTGrayscaleTransform> createCTSystemColorGray(CTGrayscaleTransform value) {\r
++ return new JAXBElement<CTGrayscaleTransform>(_CTSRgbColorGray_QNAME, CTGrayscaleTransform.class, CTSystemColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorAlpha(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorLum(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorLum(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTScRgbColor.class)\r
- public JAXBElement<CTGammaTransform> createCTScRgbColorGamma(CTGammaTransform value) {\r
- return new JAXBElement<CTGammaTransform>(_CTSRgbColorGamma_QNAME, CTGammaTransform.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorAlpha(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTScRgbColor.class)\r
- public JAXBElement<CTInverseGammaTransform> createCTScRgbColorInvGamma(CTInverseGammaTransform value) {\r
- return new JAXBElement<CTInverseGammaTransform>(_CTSRgbColorInvGamma_QNAME, CTInverseGammaTransform.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTGammaTransform> createCTSchemeColorGamma(CTGammaTransform value) {\r
++ return new JAXBElement<CTGammaTransform>(_CTSRgbColorGamma_QNAME, CTGammaTransform.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTInverseGammaTransform> createCTSchemeColorInvGamma(CTInverseGammaTransform value) {\r
++ return new JAXBElement<CTInverseGammaTransform>(_CTSRgbColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPositivePercentage> createCTScRgbColorAlphaMod(CTPositivePercentage value) {\r
- return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTScRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorRedOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorRedOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTScRgbColor.class)\r
- public JAXBElement<CTFixedPercentage> createCTScRgbColorAlphaOff(CTFixedPercentage value) {\r
- return new JAXBElement<CTFixedPercentage>(_CTSRgbColorAlphaOff_QNAME, CTFixedPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPositivePercentage> createCTSchemeColorAlphaMod(CTPositivePercentage value) {\r
++ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorGreenOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorGreenOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTFixedPercentage> createCTSchemeColorAlphaOff(CTFixedPercentage value) {\r
++ return new JAXBElement<CTFixedPercentage>(_CTSRgbColorAlphaOff_QNAME, CTFixedPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPositiveFixedAngle> createCTScRgbColorHue(CTPositiveFixedAngle value) {\r
- return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorGreenOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorRedMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPositiveFixedAngle> createCTSchemeColorHue(CTPositiveFixedAngle value) {\r
++ return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorSatOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSatOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorRedMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorGreenMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorGreenMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorSatOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSatOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorSat(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorGreenMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorBlue(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorBlue(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorRed(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRed_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorSat(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorSatMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSatMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorRed(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRed_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorSatMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSatMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorBlueMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTAngle> createCTSchemeColorHueOff(CTAngle value) {\r
++ return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTScRgbColor.class)\r
- public JAXBElement<CTAngle> createCTScRgbColorHueOff(CTAngle value) {\r
- return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTScRgbColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorShade(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorShade_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorBlueMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorLumMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLumMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorShade(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorShade_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTScRgbColor.class)\r
- public JAXBElement<CTInverseTransform> createCTScRgbColorInv(CTInverseTransform value) {\r
- return new JAXBElement<CTInverseTransform>(_CTSRgbColorInv_QNAME, CTInverseTransform.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorLumMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLumMod_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorLumOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLumOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTInverseTransform> createCTSchemeColorInv(CTInverseTransform value) {\r
++ return new JAXBElement<CTInverseTransform>(_CTSRgbColorInv_QNAME, CTInverseTransform.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorTint(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorTint_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorLumOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLumOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorGreen(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorGreen_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTSchemeColorTint(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorTint_QNAME, CTPositiveFixedPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTScRgbColor.class)\r
- public JAXBElement<CTComplementTransform> createCTScRgbColorComp(CTComplementTransform value) {\r
- return new JAXBElement<CTComplementTransform>(_CTSRgbColorComp_QNAME, CTComplementTransform.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorGreen(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorGreen_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPercentage> createCTScRgbColorBlueOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlueOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTComplementTransform> createCTSchemeColorComp(CTComplementTransform value) {\r
++ return new JAXBElement<CTComplementTransform>(_CTSRgbColorComp_QNAME, CTComplementTransform.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTScRgbColor.class)\r
- public JAXBElement<CTPositivePercentage> createCTScRgbColorHueMod(CTPositivePercentage value) {\r
- return new JAXBElement<CTPositivePercentage>(_CTSRgbColorHueMod_QNAME, CTPositivePercentage.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPercentage> createCTSchemeColorBlueOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueOff_QNAME, CTPercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTScRgbColor.class)\r
- public JAXBElement<CTGrayscaleTransform> createCTScRgbColorGray(CTGrayscaleTransform value) {\r
- return new JAXBElement<CTGrayscaleTransform>(_CTSRgbColorGray_QNAME, CTGrayscaleTransform.class, CTScRgbColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTPositivePercentage> createCTSchemeColorHueMod(CTPositivePercentage value) {\r
++ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorHueMod_QNAME, CTPositivePercentage.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSchemeColor.class)\r
++ public JAXBElement<CTGrayscaleTransform> createCTSchemeColorGray(CTGrayscaleTransform value) {\r
++ return new JAXBElement<CTGrayscaleTransform>(_CTSRgbColorGray_QNAME, CTGrayscaleTransform.class, CTSchemeColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTSystemColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorAlpha(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorLum(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorLum(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTSystemColor.class)\r
- public JAXBElement<CTGammaTransform> createCTSystemColorGamma(CTGammaTransform value) {\r
- return new JAXBElement<CTGammaTransform>(_CTSRgbColorGamma_QNAME, CTGammaTransform.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorAlpha(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTSystemColor.class)\r
- public JAXBElement<CTInverseGammaTransform> createCTSystemColorInvGamma(CTInverseGammaTransform value) {\r
- return new JAXBElement<CTInverseGammaTransform>(_CTSRgbColorInvGamma_QNAME, CTInverseGammaTransform.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTGammaTransform> createCTScRgbColorGamma(CTGammaTransform value) {\r
++ return new JAXBElement<CTGammaTransform>(_CTSRgbColorGamma_QNAME, CTGammaTransform.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTInverseGammaTransform> createCTScRgbColorInvGamma(CTInverseGammaTransform value) {\r
++ return new JAXBElement<CTInverseGammaTransform>(_CTSRgbColorInvGamma_QNAME, CTInverseGammaTransform.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTSystemColor.class)\r
- public JAXBElement<CTPositivePercentage> createCTSystemColorAlphaMod(CTPositivePercentage value) {\r
- return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTSystemColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorRedOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorRedOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTSystemColor.class)\r
- public JAXBElement<CTFixedPercentage> createCTSystemColorAlphaOff(CTFixedPercentage value) {\r
- return new JAXBElement<CTFixedPercentage>(_CTSRgbColorAlphaOff_QNAME, CTFixedPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPositivePercentage> createCTScRgbColorAlphaMod(CTPositivePercentage value) {\r
++ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorGreenOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorGreenOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTFixedPercentage> createCTScRgbColorAlphaOff(CTFixedPercentage value) {\r
++ return new JAXBElement<CTFixedPercentage>(_CTSRgbColorAlphaOff_QNAME, CTFixedPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTSystemColor.class)\r
- public JAXBElement<CTPositiveFixedAngle> createCTSystemColorHue(CTPositiveFixedAngle value) {\r
- return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorGreenOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorRedMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPositiveFixedAngle> createCTScRgbColorHue(CTPositiveFixedAngle value) {\r
++ return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorSatOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSatOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorRedMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorGreenMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorGreenMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorSatOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSatOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorSat(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorGreenMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorBlue(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorSat(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorRed(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRed_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorBlue(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorSatMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSatMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorRed(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRed_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorSatMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSatMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorBlueMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTAngle> createCTScRgbColorHueOff(CTAngle value) {\r
++ return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTSystemColor.class)\r
- public JAXBElement<CTAngle> createCTSystemColorHueOff(CTAngle value) {\r
- return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTSystemColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTSystemColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorShade(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorShade_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorBlueMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorLumMod(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLumMod_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorShade(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorShade_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTSystemColor.class)\r
- public JAXBElement<CTInverseTransform> createCTSystemColorInv(CTInverseTransform value) {\r
- return new JAXBElement<CTInverseTransform>(_CTSRgbColorInv_QNAME, CTInverseTransform.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorLumMod(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLumMod_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorLumOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLumOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTInverseTransform> createCTScRgbColorInv(CTInverseTransform value) {\r
++ return new JAXBElement<CTInverseTransform>(_CTSRgbColorInv_QNAME, CTInverseTransform.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTSystemColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTSystemColorTint(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorTint_QNAME, CTPositiveFixedPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorLumOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLumOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorGreen(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorGreen_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTScRgbColorTint(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorTint_QNAME, CTPositiveFixedPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTSystemColor.class)\r
- public JAXBElement<CTComplementTransform> createCTSystemColorComp(CTComplementTransform value) {\r
- return new JAXBElement<CTComplementTransform>(_CTSRgbColorComp_QNAME, CTComplementTransform.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorGreen(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorGreen_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTSystemColor.class)\r
- public JAXBElement<CTPercentage> createCTSystemColorBlueOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlueOff_QNAME, CTPercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTComplementTransform> createCTScRgbColorComp(CTComplementTransform value) {\r
++ return new JAXBElement<CTComplementTransform>(_CTSRgbColorComp_QNAME, CTComplementTransform.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTSystemColor.class)\r
- public JAXBElement<CTPositivePercentage> createCTSystemColorHueMod(CTPositivePercentage value) {\r
- return new JAXBElement<CTPositivePercentage>(_CTSRgbColorHueMod_QNAME, CTPositivePercentage.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPercentage> createCTScRgbColorBlueOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueOff_QNAME, CTPercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTSystemColor.class)\r
- public JAXBElement<CTGrayscaleTransform> createCTSystemColorGray(CTGrayscaleTransform value) {\r
- return new JAXBElement<CTGrayscaleTransform>(_CTSRgbColorGray_QNAME, CTGrayscaleTransform.class, CTSystemColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTPositivePercentage> createCTScRgbColorHueMod(CTPositivePercentage value) {\r
++ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorHueMod_QNAME, CTPositivePercentage.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTHslColor.class)\r
- public JAXBElement<CTPercentage> createCTHslColorSat(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTHslColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTScRgbColor.class)\r
++ public JAXBElement<CTGrayscaleTransform> createCTScRgbColorGray(CTGrayscaleTransform value) {\r
++ return new JAXBElement<CTGrayscaleTransform>(_CTSRgbColorGray_QNAME, CTGrayscaleTransform.class, CTScRgbColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTHslColor.class)\r
+ public JAXBElement<CTPositiveFixedPercentage> createCTHslColorAlpha(CTPositiveFixedPercentage value) {\r
+ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorLum(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTHslColor.class)\r
+ public JAXBElement<CTGammaTransform> createCTHslColorGamma(CTGammaTransform value) {\r
+ return new JAXBElement<CTGammaTransform>(_CTSRgbColorGamma_QNAME, CTGammaTransform.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTHslColor.class)\r
+ public JAXBElement<CTInverseGammaTransform> createCTHslColorInvGamma(CTInverseGammaTransform value) {\r
+ return new JAXBElement<CTInverseGammaTransform>(_CTSRgbColorInvGamma_QNAME, CTInverseGammaTransform.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTHslColor.class)\r
+ public JAXBElement<CTPositivePercentage> createCTHslColorAlphaMod(CTPositivePercentage value) {\r
+ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorRedOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTHslColor.class)\r
+ public JAXBElement<CTFixedPercentage> createCTHslColorAlphaOff(CTFixedPercentage value) {\r
+ return new JAXBElement<CTFixedPercentage>(_CTSRgbColorAlphaOff_QNAME, CTFixedPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorGreenOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenOff_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTHslColor.class)\r
+ public JAXBElement<CTPositiveFixedAngle> createCTHslColorHue(CTPositiveFixedAngle value) {\r
+ return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorRedMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorSatOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorSatOff_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorGreenMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenMod_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTHslColor.class)\r
- public JAXBElement<CTPercentage> createCTHslColorBlue(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTHslColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTHslColor.class)\r
++ public JAXBElement<CTPercentage> createCTHslColorBlue(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTHslColor.class)\r
++ public JAXBElement<CTPercentage> createCTHslColorSat(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorRed(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorRed_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorSatMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorSatMod_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorBlueMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTHslColor.class)\r
+ public JAXBElement<CTAngle> createCTHslColorHueOff(CTAngle value) {\r
+ return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTHslColor.class)\r
+ public JAXBElement<CTPositiveFixedPercentage> createCTHslColorShade(CTPositiveFixedPercentage value) {\r
+ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorShade_QNAME, CTPositiveFixedPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorLumMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorLumMod_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTHslColor.class)\r
+ public JAXBElement<CTInverseTransform> createCTHslColorInv(CTInverseTransform value) {\r
+ return new JAXBElement<CTInverseTransform>(_CTSRgbColorInv_QNAME, CTInverseTransform.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorLumOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorLumOff_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTHslColor.class)\r
+ public JAXBElement<CTPositiveFixedPercentage> createCTHslColorTint(CTPositiveFixedPercentage value) {\r
+ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorTint_QNAME, CTPositiveFixedPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorGreen(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorGreen_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTHslColor.class)\r
+ public JAXBElement<CTComplementTransform> createCTHslColorComp(CTComplementTransform value) {\r
+ return new JAXBElement<CTComplementTransform>(_CTSRgbColorComp_QNAME, CTComplementTransform.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTHslColor.class)\r
+ public JAXBElement<CTPercentage> createCTHslColorBlueOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueOff_QNAME, CTPercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTHslColor.class)\r
+ public JAXBElement<CTPositivePercentage> createCTHslColorHueMod(CTPositivePercentage value) {\r
+ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorHueMod_QNAME, CTPositivePercentage.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTHslColor.class)\r
+ public JAXBElement<CTGrayscaleTransform> createCTHslColorGray(CTGrayscaleTransform value) {\r
+ return new JAXBElement<CTGrayscaleTransform>(_CTSRgbColorGray_QNAME, CTGrayscaleTransform.class, CTHslColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTPresetColor.class)\r
- public JAXBElement<CTPositiveFixedPercentage> createCTPresetColorAlpha(CTPositiveFixedPercentage value) {\r
- return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTPresetColor.class)\r
++ public JAXBElement<CTPercentage> createCTPresetColorLum(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lum", scope = CTPresetColor.class)\r
- public JAXBElement<CTPercentage> createCTPresetColorLum(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorLum_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alpha", scope = CTPresetColor.class)\r
++ public JAXBElement<CTPositiveFixedPercentage> createCTPresetColorAlpha(CTPositiveFixedPercentage value) {\r
++ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorAlpha_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGammaTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gamma", scope = CTPresetColor.class)\r
+ public JAXBElement<CTGammaTransform> createCTPresetColorGamma(CTGammaTransform value) {\r
+ return new JAXBElement<CTGammaTransform>(_CTSRgbColorGamma_QNAME, CTGammaTransform.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseGammaTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "invGamma", scope = CTPresetColor.class)\r
+ public JAXBElement<CTInverseGammaTransform> createCTPresetColorInvGamma(CTInverseGammaTransform value) {\r
+ return new JAXBElement<CTInverseGammaTransform>(_CTSRgbColorInvGamma_QNAME, CTInverseGammaTransform.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTPresetColor.class)\r
- public JAXBElement<CTPositivePercentage> createCTPresetColorAlphaMod(CTPositivePercentage value) {\r
- return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTPresetColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTPresetColor.class)\r
++ public JAXBElement<CTPercentage> createCTPresetColorRedOff(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redOff", scope = CTPresetColor.class)\r
- public JAXBElement<CTPercentage> createCTPresetColorRedOff(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorRedOff_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
++ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTPresetColor.class)\r
- public JAXBElement<CTPercentage> createCTPresetColorSat(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaMod", scope = CTPresetColor.class)\r
++ public JAXBElement<CTPositivePercentage> createCTPresetColorAlphaMod(CTPositivePercentage value) {\r
++ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorAlphaMod_QNAME, CTPositivePercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "alphaOff", scope = CTPresetColor.class)\r
+ public JAXBElement<CTFixedPercentage> createCTPresetColorAlphaOff(CTFixedPercentage value) {\r
+ return new JAXBElement<CTFixedPercentage>(_CTSRgbColorAlphaOff_QNAME, CTFixedPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenOff", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorGreenOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenOff_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedAngle }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hue", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPositiveFixedAngle> createCTPresetColorHue(CTPositiveFixedAngle value) {\r
+ return new JAXBElement<CTPositiveFixedAngle>(_CTSRgbColorHue_QNAME, CTPositiveFixedAngle.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "redMod", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorRedMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorRedMod_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satOff", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorSatOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorSatOff_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "greenMod", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorGreenMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorGreenMod_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
- @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTPresetColor.class)\r
- public JAXBElement<CTPercentage> createCTPresetColorBlue(CTPercentage value) {\r
- return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blue", scope = CTPresetColor.class)\r
++ public JAXBElement<CTPercentage> createCTPresetColorBlue(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorBlue_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
++ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "sat", scope = CTPresetColor.class)\r
++ public JAXBElement<CTPercentage> createCTPresetColorSat(CTPercentage value) {\r
++ return new JAXBElement<CTPercentage>(_CTSRgbColorSat_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "red", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorRed(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorRed_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "satMod", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorSatMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorSatMod_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueMod", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorBlueMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueMod_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTAngle }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueOff", scope = CTPresetColor.class)\r
+ public JAXBElement<CTAngle> createCTPresetColorHueOff(CTAngle value) {\r
+ return new JAXBElement<CTAngle>(_CTSRgbColorHueOff_QNAME, CTAngle.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "shade", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPositiveFixedPercentage> createCTPresetColorShade(CTPositiveFixedPercentage value) {\r
+ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorShade_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumMod", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorLumMod(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorLumMod_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTInverseTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "inv", scope = CTPresetColor.class)\r
+ public JAXBElement<CTInverseTransform> createCTPresetColorInv(CTInverseTransform value) {\r
+ return new JAXBElement<CTInverseTransform>(_CTSRgbColorInv_QNAME, CTInverseTransform.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "lumOff", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorLumOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorLumOff_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositiveFixedPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "tint", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPositiveFixedPercentage> createCTPresetColorTint(CTPositiveFixedPercentage value) {\r
+ return new JAXBElement<CTPositiveFixedPercentage>(_CTSRgbColorTint_QNAME, CTPositiveFixedPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "green", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorGreen(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorGreen_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTComplementTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "comp", scope = CTPresetColor.class)\r
+ public JAXBElement<CTComplementTransform> createCTPresetColorComp(CTComplementTransform value) {\r
+ return new JAXBElement<CTComplementTransform>(_CTSRgbColorComp_QNAME, CTComplementTransform.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "blueOff", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPercentage> createCTPresetColorBlueOff(CTPercentage value) {\r
+ return new JAXBElement<CTPercentage>(_CTSRgbColorBlueOff_QNAME, CTPercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTPositivePercentage }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "hueMod", scope = CTPresetColor.class)\r
+ public JAXBElement<CTPositivePercentage> createCTPresetColorHueMod(CTPositivePercentage value) {\r
+ return new JAXBElement<CTPositivePercentage>(_CTSRgbColorHueMod_QNAME, CTPositivePercentage.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ /**\r
+ * Create an instance of {@link JAXBElement }{@code <}{@link CTGrayscaleTransform }{@code >}}\r
+ * \r
+ */\r
+ @XmlElementDecl(namespace = "http://schemas.openxmlformats.org/drawingml/2006/main", name = "gray", scope = CTPresetColor.class)\r
+ public JAXBElement<CTGrayscaleTransform> createCTPresetColorGray(CTGrayscaleTransform value) {\r
+ return new JAXBElement<CTGrayscaleTransform>(_CTSRgbColorGray_QNAME, CTGrayscaleTransform.class, CTPresetColor.class, value);\r
+ }\r
+ \r
+ }\r
--- /dev/null
+ /* ====================================================================\r
+ Licensed to the Apache Software Foundation (ASF) under one or more\r
+ contributor license agreements. See the NOTICE file distributed with\r
+ this work for additional information regarding copyright ownership.\r
+ The ASF licenses this file to You under the Apache License, Version 2.0\r
+ (the "License"); you may not use this file except in compliance with\r
+ the License. You may obtain a copy of the License at\r
+ \r
+ http://www.apache.org/licenses/LICENSE-2.0\r
+ \r
+ Unless required by applicable law or agreed to in writing, software\r
+ distributed under the License is distributed on an "AS IS" BASIS,\r
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ See the License for the specific language governing permissions and\r
+ limitations under the License.\r
+ ==================================================================== */\r
+ \r
+ package org.apache.poi.sl.usermodel;\r
+ \r
++import java.awt.geom.GeneralPath;\r
++\r
+ public interface FreeformShape<T extends TextParagraph<? extends TextRun>> extends AutoShape<T> {\r
++ /**\r
++ * Gets the shape path.\r
++ * <p>\r
++ * The path is translated in the shape's coordinate system, i.e.\r
++ * freeform.getPath().getBounds2D() equals to freeform.getAnchor()\r
++ * (small discrepancies are possible due to rounding errors)\r
++ * </p>\r
++ *\r
++ * @return the path\r
++ */\r
++ GeneralPath getPath();\r
+ \r
++ /**\r
++ * Set the shape path\r
++ *\r
++ * @param path shape outline\r
++ * @return the number of points written\r
++ */\r
++ int setPath(GeneralPath path);\r
+ }\r
* @author Yegor Kozlov\r
*/\r
public class Units {\r
++ /**\r
++ * In Escher absolute distances are specified in\r
++ * English Metric Units (EMUs), occasionally referred to as A units;\r
++ * there are 360000 EMUs per centimeter, 914400 EMUs per inch, 12700 EMUs per point.\r
++ */\r
public static final int EMU_PER_PIXEL = 9525;\r
public static final int EMU_PER_POINT = 12700;\r
++ public static final int EMU_PER_CENTIMETER = 360000;\r
+ \r
+ /**\r
+ * Master DPI (576 pixels per inch).\r
+ * Used by the reference coordinate system in PowerPoint (HSLF)\r
+ */\r
+ public static final int MASTER_DPI = 576; \r
+ \r
+ /**\r
+ * Pixels DPI (96 pixels per inch)\r
+ */\r
+ public static final int PIXEL_DPI = 96;\r
+ \r
+ /**\r
+ * Points DPI (72 pixels per inch)\r
+ */\r
+ public static final int POINT_DPI = 72; \r
\r
/**\r
* Converts points to EMUs\r
* \r
* @see <a href="http://msdn.microsoft.com/en-us/library/dd910765(v=office.12).aspx">[MS-OSHARED] - 2.2.1.6 FixedPoint</a>\r
*/\r
- public static double fixedPointToDecimal(int fixedPoint) {\r
+ public static double fixedPointToDouble(int fixedPoint) {\r
int i = (fixedPoint >> 16);\r
int f = (fixedPoint >> 0) & 0xFFFF;\r
- double decimal = (i + f/65536.0);\r
- return decimal;\r
+ double floatPoint = (i + f/65536d);\r
+ return floatPoint;\r
+ }\r
+ \r
+ /**\r
+ * Converts a value of type floating point to a FixedPoint\r
+ *\r
+ * @param floatPoint\r
+ * @return fixedPoint\r
+ * \r
+ * @see <a href="http://msdn.microsoft.com/en-us/library/dd910765(v=office.12).aspx">[MS-OSHARED] - 2.2.1.6 FixedPoint</a>\r
+ */\r
+ public static int doubleToFixedPoint(double floatPoint) {\r
+ int i = (int)Math.floor(floatPoint);\r
+ int f = (int)((floatPoint % 1d)*65536d);\r
+ int fixedPoint = (i << 16) | (f & 0xFFFF);\r
+ return fixedPoint;\r
+ }\r
+ \r
+ public static double masterToPoints(int masterDPI) {\r
+ double points = masterDPI;\r
+ points *= POINT_DPI;\r
+ points /= MASTER_DPI;\r
+ return points;\r
+ }\r
+ \r
+ public static int pointsToMaster(double points) {\r
+ points *= MASTER_DPI;\r
+ points /= POINT_DPI;\r
+ return (int)points;\r
+ }\r
++ \r
++ public static int pointsToPixel(double points) {\r
++ points *= PIXEL_DPI;\r
++ points /= POINT_DPI;\r
++ return (int)points;\r
++ }\r
++\r
++ public static double pixelToPoints(int pixel) {\r
++ double points = pixel;\r
++ points *= POINT_DPI;\r
++ points /= PIXEL_DPI;\r
++ return points;\r
+ }\r
}\r
package org.apache.poi.xslf.usermodel;
import java.awt.Dimension;
-import java.io.*;
-import java.util.*;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
- import java.util.*;
++import java.util.ArrayList;
++import java.util.Collections;
++import java.util.HashMap;
++import java.util.List;
++import java.util.Map;
import java.util.regex.Pattern;
-import org.apache.poi.*;
+import org.apache.poi.POIXMLDocument;
+import org.apache.poi.POIXMLDocumentPart;
+import org.apache.poi.POIXMLException;
- import org.apache.poi.POIXMLRelation;
import org.apache.poi.openxml4j.exceptions.OpenXML4JException;
-import org.apache.poi.openxml4j.opc.*;
-import org.apache.poi.sl.usermodel.*;
-import org.apache.poi.util.*;
+import org.apache.poi.openxml4j.opc.OPCPackage;
+import org.apache.poi.openxml4j.opc.PackagePart;
+import org.apache.poi.openxml4j.opc.PackagePartName;
+import org.apache.poi.openxml4j.opc.TargetMode;
++import org.apache.poi.sl.usermodel.MasterSheet;
++import org.apache.poi.sl.usermodel.Resources;
++import org.apache.poi.sl.usermodel.SlideShow;
+import org.apache.poi.util.Beta;
+import org.apache.poi.util.IOUtils;
+import org.apache.poi.util.Internal;
+import org.apache.poi.util.POILogFactory;
+import org.apache.poi.util.POILogger;
+import org.apache.poi.util.PackageHelper;
+import org.apache.poi.util.Units;
import org.apache.poi.xslf.XSLFSlideShow;
-import org.apache.xmlbeans.*;
+import org.apache.xmlbeans.XmlException;
+import org.apache.xmlbeans.XmlObject;
+import org.apache.xmlbeans.XmlOptions;
import org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraphProperties;
import org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId;
-import org.openxmlformats.schemas.presentationml.x2006.main.*;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTNotesMasterIdList;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTNotesMasterIdListEntry;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTPresentation;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTSlideIdList;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTSlideIdListEntry;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTSlideSize;
+import org.openxmlformats.schemas.presentationml.x2006.main.PresentationDocument;
/**
* High level representation of a ooxml slideshow.
\r
package org.apache.poi.xslf.usermodel;\r
\r
- import org.apache.xmlbeans.XmlObject;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTBackgroundFillStyleList;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTSchemeColor;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTStyleMatrixReference;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D;\r
- import org.openxmlformats.schemas.presentationml.x2006.main.CTBackground;\r
- \r
-import java.awt.*;\r
+import java.awt.Color;\r
+import java.awt.Dimension;\r
- import java.awt.Graphics2D;\r
- import java.awt.Paint;\r
import java.awt.geom.Rectangle2D;\r
\r
-import org.apache.poi.sl.usermodel.*;\r
+ import org.apache.poi.sl.draw.DrawPaint;\r
++import org.apache.poi.sl.usermodel.Background;\r
++import org.apache.poi.sl.usermodel.ColorStyle;\r
++import org.apache.poi.sl.usermodel.FillStyle;\r
++import org.apache.poi.sl.usermodel.PaintStyle;\r
+ import org.apache.poi.sl.usermodel.PaintStyle.SolidPaint;\r
+ import org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D;\r
+ import org.openxmlformats.schemas.presentationml.x2006.main.CTBackground;\r
+ \r
/**\r
* Background shape\r
*\r
import org.apache.poi.util.Beta;\r
import org.apache.poi.util.Internal;\r
import org.apache.xmlbeans.XmlObject;\r
-import org.openxmlformats.schemas.drawingml.x2006.main.*;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTColor;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTHslColor;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTPresetColor;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTSRgbColor;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTScRgbColor;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTSchemeColor;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTSystemColor;\r
import org.w3c.dom.Node;\r
\r
- import java.awt.Color;\r
- import java.util.HashMap;\r
- import java.util.Map;\r
- \r
/**\r
* Encapsulates logic to read color definitions from DrawingML and convert them to java.awt.Color\r
*\r
import java.awt.geom.PathIterator;\r
import java.awt.geom.Rectangle2D;\r
\r
++import org.apache.poi.sl.usermodel.FreeformShape;\r
import org.apache.poi.util.Beta;\r
import org.apache.poi.util.Units;\r
import org.apache.xmlbeans.XmlObject;\r
* @author Yegor Kozlov\r
*/\r
@Beta\r
--public class XSLFFreeformShape extends XSLFAutoShape {\r
++public class XSLFFreeformShape extends XSLFAutoShape implements FreeformShape<XSLFTextParagraph> {\r
\r
/*package*/ XSLFFreeformShape(CTShape shape, XSLFSheet sheet) {\r
super(shape, sheet);\r
}\r
\r
-- /**\r
-- * Set the shape path\r
-- *\r
-- * @param path shape outline\r
-- * @return the number of points written\r
-- */\r
++ @Override\r
public int setPath(GeneralPath path) {\r
CTPath2D ctPath = CTPath2D.Factory.newInstance();\r
\r
return numPoints;\r
}\r
\r
-- /**\r
-- * Gets the shape path.\r
-- * <p>\r
-- * The path is translated in the shape's coordinate system, i.e.\r
-- * freeform.getPath().getBounds2D() equals to freeform.getAnchor()\r
-- * (small discrepancies are possible due to rounding errors)\r
-- * </p>\r
-- *\r
-- * @return the path\r
-- */\r
++ @Override\r
@SuppressWarnings("deprecation")\r
public GeneralPath getPath() {\r
GeneralPath path = new GeneralPath();\r
import org.apache.poi.util.Units;\r
import org.apache.xmlbeans.XmlCursor;\r
import org.apache.xmlbeans.XmlObject;\r
-import org.openxmlformats.schemas.drawingml.x2006.main.*;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTGraphicalObjectData;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTTransform2D;\r
import org.openxmlformats.schemas.presentationml.x2006.main.CTGraphicalObjectFrame;\r
\r
- import javax.xml.namespace.QName;\r
- import java.awt.Graphics2D;\r
- import java.awt.geom.Rectangle2D;\r
- \r
/**\r
* @author Yegor Kozlov\r
*/\r
\r
package org.apache.poi.xslf.usermodel;\r
\r
-import java.util.*;\r
+ import java.awt.geom.Rectangle2D;\r
-import org.apache.poi.openxml4j.opc.*;\r
++import java.util.ArrayList;\r
++import java.util.Iterator;\r
++import java.util.List;\r
+ import java.util.regex.Pattern;\r
+ \r
-import org.apache.poi.util.*;\r
+import org.apache.poi.openxml4j.opc.PackagePart;\r
+import org.apache.poi.openxml4j.opc.PackageRelationship;\r
+import org.apache.poi.openxml4j.opc.TargetMode;\r
+ import org.apache.poi.sl.usermodel.GroupShape;\r
+import org.apache.poi.util.Beta;\r
++import org.apache.poi.util.POILogFactory;\r
++import org.apache.poi.util.POILogger;\r
+import org.apache.poi.util.Units;\r
import org.apache.xmlbeans.XmlObject;\r
-import org.openxmlformats.schemas.drawingml.x2006.main.*;\r
-import org.openxmlformats.schemas.presentationml.x2006.main.*;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTGroupShapeProperties;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTGroupTransform2D;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D;\r
+import org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D;\r
+import org.openxmlformats.schemas.presentationml.x2006.main.CTConnector;\r
+import org.openxmlformats.schemas.presentationml.x2006.main.CTGroupShape;\r
+import org.openxmlformats.schemas.presentationml.x2006.main.CTGroupShapeNonVisual;\r
+import org.openxmlformats.schemas.presentationml.x2006.main.CTShape;\r
\r
- import java.awt.Graphics2D;\r
- import java.awt.geom.AffineTransform;\r
- import java.awt.geom.Rectangle2D;\r
- import java.util.Iterator;\r
- import java.util.List;\r
- import java.util.regex.Pattern;\r
- \r
/**\r
* Represents a group shape that consists of many shapes grouped together.\r
* \r
import org.apache.poi.POIXMLDocumentPart;
import org.apache.poi.openxml4j.opc.PackagePart;
import org.apache.poi.openxml4j.opc.PackageRelationship;
+ import org.apache.poi.sl.usermodel.Notes;
import org.apache.poi.util.Beta;
import org.apache.xmlbeans.XmlException;
-import org.openxmlformats.schemas.presentationml.x2006.main.*;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTCommonSlideData;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTNotesSlide;
+import org.openxmlformats.schemas.presentationml.x2006.main.NotesDocument;
@Beta
- public final class XSLFNotes extends XSLFSheet {
+ public final class XSLFNotes extends XSLFSheet implements Notes<XSLFShape,XMLSlideShow> {
private CTNotesSlide _notes;
/**
package org.apache.poi.xslf.usermodel;
import java.io.IOException;
+ import java.io.OutputStream;
-import org.apache.poi.*;
+import org.apache.poi.POIXMLDocumentPart;
+import org.apache.poi.POIXMLException;
+import org.apache.poi.POIXMLRelation;
import org.apache.poi.openxml4j.opc.PackagePart;
import org.apache.poi.openxml4j.opc.PackageRelationship;
+ import org.apache.poi.sl.usermodel.PictureData;
import org.apache.poi.util.Beta;
import org.apache.poi.util.IOUtils;
\r
package org.apache.poi.xslf.usermodel;\r
\r
-import org.apache.poi.sl.usermodel.*;\r
+ import java.awt.Color;\r
+ import java.awt.geom.Rectangle2D;\r
+ \r
+ import org.apache.poi.sl.draw.DrawPaint;\r
++import org.apache.poi.sl.usermodel.ColorStyle;\r
++import org.apache.poi.sl.usermodel.PaintStyle;\r
+ import org.apache.poi.sl.usermodel.PaintStyle.SolidPaint;\r
++import org.apache.poi.sl.usermodel.Shadow;\r
import org.apache.poi.util.Units;\r
import org.openxmlformats.schemas.drawingml.x2006.main.CTOuterShadowEffect;\r
import org.openxmlformats.schemas.drawingml.x2006.main.CTSchemeColor;\r
\r
package org.apache.poi.xslf.usermodel;\r
\r
- import java.awt.Graphics2D;\r
- import java.awt.geom.AffineTransform;\r
- import java.awt.geom.Rectangle2D;\r
+ import java.io.IOException;\r
+ import java.io.InputStream;\r
+ import java.util.Arrays;\r
+ import java.util.Comparator;\r
\r
-import org.apache.poi.sl.usermodel.*;\r
+ import org.apache.poi.openxml4j.exceptions.InvalidFormatException;\r
+ import org.apache.poi.openxml4j.opc.PackagePart;\r
+ import org.apache.poi.openxml4j.opc.PackageRelationship;\r
++import org.apache.poi.sl.usermodel.ColorStyle;\r
++import org.apache.poi.sl.usermodel.PaintStyle;\r
+ import org.apache.poi.sl.usermodel.PaintStyle.GradientPaint;\r
+ import org.apache.poi.sl.usermodel.PaintStyle.SolidPaint;\r
+ import org.apache.poi.sl.usermodel.PaintStyle.TexturePaint;\r
++import org.apache.poi.sl.usermodel.PlaceableShape;\r
++import org.apache.poi.sl.usermodel.Shape;\r
import org.apache.poi.util.Beta;\r
import org.apache.poi.util.Internal;\r
+ import org.apache.poi.xslf.model.PropertyFetcher;\r
import org.apache.xmlbeans.XmlObject;\r
-import org.openxmlformats.schemas.presentationml.x2006.main.*;\r
+ import org.openxmlformats.schemas.drawingml.x2006.main.*;\r
++import org.openxmlformats.schemas.presentationml.x2006.main.CTApplicationNonVisualDrawingProps;\r
++import org.openxmlformats.schemas.presentationml.x2006.main.CTBackground;\r
++import org.openxmlformats.schemas.presentationml.x2006.main.CTBackgroundProperties;\r
++import org.openxmlformats.schemas.presentationml.x2006.main.CTPlaceholder;\r
++import org.openxmlformats.schemas.presentationml.x2006.main.CTShape;\r
++import org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderType;\r
\r
/**\r
* Base super-class class for all shapes in PresentationML\r
==================================================================== */
package org.apache.poi.xslf.usermodel;
-import java.io.*;
-import java.util.*;
+ import java.awt.Graphics2D;
++import java.io.IOException;
++import java.io.InputStream;
++import java.io.OutputStream;
++import java.util.ArrayList;
++import java.util.HashMap;
++import java.util.Iterator;
++import java.util.List;
++import java.util.Map;
+ import java.util.regex.Pattern;
+
+ import javax.xml.namespace.QName;
+
import org.apache.poi.POIXMLDocumentPart;
import org.apache.poi.POIXMLException;
-import org.apache.poi.openxml4j.opc.*;
+ import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
- import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
+import org.apache.poi.openxml4j.opc.OPCPackage;
+import org.apache.poi.openxml4j.opc.PackagePart;
++import org.apache.poi.openxml4j.opc.PackagePartName;
+import org.apache.poi.openxml4j.opc.PackageRelationship;
+import org.apache.poi.openxml4j.opc.TargetMode;
-import org.apache.poi.util.*;
+ import org.apache.poi.sl.draw.DrawFactory;
+ import org.apache.poi.sl.draw.Drawable;
+ import org.apache.poi.sl.usermodel.Sheet;
+import org.apache.poi.util.Beta;
+import org.apache.poi.util.IOUtils;
+import org.apache.poi.util.Internal;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.XmlOptions;
import org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId;
-import org.openxmlformats.schemas.presentationml.x2006.main.*;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTCommonSlideData;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTConnector;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTGraphicalObjectFrame;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTGroupShape;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTPicture;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTPlaceholder;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTShape;
- import javax.xml.namespace.QName;
- import java.awt.Graphics2D;
- import java.awt.geom.AffineTransform;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.OutputStream;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.Iterator;
- import java.util.List;
- import java.util.Map;
- import java.util.regex.Pattern;
-
@Beta
- public abstract class XSLFSheet extends POIXMLDocumentPart implements XSLFShapeContainer {
+ public abstract class XSLFSheet extends POIXMLDocumentPart implements XSLFShapeContainer, Sheet<XSLFShape, XMLSlideShow> {
private XSLFCommonSlideData _commonSlideData;
private XSLFDrawing _drawing;
private List<XSLFShape> _shapes;
\r
package org.apache.poi.xslf.usermodel;\r
\r
-import org.apache.poi.sl.draw.geom.*;\r
+ import static org.apache.poi.sl.usermodel.PaintStyle.TRANSPARENT_PAINT;\r
+ \r
+ import java.awt.Color;\r
+ import java.awt.geom.Rectangle2D;\r
+ \r
+ import javax.xml.stream.XMLStreamException;\r
+ import javax.xml.stream.XMLStreamReader;\r
+ \r
++import org.apache.poi.openxml4j.opc.PackagePart;\r
++import org.apache.poi.sl.draw.geom.CustomGeometry;\r
++import org.apache.poi.sl.draw.geom.Guide;\r
++import org.apache.poi.sl.draw.geom.PresetGeometries;\r
+ import org.apache.poi.sl.usermodel.*;\r
+ import org.apache.poi.sl.usermodel.LineDecoration.DecorationShape;\r
+ import org.apache.poi.sl.usermodel.LineDecoration.DecorationSize;\r
+ import org.apache.poi.sl.usermodel.PaintStyle.SolidPaint;\r
+ import org.apache.poi.sl.usermodel.StrokeStyle.LineCap;\r
+ import org.apache.poi.sl.usermodel.StrokeStyle.LineCompound;\r
+ import org.apache.poi.sl.usermodel.StrokeStyle.LineDash;\r
import org.apache.poi.util.Beta;\r
import org.apache.poi.util.Units;\r
import org.apache.poi.xslf.model.PropertyFetcher;\r
return null;\r
}\r
\r
- PaintStyle paint = getPaint(spPr, null);\r
- if (paint != null) {\r
- setValue(paint);\r
- return true;\r
+ protected PaintStyle getLinePaint() {\r
+ PropertyFetcher<PaintStyle> fetcher = new PropertyFetcher<PaintStyle>() {\r
+ public boolean fetch(XSLFShape shape) {\r
+ CTLineProperties spPr = shape.getSpPr().getLn();\r
+ if (spPr != null) {\r
+ if (spPr.isSetNoFill()) {\r
+ setValue(TRANSPARENT_PAINT); // use it as 'nofill' value\r
+ return true;\r
+ }\r
++ \r
++ PaintStyle paint = null;\r
++ PackagePart pp = getSheet().getPackagePart();\r
++ for (XmlObject obj : spPr.selectPath("*")) {\r
++ paint = selectPaint(obj, null, pp);\r
++ if (paint != null) {\r
++ setValue(paint);\r
++ return true;\r
++ }\r
++ }\r
++\r
++ CTShapeStyle style = shape.getSpStyle();\r
++ if (style != null) {\r
++ paint = selectPaint(style.getLnRef());\r
++ if (paint != null) {\r
++ setValue(paint);\r
++ return true;\r
++ }\r
+ }\r
+ }\r
+ return false;\r
+ \r
+ }\r
+ };\r
+ fetchShapeProperty(fetcher);\r
+ \r
+ PaintStyle paint = fetcher.getValue();\r
+ if (paint != null) return paint;\r
+ \r
+ // line color was not found, check if it is defined in the theme\r
+ CTShapeStyle style = getSpStyle();\r
+ if (style == null) return TRANSPARENT_PAINT;\r
+ \r
+ // get a reference to a line style within the style matrix.\r
+ CTStyleMatrixReference lnRef = style.getLnRef();\r
+ int idx = (int)lnRef.getIdx();\r
+ CTSchemeColor phClr = lnRef.getSchemeClr();\r
+ if(idx > 0){\r
+ XSLFTheme theme = getSheet().getTheme();\r
+ XmlObject lnProps = theme.getXmlObject().\r
+ getThemeElements().getFmtScheme().getLnStyleLst().selectPath("*")[idx - 1];\r
+ paint = getPaint(lnProps, phClr);\r
+ }\r
+ \r
+ return paint == null ? TRANSPARENT_PAINT : paint;\r
+ }\r
+ \r
/**\r
*\r
* @param width line width in points. <code>0</code> means no line\r
import org.apache.poi.POIXMLDocumentPart;
import org.apache.poi.openxml4j.opc.PackagePart;
import org.apache.poi.openxml4j.opc.PackageRelationship;
+ import org.apache.poi.sl.draw.DrawFactory;
+ import org.apache.poi.sl.draw.Drawable;
+ import org.apache.poi.sl.usermodel.Slide;
import org.apache.poi.util.Beta;
import org.apache.xmlbeans.XmlException;
-import org.openxmlformats.schemas.drawingml.x2006.main.*;
-import org.openxmlformats.schemas.presentationml.x2006.main.*;
++import org.openxmlformats.schemas.drawingml.x2006.main.CTBlip;
+import org.openxmlformats.schemas.drawingml.x2006.main.CTGroupShapeProperties;
+import org.openxmlformats.schemas.drawingml.x2006.main.CTGroupTransform2D;
+import org.openxmlformats.schemas.drawingml.x2006.main.CTNonVisualDrawingProps;
+import org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D;
+import org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D;
- import org.openxmlformats.schemas.drawingml.x2006.main.CTBlip;
++import org.openxmlformats.schemas.presentationml.x2006.main.CTBackground;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTCommonSlideData;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTGroupShape;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTGroupShapeNonVisual;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTSlide;
+import org.openxmlformats.schemas.presentationml.x2006.main.SldDocument;
- import org.openxmlformats.schemas.presentationml.x2006.main.CTBackground;
-
- import java.awt.Graphics2D;
- import java.io.IOException;
@Beta
- public final class XSLFSlide extends XSLFSheet {
+ public final class XSLFSlide extends XSLFSheet implements Slide<XSLFShape, XMLSlideShow, XSLFNotes> {
private final CTSlide _slide;
private XSLFSlideLayout _layout;
private XSLFComments _comments;
==================================================================== */
package org.apache.poi.xslf.usermodel;
++import java.io.IOException;
++
import org.apache.poi.POIXMLDocumentPart;
import org.apache.poi.openxml4j.opc.PackagePart;
import org.apache.poi.openxml4j.opc.PackageRelationship;
import org.openxmlformats.schemas.presentationml.x2006.main.CTSlideLayout;
import org.openxmlformats.schemas.presentationml.x2006.main.SldLayoutDocument;
--import java.io.IOException;
--
@Beta
- public class XSLFSlideLayout extends XSLFSheet {
+ public class XSLFSlideLayout extends XSLFSheet implements MasterSheet<XSLFShape, XMLSlideShow> {
private CTSlideLayout _layout;
private XSLFSlideMaster _master;
==================================================================== */
package org.apache.poi.xslf.usermodel;
++import java.io.IOException;
++import java.util.HashMap;
++import java.util.Map;
++
import org.apache.poi.POIXMLDocumentPart;
import org.apache.poi.openxml4j.opc.PackagePart;
import org.apache.poi.openxml4j.opc.PackageRelationship;
import org.openxmlformats.schemas.presentationml.x2006.main.CTSlideMasterTextStyles;
import org.openxmlformats.schemas.presentationml.x2006.main.SldMasterDocument;
--import java.io.IOException;
--import java.util.HashMap;
--import java.util.Map;
--
/**
* Slide master object associated with this layout.
* <p>
package org.apache.poi.xslf.usermodel;\r
\r
import java.awt.Color;\r
- import java.awt.Graphics2D;\r
- import java.awt.font.LineBreakMeasurer;\r
- import java.awt.font.TextAttribute;\r
- import java.awt.font.TextLayout;\r
- import java.awt.geom.Rectangle2D;\r
- import java.text.AttributedCharacterIterator;\r
- import java.text.AttributedString;\r
-import java.util.*;\r
+import java.util.ArrayList;\r
+import java.util.Iterator;\r
+import java.util.List;\r
- import java.util.Map;\r
\r
- import org.apache.poi.sl.usermodel.TextPainter;\r
+ import org.apache.poi.sl.usermodel.AutoNumberingScheme;\r
+ import org.apache.poi.sl.usermodel.TextParagraph;\r
-import org.apache.poi.util.*;\r
+import org.apache.poi.util.Beta;\r
+import org.apache.poi.util.Internal;\r
+import org.apache.poi.util.Units;\r
import org.apache.poi.xslf.model.ParagraphPropertyFetcher;\r
+ import org.apache.xmlbeans.XmlCursor;\r
import org.apache.xmlbeans.XmlObject;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTColor;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTRegularTextRun;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTSRgbColor;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextAutonumberBullet;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletSizePercent;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextBulletSizePoint;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharBullet;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharacterProperties;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextField;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextFont;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextLineBreak;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextNormalAutofit;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraphProperties;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextSpacing;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextTabStop;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.CTTextTabStopList;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.STTextAlignType;\r
- import org.openxmlformats.schemas.drawingml.x2006.main.STTextAutonumberScheme;\r
+ import org.openxmlformats.schemas.drawingml.x2006.main.*;\r
import org.openxmlformats.schemas.presentationml.x2006.main.CTPlaceholder;\r
import org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderType;\r
\r
package org.apache.poi.xslf.usermodel;
- import java.awt.Graphics2D;
- import java.awt.geom.AffineTransform;
import java.awt.geom.Rectangle2D;
- import java.awt.image.BufferedImage;
-import java.util.*;
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.List;
import org.apache.poi.POIXMLException;
-import org.apache.poi.sl.usermodel.*;
+ import org.apache.poi.sl.draw.DrawFactory;
+ import org.apache.poi.sl.draw.DrawTextShape;
++import org.apache.poi.sl.usermodel.Insets2D;
++import org.apache.poi.sl.usermodel.TextShape;
++import org.apache.poi.sl.usermodel.VerticalAlignment;
import org.apache.poi.util.Beta;
import org.apache.poi.util.Units;
import org.apache.poi.xslf.model.PropertyFetcher;
import org.apache.poi.xslf.model.TextBodyPropertyFetcher;
import org.apache.xmlbeans.XmlObject;
-import org.openxmlformats.schemas.drawingml.x2006.main.*;
-import org.openxmlformats.schemas.presentationml.x2006.main.*;
+import org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody;
+import org.openxmlformats.schemas.drawingml.x2006.main.CTTextBodyProperties;
++import org.openxmlformats.schemas.drawingml.x2006.main.CTTextListStyle;
+import org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph;
+import org.openxmlformats.schemas.drawingml.x2006.main.STTextAnchoringType;
+import org.openxmlformats.schemas.drawingml.x2006.main.STTextVerticalType;
+import org.openxmlformats.schemas.drawingml.x2006.main.STTextWrappingType;
- import org.openxmlformats.schemas.presentationml.x2006.main.CTApplicationNonVisualDrawingProps;
+import org.openxmlformats.schemas.presentationml.x2006.main.CTPlaceholder;
- import org.openxmlformats.schemas.presentationml.x2006.main.CTShape;
- import org.openxmlformats.schemas.presentationml.x2006.main.STPlaceholderType;
/**
* Represents a shape that can hold text.
--- /dev/null
--- /dev/null
++<?xml version="1.0" encoding="utf-8"?>\r
++<presetShapeDefinitons>\r
++ <accentBorderCallout1>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 112500" />\r
++\r
++ <gd name="adj4" fmla="val -38333" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <close />\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </accentBorderCallout1>\r
++ <accentBorderCallout2>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 18750" />\r
++\r
++ <gd name="adj4" fmla="val -16667" />\r
++\r
++ <gd name="adj5" fmla="val 112500" />\r
++\r
++ <gd name="adj6" fmla="val -46667" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ <gd name="y3" fmla="*/ h adj5 100000" />\r
++ <gd name="x3" fmla="*/ w adj6 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <close />\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </accentBorderCallout2>\r
++ <accentBorderCallout3>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 18750" />\r
++\r
++ <gd name="adj4" fmla="val -16667" />\r
++\r
++ <gd name="adj5" fmla="val 100000" />\r
++\r
++ <gd name="adj6" fmla="val -16667" />\r
++\r
++ <gd name="adj7" fmla="val 112963" />\r
++\r
++ <gd name="adj8" fmla="val -8333" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ <gd name="y3" fmla="*/ h adj5 100000" />\r
++ <gd name="x3" fmla="*/ w adj6 100000" />\r
++ <gd name="y4" fmla="*/ h adj7 100000" />\r
++ <gd name="x4" fmla="*/ w adj8 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj8" minX="-2147483647" maxX="2147483647" gdRefY="adj7" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x4" y="y4" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <close />\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </accentBorderCallout3>\r
++ <accentCallout1>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 112500" />\r
++\r
++ <gd name="adj4" fmla="val -38333" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <close />\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </accentCallout1>\r
++ <accentCallout2>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 18750" />\r
++\r
++ <gd name="adj4" fmla="val -16667" />\r
++\r
++ <gd name="adj5" fmla="val 112500" />\r
++\r
++ <gd name="adj6" fmla="val -46667" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ <gd name="y3" fmla="*/ h adj5 100000" />\r
++ <gd name="x3" fmla="*/ w adj6 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <close />\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </accentCallout2>\r
++ <accentCallout3>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 18750" />\r
++\r
++ <gd name="adj4" fmla="val -16667" />\r
++\r
++ <gd name="adj5" fmla="val 100000" />\r
++\r
++ <gd name="adj6" fmla="val -16667" />\r
++\r
++ <gd name="adj7" fmla="val 112963" />\r
++\r
++ <gd name="adj8" fmla="val -8333" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ <gd name="y3" fmla="*/ h adj5 100000" />\r
++ <gd name="x3" fmla="*/ w adj6 100000" />\r
++ <gd name="y4" fmla="*/ h adj7 100000" />\r
++ <gd name="x4" fmla="*/ w adj8 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj8" minX="-2147483647" maxX="2147483647" gdRefY="adj7" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x4" y="y4" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <close />\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </accentCallout3>\r
++ <actionButtonBackPrevious>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g10" fmla="+- vc dx2 0" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g12" fmla="+- hc dx2 0" />\r
++ </gdLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g11" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g11" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g11" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </actionButtonBackPrevious>\r
++ <actionButtonBeginning>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g10" fmla="+- vc dx2 0" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g12" fmla="+- hc dx2 0" />\r
++ <gd name="g13" fmla="*/ ss 3 4" />\r
++ <gd name="g14" fmla="*/ g13 1 8" />\r
++ <gd name="g15" fmla="*/ g13 1 4" />\r
++ <gd name="g16" fmla="+- g11 g14 0" />\r
++ <gd name="g17" fmla="+- g11 g15 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g17" y="vc" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g12" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g16" y="g9" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g16" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g17" y="vc" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g12" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g16" y="g9" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g16" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g17" y="vc" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g12" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g16" y="g9" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g16" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g9" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonBeginning>\r
++ <actionButtonBlank>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonBlank>\r
++ <actionButtonDocument>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g10" fmla="+- vc dx2 0" />\r
++ <gd name="dx1" fmla="*/ ss 9 32" />\r
++ <gd name="g11" fmla="+- hc 0 dx1" />\r
++ <gd name="g12" fmla="+- hc dx1 0" />\r
++ <gd name="g13" fmla="*/ ss 3 16" />\r
++ <gd name="g14" fmla="+- g12 0 g13" />\r
++ <gd name="g15" fmla="+- g9 g13 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g11" y="g9" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g14" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g15" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darkenLess" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="g11" y="g9" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g14" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g14" y="g15" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g15" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g14" y="g9" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g14" y="g15" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g15" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g11" y="g9" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g14" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g15" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g12" y="g15" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g14" y="g15" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g14" y="g9" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonDocument>\r
++ <actionButtonEnd>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g10" fmla="+- vc dx2 0" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g12" fmla="+- hc dx2 0" />\r
++ <gd name="g13" fmla="*/ ss 3 4" />\r
++ <gd name="g14" fmla="*/ g13 3 4" />\r
++ <gd name="g15" fmla="*/ g13 7 8" />\r
++ <gd name="g16" fmla="+- g11 g14 0" />\r
++ <gd name="g17" fmla="+- g11 g15 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g16" y="vc" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g17" y="g9" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g12" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g17" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g16" y="vc" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g17" y="g9" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g12" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g17" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g16" y="vc" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g9" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g17" y="g9" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g12" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g17" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonEnd>\r
++ <actionButtonForwardNext>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g10" fmla="+- vc dx2 0" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g12" fmla="+- hc dx2 0" />\r
++ </gdLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g12" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g12" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g12" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g9" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </actionButtonForwardNext>\r
++ <actionButtonHelp>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g13" fmla="*/ ss 3 4" />\r
++ <gd name="g14" fmla="*/ g13 1 7" />\r
++ <gd name="g15" fmla="*/ g13 3 14" />\r
++ <gd name="g16" fmla="*/ g13 2 7" />\r
++ <gd name="g19" fmla="*/ g13 3 7" />\r
++ <gd name="g20" fmla="*/ g13 4 7" />\r
++ <gd name="g21" fmla="*/ g13 17 28" />\r
++ <gd name="g23" fmla="*/ g13 21 28" />\r
++ <gd name="g24" fmla="*/ g13 11 14" />\r
++ <gd name="g27" fmla="+- g9 g16 0" />\r
++ <gd name="g29" fmla="+- g9 g21 0" />\r
++ <gd name="g30" fmla="+- g9 g23 0" />\r
++ <gd name="g31" fmla="+- g9 g24 0" />\r
++ <gd name="g33" fmla="+- g11 g15 0" />\r
++ <gd name="g36" fmla="+- g11 g19 0" />\r
++ <gd name="g37" fmla="+- g11 g20 0" />\r
++ <gd name="g41" fmla="*/ g13 1 14" />\r
++ <gd name="g42" fmla="*/ g13 3 28" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g33" y="g27" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="g16" hR="g16" stAng="cd2" swAng="cd2" />\r
++ <arcTo wR="g14" hR="g15" stAng="0" swAng="cd4" />\r
++ <arcTo wR="g41" hR="g42" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="g37" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g36" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g36" y="g29" />\r
++ </lnTo>\r
++ <arcTo wR="g14" hR="g15" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="g41" hR="g42" stAng="cd4" swAng="-5400000" />\r
++ <arcTo wR="g14" hR="g14" stAng="0" swAng="-10800000" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="g31" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="g42" hR="g42" stAng="3cd4" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g33" y="g27" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="g16" hR="g16" stAng="cd2" swAng="cd2" />\r
++ <arcTo wR="g14" hR="g15" stAng="0" swAng="cd4" />\r
++ <arcTo wR="g41" hR="g42" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="g37" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g36" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g36" y="g29" />\r
++ </lnTo>\r
++ <arcTo wR="g14" hR="g15" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="g41" hR="g42" stAng="cd4" swAng="-5400000" />\r
++ <arcTo wR="g14" hR="g14" stAng="0" swAng="-10800000" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="g31" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="g42" hR="g42" stAng="3cd4" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g33" y="g27" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="g16" hR="g16" stAng="cd2" swAng="cd2" />\r
++ <arcTo wR="g14" hR="g15" stAng="0" swAng="cd4" />\r
++ <arcTo wR="g41" hR="g42" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="g37" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g36" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g36" y="g29" />\r
++ </lnTo>\r
++ <arcTo wR="g14" hR="g15" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="g41" hR="g42" stAng="cd4" swAng="-5400000" />\r
++ <arcTo wR="g14" hR="g14" stAng="0" swAng="-10800000" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="g31" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="g42" hR="g42" stAng="3cd4" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonHelp>\r
++ <actionButtonHome>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g10" fmla="+- vc dx2 0" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g12" fmla="+- hc dx2 0" />\r
++ <gd name="g13" fmla="*/ ss 3 4" />\r
++ <gd name="g14" fmla="*/ g13 1 16" />\r
++ <gd name="g15" fmla="*/ g13 1 8" />\r
++ <gd name="g16" fmla="*/ g13 3 16" />\r
++ <gd name="g17" fmla="*/ g13 5 16" />\r
++ <gd name="g18" fmla="*/ g13 7 16" />\r
++ <gd name="g19" fmla="*/ g13 9 16" />\r
++ <gd name="g20" fmla="*/ g13 11 16" />\r
++ <gd name="g21" fmla="*/ g13 3 4" />\r
++ <gd name="g22" fmla="*/ g13 13 16" />\r
++ <gd name="g23" fmla="*/ g13 7 8" />\r
++ <gd name="g24" fmla="+- g9 g14 0" />\r
++ <gd name="g25" fmla="+- g9 g16 0" />\r
++ <gd name="g26" fmla="+- g9 g17 0" />\r
++ <gd name="g27" fmla="+- g9 g21 0" />\r
++ <gd name="g28" fmla="+- g11 g15 0" />\r
++ <gd name="g29" fmla="+- g11 g18 0" />\r
++ <gd name="g30" fmla="+- g11 g19 0" />\r
++ <gd name="g31" fmla="+- g11 g20 0" />\r
++ <gd name="g32" fmla="+- g11 g22 0" />\r
++ <gd name="g33" fmla="+- g11 g23 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="g9" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g11" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g28" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g28" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g26" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g24" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g24" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g25" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darkenLess" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="g32" y="g26" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g24" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g24" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g25" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g28" y="vc" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g28" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g29" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g29" y="g27" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g30" y="g27" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g30" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="hc" y="g9" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g29" y="g27" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g30" y="g27" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g30" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g29" y="g10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="hc" y="g9" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g25" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g24" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g24" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g26" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g28" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g28" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g31" y="g25" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g26" />\r
++ </lnTo>\r
++\r
++ <moveTo>\r
++ <pt x="g33" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g28" y="vc" />\r
++ </lnTo>\r
++\r
++ <moveTo>\r
++ <pt x="g29" y="g10" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g29" y="g27" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g30" y="g27" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g30" y="g10" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonHome>\r
++ <actionButtonInformation>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g13" fmla="*/ ss 3 4" />\r
++ <gd name="g14" fmla="*/ g13 1 32" />\r
++ <gd name="g17" fmla="*/ g13 5 16" />\r
++ <gd name="g18" fmla="*/ g13 3 8" />\r
++ <gd name="g19" fmla="*/ g13 13 32" />\r
++ <gd name="g20" fmla="*/ g13 19 32" />\r
++ <gd name="g22" fmla="*/ g13 11 16" />\r
++ <gd name="g23" fmla="*/ g13 13 16" />\r
++ <gd name="g24" fmla="*/ g13 7 8" />\r
++ <gd name="g25" fmla="+- g9 g14 0" />\r
++ <gd name="g28" fmla="+- g9 g17 0" />\r
++ <gd name="g29" fmla="+- g9 g18 0" />\r
++ <gd name="g30" fmla="+- g9 g23 0" />\r
++ <gd name="g31" fmla="+- g9 g24 0" />\r
++ <gd name="g32" fmla="+- g11 g17 0" />\r
++ <gd name="g34" fmla="+- g11 g19 0" />\r
++ <gd name="g35" fmla="+- g11 g20 0" />\r
++ <gd name="g37" fmla="+- g11 g22 0" />\r
++ <gd name="g38" fmla="*/ g13 3 32" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="g9" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="dx2" hR="dx2" stAng="3cd4" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="hc" y="g9" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="dx2" hR="dx2" stAng="3cd4" swAng="21600000" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="g25" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="g38" hR="g38" stAng="3cd4" swAng="21600000" />\r
++ <moveTo>\r
++ <pt x="g32" y="g28" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g32" y="g29" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g34" y="g29" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g34" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g31" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g37" y="g31" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g37" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g28" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="lighten" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="hc" y="g25" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="g38" hR="g38" stAng="3cd4" swAng="21600000" />\r
++ <moveTo>\r
++ <pt x="g32" y="g28" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g35" y="g28" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g37" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g37" y="g31" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g31" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g34" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g34" y="g29" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g29" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="hc" y="g9" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="dx2" hR="dx2" stAng="3cd4" swAng="21600000" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="g25" />\r
++ </moveTo>\r
++\r
++ <arcTo wR="g38" hR="g38" stAng="3cd4" swAng="21600000" />\r
++ <moveTo>\r
++ <pt x="g32" y="g28" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g35" y="g28" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g37" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g37" y="g31" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g31" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g34" y="g30" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g34" y="g29" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g29" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonInformation>\r
++ <actionButtonMovie>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g10" fmla="+- vc dx2 0" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g12" fmla="+- hc dx2 0" />\r
++ <gd name="g13" fmla="*/ ss 3 4" />\r
++ <gd name="g14" fmla="*/ g13 1455 21600" />\r
++ <gd name="g15" fmla="*/ g13 1905 21600" />\r
++ <gd name="g16" fmla="*/ g13 2325 21600" />\r
++ <gd name="g17" fmla="*/ g13 16155 21600" />\r
++ <gd name="g18" fmla="*/ g13 17010 21600" />\r
++ <gd name="g19" fmla="*/ g13 19335 21600" />\r
++ <gd name="g20" fmla="*/ g13 19725 21600" />\r
++ <gd name="g21" fmla="*/ g13 20595 21600" />\r
++ <gd name="g22" fmla="*/ g13 5280 21600" />\r
++ <gd name="g23" fmla="*/ g13 5730 21600" />\r
++ <gd name="g24" fmla="*/ g13 6630 21600" />\r
++ <gd name="g25" fmla="*/ g13 7492 21600" />\r
++ <gd name="g26" fmla="*/ g13 9067 21600" />\r
++ <gd name="g27" fmla="*/ g13 9555 21600" />\r
++ <gd name="g28" fmla="*/ g13 13342 21600" />\r
++ <gd name="g29" fmla="*/ g13 14580 21600" />\r
++ <gd name="g30" fmla="*/ g13 15592 21600" />\r
++ <gd name="g31" fmla="+- g11 g14 0" />\r
++ <gd name="g32" fmla="+- g11 g15 0" />\r
++ <gd name="g33" fmla="+- g11 g16 0" />\r
++ <gd name="g34" fmla="+- g11 g17 0" />\r
++ <gd name="g35" fmla="+- g11 g18 0" />\r
++ <gd name="g36" fmla="+- g11 g19 0" />\r
++ <gd name="g37" fmla="+- g11 g20 0" />\r
++ <gd name="g38" fmla="+- g11 g21 0" />\r
++ <gd name="g39" fmla="+- g9 g22 0" />\r
++ <gd name="g40" fmla="+- g9 g23 0" />\r
++ <gd name="g41" fmla="+- g9 g24 0" />\r
++ <gd name="g42" fmla="+- g9 g25 0" />\r
++ <gd name="g43" fmla="+- g9 g26 0" />\r
++ <gd name="g44" fmla="+- g9 g27 0" />\r
++ <gd name="g45" fmla="+- g9 g28 0" />\r
++ <gd name="g46" fmla="+- g9 g29 0" />\r
++ <gd name="g47" fmla="+- g9 g30 0" />\r
++ <gd name="g48" fmla="+- g9 g31 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g11" y="g39" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="g44" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g44" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g43" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="g43" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="g47" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g47" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g45" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g36" y="g45" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g38" y="g46" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g46" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g41" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g38" y="g41" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g37" y="g42" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g42" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g41" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g34" y="g40" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g40" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g39" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g11" y="g39" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="g44" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g44" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g43" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="g43" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="g47" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g47" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g45" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g36" y="g45" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g38" y="g46" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g46" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g41" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g38" y="g41" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g37" y="g42" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g42" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g41" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g34" y="g40" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g40" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g39" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g11" y="g39" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g31" y="g39" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g40" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g34" y="g40" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g41" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g42" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g37" y="g42" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g38" y="g41" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g41" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g46" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g38" y="g46" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g36" y="g45" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g45" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g35" y="g47" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="g47" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g33" y="g43" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g32" y="g43" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g31" y="g44" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g44" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonMovie>\r
++ <actionButtonReturn>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g10" fmla="+- vc dx2 0" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g12" fmla="+- hc dx2 0" />\r
++ <gd name="g13" fmla="*/ ss 3 4" />\r
++ <gd name="g14" fmla="*/ g13 7 8" />\r
++ <gd name="g15" fmla="*/ g13 3 4" />\r
++ <gd name="g16" fmla="*/ g13 5 8" />\r
++ <gd name="g17" fmla="*/ g13 3 8" />\r
++ <gd name="g18" fmla="*/ g13 1 4" />\r
++ <gd name="g19" fmla="+- g9 g15 0" />\r
++ <gd name="g20" fmla="+- g9 g16 0" />\r
++ <gd name="g21" fmla="+- g9 g18 0" />\r
++ <gd name="g22" fmla="+- g11 g14 0" />\r
++ <gd name="g23" fmla="+- g11 g15 0" />\r
++ <gd name="g24" fmla="+- g11 g16 0" />\r
++ <gd name="g25" fmla="+- g11 g17 0" />\r
++ <gd name="g26" fmla="+- g11 g18 0" />\r
++ <gd name="g27" fmla="*/ g13 1 8" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g12" y="g21" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g23" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g24" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g24" y="g20" />\r
++ </lnTo>\r
++ <arcTo wR="g27" hR="g27" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="g25" y="g19" />\r
++ </lnTo>\r
++ <arcTo wR="g27" hR="g27" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="g26" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g20" />\r
++ </lnTo>\r
++ <arcTo wR="g17" hR="g17" stAng="cd2" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="hc" y="g10" />\r
++ </lnTo>\r
++ <arcTo wR="g17" hR="g17" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="g22" y="g21" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g12" y="g21" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g23" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g24" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g24" y="g20" />\r
++ </lnTo>\r
++ <arcTo wR="g27" hR="g27" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="g25" y="g19" />\r
++ </lnTo>\r
++ <arcTo wR="g27" hR="g27" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="g26" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g20" />\r
++ </lnTo>\r
++ <arcTo wR="g17" hR="g17" stAng="cd2" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="hc" y="g10" />\r
++ </lnTo>\r
++ <arcTo wR="g17" hR="g17" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="g22" y="g21" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g12" y="g21" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g22" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g22" y="g20" />\r
++ </lnTo>\r
++ <arcTo wR="g17" hR="g17" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="g25" y="g10" />\r
++ </lnTo>\r
++ <arcTo wR="g17" hR="g17" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="g11" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g26" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g26" y="g20" />\r
++ </lnTo>\r
++ <arcTo wR="g27" hR="g27" stAng="cd2" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="hc" y="g19" />\r
++ </lnTo>\r
++ <arcTo wR="g27" hR="g27" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="g24" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g23" y="g9" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonReturn>\r
++ <actionButtonSound>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx2" fmla="*/ ss 3 8" />\r
++ <gd name="g9" fmla="+- vc 0 dx2" />\r
++ <gd name="g10" fmla="+- vc dx2 0" />\r
++ <gd name="g11" fmla="+- hc 0 dx2" />\r
++ <gd name="g12" fmla="+- hc dx2 0" />\r
++ <gd name="g13" fmla="*/ ss 3 4" />\r
++ <gd name="g14" fmla="*/ g13 1 8" />\r
++ <gd name="g15" fmla="*/ g13 5 16" />\r
++ <gd name="g16" fmla="*/ g13 5 8" />\r
++ <gd name="g17" fmla="*/ g13 11 16" />\r
++ <gd name="g18" fmla="*/ g13 3 4" />\r
++ <gd name="g19" fmla="*/ g13 7 8" />\r
++ <gd name="g20" fmla="+- g9 g14 0" />\r
++ <gd name="g21" fmla="+- g9 g15 0" />\r
++ <gd name="g22" fmla="+- g9 g17 0" />\r
++ <gd name="g23" fmla="+- g9 g19 0" />\r
++ <gd name="g24" fmla="+- g11 g15 0" />\r
++ <gd name="g25" fmla="+- g11 g16 0" />\r
++ <gd name="g26" fmla="+- g11 g18 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g11" y="g21" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="g22" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g24" y="g22" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g25" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g25" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g24" y="g21" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g11" y="g21" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g11" y="g22" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g24" y="g22" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g25" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g25" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g24" y="g21" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="g11" y="g21" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="g24" y="g21" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g25" y="g9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g25" y="g10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g24" y="g22" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="g11" y="g22" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="g26" y="g21" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g20" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="g26" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g12" y="vc" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="g26" y="g22" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="g12" y="g23" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </actionButtonSound>\r
++ <arc>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 16200000" />\r
++ <gd name="adj2" fmla="val 0" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="stAng" fmla="pin 0 adj1 21599999" />\r
++ <gd name="enAng" fmla="pin 0 adj2 21599999" />\r
++ <gd name="sw11" fmla="+- enAng 0 stAng" />\r
++ <gd name="sw12" fmla="+- sw11 21600000 0" />\r
++ <gd name="swAng" fmla="?: sw11 sw11 sw12" />\r
++ <gd name="wt1" fmla="sin wd2 stAng" />\r
++ <gd name="ht1" fmla="cos hd2 stAng" />\r
++ <gd name="dx1" fmla="cat2 wd2 ht1 wt1" />\r
++ <gd name="dy1" fmla="sat2 hd2 ht1 wt1" />\r
++ <gd name="wt2" fmla="sin wd2 enAng" />\r
++ <gd name="ht2" fmla="cos hd2 enAng" />\r
++ <gd name="dx2" fmla="cat2 wd2 ht2 wt2" />\r
++ <gd name="dy2" fmla="sat2 hd2 ht2 wt2" />\r
++ <gd name="x1" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- vc dy1 0" />\r
++ <gd name="x2" fmla="+- hc dx2 0" />\r
++ <gd name="y2" fmla="+- vc dy2 0" />\r
++ <gd name="sw0" fmla="+- 21600000 0 stAng" />\r
++ <gd name="da1" fmla="+- swAng 0 sw0" />\r
++ <gd name="g1" fmla="max x1 x2" />\r
++ <gd name="ir" fmla="?: da1 r g1" />\r
++ <gd name="sw1" fmla="+- cd4 0 stAng" />\r
++ <gd name="sw2" fmla="+- 27000000 0 stAng" />\r
++ <gd name="sw3" fmla="?: sw1 sw1 sw2" />\r
++ <gd name="da2" fmla="+- swAng 0 sw3" />\r
++ <gd name="g5" fmla="max y1 y2" />\r
++ <gd name="ib" fmla="?: da2 b g5" />\r
++ <gd name="sw4" fmla="+- cd2 0 stAng" />\r
++ <gd name="sw5" fmla="+- 32400000 0 stAng" />\r
++ <gd name="sw6" fmla="?: sw4 sw4 sw5" />\r
++ <gd name="da3" fmla="+- swAng 0 sw6" />\r
++ <gd name="g9" fmla="min x1 x2" />\r
++ <gd name="il" fmla="?: da3 l g9" />\r
++ <gd name="sw7" fmla="+- 3cd4 0 stAng" />\r
++ <gd name="sw8" fmla="+- 37800000 0 stAng" />\r
++ <gd name="sw9" fmla="?: sw7 sw7 sw8" />\r
++ <gd name="da4" fmla="+- swAng 0 sw9" />\r
++ <gd name="g13" fmla="min y1 y2" />\r
++ <gd name="it" fmla="?: da4 t g13" />\r
++ <gd name="cang1" fmla="+- stAng 0 cd4" />\r
++ <gd name="cang2" fmla="+- enAng cd4 0" />\r
++ <gd name="cang3" fmla="+/ cang1 cang2 2" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahPolar gdRefAng="adj1" minAng="0" maxAng="21599999">\r
++ <pos x="x1" y="y1" />\r
++ </ahPolar>\r
++ <ahPolar gdRefAng="adj2" minAng="0" maxAng="21599999">\r
++ <pos x="x2" y="y2" />\r
++ </ahPolar>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cang1">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cang3">\r
++ <pos x="hc" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cang2">\r
++ <pos x="x2" y="y2" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="hc" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
++ </path>\r
++ </pathLst>\r
++ </arc>\r
++ <bentArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ <gd name="adj4" fmla="val 43750" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="a3" fmla="pin 0 adj3 50000" />\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="aw2" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="th2" fmla="*/ th 1 2" />\r
++ <gd name="dh2" fmla="+- aw2 0 th2" />\r
++\r
++ <gd name="ah" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="bw" fmla="+- r 0 ah" />\r
++\r
++ <gd name="bh" fmla="+- b 0 dh2" />\r
++\r
++ <gd name="bs" fmla="min bw bh" />\r
++\r
++ <gd name="maxAdj4" fmla="*/ 100000 bs ss" />\r
++ <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
++\r
++ <gd name="bd" fmla="*/ ss a4 100000" />\r
++\r
++\r
++ <gd name="bd3" fmla="+- bd 0 th" />\r
++ <gd name="bd2" fmla="max bd3 0" />\r
++ <gd name="x3" fmla="+- th bd2 0" />\r
++ <gd name="x4" fmla="+- r 0 ah" />\r
++\r
++\r
++ <gd name="y3" fmla="+- dh2 th 0" />\r
++ <gd name="y4" fmla="+- y3 dh2 0" />\r
++ <gd name="y5" fmla="+- dh2 bd 0" />\r
++ <gd name="y6" fmla="+- y3 bd2 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
++ <pos x="th" y="b" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="50000">\r
++ <pos x="r" y="y4" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj3" minX="0" maxX="50000">\r
++ <pos x="x4" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
++ <pos x="bd" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x4" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x4" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="th2" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="aw2" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="l" y="y5" />\r
++ </lnTo>\r
++ <arcTo wR="bd" hR="bd" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x4" y="dh2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="aw2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <arcTo wR="bd2" hR="bd2" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="th" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </bentArrow>\r
++ <bentConnector2>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++ </bentConnector2>\r
++ <bentConnector3>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x1" fmla="*/ w adj1 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
++ <pos x="x1" y="vc" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++ </bentConnector3>\r
++ <bentConnector4>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x1" fmla="*/ w adj1 100000" />\r
++ <gd name="x2" fmla="+/ x1 r 2" />\r
++ <gd name="y2" fmla="*/ h adj2 100000" />\r
++ <gd name="y1" fmla="+/ t y2 2" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++ </bentConnector4>\r
++ <bentConnector5>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ <gd name="adj3" fmla="val 50000" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x1" fmla="*/ w adj1 100000" />\r
++\r
++ <gd name="x3" fmla="*/ w adj3 100000" />\r
++\r
++ <gd name="x2" fmla="+/ x1 x3 2" />\r
++\r
++ <gd name="y2" fmla="*/ h adj2 100000" />\r
++\r
++ <gd name="y1" fmla="+/ t y2 2" />\r
++\r
++ <gd name="y3" fmla="+/ b y2 2" />\r
++\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj3" minX="-2147483647" maxX="2147483647">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </bentConnector5>\r
++ <bentUpArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 50000" />\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="a3" fmla="pin 0 adj3 50000" />\r
++ <gd name="y1" fmla="*/ ss a3 100000" />\r
++ <gd name="dx1" fmla="*/ ss a2 50000" />\r
++\r
++ <gd name="x1" fmla="+- r 0 dx1" />\r
++ <gd name="dx3" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="x3" fmla="+- r 0 dx3" />\r
++ <gd name="dx2" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="x2" fmla="+- x3 0 dx2" />\r
++ <gd name="x4" fmla="+- x3 dx2 0" />\r
++ <gd name="dy2" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="y2" fmla="+- b 0 dy2" />\r
++ <gd name="x0" fmla="*/ x4 1 2" />\r
++ <gd name="y3" fmla="+/ y2 b 2" />\r
++ <gd name="y15" fmla="+/ y1 b 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="50000">\r
++ <pos x="l" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="50000">\r
++ <pos x="x2" y="y1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x0" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y15" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="y2" r="x4" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </bentUpArrow>\r
++ <bevel>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 12500" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="x1" fmla="*/ ss a 100000" />\r
++\r
++\r
++\r
++ <gd name="x2" fmla="+- r 0 x1" />\r
++\r
++ <gd name="y2" fmla="+- b 0 x1" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x2" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="x1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="x1" r="x2" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="x1" y="x1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="lightenLess" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="x1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darkenLess" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="lighten" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darken" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="r" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="x1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x1" y="x1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="x1" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="r" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="x1" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="r" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </bevel>\r
++ <blockArc>\r
++\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 10800000" />\r
++\r
++ <gd name="adj2" fmla="val 0" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="stAng" fmla="pin 0 adj1 21599999" />\r
++ <gd name="istAng" fmla="pin 0 adj2 21599999" />\r
++ <gd name="a3" fmla="pin 0 adj3 50000" />\r
++ <gd name="sw11" fmla="+- istAng 0 stAng" />\r
++\r
++ <gd name="sw12" fmla="+- sw11 21600000 0" />\r
++\r
++ <gd name="swAng" fmla="?: sw11 sw11 sw12" />\r
++\r
++ <gd name="iswAng" fmla="+- 0 0 swAng" />\r
++\r
++\r
++ <gd name="wt1" fmla="sin wd2 stAng" />\r
++ <gd name="ht1" fmla="cos hd2 stAng" />\r
++ <gd name="wt3" fmla="sin wd2 istAng" />\r
++ <gd name="ht3" fmla="cos hd2 istAng" />\r
++ <gd name="dx1" fmla="cat2 wd2 ht1 wt1" />\r
++ <gd name="dy1" fmla="sat2 hd2 ht1 wt1" />\r
++ <gd name="dx3" fmla="cat2 wd2 ht3 wt3" />\r
++ <gd name="dy3" fmla="sat2 hd2 ht3 wt3" />\r
++ <gd name="x1" fmla="+- hc dx1 0" />\r
++\r
++ <gd name="y1" fmla="+- vc dy1 0" />\r
++\r
++ <gd name="x3" fmla="+- hc dx3 0" />\r
++\r
++ <gd name="y3" fmla="+- vc dy3 0" />\r
++\r
++\r
++ <gd name="dr" fmla="*/ ss a3 100000" />\r
++ <gd name="iwd2" fmla="+- wd2 0 dr" />\r
++ <gd name="ihd2" fmla="+- hd2 0 dr" />\r
++ <gd name="wt2" fmla="sin iwd2 istAng" />\r
++ <gd name="ht2" fmla="cos ihd2 istAng" />\r
++ <gd name="wt4" fmla="sin iwd2 stAng" />\r
++ <gd name="ht4" fmla="cos ihd2 stAng" />\r
++ <gd name="dx2" fmla="cat2 iwd2 ht2 wt2" />\r
++ <gd name="dy2" fmla="sat2 ihd2 ht2 wt2" />\r
++ <gd name="dx4" fmla="cat2 iwd2 ht4 wt4" />\r
++ <gd name="dy4" fmla="sat2 ihd2 ht4 wt4" />\r
++ <gd name="x2" fmla="+- hc dx2 0" />\r
++\r
++ <gd name="y2" fmla="+- vc dy2 0" />\r
++\r
++ <gd name="x4" fmla="+- hc dx4 0" />\r
++\r
++ <gd name="y4" fmla="+- vc dy4 0" />\r
++\r
++\r
++ <gd name="sw0" fmla="+- 21600000 0 stAng" />\r
++ <gd name="da1" fmla="+- swAng 0 sw0" />\r
++ <gd name="g1" fmla="max x1 x2" />\r
++ <gd name="g2" fmla="max x3 x4" />\r
++ <gd name="g3" fmla="max g1 g2" />\r
++ <gd name="ir" fmla="?: da1 r g3" />\r
++\r
++ <gd name="sw1" fmla="+- cd4 0 stAng" />\r
++ <gd name="sw2" fmla="+- 27000000 0 stAng" />\r
++ <gd name="sw3" fmla="?: sw1 sw1 sw2" />\r
++ <gd name="da2" fmla="+- swAng 0 sw3" />\r
++ <gd name="g5" fmla="max y1 y2" />\r
++ <gd name="g6" fmla="max y3 y4" />\r
++ <gd name="g7" fmla="max g5 g6" />\r
++ <gd name="ib" fmla="?: da2 b g7" />\r
++\r
++ <gd name="sw4" fmla="+- cd2 0 stAng" />\r
++ <gd name="sw5" fmla="+- 32400000 0 stAng" />\r
++ <gd name="sw6" fmla="?: sw4 sw4 sw5" />\r
++ <gd name="da3" fmla="+- swAng 0 sw6" />\r
++ <gd name="g9" fmla="min x1 x2" />\r
++ <gd name="g10" fmla="min x3 x4" />\r
++ <gd name="g11" fmla="min g9 g10" />\r
++ <gd name="il" fmla="?: da3 l g11" />\r
++\r
++ <gd name="sw7" fmla="+- 3cd4 0 stAng" />\r
++ <gd name="sw8" fmla="+- 37800000 0 stAng" />\r
++ <gd name="sw9" fmla="?: sw7 sw7 sw8" />\r
++ <gd name="da4" fmla="+- swAng 0 sw9" />\r
++ <gd name="g13" fmla="min y1 y2" />\r
++ <gd name="g14" fmla="min y3 y4" />\r
++ <gd name="g15" fmla="min g13 g14" />\r
++ <gd name="it" fmla="?: da4 t g15" />\r
++\r
++ <gd name="x5" fmla="+/ x1 x4 2" />\r
++\r
++ <gd name="y5" fmla="+/ y1 y4 2" />\r
++\r
++ <gd name="x6" fmla="+/ x3 x2 2" />\r
++\r
++ <gd name="y6" fmla="+/ y3 y2 2" />\r
++\r
++ <gd name="cang1" fmla="+- stAng 0 cd4" />\r
++ <gd name="cang2" fmla="+- istAng cd4 0" />\r
++ <gd name="cang3" fmla="+/ cang1 cang2 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahPolar gdRefAng="adj1" minAng="0" maxAng="21599999">\r
++ <pos x="x1" y="y1" />\r
++ </ahPolar>\r
++ <ahPolar gdRefR="adj3" minR="0" maxR="50000" gdRefAng="adj2" minAng="0" maxAng="21599999">\r
++ <pos x="x2" y="y2" />\r
++ </ahPolar>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cang1">\r
++ <pos x="x5" y="y5" />\r
++ </cxn>\r
++ <cxn ang="cang2">\r
++ <pos x="x6" y="y6" />\r
++ </cxn>\r
++ <cxn ang="cang3">\r
++ <pos x="hc" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="iwd2" hR="ihd2" stAng="istAng" swAng="iswAng" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </blockArc>\r
++ <borderCallout1>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 112500" />\r
++\r
++ <gd name="adj4" fmla="val -38333" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </borderCallout1>\r
++ <borderCallout2>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 18750" />\r
++\r
++ <gd name="adj4" fmla="val -16667" />\r
++\r
++ <gd name="adj5" fmla="val 112500" />\r
++\r
++ <gd name="adj6" fmla="val -46667" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ <gd name="y3" fmla="*/ h adj5 100000" />\r
++ <gd name="x3" fmla="*/ w adj6 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </borderCallout2>\r
++ <borderCallout3>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 18750" />\r
++\r
++ <gd name="adj4" fmla="val -16667" />\r
++\r
++ <gd name="adj5" fmla="val 100000" />\r
++\r
++ <gd name="adj6" fmla="val -16667" />\r
++\r
++ <gd name="adj7" fmla="val 112963" />\r
++\r
++ <gd name="adj8" fmla="val -8333" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ <gd name="y3" fmla="*/ h adj5 100000" />\r
++ <gd name="x3" fmla="*/ w adj6 100000" />\r
++ <gd name="y4" fmla="*/ h adj7 100000" />\r
++ <gd name="x4" fmla="*/ w adj8 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj8" minX="-2147483647" maxX="2147483647" gdRefY="adj7" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x4" y="y4" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </borderCallout3>\r
++ <bracePair>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 8333" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 25000" />\r
++ <gd name="x1" fmla="*/ ss a 100000" />\r
++ <gd name="x2" fmla="*/ ss a 50000" />\r
++ <gd name="x3" fmla="+- r 0 x2" />\r
++ <gd name="x4" fmla="+- r 0 x1" />\r
++\r
++ <gd name="y2" fmla="+- vc 0 x1" />\r
++ <gd name="y3" fmla="+- vc x1 0" />\r
++ <gd name="y4" fmla="+- b 0 x1" />\r
++ <gd name="it" fmla="*/ x1 29289 100000" />\r
++\r
++ <gd name="il" fmla="+- x1 it 0" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 it" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="25000">\r
++ <pos x="l" y="x1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x2" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="0" swAng="-5400000" />\r
++ <arcTo wR="x1" hR="x1" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x1" y="x1" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x4" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="-5400000" />\r
++ <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="x2" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="0" swAng="-5400000" />\r
++ <arcTo wR="x1" hR="x1" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x1" y="x1" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
++ <moveTo>\r
++ <pt x="x3" y="t" />\r
++ </moveTo>\r
++ <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x4" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="-5400000" />\r
++ <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </bracePair>\r
++ <bracketPair>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 16667" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="x1" fmla="*/ ss a 100000" />\r
++ <gd name="x2" fmla="+- r 0 x1" />\r
++\r
++ <gd name="y2" fmla="+- b 0 x1" />\r
++ <gd name="il" fmla="*/ x1 29289 100000" />\r
++\r
++\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 il" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="50000">\r
++ <pos x="l" y="x1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="x1" />\r
++ </moveTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="x1" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="l" y="x1" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
++ <moveTo>\r
++ <pt x="x2" y="t" />\r
++ </moveTo>\r
++ <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </bracketPair>\r
++ <callout1>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 112500" />\r
++\r
++ <gd name="adj4" fmla="val -38333" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </callout1>\r
++ <callout2>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 18750" />\r
++\r
++ <gd name="adj4" fmla="val -16667" />\r
++\r
++ <gd name="adj5" fmla="val 112500" />\r
++\r
++ <gd name="adj6" fmla="val -46667" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ <gd name="y3" fmla="*/ h adj5 100000" />\r
++ <gd name="x3" fmla="*/ w adj6 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </callout2>\r
++ <callout3>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="adj1" fmla="val 18750" />\r
++\r
++ <gd name="adj2" fmla="val -8333" />\r
++\r
++ <gd name="adj3" fmla="val 18750" />\r
++\r
++ <gd name="adj4" fmla="val -16667" />\r
++\r
++ <gd name="adj5" fmla="val 100000" />\r
++\r
++ <gd name="adj6" fmla="val -16667" />\r
++\r
++ <gd name="adj7" fmla="val 112963" />\r
++\r
++ <gd name="adj8" fmla="val -8333" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h adj1 100000" />\r
++ <gd name="x1" fmla="*/ w adj2 100000" />\r
++ <gd name="y2" fmla="*/ h adj3 100000" />\r
++ <gd name="x2" fmla="*/ w adj4 100000" />\r
++ <gd name="y3" fmla="*/ h adj5 100000" />\r
++ <gd name="x3" fmla="*/ w adj6 100000" />\r
++ <gd name="y4" fmla="*/ h adj7 100000" />\r
++ <gd name="x4" fmla="*/ w adj8 100000" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x2" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj8" minX="-2147483647" maxX="2147483647" gdRefY="adj7" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x4" y="y4" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </callout3>\r
++ <can>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj" fmla="*/ 50000 h ss" />\r
++ <gd name="a" fmla="pin 0 adj maxAdj" />\r
++ <gd name="y1" fmla="*/ ss a 200000" />\r
++ <gd name="y2" fmla="+- y1 y1 0" />\r
++ <gd name="y3" fmla="+- b 0 y1" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="maxAdj">\r
++ <pos x="hc" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="y2" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="y2" r="r" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="r" y="y3" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="lighten" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="cd2" />\r
++ <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="r" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd2" />\r
++ <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="r" y="y3" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="l" y="y1" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </can>\r
++ <chartPlus>\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="10" h="10" fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="5" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="5" y="10" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="0" y="5" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="10" y="5" />\r
++ </lnTo>\r
++ </path>\r
++ <path w="10" h="10" stroke="false">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="0" y="10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10" y="10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10" y="0" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </chartPlus>\r
++ <chartStar>\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="10" h="10" fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="10" y="10" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="0" y="10" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="10" y="0" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="5" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="5" y="10" />\r
++ </lnTo>\r
++ </path>\r
++ <path w="10" h="10" stroke="false">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="0" y="10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10" y="10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10" y="0" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </chartStar>\r
++ <chartX>\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="10" h="10" fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="10" y="10" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="0" y="10" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="10" y="0" />\r
++ </lnTo>\r
++ </path>\r
++ <path w="10" h="10" stroke="false">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="0" y="10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10" y="10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10" y="0" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </chartX>\r
++ <chevron>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj" fmla="*/ 100000 w ss" />\r
++ <gd name="a" fmla="pin 0 adj maxAdj" />\r
++ <gd name="x1" fmla="*/ ss a 100000" />\r
++ <gd name="x2" fmla="+- r 0 x1" />\r
++ <gd name="x3" fmla="*/ x2 1 2" />\r
++ <gd name="dx" fmla="+- x2 0 x1" />\r
++ <gd name="il" fmla="?: dx x1 l" />\r
++ <gd name="ir" fmla="?: dx x2 r" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="t" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </chevron>\r
++ <chord>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 2700000" />\r
++\r
++ <gd name="adj2" fmla="val 16200000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="stAng" fmla="pin 0 adj1 21599999" />\r
++ <gd name="enAng" fmla="pin 0 adj2 21599999" />\r
++ <gd name="sw1" fmla="+- enAng 0 stAng" />\r
++\r
++ <gd name="sw2" fmla="+- sw1 21600000 0" />\r
++\r
++ <gd name="swAng" fmla="?: sw1 sw1 sw2" />\r
++\r
++ <gd name="wt1" fmla="sin wd2 stAng" />\r
++ <gd name="ht1" fmla="cos hd2 stAng" />\r
++ <gd name="dx1" fmla="cat2 wd2 ht1 wt1" />\r
++ <gd name="dy1" fmla="sat2 hd2 ht1 wt1" />\r
++ <gd name="wt2" fmla="sin wd2 enAng" />\r
++ <gd name="ht2" fmla="cos hd2 enAng" />\r
++ <gd name="dx2" fmla="cat2 wd2 ht2 wt2" />\r
++ <gd name="dy2" fmla="sat2 hd2 ht2 wt2" />\r
++ <gd name="x1" fmla="+- hc dx1 0" />\r
++\r
++ <gd name="y1" fmla="+- vc dy1 0" />\r
++\r
++ <gd name="x2" fmla="+- hc dx2 0" />\r
++\r
++ <gd name="y2" fmla="+- vc dy2 0" />\r
++\r
++ <gd name="x3" fmla="+/ x1 x2 2" />\r
++ <gd name="y3" fmla="+/ y1 y2 2" />\r
++ <gd name="midAng0" fmla="*/ swAng 1 2" />\r
++ <gd name="midAng" fmla="+- stAng midAng0 cd2" />\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahPolar gdRefAng="adj1" minAng="0" maxAng="21599999">\r
++ <pos x="x1" y="y1" />\r
++ </ahPolar>\r
++ <ahPolar gdRefAng="adj2" minAng="0" maxAng="21599999">\r
++ <pos x="x2" y="y2" />\r
++ </ahPolar>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="stAng">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ <cxn ang="enAng">\r
++ <pos x="x2" y="y2" />\r
++ </cxn>\r
++ <cxn ang="midAng">\r
++ <pos x="x3" y="y3" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </chord>\r
++ <circularArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 12500" />\r
++\r
++ <gd name="adj2" fmla="val 1142319" />\r
++\r
++ <gd name="adj3" fmla="val 20457681" />\r
++\r
++ <gd name="adj4" fmla="val 10800000" />\r
++\r
++ <gd name="adj5" fmla="val 12500" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a5" fmla="pin 0 adj5 25000" />\r
++\r
++ <gd name="maxAdj1" fmla="*/ a5 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="enAng" fmla="pin 1 adj3 21599999" />\r
++ <gd name="stAng" fmla="pin 0 adj4 21599999" />\r
++\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="thh" fmla="*/ ss a5 100000" />\r
++\r
++ <gd name="th2" fmla="*/ th 1 2" />\r
++\r
++\r
++ <gd name="rw1" fmla="+- wd2 th2 thh" />\r
++\r
++ <gd name="rh1" fmla="+- hd2 th2 thh" />\r
++\r
++ <gd name="rw2" fmla="+- rw1 0 th" />\r
++\r
++ <gd name="rh2" fmla="+- rh1 0 th" />\r
++\r
++ <gd name="rw3" fmla="+- rw2 th2 0" />\r
++\r
++ <gd name="rh3" fmla="+- rh2 th2 0" />\r
++\r
++\r
++ <gd name="wtH" fmla="sin rw3 enAng" />\r
++ <gd name="htH" fmla="cos rh3 enAng" />\r
++ <gd name="dxH" fmla="cat2 rw3 htH wtH" />\r
++ <gd name="dyH" fmla="sat2 rh3 htH wtH" />\r
++ <gd name="xH" fmla="+- hc dxH 0" />\r
++\r
++ <gd name="yH" fmla="+- vc dyH 0" />\r
++\r
++\r
++ <gd name="rI" fmla="min rw2 rh2" />\r
++\r
++ <gd name="u1" fmla="*/ dxH dxH 1" />\r
++ <gd name="u2" fmla="*/ dyH dyH 1" />\r
++ <gd name="u3" fmla="*/ rI rI 1" />\r
++ <gd name="u4" fmla="+- u1 0 u3" />\r
++ <gd name="u5" fmla="+- u2 0 u3" />\r
++ <gd name="u6" fmla="*/ u4 u5 u1" />\r
++ <gd name="u7" fmla="*/ u6 1 u2" />\r
++ <gd name="u8" fmla="+- 1 0 u7" />\r
++ <gd name="u9" fmla="sqrt u8" />\r
++ <gd name="u10" fmla="*/ u4 1 dxH" />\r
++ <gd name="u11" fmla="*/ u10 1 dyH" />\r
++ <gd name="u12" fmla="+/ 1 u9 u11" />\r
++ <gd name="u13" fmla="at2 1 u12" />\r
++ <gd name="u14" fmla="+- u13 21600000 0" />\r
++ <gd name="u15" fmla="?: u13 u13 u14" />\r
++ <gd name="u16" fmla="+- u15 0 enAng" />\r
++\r
++ <gd name="u17" fmla="+- u16 21600000 0" />\r
++ <gd name="u18" fmla="?: u16 u16 u17" />\r
++ <gd name="u19" fmla="+- u18 0 cd2" />\r
++ <gd name="u20" fmla="+- u18 0 21600000" />\r
++ <gd name="u21" fmla="?: u19 u20 u18" />\r
++ <gd name="maxAng" fmla="abs u21" />\r
++ <gd name="aAng" fmla="pin 0 adj2 maxAng" />\r
++\r
++ <gd name="ptAng" fmla="+- enAng aAng 0" />\r
++\r
++\r
++ <gd name="wtA" fmla="sin rw3 ptAng" />\r
++ <gd name="htA" fmla="cos rh3 ptAng" />\r
++ <gd name="dxA" fmla="cat2 rw3 htA wtA" />\r
++ <gd name="dyA" fmla="sat2 rh3 htA wtA" />\r
++ <gd name="xA" fmla="+- hc dxA 0" />\r
++\r
++ <gd name="yA" fmla="+- vc dyA 0" />\r
++\r
++\r
++ <gd name="wtE" fmla="sin rw1 stAng" />\r
++ <gd name="htE" fmla="cos rh1 stAng" />\r
++ <gd name="dxE" fmla="cat2 rw1 htE wtE" />\r
++ <gd name="dyE" fmla="sat2 rh1 htE wtE" />\r
++ <gd name="xE" fmla="+- hc dxE 0" />\r
++\r
++ <gd name="yE" fmla="+- vc dyE 0" />\r
++\r
++\r
++ <gd name="dxG" fmla="cos thh ptAng" />\r
++ <gd name="dyG" fmla="sin thh ptAng" />\r
++ <gd name="xG" fmla="+- xH dxG 0" />\r
++\r
++ <gd name="yG" fmla="+- yH dyG 0" />\r
++\r
++\r
++ <gd name="dxB" fmla="cos thh ptAng" />\r
++ <gd name="dyB" fmla="sin thh ptAng" />\r
++ <gd name="xB" fmla="+- xH 0 dxB 0" />\r
++\r
++ <gd name="yB" fmla="+- yH 0 dyB 0" />\r
++\r
++\r
++ <gd name="sx1" fmla="+- xB 0 hc" />\r
++\r
++ <gd name="sy1" fmla="+- yB 0 vc" />\r
++\r
++ <gd name="sx2" fmla="+- xG 0 hc" />\r
++\r
++ <gd name="sy2" fmla="+- yG 0 vc" />\r
++\r
++\r
++ <gd name="rO" fmla="min rw1 rh1" />\r
++\r
++ <gd name="x1O" fmla="*/ sx1 rO rw1" />\r
++\r
++ <gd name="y1O" fmla="*/ sy1 rO rh1" />\r
++\r
++ <gd name="x2O" fmla="*/ sx2 rO rw1" />\r
++\r
++ <gd name="y2O" fmla="*/ sy2 rO rh1" />\r
++\r
++\r
++ <gd name="dxO" fmla="+- x2O 0 x1O" />\r
++ <gd name="dyO" fmla="+- y2O 0 y1O" />\r
++ <gd name="dO" fmla="mod dxO dyO 0" />\r
++\r
++ <gd name="q1" fmla="*/ x1O y2O 1" />\r
++ <gd name="q2" fmla="*/ x2O y1O 1" />\r
++ <gd name="DO" fmla="+- q1 0 q2" />\r
++\r
++\r
++ <gd name="q3" fmla="*/ rO rO 1" />\r
++\r
++ <gd name="q4" fmla="*/ dO dO 1" />\r
++\r
++ <gd name="q5" fmla="*/ q3 q4 1" />\r
++\r
++ <gd name="q6" fmla="*/ DO DO 1" />\r
++\r
++ <gd name="q7" fmla="+- q5 0 q6" />\r
++\r
++ <gd name="q8" fmla="max q7 0" />\r
++\r
++ <gd name="sdelO" fmla="sqrt q8" />\r
++\r
++ <gd name="ndyO" fmla="*/ dyO -1 1" />\r
++ <gd name="sdyO" fmla="?: ndyO -1 1" />\r
++\r
++ <gd name="q9" fmla="*/ sdyO dxO 1" />\r
++\r
++ <gd name="q10" fmla="*/ q9 sdelO 1" />\r
++\r
++ <gd name="q11" fmla="*/ DO dyO 1" />\r
++\r
++ <gd name="dxF1" fmla="+/ q11 q10 q4" />\r
++\r
++ <gd name="q12" fmla="+- q11 0 q10" />\r
++ <gd name="dxF2" fmla="*/ q12 1 q4" />\r
++\r
++\r
++ <gd name="adyO" fmla="abs dyO" />\r
++ <gd name="q13" fmla="*/ adyO sdelO 1" />\r
++\r
++ <gd name="q14" fmla="*/ DO dxO -1" />\r
++\r
++ <gd name="dyF1" fmla="+/ q14 q13 q4" />\r
++\r
++ <gd name="q15" fmla="+- q14 0 q13" />\r
++ <gd name="dyF2" fmla="*/ q15 1 q4" />\r
++\r
++\r
++\r
++ <gd name="q16" fmla="+- x2O 0 dxF1" />\r
++ <gd name="q17" fmla="+- x2O 0 dxF2" />\r
++ <gd name="q18" fmla="+- y2O 0 dyF1" />\r
++ <gd name="q19" fmla="+- y2O 0 dyF2" />\r
++ <gd name="q20" fmla="mod q16 q18 0" />\r
++\r
++ <gd name="q21" fmla="mod q17 q19 0" />\r
++\r
++ <gd name="q22" fmla="+- q21 0 q20" />\r
++ <gd name="dxF" fmla="?: q22 dxF1 dxF2" />\r
++\r
++ <gd name="dyF" fmla="?: q22 dyF1 dyF2" />\r
++\r
++ <gd name="sdxF" fmla="*/ dxF rw1 rO" />\r
++\r
++ <gd name="sdyF" fmla="*/ dyF rh1 rO" />\r
++\r
++ <gd name="xF" fmla="+- hc sdxF 0" />\r
++\r
++ <gd name="yF" fmla="+- vc sdyF 0" />\r
++\r
++\r
++\r
++\r
++ <gd name="x1I" fmla="*/ sx1 rI rw2" />\r
++\r
++ <gd name="y1I" fmla="*/ sy1 rI rh2" />\r
++\r
++ <gd name="x2I" fmla="*/ sx2 rI rw2" />\r
++\r
++ <gd name="y2I" fmla="*/ sy2 rI rh2" />\r
++\r
++\r
++ <gd name="dxI" fmla="+- x2I 0 x1I" />\r
++ <gd name="dyI" fmla="+- y2I 0 y1I" />\r
++ <gd name="dI" fmla="mod dxI dyI 0" />\r
++ <gd name="v1" fmla="*/ x1I y2I 1" />\r
++ <gd name="v2" fmla="*/ x2I y1I 1" />\r
++ <gd name="DI" fmla="+- v1 0 v2" />\r
++\r
++ <gd name="v3" fmla="*/ rI rI 1" />\r
++ <gd name="v4" fmla="*/ dI dI 1" />\r
++ <gd name="v5" fmla="*/ v3 v4 1" />\r
++ <gd name="v6" fmla="*/ DI DI 1" />\r
++ <gd name="v7" fmla="+- v5 0 v6" />\r
++ <gd name="v8" fmla="max v7 0" />\r
++ <gd name="sdelI" fmla="sqrt v8" />\r
++ <gd name="v9" fmla="*/ sdyO dxI 1" />\r
++ <gd name="v10" fmla="*/ v9 sdelI 1" />\r
++ <gd name="v11" fmla="*/ DI dyI 1" />\r
++ <gd name="dxC1" fmla="+/ v11 v10 v4" />\r
++ <gd name="v12" fmla="+- v11 0 v10" />\r
++ <gd name="dxC2" fmla="*/ v12 1 v4" />\r
++\r
++ <gd name="adyI" fmla="abs dyI" />\r
++ <gd name="v13" fmla="*/ adyI sdelI 1" />\r
++ <gd name="v14" fmla="*/ DI dxI -1" />\r
++ <gd name="dyC1" fmla="+/ v14 v13 v4" />\r
++ <gd name="v15" fmla="+- v14 0 v13" />\r
++ <gd name="dyC2" fmla="*/ v15 1 v4" />\r
++\r
++ <gd name="v16" fmla="+- x1I 0 dxC1" />\r
++ <gd name="v17" fmla="+- x1I 0 dxC2" />\r
++ <gd name="v18" fmla="+- y1I 0 dyC1" />\r
++ <gd name="v19" fmla="+- y1I 0 dyC2" />\r
++ <gd name="v20" fmla="mod v16 v18 0" />\r
++ <gd name="v21" fmla="mod v17 v19 0" />\r
++ <gd name="v22" fmla="+- v21 0 v20" />\r
++ <gd name="dxC" fmla="?: v22 dxC1 dxC2" />\r
++ <gd name="dyC" fmla="?: v22 dyC1 dyC2" />\r
++ <gd name="sdxC" fmla="*/ dxC rw2 rI" />\r
++ <gd name="sdyC" fmla="*/ dyC rh2 rI" />\r
++ <gd name="xC" fmla="+- hc sdxC 0" />\r
++\r
++ <gd name="yC" fmla="+- vc sdyC 0" />\r
++\r
++\r
++ <gd name="ist0" fmla="at2 sdxC sdyC" />\r
++ <gd name="ist1" fmla="+- ist0 21600000 0" />\r
++ <gd name="istAng" fmla="?: ist0 ist0 ist1" />\r
++ <gd name="isw1" fmla="+- stAng 0 istAng" />\r
++ <gd name="isw2" fmla="+- isw1 0 21600000" />\r
++ <gd name="iswAng" fmla="?: isw1 isw2 isw1" />\r
++\r
++\r
++ <gd name="p1" fmla="+- xF 0 xC" />\r
++ <gd name="p2" fmla="+- yF 0 yC" />\r
++ <gd name="p3" fmla="mod p1 p2 0" />\r
++ <gd name="p4" fmla="*/ p3 1 2" />\r
++ <gd name="p5" fmla="+- p4 0 thh" />\r
++ <gd name="xGp" fmla="?: p5 xF xG" />\r
++ <gd name="yGp" fmla="?: p5 yF yG" />\r
++ <gd name="xBp" fmla="?: p5 xC xB" />\r
++ <gd name="yBp" fmla="?: p5 yC yB" />\r
++\r
++ <gd name="en0" fmla="at2 sdxF sdyF" />\r
++ <gd name="en1" fmla="+- en0 21600000 0" />\r
++ <gd name="en2" fmla="?: en0 en0 en1" />\r
++ <gd name="sw0" fmla="+- en2 0 stAng" />\r
++ <gd name="sw1" fmla="+- sw0 21600000 0" />\r
++ <gd name="swAng" fmla="?: sw0 sw0 sw1" />\r
++\r
++ <gd name="wtI" fmla="sin rw3 stAng" />\r
++ <gd name="htI" fmla="cos rh3 stAng" />\r
++ <gd name="dxI" fmla="cat2 rw3 htI wtI" />\r
++ <gd name="dyI" fmla="sat2 rh3 htI wtI" />\r
++ <gd name="xI" fmla="+- hc dxI 0" />\r
++\r
++ <gd name="yI" fmla="+- vc dyI 0" />\r
++\r
++\r
++ <gd name="aI" fmla="+- stAng 0 cd4" />\r
++ <gd name="aA" fmla="+- ptAng cd4 0" />\r
++ <gd name="aB" fmla="+- ptAng cd2 0" />\r
++\r
++ <gd name="idx" fmla="cos rw1 2700000" />\r
++ <gd name="idy" fmla="sin rh1 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahPolar gdRefAng="adj2" minAng="0" maxAng="maxAng">\r
++ <pos x="xA" y="yA" />\r
++ </ahPolar>\r
++ <ahPolar gdRefAng="adj4" minAng="0" maxAng="21599999">\r
++ <pos x="xE" y="yE" />\r
++ </ahPolar>\r
++ <ahPolar gdRefR="adj1" minR="0" maxR="maxAdj1" gdRefAng="adj3" minAng="0" maxAng="21599999">\r
++ <pos x="xF" y="yF" />\r
++ </ahPolar>\r
++ <ahPolar gdRefR="adj5" minR="0" maxR="25000">\r
++ <pos x="xB" y="yB" />\r
++ </ahPolar>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="aI">\r
++ <pos x="xI" y="yI" />\r
++ </cxn>\r
++ <cxn ang="ptAng">\r
++ <pos x="xGp" y="yGp" />\r
++ </cxn>\r
++ <cxn ang="aA">\r
++ <pos x="xA" y="yA" />\r
++ </cxn>\r
++ <cxn ang="aB">\r
++ <pos x="xBp" y="yBp" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="xE" y="yE" />\r
++ </moveTo>\r
++ <arcTo wR="rw1" hR="rh1" stAng="stAng" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="xGp" y="yGp" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xA" y="yA" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xBp" y="yBp" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC" y="yC" />\r
++ </lnTo>\r
++ <arcTo wR="rw2" hR="rh2" stAng="istAng" swAng="iswAng" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </circularArrow>\r
++ <cloud>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="il" fmla="*/ w 2977 21600" />\r
++ <gd name="it" fmla="*/ h 3262 21600" />\r
++ <gd name="ir" fmla="*/ w 17087 21600" />\r
++ <gd name="ib" fmla="*/ h 17337 21600" />\r
++ <gd name="g27" fmla="*/ w 67 21600" />\r
++ <gd name="g28" fmla="*/ h 21577 21600" />\r
++ <gd name="g29" fmla="*/ w 21582 21600" />\r
++ <gd name="g30" fmla="*/ h 1235 21600" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="g29" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="g28" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="g27" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="g30" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="43200" h="43200">\r
++ <moveTo>\r
++ <pt x="3900" y="14370" />\r
++ </moveTo>\r
++ <arcTo wR="6753" hR="9190" stAng="-11429249" swAng="7426832" />\r
++ <arcTo wR="5333" hR="7267" stAng="-8646143" swAng="5396714" />\r
++ <arcTo wR="4365" hR="5945" stAng="-8748475" swAng="5983381" />\r
++ <arcTo wR="4857" hR="6595" stAng="-7859164" swAng="7034504" />\r
++ <arcTo wR="5333" hR="7273" stAng="-4722533" swAng="6541615" />\r
++ <arcTo wR="6775" hR="9220" stAng="-2776035" swAng="7816140" />\r
++ <arcTo wR="5785" hR="7867" stAng="37501" swAng="6842000" />\r
++ <arcTo wR="6752" hR="9215" stAng="1347096" swAng="6910353" />\r
++ <arcTo wR="7720" hR="10543" stAng="3974558" swAng="4542661" />\r
++ <arcTo wR="4360" hR="5918" stAng="-16496525" swAng="8804134" />\r
++ <arcTo wR="4345" hR="5945" stAng="-14809710" swAng="9151131" />\r
++ <close />\r
++ </path>\r
++ <path w="43200" h="43200" fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="4693" y="26177" />\r
++ </moveTo>\r
++ <arcTo wR="4345" hR="5945" stAng="5204520" swAng="1585770" />\r
++ <moveTo>\r
++ <pt x="6928" y="34899" />\r
++ </moveTo>\r
++ <arcTo wR="4360" hR="5918" stAng="4416628" swAng="686848" />\r
++ <moveTo>\r
++ <pt x="16478" y="39090" />\r
++ </moveTo>\r
++ <arcTo wR="6752" hR="9215" stAng="8257449" swAng="844866" />\r
++ <moveTo>\r
++ <pt x="28827" y="34751" />\r
++ </moveTo>\r
++ <arcTo wR="6752" hR="9215" stAng="387196" swAng="959901" />\r
++ <moveTo>\r
++ <pt x="34129" y="22954" />\r
++ </moveTo>\r
++ <arcTo wR="5785" hR="7867" stAng="-4217541" swAng="4255042" />\r
++ <moveTo>\r
++ <pt x="41798" y="15354" />\r
++ </moveTo>\r
++ <arcTo wR="5333" hR="7273" stAng="1819082" swAng="1665090" />\r
++ <moveTo>\r
++ <pt x="38324" y="5426" />\r
++ </moveTo>\r
++ <arcTo wR="4857" hR="6595" stAng="-824660" swAng="891534" />\r
++ <moveTo>\r
++ <pt x="29078" y="3952" />\r
++ </moveTo>\r
++ <arcTo wR="4857" hR="6595" stAng="-8950887" swAng="1091722" />\r
++ <moveTo>\r
++ <pt x="22141" y="4720" />\r
++ </moveTo>\r
++ <arcTo wR="4365" hR="5945" stAng="-9809656" swAng="1061181" />\r
++ <moveTo>\r
++ <pt x="14000" y="5192" />\r
++ </moveTo>\r
++ <arcTo wR="6753" hR="9190" stAng="-4002417" swAng="739161" />\r
++ <moveTo>\r
++ <pt x="4127" y="15789" />\r
++ </moveTo>\r
++ <arcTo wR="6753" hR="9190" stAng="9459261" swAng="711490" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </cloud>\r
++ <cloudCallout>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val -20833" />\r
++\r
++ <gd name="adj2" fmla="val 62500" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dxPos" fmla="*/ w adj1 100000" />\r
++ <gd name="dyPos" fmla="*/ h adj2 100000" />\r
++ <gd name="xPos" fmla="+- hc dxPos 0" />\r
++ <gd name="yPos" fmla="+- vc dyPos 0" />\r
++ <gd name="ht" fmla="cat2 hd2 dxPos dyPos" />\r
++ <gd name="wt" fmla="sat2 wd2 dxPos dyPos" />\r
++ <gd name="g2" fmla="cat2 wd2 ht wt" />\r
++ <gd name="g3" fmla="sat2 hd2 ht wt" />\r
++ <gd name="g4" fmla="+- hc g2 0" />\r
++\r
++ <gd name="g5" fmla="+- vc g3 0" />\r
++\r
++ <gd name="g6" fmla="+- g4 0 xPos" />\r
++\r
++ <gd name="g7" fmla="+- g5 0 yPos" />\r
++\r
++ <gd name="g8" fmla="mod g6 g7 0" />\r
++\r
++ <gd name="g9" fmla="*/ ss 6600 21600" />\r
++\r
++ <gd name="g10" fmla="+- g8 0 g9" />\r
++\r
++ <gd name="g11" fmla="*/ g10 1 3" />\r
++\r
++ <gd name="g12" fmla="*/ ss 1800 21600" />\r
++\r
++ <gd name="g13" fmla="+- g11 g12 0" />\r
++\r
++ <gd name="g14" fmla="*/ g13 g6 g8" />\r
++\r
++ <gd name="g15" fmla="*/ g13 g7 g8" />\r
++\r
++ <gd name="g16" fmla="+- g14 xPos 0" />\r
++\r
++ <gd name="g17" fmla="+- g15 yPos 0" />\r
++\r
++ <gd name="g18" fmla="*/ ss 4800 21600" />\r
++\r
++ <gd name="g19" fmla="*/ g11 2 1" />\r
++\r
++ <gd name="g20" fmla="+- g18 g19 0" />\r
++\r
++ <gd name="g21" fmla="*/ g20 g6 g8" />\r
++ <gd name="g22" fmla="*/ g20 g7 g8" />\r
++ <gd name="g23" fmla="+- g21 xPos 0" />\r
++ <gd name="g24" fmla="+- g22 yPos 0" />\r
++ <gd name="g25" fmla="*/ ss 1200 21600" />\r
++ <gd name="g26" fmla="*/ ss 600 21600" />\r
++\r
++ <gd name="x23" fmla="+- xPos g26 0" />\r
++ <gd name="x24" fmla="+- g16 g25 0" />\r
++ <gd name="x25" fmla="+- g23 g12 0" />\r
++ <gd name="il" fmla="*/ w 2977 21600" />\r
++ <gd name="it" fmla="*/ h 3262 21600" />\r
++ <gd name="ir" fmla="*/ w 17087 21600" />\r
++ <gd name="ib" fmla="*/ h 17337 21600" />\r
++\r
++ <gd name="g27" fmla="*/ w 67 21600" />\r
++ <gd name="g28" fmla="*/ h 21577 21600" />\r
++ <gd name="g29" fmla="*/ w 21582 21600" />\r
++ <gd name="g30" fmla="*/ h 1235 21600" />\r
++ <gd name="pang" fmla="at2 dxPos dyPos" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647" gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
++ <pos x="xPos" y="yPos" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd2">\r
++ <pos x="g27" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="g28" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="g29" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="g30" />\r
++ </cxn>\r
++ <cxn ang="pang">\r
++ <pos x="xPos" y="yPos" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="43200" h="43200">\r
++ <moveTo>\r
++ <pt x="3900" y="14370" />\r
++ </moveTo>\r
++ <arcTo wR="6753" hR="9190" stAng="-11429249" swAng="7426832" />\r
++ <arcTo wR="5333" hR="7267" stAng="-8646143" swAng="5396714" />\r
++ <arcTo wR="4365" hR="5945" stAng="-8748475" swAng="5983381" />\r
++ <arcTo wR="4857" hR="6595" stAng="-7859164" swAng="7034504" />\r
++ <arcTo wR="5333" hR="7273" stAng="-4722533" swAng="6541615" />\r
++ <arcTo wR="6775" hR="9220" stAng="-2776035" swAng="7816140" />\r
++ <arcTo wR="5785" hR="7867" stAng="37501" swAng="6842000" />\r
++ <arcTo wR="6752" hR="9215" stAng="1347096" swAng="6910353" />\r
++ <arcTo wR="7720" hR="10543" stAng="3974558" swAng="4542661" />\r
++ <arcTo wR="4360" hR="5918" stAng="-16496525" swAng="8804134" />\r
++ <arcTo wR="4345" hR="5945" stAng="-14809710" swAng="9151131" />\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x23" y="yPos" />\r
++ </moveTo>\r
++ <arcTo wR="g26" hR="g26" stAng="0" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x24" y="g17" />\r
++ </moveTo>\r
++ <arcTo wR="g25" hR="g25" stAng="0" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x25" y="g24" />\r
++ </moveTo>\r
++ <arcTo wR="g12" hR="g12" stAng="0" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ <path w="43200" h="43200" fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="4693" y="26177" />\r
++ </moveTo>\r
++ <arcTo wR="4345" hR="5945" stAng="5204520" swAng="1585770" />\r
++ <moveTo>\r
++ <pt x="6928" y="34899" />\r
++ </moveTo>\r
++ <arcTo wR="4360" hR="5918" stAng="4416628" swAng="686848" />\r
++ <moveTo>\r
++ <pt x="16478" y="39090" />\r
++ </moveTo>\r
++ <arcTo wR="6752" hR="9215" stAng="8257449" swAng="844866" />\r
++ <moveTo>\r
++ <pt x="28827" y="34751" />\r
++ </moveTo>\r
++ <arcTo wR="6752" hR="9215" stAng="387196" swAng="959901" />\r
++ <moveTo>\r
++ <pt x="34129" y="22954" />\r
++ </moveTo>\r
++ <arcTo wR="5785" hR="7867" stAng="-4217541" swAng="4255042" />\r
++ <moveTo>\r
++ <pt x="41798" y="15354" />\r
++ </moveTo>\r
++ <arcTo wR="5333" hR="7273" stAng="1819082" swAng="1665090" />\r
++ <moveTo>\r
++ <pt x="38324" y="5426" />\r
++ </moveTo>\r
++ <arcTo wR="4857" hR="6595" stAng="-824660" swAng="891534" />\r
++ <moveTo>\r
++ <pt x="29078" y="3952" />\r
++ </moveTo>\r
++ <arcTo wR="4857" hR="6595" stAng="-8950887" swAng="1091722" />\r
++ <moveTo>\r
++ <pt x="22141" y="4720" />\r
++ </moveTo>\r
++ <arcTo wR="4365" hR="5945" stAng="-9809656" swAng="1061181" />\r
++ <moveTo>\r
++ <pt x="14000" y="5192" />\r
++ </moveTo>\r
++ <arcTo wR="6753" hR="9190" stAng="-4002417" swAng="739161" />\r
++ <moveTo>\r
++ <pt x="4127" y="15789" />\r
++ </moveTo>\r
++ <arcTo wR="6753" hR="9190" stAng="9459261" swAng="711490" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </cloudCallout>\r
++ <corner>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj1" fmla="*/ 100000 h ss" />\r
++ <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="x1" fmla="*/ ss a2 100000" />\r
++ <gd name="dy1" fmla="*/ ss a1 100000" />\r
++ <gd name="y1" fmla="+- b 0 dy1" />\r
++ <gd name="cx1" fmla="*/ x1 1 2" />\r
++ <gd name="cy1" fmla="+/ y1 b 2" />\r
++ <gd name="d" fmla="+- w 0 h" />\r
++ <gd name="it" fmla="?: d y1 t" />\r
++ <gd name="ir" fmla="?: d r x1" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="cy1" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="cx1" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="it" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </corner>\r
++ <cornerTabs>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="md" fmla="mod w h 0" />\r
++ <gd name="dx" fmla="*/ 1 md 20" />\r
++\r
++ <gd name="y1" fmla="+- 0 b dx" />\r
++\r
++ <gd name="x1" fmla="+- 0 r dx" />\r
++\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="dx" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="b" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="dx" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="dx" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="t" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="dx" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y1" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="dx" t="dx" r="x1" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="dx" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="dx" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="dx" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="dx" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="r" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </cornerTabs>\r
++ <cube>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 25000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 100000" />\r
++ <gd name="y1" fmla="*/ ss a 100000" />\r
++ <gd name="y4" fmla="+- b 0 y1" />\r
++ <gd name="y2" fmla="*/ y4 1 2" />\r
++ <gd name="y3" fmla="+/ y1 b 2" />\r
++ <gd name="x4" fmla="+- r 0 y1" />\r
++ <gd name="x2" fmla="*/ x4 1 2" />\r
++ <gd name="x3" fmla="+/ y1 r 2" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="100000">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y3" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y2" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="y1" r="x4" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darkenLess" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x4" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="lightenLess" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="y1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="y1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x4" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++ </cube>\r
++ <curvedConnector2>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <cubicBezTo>\r
++ <pt x="wd2" y="t" />\r
++ <pt x="r" y="hd2" />\r
++ <pt x="r" y="b" />\r
++ </cubicBezTo>\r
++ </path>\r
++ </pathLst>\r
++ </curvedConnector2>\r
++ <curvedConnector3>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w adj1 100000" />\r
++ <gd name="x1" fmla="+/ l x2 2" />\r
++ <gd name="x3" fmla="+/ r x2 2" />\r
++ <gd name="y3" fmla="*/ h 3 4" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
++ <pos x="x2" y="vc" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <cubicBezTo>\r
++ <pt x="x1" y="t" />\r
++ <pt x="x2" y="hd4" />\r
++ <pt x="x2" y="vc" />\r
++ </cubicBezTo>\r
++ <cubicBezTo>\r
++ <pt x="x2" y="y3" />\r
++ <pt x="x3" y="b" />\r
++ <pt x="r" y="b" />\r
++ </cubicBezTo>\r
++ </path>\r
++ </pathLst>\r
++ </curvedConnector3>\r
++ <curvedConnector4>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w adj1 100000" />\r
++ <gd name="x1" fmla="+/ l x2 2" />\r
++ <gd name="x3" fmla="+/ r x2 2" />\r
++ <gd name="x4" fmla="+/ x2 x3 2" />\r
++ <gd name="x5" fmla="+/ x3 r 2" />\r
++ <gd name="y4" fmla="*/ h adj2 100000" />\r
++ <gd name="y1" fmla="+/ t y4 2" />\r
++ <gd name="y2" fmla="+/ t y1 2" />\r
++ <gd name="y3" fmla="+/ y1 y4 2" />\r
++ <gd name="y5" fmla="+/ b y4 2" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
++ <pos x="x2" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x3" y="y4" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <cubicBezTo>\r
++ <pt x="x1" y="t" />\r
++ <pt x="x2" y="y2" />\r
++ <pt x="x2" y="y1" />\r
++ </cubicBezTo>\r
++ <cubicBezTo>\r
++ <pt x="x2" y="y3" />\r
++ <pt x="x4" y="y4" />\r
++ <pt x="x3" y="y4" />\r
++ </cubicBezTo>\r
++ <cubicBezTo>\r
++ <pt x="x5" y="y4" />\r
++ <pt x="r" y="y5" />\r
++ <pt x="r" y="b" />\r
++ </cubicBezTo>\r
++ </path>\r
++ </pathLst>\r
++ </curvedConnector4>\r
++ <curvedConnector5>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ <gd name="adj3" fmla="val 50000" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x3" fmla="*/ w adj1 100000" />\r
++ <gd name="x6" fmla="*/ w adj3 100000" />\r
++ <gd name="x1" fmla="+/ x3 x6 2" />\r
++ <gd name="x2" fmla="+/ l x3 2" />\r
++ <gd name="x4" fmla="+/ x3 x1 2" />\r
++ <gd name="x5" fmla="+/ x6 x1 2" />\r
++ <gd name="x7" fmla="+/ x6 r 2" />\r
++ <gd name="y4" fmla="*/ h adj2 100000" />\r
++ <gd name="y1" fmla="+/ t y4 2" />\r
++ <gd name="y2" fmla="+/ t y1 2" />\r
++ <gd name="y3" fmla="+/ y1 y4 2" />\r
++ <gd name="y5" fmla="+/ b y4 2" />\r
++ <gd name="y6" fmla="+/ y5 y4 2" />\r
++ <gd name="y7" fmla="+/ y5 b 2" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
++ <pos x="x3" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
++ <pos x="x1" y="y4" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj3" minX="-2147483647" maxX="2147483647">\r
++ <pos x="x6" y="y5" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <cubicBezTo>\r
++ <pt x="x2" y="t" />\r
++ <pt x="x3" y="y2" />\r
++ <pt x="x3" y="y1" />\r
++ </cubicBezTo>\r
++ <cubicBezTo>\r
++ <pt x="x3" y="y3" />\r
++ <pt x="x4" y="y4" />\r
++ <pt x="x1" y="y4" />\r
++ </cubicBezTo>\r
++ <cubicBezTo>\r
++ <pt x="x5" y="y4" />\r
++ <pt x="x6" y="y6" />\r
++ <pt x="x6" y="y5" />\r
++ </cubicBezTo>\r
++ <cubicBezTo>\r
++ <pt x="x6" y="y7" />\r
++ <pt x="x7" y="b" />\r
++ <pt x="r" y="b" />\r
++ </cubicBezTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </curvedConnector5>\r
++ <curvedDownArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="aw" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="q1" fmla="+/ th aw 4" />\r
++\r
++ <gd name="wR" fmla="+- wd2 0 q1" />\r
++\r
++ <gd name="q7" fmla="*/ wR 2 1" />\r
++\r
++ <gd name="q8" fmla="*/ q7 q7 1" />\r
++\r
++ <gd name="q9" fmla="*/ th th 1" />\r
++\r
++ <gd name="q10" fmla="+- q8 0 q9" />\r
++ <gd name="q11" fmla="sqrt q10" />\r
++ <gd name="idy" fmla="*/ q11 h q7" />\r
++ <gd name="maxAdj3" fmla="*/ 100000 idy ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="ah" fmla="*/ ss adj3 100000" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="x3" fmla="+- wR th 0" />\r
++\r
++ <gd name="q2" fmla="*/ h h 1" />\r
++ <gd name="q3" fmla="*/ ah ah 1" />\r
++ <gd name="q4" fmla="+- q2 0 q3" />\r
++ <gd name="q5" fmla="sqrt q4" />\r
++ <gd name="dx" fmla="*/ q5 wR h" />\r
++ <gd name="x5" fmla="+- wR dx 0" />\r
++\r
++ <gd name="x7" fmla="+- x3 dx 0" />\r
++\r
++ <gd name="q6" fmla="+- aw 0 th" />\r
++ <gd name="dh" fmla="*/ q6 1 2" />\r
++\r
++ <gd name="x4" fmla="+- x5 0 dh" />\r
++\r
++ <gd name="x8" fmla="+- x7 dh 0" />\r
++\r
++ <gd name="aw2" fmla="*/ aw 1 2" />\r
++ <gd name="x6" fmla="+- r 0 aw2" />\r
++\r
++ <gd name="y1" fmla="+- b 0 ah" />\r
++ <gd name="swAng" fmla="at2 ah dx" />\r
++\r
++ <gd name="mswAng" fmla="+- 0 0 swAng" />\r
++ <gd name="iy" fmla="+- b 0 idy" />\r
++\r
++ <gd name="ix" fmla="+/ wR x3 2" />\r
++\r
++ <gd name="q12" fmla="*/ th 1 2" />\r
++ <gd name="dang2" fmla="at2 idy q12" />\r
++ <gd name="stAng" fmla="+- 3cd4 swAng 0" />\r
++ <gd name="stAng2" fmla="+- 3cd4 0 dang2" />\r
++ <gd name="swAng2" fmla="+- dang2 0 cd4" />\r
++ <gd name="swAng3" fmla="+- cd4 dang2 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="adj2">\r
++ <pos x="x7" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x4" y="b" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="r" y="y1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="ix" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="q12" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x4" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x6" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x8" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x6" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="stAng" swAng="mswAng" />\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="3cd4" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="x8" y="y1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++\r
++ <path fill="darkenLess" stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="ix" y="iy" />\r
++ </moveTo>\r
++ <arcTo wR="wR" hR="h" stAng="stAng2" swAng="swAng2" />\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="cd2" swAng="swAng3" />\r
++ <close />\r
++ </path>\r
++\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="ix" y="iy" />\r
++ </moveTo>\r
++ <arcTo wR="wR" hR="h" stAng="stAng2" swAng="swAng2" />\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="3cd4" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="x8" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="stAng" swAng="mswAng" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </curvedDownArrow>\r
++ <curvedLeftArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="a1" fmla="pin 0 adj1 a2" />\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="aw" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="q1" fmla="+/ th aw 4" />\r
++\r
++ <gd name="hR" fmla="+- hd2 0 q1" />\r
++\r
++ <gd name="q7" fmla="*/ hR 2 1" />\r
++\r
++ <gd name="q8" fmla="*/ q7 q7 1" />\r
++\r
++ <gd name="q9" fmla="*/ th th 1" />\r
++\r
++ <gd name="q10" fmla="+- q8 0 q9" />\r
++ <gd name="q11" fmla="sqrt q10" />\r
++ <gd name="idx" fmla="*/ q11 w q7" />\r
++ <gd name="maxAdj3" fmla="*/ 100000 idx ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="ah" fmla="*/ ss a3 100000" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="y3" fmla="+- hR th 0" />\r
++\r
++ <gd name="q2" fmla="*/ w w 1" />\r
++ <gd name="q3" fmla="*/ ah ah 1" />\r
++ <gd name="q4" fmla="+- q2 0 q3" />\r
++ <gd name="q5" fmla="sqrt q4" />\r
++ <gd name="dy" fmla="*/ q5 hR w" />\r
++ <gd name="y5" fmla="+- hR dy 0" />\r
++\r
++ <gd name="y7" fmla="+- y3 dy 0" />\r
++\r
++ <gd name="q6" fmla="+- aw 0 th" />\r
++ <gd name="dh" fmla="*/ q6 1 2" />\r
++\r
++ <gd name="y4" fmla="+- y5 0 dh" />\r
++\r
++ <gd name="y8" fmla="+- y7 dh 0" />\r
++\r
++ <gd name="aw2" fmla="*/ aw 1 2" />\r
++ <gd name="y6" fmla="+- b 0 aw2" />\r
++\r
++ <gd name="x1" fmla="+- l ah 0" />\r
++ <gd name="swAng" fmla="at2 ah dy" />\r
++\r
++ <gd name="mswAng" fmla="+- 0 0 swAng" />\r
++ <gd name="ix" fmla="+- l idx 0" />\r
++\r
++ <gd name="iy" fmla="+/ hR y3 2" />\r
++\r
++ <gd name="q12" fmla="*/ th 1 2" />\r
++ <gd name="dang2" fmla="at2 idx q12" />\r
++ <gd name="swAng2" fmla="+- dang2 0 swAng" />\r
++ <gd name="swAng3" fmla="+- swAng dang2 0" />\r
++ <gd name="stAng3" fmla="+- 0 0 dang2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="a2">\r
++ <pos x="x1" y="y5" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
++ <pos x="r" y="y4" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
++ <pos x="x1" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="q12" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd3">\r
++ <pos x="l" y="y6" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="y8" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="iy" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="y6" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y5" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="hR" stAng="swAng" swAng="swAng2" />\r
++ <arcTo wR="w" hR="hR" stAng="stAng3" swAng="swAng3" />\r
++ <lnTo>\r
++ <pt x="x1" y="y8" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++\r
++ <path fill="darkenLess" stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="r" y="y3" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="hR" stAng="0" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="l" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="hR" stAng="3cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="r" y="y3" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="hR" stAng="0" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="l" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="hR" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="y3" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="hR" stAng="0" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="x1" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y5" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="hR" stAng="swAng" swAng="swAng2" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </curvedLeftArrow>\r
++ <curvedRightArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="a1" fmla="pin 0 adj1 a2" />\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="aw" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="q1" fmla="+/ th aw 4" />\r
++\r
++ <gd name="hR" fmla="+- hd2 0 q1" />\r
++\r
++ <gd name="q7" fmla="*/ hR 2 1" />\r
++\r
++ <gd name="q8" fmla="*/ q7 q7 1" />\r
++\r
++ <gd name="q9" fmla="*/ th th 1" />\r
++\r
++ <gd name="q10" fmla="+- q8 0 q9" />\r
++ <gd name="q11" fmla="sqrt q10" />\r
++ <gd name="idx" fmla="*/ q11 w q7" />\r
++ <gd name="maxAdj3" fmla="*/ 100000 idx ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="ah" fmla="*/ ss a3 100000" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="y3" fmla="+- hR th 0" />\r
++\r
++ <gd name="q2" fmla="*/ w w 1" />\r
++ <gd name="q3" fmla="*/ ah ah 1" />\r
++ <gd name="q4" fmla="+- q2 0 q3" />\r
++ <gd name="q5" fmla="sqrt q4" />\r
++ <gd name="dy" fmla="*/ q5 hR w" />\r
++ <gd name="y5" fmla="+- hR dy 0" />\r
++\r
++ <gd name="y7" fmla="+- y3 dy 0" />\r
++\r
++ <gd name="q6" fmla="+- aw 0 th" />\r
++ <gd name="dh" fmla="*/ q6 1 2" />\r
++\r
++ <gd name="y4" fmla="+- y5 0 dh" />\r
++\r
++ <gd name="y8" fmla="+- y7 dh 0" />\r
++\r
++ <gd name="aw2" fmla="*/ aw 1 2" />\r
++ <gd name="y6" fmla="+- b 0 aw2" />\r
++\r
++ <gd name="x1" fmla="+- r 0 ah" />\r
++ <gd name="swAng" fmla="at2 ah dy" />\r
++\r
++ <gd name="stAng" fmla="+- cd2 0 swAng" />\r
++ <gd name="mswAng" fmla="+- 0 0 swAng" />\r
++ <gd name="ix" fmla="+- r 0 idx" />\r
++\r
++ <gd name="iy" fmla="+/ hR y3 2" />\r
++\r
++ <gd name="q12" fmla="*/ th 1 2" />\r
++ <gd name="dang2" fmla="at2 idx q12" />\r
++ <gd name="swAng2" fmla="+- dang2 0 cd4" />\r
++ <gd name="swAng3" fmla="+- cd4 dang2 0" />\r
++ <gd name="stAng3" fmla="+- cd2 0 dang2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="a2">\r
++ <pos x="x1" y="y5" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
++ <pos x="r" y="y4" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
++ <pos x="x1" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="iy" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="y8" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y6" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x1" y="y4" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="q12" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="hR" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="hR" stAng="cd2" swAng="mswAng" />\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y7" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="hR" stAng="stAng" swAng="swAng" />\r
++ <close />\r
++ </path>\r
++\r
++ <path fill="darkenLess" stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="r" y="th" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="hR" stAng="3cd4" swAng="swAng2" />\r
++ <arcTo wR="w" hR="hR" stAng="stAng3" swAng="swAng3" />\r
++ <close />\r
++ </path>\r
++\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="hR" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="hR" stAng="cd2" swAng="mswAng" />\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y7" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="hR" stAng="stAng" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="l" y="hR" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="hR" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="th" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="hR" stAng="3cd4" swAng="swAng2" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </curvedRightArrow>\r
++ <curvedUpArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="aw" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="q1" fmla="+/ th aw 4" />\r
++\r
++ <gd name="wR" fmla="+- wd2 0 q1" />\r
++\r
++ <gd name="q7" fmla="*/ wR 2 1" />\r
++\r
++ <gd name="q8" fmla="*/ q7 q7 1" />\r
++\r
++ <gd name="q9" fmla="*/ th th 1" />\r
++\r
++ <gd name="q10" fmla="+- q8 0 q9" />\r
++ <gd name="q11" fmla="sqrt q10" />\r
++ <gd name="idy" fmla="*/ q11 h q7" />\r
++ <gd name="maxAdj3" fmla="*/ 100000 idy ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="ah" fmla="*/ ss adj3 100000" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="x3" fmla="+- wR th 0" />\r
++\r
++ <gd name="q2" fmla="*/ h h 1" />\r
++ <gd name="q3" fmla="*/ ah ah 1" />\r
++ <gd name="q4" fmla="+- q2 0 q3" />\r
++ <gd name="q5" fmla="sqrt q4" />\r
++ <gd name="dx" fmla="*/ q5 wR h" />\r
++ <gd name="x5" fmla="+- wR dx 0" />\r
++\r
++ <gd name="x7" fmla="+- x3 dx 0" />\r
++\r
++ <gd name="q6" fmla="+- aw 0 th" />\r
++ <gd name="dh" fmla="*/ q6 1 2" />\r
++\r
++ <gd name="x4" fmla="+- x5 0 dh" />\r
++\r
++ <gd name="x8" fmla="+- x7 dh 0" />\r
++\r
++ <gd name="aw2" fmla="*/ aw 1 2" />\r
++ <gd name="x6" fmla="+- r 0 aw2" />\r
++\r
++ <gd name="y1" fmla="+- t ah 0" />\r
++ <gd name="swAng" fmla="at2 ah dx" />\r
++\r
++ <gd name="mswAng" fmla="+- 0 0 swAng" />\r
++ <gd name="iy" fmla="+- t idy 0" />\r
++\r
++ <gd name="ix" fmla="+/ wR x3 2" />\r
++\r
++ <gd name="q12" fmla="*/ th 1 2" />\r
++ <gd name="dang2" fmla="at2 idy q12" />\r
++ <gd name="swAng2" fmla="+- dang2 0 swAng" />\r
++ <gd name="mswAng2" fmla="+- 0 0 swAng2" />\r
++ <gd name="stAng3" fmla="+- cd4 0 swAng" />\r
++ <gd name="swAng3" fmla="+- swAng dang2 0" />\r
++ <gd name="stAng2" fmla="+- cd4 0 dang2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="a2">\r
++ <pos x="x7" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x4" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="r" y="y1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x6" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x4" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="q12" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ix" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x8" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x6" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="stAng3" swAng="swAng3" />\r
++ <arcTo wR="wR" hR="h" stAng="stAng2" swAng="swAng2" />\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++\r
++ <path fill="darkenLess" stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="wR" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="wR" hR="h" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="th" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="cd2" swAng="-5400000" />\r
++ <close />\r
++ </path>\r
++\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="ix" y="iy" />\r
++ </moveTo>\r
++ <arcTo wR="wR" hR="h" stAng="stAng2" swAng="swAng2" />\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="stAng3" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="wR" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="th" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="wR" hR="h" stAng="cd2" swAng="-5400000" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </curvedUpArrow>\r
++ <decagon>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="vf" fmla="val 105146" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
++ <gd name="dx1" fmla="cos wd2 2160000" />\r
++ <gd name="dx2" fmla="cos wd2 4320000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++ <gd name="dy1" fmla="sin shd2 4320000" />\r
++ <gd name="dy2" fmla="sin shd2 2160000" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++ <gd name="y3" fmla="+- vc dy2 0" />\r
++ <gd name="y4" fmla="+- vc dy1 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y2" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="y2" r="x4" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </decagon>\r
++ <diagStripe>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 50000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 100000" />\r
++ <gd name="x2" fmla="*/ w a 100000" />\r
++ <gd name="x1" fmla="*/ x2 1 2" />\r
++ <gd name="x3" fmla="+/ x2 r 2" />\r
++ <gd name="y2" fmla="*/ h a 100000" />\r
++ <gd name="y1" fmla="*/ y2 1 2" />\r
++ <gd name="y3" fmla="+/ y2 b 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="100000">\r
++ <pos x="l" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="hc" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="x3" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </diagStripe>\r
++ <diamond>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="ir" fmla="*/ w 3 4" />\r
++ <gd name="ib" fmla="*/ h 3 4" />\r
++ </gdLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="wd4" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </diamond>\r
++ <dodecagon>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x1" fmla="*/ w 2894 21600" />\r
++ <gd name="x2" fmla="*/ w 7906 21600" />\r
++ <gd name="x3" fmla="*/ w 13694 21600" />\r
++ <gd name="x4" fmla="*/ w 18706 21600" />\r
++ <gd name="y1" fmla="*/ h 2894 21600" />\r
++ <gd name="y2" fmla="*/ h 7906 21600" />\r
++ <gd name="y3" fmla="*/ h 13694 21600" />\r
++ <gd name="y4" fmla="*/ h 18706 21600" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y1" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y3" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="y1" r="x4" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y3" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </dodecagon>\r
++ <donut>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 25000" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dr" fmla="*/ ss a 100000" />\r
++ <gd name="iwd2" fmla="+- wd2 0 dr" />\r
++ <gd name="ihd2" fmla="+- hd2 0 dr" />\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahPolar gdRefR="adj" minR="0" maxR="50000">\r
++ <pos x="dr" y="vc" />\r
++ </ahPolar>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="il" y="it" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="il" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ir" y="ib" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="ir" y="it" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="dr" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="iwd2" hR="ihd2" stAng="cd2" swAng="-5400000" />\r
++ <arcTo wR="iwd2" hR="ihd2" stAng="cd4" swAng="-5400000" />\r
++ <arcTo wR="iwd2" hR="ihd2" stAng="0" swAng="-5400000" />\r
++ <arcTo wR="iwd2" hR="ihd2" stAng="3cd4" swAng="-5400000" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </donut>\r
++ <doubleWave>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 6250" />\r
++\r
++ <gd name="adj2" fmla="val 0" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 12500" />\r
++ <gd name="a2" fmla="pin -10000 adj2 10000" />\r
++ <gd name="y1" fmla="*/ h a1 100000" />\r
++\r
++ <gd name="dy2" fmla="*/ y1 10 3" />\r
++ <gd name="y2" fmla="+- y1 0 dy2" />\r
++\r
++ <gd name="y3" fmla="+- y1 dy2 0" />\r
++\r
++ <gd name="y4" fmla="+- b 0 y1" />\r
++\r
++ <gd name="y5" fmla="+- y4 0 dy2" />\r
++\r
++ <gd name="y6" fmla="+- y4 dy2 0" />\r
++\r
++ <gd name="dx1" fmla="*/ w a2 100000" />\r
++\r
++ <gd name="of2" fmla="*/ w a2 50000" />\r
++\r
++ <gd name="x1" fmla="abs dx1" />\r
++\r
++ <gd name="dx2" fmla="?: of2 0 of2" />\r
++ <gd name="x2" fmla="+- l 0 dx2" />\r
++\r
++ <gd name="dx8" fmla="?: of2 of2 0" />\r
++ <gd name="x8" fmla="+- r 0 dx8" />\r
++\r
++ <gd name="dx3" fmla="+/ dx2 x8 6" />\r
++ <gd name="x3" fmla="+- x2 dx3 0" />\r
++\r
++ <gd name="dx4" fmla="+/ dx2 x8 3" />\r
++ <gd name="x4" fmla="+- x2 dx4 0" />\r
++\r
++ <gd name="x5" fmla="+/ x2 x8 2" />\r
++\r
++ <gd name="x6" fmla="+- x5 dx3 0" />\r
++\r
++ <gd name="x7" fmla="+/ x6 x8 2" />\r
++\r
++ <gd name="x9" fmla="+- l dx8 0" />\r
++\r
++ <gd name="x15" fmla="+- r dx2 0" />\r
++\r
++ <gd name="x10" fmla="+- x9 dx3 0" />\r
++\r
++ <gd name="x11" fmla="+- x9 dx4 0" />\r
++\r
++ <gd name="x12" fmla="+/ x9 x15 2" />\r
++\r
++ <gd name="x13" fmla="+- x12 dx3 0" />\r
++\r
++ <gd name="x14" fmla="+/ x13 x15 2" />\r
++\r
++ <gd name="x16" fmla="+- r 0 x1" />\r
++\r
++ <gd name="xAdj" fmla="+- hc dx1 0" />\r
++ <gd name="il" fmla="max x2 x9" />\r
++ <gd name="ir" fmla="min x8 x15" />\r
++ <gd name="it" fmla="*/ h a1 50000" />\r
++ <gd name="ib" fmla="+- b 0 it" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="12500">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="-10000" maxX="10000">\r
++ <pos x="xAdj" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="x12" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x5" y="y4" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x16" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x2" y="y1" />\r
++ </moveTo>\r
++ <cubicBezTo>\r
++ <pt x="x3" y="y2" />\r
++ <pt x="x4" y="y3" />\r
++ <pt x="x5" y="y1" />\r
++ </cubicBezTo>\r
++ <cubicBezTo>\r
++ <pt x="x6" y="y2" />\r
++ <pt x="x7" y="y3" />\r
++ <pt x="x8" y="y1" />\r
++ </cubicBezTo>\r
++ <lnTo>\r
++ <pt x="x15" y="y4" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="x14" y="y6" />\r
++ <pt x="x13" y="y5" />\r
++ <pt x="x12" y="y4" />\r
++ </cubicBezTo>\r
++ <cubicBezTo>\r
++ <pt x="x11" y="y6" />\r
++ <pt x="x10" y="y5" />\r
++ <pt x="x9" y="y4" />\r
++ </cubicBezTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </doubleWave>\r
++ <downArrow>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 100000 h ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="dy1" fmla="*/ ss a2 100000" />\r
++ <gd name="y1" fmla="+- b 0 dy1" />\r
++ <gd name="dx1" fmla="*/ w a1 200000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc dx1 0" />\r
++ <gd name="dy2" fmla="*/ x1 dy1 wd2" />\r
++ <gd name="y2" fmla="+- y1 dy2 0" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="100000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="x1" t="t" r="x2" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </downArrow>\r
++ <downArrowCallout>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ <gd name="adj4" fmla="val 64977" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="*/ 100000 h ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="q2" fmla="*/ a3 ss h" />\r
++\r
++ <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
++\r
++ <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
++ <gd name="dx1" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="dx2" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++ <gd name="dy3" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="y3" fmla="+- b 0 dy3" />\r
++ <gd name="y2" fmla="*/ h a4 100000" />\r
++\r
++ <gd name="y1" fmla="*/ y2 1 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
++ <pos x="x2" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x1" y="b" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="r" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj4" minY="0" maxY="maxAdj4">\r
++ <pos x="l" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </downArrowCallout>\r
++ <ellipse>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="il" y="it" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="il" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ir" y="ib" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="ir" y="it" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </ellipse>\r
++ <ellipseRibbon>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ <gd name="adj3" fmla="val 12500" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 25000 adj2 75000" />\r
++ <gd name="q10" fmla="+- 100000 0 a1" />\r
++ <gd name="q11" fmla="*/ q10 1 2" />\r
++ <gd name="q12" fmla="+- a1 0 q11" />\r
++ <gd name="minAdj3" fmla="max 0 q12" />\r
++ <gd name="a3" fmla="pin minAdj3 adj3 a1" />\r
++\r
++\r
++ <gd name="dx2" fmla="*/ w a2 200000" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++\r
++ <gd name="x3" fmla="+- x2 wd8 0" />\r
++\r
++ <gd name="x4" fmla="+- r 0 x3" />\r
++\r
++ <gd name="x5" fmla="+- r 0 x2" />\r
++\r
++ <gd name="x6" fmla="+- r 0 wd8" />\r
++\r
++ <gd name="dy1" fmla="*/ h a3 100000" />\r
++\r
++ <gd name="f1" fmla="*/ 4 dy1 w" />\r
++\r
++ <gd name="q1" fmla="*/ x3 x3 w" />\r
++ <gd name="q2" fmla="+- x3 0 q1" />\r
++ <gd name="y1" fmla="*/ f1 q2 1" />\r
++\r
++ <gd name="cx1" fmla="*/ x3 1 2" />\r
++\r
++ <gd name="cy1" fmla="*/ f1 cx1 1" />\r
++\r
++ <gd name="cx2" fmla="+- r 0 cx1" />\r
++\r
++\r
++\r
++ <gd name="q1" fmla="*/ h a1 100000" />\r
++\r
++ <gd name="dy3" fmla="+- q1 0 dy1" />\r
++\r
++ <gd name="q3" fmla="*/ x2 x2 w" />\r
++ <gd name="q4" fmla="+- x2 0 q3" />\r
++ <gd name="q5" fmla="*/ f1 q4 1" />\r
++ <gd name="y3" fmla="+- q5 dy3 0" />\r
++\r
++\r
++\r
++ <gd name="q6" fmla="+- dy1 dy3 y3" />\r
++ <gd name="q7" fmla="+- q6 dy1 0" />\r
++ <gd name="cy3" fmla="+- q7 dy3 0" />\r
++\r
++ <gd name="rh" fmla="+- b 0 q1" />\r
++\r
++ <gd name="q8" fmla="*/ dy1 14 16" />\r
++ <gd name="y2" fmla="+/ q8 rh 2" />\r
++\r
++\r
++ <gd name="y5" fmla="+- q5 rh 0" />\r
++\r
++ <gd name="y6" fmla="+- y3 rh 0" />\r
++\r
++ <gd name="cx4" fmla="*/ x2 1 2" />\r
++\r
++ <gd name="q9" fmla="*/ f1 cx4 1" />\r
++ <gd name="cy4" fmla="+- q9 rh 0" />\r
++\r
++ <gd name="cx5" fmla="+- r 0 cx4" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="cy6" fmla="+- cy3 rh 0" />\r
++\r
++ <gd name="y7" fmla="+- y1 dy3 0" />\r
++ <gd name="cy7" fmla="+- q1 q1 y7" />\r
++ <gd name="y8" fmla="+- b 0 dy1" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
++ <pos x="hc" y="q1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="25000" maxX="75000">\r
++ <pos x="x2" y="b" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="minAdj3" maxY="a1">\r
++ <pos x="l" y="y8" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="q1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="wd8" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x6" y="y2" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x2" t="q1" r="x5" b="y6" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <quadBezTo>\r
++ <pt x="cx1" y="cy1" />\r
++ <pt x="x3" y="y1" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy3" />\r
++ <pt x="x5" y="y3" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx2" y="cy1" />\r
++ <pt x="r" y="t" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="rh" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx5" y="cy4" />\r
++ <pt x="x5" y="y5" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y6" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy6" />\r
++ <pt x="x2" y="y6" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y5" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx4" y="cy4" />\r
++ <pt x="l" y="rh" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="wd8" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="darkenLess" stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x3" y="y7" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy3" />\r
++ <pt x="x5" y="y3" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y7" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy7" />\r
++ <pt x="x3" y="y7" />\r
++ </quadBezTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <quadBezTo>\r
++ <pt x="cx1" y="cy1" />\r
++ <pt x="x3" y="y1" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy3" />\r
++ <pt x="x5" y="y3" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx2" y="cy1" />\r
++ <pt x="r" y="t" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="rh" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx5" y="cy4" />\r
++ <pt x="x5" y="y5" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y6" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy6" />\r
++ <pt x="x2" y="y6" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y5" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx4" y="cy4" />\r
++ <pt x="l" y="rh" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="wd8" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x2" y="y5" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x5" y="y3" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y5" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x3" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y7" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x4" y="y7" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </ellipseRibbon>\r
++ <ellipseRibbon2>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ <gd name="adj3" fmla="val 12500" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 25000 adj2 75000" />\r
++ <gd name="q10" fmla="+- 100000 0 a1" />\r
++ <gd name="q11" fmla="*/ q10 1 2" />\r
++ <gd name="q12" fmla="+- a1 0 q11" />\r
++ <gd name="minAdj3" fmla="max 0 q12" />\r
++ <gd name="a3" fmla="pin minAdj3 adj3 a1" />\r
++ <gd name="dx2" fmla="*/ w a2 200000" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++\r
++ <gd name="x3" fmla="+- x2 wd8 0" />\r
++\r
++ <gd name="x4" fmla="+- r 0 x3" />\r
++\r
++ <gd name="x5" fmla="+- r 0 x2" />\r
++\r
++ <gd name="x6" fmla="+- r 0 wd8" />\r
++\r
++ <gd name="dy1" fmla="*/ h a3 100000" />\r
++\r
++ <gd name="f1" fmla="*/ 4 dy1 w" />\r
++\r
++ <gd name="q1" fmla="*/ x3 x3 w" />\r
++ <gd name="q2" fmla="+- x3 0 q1" />\r
++ <gd name="u1" fmla="*/ f1 q2 1" />\r
++\r
++ <gd name="y1" fmla="+- b 0 u1" />\r
++ <gd name="cx1" fmla="*/ x3 1 2" />\r
++\r
++ <gd name="cu1" fmla="*/ f1 cx1 1" />\r
++\r
++ <gd name="cy1" fmla="+- b 0 cu1" />\r
++ <gd name="cx2" fmla="+- r 0 cx1" />\r
++\r
++\r
++\r
++ <gd name="q1" fmla="*/ h a1 100000" />\r
++\r
++ <gd name="dy3" fmla="+- q1 0 dy1" />\r
++\r
++ <gd name="q3" fmla="*/ x2 x2 w" />\r
++ <gd name="q4" fmla="+- x2 0 q3" />\r
++ <gd name="q5" fmla="*/ f1 q4 1" />\r
++ <gd name="u3" fmla="+- q5 dy3 0" />\r
++\r
++ <gd name="y3" fmla="+- b 0 u3" />\r
++\r
++\r
++ <gd name="q6" fmla="+- dy1 dy3 u3" />\r
++ <gd name="q7" fmla="+- q6 dy1 0" />\r
++ <gd name="cu3" fmla="+- q7 dy3 0" />\r
++\r
++ <gd name="cy3" fmla="+- b 0 cu3" />\r
++ <gd name="rh" fmla="+- b 0 q1" />\r
++\r
++ <gd name="q8" fmla="*/ dy1 14 16" />\r
++ <gd name="u2" fmla="+/ q8 rh 2" />\r
++\r
++ <gd name="y2" fmla="+- b 0 u2" />\r
++\r
++ <gd name="u5" fmla="+- q5 rh 0" />\r
++\r
++ <gd name="y5" fmla="+- b 0 u5" />\r
++ <gd name="u6" fmla="+- u3 rh 0" />\r
++\r
++ <gd name="y6" fmla="+- b 0 u6" />\r
++ <gd name="cx4" fmla="*/ x2 1 2" />\r
++\r
++ <gd name="q9" fmla="*/ f1 cx4 1" />\r
++ <gd name="cu4" fmla="+- q9 rh 0" />\r
++\r
++ <gd name="cy4" fmla="+- b 0 cu4" />\r
++ <gd name="cx5" fmla="+- r 0 cx4" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="cu6" fmla="+- cu3 rh 0" />\r
++\r
++ <gd name="cy6" fmla="+- b 0 cu6" />\r
++ <gd name="u7" fmla="+- u1 dy3 0" />\r
++ <gd name="y7" fmla="+- b 0 u7" />\r
++ <gd name="cu7" fmla="+- q1 q1 u7" />\r
++ <gd name="cy7" fmla="+- b 0 cu7" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
++ <pos x="hc" y="rh" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="25000" maxX="100000">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="minAdj3" maxY="a1">\r
++ <pos x="l" y="dy1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="wd8" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="rh" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x6" y="y2" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x2" t="y6" r="x5" b="rh" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <quadBezTo>\r
++ <pt x="cx1" y="cy1" />\r
++ <pt x="x3" y="y1" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy3" />\r
++ <pt x="x5" y="y3" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx2" y="cy1" />\r
++ <pt x="r" y="b" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="q1" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx5" y="cy4" />\r
++ <pt x="x5" y="y5" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y6" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy6" />\r
++ <pt x="x2" y="y6" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y5" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx4" y="cy4" />\r
++ <pt x="l" y="q1" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="wd8" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="darkenLess" stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x3" y="y7" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy3" />\r
++ <pt x="x5" y="y3" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y7" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy7" />\r
++ <pt x="x3" y="y7" />\r
++ </quadBezTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="wd8" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="q1" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx4" y="cy4" />\r
++ <pt x="x2" y="y5" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y6" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy6" />\r
++ <pt x="x5" y="y6" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y5" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx5" y="cy4" />\r
++ <pt x="r" y="q1" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx2" y="cy1" />\r
++ <pt x="x4" y="y1" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y3" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="cy3" />\r
++ <pt x="x2" y="y3" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="cx1" y="cy1" />\r
++ <pt x="l" y="b" />\r
++ </quadBezTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x2" y="y3" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y5" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x5" y="y5" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y3" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x3" y="y7" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x4" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y7" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </ellipseRibbon2>\r
++ <flowChartAlternateProcess>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="+- r 0 ssd6" />\r
++ <gd name="y2" fmla="+- b 0 ssd6" />\r
++ <gd name="il" fmla="*/ ssd6 29289 100000" />\r
++\r
++\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 il" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="ssd6" />\r
++ </moveTo>\r
++ <arcTo wR="ssd6" hR="ssd6" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="ssd6" hR="ssd6" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="ssd6" hR="ssd6" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="ssd6" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="ssd6" hR="ssd6" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartAlternateProcess>\r
++ <flowChartCollate>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="ir" fmla="*/ w 3 4" />\r
++ <gd name="ib" fmla="*/ h 3 4" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd4" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="2" h="2">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="2" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="2" y="2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartCollate>\r
++ <flowChartConnector>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="il" y="it" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="il" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ir" y="ib" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="ir" y="it" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartConnector>\r
++ <flowChartDecision>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="ir" fmla="*/ w 3 4" />\r
++ <gd name="ib" fmla="*/ h 3 4" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd4" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="2" h="2">\r
++ <moveTo>\r
++ <pt x="0" y="1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="2" y="1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartDecision>\r
++ <flowChartDelay>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartDelay>\r
++ <flowChartDisplay>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w 5 6" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd6" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="6" h="6">\r
++ <moveTo>\r
++ <pt x="0" y="3" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="5" y="0" />\r
++ </lnTo>\r
++ <arcTo wR="1" hR="3" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="1" y="6" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartDisplay>\r
++ <flowChartDocument>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h 17322 21600" />\r
++ <gd name="y2" fmla="*/ h 20172 21600" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="21600" h="21600">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="21600" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="21600" y="17322" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="10800" y="17322" />\r
++ <pt x="10800" y="23922" />\r
++ <pt x="0" y="20172" />\r
++ </cubicBezTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartDocument>\r
++ <flowChartExtract>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w 3 4" />\r
++ </gdLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="wd4" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x2" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd4" t="vc" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="2" h="2">\r
++ <moveTo>\r
++ <pt x="0" y="2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="2" y="2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartExtract>\r
++ <flowChartInputOutput>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x3" fmla="*/ w 2 5" />\r
++ <gd name="x4" fmla="*/ w 3 5" />\r
++ <gd name="x5" fmla="*/ w 4 5" />\r
++ <gd name="x6" fmla="*/ w 9 10" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x4" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="wd10" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x6" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd5" t="t" r="x5" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="5" h="5">\r
++ <moveTo>\r
++ <pt x="0" y="5" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="5" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="4" y="5" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartInputOutput>\r
++ <flowChartInternalStorage>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd8" t="hd8" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false" w="1" h="1">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false" w="8" h="8">\r
++\r
++ <moveTo>\r
++ <pt x="1" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="8" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="0" y="1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="8" y="1" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" w="1" h="1">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartInternalStorage>\r
++ <flowChartMagneticDisk>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y3" fmla="*/ h 5 6" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="hd3" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="hd3" r="r" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false" w="6" h="6">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="1" />\r
++ </moveTo>\r
++ <arcTo wR="3" hR="1" stAng="cd2" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="6" y="5" />\r
++ </lnTo>\r
++ <arcTo wR="3" hR="1" stAng="0" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false" w="6" h="6">\r
++\r
++ <moveTo>\r
++ <pt x="6" y="1" />\r
++ </moveTo>\r
++ <arcTo wR="3" hR="1" stAng="0" swAng="cd2" />\r
++ </path>\r
++ <path fill="none" w="6" h="6">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="1" />\r
++ </moveTo>\r
++ <arcTo wR="3" hR="1" stAng="cd2" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="6" y="5" />\r
++ </lnTo>\r
++ <arcTo wR="3" hR="1" stAng="0" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartMagneticDisk>\r
++ <flowChartMagneticDrum>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w 2 3" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x2" y="vc" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd6" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false" w="6" h="6">\r
++\r
++ <moveTo>\r
++ <pt x="1" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="5" y="0" />\r
++ </lnTo>\r
++ <arcTo wR="1" hR="3" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="1" y="6" />\r
++ </lnTo>\r
++ <arcTo wR="1" hR="3" stAng="cd4" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false" w="6" h="6">\r
++\r
++ <moveTo>\r
++ <pt x="5" y="6" />\r
++ </moveTo>\r
++ <arcTo wR="1" hR="3" stAng="cd4" swAng="cd2" />\r
++ </path>\r
++ <path fill="none" w="6" h="6">\r
++\r
++ <moveTo>\r
++ <pt x="1" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="5" y="0" />\r
++ </lnTo>\r
++ <arcTo wR="1" hR="3" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="1" y="6" />\r
++ </lnTo>\r
++ <arcTo wR="1" hR="3" stAng="cd4" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartMagneticDrum>\r
++ <flowChartMagneticTape>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ <gd name="ang1" fmla="at2 w h" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="hc" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="ang1" />\r
++ <lnTo>\r
++ <pt x="r" y="ib" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartMagneticTape>\r
++ <flowChartManualInput>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="hd10" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="hd5" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="5" h="5">\r
++ <moveTo>\r
++ <pt x="0" y="1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="5" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="5" y="5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="5" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartManualInput>\r
++ <flowChartManualOperation>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x3" fmla="*/ w 4 5" />\r
++ <gd name="x4" fmla="*/ w 9 10" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="wd10" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd5" t="t" r="x3" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="5" h="5">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="5" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="4" y="5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="5" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartManualOperation>\r
++ <flowChartMerge>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w 3 4" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="wd4" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x2" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd4" t="t" r="x2" b="vc" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="2" h="2">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="2" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartMerge>\r
++ <flowChartMultidocument>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y2" fmla="*/ h 3675 21600" />\r
++ <gd name="y8" fmla="*/ h 20782 21600" />\r
++ <gd name="x3" fmla="*/ w 9298 21600" />\r
++ <gd name="x4" fmla="*/ w 12286 21600" />\r
++ <gd name="x5" fmla="*/ w 18595 21600" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x4" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="y8" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="y2" r="x5" b="y8" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false" w="21600" h="21600">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="20782" />\r
++ </moveTo>\r
++ <cubicBezTo>\r
++ <pt x="9298" y="23542" />\r
++ <pt x="9298" y="18022" />\r
++ <pt x="18595" y="18022" />\r
++ </cubicBezTo>\r
++ <lnTo>\r
++ <pt x="18595" y="3675" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="3675" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="1532" y="3675" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1532" y="1815" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="20000" y="1815" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="20000" y="16252" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="19298" y="16252" />\r
++ <pt x="18595" y="16352" />\r
++ <pt x="18595" y="16352" />\r
++ </cubicBezTo>\r
++ <lnTo>\r
++ <pt x="18595" y="3675" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="2972" y="1815" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="2972" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="21600" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="21600" y="14392" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="20800" y="14392" />\r
++ <pt x="20000" y="14467" />\r
++ <pt x="20000" y="14467" />\r
++ </cubicBezTo>\r
++ <lnTo>\r
++ <pt x="20000" y="1815" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false" w="21600" h="21600">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="3675" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="18595" y="3675" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="18595" y="18022" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="9298" y="18022" />\r
++ <pt x="9298" y="23542" />\r
++ <pt x="0" y="20782" />\r
++ </cubicBezTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="1532" y="3675" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1532" y="1815" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="20000" y="1815" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="20000" y="16252" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="19298" y="16252" />\r
++ <pt x="18595" y="16352" />\r
++ <pt x="18595" y="16352" />\r
++ </cubicBezTo>\r
++ <moveTo>\r
++ <pt x="2972" y="1815" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="2972" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="21600" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="21600" y="14392" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="20800" y="14392" />\r
++ <pt x="20000" y="14467" />\r
++ <pt x="20000" y="14467" />\r
++ </cubicBezTo>\r
++ </path>\r
++ <path stroke="false" fill="none" w="21600" h="21600">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="20782" />\r
++ </moveTo>\r
++ <cubicBezTo>\r
++ <pt x="9298" y="23542" />\r
++ <pt x="9298" y="18022" />\r
++ <pt x="18595" y="18022" />\r
++ </cubicBezTo>\r
++ <lnTo>\r
++ <pt x="18595" y="16352" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="18595" y="16352" />\r
++ <pt x="19298" y="16252" />\r
++ <pt x="20000" y="16252" />\r
++ </cubicBezTo>\r
++ <lnTo>\r
++ <pt x="20000" y="14467" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="20000" y="14467" />\r
++ <pt x="20800" y="14392" />\r
++ <pt x="21600" y="14392" />\r
++ </cubicBezTo>\r
++ <lnTo>\r
++ <pt x="21600" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="2972" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="2972" y="1815" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1532" y="1815" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1532" y="3675" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="3675" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartMultidocument>\r
++ <flowChartOfflineStorage>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x4" fmla="*/ w 3 4" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x4" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="wd4" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd4" t="t" r="x4" b="vc" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false" w="2" h="2">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="2" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false" w="5" h="5">\r
++\r
++ <moveTo>\r
++ <pt x="2" y="4" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="3" y="4" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" extrusionOk="true" w="2" h="2">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="2" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartOfflineStorage>\r
++ <flowChartOffpageConnector>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y1" fmla="*/ h 4 5" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="10" h="10">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="10" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10" y="8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="5" y="10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="8" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartOffpageConnector>\r
++ <flowChartOnlineStorage>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w 5 6" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x2" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd6" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="6" h="6">\r
++ <moveTo>\r
++ <pt x="1" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="6" y="0" />\r
++ </lnTo>\r
++ <arcTo wR="1" hR="3" stAng="3cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="1" y="6" />\r
++ </lnTo>\r
++ <arcTo wR="1" hR="3" stAng="cd4" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartOnlineStorage>\r
++ <flowChartOr>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="il" y="it" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="il" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ir" y="ib" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="ir" y="it" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="hc" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartOr>\r
++ <flowChartPredefinedProcess>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w 7 8" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd8" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false" w="1" h="1">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false" w="8" h="8">\r
++\r
++ <moveTo>\r
++ <pt x="1" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="8" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="7" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="7" y="8" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" w="1" h="1">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartPredefinedProcess>\r
++ <flowChartPreparation>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w 4 5" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd5" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="10" h="10">\r
++ <moveTo>\r
++ <pt x="0" y="5" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="2" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="8" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10" y="5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="8" y="10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="2" y="10" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartPreparation>\r
++ <flowChartProcess>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="1" h="1">\r
++ <moveTo>\r
++ <pt x="0" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartProcess>\r
++ <flowChartPunchedCard>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="hd5" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="5" h="5">\r
++ <moveTo>\r
++ <pt x="0" y="1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="5" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="5" y="5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="5" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartPunchedCard>\r
++ <flowChartPunchedTape>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="y2" fmla="*/ h 9 10" />\r
++ <gd name="ib" fmla="*/ h 4 5" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="hd10" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="hd5" r="r" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="20" h="20">\r
++ <moveTo>\r
++ <pt x="0" y="2" />\r
++ </moveTo>\r
++ <arcTo wR="5" hR="2" stAng="cd2" swAng="-10800000" />\r
++ <arcTo wR="5" hR="2" stAng="cd2" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="20" y="18" />\r
++ </lnTo>\r
++ <arcTo wR="5" hR="2" stAng="0" swAng="-10800000" />\r
++ <arcTo wR="5" hR="2" stAng="0" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartPunchedTape>\r
++ <flowChartSort>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="ir" fmla="*/ w 3 4" />\r
++ <gd name="ib" fmla="*/ h 3 4" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="wd4" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false" w="2" h="2">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="2" y="1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false" w="2" h="2">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="2" y="1" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none" w="2" h="2">\r
++\r
++ <moveTo>\r
++ <pt x="0" y="1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="1" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="2" y="1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1" y="2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartSort>\r
++ <flowChartSummingJunction>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="il" y="it" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="il" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ir" y="ib" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="ir" y="it" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="il" y="it" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="ir" y="ib" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="ir" y="it" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="il" y="ib" />\r
++ </lnTo>\r
++ </path>\r
++ <path fill="none">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartSummingJunction>\r
++ <flowChartTerminator>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="il" fmla="*/ w 1018 21600" />\r
++ <gd name="ir" fmla="*/ w 20582 21600" />\r
++ <gd name="it" fmla="*/ h 3163 21600" />\r
++ <gd name="ib" fmla="*/ h 18437 21600" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="21600" h="21600">\r
++ <moveTo>\r
++ <pt x="3475" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="18125" y="0" />\r
++ </lnTo>\r
++ <arcTo wR="3475" hR="10800" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="3475" y="21600" />\r
++ </lnTo>\r
++ <arcTo wR="3475" hR="10800" stAng="cd4" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </flowChartTerminator>\r
++ <foldedCorner>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 16667" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dy2" fmla="*/ ss a 100000" />\r
++ <gd name="dy1" fmla="*/ dy2 1 5" />\r
++ <gd name="x1" fmla="+- r 0 dy2" />\r
++ <gd name="x2" fmla="+- x1 dy1 0" />\r
++ <gd name="y2" fmla="+- b 0 dy2" />\r
++ <gd name="y1" fmla="+- y2 dy1 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="50000">\r
++ <pos x="x1" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darkenLess" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="x1" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="x1" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </foldedCorner>\r
++ <frame>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 12500" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 50000" />\r
++ <gd name="x1" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="x4" fmla="+- r 0 x1" />\r
++\r
++\r
++\r
++ <gd name="y4" fmla="+- b 0 x1" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="x1" r="x4" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x1" y="x1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="x1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </frame>\r
++ <funnel>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="d" fmla="*/ ss 1 20" />\r
++\r
++\r
++ <gd name="rw2" fmla="+- wd2 0 d" />\r
++\r
++ <gd name="rh2" fmla="+- hd4 0 d" />\r
++\r
++\r
++\r
++ <gd name="t1" fmla="cos wd2 480000" />\r
++\r
++ <gd name="t2" fmla="sin hd4 480000" />\r
++\r
++ <gd name="da" fmla="at2 t1 t2" />\r
++\r
++\r
++ <gd name="2da" fmla="*/ da 2 1" />\r
++ <gd name="stAng1" fmla="+- cd2 0 da" />\r
++ <gd name="swAng1" fmla="+- cd2 2da 0" />\r
++\r
++\r
++ <gd name="swAng3" fmla="+- cd2 0 2da" />\r
++\r
++\r
++ <gd name="rw3" fmla="*/ wd2 1 4" />\r
++ <gd name="rh3" fmla="*/ hd4 1 4" />\r
++\r
++\r
++ <gd name="ct1" fmla="cos hd4 stAng1" />\r
++ <gd name="st1" fmla="sin wd2 stAng1" />\r
++ <gd name="m1" fmla="mod ct1 st1 0" />\r
++ <gd name="n1" fmla="*/ wd2 hd4 m1" />\r
++ <gd name="dx1" fmla="cos n1 stAng1" />\r
++ <gd name="dy1" fmla="sin n1 stAng1" />\r
++ <gd name="x1" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- hd4 dy1 0" />\r
++\r
++\r
++ <gd name="ct3" fmla="cos rh3 da" />\r
++ <gd name="st3" fmla="sin rw3 da" />\r
++ <gd name="m3" fmla="mod ct3 st3 0" />\r
++ <gd name="n3" fmla="*/ rw3 rh3 m3" />\r
++ <gd name="dx3" fmla="cos n3 da" />\r
++ <gd name="dy3" fmla="sin n3 da" />\r
++ <gd name="x3" fmla="+- hc dx3 0" />\r
++ <gd name="vc3" fmla="+- b 0 rh3" />\r
++ <gd name="y2" fmla="+- vc3 dy3 0" />\r
++\r
++\r
++ <gd name="x2" fmla="+- wd2 0 rw2" />\r
++\r
++ <gd name="cd" fmla="*/ cd2 2 1" />\r
++ </gdLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <arcTo hR="hd4" wR="wd2" stAng="stAng1" swAng="swAng1" />\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <arcTo hR="rh3" wR="rw3" stAng="da" swAng="swAng3" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x2" y="hd4" />\r
++ </moveTo>\r
++ <arcTo hR="rh2" wR="rw2" stAng="cd2" swAng="-21600000" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </funnel>\r
++ <gear6>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 15000" />\r
++\r
++ <gd name="adj2" fmla="val 3526" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++\r
++\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 20000" />\r
++ <gd name="a2" fmla="pin 0 adj2 5358" />\r
++\r
++\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++ <gd name="lFD" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="th2" fmla="*/ th 1 2" />\r
++ <gd name="l2" fmla="*/ lFD 1 2" />\r
++ <gd name="l3" fmla="+- th2 l2 0" />\r
++\r
++\r
++ <gd name="rh" fmla="+- hd2 0 th" />\r
++ <gd name="rw" fmla="+- wd2 0 th" />\r
++\r
++\r
++ <gd name="dr" fmla="+- rw 0 rh" />\r
++ <gd name="maxr" fmla="?: dr rh rw" />\r
++ <gd name="ha" fmla="at2 maxr l3" />\r
++\r
++\r
++ <gd name="aA1" fmla="+- 19800000 0 ha" />\r
++ <gd name="aD1" fmla="+- 19800000 ha 0" />\r
++\r
++\r
++ <gd name="ta11" fmla="cos rw aA1" />\r
++ <gd name="ta12" fmla="sin rh aA1" />\r
++ <gd name="bA1" fmla="at2 ta11 ta12" />\r
++\r
++ <gd name="cta1" fmla="cos rh bA1" />\r
++ <gd name="sta1" fmla="sin rw bA1" />\r
++ <gd name="ma1" fmla="mod cta1 sta1 0" />\r
++ <gd name="na1" fmla="*/ rw rh ma1" />\r
++ <gd name="dxa1" fmla="cos na1 bA1" />\r
++ <gd name="dya1" fmla="sin na1 bA1" />\r
++ <gd name="xA1" fmla="+- hc dxa1 0" />\r
++ <gd name="yA1" fmla="+- vc dya1 0" />\r
++\r
++\r
++ <gd name="td11" fmla="cos rw aD1" />\r
++ <gd name="td12" fmla="sin rh aD1" />\r
++ <gd name="bD1" fmla="at2 td11 td12" />\r
++\r
++ <gd name="ctd1" fmla="cos rh bD1" />\r
++ <gd name="std1" fmla="sin rw bD1" />\r
++ <gd name="md1" fmla="mod ctd1 std1 0" />\r
++ <gd name="nd1" fmla="*/ rw rh md1" />\r
++ <gd name="dxd1" fmla="cos nd1 bD1" />\r
++ <gd name="dyd1" fmla="sin nd1 bD1" />\r
++ <gd name="xD1" fmla="+- hc dxd1 0" />\r
++ <gd name="yD1" fmla="+- vc dyd1 0" />\r
++\r
++\r
++ <gd name="xAD1" fmla="+- xA1 0 xD1" />\r
++ <gd name="yAD1" fmla="+- yA1 0 yD1" />\r
++ <gd name="lAD1" fmla="mod xAD1 yAD1 0" />\r
++ <gd name="a1" fmla="at2 yAD1 xAD1" />\r
++\r
++\r
++ <gd name="dxF1" fmla="sin lFD a1" />\r
++ <gd name="dyF1" fmla="cos lFD a1" />\r
++ <gd name="xF1" fmla="+- xD1 dxF1 0" />\r
++ <gd name="yF1" fmla="+- yD1 dyF1 0" />\r
++ <gd name="xE1" fmla="+- xA1 0 dxF1" />\r
++ <gd name="yE1" fmla="+- yA1 0 dyF1" />\r
++\r
++\r
++ <gd name="yC1t" fmla="sin th a1" />\r
++ <gd name="xC1t" fmla="cos th a1" />\r
++ <gd name="yC1" fmla="+- yF1 yC1t 0" />\r
++ <gd name="xC1" fmla="+- xF1 0 xC1t" />\r
++\r
++\r
++ <gd name="yB1" fmla="+- yE1 yC1t 0" />\r
++ <gd name="xB1" fmla="+- xE1 0 xC1t" />\r
++\r
++\r
++ <gd name="aD6" fmla="+- 3cd4 ha 0" />\r
++\r
++\r
++ <gd name="td61" fmla="cos rw aD6" />\r
++ <gd name="td62" fmla="sin rh aD6" />\r
++ <gd name="bD6" fmla="at2 td61 td62" />\r
++\r
++ <gd name="ctd6" fmla="cos rh bD6" />\r
++ <gd name="std6" fmla="sin rw bD6" />\r
++ <gd name="md6" fmla="mod ctd6 std6 0" />\r
++ <gd name="nd6" fmla="*/ rw rh md6" />\r
++ <gd name="dxd6" fmla="cos nd6 bD6" />\r
++ <gd name="dyd6" fmla="sin nd6 bD6" />\r
++ <gd name="xD6" fmla="+- hc dxd6 0" />\r
++ <gd name="yD6" fmla="+- vc dyd6 0" />\r
++\r
++\r
++ <gd name="xA6" fmla="+- hc 0 dxd6" />\r
++\r
++\r
++ <gd name="xF6" fmla="+- xD6 0 lFD" />\r
++ <gd name="xE6" fmla="+- xA6 lFD 0" />\r
++\r
++\r
++ <gd name="yC6" fmla="+- yD6 0 th" />\r
++\r
++ <gd name="swAng1" fmla="+- bA1 0 bD6" />\r
++\r
++\r
++ <gd name="aA2" fmla="+- 1800000 0 ha" />\r
++ <gd name="aD2" fmla="+- 1800000 ha 0" />\r
++\r
++\r
++ <gd name="ta21" fmla="cos rw aA2" />\r
++ <gd name="ta22" fmla="sin rh aA2" />\r
++ <gd name="bA2" fmla="at2 ta21 ta22" />\r
++\r
++ <gd name="yA2" fmla="+- h 0 yD1" />\r
++\r
++\r
++ <gd name="td21" fmla="cos rw aD2" />\r
++ <gd name="td22" fmla="sin rh aD2" />\r
++ <gd name="bD2" fmla="at2 td21 td22" />\r
++\r
++ <gd name="yD2" fmla="+- h 0 yA1" />\r
++\r
++\r
++ <gd name="yC2" fmla="+- h 0 yB1" />\r
++\r
++\r
++ <gd name="yB2" fmla="+- h 0 yC1" />\r
++ <gd name="xB2" fmla="val xC1" />\r
++\r
++ <gd name="swAng2" fmla="+- bA2 0 bD1" />\r
++\r
++\r
++ <gd name="aD3" fmla="+- cd4 ha 0" />\r
++\r
++ <gd name="td31" fmla="cos rw aD3" />\r
++ <gd name="td32" fmla="sin rh aD3" />\r
++ <gd name="bD3" fmla="at2 td31 td32" />\r
++\r
++\r
++ <gd name="yD3" fmla="+- h 0 yD6" />\r
++\r
++\r
++ <gd name="yB3" fmla="+- h 0 yC6" />\r
++\r
++\r
++ <gd name="aD4" fmla="+- 9000000 ha 0" />\r
++\r
++ <gd name="td41" fmla="cos rw aD4" />\r
++ <gd name="td42" fmla="sin rh aD4" />\r
++ <gd name="bD4" fmla="at2 td41 td42" />\r
++\r
++\r
++ <gd name="xD4" fmla="+- w 0 xD1" />\r
++\r
++\r
++ <gd name="xC4" fmla="+- w 0 xC1" />\r
++\r
++\r
++ <gd name="xB4" fmla="+- w 0 xB1" />\r
++\r
++\r
++ <gd name="aD5" fmla="+- 12600000 ha 0" />\r
++\r
++ <gd name="td51" fmla="cos rw aD5" />\r
++ <gd name="td52" fmla="sin rh aD5" />\r
++ <gd name="bD5" fmla="at2 td51 td52" />\r
++\r
++\r
++ <gd name="xD5" fmla="+- w 0 xA1" />\r
++\r
++\r
++ <gd name="xC5" fmla="+- w 0 xB1" />\r
++\r
++\r
++ <gd name="xB5" fmla="+- w 0 xC1" />\r
++\r
++\r
++ <gd name="xCxn1" fmla="+/ xB1 xC1 2" />\r
++ <gd name="yCxn1" fmla="+/ yB1 yC1 2" />\r
++ <gd name="yCxn2" fmla="+- b 0 yCxn1" />\r
++ <gd name="xCxn4" fmla="+/ r 0 xCxn1" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="20000">\r
++ <pos x="xD6" y="yD6" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="5358">\r
++ <pos x="xA6" y="yD6" />\r
++ </ahXY>\r
++\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="19800000">\r
++ <pos x="xCxn1" y="yCxn1" />\r
++ </cxn>\r
++\r
++ <cxn ang="1800000">\r
++ <pos x="xCxn1" y="yCxn2" />\r
++ </cxn>\r
++\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="yB3" />\r
++ </cxn>\r
++\r
++ <cxn ang="9000000">\r
++ <pos x="xCxn4" y="yCxn2" />\r
++ </cxn>\r
++\r
++ <cxn ang="12600000">\r
++ <pos x="xCxn4" y="yCxn1" />\r
++ </cxn>\r
++\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="yC6" />\r
++ </cxn>\r
++\r
++ </cxnLst>\r
++\r
++ <rect l="xD5" t="yA1" r="xA1" b="yD2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="xA1" y="yA1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="xB1" y="yB1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC1" y="yC1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD1" y="yD1" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD1" swAng="swAng2" />\r
++\r
++ <lnTo>\r
++ <pt x="xC1" y="yB2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xB1" y="yC2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xA1" y="yD2" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD2" swAng="swAng1" />\r
++\r
++ <lnTo>\r
++ <pt x="xF6" y="yB3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xE6" y="yB3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xA6" y="yD3" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD3" swAng="swAng1" />\r
++\r
++ <lnTo>\r
++ <pt x="xB4" y="yC2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC4" y="yB2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD4" y="yA2" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD4" swAng="swAng2" />\r
++\r
++ <lnTo>\r
++ <pt x="xB5" y="yC1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC5" y="yB1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD5" y="yA1" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD5" swAng="swAng1" />\r
++\r
++ <lnTo>\r
++ <pt x="xE6" y="yC6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xF6" y="yC6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD6" y="yD6" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD6" swAng="swAng1" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </gear6>\r
++ <gear9>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 10000" />\r
++\r
++ <gd name="adj2" fmla="val 1763" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++\r
++\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 20000" />\r
++ <gd name="a2" fmla="pin 0 adj2 2679" />\r
++\r
++\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++ <gd name="lFD" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="th2" fmla="*/ th 1 2" />\r
++ <gd name="l2" fmla="*/ lFD 1 2" />\r
++ <gd name="l3" fmla="+- th2 l2 0" />\r
++\r
++\r
++ <gd name="rh" fmla="+- hd2 0 th" />\r
++ <gd name="rw" fmla="+- wd2 0 th" />\r
++\r
++\r
++ <gd name="dr" fmla="+- rw 0 rh" />\r
++ <gd name="maxr" fmla="?: dr rh rw" />\r
++ <gd name="ha" fmla="at2 maxr l3" />\r
++\r
++\r
++ <gd name="aA1" fmla="+- 18600000 0 ha" />\r
++ <gd name="aD1" fmla="+- 18600000 ha 0" />\r
++\r
++\r
++ <gd name="ta11" fmla="cos rw aA1" />\r
++ <gd name="ta12" fmla="sin rh aA1" />\r
++ <gd name="bA1" fmla="at2 ta11 ta12" />\r
++\r
++ <gd name="cta1" fmla="cos rh bA1" />\r
++ <gd name="sta1" fmla="sin rw bA1" />\r
++ <gd name="ma1" fmla="mod cta1 sta1 0" />\r
++ <gd name="na1" fmla="*/ rw rh ma1" />\r
++ <gd name="dxa1" fmla="cos na1 bA1" />\r
++ <gd name="dya1" fmla="sin na1 bA1" />\r
++ <gd name="xA1" fmla="+- hc dxa1 0" />\r
++ <gd name="yA1" fmla="+- vc dya1 0" />\r
++\r
++\r
++ <gd name="td11" fmla="cos rw aD1" />\r
++ <gd name="td12" fmla="sin rh aD1" />\r
++ <gd name="bD1" fmla="at2 td11 td12" />\r
++\r
++ <gd name="ctd1" fmla="cos rh bD1" />\r
++ <gd name="std1" fmla="sin rw bD1" />\r
++ <gd name="md1" fmla="mod ctd1 std1 0" />\r
++ <gd name="nd1" fmla="*/ rw rh md1" />\r
++ <gd name="dxd1" fmla="cos nd1 bD1" />\r
++ <gd name="dyd1" fmla="sin nd1 bD1" />\r
++ <gd name="xD1" fmla="+- hc dxd1 0" />\r
++ <gd name="yD1" fmla="+- vc dyd1 0" />\r
++\r
++\r
++ <gd name="xAD1" fmla="+- xA1 0 xD1" />\r
++ <gd name="yAD1" fmla="+- yA1 0 yD1" />\r
++ <gd name="lAD1" fmla="mod xAD1 yAD1 0" />\r
++ <gd name="a1" fmla="at2 yAD1 xAD1" />\r
++\r
++\r
++ <gd name="dxF1" fmla="sin lFD a1" />\r
++ <gd name="dyF1" fmla="cos lFD a1" />\r
++ <gd name="xF1" fmla="+- xD1 dxF1 0" />\r
++ <gd name="yF1" fmla="+- yD1 dyF1 0" />\r
++ <gd name="xE1" fmla="+- xA1 0 dxF1" />\r
++ <gd name="yE1" fmla="+- yA1 0 dyF1" />\r
++\r
++\r
++ <gd name="yC1t" fmla="sin th a1" />\r
++ <gd name="xC1t" fmla="cos th a1" />\r
++ <gd name="yC1" fmla="+- yF1 yC1t 0" />\r
++ <gd name="xC1" fmla="+- xF1 0 xC1t" />\r
++\r
++\r
++ <gd name="yB1" fmla="+- yE1 yC1t 0" />\r
++ <gd name="xB1" fmla="+- xE1 0 xC1t" />\r
++\r
++\r
++ <gd name="aA2" fmla="+- 21000000 0 ha" />\r
++ <gd name="aD2" fmla="+- 21000000 ha 0" />\r
++\r
++\r
++ <gd name="ta21" fmla="cos rw aA2" />\r
++ <gd name="ta22" fmla="sin rh aA2" />\r
++ <gd name="bA2" fmla="at2 ta21 ta22" />\r
++\r
++ <gd name="cta2" fmla="cos rh bA2" />\r
++ <gd name="sta2" fmla="sin rw bA2" />\r
++ <gd name="ma2" fmla="mod cta2 sta2 0" />\r
++ <gd name="na2" fmla="*/ rw rh ma2" />\r
++ <gd name="dxa2" fmla="cos na2 bA2" />\r
++ <gd name="dya2" fmla="sin na2 bA2" />\r
++ <gd name="xA2" fmla="+- hc dxa2 0" />\r
++ <gd name="yA2" fmla="+- vc dya2 0" />\r
++\r
++\r
++ <gd name="td21" fmla="cos rw aD2" />\r
++ <gd name="td22" fmla="sin rh aD2" />\r
++ <gd name="bD2" fmla="at2 td21 td22" />\r
++\r
++ <gd name="ctd2" fmla="cos rh bD2" />\r
++ <gd name="std2" fmla="sin rw bD2" />\r
++ <gd name="md2" fmla="mod ctd2 std2 0" />\r
++ <gd name="nd2" fmla="*/ rw rh md2" />\r
++ <gd name="dxd2" fmla="cos nd2 bD2" />\r
++ <gd name="dyd2" fmla="sin nd2 bD2" />\r
++ <gd name="xD2" fmla="+- hc dxd2 0" />\r
++ <gd name="yD2" fmla="+- vc dyd2 0" />\r
++\r
++\r
++ <gd name="xAD2" fmla="+- xA2 0 xD2" />\r
++ <gd name="yAD2" fmla="+- yA2 0 yD2" />\r
++ <gd name="lAD2" fmla="mod xAD2 yAD2 0" />\r
++ <gd name="a2" fmla="at2 yAD2 xAD2" />\r
++\r
++\r
++ <gd name="dxF2" fmla="sin lFD a2" />\r
++ <gd name="dyF2" fmla="cos lFD a2" />\r
++ <gd name="xF2" fmla="+- xD2 dxF2 0" />\r
++ <gd name="yF2" fmla="+- yD2 dyF2 0" />\r
++ <gd name="xE2" fmla="+- xA2 0 dxF2" />\r
++ <gd name="yE2" fmla="+- yA2 0 dyF2" />\r
++\r
++\r
++ <gd name="yC2t" fmla="sin th a2" />\r
++ <gd name="xC2t" fmla="cos th a2" />\r
++ <gd name="yC2" fmla="+- yF2 yC2t 0" />\r
++ <gd name="xC2" fmla="+- xF2 0 xC2t" />\r
++\r
++\r
++ <gd name="yB2" fmla="+- yE2 yC2t 0" />\r
++ <gd name="xB2" fmla="+- xE2 0 xC2t" />\r
++\r
++ <gd name="swAng1" fmla="+- bA2 0 bD1" />\r
++\r
++\r
++ <gd name="aA3" fmla="+- 1800000 0 ha" />\r
++ <gd name="aD3" fmla="+- 1800000 ha 0" />\r
++\r
++\r
++ <gd name="ta31" fmla="cos rw aA3" />\r
++ <gd name="ta32" fmla="sin rh aA3" />\r
++ <gd name="bA3" fmla="at2 ta31 ta32" />\r
++\r
++ <gd name="cta3" fmla="cos rh bA3" />\r
++ <gd name="sta3" fmla="sin rw bA3" />\r
++ <gd name="ma3" fmla="mod cta3 sta3 0" />\r
++ <gd name="na3" fmla="*/ rw rh ma3" />\r
++ <gd name="dxa3" fmla="cos na3 bA3" />\r
++ <gd name="dya3" fmla="sin na3 bA3" />\r
++ <gd name="xA3" fmla="+- hc dxa3 0" />\r
++ <gd name="yA3" fmla="+- vc dya3 0" />\r
++\r
++\r
++ <gd name="td31" fmla="cos rw aD3" />\r
++ <gd name="td32" fmla="sin rh aD3" />\r
++ <gd name="bD3" fmla="at2 td31 td32" />\r
++\r
++ <gd name="ctd3" fmla="cos rh bD3" />\r
++ <gd name="std3" fmla="sin rw bD3" />\r
++ <gd name="md3" fmla="mod ctd3 std3 0" />\r
++ <gd name="nd3" fmla="*/ rw rh md3" />\r
++ <gd name="dxd3" fmla="cos nd3 bD3" />\r
++ <gd name="dyd3" fmla="sin nd3 bD3" />\r
++ <gd name="xD3" fmla="+- hc dxd3 0" />\r
++ <gd name="yD3" fmla="+- vc dyd3 0" />\r
++\r
++\r
++ <gd name="xAD3" fmla="+- xA3 0 xD3" />\r
++ <gd name="yAD3" fmla="+- yA3 0 yD3" />\r
++ <gd name="lAD3" fmla="mod xAD3 yAD3 0" />\r
++ <gd name="a3" fmla="at2 yAD3 xAD3" />\r
++\r
++\r
++ <gd name="dxF3" fmla="sin lFD a3" />\r
++ <gd name="dyF3" fmla="cos lFD a3" />\r
++ <gd name="xF3" fmla="+- xD3 dxF3 0" />\r
++ <gd name="yF3" fmla="+- yD3 dyF3 0" />\r
++ <gd name="xE3" fmla="+- xA3 0 dxF3" />\r
++ <gd name="yE3" fmla="+- yA3 0 dyF3" />\r
++\r
++\r
++ <gd name="yC3t" fmla="sin th a3" />\r
++ <gd name="xC3t" fmla="cos th a3" />\r
++ <gd name="yC3" fmla="+- yF3 yC3t 0" />\r
++ <gd name="xC3" fmla="+- xF3 0 xC3t" />\r
++\r
++\r
++ <gd name="yB3" fmla="+- yE3 yC3t 0" />\r
++ <gd name="xB3" fmla="+- xE3 0 xC3t" />\r
++\r
++ <gd name="swAng2" fmla="+- bA3 0 bD2" />\r
++\r
++\r
++ <gd name="aA4" fmla="+- 4200000 0 ha" />\r
++ <gd name="aD4" fmla="+- 4200000 ha 0" />\r
++\r
++\r
++ <gd name="ta41" fmla="cos rw aA4" />\r
++ <gd name="ta42" fmla="sin rh aA4" />\r
++ <gd name="bA4" fmla="at2 ta41 ta42" />\r
++\r
++ <gd name="cta4" fmla="cos rh bA4" />\r
++ <gd name="sta4" fmla="sin rw bA4" />\r
++ <gd name="ma4" fmla="mod cta4 sta4 0" />\r
++ <gd name="na4" fmla="*/ rw rh ma4" />\r
++ <gd name="dxa4" fmla="cos na4 bA4" />\r
++ <gd name="dya4" fmla="sin na4 bA4" />\r
++ <gd name="xA4" fmla="+- hc dxa4 0" />\r
++ <gd name="yA4" fmla="+- vc dya4 0" />\r
++\r
++\r
++ <gd name="td41" fmla="cos rw aD4" />\r
++ <gd name="td42" fmla="sin rh aD4" />\r
++ <gd name="bD4" fmla="at2 td41 td42" />\r
++\r
++ <gd name="ctd4" fmla="cos rh bD4" />\r
++ <gd name="std4" fmla="sin rw bD4" />\r
++ <gd name="md4" fmla="mod ctd4 std4 0" />\r
++ <gd name="nd4" fmla="*/ rw rh md4" />\r
++ <gd name="dxd4" fmla="cos nd4 bD4" />\r
++ <gd name="dyd4" fmla="sin nd4 bD4" />\r
++ <gd name="xD4" fmla="+- hc dxd4 0" />\r
++ <gd name="yD4" fmla="+- vc dyd4 0" />\r
++\r
++\r
++ <gd name="xAD4" fmla="+- xA4 0 xD4" />\r
++ <gd name="yAD4" fmla="+- yA4 0 yD4" />\r
++ <gd name="lAD4" fmla="mod xAD4 yAD4 0" />\r
++ <gd name="a4" fmla="at2 yAD4 xAD4" />\r
++\r
++\r
++ <gd name="dxF4" fmla="sin lFD a4" />\r
++ <gd name="dyF4" fmla="cos lFD a4" />\r
++ <gd name="xF4" fmla="+- xD4 dxF4 0" />\r
++ <gd name="yF4" fmla="+- yD4 dyF4 0" />\r
++ <gd name="xE4" fmla="+- xA4 0 dxF4" />\r
++ <gd name="yE4" fmla="+- yA4 0 dyF4" />\r
++\r
++\r
++ <gd name="yC4t" fmla="sin th a4" />\r
++ <gd name="xC4t" fmla="cos th a4" />\r
++ <gd name="yC4" fmla="+- yF4 yC4t 0" />\r
++ <gd name="xC4" fmla="+- xF4 0 xC4t" />\r
++\r
++\r
++ <gd name="yB4" fmla="+- yE4 yC4t 0" />\r
++ <gd name="xB4" fmla="+- xE4 0 xC4t" />\r
++\r
++ <gd name="swAng3" fmla="+- bA4 0 bD3" />\r
++\r
++\r
++ <gd name="aA5" fmla="+- 6600000 0 ha" />\r
++ <gd name="aD5" fmla="+- 6600000 ha 0" />\r
++\r
++ <gd name="ta51" fmla="cos rw aA5" />\r
++ <gd name="ta52" fmla="sin rh aA5" />\r
++ <gd name="bA5" fmla="at2 ta51 ta52" />\r
++\r
++ <gd name="td51" fmla="cos rw aD5" />\r
++ <gd name="td52" fmla="sin rh aD5" />\r
++ <gd name="bD5" fmla="at2 td51 td52" />\r
++\r
++\r
++ <gd name="xD5" fmla="+- w 0 xA4" />\r
++\r
++\r
++ <gd name="xC5" fmla="+- w 0 xB4" />\r
++\r
++\r
++ <gd name="xB5" fmla="+- w 0 xC4" />\r
++\r
++ <gd name="swAng4" fmla="+- bA5 0 bD4" />\r
++\r
++\r
++ <gd name="aD6" fmla="+- 9000000 ha 0" />\r
++\r
++ <gd name="td61" fmla="cos rw aD6" />\r
++ <gd name="td62" fmla="sin rh aD6" />\r
++ <gd name="bD6" fmla="at2 td61 td62" />\r
++\r
++\r
++ <gd name="xD6" fmla="+- w 0 xA3" />\r
++\r
++\r
++ <gd name="xC6" fmla="+- w 0 xB3" />\r
++\r
++\r
++ <gd name="xB6" fmla="+- w 0 xC3" />\r
++\r
++\r
++ <gd name="aD7" fmla="+- 11400000 ha 0" />\r
++\r
++ <gd name="td71" fmla="cos rw aD7" />\r
++ <gd name="td72" fmla="sin rh aD7" />\r
++ <gd name="bD7" fmla="at2 td71 td72" />\r
++\r
++\r
++ <gd name="xD7" fmla="+- w 0 xA2" />\r
++\r
++\r
++ <gd name="xC7" fmla="+- w 0 xB2" />\r
++\r
++\r
++ <gd name="xB7" fmla="+- w 0 xC2" />\r
++\r
++\r
++ <gd name="aD8" fmla="+- 13800000 ha 0" />\r
++\r
++ <gd name="td81" fmla="cos rw aD8" />\r
++ <gd name="td82" fmla="sin rh aD8" />\r
++ <gd name="bD8" fmla="at2 td81 td82" />\r
++\r
++\r
++ <gd name="xA8" fmla="+- w 0 xD1" />\r
++\r
++ <gd name="xD8" fmla="+- w 0 xA1" />\r
++\r
++\r
++ <gd name="xC8" fmla="+- w 0 xB1" />\r
++\r
++\r
++ <gd name="xB8" fmla="+- w 0 xC1" />\r
++\r
++\r
++ <gd name="aA9" fmla="+- 3cd4 0 ha" />\r
++ <gd name="aD9" fmla="+- 3cd4 ha 0" />\r
++\r
++\r
++ <gd name="td91" fmla="cos rw aD9" />\r
++ <gd name="td92" fmla="sin rh aD9" />\r
++ <gd name="bD9" fmla="at2 td91 td92" />\r
++\r
++ <gd name="ctd9" fmla="cos rh bD9" />\r
++ <gd name="std9" fmla="sin rw bD9" />\r
++ <gd name="md9" fmla="mod ctd9 std9 0" />\r
++ <gd name="nd9" fmla="*/ rw rh md9" />\r
++ <gd name="dxd9" fmla="cos nd9 bD9" />\r
++ <gd name="dyd9" fmla="sin nd9 bD9" />\r
++ <gd name="xD9" fmla="+- hc dxd9 0" />\r
++ <gd name="yD9" fmla="+- vc dyd9 0" />\r
++\r
++\r
++ <gd name="ta91" fmla="cos rw aA9" />\r
++ <gd name="ta92" fmla="sin rh aA9" />\r
++ <gd name="bA9" fmla="at2 ta91 ta92" />\r
++\r
++ <gd name="xA9" fmla="+- hc 0 dxd9" />\r
++\r
++\r
++ <gd name="xF9" fmla="+- xD9 0 lFD" />\r
++ <gd name="xE9" fmla="+- xA9 lFD 0" />\r
++\r
++\r
++ <gd name="yC9" fmla="+- yD9 0 th" />\r
++\r
++ <gd name="swAng5" fmla="+- bA9 0 bD8" />\r
++\r
++\r
++ <gd name="xCxn1" fmla="+/ xB1 xC1 2" />\r
++ <gd name="yCxn1" fmla="+/ yB1 yC1 2" />\r
++ <gd name="xCxn2" fmla="+/ xB2 xC2 2" />\r
++ <gd name="yCxn2" fmla="+/ yB2 yC2 2" />\r
++ <gd name="xCxn3" fmla="+/ xB3 xC3 2" />\r
++ <gd name="yCxn3" fmla="+/ yB3 yC3 2" />\r
++ <gd name="xCxn4" fmla="+/ xB4 xC4 2" />\r
++ <gd name="yCxn4" fmla="+/ yB4 yC4 2" />\r
++ <gd name="xCxn5" fmla="+/ r 0 xCxn4" />\r
++ <gd name="xCxn6" fmla="+/ r 0 xCxn3" />\r
++ <gd name="xCxn7" fmla="+/ r 0 xCxn2" />\r
++ <gd name="xCxn8" fmla="+/ r 0 xCxn1" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="20000">\r
++ <pos x="xD9" y="yD9" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="2679">\r
++ <pos x="xA9" y="yD9" />\r
++ </ahXY>\r
++\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="18600000">\r
++ <pos x="xCxn1" y="yCxn1" />\r
++ </cxn>\r
++\r
++ <cxn ang="21000000">\r
++ <pos x="xCxn2" y="yCxn2" />\r
++ </cxn>\r
++\r
++ <cxn ang="1800000">\r
++ <pos x="xCxn3" y="yCxn3" />\r
++ </cxn>\r
++\r
++ <cxn ang="4200000">\r
++ <pos x="xCxn4" y="yCxn4" />\r
++ </cxn>\r
++\r
++ <cxn ang="6600000">\r
++ <pos x="xCxn5" y="yCxn4" />\r
++ </cxn>\r
++\r
++ <cxn ang="9000000">\r
++ <pos x="xCxn6" y="yCxn3" />\r
++ </cxn>\r
++\r
++ <cxn ang="11400000">\r
++ <pos x="xCxn7" y="yCxn2" />\r
++ </cxn>\r
++\r
++ <cxn ang="13800000">\r
++ <pos x="xCxn8" y="yCxn1" />\r
++ </cxn>\r
++\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="yC9" />\r
++ </cxn>\r
++\r
++ </cxnLst>\r
++\r
++ <rect l="xA8" t="yD1" r="xD1" b="yD3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="xA1" y="yA1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="xB1" y="yB1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC1" y="yC1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD1" y="yD1" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD1" swAng="swAng1" />\r
++\r
++ <lnTo>\r
++ <pt x="xB2" y="yB2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC2" y="yC2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD2" y="yD2" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD2" swAng="swAng2" />\r
++\r
++ <lnTo>\r
++ <pt x="xB3" y="yB3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC3" y="yC3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD3" y="yD3" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD3" swAng="swAng3" />\r
++\r
++ <lnTo>\r
++ <pt x="xB4" y="yB4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC4" y="yC4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD4" y="yD4" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD4" swAng="swAng4" />\r
++\r
++ <lnTo>\r
++ <pt x="xB5" y="yC4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC5" y="yB4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD5" y="yA4" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD5" swAng="swAng3" />\r
++\r
++ <lnTo>\r
++ <pt x="xB6" y="yC3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC6" y="yB3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD6" y="yA3" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD6" swAng="swAng2" />\r
++\r
++ <lnTo>\r
++ <pt x="xB7" y="yC2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC7" y="yB2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD7" y="yA2" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD7" swAng="swAng1" />\r
++\r
++ <lnTo>\r
++ <pt x="xB8" y="yC1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC8" y="yB1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD8" y="yA1" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD8" swAng="swAng5" />\r
++\r
++ <lnTo>\r
++ <pt x="xE9" y="yC9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xF9" y="yC9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD9" y="yD9" />\r
++ </lnTo>\r
++ <arcTo hR="rh" wR="rw" stAng="bD9" swAng="swAng5" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </gear9>\r
++ <halfFrame>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 33333" />\r
++\r
++ <gd name="adj2" fmla="val 33333" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="x1" fmla="*/ ss a2 100000" />\r
++ <gd name="g1" fmla="*/ h x1 w" />\r
++ <gd name="g2" fmla="+- h 0 g1" />\r
++ <gd name="maxAdj1" fmla="*/ 100000 g2 ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="y1" fmla="*/ ss a1 100000" />\r
++ <gd name="dx2" fmla="*/ y1 w h" />\r
++ <gd name="x2" fmla="+- r 0 dx2" />\r
++ <gd name="dy2" fmla="*/ x1 h w" />\r
++ <gd name="y2" fmla="+- b 0 dy2" />\r
++ <gd name="cx1" fmla="*/ x1 1 2" />\r
++ <gd name="cy1" fmla="+/ y2 b 2" />\r
++ <gd name="cx2" fmla="+/ x2 r 2" />\r
++ <gd name="cy2" fmla="*/ y1 1 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="cx2" y="cy2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="cx1" y="cy1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </halfFrame>\r
++ <heart>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dx1" fmla="*/ w 49 48" />\r
++ <gd name="dx2" fmla="*/ w 10 48" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- t 0 hd3" />\r
++\r
++\r
++ <gd name="il" fmla="*/ w 1 6" />\r
++ <gd name="ir" fmla="*/ w 5 6" />\r
++ <gd name="ib" fmla="*/ h 2 3" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="hd4" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="hc" y="hd4" />\r
++ </moveTo>\r
++ <cubicBezTo>\r
++ <pt x="x3" y="y1" />\r
++ <pt x="x4" y="hd4" />\r
++ <pt x="hc" y="b" />\r
++ </cubicBezTo>\r
++ <cubicBezTo>\r
++ <pt x="x1" y="hd4" />\r
++ <pt x="x2" y="y1" />\r
++ <pt x="hc" y="hd4" />\r
++ </cubicBezTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </heart>\r
++ <heptagon>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="hf" fmla="val 102572" />\r
++ <gd name="vf" fmla="val 105210" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
++ <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
++ <gd name="svc" fmla="*/ vc vf 100000" />\r
++ <gd name="dx1" fmla="*/ swd2 97493 100000" />\r
++ <gd name="dx2" fmla="*/ swd2 78183 100000" />\r
++ <gd name="dx3" fmla="*/ swd2 43388 100000" />\r
++ <gd name="dy1" fmla="*/ shd2 62349 100000" />\r
++ <gd name="dy2" fmla="*/ shd2 22252 100000" />\r
++ <gd name="dy3" fmla="*/ shd2 90097 100000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc 0 dx3" />\r
++ <gd name="x4" fmla="+- hc dx3 0" />\r
++ <gd name="x5" fmla="+- hc dx2 0" />\r
++ <gd name="x6" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- svc 0 dy1" />\r
++ <gd name="y2" fmla="+- svc dy2 0" />\r
++ <gd name="y3" fmla="+- svc dy3 0" />\r
++ <gd name="ib" fmla="+- b 0 y1" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x5" y="y1" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x6" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x4" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x2" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x2" t="y1" r="x5" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </heptagon>\r
++ <hexagon>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 25000" />\r
++ <gd name="vf" fmla="val 115470" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj" fmla="*/ 50000 w ss" />\r
++ <gd name="a" fmla="pin 0 adj maxAdj" />\r
++ <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
++ <gd name="x1" fmla="*/ ss a 100000" />\r
++ <gd name="x2" fmla="+- r 0 x1" />\r
++ <gd name="dy1" fmla="sin shd2 3600000" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc dy1 0" />\r
++ <gd name="q1" fmla="*/ maxAdj -1 2" />\r
++ <gd name="q2" fmla="+- a q1 0" />\r
++ <gd name="q3" fmla="?: q2 4 2" />\r
++ <gd name="q4" fmla="?: q2 3 2" />\r
++ <gd name="q5" fmla="?: q2 q1 0" />\r
++ <gd name="q6" fmla="+/ a q5 q1" />\r
++ <gd name="q7" fmla="*/ q6 q4 -1" />\r
++ <gd name="q8" fmla="+- q3 q7 0" />\r
++ <gd name="il" fmla="*/ w q8 24" />\r
++ <gd name="it" fmla="*/ h q8 24" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 it" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </hexagon>\r
++ <homePlate>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj" fmla="*/ 100000 w ss" />\r
++ <gd name="a" fmla="pin 0 adj maxAdj" />\r
++ <gd name="dx1" fmla="*/ ss a 100000" />\r
++ <gd name="x1" fmla="+- r 0 dx1" />\r
++ <gd name="ir" fmla="+/ x1 r 2" />\r
++ <gd name="x2" fmla="*/ x1 1 2" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </homePlate>\r
++ <horizontalScroll>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 12500" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 25000" />\r
++ <gd name="ch" fmla="*/ ss a 100000" />\r
++\r
++ <gd name="ch2" fmla="*/ ch 1 2" />\r
++\r
++ <gd name="ch4" fmla="*/ ch 1 4" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="y3" fmla="+- ch ch2 0" />\r
++\r
++ <gd name="y4" fmla="+- ch ch 0" />\r
++\r
++ <gd name="y6" fmla="+- b 0 ch" />\r
++\r
++ <gd name="y7" fmla="+- b 0 ch2" />\r
++\r
++ <gd name="y5" fmla="+- y6 0 ch2" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="x3" fmla="+- r 0 ch" />\r
++\r
++ <gd name="x4" fmla="+- r 0 ch2" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="25000">\r
++ <pos x="ch" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="ch" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="y6" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="ch" t="ch" r="x4" b="y6" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="r" y="ch2" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x4" y="ch2" />\r
++ </lnTo>\r
++ <arcTo wR="ch4" hR="ch4" stAng="0" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x3" y="ch" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="ch2" y="ch" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="l" y="y7" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="ch" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y6" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="ch2" y="y4" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
++ <arcTo wR="ch4" hR="ch4" stAng="0" swAng="-10800000" />\r
++ <close />\r
++ </path>\r
++ <path fill="darkenLess" stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="ch2" y="y4" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
++ <arcTo wR="ch4" hR="ch4" stAng="0" swAng="-10800000" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x4" y="ch" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-16200000" />\r
++ <arcTo wR="ch4" hR="ch4" stAng="cd2" swAng="-10800000" />\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="y3" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x3" y="ch" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="ch2" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="r" y="y5" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="ch" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="ch" y="y7" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd2" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x3" y="ch" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="ch" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
++ <moveTo>\r
++ <pt x="x4" y="ch" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="ch2" />\r
++ </lnTo>\r
++ <arcTo wR="ch4" hR="ch4" stAng="0" swAng="cd2" />\r
++ <moveTo>\r
++ <pt x="ch2" y="y4" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="ch2" y="y3" />\r
++ </lnTo>\r
++ <arcTo wR="ch4" hR="ch4" stAng="cd2" swAng="cd2" />\r
++ <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd2" />\r
++ <moveTo>\r
++ <pt x="ch" y="y3" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="ch" y="y6" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </horizontalScroll>\r
++ <irregularSeal1>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x5" fmla="*/ w 4627 21600" />\r
++ <gd name="x12" fmla="*/ w 8485 21600" />\r
++ <gd name="x21" fmla="*/ w 16702 21600" />\r
++ <gd name="x24" fmla="*/ w 14522 21600" />\r
++ <gd name="y3" fmla="*/ h 6320 21600" />\r
++ <gd name="y6" fmla="*/ h 8615 21600" />\r
++ <gd name="y9" fmla="*/ h 13937 21600" />\r
++ <gd name="y18" fmla="*/ h 13290 21600" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x24" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y6" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x12" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y18" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x5" t="y3" r="x21" b="y9" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="21600" h="21600">\r
++ <moveTo>\r
++ <pt x="10800" y="5800" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="14522" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="14155" y="5325" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="18380" y="4457" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="16702" y="7315" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="21097" y="8137" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="17607" y="10475" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="21600" y="13290" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="16837" y="12942" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="18145" y="18095" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="14020" y="14457" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="13247" y="19737" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10532" y="14935" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="8485" y="21600" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="7715" y="15627" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="4762" y="17617" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="5667" y="13937" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="135" y="14587" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="3722" y="11775" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="8615" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="4627" y="7617" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="370" y="2295" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="7312" y="6320" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="8352" y="2295" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </irregularSeal1>\r
++ <irregularSeal2>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x2" fmla="*/ w 9722 21600" />\r
++ <gd name="x5" fmla="*/ w 5372 21600" />\r
++ <gd name="x16" fmla="*/ w 11612 21600" />\r
++ <gd name="x19" fmla="*/ w 14640 21600" />\r
++ <gd name="y2" fmla="*/ h 1887 21600" />\r
++ <gd name="y3" fmla="*/ h 6382 21600" />\r
++ <gd name="y8" fmla="*/ h 12877 21600" />\r
++ <gd name="y14" fmla="*/ h 19712 21600" />\r
++ <gd name="y16" fmla="*/ h 18842 21600" />\r
++ <gd name="y17" fmla="*/ h 15935 21600" />\r
++ <gd name="y24" fmla="*/ h 6645 21600" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y8" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x16" y="y16" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y24" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x5" t="y3" r="x19" b="y17" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="21600" h="21600">\r
++ <moveTo>\r
++ <pt x="11462" y="4342" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="14790" y="0" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="14525" y="5777" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="18007" y="3172" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="16380" y="6532" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="21600" y="6645" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="16985" y="9402" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="18270" y="11290" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="16380" y="12310" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="18877" y="15632" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="14640" y="14350" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="14942" y="17370" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="12180" y="15935" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="11612" y="18842" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="9872" y="17370" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="8700" y="19712" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="7527" y="18125" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="4917" y="21600" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="4805" y="18240" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1285" y="17825" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="3330" y="15370" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="12877" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="3935" y="11592" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="1172" y="8270" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="5372" y="7817" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="4502" y="3625" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="8550" y="6382" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="9722" y="1887" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </irregularSeal2>\r
++ <leftArrow>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="dx2" fmla="*/ ss a2 100000" />\r
++ <gd name="x2" fmla="+- l dx2 0" />\r
++ <gd name="dy1" fmla="*/ h a1 200000" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc dy1 0" />\r
++ <gd name="dx1" fmla="*/ y1 dx2 hd2" />\r
++ <gd name="x1" fmla="+- x2 0 dx1" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
++ <pos x="r" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="x1" t="y1" r="r" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </leftArrow>\r
++ <leftArrowCallout>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ <gd name="adj4" fmla="val 64977" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="*/ 100000 w ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="q2" fmla="*/ a3 ss w" />\r
++\r
++ <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
++\r
++ <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
++ <gd name="dy1" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="dy2" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++ <gd name="y3" fmla="+- vc dy2 0" />\r
++ <gd name="y4" fmla="+- vc dy1 0" />\r
++ <gd name="x1" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="dx2" fmla="*/ w a4 100000" />\r
++\r
++ <gd name="x2" fmla="+- r 0 dx2" />\r
++ <gd name="x3" fmla="+/ x2 r 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
++ <pos x="x1" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
++ <pos x="x2" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x2" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </leftArrowCallout>\r
++ <leftBrace>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 8333" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a2" fmla="pin 0 adj2 100000" />\r
++ <gd name="q1" fmla="+- 100000 0 a2" />\r
++ <gd name="q2" fmla="min q1 a2" />\r
++ <gd name="q3" fmla="*/ q2 1 2" />\r
++ <gd name="maxAdj1" fmla="*/ q3 h ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="y1" fmla="*/ ss a1 100000" />\r
++ <gd name="y3" fmla="*/ h a2 100000" />\r
++ <gd name="y4" fmla="+- y3 y1 0" />\r
++ <gd name="dx1" fmla="cos wd2 2700000" />\r
++ <gd name="dy1" fmla="sin y1 2700000" />\r
++ <gd name="il" fmla="+- r 0 dx1" />\r
++ <gd name="it" fmla="+- y1 0 dy1" />\r
++ <gd name="ib" fmla="+- b dy1 y1" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
++ <pos x="hc" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="100000">\r
++ <pos x="l" y="y3" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="r" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y3" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="it" r="r" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="r" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="hc" y="y4" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="0" swAng="-5400000" />\r
++ <arcTo wR="wd2" hR="y1" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="hc" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="r" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="hc" y="y4" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="0" swAng="-5400000" />\r
++ <arcTo wR="wd2" hR="y1" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="hc" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="cd4" />\r
++ </path>\r
++ </pathLst>\r
++ </leftBrace>\r
++ <leftBracket>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 8333" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj" fmla="*/ 50000 h ss" />\r
++\r
++ <gd name="a" fmla="pin 0 adj maxAdj" />\r
++ <gd name="y1" fmla="*/ ss a 100000" />\r
++\r
++ <gd name="y2" fmla="+- b 0 y1" />\r
++\r
++ <gd name="dx1" fmla="cos w 2700000" />\r
++ <gd name="dy1" fmla="sin y1 2700000" />\r
++ <gd name="il" fmla="+- r 0 dx1" />\r
++ <gd name="it" fmla="+- y1 0 dy1" />\r
++ <gd name="ib" fmla="+- b dy1 y1" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="maxAdj">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="r" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="r" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="r" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="y1" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="l" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="y1" stAng="cd2" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++\r
++ <moveTo>\r
++ <pt x="r" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="y1" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="l" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="y1" stAng="cd2" swAng="cd4" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </leftBracket>\r
++ <leftCircularArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 12500" />\r
++\r
++ <gd name="adj2" fmla="val -1142319" />\r
++\r
++ <gd name="adj3" fmla="val 1142319" />\r
++\r
++ <gd name="adj4" fmla="val 10800000" />\r
++\r
++ <gd name="adj5" fmla="val 12500" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a5" fmla="pin 0 adj5 25000" />\r
++\r
++ <gd name="maxAdj1" fmla="*/ a5 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="enAng" fmla="pin 1 adj3 21599999" />\r
++ <gd name="stAng" fmla="pin 0 adj4 21599999" />\r
++\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="thh" fmla="*/ ss a5 100000" />\r
++\r
++ <gd name="th2" fmla="*/ th 1 2" />\r
++\r
++\r
++ <gd name="rw1" fmla="+- wd2 th2 thh" />\r
++\r
++ <gd name="rh1" fmla="+- hd2 th2 thh" />\r
++\r
++ <gd name="rw2" fmla="+- rw1 0 th" />\r
++\r
++ <gd name="rh2" fmla="+- rh1 0 th" />\r
++\r
++ <gd name="rw3" fmla="+- rw2 th2 0" />\r
++\r
++ <gd name="rh3" fmla="+- rh2 th2 0" />\r
++\r
++\r
++ <gd name="wtH" fmla="sin rw3 enAng" />\r
++ <gd name="htH" fmla="cos rh3 enAng" />\r
++ <gd name="dxH" fmla="cat2 rw3 htH wtH" />\r
++ <gd name="dyH" fmla="sat2 rh3 htH wtH" />\r
++ <gd name="xH" fmla="+- hc dxH 0" />\r
++\r
++ <gd name="yH" fmla="+- vc dyH 0" />\r
++\r
++\r
++ <gd name="rI" fmla="min rw2 rh2" />\r
++\r
++ <gd name="u1" fmla="*/ dxH dxH 1" />\r
++ <gd name="u2" fmla="*/ dyH dyH 1" />\r
++ <gd name="u3" fmla="*/ rI rI 1" />\r
++ <gd name="u4" fmla="+- u1 0 u3" />\r
++ <gd name="u5" fmla="+- u2 0 u3" />\r
++ <gd name="u6" fmla="*/ u4 u5 u1" />\r
++ <gd name="u7" fmla="*/ u6 1 u2" />\r
++ <gd name="u8" fmla="+- 1 0 u7" />\r
++ <gd name="u9" fmla="sqrt u8" />\r
++ <gd name="u10" fmla="*/ u4 1 dxH" />\r
++ <gd name="u11" fmla="*/ u10 1 dyH" />\r
++ <gd name="u12" fmla="+/ 1 u9 u11" />\r
++ <gd name="u13" fmla="at2 1 u12" />\r
++ <gd name="u14" fmla="+- u13 21600000 0" />\r
++ <gd name="u15" fmla="?: u13 u13 u14" />\r
++ <gd name="u16" fmla="+- u15 0 enAng" />\r
++\r
++ <gd name="u17" fmla="+- u16 21600000 0" />\r
++ <gd name="u18" fmla="?: u16 u16 u17" />\r
++ <gd name="u19" fmla="+- u18 0 cd2" />\r
++ <gd name="u20" fmla="+- u18 0 21600000" />\r
++ <gd name="u21" fmla="?: u19 u20 u18" />\r
++ <gd name="u22" fmla="abs u21" />\r
++ <gd name="minAng" fmla="*/ u22 -1 1" />\r
++ <gd name="u23" fmla="abs adj2" />\r
++ <gd name="a2" fmla="*/ u23 -1 1" />\r
++ <gd name="aAng" fmla="pin minAng a2 0" />\r
++\r
++ <gd name="ptAng" fmla="+- enAng aAng 0" />\r
++\r
++\r
++ <gd name="wtA" fmla="sin rw3 ptAng" />\r
++ <gd name="htA" fmla="cos rh3 ptAng" />\r
++ <gd name="dxA" fmla="cat2 rw3 htA wtA" />\r
++ <gd name="dyA" fmla="sat2 rh3 htA wtA" />\r
++ <gd name="xA" fmla="+- hc dxA 0" />\r
++\r
++ <gd name="yA" fmla="+- vc dyA 0" />\r
++\r
++\r
++ <gd name="wtE" fmla="sin rw1 stAng" />\r
++ <gd name="htE" fmla="cos rh1 stAng" />\r
++ <gd name="dxE" fmla="cat2 rw1 htE wtE" />\r
++ <gd name="dyE" fmla="sat2 rh1 htE wtE" />\r
++ <gd name="xE" fmla="+- hc dxE 0" />\r
++\r
++ <gd name="yE" fmla="+- vc dyE 0" />\r
++\r
++\r
++ <gd name="wtD" fmla="sin rw2 stAng" />\r
++ <gd name="htD" fmla="cos rh2 stAng" />\r
++ <gd name="dxD" fmla="cat2 rw2 htD wtD" />\r
++ <gd name="dyD" fmla="sat2 rh2 htD wtD" />\r
++ <gd name="xD" fmla="+- hc dxD 0" />\r
++\r
++ <gd name="yD" fmla="+- vc dyD 0" />\r
++\r
++\r
++ <gd name="dxG" fmla="cos thh ptAng" />\r
++ <gd name="dyG" fmla="sin thh ptAng" />\r
++ <gd name="xG" fmla="+- xH dxG 0" />\r
++\r
++ <gd name="yG" fmla="+- yH dyG 0" />\r
++\r
++\r
++ <gd name="dxB" fmla="cos thh ptAng" />\r
++ <gd name="dyB" fmla="sin thh ptAng" />\r
++ <gd name="xB" fmla="+- xH 0 dxB 0" />\r
++\r
++ <gd name="yB" fmla="+- yH 0 dyB 0" />\r
++\r
++\r
++ <gd name="sx1" fmla="+- xB 0 hc" />\r
++\r
++ <gd name="sy1" fmla="+- yB 0 vc" />\r
++\r
++ <gd name="sx2" fmla="+- xG 0 hc" />\r
++\r
++ <gd name="sy2" fmla="+- yG 0 vc" />\r
++\r
++\r
++ <gd name="rO" fmla="min rw1 rh1" />\r
++\r
++ <gd name="x1O" fmla="*/ sx1 rO rw1" />\r
++\r
++ <gd name="y1O" fmla="*/ sy1 rO rh1" />\r
++\r
++ <gd name="x2O" fmla="*/ sx2 rO rw1" />\r
++\r
++ <gd name="y2O" fmla="*/ sy2 rO rh1" />\r
++\r
++\r
++ <gd name="dxO" fmla="+- x2O 0 x1O" />\r
++ <gd name="dyO" fmla="+- y2O 0 y1O" />\r
++ <gd name="dO" fmla="mod dxO dyO 0" />\r
++\r
++ <gd name="q1" fmla="*/ x1O y2O 1" />\r
++ <gd name="q2" fmla="*/ x2O y1O 1" />\r
++ <gd name="DO" fmla="+- q1 0 q2" />\r
++\r
++\r
++ <gd name="q3" fmla="*/ rO rO 1" />\r
++\r
++ <gd name="q4" fmla="*/ dO dO 1" />\r
++\r
++ <gd name="q5" fmla="*/ q3 q4 1" />\r
++\r
++ <gd name="q6" fmla="*/ DO DO 1" />\r
++\r
++ <gd name="q7" fmla="+- q5 0 q6" />\r
++\r
++ <gd name="q8" fmla="max q7 0" />\r
++\r
++ <gd name="sdelO" fmla="sqrt q8" />\r
++\r
++ <gd name="ndyO" fmla="*/ dyO -1 1" />\r
++ <gd name="sdyO" fmla="?: ndyO -1 1" />\r
++\r
++ <gd name="q9" fmla="*/ sdyO dxO 1" />\r
++\r
++ <gd name="q10" fmla="*/ q9 sdelO 1" />\r
++\r
++ <gd name="q11" fmla="*/ DO dyO 1" />\r
++\r
++ <gd name="dxF1" fmla="+/ q11 q10 q4" />\r
++\r
++ <gd name="q12" fmla="+- q11 0 q10" />\r
++ <gd name="dxF2" fmla="*/ q12 1 q4" />\r
++\r
++\r
++ <gd name="adyO" fmla="abs dyO" />\r
++ <gd name="q13" fmla="*/ adyO sdelO 1" />\r
++\r
++ <gd name="q14" fmla="*/ DO dxO -1" />\r
++\r
++ <gd name="dyF1" fmla="+/ q14 q13 q4" />\r
++\r
++ <gd name="q15" fmla="+- q14 0 q13" />\r
++ <gd name="dyF2" fmla="*/ q15 1 q4" />\r
++\r
++\r
++\r
++ <gd name="q16" fmla="+- x2O 0 dxF1" />\r
++ <gd name="q17" fmla="+- x2O 0 dxF2" />\r
++ <gd name="q18" fmla="+- y2O 0 dyF1" />\r
++ <gd name="q19" fmla="+- y2O 0 dyF2" />\r
++ <gd name="q20" fmla="mod q16 q18 0" />\r
++\r
++ <gd name="q21" fmla="mod q17 q19 0" />\r
++\r
++ <gd name="q22" fmla="+- q21 0 q20" />\r
++ <gd name="dxF" fmla="?: q22 dxF1 dxF2" />\r
++\r
++ <gd name="dyF" fmla="?: q22 dyF1 dyF2" />\r
++\r
++ <gd name="sdxF" fmla="*/ dxF rw1 rO" />\r
++\r
++ <gd name="sdyF" fmla="*/ dyF rh1 rO" />\r
++\r
++ <gd name="xF" fmla="+- hc sdxF 0" />\r
++\r
++ <gd name="yF" fmla="+- vc sdyF 0" />\r
++\r
++\r
++\r
++\r
++ <gd name="x1I" fmla="*/ sx1 rI rw2" />\r
++\r
++ <gd name="y1I" fmla="*/ sy1 rI rh2" />\r
++\r
++ <gd name="x2I" fmla="*/ sx2 rI rw2" />\r
++\r
++ <gd name="y2I" fmla="*/ sy2 rI rh2" />\r
++\r
++\r
++ <gd name="dxI" fmla="+- x2I 0 x1I" />\r
++ <gd name="dyI" fmla="+- y2I 0 y1I" />\r
++ <gd name="dI" fmla="mod dxI dyI 0" />\r
++ <gd name="v1" fmla="*/ x1I y2I 1" />\r
++ <gd name="v2" fmla="*/ x2I y1I 1" />\r
++ <gd name="DI" fmla="+- v1 0 v2" />\r
++\r
++ <gd name="v3" fmla="*/ rI rI 1" />\r
++ <gd name="v4" fmla="*/ dI dI 1" />\r
++ <gd name="v5" fmla="*/ v3 v4 1" />\r
++ <gd name="v6" fmla="*/ DI DI 1" />\r
++ <gd name="v7" fmla="+- v5 0 v6" />\r
++ <gd name="v8" fmla="max v7 0" />\r
++ <gd name="sdelI" fmla="sqrt v8" />\r
++ <gd name="v9" fmla="*/ sdyO dxI 1" />\r
++ <gd name="v10" fmla="*/ v9 sdelI 1" />\r
++ <gd name="v11" fmla="*/ DI dyI 1" />\r
++ <gd name="dxC1" fmla="+/ v11 v10 v4" />\r
++ <gd name="v12" fmla="+- v11 0 v10" />\r
++ <gd name="dxC2" fmla="*/ v12 1 v4" />\r
++\r
++ <gd name="adyI" fmla="abs dyI" />\r
++ <gd name="v13" fmla="*/ adyI sdelI 1" />\r
++ <gd name="v14" fmla="*/ DI dxI -1" />\r
++ <gd name="dyC1" fmla="+/ v14 v13 v4" />\r
++ <gd name="v15" fmla="+- v14 0 v13" />\r
++ <gd name="dyC2" fmla="*/ v15 1 v4" />\r
++\r
++ <gd name="v16" fmla="+- x1I 0 dxC1" />\r
++ <gd name="v17" fmla="+- x1I 0 dxC2" />\r
++ <gd name="v18" fmla="+- y1I 0 dyC1" />\r
++ <gd name="v19" fmla="+- y1I 0 dyC2" />\r
++ <gd name="v20" fmla="mod v16 v18 0" />\r
++ <gd name="v21" fmla="mod v17 v19 0" />\r
++ <gd name="v22" fmla="+- v21 0 v20" />\r
++ <gd name="dxC" fmla="?: v22 dxC1 dxC2" />\r
++ <gd name="dyC" fmla="?: v22 dyC1 dyC2" />\r
++ <gd name="sdxC" fmla="*/ dxC rw2 rI" />\r
++ <gd name="sdyC" fmla="*/ dyC rh2 rI" />\r
++ <gd name="xC" fmla="+- hc sdxC 0" />\r
++\r
++ <gd name="yC" fmla="+- vc sdyC 0" />\r
++\r
++\r
++ <gd name="ist0" fmla="at2 sdxC sdyC" />\r
++ <gd name="ist1" fmla="+- ist0 21600000 0" />\r
++ <gd name="istAng0" fmla="?: ist0 ist0 ist1" />\r
++ <gd name="isw1" fmla="+- stAng 0 istAng0" />\r
++ <gd name="isw2" fmla="+- isw1 21600000 0" />\r
++ <gd name="iswAng0" fmla="?: isw1 isw1 isw2" />\r
++\r
++ <gd name="istAng" fmla="+- istAng0 iswAng0 0" />\r
++ <gd name="iswAng" fmla="+- 0 0 iswAng0" />\r
++\r
++ <gd name="p1" fmla="+- xF 0 xC" />\r
++ <gd name="p2" fmla="+- yF 0 yC" />\r
++ <gd name="p3" fmla="mod p1 p2 0" />\r
++ <gd name="p4" fmla="*/ p3 1 2" />\r
++ <gd name="p5" fmla="+- p4 0 thh" />\r
++ <gd name="xGp" fmla="?: p5 xF xG" />\r
++ <gd name="yGp" fmla="?: p5 yF yG" />\r
++ <gd name="xBp" fmla="?: p5 xC xB" />\r
++ <gd name="yBp" fmla="?: p5 yC yB" />\r
++\r
++ <gd name="en0" fmla="at2 sdxF sdyF" />\r
++ <gd name="en1" fmla="+- en0 21600000 0" />\r
++ <gd name="en2" fmla="?: en0 en0 en1" />\r
++ <gd name="sw0" fmla="+- en2 0 stAng" />\r
++ <gd name="sw1" fmla="+- sw0 0 21600000" />\r
++ <gd name="swAng" fmla="?: sw0 sw1 sw0" />\r
++\r
++\r
++ <gd name="stAng0" fmla="+- stAng swAng 0" />\r
++\r
++ <gd name="swAng0" fmla="+- 0 0 swAng" />\r
++\r
++\r
++ <gd name="wtI" fmla="sin rw3 stAng" />\r
++ <gd name="htI" fmla="cos rh3 stAng" />\r
++ <gd name="dxI" fmla="cat2 rw3 htI wtI" />\r
++ <gd name="dyI" fmla="sat2 rh3 htI wtI" />\r
++ <gd name="xI" fmla="+- hc dxI 0" />\r
++\r
++ <gd name="yI" fmla="+- vc dyI 0" />\r
++\r
++\r
++ <gd name="aI" fmla="+- stAng cd4 0" />\r
++ <gd name="aA" fmla="+- ptAng 0 cd4" />\r
++ <gd name="aB" fmla="+- ptAng cd2 0" />\r
++\r
++ <gd name="idx" fmla="cos rw1 2700000" />\r
++ <gd name="idy" fmla="sin rh1 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahPolar gdRefAng="adj2" minAng="minAng" maxAng="0">\r
++ <pos x="xA" y="yA" />\r
++ </ahPolar>\r
++ <ahPolar gdRefAng="adj4" minAng="0" maxAng="21599999">\r
++ <pos x="xE" y="yE" />\r
++ </ahPolar>\r
++ <ahPolar gdRefR="adj1" minR="0" maxR="maxAdj1" gdRefAng="adj3" minAng="0" maxAng="21599999">\r
++ <pos x="xF" y="yF" />\r
++ </ahPolar>\r
++ <ahPolar gdRefR="adj5" minR="0" maxR="25000">\r
++ <pos x="xB" y="yB" />\r
++ </ahPolar>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="aI">\r
++ <pos x="xI" y="yI" />\r
++ </cxn>\r
++ <cxn ang="ptAng">\r
++ <pos x="xGp" y="yGp" />\r
++ </cxn>\r
++ <cxn ang="aA">\r
++ <pos x="xA" y="yA" />\r
++ </cxn>\r
++ <cxn ang="aB">\r
++ <pos x="xBp" y="yBp" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="xE" y="yE" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="xD" y="yD" />\r
++ </lnTo>\r
++ <arcTo wR="rw2" hR="rh2" stAng="istAng" swAng="iswAng" />\r
++ <lnTo>\r
++ <pt x="xBp" y="yBp" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xA" y="yA" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xGp" y="yGp" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xF" y="yF" />\r
++ </lnTo>\r
++ <arcTo wR="rw1" hR="rh1" stAng="stAng0" swAng="swAng0" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </leftCircularArrow>\r
++ <leftRightArrow>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="x2" fmla="*/ ss a2 100000" />\r
++ <gd name="x3" fmla="+- r 0 x2" />\r
++ <gd name="dy" fmla="*/ h a1 200000" />\r
++ <gd name="y1" fmla="+- vc 0 dy" />\r
++ <gd name="y2" fmla="+- vc dy 0" />\r
++ <gd name="dx1" fmla="*/ y1 x2 hd2" />\r
++ <gd name="x1" fmla="+- x2 0 dx1" />\r
++ <gd name="x4" fmla="+- x3 dx1 0" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
++ <pos x="x3" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="x1" t="y1" r="x4" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </leftRightArrow>\r
++ <leftRightArrowCallout>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ <gd name="adj4" fmla="val 48123" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="*/ 50000 w ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="q2" fmla="*/ a3 ss wd2" />\r
++\r
++ <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
++\r
++ <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
++ <gd name="dy1" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="dy2" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++ <gd name="y3" fmla="+- vc dy2 0" />\r
++ <gd name="y4" fmla="+- vc dy1 0" />\r
++ <gd name="x1" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="x4" fmla="+- r 0 x1" />\r
++\r
++ <gd name="dx2" fmla="*/ w a4 200000" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
++ <pos x="x1" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
++ <pos x="x2" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x2" t="t" r="x3" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </leftRightArrowCallout>\r
++ <leftRightCircularArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 12500" />\r
++\r
++ <gd name="adj2" fmla="val 1142319" />\r
++\r
++ <gd name="adj3" fmla="val 20457681" />\r
++\r
++ <gd name="adj4" fmla="val 11942319" />\r
++\r
++ <gd name="adj5" fmla="val 12500" />\r
++\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a5" fmla="pin 0 adj5 25000" />\r
++\r
++ <gd name="maxAdj1" fmla="*/ a5 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="enAng" fmla="pin 1 adj3 21599999" />\r
++ <gd name="stAng" fmla="pin 0 adj4 21599999" />\r
++\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="thh" fmla="*/ ss a5 100000" />\r
++\r
++ <gd name="th2" fmla="*/ th 1 2" />\r
++\r
++\r
++ <gd name="rw1" fmla="+- wd2 th2 thh" />\r
++\r
++ <gd name="rh1" fmla="+- hd2 th2 thh" />\r
++\r
++ <gd name="rw2" fmla="+- rw1 0 th" />\r
++\r
++ <gd name="rh2" fmla="+- rh1 0 th" />\r
++\r
++ <gd name="rw3" fmla="+- rw2 th2 0" />\r
++\r
++ <gd name="rh3" fmla="+- rh2 th2 0" />\r
++\r
++\r
++ <gd name="wtH" fmla="sin rw3 enAng" />\r
++ <gd name="htH" fmla="cos rh3 enAng" />\r
++ <gd name="dxH" fmla="cat2 rw3 htH wtH" />\r
++ <gd name="dyH" fmla="sat2 rh3 htH wtH" />\r
++ <gd name="xH" fmla="+- hc dxH 0" />\r
++\r
++ <gd name="yH" fmla="+- vc dyH 0" />\r
++\r
++\r
++ <gd name="rI" fmla="min rw2 rh2" />\r
++\r
++ <gd name="u1" fmla="*/ dxH dxH 1" />\r
++ <gd name="u2" fmla="*/ dyH dyH 1" />\r
++ <gd name="u3" fmla="*/ rI rI 1" />\r
++ <gd name="u4" fmla="+- u1 0 u3" />\r
++ <gd name="u5" fmla="+- u2 0 u3" />\r
++ <gd name="u6" fmla="*/ u4 u5 u1" />\r
++ <gd name="u7" fmla="*/ u6 1 u2" />\r
++ <gd name="u8" fmla="+- 1 0 u7" />\r
++ <gd name="u9" fmla="sqrt u8" />\r
++ <gd name="u10" fmla="*/ u4 1 dxH" />\r
++ <gd name="u11" fmla="*/ u10 1 dyH" />\r
++ <gd name="u12" fmla="+/ 1 u9 u11" />\r
++ <gd name="u13" fmla="at2 1 u12" />\r
++ <gd name="u14" fmla="+- u13 21600000 0" />\r
++ <gd name="u15" fmla="?: u13 u13 u14" />\r
++ <gd name="u16" fmla="+- u15 0 enAng" />\r
++\r
++ <gd name="u17" fmla="+- u16 21600000 0" />\r
++ <gd name="u18" fmla="?: u16 u16 u17" />\r
++ <gd name="u19" fmla="+- u18 0 cd2" />\r
++ <gd name="u20" fmla="+- u18 0 21600000" />\r
++ <gd name="u21" fmla="?: u19 u20 u18" />\r
++ <gd name="maxAng" fmla="abs u21" />\r
++ <gd name="aAng" fmla="pin 0 adj2 maxAng" />\r
++\r
++ <gd name="ptAng" fmla="+- enAng aAng 0" />\r
++\r
++\r
++ <gd name="wtA" fmla="sin rw3 ptAng" />\r
++ <gd name="htA" fmla="cos rh3 ptAng" />\r
++ <gd name="dxA" fmla="cat2 rw3 htA wtA" />\r
++ <gd name="dyA" fmla="sat2 rh3 htA wtA" />\r
++ <gd name="xA" fmla="+- hc dxA 0" />\r
++\r
++ <gd name="yA" fmla="+- vc dyA 0" />\r
++\r
++\r
++ <gd name="dxG" fmla="cos thh ptAng" />\r
++ <gd name="dyG" fmla="sin thh ptAng" />\r
++ <gd name="xG" fmla="+- xH dxG 0" />\r
++\r
++ <gd name="yG" fmla="+- yH dyG 0" />\r
++\r
++\r
++ <gd name="dxB" fmla="cos thh ptAng" />\r
++ <gd name="dyB" fmla="sin thh ptAng" />\r
++ <gd name="xB" fmla="+- xH 0 dxB 0" />\r
++\r
++ <gd name="yB" fmla="+- yH 0 dyB 0" />\r
++\r
++\r
++ <gd name="sx1" fmla="+- xB 0 hc" />\r
++\r
++ <gd name="sy1" fmla="+- yB 0 vc" />\r
++\r
++ <gd name="sx2" fmla="+- xG 0 hc" />\r
++\r
++ <gd name="sy2" fmla="+- yG 0 vc" />\r
++\r
++\r
++ <gd name="rO" fmla="min rw1 rh1" />\r
++\r
++ <gd name="x1O" fmla="*/ sx1 rO rw1" />\r
++\r
++ <gd name="y1O" fmla="*/ sy1 rO rh1" />\r
++\r
++ <gd name="x2O" fmla="*/ sx2 rO rw1" />\r
++\r
++ <gd name="y2O" fmla="*/ sy2 rO rh1" />\r
++\r
++\r
++ <gd name="dxO" fmla="+- x2O 0 x1O" />\r
++ <gd name="dyO" fmla="+- y2O 0 y1O" />\r
++ <gd name="dO" fmla="mod dxO dyO 0" />\r
++\r
++ <gd name="q1" fmla="*/ x1O y2O 1" />\r
++ <gd name="q2" fmla="*/ x2O y1O 1" />\r
++ <gd name="DO" fmla="+- q1 0 q2" />\r
++\r
++\r
++ <gd name="q3" fmla="*/ rO rO 1" />\r
++\r
++ <gd name="q4" fmla="*/ dO dO 1" />\r
++\r
++ <gd name="q5" fmla="*/ q3 q4 1" />\r
++\r
++ <gd name="q6" fmla="*/ DO DO 1" />\r
++\r
++ <gd name="q7" fmla="+- q5 0 q6" />\r
++\r
++ <gd name="q8" fmla="max q7 0" />\r
++\r
++ <gd name="sdelO" fmla="sqrt q8" />\r
++\r
++ <gd name="ndyO" fmla="*/ dyO -1 1" />\r
++ <gd name="sdyO" fmla="?: ndyO -1 1" />\r
++\r
++ <gd name="q9" fmla="*/ sdyO dxO 1" />\r
++\r
++ <gd name="q10" fmla="*/ q9 sdelO 1" />\r
++\r
++ <gd name="q11" fmla="*/ DO dyO 1" />\r
++\r
++ <gd name="dxF1" fmla="+/ q11 q10 q4" />\r
++\r
++ <gd name="q12" fmla="+- q11 0 q10" />\r
++ <gd name="dxF2" fmla="*/ q12 1 q4" />\r
++\r
++\r
++ <gd name="adyO" fmla="abs dyO" />\r
++ <gd name="q13" fmla="*/ adyO sdelO 1" />\r
++\r
++ <gd name="q14" fmla="*/ DO dxO -1" />\r
++\r
++ <gd name="dyF1" fmla="+/ q14 q13 q4" />\r
++\r
++ <gd name="q15" fmla="+- q14 0 q13" />\r
++ <gd name="dyF2" fmla="*/ q15 1 q4" />\r
++\r
++\r
++\r
++ <gd name="q16" fmla="+- x2O 0 dxF1" />\r
++ <gd name="q17" fmla="+- x2O 0 dxF2" />\r
++ <gd name="q18" fmla="+- y2O 0 dyF1" />\r
++ <gd name="q19" fmla="+- y2O 0 dyF2" />\r
++ <gd name="q20" fmla="mod q16 q18 0" />\r
++\r
++ <gd name="q21" fmla="mod q17 q19 0" />\r
++\r
++ <gd name="q22" fmla="+- q21 0 q20" />\r
++ <gd name="dxF" fmla="?: q22 dxF1 dxF2" />\r
++\r
++ <gd name="dyF" fmla="?: q22 dyF1 dyF2" />\r
++\r
++ <gd name="sdxF" fmla="*/ dxF rw1 rO" />\r
++\r
++ <gd name="sdyF" fmla="*/ dyF rh1 rO" />\r
++\r
++ <gd name="xF" fmla="+- hc sdxF 0" />\r
++\r
++ <gd name="yF" fmla="+- vc sdyF 0" />\r
++\r
++\r
++\r
++\r
++ <gd name="x1I" fmla="*/ sx1 rI rw2" />\r
++\r
++ <gd name="y1I" fmla="*/ sy1 rI rh2" />\r
++\r
++ <gd name="x2I" fmla="*/ sx2 rI rw2" />\r
++\r
++ <gd name="y2I" fmla="*/ sy2 rI rh2" />\r
++\r
++\r
++ <gd name="dxI" fmla="+- x2I 0 x1I" />\r
++ <gd name="dyI" fmla="+- y2I 0 y1I" />\r
++ <gd name="dI" fmla="mod dxI dyI 0" />\r
++ <gd name="v1" fmla="*/ x1I y2I 1" />\r
++ <gd name="v2" fmla="*/ x2I y1I 1" />\r
++ <gd name="DI" fmla="+- v1 0 v2" />\r
++\r
++ <gd name="v3" fmla="*/ rI rI 1" />\r
++ <gd name="v4" fmla="*/ dI dI 1" />\r
++ <gd name="v5" fmla="*/ v3 v4 1" />\r
++ <gd name="v6" fmla="*/ DI DI 1" />\r
++ <gd name="v7" fmla="+- v5 0 v6" />\r
++ <gd name="v8" fmla="max v7 0" />\r
++ <gd name="sdelI" fmla="sqrt v8" />\r
++ <gd name="v9" fmla="*/ sdyO dxI 1" />\r
++ <gd name="v10" fmla="*/ v9 sdelI 1" />\r
++ <gd name="v11" fmla="*/ DI dyI 1" />\r
++ <gd name="dxC1" fmla="+/ v11 v10 v4" />\r
++ <gd name="v12" fmla="+- v11 0 v10" />\r
++ <gd name="dxC2" fmla="*/ v12 1 v4" />\r
++\r
++ <gd name="adyI" fmla="abs dyI" />\r
++ <gd name="v13" fmla="*/ adyI sdelI 1" />\r
++ <gd name="v14" fmla="*/ DI dxI -1" />\r
++ <gd name="dyC1" fmla="+/ v14 v13 v4" />\r
++ <gd name="v15" fmla="+- v14 0 v13" />\r
++ <gd name="dyC2" fmla="*/ v15 1 v4" />\r
++\r
++ <gd name="v16" fmla="+- x1I 0 dxC1" />\r
++ <gd name="v17" fmla="+- x1I 0 dxC2" />\r
++ <gd name="v18" fmla="+- y1I 0 dyC1" />\r
++ <gd name="v19" fmla="+- y1I 0 dyC2" />\r
++ <gd name="v20" fmla="mod v16 v18 0" />\r
++ <gd name="v21" fmla="mod v17 v19 0" />\r
++ <gd name="v22" fmla="+- v21 0 v20" />\r
++ <gd name="dxC" fmla="?: v22 dxC1 dxC2" />\r
++ <gd name="dyC" fmla="?: v22 dyC1 dyC2" />\r
++ <gd name="sdxC" fmla="*/ dxC rw2 rI" />\r
++ <gd name="sdyC" fmla="*/ dyC rh2 rI" />\r
++ <gd name="xC" fmla="+- hc sdxC 0" />\r
++\r
++ <gd name="yC" fmla="+- vc sdyC 0" />\r
++\r
++\r
++ <gd name="wtI" fmla="sin rw3 stAng" />\r
++ <gd name="htI" fmla="cos rh3 stAng" />\r
++ <gd name="dxI" fmla="cat2 rw3 htI wtI" />\r
++ <gd name="dyI" fmla="sat2 rh3 htI wtI" />\r
++ <gd name="xI" fmla="+- hc dxI 0" />\r
++\r
++ <gd name="yI" fmla="+- vc dyI 0" />\r
++\r
++\r
++ <gd name="lptAng" fmla="+- stAng 0 aAng" />\r
++\r
++\r
++ <gd name="wtL" fmla="sin rw3 lptAng" />\r
++ <gd name="htL" fmla="cos rh3 lptAng" />\r
++ <gd name="dxL" fmla="cat2 rw3 htL wtL" />\r
++ <gd name="dyL" fmla="sat2 rh3 htL wtL" />\r
++ <gd name="xL" fmla="+- hc dxL 0" />\r
++\r
++ <gd name="yL" fmla="+- vc dyL 0" />\r
++\r
++\r
++ <gd name="dxK" fmla="cos thh lptAng" />\r
++ <gd name="dyK" fmla="sin thh lptAng" />\r
++ <gd name="xK" fmla="+- xI dxK 0" />\r
++\r
++ <gd name="yK" fmla="+- yI dyK 0" />\r
++\r
++\r
++ <gd name="dxJ" fmla="cos thh lptAng" />\r
++ <gd name="dyJ" fmla="sin thh lptAng" />\r
++ <gd name="xJ" fmla="+- xI 0 dxJ 0" />\r
++\r
++ <gd name="yJ" fmla="+- yI 0 dyJ 0" />\r
++\r
++\r
++ <gd name="p1" fmla="+- xF 0 xC" />\r
++ <gd name="p2" fmla="+- yF 0 yC" />\r
++ <gd name="p3" fmla="mod p1 p2 0" />\r
++ <gd name="p4" fmla="*/ p3 1 2" />\r
++ <gd name="p5" fmla="+- p4 0 thh" />\r
++ <gd name="xGp" fmla="?: p5 xF xG" />\r
++ <gd name="yGp" fmla="?: p5 yF yG" />\r
++ <gd name="xBp" fmla="?: p5 xC xB" />\r
++ <gd name="yBp" fmla="?: p5 yC yB" />\r
++\r
++ <gd name="en0" fmla="at2 sdxF sdyF" />\r
++ <gd name="en1" fmla="+- en0 21600000 0" />\r
++ <gd name="en2" fmla="?: en0 en0 en1" />\r
++ <gd name="od0" fmla="+- en2 0 enAng" />\r
++ <gd name="od1" fmla="+- od0 21600000 0" />\r
++ <gd name="od2" fmla="?: od0 od0 od1" />\r
++\r
++ <gd name="st0" fmla="+- stAng 0 od2" />\r
++ <gd name="st1" fmla="+- st0 21600000 0" />\r
++ <gd name="st2" fmla="?: st0 st0 st1" />\r
++\r
++ <gd name="sw0" fmla="+- en2 0 st2" />\r
++ <gd name="sw1" fmla="+- sw0 21600000 0" />\r
++ <gd name="swAng" fmla="?: sw0 sw0 sw1" />\r
++\r
++\r
++ <gd name="ist0" fmla="at2 sdxC sdyC" />\r
++ <gd name="ist1" fmla="+- ist0 21600000 0" />\r
++ <gd name="istAng" fmla="?: ist0 ist0 ist1" />\r
++\r
++ <gd name="id0" fmla="+- istAng 0 enAng" />\r
++ <gd name="id1" fmla="+- id0 0 21600000" />\r
++ <gd name="id2" fmla="?: id0 id1 id0" />\r
++\r
++ <gd name="ien0" fmla="+- stAng 0 id2" />\r
++ <gd name="ien1" fmla="+- ien0 0 21600000" />\r
++ <gd name="ien2" fmla="?: ien1 ien1 ien0" />\r
++\r
++ <gd name="isw1" fmla="+- ien2 0 istAng" />\r
++ <gd name="isw2" fmla="+- isw1 0 21600000" />\r
++ <gd name="iswAng" fmla="?: isw1 isw2 isw1" />\r
++\r
++\r
++ <gd name="wtE" fmla="sin rw1 st2" />\r
++ <gd name="htE" fmla="cos rh1 st2" />\r
++ <gd name="dxE" fmla="cat2 rw1 htE wtE" />\r
++ <gd name="dyE" fmla="sat2 rh1 htE wtE" />\r
++ <gd name="xE" fmla="+- hc dxE 0" />\r
++\r
++ <gd name="yE" fmla="+- vc dyE 0" />\r
++\r
++\r
++ <gd name="wtD" fmla="sin rw2 ien2" />\r
++ <gd name="htD" fmla="cos rh2 ien2" />\r
++ <gd name="dxD" fmla="cat2 rw2 htD wtD" />\r
++ <gd name="dyD" fmla="sat2 rh2 htD wtD" />\r
++ <gd name="xD" fmla="+- hc dxD 0" />\r
++\r
++ <gd name="yD" fmla="+- vc dyD 0" />\r
++\r
++\r
++ <gd name="xKp" fmla="?: p5 xE xK" />\r
++ <gd name="yKp" fmla="?: p5 yE yK" />\r
++ <gd name="xJp" fmla="?: p5 xD xJ" />\r
++ <gd name="yJp" fmla="?: p5 yD yJ" />\r
++\r
++ <gd name="aL" fmla="+- lptAng 0 cd4" />\r
++ <gd name="aA" fmla="+- ptAng cd4 0" />\r
++ <gd name="aB" fmla="+- ptAng cd2 0" />\r
++ <gd name="aJ" fmla="+- lptAng cd2 0" />\r
++\r
++ <gd name="idx" fmla="cos rw1 2700000" />\r
++ <gd name="idy" fmla="sin rh1 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahPolar gdRefAng="adj2" minAng="0" maxAng="maxAng">\r
++ <pos x="xA" y="yA" />\r
++ </ahPolar>\r
++ <ahPolar gdRefAng="adj4" minAng="0" maxAng="21599999">\r
++ <pos x="xE" y="yE" />\r
++ </ahPolar>\r
++ <ahPolar gdRefR="adj1" minR="0" maxR="maxAdj1" gdRefAng="adj3" minAng="0" maxAng="21599999">\r
++ <pos x="xF" y="yF" />\r
++ </ahPolar>\r
++ <ahPolar gdRefR="adj5" minR="0" maxR="25000">\r
++ <pos x="xB" y="yB" />\r
++ </ahPolar>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="aL">\r
++ <pos x="xL" y="yL" />\r
++ </cxn>\r
++ <cxn ang="lptAng">\r
++ <pos x="xKp" y="yKp" />\r
++ </cxn>\r
++ <cxn ang="ptAng">\r
++ <pos x="xGp" y="yGp" />\r
++ </cxn>\r
++ <cxn ang="aA">\r
++ <pos x="xA" y="yA" />\r
++ </cxn>\r
++ <cxn ang="aB">\r
++ <pos x="xBp" y="yBp" />\r
++ </cxn>\r
++ <cxn ang="aJ">\r
++ <pos x="xJp" y="yJp" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="xL" y="yL" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="xKp" y="yKp" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xE" y="yE" />\r
++ </lnTo>\r
++ <arcTo wR="rw1" hR="rh1" stAng="st2" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="xGp" y="yGp" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xA" y="yA" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xBp" y="yBp" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xC" y="yC" />\r
++ </lnTo>\r
++ <arcTo wR="rw2" hR="rh2" stAng="istAng" swAng="iswAng" />\r
++ <lnTo>\r
++ <pt x="xJp" y="yJp" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </leftRightCircularArrow>\r
++ <leftRightRibbon>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ <gd name="adj3" fmla="val 16667" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a3" fmla="pin 0 adj3 33333" />\r
++ <gd name="maxAdj1" fmla="+- 100000 0 a3" />\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++\r
++ <gd name="w1" fmla="+- wd2 0 wd32" />\r
++ <gd name="maxAdj2" fmla="*/ 100000 w1 ss" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++\r
++ <gd name="x1" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="x4" fmla="+- r 0 x1" />\r
++\r
++ <gd name="dy1" fmla="*/ h a1 200000" />\r
++\r
++ <gd name="dy2" fmla="*/ h a3 -200000" />\r
++\r
++ <gd name="ly1" fmla="+- vc dy2 dy1" />\r
++\r
++ <gd name="ry4" fmla="+- vc dy1 dy2" />\r
++\r
++ <gd name="ly2" fmla="+- ly1 dy1 0" />\r
++\r
++ <gd name="ry3" fmla="+- b 0 ly2" />\r
++\r
++ <gd name="ly4" fmla="*/ ly2 2 1" />\r
++\r
++ <gd name="ry1" fmla="+- b 0 ly4" />\r
++\r
++ <gd name="ly3" fmla="+- ly4 0 ly1" />\r
++\r
++ <gd name="ry2" fmla="+- b 0 ly3" />\r
++\r
++\r
++ <gd name="hR" fmla="*/ a3 ss 400000" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 wd32" />\r
++\r
++ <gd name="x3" fmla="+- hc wd32 0" />\r
++\r
++ <gd name="y1" fmla="+- ly1 hR 0" />\r
++\r
++ <gd name="y2" fmla="+- ry2 0 hR" />\r
++\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
++ <pos x="x4" y="ry2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="33333">\r
++ <pos x="x3" y="ry2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="ry3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x4" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="ly4" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="ly2" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x4" y="ry1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="ly1" r="x4" b="ry4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="ly2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="ly1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="ly1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x4" y="ry2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="ry1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="ry3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="ry4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="ry4" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x2" y="ly3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="ly3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="ly4" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darkenLess" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="x3" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x3" y="ry2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="ly2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="ly1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="ly1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x4" y="ry2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="ry1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="ry3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="ry4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="ry4" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x2" y="ly3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="ly3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="ly4" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x3" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x3" y="ry2" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x2" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="ly3" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </leftRightRibbon>\r
++ <leftRightUpArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="q1" fmla="+- 100000 0 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="*/ q1 1 2" />\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="x1" fmla="*/ ss a3 100000" />\r
++ <gd name="dx2" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x5" fmla="+- hc dx2 0" />\r
++ <gd name="dx3" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="x3" fmla="+- hc 0 dx3" />\r
++ <gd name="x4" fmla="+- hc dx3 0" />\r
++ <gd name="x6" fmla="+- r 0 x1" />\r
++\r
++ <gd name="dy2" fmla="*/ ss a2 50000" />\r
++\r
++ <gd name="y2" fmla="+- b 0 dy2" />\r
++ <gd name="y4" fmla="+- b 0 dx2" />\r
++ <gd name="y3" fmla="+- y4 0 dx3" />\r
++ <gd name="y5" fmla="+- y4 dx3 0" />\r
++ <gd name="il" fmla="*/ dx3 x1 dx2" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
++ <pos x="x3" y="x1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="r" y="x1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y5" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y4" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="y3" r="ir" b="y5" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y4" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </leftRightUpArrow>\r
++ <leftUpArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="+- 100000 0 maxAdj1" />\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="x1" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="dx2" fmla="*/ ss a2 50000" />\r
++\r
++ <gd name="x2" fmla="+- r 0 dx2" />\r
++ <gd name="y2" fmla="+- b 0 dx2" />\r
++ <gd name="dx4" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="x4" fmla="+- r 0 dx4" />\r
++ <gd name="y4" fmla="+- b 0 dx4" />\r
++ <gd name="dx3" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="x3" fmla="+- x4 0 dx3" />\r
++ <gd name="x5" fmla="+- x4 dx3 0" />\r
++ <gd name="y3" fmla="+- y4 0 dx3" />\r
++ <gd name="y5" fmla="+- y4 dx3 0" />\r
++ <gd name="il" fmla="*/ dx3 x1 dx4" />\r
++ <gd name="cx1" fmla="+/ x1 x5 2" />\r
++ <gd name="cy1" fmla="+/ x1 y5 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
++ <pos x="x3" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="x3" y="x1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x4" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x2" y="x1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="cx1" y="y5" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x5" y="cy1" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="x1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="y3" r="x4" b="y5" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y4" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </leftUpArrow>\r
++ <lightningBolt>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="x1" fmla="*/ w 5022 21600" />\r
++ <gd name="x3" fmla="*/ w 8472 21600" />\r
++ <gd name="x4" fmla="*/ w 8757 21600" />\r
++\r
++ <gd name="x5" fmla="*/ w 10012 21600" />\r
++ <gd name="x8" fmla="*/ w 12860 21600" />\r
++ <gd name="x9" fmla="*/ w 13917 21600" />\r
++\r
++ <gd name="x11" fmla="*/ w 16577 21600" />\r
++ <gd name="y1" fmla="*/ h 3890 21600" />\r
++ <gd name="y2" fmla="*/ h 6080 21600" />\r
++ <gd name="y4" fmla="*/ h 7437 21600" />\r
++\r
++ <gd name="y6" fmla="*/ h 9705 21600" />\r
++ <gd name="y7" fmla="*/ h 12007 21600" />\r
++ <gd name="y10" fmla="*/ h 14277 21600" />\r
++\r
++ <gd name="y11" fmla="*/ h 14915 21600" />\r
++\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="l" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y6" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x5" y="y11" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x11" y="y7" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x8" y="y2" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x4" t="y4" r="x9" b="y10" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path w="21600" h="21600">\r
++ <moveTo>\r
++ <pt x="8472" y="0" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="12860" y="6080" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="11050" y="6797" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="16577" y="12007" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="14767" y="12877" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="21600" y="21600" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="10012" y="14915" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="12222" y="13987" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="5022" y="9705" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="7602" y="8382" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="0" y="3890" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </lightningBolt>\r
++ <line>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="l" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++ </line>\r
++ <lineInv>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="l" y="b" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="r" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++ </lineInv>\r
++ <mathDivide>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 23520" />\r
++\r
++ <gd name="adj2" fmla="val 5880" />\r
++\r
++ <gd name="adj3" fmla="val 11760" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++ <gd name="a1" fmla="pin 1000 adj1 36745" />\r
++ <gd name="ma1" fmla="+- 0 0 a1" />\r
++\r
++ <gd name="ma3h" fmla="+/ 73490 ma1 4" />\r
++\r
++ <gd name="ma3w" fmla="*/ 36745 w h" />\r
++\r
++ <gd name="maxAdj3" fmla="min ma3h ma3w" />\r
++ <gd name="a3" fmla="pin 1000 adj3 maxAdj3" />\r
++ <gd name="m4a3" fmla="*/ -4 a3 1" />\r
++\r
++ <gd name="maxAdj2" fmla="+- 73490 m4a3 a1" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++\r
++ <gd name="dy1" fmla="*/ h a1 200000" />\r
++\r
++ <gd name="yg" fmla="*/ h a2 100000" />\r
++\r
++ <gd name="rad" fmla="*/ h a3 100000" />\r
++\r
++ <gd name="dx1" fmla="*/ w 73490 200000" />\r
++\r
++\r
++ <gd name="y3" fmla="+- vc 0 dy1" />\r
++\r
++ <gd name="y4" fmla="+- vc dy1 0" />\r
++\r
++ <gd name="a" fmla="+- yg rad 0" />\r
++ <gd name="y2" fmla="+- y3 0 a" />\r
++\r
++ <gd name="y1" fmla="+- y2 0 rad" />\r
++\r
++ <gd name="y5" fmla="+- b 0 y1" />\r
++\r
++\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++\r
++ <gd name="x3" fmla="+- hc dx1 0" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 rad" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="1000" maxY="36745">\r
++ <pos x="l" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
++ <pos x="r" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj3" minX="1000" maxX="maxAdj3">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x3" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y5" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="y3" r="x3" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="hc" y="y1" />\r
++ </moveTo>\r
++ <arcTo hR="rad" wR="rad" stAng="3cd4" swAng="21600000" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="y5" />\r
++ </moveTo>\r
++ <arcTo hR="rad" wR="rad" stAng="cd4" swAng="21600000" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x1" y="y3" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </mathDivide>\r
++ <mathEqual>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 23520" />\r
++\r
++ <gd name="adj2" fmla="val 11760" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 36745" />\r
++\r
++\r
++ <gd name="2a1" fmla="*/ a1 2 1" />\r
++\r
++ <gd name="mAdj2" fmla="+- 100000 0 2a1" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 mAdj2" />\r
++ <gd name="dy1" fmla="*/ h a1 100000" />\r
++\r
++ <gd name="dy2" fmla="*/ h a2 200000" />\r
++\r
++ <gd name="dx1" fmla="*/ w 73490 200000" />\r
++\r
++\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++\r
++ <gd name="y3" fmla="+- vc dy2 0" />\r
++\r
++ <gd name="y1" fmla="+- y2 0 dy1" />\r
++\r
++ <gd name="y4" fmla="+- y3 dy1 0" />\r
++\r
++\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++\r
++ <gd name="x2" fmla="+- hc dx1 0" />\r
++\r
++\r
++\r
++ <gd name="yC1" fmla="+/ y1 y2 2" />\r
++\r
++ <gd name="yC2" fmla="+/ y3 y4 2" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="36745">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++\r
++ <ahXY gdRefY="adj2" minY="0" maxY="mAdj2">\r
++ <pos x="r" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x2" y="yC1" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x2" y="yC2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="yC1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="yC2" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="y1" r="x2" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x1" y="y3" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </mathEqual>\r
++ <mathMinus>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 23520" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="dy1" fmla="*/ h a1 200000" />\r
++\r
++ <gd name="dx1" fmla="*/ w 73490 200000" />\r
++\r
++\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++\r
++ <gd name="y2" fmla="+- vc dy1 0" />\r
++\r
++\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++\r
++ <gd name="x2" fmla="+- hc dx1 0" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x2" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="y1" r="x2" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </mathMinus>\r
++ <mathMultiply>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 23520" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 51965" />\r
++\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++\r
++ <gd name="a" fmla="at2 w h" />\r
++\r
++ <gd name="sa" fmla="sin 1 a" />\r
++ <gd name="ca" fmla="cos 1 a" />\r
++ <gd name="ta" fmla="tan 1 a" />\r
++\r
++\r
++ <gd name="dl" fmla="mod w h 0" />\r
++\r
++ <gd name="rw" fmla="*/ dl 51965 100000" />\r
++\r
++\r
++\r
++ <gd name="lM" fmla="+- dl 0 rw" />\r
++ <gd name="xM" fmla="*/ ca lM 2" />\r
++ <gd name="yM" fmla="*/ sa lM 2" />\r
++\r
++\r
++ <gd name="dxAM" fmla="*/ sa th 2" />\r
++ <gd name="dyAM" fmla="*/ ca th 2" />\r
++ <gd name="xA" fmla="+- xM 0 dxAM" />\r
++ <gd name="yA" fmla="+- yM dyAM 0" />\r
++\r
++\r
++ <gd name="xB" fmla="+- xM dxAM 0" />\r
++ <gd name="yB" fmla="+- yM 0 dyAM" />\r
++\r
++\r
++ <gd name="xBC" fmla="+- hc 0 xB" />\r
++ <gd name="yBC" fmla="*/ xBC ta 1" />\r
++ <gd name="yC" fmla="+- yBC yB 0" />\r
++\r
++\r
++ <gd name="xD" fmla="+- r 0 xB" />\r
++ <gd name="xE" fmla="+- r 0 xA" />\r
++\r
++ <gd name="yFE" fmla="+- vc 0 yA" />\r
++ <gd name="xFE" fmla="*/ yFE 1 ta" />\r
++ <gd name="xF" fmla="+- xE 0 xFE" />\r
++ <gd name="xL" fmla="+- xA xFE 0" />\r
++ <gd name="yG" fmla="+- b 0 yA" />\r
++ <gd name="yH" fmla="+- b 0 yB" />\r
++ <gd name="yI" fmla="+- b 0 yC" />\r
++\r
++\r
++ <gd name="xC2" fmla="+- r 0 xM" />\r
++\r
++ <gd name="yC3" fmla="+- b 0 yM" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="51965">\r
++ <pos x="l" y="th" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd2">\r
++ <pos x="xM" y="yM" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="xC2" y="yM" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="xC2" y="yC3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="xM" y="yC3" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="xA" t="yB" r="xE" b="yH" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="xA" y="yA" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="xB" y="yB" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="yC" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD" y="yB" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xE" y="yA" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xF" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xE" y="yG" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xD" y="yH" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="yI" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xB" y="yH" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xA" y="yG" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xL" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </mathMultiply>\r
++ <mathNotEqual>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 23520" />\r
++\r
++ <gd name="adj2" fmla="val 6600000" />\r
++\r
++ <gd name="adj3" fmla="val 11760" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 50000" />\r
++ <gd name="crAng" fmla="pin 4200000 adj2 6600000" />\r
++\r
++\r
++ <gd name="2a1" fmla="*/ a1 2 1" />\r
++ <gd name="maxAdj3" fmla="+- 100000 0 2a1" />\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++\r
++ <gd name="dy1" fmla="*/ h a1 100000" />\r
++\r
++ <gd name="dy2" fmla="*/ h a3 200000" />\r
++\r
++ <gd name="dx1" fmla="*/ w 73490 200000" />\r
++\r
++\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++\r
++ <gd name="x8" fmla="+- hc dx1 0" />\r
++\r
++\r
++\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++\r
++ <gd name="y3" fmla="+- vc dy2 0" />\r
++\r
++ <gd name="y1" fmla="+- y2 0 dy1" />\r
++\r
++ <gd name="y4" fmla="+- y3 dy1 0" />\r
++\r
++\r
++ <gd name="cadj2" fmla="+- crAng 0 cd4" />\r
++ <gd name="xadj2" fmla="tan hd2 cadj2" />\r
++\r
++\r
++\r
++ <gd name="len" fmla="mod xadj2 hd2 0" />\r
++\r
++\r
++\r
++ <gd name="bhw" fmla="*/ len dy1 hd2" />\r
++\r
++ <gd name="bhw2" fmla="*/ bhw 1 2" />\r
++ <gd name="x7" fmla="+- hc xadj2 bhw2" />\r
++\r
++ <gd name="dx67" fmla="*/ xadj2 y1 hd2" />\r
++ <gd name="x6" fmla="+- x7 0 dx67" />\r
++\r
++ <gd name="dx57" fmla="*/ xadj2 y2 hd2" />\r
++ <gd name="x5" fmla="+- x7 0 dx57" />\r
++\r
++ <gd name="dx47" fmla="*/ xadj2 y3 hd2" />\r
++ <gd name="x4" fmla="+- x7 0 dx47" />\r
++\r
++ <gd name="dx37" fmla="*/ xadj2 y4 hd2" />\r
++ <gd name="x3" fmla="+- x7 0 dx37" />\r
++\r
++ <gd name="dx27" fmla="*/ xadj2 2 1" />\r
++ <gd name="x2" fmla="+- x7 0 dx27" />\r
++\r
++\r
++ <gd name="rx7" fmla="+- x7 bhw 0" />\r
++\r
++ <gd name="rx6" fmla="+- x6 bhw 0" />\r
++\r
++ <gd name="rx5" fmla="+- x5 bhw 0" />\r
++\r
++ <gd name="rx4" fmla="+- x4 bhw 0" />\r
++\r
++ <gd name="rx3" fmla="+- x3 bhw 0" />\r
++\r
++ <gd name="rx2" fmla="+- x2 bhw 0" />\r
++\r
++\r
++\r
++ <gd name="dx7" fmla="*/ dy1 hd2 len" />\r
++ <gd name="rxt" fmla="+- x7 dx7 0" />\r
++\r
++ <gd name="lxt" fmla="+- rx7 0 dx7" />\r
++\r
++ <gd name="rx" fmla="?: cadj2 rxt rx7" />\r
++\r
++ <gd name="lx" fmla="?: cadj2 x7 lxt" />\r
++\r
++\r
++ <gd name="dy3" fmla="*/ dy1 xadj2 len" />\r
++ <gd name="dy4" fmla="+- 0 0 dy3" />\r
++ <gd name="ry" fmla="?: cadj2 dy3 t" />\r
++\r
++ <gd name="ly" fmla="?: cadj2 t dy4" />\r
++\r
++\r
++ <gd name="dlx" fmla="+- w 0 rx" />\r
++\r
++ <gd name="drx" fmla="+- w 0 lx" />\r
++\r
++\r
++ <gd name="dly" fmla="+- h 0 ry" />\r
++\r
++ <gd name="dry" fmla="+- h 0 ly" />\r
++\r
++\r
++\r
++ <gd name="xC1" fmla="+/ rx lx 2" />\r
++\r
++ <gd name="xC2" fmla="+/ drx dlx 2" />\r
++\r
++\r
++ <gd name="yC1" fmla="+/ ry ly 2" />\r
++\r
++ <gd name="yC2" fmla="+/ y1 y2 2" />\r
++\r
++ <gd name="yC3" fmla="+/ y3 y4 2" />\r
++\r
++ <gd name="yC4" fmla="+/ dry dly 2" />\r
++\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="50000">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ <ahPolar gdRefAng="adj2" minAng="4200000" maxAng="6600000">\r
++ <pos x="lx" y="t" />\r
++ </ahPolar>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="r" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x8" y="yC2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x8" y="yC3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="xC2" y="yC4" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="yC2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="yC3" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="xC1" y="yC1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="y1" r="x8" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="lx" y="ly" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="rx" y="ry" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="rx6" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="rx5" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="rx4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="rx3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="drx" y="dry" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="dlx" y="dly" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </mathNotEqual>\r
++ <mathPlus>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 23520" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 73490" />\r
++ <gd name="dx1" fmla="*/ w 73490 200000" />\r
++\r
++ <gd name="dy1" fmla="*/ h 73490 200000" />\r
++\r
++ <gd name="dx2" fmla="*/ ss a1 200000" />\r
++\r
++\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++\r
++\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++\r
++ <gd name="y2" fmla="+- vc 0 dx2" />\r
++\r
++ <gd name="y3" fmla="+- vc dx2 0" />\r
++\r
++ <gd name="y4" fmla="+- vc dy1 0" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="73490">\r
++ <pos x="l" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x4" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="y2" r="x4" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </mathPlus>\r
++ <moon>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 50000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 87500" />\r
++ <gd name="g0" fmla="*/ ss a 100000" />\r
++ <gd name="g0w" fmla="*/ g0 w ss" />\r
++ <gd name="g1" fmla="+- ss 0 g0" />\r
++ <gd name="g2" fmla="*/ g0 g0 g1" />\r
++ <gd name="g3" fmla="*/ ss ss g1" />\r
++ <gd name="g4" fmla="*/ g3 2 1" />\r
++ <gd name="g5" fmla="+- g4 0 g2" />\r
++ <gd name="g6" fmla="+- g5 0 g0" />\r
++ <gd name="g6w" fmla="*/ g6 w ss" />\r
++ <gd name="g7" fmla="*/ g5 1 2" />\r
++ <gd name="g8" fmla="+- g7 0 g0" />\r
++ <gd name="dy1" fmla="*/ g8 hd2 ss" />\r
++\r
++ <gd name="g10h" fmla="+- vc 0 dy1" />\r
++ <gd name="g11h" fmla="+- vc dy1 0" />\r
++ <gd name="g12" fmla="*/ g0 9598 32768" />\r
++ <gd name="g12w" fmla="*/ g12 w ss" />\r
++ <gd name="g13" fmla="+- ss 0 g12" />\r
++ <gd name="q1" fmla="*/ ss ss 1" />\r
++ <gd name="q2" fmla="*/ g13 g13 1" />\r
++ <gd name="q3" fmla="+- q1 0 q2" />\r
++ <gd name="q4" fmla="sqrt q3" />\r
++ <gd name="dy4" fmla="*/ q4 hd2 ss" />\r
++ <gd name="g15h" fmla="+- vc 0 dy4" />\r
++ <gd name="g16h" fmla="+- vc dy4 0" />\r
++ <gd name="g17w" fmla="+- g6w 0 g0w" />\r
++ <gd name="g18w" fmla="*/ g17w 1 2" />\r
++\r
++\r
++ <gd name="dx2p" fmla="+- g0w g18w w" />\r
++ <gd name="dx2" fmla="*/ dx2p -1 1" />\r
++\r
++ <gd name="dy2" fmla="*/ hd2 -1 1" />\r
++\r
++ <gd name="stAng1" fmla="at2 dx2 dy2" />\r
++ <gd name="enAngp1" fmla="at2 dx2 hd2" />\r
++ <gd name="enAng1" fmla="+- enAngp1 0 21600000" />\r
++ <gd name="swAng1" fmla="+- enAng1 0 stAng1" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="87500">\r
++ <pos x="g0w" y="vc" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="r" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="g0w" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="g12w" t="g15h" r="g0w" b="g16h" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="r" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="hd2" stAng="cd4" swAng="cd2" />\r
++ <arcTo wR="g18w" hR="dy1" stAng="stAng1" swAng="swAng1" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </moon>\r
++ <nonIsoscelesTrapezoid>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj" fmla="*/ 50000 w ss" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj" />\r
++ <gd name="x1" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="x2" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="dx3" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="x3" fmla="+- r 0 dx3" />\r
++ <gd name="x4" fmla="+/ r x3 2" />\r
++ <gd name="il" fmla="*/ wd3 a1 maxAdj" />\r
++\r
++ <gd name="adjm" fmla="max a1 a2" />\r
++ <gd name="it" fmla="*/ hd3 adjm maxAdj" />\r
++\r
++ <gd name="irt" fmla="*/ wd3 a2 maxAdj" />\r
++ <gd name="ir" fmla="+- r 0 irt" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="maxAdj">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj">\r
++ <pos x="x3" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x4" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++\r
++ <rect l="il" t="it" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </nonIsoscelesTrapezoid>\r
++ <noSmoking>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 18750" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dr" fmla="*/ ss a 100000" />\r
++ <gd name="iwd2" fmla="+- wd2 0 dr" />\r
++ <gd name="ihd2" fmla="+- hd2 0 dr" />\r
++ <gd name="ang" fmla="at2 w h" />\r
++ <gd name="ct" fmla="cos ihd2 ang" />\r
++ <gd name="st" fmla="sin iwd2 ang" />\r
++ <gd name="m" fmla="mod ct st 0" />\r
++ <gd name="n" fmla="*/ iwd2 ihd2 m" />\r
++ <gd name="drd2" fmla="*/ dr 1 2" />\r
++ <gd name="dang" fmla="at2 n drd2" />\r
++ <gd name="2dang" fmla="*/ dang 2 1" />\r
++ <gd name="swAng" fmla="+- -10800000 2dang 0" />\r
++ <gd name="t3" fmla="at2 w h" />\r
++ <gd name="stAng1" fmla="+- t3 0 dang" />\r
++ <gd name="stAng2" fmla="+- stAng1 0 cd2" />\r
++ <gd name="ct1" fmla="cos ihd2 stAng1" />\r
++ <gd name="st1" fmla="sin iwd2 stAng1" />\r
++ <gd name="m1" fmla="mod ct1 st1 0" />\r
++ <gd name="n1" fmla="*/ iwd2 ihd2 m1" />\r
++ <gd name="dx1" fmla="cos n1 stAng1" />\r
++ <gd name="dy1" fmla="sin n1 stAng1" />\r
++ <gd name="x1" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- vc dy1 0" />\r
++ <gd name="x2" fmla="+- hc 0 dx1" />\r
++ <gd name="y2" fmla="+- vc 0 dy1" />\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahPolar gdRefR="adj" minR="0" maxR="50000">\r
++ <pos x="dr" y="vc" />\r
++ </ahPolar>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="il" y="it" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="il" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ir" y="ib" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="ir" y="it" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="iwd2" hR="ihd2" stAng="stAng1" swAng="swAng" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x2" y="y2" />\r
++ </moveTo>\r
++ <arcTo wR="iwd2" hR="ihd2" stAng="stAng2" swAng="swAng" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </noSmoking>\r
++ <notchedRightArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="dx2" fmla="*/ ss a2 100000" />\r
++ <gd name="x2" fmla="+- r 0 dx2" />\r
++ <gd name="dy1" fmla="*/ h a1 200000" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc dy1 0" />\r
++ <gd name="x1" fmla="*/ dy1 dx2 hd2" />\r
++ <gd name="x3" fmla="+- r 0 x1" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
++ <pos x="r" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x1" t="y1" r="x3" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </notchedRightArrow>\r
++ <octagon>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 29289" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="x1" fmla="*/ ss a 100000" />\r
++ <gd name="x2" fmla="+- r 0 x1" />\r
++ <gd name="y2" fmla="+- b 0 x1" />\r
++ <gd name="il" fmla="*/ x1 1 2" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 il" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="x1" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="x1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="x1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </octagon>\r
++ <parallelogram>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 25000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj" fmla="*/ 100000 w ss" />\r
++ <gd name="a" fmla="pin 0 adj maxAdj" />\r
++ <gd name="x1" fmla="*/ ss a 200000" />\r
++ <gd name="x2" fmla="*/ ss a 100000" />\r
++ <gd name="x6" fmla="+- r 0 x1" />\r
++ <gd name="x5" fmla="+- r 0 x2" />\r
++ <gd name="x3" fmla="*/ x5 1 2" />\r
++ <gd name="x4" fmla="+- r 0 x3" />\r
++ <gd name="il" fmla="*/ wd2 a maxAdj" />\r
++ <gd name="q1" fmla="*/ 5 a maxAdj" />\r
++ <gd name="q2" fmla="+/ 1 q1 12" />\r
++ <gd name="il" fmla="*/ q2 w 1" />\r
++ <gd name="it" fmla="*/ q2 h 1" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 it" />\r
++ <gd name="q3" fmla="*/ h hc x2" />\r
++ <gd name="y1" fmla="pin 0 q3 h" />\r
++ <gd name="y2" fmla="+- b 0 y1" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="y2" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x4" y="t" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x6" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </parallelogram>\r
++ <pentagon>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="hf" fmla="val 105146" />\r
++ <gd name="vf" fmla="val 110557" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
++ <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
++ <gd name="svc" fmla="*/ vc vf 100000" />\r
++ <gd name="dx1" fmla="cos swd2 1080000" />\r
++ <gd name="dx2" fmla="cos swd2 18360000" />\r
++ <gd name="dy1" fmla="sin shd2 1080000" />\r
++ <gd name="dy2" fmla="sin shd2 18360000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- svc 0 dy1" />\r
++ <gd name="y2" fmla="+- svc 0 dy2" />\r
++ <gd name="it" fmla="*/ y1 dx2 dx1" />\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="y2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x2" t="it" r="x3" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </pentagon>\r
++ <pie>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 0" />\r
++ <gd name="adj2" fmla="val 16200000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="stAng" fmla="pin 0 adj1 21599999" />\r
++ <gd name="enAng" fmla="pin 0 adj2 21599999" />\r
++ <gd name="sw1" fmla="+- enAng 0 stAng" />\r
++ <gd name="sw2" fmla="+- sw1 21600000 0" />\r
++ <gd name="swAng" fmla="?: sw1 sw1 sw2" />\r
++ <gd name="wt1" fmla="sin wd2 stAng" />\r
++ <gd name="ht1" fmla="cos hd2 stAng" />\r
++ <gd name="dx1" fmla="cat2 wd2 ht1 wt1" />\r
++ <gd name="dy1" fmla="sat2 hd2 ht1 wt1" />\r
++ <gd name="x1" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- vc dy1 0" />\r
++ <gd name="wt2" fmla="sin wd2 enAng" />\r
++ <gd name="ht2" fmla="cos hd2 enAng" />\r
++ <gd name="dx2" fmla="cat2 wd2 ht2 wt2" />\r
++ <gd name="dy2" fmla="sat2 hd2 ht2 wt2" />\r
++ <gd name="x2" fmla="+- hc dx2 0" />\r
++ <gd name="y2" fmla="+- vc dy2 0" />\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahPolar gdRefAng="adj1" minAng="0" maxAng="21599999">\r
++ <pos x="x1" y="y1" />\r
++ </ahPolar>\r
++ <ahPolar gdRefAng="adj2" minAng="0" maxAng="21599999">\r
++ <pos x="x2" y="y2" />\r
++ </ahPolar>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="ir" r="it" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
++ <lnTo>\r
++ <pt x="hc" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </pie>\r
++ <pieWedge>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="g1" fmla="cos w 13500000" />\r
++ <gd name="g2" fmla="sin h 13500000" />\r
++ <gd name="x1" fmla="+- r g1 0" />\r
++ <gd name="y1" fmla="+- b g2 0" />\r
++ </gdLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="x1" t="y1" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="h" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </pieWedge>\r
++ <plaque>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 16667" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="x1" fmla="*/ ss a 100000" />\r
++ <gd name="x2" fmla="+- r 0 x1" />\r
++\r
++ <gd name="y2" fmla="+- b 0 x1" />\r
++ <gd name="il" fmla="*/ x1 70711 100000" />\r
++\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 il" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="x1" />\r
++ </moveTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="0" swAng="-5400000" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </plaque>\r
++ <plaqueTabs>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="md" fmla="mod w h 0" />\r
++ <gd name="dx" fmla="*/ 1 md 20" />\r
++\r
++ <gd name="y1" fmla="+- 0 b dx" />\r
++\r
++ <gd name="x1" fmla="+- 0 r dx" />\r
++\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="dx" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="b" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="dx" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="dx" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="t" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="dx" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y1" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="dx" t="dx" r="x1" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="dx" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="dx" hR="dx" stAng="0" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="dx" hR="dx" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="r" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="dx" />\r
++ </lnTo>\r
++ <arcTo wR="dx" hR="dx" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="dx" hR="dx" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </plaqueTabs>\r
++ <plus>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 25000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="x1" fmla="*/ ss a 100000" />\r
++ <gd name="x2" fmla="+- r 0 x1" />\r
++ <gd name="y2" fmla="+- b 0 x1" />\r
++ <gd name="d" fmla="+- w 0 h" />\r
++ <gd name="il" fmla="?: d l x1" />\r
++ <gd name="ir" fmla="?: d r x2" />\r
++ <gd name="it" fmla="?: d x1 t" />\r
++ <gd name="ib" fmla="?: d y2 b" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="x1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </plus>\r
++ <quadArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 22500" />\r
++\r
++ <gd name="adj2" fmla="val 22500" />\r
++\r
++ <gd name="adj3" fmla="val 22500" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="q1" fmla="+- 100000 0 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="*/ q1 1 2" />\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="x1" fmla="*/ ss a3 100000" />\r
++ <gd name="dx2" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x5" fmla="+- hc dx2 0" />\r
++ <gd name="dx3" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="x3" fmla="+- hc 0 dx3" />\r
++ <gd name="x4" fmla="+- hc dx3 0" />\r
++ <gd name="x6" fmla="+- r 0 x1" />\r
++\r
++ <gd name="y2" fmla="+- vc 0 dx2" />\r
++ <gd name="y5" fmla="+- vc dx2 0" />\r
++ <gd name="y3" fmla="+- vc 0 dx3" />\r
++ <gd name="y4" fmla="+- vc dx3 0" />\r
++ <gd name="y6" fmla="+- b 0 x1" />\r
++ <gd name="il" fmla="*/ dx3 x1 dx2" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
++ <pos x="x3" y="x1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="r" y="x1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="y3" r="ir" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="x1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y5" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </quadArrow>\r
++ <quadArrowCallout>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 18515" />\r
++\r
++ <gd name="adj2" fmla="val 18515" />\r
++\r
++ <gd name="adj3" fmla="val 18515" />\r
++\r
++ <gd name="adj4" fmla="val 48123" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="+- 50000 0 a2" />\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="q2" fmla="*/ a3 2 1" />\r
++\r
++ <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
++\r
++ <gd name="a4" fmla="pin a1 adj4 maxAdj4" />\r
++ <gd name="dx2" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="dx3" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="ah" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="dx1" fmla="*/ w a4 200000" />\r
++\r
++ <gd name="dy1" fmla="*/ h a4 200000" />\r
++\r
++\r
++ <gd name="x8" fmla="+- r 0 ah" />\r
++ <gd name="x2" fmla="+- hc 0 dx1" />\r
++ <gd name="x7" fmla="+- hc dx1 0" />\r
++ <gd name="x3" fmla="+- hc 0 dx2" />\r
++ <gd name="x6" fmla="+- hc dx2 0" />\r
++ <gd name="x4" fmla="+- hc 0 dx3" />\r
++ <gd name="x5" fmla="+- hc dx3 0" />\r
++\r
++ <gd name="y8" fmla="+- b 0 ah" />\r
++ <gd name="y2" fmla="+- vc 0 dy1" />\r
++ <gd name="y7" fmla="+- vc dy1 0" />\r
++ <gd name="y3" fmla="+- vc 0 dx2" />\r
++ <gd name="y6" fmla="+- vc dx2 0" />\r
++ <gd name="y4" fmla="+- vc 0 dx3" />\r
++ <gd name="y5" fmla="+- vc dx3 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
++ <pos x="x4" y="ah" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="x3" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="r" y="ah" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj4" minY="a1" maxY="maxAdj4">\r
++ <pos x="l" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x2" t="y2" r="x7" b="y7" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="ah" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="ah" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="ah" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="ah" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="ah" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="ah" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="ah" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="ah" y="y6" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </quadArrowCallout>\r
++ <rect>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </rect>\r
++ <ribbon>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 16667" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 33333" />\r
++ <gd name="a2" fmla="pin 25000 adj2 75000" />\r
++\r
++\r
++ <gd name="x10" fmla="+- r 0 wd8" />\r
++\r
++ <gd name="dx2" fmla="*/ w a2 200000" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++\r
++ <gd name="x9" fmla="+- hc dx2 0" />\r
++\r
++ <gd name="x3" fmla="+- x2 wd32 0" />\r
++ <gd name="x8" fmla="+- x9 0 wd32" />\r
++ <gd name="x5" fmla="+- x2 wd8 0" />\r
++\r
++ <gd name="x6" fmla="+- x9 0 wd8" />\r
++\r
++ <gd name="x4" fmla="+- x5 0 wd32" />\r
++ <gd name="x7" fmla="+- x6 wd32 0" />\r
++ <gd name="y1" fmla="*/ h a1 200000" />\r
++\r
++ <gd name="y2" fmla="*/ h a1 100000" />\r
++\r
++ <gd name="y4" fmla="+- b 0 y2" />\r
++\r
++ <gd name="y3" fmla="*/ y4 1 2" />\r
++\r
++ <gd name="hR" fmla="*/ h a1 400000" />\r
++\r
++ <gd name="y5" fmla="+- b 0 hR" />\r
++ <gd name="y6" fmla="+- y2 0 hR" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="33333">\r
++ <pos x="hc" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="25000" maxX="75000">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="wd8" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x10" y="y3" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x2" t="y2" r="x9" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x8" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x7" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y5" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x3" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="wd8" y="y3" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darkenLess" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="x5" y="hR" />\r
++ </moveTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x5" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x6" y="hR" />\r
++ </moveTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd2" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x8" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x8" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x7" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y5" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x3" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="wd8" y="y3" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x5" y="hR" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y2" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x6" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x6" y="hR" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x2" y="y4" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y6" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x9" y="y6" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y4" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </ribbon>\r
++ <ribbon2>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 16667" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 33333" />\r
++ <gd name="a2" fmla="pin 25000 adj2 75000" />\r
++\r
++\r
++ <gd name="x10" fmla="+- r 0 wd8" />\r
++\r
++ <gd name="dx2" fmla="*/ w a2 200000" />\r
++\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++\r
++ <gd name="x9" fmla="+- hc dx2 0" />\r
++\r
++ <gd name="x3" fmla="+- x2 wd32 0" />\r
++ <gd name="x8" fmla="+- x9 0 wd32" />\r
++ <gd name="x5" fmla="+- x2 wd8 0" />\r
++\r
++ <gd name="x6" fmla="+- x9 0 wd8" />\r
++\r
++ <gd name="x4" fmla="+- x5 0 wd32" />\r
++ <gd name="x7" fmla="+- x6 wd32 0" />\r
++ <gd name="dy1" fmla="*/ h a1 200000" />\r
++\r
++ <gd name="y1" fmla="+- b 0 dy1" />\r
++ <gd name="dy2" fmla="*/ h a1 100000" />\r
++\r
++ <gd name="y2" fmla="+- b 0 dy2" />\r
++ <gd name="y4" fmla="+- t dy2 0" />\r
++\r
++ <gd name="y3" fmla="+/ y4 b 2" />\r
++\r
++ <gd name="hR" fmla="*/ h a1 400000" />\r
++\r
++\r
++ <gd name="y6" fmla="+- b 0 hR" />\r
++ <gd name="y7" fmla="+- y1 0 hR" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="33333">\r
++ <pos x="hc" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="25000" maxX="75000">\r
++ <pos x="x2" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="wd8" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="y2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x10" y="y3" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x2" t="t" r="x9" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x4" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x8" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x7" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="hR" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="0" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="wd8" y="y3" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path stroke="false" fill="darkenLess" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="x5" y="y6" />\r
++ </moveTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="0" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x5" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x6" y="y6" />\r
++ </moveTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x8" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="wd8" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="hR" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x8" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x9" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x8" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x5" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y6" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x6" y="y6" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x2" y="y7" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x9" y="y4" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y7" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </ribbon2>\r
++ <rightArrow>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="dx1" fmla="*/ ss a2 100000" />\r
++ <gd name="x1" fmla="+- r 0 dx1" />\r
++ <gd name="dy1" fmla="*/ h a1 200000" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc dy1 0" />\r
++ <gd name="dx2" fmla="*/ y1 dx1 hd2" />\r
++ <gd name="x2" fmla="+- x1 dx2 0" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="y1" r="x2" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </rightArrow>\r
++ <rightArrowCallout>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ <gd name="adj4" fmla="val 64977" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="*/ 100000 w ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="q2" fmla="*/ a3 ss w" />\r
++\r
++ <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
++\r
++ <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
++ <gd name="dy1" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="dy2" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++ <gd name="y3" fmla="+- vc dy2 0" />\r
++ <gd name="y4" fmla="+- vc dy1 0" />\r
++ <gd name="dx3" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="x3" fmla="+- r 0 dx3" />\r
++ <gd name="x2" fmla="*/ w a4 100000" />\r
++\r
++ <gd name="x1" fmla="*/ x2 1 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
++ <pos x="x3" y="y2" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
++ <pos x="r" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
++ <pos x="x3" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
++ <pos x="x2" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </rightArrowCallout>\r
++ <rightBrace>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 8333" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a2" fmla="pin 0 adj2 100000" />\r
++ <gd name="q1" fmla="+- 100000 0 a2" />\r
++ <gd name="q2" fmla="min q1 a2" />\r
++ <gd name="q3" fmla="*/ q2 1 2" />\r
++ <gd name="maxAdj1" fmla="*/ q3 h ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="y1" fmla="*/ ss a1 100000" />\r
++ <gd name="y3" fmla="*/ h a2 100000" />\r
++ <gd name="y2" fmla="+- y3 0 y1" />\r
++ <gd name="y4" fmla="+- b 0 y1" />\r
++ <gd name="dx1" fmla="cos wd2 2700000" />\r
++ <gd name="dy1" fmla="sin y1 2700000" />\r
++ <gd name="ir" fmla="+- l dx1 0" />\r
++ <gd name="it" fmla="+- y1 0 dy1" />\r
++ <gd name="ib" fmla="+- b dy1 y1" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
++ <pos x="hc" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="100000">\r
++ <pos x="r" y="y3" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="l" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="r" y="y3" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="l" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="l" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="hc" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="-5400000" />\r
++ <arcTo wR="wd2" hR="y1" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="hc" y="y4" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="hc" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="-5400000" />\r
++ <arcTo wR="wd2" hR="y1" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="hc" y="y4" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd4" />\r
++ </path>\r
++ </pathLst>\r
++ </rightBrace>\r
++ <rightBracket>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 8333" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj" fmla="*/ 50000 h ss" />\r
++\r
++ <gd name="a" fmla="pin 0 adj maxAdj" />\r
++ <gd name="y1" fmla="*/ ss a 100000" />\r
++\r
++ <gd name="y2" fmla="+- b 0 y1" />\r
++\r
++ <gd name="dx1" fmla="cos w 2700000" />\r
++ <gd name="dy1" fmla="sin y1 2700000" />\r
++ <gd name="ir" fmla="+- l dx1 0" />\r
++ <gd name="it" fmla="+- y1 0 dy1" />\r
++ <gd name="ib" fmla="+- b dy1 y1" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="maxAdj">\r
++ <pos x="r" y="y1" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="l" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="l" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="y1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="y1" stAng="0" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ <path fill="none">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <arcTo wR="w" hR="y1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="w" hR="y1" stAng="0" swAng="cd4" />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </rightBracket>\r
++ <round1Rect>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 16667" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dx1" fmla="*/ ss a 100000" />\r
++ <gd name="x1" fmla="+- r 0 dx1" />\r
++ <gd name="idx" fmla="*/ dx1 29289 100000" />\r
++ <gd name="ir" fmla="+- r 0 idx" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="dx1" hR="dx1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </round1Rect>\r
++ <round2DiagRect>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 16667" />\r
++ <gd name="adj2" fmla="val 0" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 50000" />\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="x1" fmla="*/ ss a1 100000" />\r
++ <gd name="y1" fmla="+- b 0 x1" />\r
++ <gd name="a" fmla="*/ ss a2 100000" />\r
++ <gd name="x2" fmla="+- r 0 a" />\r
++ <gd name="y2" fmla="+- b 0 a" />\r
++ <gd name="dx1" fmla="*/ x1 29289 100000" />\r
++ <gd name="dx2" fmla="*/ a 29289 100000" />\r
++ <gd name="d" fmla="+- dx1 0 dx2" />\r
++ <gd name="dx" fmla="?: d dx1 dx2" />\r
++ <gd name="ir" fmla="+- r 0 dx" />\r
++ <gd name="ib" fmla="+- b 0 dx" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="dx" t="dx" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="a" hR="a" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="a" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="a" hR="a" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="l" y="x1" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </round2DiagRect>\r
++ <round2SameRect>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 16667" />\r
++ <gd name="adj2" fmla="val 0" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 50000" />\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++\r
++ <gd name="tx1" fmla="*/ ss a1 100000" />\r
++ <gd name="tx2" fmla="+- r 0 tx1" />\r
++\r
++ <gd name="bx1" fmla="*/ ss a2 100000" />\r
++ <gd name="bx2" fmla="+- r 0 bx1" />\r
++ <gd name="by1" fmla="+- b 0 bx1" />\r
++ <gd name="d" fmla="+- tx1 0 bx1" />\r
++ <gd name="tdx" fmla="*/ tx1 29289 100000" />\r
++ <gd name="bdx" fmla="*/ bx1 29289 100000" />\r
++ <gd name="il" fmla="?: d tdx bdx" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 bdx" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
++ <pos x="tx2" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="bx1" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="tdx" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="tx1" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="tx2" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="tx1" hR="tx1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="by1" />\r
++ </lnTo>\r
++ <arcTo wR="bx1" hR="bx1" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="bx1" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="bx1" hR="bx1" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="l" y="tx1" />\r
++ </lnTo>\r
++ <arcTo wR="tx1" hR="tx1" stAng="cd2" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </round2SameRect>\r
++ <roundRect>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 16667" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="x1" fmla="*/ ss a 100000" />\r
++ <gd name="x2" fmla="+- r 0 x1" />\r
++ <gd name="y2" fmla="+- b 0 x1" />\r
++ <gd name="il" fmla="*/ x1 29289 100000" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 il" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="x1" />\r
++ </moveTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </roundRect>\r
++ <rtTriangle>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="it" fmla="*/ h 7 12" />\r
++ <gd name="ir" fmla="*/ w 7 12" />\r
++ <gd name="ib" fmla="*/ h 11 12" />\r
++ </gdLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="l" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="l" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="hc" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="wd12" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="l" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </rtTriangle>\r
++ <smileyFace>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 4653" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin -4653 adj 4653" />\r
++ <gd name="x1" fmla="*/ w 4969 21699" />\r
++\r
++ <gd name="x2" fmla="*/ w 6215 21600" />\r
++\r
++ <gd name="x3" fmla="*/ w 13135 21600" />\r
++\r
++ <gd name="x4" fmla="*/ w 16640 21600" />\r
++\r
++ <gd name="y1" fmla="*/ h 7570 21600" />\r
++\r
++ <gd name="y3" fmla="*/ h 16515 21600" />\r
++\r
++ <gd name="dy2" fmla="*/ h a 100000" />\r
++\r
++ <gd name="y2" fmla="+- y3 0 dy2" />\r
++\r
++ <gd name="y4" fmla="+- y3 dy2 0" />\r
++\r
++ <gd name="dy3" fmla="*/ h a 50000" />\r
++\r
++ <gd name="y5" fmla="+- y4 dy3 0" />\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ <gd name="wR" fmla="*/ w 1125 21600" />\r
++ <gd name="hR" fmla="*/ h 1125 21600" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="-4653" maxY="4653">\r
++ <pos x="hc" y="y4" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="il" y="it" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="il" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ir" y="ib" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="ir" y="it" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ <path fill="darkenLess" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="x2" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wR" hR="hR" stAng="cd2" swAng="21600000" />\r
++ <moveTo>\r
++ <pt x="x3" y="y1" />\r
++ </moveTo>\r
++ <arcTo wR="wR" hR="hR" stAng="cd2" swAng="21600000" />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="x1" y="y2" />\r
++ </moveTo>\r
++ <quadBezTo>\r
++ <pt x="hc" y="y5" />\r
++ <pt x="x4" y="y2" />\r
++ </quadBezTo>\r
++ </path>\r
++ <path fill="none">\r
++\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </smileyFace>\r
++ <snip1Rect>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 16667" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dx1" fmla="*/ ss a 100000" />\r
++ <gd name="x1" fmla="+- r 0 dx1" />\r
++ <gd name="it" fmla="*/ dx1 1 2" />\r
++ <gd name="ir" fmla="+/ x1 r 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="it" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="dx1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </snip1Rect>\r
++ <snip2DiagRect>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 0" />\r
++ <gd name="adj2" fmla="val 16667" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 50000" />\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="lx1" fmla="*/ ss a1 100000" />\r
++ <gd name="lx2" fmla="+- r 0 lx1" />\r
++ <gd name="ly1" fmla="+- b 0 lx1" />\r
++ <gd name="rx1" fmla="*/ ss a2 100000" />\r
++ <gd name="rx2" fmla="+- r 0 rx1" />\r
++ <gd name="ry1" fmla="+- b 0 rx1" />\r
++ <gd name="d" fmla="+- lx1 0 rx1" />\r
++ <gd name="dx" fmla="?: d lx1 rx1" />\r
++ <gd name="il" fmla="*/ dx 1 2" />\r
++\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 il" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
++ <pos x="lx1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="rx2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="lx1" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="rx2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="rx1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="ly1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="lx2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="rx1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="ry1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="lx1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </snip2DiagRect>\r
++ <snip2SameRect>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 16667" />\r
++ <gd name="adj2" fmla="val 0" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 50000" />\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="tx1" fmla="*/ ss a1 100000" />\r
++ <gd name="tx2" fmla="+- r 0 tx1" />\r
++ <gd name="bx1" fmla="*/ ss a2 100000" />\r
++ <gd name="bx2" fmla="+- r 0 bx1" />\r
++ <gd name="by1" fmla="+- b 0 bx1" />\r
++ <gd name="d" fmla="+- tx1 0 bx1" />\r
++ <gd name="dx" fmla="?: d tx1 bx1" />\r
++ <gd name="il" fmla="*/ dx 1 2" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="it" fmla="*/ tx1 1 2" />\r
++ <gd name="ib" fmla="+/ by1 b 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
++ <pos x="tx2" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="bx1" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="tx1" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="tx2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="tx1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="by1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="bx2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="bx1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="by1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="tx1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </snip2SameRect>\r
++ <snipRoundRect>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 16667" />\r
++ <gd name="adj2" fmla="val 16667" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 50000" />\r
++ <gd name="a2" fmla="pin 0 adj2 50000" />\r
++ <gd name="x1" fmla="*/ ss a1 100000" />\r
++ <gd name="dx2" fmla="*/ ss a2 100000" />\r
++ <gd name="x2" fmla="+- r 0 dx2" />\r
++ <gd name="il" fmla="*/ x1 29289 100000" />\r
++\r
++ <gd name="ir" fmla="+/ x2 r 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="il" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="dx2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="x1" />\r
++ </lnTo>\r
++ <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </snipRoundRect>\r
++ <squareTabs>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="md" fmla="mod w h 0" />\r
++ <gd name="dx" fmla="*/ 1 md 20" />\r
++\r
++ <gd name="y1" fmla="+- 0 b dx" />\r
++\r
++ <gd name="x1" fmla="+- 0 r dx" />\r
++\r
++ </gdLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="dx" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="dx" y="dx" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="dx" y="x1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="dx" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="dx" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="t" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="dx" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y1" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x1" y="dx" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="dx" t="dx" r="x1" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="dx" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="dx" y="dx" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="dx" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="dx" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="dx" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="dx" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="dx" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </squareTabs>\r
++ <star10>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 42533" />\r
++ <gd name="hf" fmla="val 105146" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
++ <gd name="dx1" fmla="*/ swd2 95106 100000" />\r
++ <gd name="dx2" fmla="*/ swd2 58779 100000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++ <gd name="dy1" fmla="*/ hd2 80902 100000" />\r
++ <gd name="dy2" fmla="*/ hd2 30902 100000" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++ <gd name="y3" fmla="+- vc dy2 0" />\r
++ <gd name="y4" fmla="+- vc dy1 0" />\r
++ <gd name="iwd2" fmla="*/ swd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
++ <gd name="sdx1" fmla="*/ iwd2 80902 100000" />\r
++ <gd name="sdx2" fmla="*/ iwd2 30902 100000" />\r
++ <gd name="sdy1" fmla="*/ ihd2 95106 100000" />\r
++ <gd name="sdy2" fmla="*/ ihd2 58779 100000" />\r
++ <gd name="sx1" fmla="+- hc 0 iwd2" />\r
++ <gd name="sx2" fmla="+- hc 0 sdx1" />\r
++ <gd name="sx3" fmla="+- hc 0 sdx2" />\r
++ <gd name="sx4" fmla="+- hc sdx2 0" />\r
++ <gd name="sx5" fmla="+- hc sdx1 0" />\r
++ <gd name="sx6" fmla="+- hc iwd2 0" />\r
++ <gd name="sy1" fmla="+- vc 0 sdy1" />\r
++ <gd name="sy2" fmla="+- vc 0 sdy2" />\r
++ <gd name="sy3" fmla="+- vc sdy2 0" />\r
++ <gd name="sy4" fmla="+- vc sdy1 0" />\r
++ <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="50000">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y2" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="sx2" t="sy2" r="sx5" b="sy3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </star10>\r
++ <star12>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 37500" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dx1" fmla="cos wd2 1800000" />\r
++\r
++ <gd name="dy1" fmla="sin hd2 3600000" />\r
++\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x3" fmla="*/ w 3 4" />\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y3" fmla="*/ h 3 4" />\r
++ <gd name="y4" fmla="+- vc dy1 0" />\r
++ <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
++ <gd name="sdx1" fmla="cos iwd2 900000" />\r
++ <gd name="sdx2" fmla="cos iwd2 2700000" />\r
++ <gd name="sdx3" fmla="cos iwd2 4500000" />\r
++ <gd name="sdy1" fmla="sin ihd2 4500000" />\r
++ <gd name="sdy2" fmla="sin ihd2 2700000" />\r
++ <gd name="sdy3" fmla="sin ihd2 900000" />\r
++ <gd name="sx1" fmla="+- hc 0 sdx1" />\r
++ <gd name="sx2" fmla="+- hc 0 sdx2" />\r
++ <gd name="sx3" fmla="+- hc 0 sdx3" />\r
++ <gd name="sx4" fmla="+- hc sdx3 0" />\r
++ <gd name="sx5" fmla="+- hc sdx2 0" />\r
++ <gd name="sx6" fmla="+- hc sdx1 0" />\r
++ <gd name="sy1" fmla="+- vc 0 sdy1" />\r
++ <gd name="sy2" fmla="+- vc 0 sdy2" />\r
++ <gd name="sy3" fmla="+- vc 0 sdy3" />\r
++ <gd name="sy4" fmla="+- vc sdy3 0" />\r
++ <gd name="sy5" fmla="+- vc sdy2 0" />\r
++ <gd name="sy6" fmla="+- vc sdy1 0" />\r
++ <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="50000">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x4" y="hd4" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="wd4" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="hd4" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="wd4" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="sx2" t="sy2" r="sx5" b="sy5" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="hd4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="wd4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="hd4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="wd4" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy4" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </star12>\r
++ <star16>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 37500" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dx1" fmla="*/ wd2 92388 100000" />\r
++ <gd name="dx2" fmla="*/ wd2 70711 100000" />\r
++ <gd name="dx3" fmla="*/ wd2 38268 100000" />\r
++ <gd name="dy1" fmla="*/ hd2 92388 100000" />\r
++ <gd name="dy2" fmla="*/ hd2 70711 100000" />\r
++ <gd name="dy3" fmla="*/ hd2 38268 100000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc 0 dx3" />\r
++ <gd name="x4" fmla="+- hc dx3 0" />\r
++ <gd name="x5" fmla="+- hc dx2 0" />\r
++ <gd name="x6" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++ <gd name="y3" fmla="+- vc 0 dy3" />\r
++ <gd name="y4" fmla="+- vc dy3 0" />\r
++ <gd name="y5" fmla="+- vc dy2 0" />\r
++ <gd name="y6" fmla="+- vc dy1 0" />\r
++ <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
++ <gd name="sdx1" fmla="*/ iwd2 98079 100000" />\r
++ <gd name="sdx2" fmla="*/ iwd2 83147 100000" />\r
++ <gd name="sdx3" fmla="*/ iwd2 55557 100000" />\r
++ <gd name="sdx4" fmla="*/ iwd2 19509 100000" />\r
++ <gd name="sdy1" fmla="*/ ihd2 98079 100000" />\r
++ <gd name="sdy2" fmla="*/ ihd2 83147 100000" />\r
++ <gd name="sdy3" fmla="*/ ihd2 55557 100000" />\r
++ <gd name="sdy4" fmla="*/ ihd2 19509 100000" />\r
++ <gd name="sx1" fmla="+- hc 0 sdx1" />\r
++ <gd name="sx2" fmla="+- hc 0 sdx2" />\r
++ <gd name="sx3" fmla="+- hc 0 sdx3" />\r
++ <gd name="sx4" fmla="+- hc 0 sdx4" />\r
++ <gd name="sx5" fmla="+- hc sdx4 0" />\r
++ <gd name="sx6" fmla="+- hc sdx3 0" />\r
++ <gd name="sx7" fmla="+- hc sdx2 0" />\r
++ <gd name="sx8" fmla="+- hc sdx1 0" />\r
++ <gd name="sy1" fmla="+- vc 0 sdy1" />\r
++ <gd name="sy2" fmla="+- vc 0 sdy2" />\r
++ <gd name="sy3" fmla="+- vc 0 sdy3" />\r
++ <gd name="sy4" fmla="+- vc 0 sdy4" />\r
++ <gd name="sy5" fmla="+- vc sdy4 0" />\r
++ <gd name="sy6" fmla="+- vc sdy3 0" />\r
++ <gd name="sy7" fmla="+- vc sdy2 0" />\r
++ <gd name="sy8" fmla="+- vc sdy1 0" />\r
++ <gd name="idx" fmla="cos iwd2 2700000" />\r
++ <gd name="idy" fmla="sin ihd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="50000">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x5" y="y2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x6" y="y3" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x6" y="y4" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x5" y="y5" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x4" y="y6" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="y6" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x2" y="y5" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x2" y="y2" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x3" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x4" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx7" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx8" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx8" y="sy5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx7" y="sy6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="sy7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy5" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </star16>\r
++ <star24>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 37500" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dx1" fmla="cos wd2 900000" />\r
++ <gd name="dx2" fmla="cos wd2 1800000" />\r
++ <gd name="dx3" fmla="cos wd2 2700000" />\r
++ <gd name="dx4" fmla="val wd4" />\r
++ <gd name="dx5" fmla="cos wd2 4500000" />\r
++ <gd name="dy1" fmla="sin hd2 4500000" />\r
++ <gd name="dy2" fmla="sin hd2 3600000" />\r
++ <gd name="dy3" fmla="sin hd2 2700000" />\r
++ <gd name="dy4" fmla="val hd4" />\r
++ <gd name="dy5" fmla="sin hd2 900000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc 0 dx3" />\r
++ <gd name="x4" fmla="+- hc 0 dx4" />\r
++ <gd name="x5" fmla="+- hc 0 dx5" />\r
++ <gd name="x6" fmla="+- hc dx5 0" />\r
++ <gd name="x7" fmla="+- hc dx4 0" />\r
++ <gd name="x8" fmla="+- hc dx3 0" />\r
++ <gd name="x9" fmla="+- hc dx2 0" />\r
++ <gd name="x10" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++ <gd name="y3" fmla="+- vc 0 dy3" />\r
++ <gd name="y4" fmla="+- vc 0 dy4" />\r
++ <gd name="y5" fmla="+- vc 0 dy5" />\r
++ <gd name="y6" fmla="+- vc dy5 0" />\r
++ <gd name="y7" fmla="+- vc dy4 0" />\r
++ <gd name="y8" fmla="+- vc dy3 0" />\r
++ <gd name="y9" fmla="+- vc dy2 0" />\r
++ <gd name="y10" fmla="+- vc dy1 0" />\r
++ <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
++ <gd name="sdx1" fmla="*/ iwd2 99144 100000" />\r
++ <gd name="sdx2" fmla="*/ iwd2 92388 100000" />\r
++ <gd name="sdx3" fmla="*/ iwd2 79335 100000" />\r
++ <gd name="sdx4" fmla="*/ iwd2 60876 100000" />\r
++ <gd name="sdx5" fmla="*/ iwd2 38268 100000" />\r
++ <gd name="sdx6" fmla="*/ iwd2 13053 100000" />\r
++ <gd name="sdy1" fmla="*/ ihd2 99144 100000" />\r
++ <gd name="sdy2" fmla="*/ ihd2 92388 100000" />\r
++ <gd name="sdy3" fmla="*/ ihd2 79335 100000" />\r
++ <gd name="sdy4" fmla="*/ ihd2 60876 100000" />\r
++ <gd name="sdy5" fmla="*/ ihd2 38268 100000" />\r
++ <gd name="sdy6" fmla="*/ ihd2 13053 100000" />\r
++ <gd name="sx1" fmla="+- hc 0 sdx1" />\r
++ <gd name="sx2" fmla="+- hc 0 sdx2" />\r
++ <gd name="sx3" fmla="+- hc 0 sdx3" />\r
++ <gd name="sx4" fmla="+- hc 0 sdx4" />\r
++ <gd name="sx5" fmla="+- hc 0 sdx5" />\r
++ <gd name="sx6" fmla="+- hc 0 sdx6" />\r
++ <gd name="sx7" fmla="+- hc sdx6 0" />\r
++ <gd name="sx8" fmla="+- hc sdx5 0" />\r
++ <gd name="sx9" fmla="+- hc sdx4 0" />\r
++ <gd name="sx10" fmla="+- hc sdx3 0" />\r
++ <gd name="sx11" fmla="+- hc sdx2 0" />\r
++ <gd name="sx12" fmla="+- hc sdx1 0" />\r
++ <gd name="sy1" fmla="+- vc 0 sdy1" />\r
++ <gd name="sy2" fmla="+- vc 0 sdy2" />\r
++ <gd name="sy3" fmla="+- vc 0 sdy3" />\r
++ <gd name="sy4" fmla="+- vc 0 sdy4" />\r
++ <gd name="sy5" fmla="+- vc 0 sdy5" />\r
++ <gd name="sy6" fmla="+- vc 0 sdy6" />\r
++ <gd name="sy7" fmla="+- vc sdy6 0" />\r
++ <gd name="sy8" fmla="+- vc sdy5 0" />\r
++ <gd name="sy9" fmla="+- vc sdy4 0" />\r
++ <gd name="sy10" fmla="+- vc sdy3 0" />\r
++ <gd name="sy11" fmla="+- vc sdy2 0" />\r
++ <gd name="sy12" fmla="+- vc sdy1 0" />\r
++ <gd name="idx" fmla="cos iwd2 2700000" />\r
++ <gd name="idy" fmla="sin ihd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="ssd2">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx7" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx8" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx9" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx10" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx11" y="sy5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx12" y="sy6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx12" y="sy7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx11" y="sy8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx10" y="sy9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx9" y="sy10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx8" y="sy11" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx7" y="sy12" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="sy12" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy11" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy7" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </star24>\r
++ <star32>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 37500" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dx1" fmla="*/ wd2 98079 100000" />\r
++ <gd name="dx2" fmla="*/ wd2 92388 100000" />\r
++ <gd name="dx3" fmla="*/ wd2 83147 100000" />\r
++ <gd name="dx4" fmla="cos wd2 2700000" />\r
++ <gd name="dx5" fmla="*/ wd2 55557 100000" />\r
++ <gd name="dx6" fmla="*/ wd2 38268 100000" />\r
++ <gd name="dx7" fmla="*/ wd2 19509 100000" />\r
++ <gd name="dy1" fmla="*/ hd2 98079 100000" />\r
++ <gd name="dy2" fmla="*/ hd2 92388 100000" />\r
++ <gd name="dy3" fmla="*/ hd2 83147 100000" />\r
++ <gd name="dy4" fmla="sin hd2 2700000" />\r
++ <gd name="dy5" fmla="*/ hd2 55557 100000" />\r
++ <gd name="dy6" fmla="*/ hd2 38268 100000" />\r
++ <gd name="dy7" fmla="*/ hd2 19509 100000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc 0 dx3" />\r
++ <gd name="x4" fmla="+- hc 0 dx4" />\r
++ <gd name="x5" fmla="+- hc 0 dx5" />\r
++ <gd name="x6" fmla="+- hc 0 dx6" />\r
++ <gd name="x7" fmla="+- hc 0 dx7" />\r
++ <gd name="x8" fmla="+- hc dx7 0" />\r
++ <gd name="x9" fmla="+- hc dx6 0" />\r
++ <gd name="x10" fmla="+- hc dx5 0" />\r
++ <gd name="x11" fmla="+- hc dx4 0" />\r
++ <gd name="x12" fmla="+- hc dx3 0" />\r
++ <gd name="x13" fmla="+- hc dx2 0" />\r
++ <gd name="x14" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++ <gd name="y3" fmla="+- vc 0 dy3" />\r
++ <gd name="y4" fmla="+- vc 0 dy4" />\r
++ <gd name="y5" fmla="+- vc 0 dy5" />\r
++ <gd name="y6" fmla="+- vc 0 dy6" />\r
++ <gd name="y7" fmla="+- vc 0 dy7" />\r
++ <gd name="y8" fmla="+- vc dy7 0" />\r
++ <gd name="y9" fmla="+- vc dy6 0" />\r
++ <gd name="y10" fmla="+- vc dy5 0" />\r
++ <gd name="y11" fmla="+- vc dy4 0" />\r
++ <gd name="y12" fmla="+- vc dy3 0" />\r
++ <gd name="y13" fmla="+- vc dy2 0" />\r
++ <gd name="y14" fmla="+- vc dy1 0" />\r
++ <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
++ <gd name="sdx1" fmla="*/ iwd2 99518 100000" />\r
++ <gd name="sdx2" fmla="*/ iwd2 95694 100000" />\r
++ <gd name="sdx3" fmla="*/ iwd2 88192 100000" />\r
++ <gd name="sdx4" fmla="*/ iwd2 77301 100000" />\r
++ <gd name="sdx5" fmla="*/ iwd2 63439 100000" />\r
++ <gd name="sdx6" fmla="*/ iwd2 47140 100000" />\r
++ <gd name="sdx7" fmla="*/ iwd2 29028 100000" />\r
++ <gd name="sdx8" fmla="*/ iwd2 9802 100000" />\r
++ <gd name="sdy1" fmla="*/ ihd2 99518 100000" />\r
++ <gd name="sdy2" fmla="*/ ihd2 95694 100000" />\r
++ <gd name="sdy3" fmla="*/ ihd2 88192 100000" />\r
++ <gd name="sdy4" fmla="*/ ihd2 77301 100000" />\r
++ <gd name="sdy5" fmla="*/ ihd2 63439 100000" />\r
++ <gd name="sdy6" fmla="*/ ihd2 47140 100000" />\r
++ <gd name="sdy7" fmla="*/ ihd2 29028 100000" />\r
++ <gd name="sdy8" fmla="*/ ihd2 9802 100000" />\r
++ <gd name="sx1" fmla="+- hc 0 sdx1" />\r
++ <gd name="sx2" fmla="+- hc 0 sdx2" />\r
++ <gd name="sx3" fmla="+- hc 0 sdx3" />\r
++ <gd name="sx4" fmla="+- hc 0 sdx4" />\r
++ <gd name="sx5" fmla="+- hc 0 sdx5" />\r
++ <gd name="sx6" fmla="+- hc 0 sdx6" />\r
++ <gd name="sx7" fmla="+- hc 0 sdx7" />\r
++ <gd name="sx8" fmla="+- hc 0 sdx8" />\r
++ <gd name="sx9" fmla="+- hc sdx8 0" />\r
++ <gd name="sx10" fmla="+- hc sdx7 0" />\r
++ <gd name="sx11" fmla="+- hc sdx6 0" />\r
++ <gd name="sx12" fmla="+- hc sdx5 0" />\r
++ <gd name="sx13" fmla="+- hc sdx4 0" />\r
++ <gd name="sx14" fmla="+- hc sdx3 0" />\r
++ <gd name="sx15" fmla="+- hc sdx2 0" />\r
++ <gd name="sx16" fmla="+- hc sdx1 0" />\r
++ <gd name="sy1" fmla="+- vc 0 sdy1" />\r
++ <gd name="sy2" fmla="+- vc 0 sdy2" />\r
++ <gd name="sy3" fmla="+- vc 0 sdy3" />\r
++ <gd name="sy4" fmla="+- vc 0 sdy4" />\r
++ <gd name="sy5" fmla="+- vc 0 sdy5" />\r
++ <gd name="sy6" fmla="+- vc 0 sdy6" />\r
++ <gd name="sy7" fmla="+- vc 0 sdy7" />\r
++ <gd name="sy8" fmla="+- vc 0 sdy8" />\r
++ <gd name="sy9" fmla="+- vc sdy8 0" />\r
++ <gd name="sy10" fmla="+- vc sdy7 0" />\r
++ <gd name="sy11" fmla="+- vc sdy6 0" />\r
++ <gd name="sy12" fmla="+- vc sdy5 0" />\r
++ <gd name="sy13" fmla="+- vc sdy4 0" />\r
++ <gd name="sy14" fmla="+- vc sdy3 0" />\r
++ <gd name="sy15" fmla="+- vc sdy2 0" />\r
++ <gd name="sy16" fmla="+- vc sdy1 0" />\r
++ <gd name="idx" fmla="cos iwd2 2700000" />\r
++ <gd name="idy" fmla="sin ihd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="ssd2">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx7" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx8" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx9" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx10" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx11" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx12" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x11" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx13" y="sy5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x12" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx14" y="sy6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x13" y="y6" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx15" y="sy7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x14" y="y7" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx16" y="sy8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx16" y="sy9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x14" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx15" y="sy10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x13" y="y9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx14" y="sy11" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x12" y="y10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx13" y="sy12" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x11" y="y11" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx12" y="sy13" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y12" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx11" y="sy14" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x9" y="y13" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx10" y="sy15" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y14" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx9" y="sy16" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx8" y="sy16" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y14" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx7" y="sy15" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y13" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="sy14" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y12" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy13" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y11" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy12" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy11" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y9" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y8" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy9" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </star32>\r
++ <star4>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 12500" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
++ <gd name="sdx" fmla="cos iwd2 2700000" />\r
++ <gd name="sdy" fmla="sin ihd2 2700000" />\r
++ <gd name="sx1" fmla="+- hc 0 sdx" />\r
++ <gd name="sx2" fmla="+- hc sdx 0" />\r
++ <gd name="sy1" fmla="+- vc 0 sdy" />\r
++ <gd name="sy2" fmla="+- vc sdy 0" />\r
++ <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="50000">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="sx1" t="sy1" r="sx2" b="sy2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </star4>\r
++ <star5>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 19098" />\r
++ <gd name="hf" fmla="val 105146" />\r
++ <gd name="vf" fmla="val 110557" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
++ <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
++ <gd name="svc" fmla="*/ vc vf 100000" />\r
++ <gd name="dx1" fmla="cos swd2 1080000" />\r
++ <gd name="dx2" fmla="cos swd2 18360000" />\r
++ <gd name="dy1" fmla="sin shd2 1080000" />\r
++ <gd name="dy2" fmla="sin shd2 18360000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- svc 0 dy1" />\r
++ <gd name="y2" fmla="+- svc 0 dy2" />\r
++ <gd name="iwd2" fmla="*/ swd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ shd2 a 50000" />\r
++ <gd name="sdx1" fmla="cos iwd2 20520000" />\r
++ <gd name="sdx2" fmla="cos iwd2 3240000" />\r
++ <gd name="sdy1" fmla="sin ihd2 3240000" />\r
++ <gd name="sdy2" fmla="sin ihd2 20520000" />\r
++ <gd name="sx1" fmla="+- hc 0 sdx1" />\r
++ <gd name="sx2" fmla="+- hc 0 sdx2" />\r
++ <gd name="sx3" fmla="+- hc sdx2 0" />\r
++ <gd name="sx4" fmla="+- hc sdx1 0" />\r
++ <gd name="sy1" fmla="+- svc 0 sdy1" />\r
++ <gd name="sy2" fmla="+- svc 0 sdy2" />\r
++ <gd name="sy3" fmla="+- svc ihd2 0" />\r
++ <gd name="yAdj" fmla="+- svc 0 ihd2" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="50000">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="y2" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="sx1" t="sy1" r="sx4" b="sy3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </star5>\r
++ <star6>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 28868" />\r
++ <gd name="hf" fmla="val 115470" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
++ <gd name="dx1" fmla="cos swd2 1800000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc dx1 0" />\r
++ <gd name="y2" fmla="+- vc hd4 0" />\r
++ <gd name="iwd2" fmla="*/ swd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
++ <gd name="sdx2" fmla="*/ iwd2 1 2" />\r
++ <gd name="sx1" fmla="+- hc 0 iwd2" />\r
++ <gd name="sx2" fmla="+- hc 0 sdx2" />\r
++ <gd name="sx3" fmla="+- hc sdx2 0" />\r
++ <gd name="sx4" fmla="+- hc iwd2 0" />\r
++ <gd name="sdy1" fmla="sin ihd2 3600000" />\r
++ <gd name="sy1" fmla="+- vc 0 sdy1" />\r
++ <gd name="sy2" fmla="+- vc sdy1 0" />\r
++ <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="50000">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x2" y="hd4" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x2" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="hd4" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="sx1" t="sy1" r="sx4" b="sy2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="hd4" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="hd4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="vc" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </star6>\r
++ <star7>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 34601" />\r
++ <gd name="hf" fmla="val 102572" />\r
++ <gd name="vf" fmla="val 105210" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
++ <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
++ <gd name="svc" fmla="*/ vc vf 100000" />\r
++ <gd name="dx1" fmla="*/ swd2 97493 100000" />\r
++ <gd name="dx2" fmla="*/ swd2 78183 100000" />\r
++ <gd name="dx3" fmla="*/ swd2 43388 100000" />\r
++ <gd name="dy1" fmla="*/ shd2 62349 100000" />\r
++ <gd name="dy2" fmla="*/ shd2 22252 100000" />\r
++ <gd name="dy3" fmla="*/ shd2 90097 100000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc 0 dx3" />\r
++ <gd name="x4" fmla="+- hc dx3 0" />\r
++ <gd name="x5" fmla="+- hc dx2 0" />\r
++ <gd name="x6" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- svc 0 dy1" />\r
++ <gd name="y2" fmla="+- svc dy2 0" />\r
++ <gd name="y3" fmla="+- svc dy3 0" />\r
++ <gd name="iwd2" fmla="*/ swd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ shd2 a 50000" />\r
++ <gd name="sdx1" fmla="*/ iwd2 97493 100000" />\r
++ <gd name="sdx2" fmla="*/ iwd2 78183 100000" />\r
++ <gd name="sdx3" fmla="*/ iwd2 43388 100000" />\r
++ <gd name="sx1" fmla="+- hc 0 sdx1" />\r
++ <gd name="sx2" fmla="+- hc 0 sdx2" />\r
++ <gd name="sx3" fmla="+- hc 0 sdx3" />\r
++ <gd name="sx4" fmla="+- hc sdx3 0" />\r
++ <gd name="sx5" fmla="+- hc sdx2 0" />\r
++ <gd name="sx6" fmla="+- hc sdx1 0" />\r
++ <gd name="sdy1" fmla="*/ ihd2 90097 100000" />\r
++ <gd name="sdy2" fmla="*/ ihd2 22252 100000" />\r
++ <gd name="sdy3" fmla="*/ ihd2 62349 100000" />\r
++ <gd name="sy1" fmla="+- svc 0 sdy1" />\r
++ <gd name="sy2" fmla="+- svc 0 sdy2" />\r
++ <gd name="sy3" fmla="+- svc sdy3 0" />\r
++ <gd name="sy4" fmla="+- svc ihd2 0" />\r
++ <gd name="yAdj" fmla="+- svc 0 ihd2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="50000">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="x5" y="y1" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x6" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x4" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x3" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x2" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="sx2" t="sy1" r="sx5" b="sy3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x1" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx6" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx5" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy3" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </star7>\r
++ <star8>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 37500" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 50000" />\r
++ <gd name="dx1" fmla="cos wd2 2700000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc dx1 0" />\r
++ <gd name="dy1" fmla="sin hd2 2700000" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc dy1 0" />\r
++ <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
++ <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
++ <gd name="sdx1" fmla="*/ iwd2 92388 100000" />\r
++ <gd name="sdx2" fmla="*/ iwd2 38268 100000" />\r
++ <gd name="sdy1" fmla="*/ ihd2 92388 100000" />\r
++ <gd name="sdy2" fmla="*/ ihd2 38268 100000" />\r
++ <gd name="sx1" fmla="+- hc 0 sdx1" />\r
++ <gd name="sx2" fmla="+- hc 0 sdx2" />\r
++ <gd name="sx3" fmla="+- hc sdx2 0" />\r
++ <gd name="sx4" fmla="+- hc sdx1 0" />\r
++ <gd name="sy1" fmla="+- vc 0 sdy1" />\r
++ <gd name="sy2" fmla="+- vc 0 sdy2" />\r
++ <gd name="sy3" fmla="+- vc sdy2 0" />\r
++ <gd name="sy4" fmla="+- vc sdy1 0" />\r
++ <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="50000">\r
++ <pos x="hc" y="yAdj" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x1" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="sx1" t="sy1" r="sx4" b="sy4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx4" y="sy3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx3" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx2" y="sy4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="sx1" y="sy3" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </star8>\r
++ <straightConnector1>\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path fill="none">\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++ </straightConnector1>\r
++ <stripedRightArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++\r
++ <gd name="adj2" fmla="val 50000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 84375 w ss" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="x4" fmla="*/ ss 5 32" />\r
++ <gd name="dx5" fmla="*/ ss a2 100000" />\r
++ <gd name="x5" fmla="+- r 0 dx5" />\r
++ <gd name="dy1" fmla="*/ h a1 200000" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="y2" fmla="+- vc dy1 0" />\r
++ <gd name="dx6" fmla="*/ dy1 dx5 hd2" />\r
++ <gd name="x6" fmla="+- r 0 dx6" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x5" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x5" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x5" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x4" t="y1" r="x6" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="ssd32" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="ssd32" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="ssd16" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="ssd8" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="ssd8" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="ssd16" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x4" y="y1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="vc" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x5" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </stripedRightArrow>\r
++ <sun>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 25000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 12500 adj 46875" />\r
++ <gd name="g0" fmla="+- 50000 0 a" />\r
++ <gd name="g1" fmla="*/ g0 30274 32768" />\r
++ <gd name="g2" fmla="*/ g0 12540 32768" />\r
++ <gd name="g3" fmla="+- g1 50000 0" />\r
++ <gd name="g4" fmla="+- g2 50000 0" />\r
++ <gd name="g5" fmla="+- 50000 0 g1" />\r
++ <gd name="g6" fmla="+- 50000 0 g2" />\r
++ <gd name="g7" fmla="*/ g0 23170 32768" />\r
++ <gd name="g8" fmla="+- 50000 g7 0" />\r
++ <gd name="g9" fmla="+- 50000 0 g7" />\r
++ <gd name="g10" fmla="*/ g5 3 4" />\r
++ <gd name="g11" fmla="*/ g6 3 4" />\r
++ <gd name="g12" fmla="+- g10 3662 0" />\r
++ <gd name="g13" fmla="+- g11 3662 0" />\r
++ <gd name="g14" fmla="+- g11 12500 0" />\r
++ <gd name="g15" fmla="+- 100000 0 g10" />\r
++ <gd name="g16" fmla="+- 100000 0 g12" />\r
++ <gd name="g17" fmla="+- 100000 0 g13" />\r
++ <gd name="g18" fmla="+- 100000 0 g14" />\r
++ <gd name="ox1" fmla="*/ w 18436 21600" />\r
++ <gd name="oy1" fmla="*/ h 3163 21600" />\r
++ <gd name="ox2" fmla="*/ w 3163 21600" />\r
++ <gd name="oy2" fmla="*/ h 18436 21600" />\r
++ <gd name="x8" fmla="*/ w g8 100000" />\r
++ <gd name="x9" fmla="*/ w g9 100000" />\r
++ <gd name="x10" fmla="*/ w g10 100000" />\r
++ <gd name="x12" fmla="*/ w g12 100000" />\r
++ <gd name="x13" fmla="*/ w g13 100000" />\r
++ <gd name="x14" fmla="*/ w g14 100000" />\r
++ <gd name="x15" fmla="*/ w g15 100000" />\r
++ <gd name="x16" fmla="*/ w g16 100000" />\r
++ <gd name="x17" fmla="*/ w g17 100000" />\r
++ <gd name="x18" fmla="*/ w g18 100000" />\r
++ <gd name="x19" fmla="*/ w a 100000" />\r
++ <gd name="wR" fmla="*/ w g0 100000" />\r
++ <gd name="hR" fmla="*/ h g0 100000" />\r
++ <gd name="y8" fmla="*/ h g8 100000" />\r
++ <gd name="y9" fmla="*/ h g9 100000" />\r
++ <gd name="y10" fmla="*/ h g10 100000" />\r
++ <gd name="y12" fmla="*/ h g12 100000" />\r
++ <gd name="y13" fmla="*/ h g13 100000" />\r
++ <gd name="y14" fmla="*/ h g14 100000" />\r
++ <gd name="y15" fmla="*/ h g15 100000" />\r
++ <gd name="y16" fmla="*/ h g16 100000" />\r
++ <gd name="y17" fmla="*/ h g17 100000" />\r
++ <gd name="y18" fmla="*/ h g18 100000" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="12500" maxX="46875">\r
++ <pos x="x19" y="vc" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="x9" t="y9" r="x8" b="y8" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="r" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x15" y="y18" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x15" y="y14" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="ox1" y="oy1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x16" y="y13" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x17" y="y12" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x18" y="y10" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x14" y="y10" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="ox2" y="oy1" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x13" y="y12" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x12" y="y13" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y14" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y18" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="ox2" y="oy2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x12" y="y17" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x13" y="y16" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="hc" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x14" y="y15" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x18" y="y15" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="ox1" y="oy2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x17" y="y16" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x16" y="y17" />\r
++ </lnTo>\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x19" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wR" hR="hR" stAng="cd2" swAng="21600000" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </sun>\r
++ <swooshArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 16667" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++\r
++\r
++ <gd name="a1" fmla="pin 1 adj1 75000" />\r
++\r
++ <gd name="maxAdj2" fmla="*/ 70000 w ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="ad1" fmla="*/ h a1 100000" />\r
++ <gd name="ad2" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="xB" fmla="+- r 0 ad2" />\r
++ <gd name="yB" fmla="+- t ssd8 0" />\r
++\r
++ <gd name="alfa" fmla="*/ cd4 1 14" />\r
++\r
++ <gd name="dx0" fmla="tan ssd8 alfa" />\r
++ <gd name="xC" fmla="+- xB 0 dx0" />\r
++\r
++ <gd name="dx1" fmla="tan ad1 alfa" />\r
++\r
++ <gd name="yF" fmla="+- yB ad1 0" />\r
++ <gd name="xF" fmla="+- xB dx1 0" />\r
++\r
++ <gd name="xE" fmla="+- xF dx0 0" />\r
++ <gd name="yE" fmla="+- yF ssd8 0" />\r
++\r
++ <gd name="dy2" fmla="+- yE 0 t" />\r
++ <gd name="dy22" fmla="*/ dy2 1 2" />\r
++ <gd name="dy3" fmla="*/ h 1 20" />\r
++ <gd name="yD" fmla="+- t dy22 dy3" />\r
++\r
++\r
++ <gd name="dy4" fmla="*/ hd6 1 1" />\r
++ <gd name="yP1" fmla="+- hd6 dy4 0" />\r
++ <gd name="xP1" fmla="val wd6" />\r
++\r
++\r
++ <gd name="dy5" fmla="*/ hd6 1 2" />\r
++ <gd name="yP2" fmla="+- yF dy5 0" />\r
++ <gd name="xP2" fmla="val wd4" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="1" maxY="75000">\r
++ <pos x="xF" y="yF" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="xB" y="yB" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="l" y="b" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="xC" y="t" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="yD" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="xE" y="yE" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <quadBezTo>\r
++ <pt x="xP1" y="yP1" />\r
++ <pt x="xB" y="yB" />\r
++ </quadBezTo>\r
++ <lnTo>\r
++ <pt x="xC" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="yD" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xE" y="yE" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xF" y="yF" />\r
++ </lnTo>\r
++ <quadBezTo>\r
++ <pt x="xP2" y="yP2" />\r
++ <pt x="l" y="b" />\r
++ </quadBezTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </swooshArrow>\r
++ <teardrop>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 100000" />\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 200000" />\r
++ <gd name="r2" fmla="sqrt 2" />\r
++ <gd name="tw" fmla="*/ wd2 r2 1" />\r
++ <gd name="th" fmla="*/ hd2 r2 1" />\r
++ <gd name="sw" fmla="*/ tw a 100000" />\r
++ <gd name="sh" fmla="*/ th a 100000" />\r
++ <gd name="dx1" fmla="cos sw 2700000" />\r
++ <gd name="dy1" fmla="sin sh 2700000" />\r
++ <gd name="x1" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- vc 0 dy1" />\r
++ <gd name="x2" fmla="+/ hc x1 2" />\r
++ <gd name="y2" fmla="+/ vc y1 2" />\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="200000">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ir" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="il" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="il" y="it" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="x1" y="y1" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="vc" />\r
++ </moveTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
++ <quadBezTo>\r
++ <pt x="x2" y="t" />\r
++ <pt x="x1" y="y1" />\r
++ </quadBezTo>\r
++ <quadBezTo>\r
++ <pt x="r" y="y2" />\r
++ <pt x="r" y="vc" />\r
++ </quadBezTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </teardrop>\r
++ <trapezoid>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 25000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj" fmla="*/ 50000 w ss" />\r
++ <gd name="a" fmla="pin 0 adj maxAdj" />\r
++ <gd name="x1" fmla="*/ ss a 200000" />\r
++ <gd name="x2" fmla="*/ ss a 100000" />\r
++ <gd name="x3" fmla="+- r 0 x2" />\r
++ <gd name="x4" fmla="+- r 0 x1" />\r
++ <gd name="il" fmla="*/ wd3 a maxAdj" />\r
++ <gd name="it" fmla="*/ hd3 a maxAdj" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x4" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="it" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </trapezoid>\r
++ <triangle>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 100000" />\r
++ <gd name="x1" fmla="*/ w a 200000" />\r
++ <gd name="x2" fmla="*/ w a 100000" />\r
++ <gd name="x3" fmla="+- x1 wd2 0" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj" minX="0" maxX="100000">\r
++ <pos x="x2" y="t" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="x2" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="l" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x2" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="r" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x3" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="x1" t="vc" r="x3" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </triangle>\r
++ <upArrowCallout>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ <gd name="adj4" fmla="val 64977" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="*/ 100000 h ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="q2" fmla="*/ a3 ss h" />\r
++\r
++ <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
++\r
++ <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
++ <gd name="dx1" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="dx2" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="dy2" fmla="*/ h a4 100000" />\r
++\r
++ <gd name="y2" fmla="+- b 0 dy2" />\r
++ <gd name="y3" fmla="+/ y2 b 2" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
++ <pos x="x2" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="r" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj4" minY="0" maxY="maxAdj4">\r
++ <pos x="l" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y2" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="y2" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </upArrowCallout>\r
++ <upArrow>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="y2" fmla="*/ ss a2 100000" />\r
++ <gd name="y3" fmla="+- b 0 y2" />\r
++ <gd name="dx1" fmla="*/ w a1 200000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc dx1 0" />\r
++ <gd name="dy1" fmla="*/ x1 y2 wd2" />\r
++ <gd name="y1" fmla="+- y2 0 dy1" />\r
++ <gd name="y4" fmla="+- y3 dy1 0" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="100000">\r
++ <pos x="x1" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
++ <pos x="l" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y3" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x2" y="vc" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y2" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="x1" t="y1" r="x2" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </upArrow>\r
++ <upDownArrow>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 50000" />\r
++ <gd name="adj2" fmla="val 50000" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
++ <gd name="a1" fmla="pin 0 adj1 100000" />\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="y2" fmla="*/ ss a2 100000" />\r
++ <gd name="y3" fmla="+- b 0 y2" />\r
++ <gd name="dx1" fmla="*/ w a1 200000" />\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc dx1 0" />\r
++ <gd name="dy1" fmla="*/ x1 y2 wd2" />\r
++ <gd name="y1" fmla="+- y2 0 dy1" />\r
++ <gd name="y4" fmla="+- y3 dy1 0" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="100000">\r
++ <pos x="x1" y="y3" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
++ <pos x="l" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y2" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="y3" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y3" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x2" y="vc" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y2" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="x1" t="y1" r="x2" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y2" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </upDownArrow>\r
++ <upDownArrowCallout>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ <gd name="adj4" fmla="val 48123" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
++\r
++ <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="maxAdj3" fmla="*/ 50000 h ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="q2" fmla="*/ a3 ss hd2" />\r
++\r
++ <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
++\r
++ <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
++ <gd name="dx1" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="dx2" fmla="*/ ss a1 200000" />\r
++\r
++ <gd name="x1" fmla="+- hc 0 dx1" />\r
++ <gd name="x2" fmla="+- hc 0 dx2" />\r
++ <gd name="x3" fmla="+- hc dx2 0" />\r
++ <gd name="x4" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="y4" fmla="+- b 0 y1" />\r
++\r
++ <gd name="dy2" fmla="*/ h a4 200000" />\r
++\r
++ <gd name="y2" fmla="+- vc 0 dy2" />\r
++\r
++ <gd name="y3" fmla="+- vc dy2 0" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
++ <pos x="x2" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
++ <pos x="x1" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="r" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj4" minY="0" maxY="maxAdj4">\r
++ <pos x="l" y="y2" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="y2" r="r" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="y2" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x3" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x4" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="hc" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y3" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </upDownArrowCallout>\r
++ <uturnArrow>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 25000" />\r
++\r
++ <gd name="adj2" fmla="val 25000" />\r
++\r
++ <gd name="adj3" fmla="val 25000" />\r
++\r
++ <gd name="adj4" fmla="val 43750" />\r
++\r
++ <gd name="adj5" fmla="val 75000" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a2" fmla="pin 0 adj2 25000" />\r
++ <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
++ <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
++ <gd name="q2" fmla="*/ a1 ss h" />\r
++\r
++ <gd name="q3" fmla="+- 100000 0 q2" />\r
++\r
++ <gd name="maxAdj3" fmla="*/ q3 h ss" />\r
++\r
++ <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
++ <gd name="q1" fmla="+- a3 a1 0" />\r
++ <gd name="minAdj5" fmla="*/ q1 ss h" />\r
++ <gd name="a5" fmla="pin minAdj5 adj5 100000" />\r
++ <gd name="th" fmla="*/ ss a1 100000" />\r
++\r
++ <gd name="aw2" fmla="*/ ss a2 100000" />\r
++\r
++ <gd name="th2" fmla="*/ th 1 2" />\r
++ <gd name="dh2" fmla="+- aw2 0 th2" />\r
++\r
++ <gd name="y5" fmla="*/ h a5 100000" />\r
++\r
++ <gd name="ah" fmla="*/ ss a3 100000" />\r
++\r
++ <gd name="y4" fmla="+- y5 0 ah" />\r
++ <gd name="x9" fmla="+- r 0 dh2" />\r
++\r
++ <gd name="bw" fmla="*/ x9 1 2" />\r
++ <gd name="bs" fmla="min bw y4" />\r
++ <gd name="maxAdj4" fmla="*/ bs 100000 ss" />\r
++ <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
++\r
++\r
++ <gd name="bd" fmla="*/ ss a4 100000" />\r
++\r
++\r
++\r
++ <gd name="bd3" fmla="+- bd 0 th" />\r
++ <gd name="bd2" fmla="max bd3 0" />\r
++ <gd name="x3" fmla="+- th bd2 0" />\r
++\r
++ <gd name="x8" fmla="+- r 0 aw2" />\r
++\r
++ <gd name="x6" fmla="+- x8 0 aw2" />\r
++\r
++ <gd name="x7" fmla="+- x6 dh2 0" />\r
++\r
++ <gd name="x4" fmla="+- x9 0 bd" />\r
++\r
++ <gd name="x5" fmla="+- x7 0 bd2" />\r
++\r
++ <gd name="cx" fmla="+/ th x7 2" />\r
++\r
++\r
++\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
++ <pos x="th" y="b" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="0" maxX="25000">\r
++ <pos x="x6" y="b" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
++ <pos x="x6" y="y4" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
++ <pos x="bd" y="t" />\r
++ </ahXY>\r
++ <ahXY gdRefY="adj5" minY="minAdj5" maxY="100000">\r
++ <pos x="r" y="y5" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="x6" y="y4" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="x8" y="y5" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="y4" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="cx" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="th2" y="b" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="b" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="l" y="bd" />\r
++ </lnTo>\r
++ <arcTo wR="bd" hR="bd" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x4" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="bd" hR="bd" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x9" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x8" y="y5" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="y4" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x7" y="x3" />\r
++ </lnTo>\r
++ <arcTo wR="bd2" hR="bd2" stAng="0" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="x3" y="th" />\r
++ </lnTo>\r
++ <arcTo wR="bd2" hR="bd2" stAng="3cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="th" y="b" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </uturnArrow>\r
++ <verticalScroll>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj" fmla="val 12500" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a" fmla="pin 0 adj 25000" />\r
++ <gd name="ch" fmla="*/ ss a 100000" />\r
++\r
++ <gd name="ch2" fmla="*/ ch 1 2" />\r
++\r
++ <gd name="ch4" fmla="*/ ch 1 4" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="x3" fmla="+- ch ch2 0" />\r
++\r
++ <gd name="x4" fmla="+- ch ch 0" />\r
++\r
++ <gd name="x6" fmla="+- r 0 ch" />\r
++\r
++ <gd name="x7" fmla="+- r 0 ch2" />\r
++\r
++ <gd name="x5" fmla="+- x6 0 ch2" />\r
++\r
++\r
++\r
++\r
++\r
++ <gd name="y3" fmla="+- b 0 ch" />\r
++\r
++ <gd name="y4" fmla="+- b 0 ch2" />\r
++\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj" minY="0" maxY="25000">\r
++ <pos x="l" y="ch" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="ch" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x6" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="ch" t="ch" r="x6" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="ch2" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="ch2" y="y4" />\r
++ </lnTo>\r
++ <arcTo wR="ch4" hR="ch4" stAng="cd4" swAng="-10800000" />\r
++ <lnTo>\r
++ <pt x="ch" y="y3" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="ch" y="ch2" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x7" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x6" y="ch" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y4" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x4" y="ch2" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="ch4" hR="ch4" stAng="cd4" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ <path fill="darkenLess" stroke="false" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="x4" y="ch2" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
++ <arcTo wR="ch4" hR="ch4" stAng="cd4" swAng="cd2" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="ch" y="y4" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="0" swAng="3cd4" />\r
++ <arcTo wR="ch4" hR="ch4" stAng="3cd4" swAng="cd2" />\r
++ <close />\r
++ </path>\r
++ <path fill="none" extrusionOk="false">\r
++\r
++ <moveTo>\r
++ <pt x="ch" y="y3" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="ch" y="ch2" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x7" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x6" y="ch" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x6" y="y4" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="ch2" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="cd2" />\r
++ <close />\r
++ <moveTo>\r
++ <pt x="x3" y="t" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="3cd4" swAng="cd2" />\r
++ <arcTo wR="ch4" hR="ch4" stAng="cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="x4" y="ch2" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="x6" y="ch" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x3" y="ch" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="ch2" y="y3" />\r
++ </moveTo>\r
++ <arcTo wR="ch4" hR="ch4" stAng="3cd4" swAng="cd2" />\r
++ <lnTo>\r
++ <pt x="ch" y="y4" />\r
++ </lnTo>\r
++ <moveTo>\r
++ <pt x="ch2" y="b" />\r
++ </moveTo>\r
++ <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
++ <lnTo>\r
++ <pt x="ch" y="y3" />\r
++ </lnTo>\r
++ </path>\r
++ </pathLst>\r
++\r
++ </verticalScroll>\r
++ <wave>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val 12500" />\r
++\r
++ <gd name="adj2" fmla="val 0" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="a1" fmla="pin 0 adj1 20000" />\r
++ <gd name="a2" fmla="pin -10000 adj2 10000" />\r
++ <gd name="y1" fmla="*/ h a1 100000" />\r
++\r
++ <gd name="dy2" fmla="*/ y1 10 3" />\r
++ <gd name="y2" fmla="+- y1 0 dy2" />\r
++\r
++ <gd name="y3" fmla="+- y1 dy2 0" />\r
++\r
++ <gd name="y4" fmla="+- b 0 y1" />\r
++\r
++ <gd name="y5" fmla="+- y4 0 dy2" />\r
++\r
++ <gd name="y6" fmla="+- y4 dy2 0" />\r
++\r
++ <gd name="dx1" fmla="*/ w a2 100000" />\r
++\r
++ <gd name="of2" fmla="*/ w a2 50000" />\r
++\r
++ <gd name="x1" fmla="abs dx1" />\r
++\r
++ <gd name="dx2" fmla="?: of2 0 of2" />\r
++ <gd name="x2" fmla="+- l 0 dx2" />\r
++\r
++ <gd name="dx5" fmla="?: of2 of2 0" />\r
++ <gd name="x5" fmla="+- r 0 dx5" />\r
++\r
++ <gd name="dx3" fmla="+/ dx2 x5 3" />\r
++\r
++ <gd name="x3" fmla="+- x2 dx3 0" />\r
++\r
++ <gd name="x4" fmla="+/ x3 x5 2" />\r
++\r
++ <gd name="x6" fmla="+- l dx5 0" />\r
++\r
++ <gd name="x10" fmla="+- r dx2 0" />\r
++\r
++ <gd name="x7" fmla="+- x6 dx3 0" />\r
++\r
++ <gd name="x8" fmla="+/ x7 x10 2" />\r
++\r
++ <gd name="x9" fmla="+- r 0 x1" />\r
++\r
++ <gd name="xAdj" fmla="+- hc dx1 0" />\r
++ <gd name="xAdj2" fmla="+- hc 0 dx1" />\r
++ <gd name="il" fmla="max x2 x6" />\r
++ <gd name="ir" fmla="min x5 x10" />\r
++ <gd name="it" fmla="*/ h a1 50000" />\r
++ <gd name="ib" fmla="+- b 0 it" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefY="adj1" minY="0" maxY="20000">\r
++ <pos x="l" y="y1" />\r
++ </ahXY>\r
++ <ahXY gdRefX="adj2" minX="-10000" maxX="10000">\r
++ <pos x="xAdj" y="b" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="cd4">\r
++ <pos x="xAdj2" y="y1" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="x1" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="xAdj" y="y4" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="x9" y="vc" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="x2" y="y1" />\r
++ </moveTo>\r
++ <cubicBezTo>\r
++ <pt x="x3" y="y2" />\r
++ <pt x="x4" y="y3" />\r
++ <pt x="x5" y="y1" />\r
++ </cubicBezTo>\r
++ <lnTo>\r
++ <pt x="x10" y="y4" />\r
++ </lnTo>\r
++ <cubicBezTo>\r
++ <pt x="x8" y="y6" />\r
++ <pt x="x7" y="y5" />\r
++ <pt x="x6" y="y4" />\r
++ </cubicBezTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </wave>\r
++ <wedgeEllipseCallout>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val -20833" />\r
++ <gd name="adj2" fmla="val 62500" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dxPos" fmla="*/ w adj1 100000" />\r
++ <gd name="dyPos" fmla="*/ h adj2 100000" />\r
++ <gd name="xPos" fmla="+- hc dxPos 0" />\r
++ <gd name="yPos" fmla="+- vc dyPos 0" />\r
++ <gd name="sdx" fmla="*/ dxPos h 1" />\r
++ <gd name="sdy" fmla="*/ dyPos w 1" />\r
++ <gd name="pang" fmla="at2 sdx sdy" />\r
++ <gd name="stAng" fmla="+- pang 660000 0" />\r
++ <gd name="enAng" fmla="+- pang 0 660000" />\r
++ <gd name="dx1" fmla="cos wd2 stAng" />\r
++ <gd name="dy1" fmla="sin hd2 stAng" />\r
++ <gd name="x1" fmla="+- hc dx1 0" />\r
++ <gd name="y1" fmla="+- vc dy1 0" />\r
++ <gd name="dx2" fmla="cos wd2 enAng" />\r
++ <gd name="dy2" fmla="sin hd2 enAng" />\r
++ <gd name="x2" fmla="+- hc dx2 0" />\r
++ <gd name="y2" fmla="+- vc dy2 0" />\r
++ <gd name="stAng1" fmla="at2 dx1 dy1" />\r
++ <gd name="enAng1" fmla="at2 dx2 dy2" />\r
++ <gd name="swAng1" fmla="+- enAng1 0 stAng1" />\r
++ <gd name="swAng2" fmla="+- swAng1 21600000 0" />\r
++ <gd name="swAng" fmla="?: swAng1 swAng1 swAng2" />\r
++ <gd name="idx" fmla="cos wd2 2700000" />\r
++ <gd name="idy" fmla="sin hd2 2700000" />\r
++ <gd name="il" fmla="+- hc 0 idx" />\r
++ <gd name="ir" fmla="+- hc idx 0" />\r
++ <gd name="it" fmla="+- vc 0 idy" />\r
++ <gd name="ib" fmla="+- vc idy 0" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647" gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
++ <pos x="xPos" y="yPos" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="il" y="it" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="il" y="ib" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="ir" y="ib" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="3cd4">\r
++ <pos x="ir" y="it" />\r
++ </cxn>\r
++ <cxn ang="pang">\r
++ <pos x="xPos" y="yPos" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="xPos" y="yPos" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="y1" />\r
++ </lnTo>\r
++ <arcTo wR="wd2" hR="hd2" stAng="stAng1" swAng="swAng" />\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </wedgeEllipseCallout>\r
++ <wedgeRectCallout>\r
++\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val -20833" />\r
++\r
++ <gd name="adj2" fmla="val 62500" />\r
++\r
++ </avLst>\r
++\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dxPos" fmla="*/ w adj1 100000" />\r
++ <gd name="dyPos" fmla="*/ h adj2 100000" />\r
++ <gd name="xPos" fmla="+- hc dxPos 0" />\r
++ <gd name="yPos" fmla="+- vc dyPos 0" />\r
++ <gd name="dx" fmla="+- xPos 0 hc" />\r
++ <gd name="dy" fmla="+- yPos 0 vc" />\r
++ <gd name="dq" fmla="*/ dxPos h w" />\r
++ <gd name="ady" fmla="abs dyPos" />\r
++ <gd name="adq" fmla="abs dq" />\r
++ <gd name="dz" fmla="+- ady 0 adq" />\r
++ <gd name="xg1" fmla="?: dxPos 7 2" />\r
++ <gd name="xg2" fmla="?: dxPos 10 5" />\r
++ <gd name="x1" fmla="*/ w xg1 12" />\r
++ <gd name="x2" fmla="*/ w xg2 12" />\r
++ <gd name="yg1" fmla="?: dyPos 7 2" />\r
++ <gd name="yg2" fmla="?: dyPos 10 5" />\r
++ <gd name="y1" fmla="*/ h yg1 12" />\r
++ <gd name="y2" fmla="*/ h yg2 12" />\r
++ <gd name="t1" fmla="?: dxPos l xPos" />\r
++ <gd name="xl" fmla="?: dz l t1" />\r
++ <gd name="t2" fmla="?: dyPos x1 xPos" />\r
++ <gd name="xt" fmla="?: dz t2 x1" />\r
++ <gd name="t3" fmla="?: dxPos xPos r" />\r
++ <gd name="xr" fmla="?: dz r t3" />\r
++ <gd name="t4" fmla="?: dyPos xPos x1" />\r
++ <gd name="xb" fmla="?: dz t4 x1" />\r
++ <gd name="t5" fmla="?: dxPos y1 yPos" />\r
++ <gd name="yl" fmla="?: dz y1 t5" />\r
++ <gd name="t6" fmla="?: dyPos t yPos" />\r
++ <gd name="yt" fmla="?: dz t6 t" />\r
++ <gd name="t7" fmla="?: dxPos yPos y1" />\r
++ <gd name="yr" fmla="?: dz y1 t7" />\r
++ <gd name="t8" fmla="?: dyPos yPos b" />\r
++ <gd name="yb" fmla="?: dz t8 b" />\r
++ </gdLst>\r
++\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647" gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
++ <pos x="xPos" y="yPos" />\r
++ </ahXY>\r
++ </ahLst>\r
++\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="xPos" y="yPos" />\r
++ </cxn>\r
++ </cxnLst>\r
++\r
++ <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="t" />\r
++ </moveTo>\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xt" y="yt" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xr" y="yr" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xb" y="yb" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xl" y="yl" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++\r
++ </wedgeRectCallout>\r
++ <wedgeRoundRectCallout>\r
++ <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="adj1" fmla="val -20833" />\r
++ <gd name="adj2" fmla="val 62500" />\r
++ <gd name="adj3" fmla="val 16667" />\r
++ </avLst>\r
++ <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <gd name="dxPos" fmla="*/ w adj1 100000" />\r
++ <gd name="dyPos" fmla="*/ h adj2 100000" />\r
++ <gd name="xPos" fmla="+- hc dxPos 0" />\r
++ <gd name="yPos" fmla="+- vc dyPos 0" />\r
++ <gd name="dq" fmla="*/ dxPos h w" />\r
++ <gd name="ady" fmla="abs dyPos" />\r
++ <gd name="adq" fmla="abs dq" />\r
++ <gd name="dz" fmla="+- ady 0 adq" />\r
++ <gd name="xg1" fmla="?: dxPos 7 2" />\r
++ <gd name="xg2" fmla="?: dxPos 10 5" />\r
++ <gd name="x1" fmla="*/ w xg1 12" />\r
++ <gd name="x2" fmla="*/ w xg2 12" />\r
++ <gd name="yg1" fmla="?: dyPos 7 2" />\r
++ <gd name="yg2" fmla="?: dyPos 10 5" />\r
++ <gd name="y1" fmla="*/ h yg1 12" />\r
++ <gd name="y2" fmla="*/ h yg2 12" />\r
++ <gd name="t1" fmla="?: dxPos l xPos" />\r
++ <gd name="xl" fmla="?: dz l t1" />\r
++ <gd name="t2" fmla="?: dyPos x1 xPos" />\r
++ <gd name="xt" fmla="?: dz t2 x1" />\r
++ <gd name="t3" fmla="?: dxPos xPos r" />\r
++ <gd name="xr" fmla="?: dz r t3" />\r
++ <gd name="t4" fmla="?: dyPos xPos x1" />\r
++ <gd name="xb" fmla="?: dz t4 x1" />\r
++ <gd name="t5" fmla="?: dxPos y1 yPos" />\r
++ <gd name="yl" fmla="?: dz y1 t5" />\r
++ <gd name="t6" fmla="?: dyPos t yPos" />\r
++ <gd name="yt" fmla="?: dz t6 t" />\r
++ <gd name="t7" fmla="?: dxPos yPos y1" />\r
++ <gd name="yr" fmla="?: dz y1 t7" />\r
++ <gd name="t8" fmla="?: dyPos yPos b" />\r
++ <gd name="yb" fmla="?: dz t8 b" />\r
++ <gd name="u1" fmla="*/ ss adj3 100000" />\r
++ <gd name="u2" fmla="+- r 0 u1" />\r
++ <gd name="v2" fmla="+- b 0 u1" />\r
++ <gd name="il" fmla="*/ u1 29289 100000" />\r
++ <gd name="ir" fmla="+- r 0 il" />\r
++ <gd name="ib" fmla="+- b 0 il" />\r
++ </gdLst>\r
++ <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647" gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
++ <pos x="xPos" y="yPos" />\r
++ </ahXY>\r
++ </ahLst>\r
++ <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <cxn ang="3cd4">\r
++ <pos x="hc" y="t" />\r
++ </cxn>\r
++ <cxn ang="cd2">\r
++ <pos x="l" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="hc" y="b" />\r
++ </cxn>\r
++ <cxn ang="0">\r
++ <pos x="r" y="vc" />\r
++ </cxn>\r
++ <cxn ang="cd4">\r
++ <pos x="xPos" y="yPos" />\r
++ </cxn>\r
++ </cxnLst>\r
++ <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
++ <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
++ <path>\r
++ <moveTo>\r
++ <pt x="l" y="u1" />\r
++ </moveTo>\r
++ <arcTo wR="u1" hR="u1" stAng="cd2" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x1" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xt" y="yt" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x2" y="t" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="u2" y="t" />\r
++ </lnTo>\r
++ <arcTo wR="u1" hR="u1" stAng="3cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="r" y="y1" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xr" y="yr" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="r" y="v2" />\r
++ </lnTo>\r
++ <arcTo wR="u1" hR="u1" stAng="0" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="x2" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xb" y="yb" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="x1" y="b" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="u1" y="b" />\r
++ </lnTo>\r
++ <arcTo wR="u1" hR="u1" stAng="cd4" swAng="cd4" />\r
++ <lnTo>\r
++ <pt x="l" y="y2" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="xl" y="yl" />\r
++ </lnTo>\r
++ <lnTo>\r
++ <pt x="l" y="y1" />\r
++ </lnTo>\r
++ <close />\r
++ </path>\r
++ </pathLst>\r
++ </wedgeRoundRectCallout>\r
++</presetShapeDefinitons>\r
+++ /dev/null
--<?xml version="1.0" encoding="utf-8"?>\r
--<presetShapeDefinitons>\r
-- <accentBorderCallout1>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 112500" />\r
--\r
-- <gd name="adj4" fmla="val -38333" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <close />\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </accentBorderCallout1>\r
-- <accentBorderCallout2>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 18750" />\r
--\r
-- <gd name="adj4" fmla="val -16667" />\r
--\r
-- <gd name="adj5" fmla="val 112500" />\r
--\r
-- <gd name="adj6" fmla="val -46667" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- <gd name="y3" fmla="*/ h adj5 100000" />\r
-- <gd name="x3" fmla="*/ w adj6 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <close />\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </accentBorderCallout2>\r
-- <accentBorderCallout3>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 18750" />\r
--\r
-- <gd name="adj4" fmla="val -16667" />\r
--\r
-- <gd name="adj5" fmla="val 100000" />\r
--\r
-- <gd name="adj6" fmla="val -16667" />\r
--\r
-- <gd name="adj7" fmla="val 112963" />\r
--\r
-- <gd name="adj8" fmla="val -8333" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- <gd name="y3" fmla="*/ h adj5 100000" />\r
-- <gd name="x3" fmla="*/ w adj6 100000" />\r
-- <gd name="y4" fmla="*/ h adj7 100000" />\r
-- <gd name="x4" fmla="*/ w adj8 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj8" minX="-2147483647" maxX="2147483647" gdRefY="adj7" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x4" y="y4" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <close />\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </accentBorderCallout3>\r
-- <accentCallout1>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 112500" />\r
--\r
-- <gd name="adj4" fmla="val -38333" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <close />\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </accentCallout1>\r
-- <accentCallout2>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 18750" />\r
--\r
-- <gd name="adj4" fmla="val -16667" />\r
--\r
-- <gd name="adj5" fmla="val 112500" />\r
--\r
-- <gd name="adj6" fmla="val -46667" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- <gd name="y3" fmla="*/ h adj5 100000" />\r
-- <gd name="x3" fmla="*/ w adj6 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <close />\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </accentCallout2>\r
-- <accentCallout3>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 18750" />\r
--\r
-- <gd name="adj4" fmla="val -16667" />\r
--\r
-- <gd name="adj5" fmla="val 100000" />\r
--\r
-- <gd name="adj6" fmla="val -16667" />\r
--\r
-- <gd name="adj7" fmla="val 112963" />\r
--\r
-- <gd name="adj8" fmla="val -8333" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- <gd name="y3" fmla="*/ h adj5 100000" />\r
-- <gd name="x3" fmla="*/ w adj6 100000" />\r
-- <gd name="y4" fmla="*/ h adj7 100000" />\r
-- <gd name="x4" fmla="*/ w adj8 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj8" minX="-2147483647" maxX="2147483647" gdRefY="adj7" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x4" y="y4" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <close />\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </accentCallout3>\r
-- <actionButtonBackPrevious>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g10" fmla="+- vc dx2 0" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g12" fmla="+- hc dx2 0" />\r
-- </gdLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g11" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g11" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g11" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </actionButtonBackPrevious>\r
-- <actionButtonBeginning>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g10" fmla="+- vc dx2 0" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g12" fmla="+- hc dx2 0" />\r
-- <gd name="g13" fmla="*/ ss 3 4" />\r
-- <gd name="g14" fmla="*/ g13 1 8" />\r
-- <gd name="g15" fmla="*/ g13 1 4" />\r
-- <gd name="g16" fmla="+- g11 g14 0" />\r
-- <gd name="g17" fmla="+- g11 g15 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g17" y="vc" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g12" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g16" y="g9" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g16" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g17" y="vc" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g12" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g16" y="g9" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g16" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g17" y="vc" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g12" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g16" y="g9" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g16" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g9" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonBeginning>\r
-- <actionButtonBlank>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonBlank>\r
-- <actionButtonDocument>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g10" fmla="+- vc dx2 0" />\r
-- <gd name="dx1" fmla="*/ ss 9 32" />\r
-- <gd name="g11" fmla="+- hc 0 dx1" />\r
-- <gd name="g12" fmla="+- hc dx1 0" />\r
-- <gd name="g13" fmla="*/ ss 3 16" />\r
-- <gd name="g14" fmla="+- g12 0 g13" />\r
-- <gd name="g15" fmla="+- g9 g13 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g11" y="g9" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g14" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g15" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darkenLess" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="g11" y="g9" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g14" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g14" y="g15" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g15" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g14" y="g9" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g14" y="g15" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g15" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g11" y="g9" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g14" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g15" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g12" y="g15" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g14" y="g15" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g14" y="g9" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonDocument>\r
-- <actionButtonEnd>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g10" fmla="+- vc dx2 0" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g12" fmla="+- hc dx2 0" />\r
-- <gd name="g13" fmla="*/ ss 3 4" />\r
-- <gd name="g14" fmla="*/ g13 3 4" />\r
-- <gd name="g15" fmla="*/ g13 7 8" />\r
-- <gd name="g16" fmla="+- g11 g14 0" />\r
-- <gd name="g17" fmla="+- g11 g15 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g16" y="vc" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g17" y="g9" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g12" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g17" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g16" y="vc" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g17" y="g9" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g12" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g17" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g16" y="vc" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g9" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g17" y="g9" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g12" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g17" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonEnd>\r
-- <actionButtonForwardNext>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g10" fmla="+- vc dx2 0" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g12" fmla="+- hc dx2 0" />\r
-- </gdLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g12" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g12" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g12" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g9" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </actionButtonForwardNext>\r
-- <actionButtonHelp>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g13" fmla="*/ ss 3 4" />\r
-- <gd name="g14" fmla="*/ g13 1 7" />\r
-- <gd name="g15" fmla="*/ g13 3 14" />\r
-- <gd name="g16" fmla="*/ g13 2 7" />\r
-- <gd name="g19" fmla="*/ g13 3 7" />\r
-- <gd name="g20" fmla="*/ g13 4 7" />\r
-- <gd name="g21" fmla="*/ g13 17 28" />\r
-- <gd name="g23" fmla="*/ g13 21 28" />\r
-- <gd name="g24" fmla="*/ g13 11 14" />\r
-- <gd name="g27" fmla="+- g9 g16 0" />\r
-- <gd name="g29" fmla="+- g9 g21 0" />\r
-- <gd name="g30" fmla="+- g9 g23 0" />\r
-- <gd name="g31" fmla="+- g9 g24 0" />\r
-- <gd name="g33" fmla="+- g11 g15 0" />\r
-- <gd name="g36" fmla="+- g11 g19 0" />\r
-- <gd name="g37" fmla="+- g11 g20 0" />\r
-- <gd name="g41" fmla="*/ g13 1 14" />\r
-- <gd name="g42" fmla="*/ g13 3 28" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g33" y="g27" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="g16" hR="g16" stAng="cd2" swAng="cd2" />\r
-- <arcTo wR="g14" hR="g15" stAng="0" swAng="cd4" />\r
-- <arcTo wR="g41" hR="g42" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="g37" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g36" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g36" y="g29" />\r
-- </lnTo>\r
-- <arcTo wR="g14" hR="g15" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="g41" hR="g42" stAng="cd4" swAng="-5400000" />\r
-- <arcTo wR="g14" hR="g14" stAng="0" swAng="-10800000" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="g31" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="g42" hR="g42" stAng="3cd4" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g33" y="g27" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="g16" hR="g16" stAng="cd2" swAng="cd2" />\r
-- <arcTo wR="g14" hR="g15" stAng="0" swAng="cd4" />\r
-- <arcTo wR="g41" hR="g42" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="g37" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g36" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g36" y="g29" />\r
-- </lnTo>\r
-- <arcTo wR="g14" hR="g15" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="g41" hR="g42" stAng="cd4" swAng="-5400000" />\r
-- <arcTo wR="g14" hR="g14" stAng="0" swAng="-10800000" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="g31" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="g42" hR="g42" stAng="3cd4" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g33" y="g27" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="g16" hR="g16" stAng="cd2" swAng="cd2" />\r
-- <arcTo wR="g14" hR="g15" stAng="0" swAng="cd4" />\r
-- <arcTo wR="g41" hR="g42" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="g37" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g36" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g36" y="g29" />\r
-- </lnTo>\r
-- <arcTo wR="g14" hR="g15" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="g41" hR="g42" stAng="cd4" swAng="-5400000" />\r
-- <arcTo wR="g14" hR="g14" stAng="0" swAng="-10800000" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="g31" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="g42" hR="g42" stAng="3cd4" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonHelp>\r
-- <actionButtonHome>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g10" fmla="+- vc dx2 0" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g12" fmla="+- hc dx2 0" />\r
-- <gd name="g13" fmla="*/ ss 3 4" />\r
-- <gd name="g14" fmla="*/ g13 1 16" />\r
-- <gd name="g15" fmla="*/ g13 1 8" />\r
-- <gd name="g16" fmla="*/ g13 3 16" />\r
-- <gd name="g17" fmla="*/ g13 5 16" />\r
-- <gd name="g18" fmla="*/ g13 7 16" />\r
-- <gd name="g19" fmla="*/ g13 9 16" />\r
-- <gd name="g20" fmla="*/ g13 11 16" />\r
-- <gd name="g21" fmla="*/ g13 3 4" />\r
-- <gd name="g22" fmla="*/ g13 13 16" />\r
-- <gd name="g23" fmla="*/ g13 7 8" />\r
-- <gd name="g24" fmla="+- g9 g14 0" />\r
-- <gd name="g25" fmla="+- g9 g16 0" />\r
-- <gd name="g26" fmla="+- g9 g17 0" />\r
-- <gd name="g27" fmla="+- g9 g21 0" />\r
-- <gd name="g28" fmla="+- g11 g15 0" />\r
-- <gd name="g29" fmla="+- g11 g18 0" />\r
-- <gd name="g30" fmla="+- g11 g19 0" />\r
-- <gd name="g31" fmla="+- g11 g20 0" />\r
-- <gd name="g32" fmla="+- g11 g22 0" />\r
-- <gd name="g33" fmla="+- g11 g23 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="g9" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g11" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g28" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g28" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g26" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g24" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g24" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g25" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darkenLess" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="g32" y="g26" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g24" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g24" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g25" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g28" y="vc" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g28" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g29" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g29" y="g27" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g30" y="g27" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g30" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="hc" y="g9" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g29" y="g27" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g30" y="g27" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g30" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g29" y="g10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="hc" y="g9" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g25" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g24" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g24" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g26" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g28" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g28" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g31" y="g25" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g26" />\r
-- </lnTo>\r
--\r
-- <moveTo>\r
-- <pt x="g33" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g28" y="vc" />\r
-- </lnTo>\r
--\r
-- <moveTo>\r
-- <pt x="g29" y="g10" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g29" y="g27" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g30" y="g27" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g30" y="g10" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonHome>\r
-- <actionButtonInformation>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g13" fmla="*/ ss 3 4" />\r
-- <gd name="g14" fmla="*/ g13 1 32" />\r
-- <gd name="g17" fmla="*/ g13 5 16" />\r
-- <gd name="g18" fmla="*/ g13 3 8" />\r
-- <gd name="g19" fmla="*/ g13 13 32" />\r
-- <gd name="g20" fmla="*/ g13 19 32" />\r
-- <gd name="g22" fmla="*/ g13 11 16" />\r
-- <gd name="g23" fmla="*/ g13 13 16" />\r
-- <gd name="g24" fmla="*/ g13 7 8" />\r
-- <gd name="g25" fmla="+- g9 g14 0" />\r
-- <gd name="g28" fmla="+- g9 g17 0" />\r
-- <gd name="g29" fmla="+- g9 g18 0" />\r
-- <gd name="g30" fmla="+- g9 g23 0" />\r
-- <gd name="g31" fmla="+- g9 g24 0" />\r
-- <gd name="g32" fmla="+- g11 g17 0" />\r
-- <gd name="g34" fmla="+- g11 g19 0" />\r
-- <gd name="g35" fmla="+- g11 g20 0" />\r
-- <gd name="g37" fmla="+- g11 g22 0" />\r
-- <gd name="g38" fmla="*/ g13 3 32" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="g9" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="dx2" hR="dx2" stAng="3cd4" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="hc" y="g9" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="dx2" hR="dx2" stAng="3cd4" swAng="21600000" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="g25" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="g38" hR="g38" stAng="3cd4" swAng="21600000" />\r
-- <moveTo>\r
-- <pt x="g32" y="g28" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g32" y="g29" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g34" y="g29" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g34" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g31" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g37" y="g31" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g37" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g28" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="lighten" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="hc" y="g25" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="g38" hR="g38" stAng="3cd4" swAng="21600000" />\r
-- <moveTo>\r
-- <pt x="g32" y="g28" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g35" y="g28" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g37" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g37" y="g31" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g31" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g34" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g34" y="g29" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g29" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="hc" y="g9" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="dx2" hR="dx2" stAng="3cd4" swAng="21600000" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="g25" />\r
-- </moveTo>\r
--\r
-- <arcTo wR="g38" hR="g38" stAng="3cd4" swAng="21600000" />\r
-- <moveTo>\r
-- <pt x="g32" y="g28" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g35" y="g28" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g37" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g37" y="g31" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g31" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g34" y="g30" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g34" y="g29" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g29" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonInformation>\r
-- <actionButtonMovie>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g10" fmla="+- vc dx2 0" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g12" fmla="+- hc dx2 0" />\r
-- <gd name="g13" fmla="*/ ss 3 4" />\r
-- <gd name="g14" fmla="*/ g13 1455 21600" />\r
-- <gd name="g15" fmla="*/ g13 1905 21600" />\r
-- <gd name="g16" fmla="*/ g13 2325 21600" />\r
-- <gd name="g17" fmla="*/ g13 16155 21600" />\r
-- <gd name="g18" fmla="*/ g13 17010 21600" />\r
-- <gd name="g19" fmla="*/ g13 19335 21600" />\r
-- <gd name="g20" fmla="*/ g13 19725 21600" />\r
-- <gd name="g21" fmla="*/ g13 20595 21600" />\r
-- <gd name="g22" fmla="*/ g13 5280 21600" />\r
-- <gd name="g23" fmla="*/ g13 5730 21600" />\r
-- <gd name="g24" fmla="*/ g13 6630 21600" />\r
-- <gd name="g25" fmla="*/ g13 7492 21600" />\r
-- <gd name="g26" fmla="*/ g13 9067 21600" />\r
-- <gd name="g27" fmla="*/ g13 9555 21600" />\r
-- <gd name="g28" fmla="*/ g13 13342 21600" />\r
-- <gd name="g29" fmla="*/ g13 14580 21600" />\r
-- <gd name="g30" fmla="*/ g13 15592 21600" />\r
-- <gd name="g31" fmla="+- g11 g14 0" />\r
-- <gd name="g32" fmla="+- g11 g15 0" />\r
-- <gd name="g33" fmla="+- g11 g16 0" />\r
-- <gd name="g34" fmla="+- g11 g17 0" />\r
-- <gd name="g35" fmla="+- g11 g18 0" />\r
-- <gd name="g36" fmla="+- g11 g19 0" />\r
-- <gd name="g37" fmla="+- g11 g20 0" />\r
-- <gd name="g38" fmla="+- g11 g21 0" />\r
-- <gd name="g39" fmla="+- g9 g22 0" />\r
-- <gd name="g40" fmla="+- g9 g23 0" />\r
-- <gd name="g41" fmla="+- g9 g24 0" />\r
-- <gd name="g42" fmla="+- g9 g25 0" />\r
-- <gd name="g43" fmla="+- g9 g26 0" />\r
-- <gd name="g44" fmla="+- g9 g27 0" />\r
-- <gd name="g45" fmla="+- g9 g28 0" />\r
-- <gd name="g46" fmla="+- g9 g29 0" />\r
-- <gd name="g47" fmla="+- g9 g30 0" />\r
-- <gd name="g48" fmla="+- g9 g31 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g11" y="g39" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="g44" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g44" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g43" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="g43" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="g47" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g47" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g45" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g36" y="g45" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g38" y="g46" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g46" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g41" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g38" y="g41" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g37" y="g42" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g42" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g41" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g34" y="g40" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g40" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g39" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g11" y="g39" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="g44" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g44" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g43" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="g43" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="g47" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g47" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g45" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g36" y="g45" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g38" y="g46" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g46" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g41" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g38" y="g41" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g37" y="g42" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g42" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g41" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g34" y="g40" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g40" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g39" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g11" y="g39" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g31" y="g39" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g40" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g34" y="g40" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g41" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g42" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g37" y="g42" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g38" y="g41" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g41" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g46" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g38" y="g46" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g36" y="g45" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g45" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g35" y="g47" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="g47" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g33" y="g43" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g32" y="g43" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g31" y="g44" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g44" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonMovie>\r
-- <actionButtonReturn>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g10" fmla="+- vc dx2 0" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g12" fmla="+- hc dx2 0" />\r
-- <gd name="g13" fmla="*/ ss 3 4" />\r
-- <gd name="g14" fmla="*/ g13 7 8" />\r
-- <gd name="g15" fmla="*/ g13 3 4" />\r
-- <gd name="g16" fmla="*/ g13 5 8" />\r
-- <gd name="g17" fmla="*/ g13 3 8" />\r
-- <gd name="g18" fmla="*/ g13 1 4" />\r
-- <gd name="g19" fmla="+- g9 g15 0" />\r
-- <gd name="g20" fmla="+- g9 g16 0" />\r
-- <gd name="g21" fmla="+- g9 g18 0" />\r
-- <gd name="g22" fmla="+- g11 g14 0" />\r
-- <gd name="g23" fmla="+- g11 g15 0" />\r
-- <gd name="g24" fmla="+- g11 g16 0" />\r
-- <gd name="g25" fmla="+- g11 g17 0" />\r
-- <gd name="g26" fmla="+- g11 g18 0" />\r
-- <gd name="g27" fmla="*/ g13 1 8" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g12" y="g21" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g23" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g24" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g24" y="g20" />\r
-- </lnTo>\r
-- <arcTo wR="g27" hR="g27" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="g25" y="g19" />\r
-- </lnTo>\r
-- <arcTo wR="g27" hR="g27" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="g26" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g20" />\r
-- </lnTo>\r
-- <arcTo wR="g17" hR="g17" stAng="cd2" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="hc" y="g10" />\r
-- </lnTo>\r
-- <arcTo wR="g17" hR="g17" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="g22" y="g21" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g12" y="g21" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g23" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g24" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g24" y="g20" />\r
-- </lnTo>\r
-- <arcTo wR="g27" hR="g27" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="g25" y="g19" />\r
-- </lnTo>\r
-- <arcTo wR="g27" hR="g27" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="g26" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g20" />\r
-- </lnTo>\r
-- <arcTo wR="g17" hR="g17" stAng="cd2" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="hc" y="g10" />\r
-- </lnTo>\r
-- <arcTo wR="g17" hR="g17" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="g22" y="g21" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g12" y="g21" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g22" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g22" y="g20" />\r
-- </lnTo>\r
-- <arcTo wR="g17" hR="g17" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="g25" y="g10" />\r
-- </lnTo>\r
-- <arcTo wR="g17" hR="g17" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="g11" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g26" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g26" y="g20" />\r
-- </lnTo>\r
-- <arcTo wR="g27" hR="g27" stAng="cd2" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="hc" y="g19" />\r
-- </lnTo>\r
-- <arcTo wR="g27" hR="g27" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="g24" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g23" y="g9" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonReturn>\r
-- <actionButtonSound>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx2" fmla="*/ ss 3 8" />\r
-- <gd name="g9" fmla="+- vc 0 dx2" />\r
-- <gd name="g10" fmla="+- vc dx2 0" />\r
-- <gd name="g11" fmla="+- hc 0 dx2" />\r
-- <gd name="g12" fmla="+- hc dx2 0" />\r
-- <gd name="g13" fmla="*/ ss 3 4" />\r
-- <gd name="g14" fmla="*/ g13 1 8" />\r
-- <gd name="g15" fmla="*/ g13 5 16" />\r
-- <gd name="g16" fmla="*/ g13 5 8" />\r
-- <gd name="g17" fmla="*/ g13 11 16" />\r
-- <gd name="g18" fmla="*/ g13 3 4" />\r
-- <gd name="g19" fmla="*/ g13 7 8" />\r
-- <gd name="g20" fmla="+- g9 g14 0" />\r
-- <gd name="g21" fmla="+- g9 g15 0" />\r
-- <gd name="g22" fmla="+- g9 g17 0" />\r
-- <gd name="g23" fmla="+- g9 g19 0" />\r
-- <gd name="g24" fmla="+- g11 g15 0" />\r
-- <gd name="g25" fmla="+- g11 g16 0" />\r
-- <gd name="g26" fmla="+- g11 g18 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g11" y="g21" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="g22" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g24" y="g22" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g25" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g25" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g24" y="g21" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g11" y="g21" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g11" y="g22" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g24" y="g22" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g25" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g25" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g24" y="g21" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="g11" y="g21" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="g24" y="g21" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g25" y="g9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g25" y="g10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g24" y="g22" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="g11" y="g22" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="g26" y="g21" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g20" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="g26" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g12" y="vc" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="g26" y="g22" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="g12" y="g23" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
--\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </actionButtonSound>\r
-- <arc>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 16200000" />\r
-- <gd name="adj2" fmla="val 0" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="stAng" fmla="pin 0 adj1 21599999" />\r
-- <gd name="enAng" fmla="pin 0 adj2 21599999" />\r
-- <gd name="sw11" fmla="+- enAng 0 stAng" />\r
-- <gd name="sw12" fmla="+- sw11 21600000 0" />\r
-- <gd name="swAng" fmla="?: sw11 sw11 sw12" />\r
-- <gd name="wt1" fmla="sin wd2 stAng" />\r
-- <gd name="ht1" fmla="cos hd2 stAng" />\r
-- <gd name="dx1" fmla="cat2 wd2 ht1 wt1" />\r
-- <gd name="dy1" fmla="sat2 hd2 ht1 wt1" />\r
-- <gd name="wt2" fmla="sin wd2 enAng" />\r
-- <gd name="ht2" fmla="cos hd2 enAng" />\r
-- <gd name="dx2" fmla="cat2 wd2 ht2 wt2" />\r
-- <gd name="dy2" fmla="sat2 hd2 ht2 wt2" />\r
-- <gd name="x1" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- vc dy1 0" />\r
-- <gd name="x2" fmla="+- hc dx2 0" />\r
-- <gd name="y2" fmla="+- vc dy2 0" />\r
-- <gd name="sw0" fmla="+- 21600000 0 stAng" />\r
-- <gd name="da1" fmla="+- swAng 0 sw0" />\r
-- <gd name="g1" fmla="max x1 x2" />\r
-- <gd name="ir" fmla="?: da1 r g1" />\r
-- <gd name="sw1" fmla="+- cd4 0 stAng" />\r
-- <gd name="sw2" fmla="+- 27000000 0 stAng" />\r
-- <gd name="sw3" fmla="?: sw1 sw1 sw2" />\r
-- <gd name="da2" fmla="+- swAng 0 sw3" />\r
-- <gd name="g5" fmla="max y1 y2" />\r
-- <gd name="ib" fmla="?: da2 b g5" />\r
-- <gd name="sw4" fmla="+- cd2 0 stAng" />\r
-- <gd name="sw5" fmla="+- 32400000 0 stAng" />\r
-- <gd name="sw6" fmla="?: sw4 sw4 sw5" />\r
-- <gd name="da3" fmla="+- swAng 0 sw6" />\r
-- <gd name="g9" fmla="min x1 x2" />\r
-- <gd name="il" fmla="?: da3 l g9" />\r
-- <gd name="sw7" fmla="+- 3cd4 0 stAng" />\r
-- <gd name="sw8" fmla="+- 37800000 0 stAng" />\r
-- <gd name="sw9" fmla="?: sw7 sw7 sw8" />\r
-- <gd name="da4" fmla="+- swAng 0 sw9" />\r
-- <gd name="g13" fmla="min y1 y2" />\r
-- <gd name="it" fmla="?: da4 t g13" />\r
-- <gd name="cang1" fmla="+- stAng 0 cd4" />\r
-- <gd name="cang2" fmla="+- enAng cd4 0" />\r
-- <gd name="cang3" fmla="+/ cang1 cang2 2" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahPolar gdRefAng="adj1" minAng="0" maxAng="21599999">\r
-- <pos x="x1" y="y1" />\r
-- </ahPolar>\r
-- <ahPolar gdRefAng="adj2" minAng="0" maxAng="21599999">\r
-- <pos x="x2" y="y2" />\r
-- </ahPolar>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cang1">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cang3">\r
-- <pos x="hc" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cang2">\r
-- <pos x="x2" y="y2" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="hc" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
-- </path>\r
-- </pathLst>\r
-- </arc>\r
-- <bentArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- <gd name="adj4" fmla="val 43750" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="a3" fmla="pin 0 adj3 50000" />\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="aw2" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="th2" fmla="*/ th 1 2" />\r
-- <gd name="dh2" fmla="+- aw2 0 th2" />\r
--\r
-- <gd name="ah" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="bw" fmla="+- r 0 ah" />\r
--\r
-- <gd name="bh" fmla="+- b 0 dh2" />\r
--\r
-- <gd name="bs" fmla="min bw bh" />\r
--\r
-- <gd name="maxAdj4" fmla="*/ 100000 bs ss" />\r
-- <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
--\r
-- <gd name="bd" fmla="*/ ss a4 100000" />\r
--\r
--\r
-- <gd name="bd3" fmla="+- bd 0 th" />\r
-- <gd name="bd2" fmla="max bd3 0" />\r
-- <gd name="x3" fmla="+- th bd2 0" />\r
-- <gd name="x4" fmla="+- r 0 ah" />\r
--\r
--\r
-- <gd name="y3" fmla="+- dh2 th 0" />\r
-- <gd name="y4" fmla="+- y3 dh2 0" />\r
-- <gd name="y5" fmla="+- dh2 bd 0" />\r
-- <gd name="y6" fmla="+- y3 bd2 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
-- <pos x="th" y="b" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="50000">\r
-- <pos x="r" y="y4" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj3" minX="0" maxX="50000">\r
-- <pos x="x4" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
-- <pos x="bd" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x4" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x4" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="th2" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="aw2" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="l" y="y5" />\r
-- </lnTo>\r
-- <arcTo wR="bd" hR="bd" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x4" y="dh2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="aw2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <arcTo wR="bd2" hR="bd2" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="th" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </bentArrow>\r
-- <bentConnector2>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
-- </bentConnector2>\r
-- <bentConnector3>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x1" fmla="*/ w adj1 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
-- <pos x="x1" y="vc" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
-- </bentConnector3>\r
-- <bentConnector4>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x1" fmla="*/ w adj1 100000" />\r
-- <gd name="x2" fmla="+/ x1 r 2" />\r
-- <gd name="y2" fmla="*/ h adj2 100000" />\r
-- <gd name="y1" fmla="+/ t y2 2" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
-- </bentConnector4>\r
-- <bentConnector5>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- <gd name="adj3" fmla="val 50000" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x1" fmla="*/ w adj1 100000" />\r
--\r
-- <gd name="x3" fmla="*/ w adj3 100000" />\r
--\r
-- <gd name="x2" fmla="+/ x1 x3 2" />\r
--\r
-- <gd name="y2" fmla="*/ h adj2 100000" />\r
--\r
-- <gd name="y1" fmla="+/ t y2 2" />\r
--\r
-- <gd name="y3" fmla="+/ b y2 2" />\r
--\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj3" minX="-2147483647" maxX="2147483647">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </bentConnector5>\r
-- <bentUpArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 50000" />\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="a3" fmla="pin 0 adj3 50000" />\r
-- <gd name="y1" fmla="*/ ss a3 100000" />\r
-- <gd name="dx1" fmla="*/ ss a2 50000" />\r
--\r
-- <gd name="x1" fmla="+- r 0 dx1" />\r
-- <gd name="dx3" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="x3" fmla="+- r 0 dx3" />\r
-- <gd name="dx2" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="x2" fmla="+- x3 0 dx2" />\r
-- <gd name="x4" fmla="+- x3 dx2 0" />\r
-- <gd name="dy2" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="y2" fmla="+- b 0 dy2" />\r
-- <gd name="x0" fmla="*/ x4 1 2" />\r
-- <gd name="y3" fmla="+/ y2 b 2" />\r
-- <gd name="y15" fmla="+/ y1 b 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="50000">\r
-- <pos x="l" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="50000">\r
-- <pos x="x2" y="y1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x0" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y15" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="y2" r="x4" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </bentUpArrow>\r
-- <bevel>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 12500" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="x1" fmla="*/ ss a 100000" />\r
--\r
--\r
--\r
-- <gd name="x2" fmla="+- r 0 x1" />\r
--\r
-- <gd name="y2" fmla="+- b 0 x1" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x2" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="x1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="x1" r="x2" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="x1" y="x1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="lightenLess" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="x1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darkenLess" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="lighten" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darken" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="r" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="x1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x1" y="x1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="x1" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="r" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="x1" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="r" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </bevel>\r
-- <blockArc>\r
--\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 10800000" />\r
--\r
-- <gd name="adj2" fmla="val 0" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="stAng" fmla="pin 0 adj1 21599999" />\r
-- <gd name="istAng" fmla="pin 0 adj2 21599999" />\r
-- <gd name="a3" fmla="pin 0 adj3 50000" />\r
-- <gd name="sw11" fmla="+- istAng 0 stAng" />\r
--\r
-- <gd name="sw12" fmla="+- sw11 21600000 0" />\r
--\r
-- <gd name="swAng" fmla="?: sw11 sw11 sw12" />\r
--\r
-- <gd name="iswAng" fmla="+- 0 0 swAng" />\r
--\r
--\r
-- <gd name="wt1" fmla="sin wd2 stAng" />\r
-- <gd name="ht1" fmla="cos hd2 stAng" />\r
-- <gd name="wt3" fmla="sin wd2 istAng" />\r
-- <gd name="ht3" fmla="cos hd2 istAng" />\r
-- <gd name="dx1" fmla="cat2 wd2 ht1 wt1" />\r
-- <gd name="dy1" fmla="sat2 hd2 ht1 wt1" />\r
-- <gd name="dx3" fmla="cat2 wd2 ht3 wt3" />\r
-- <gd name="dy3" fmla="sat2 hd2 ht3 wt3" />\r
-- <gd name="x1" fmla="+- hc dx1 0" />\r
--\r
-- <gd name="y1" fmla="+- vc dy1 0" />\r
--\r
-- <gd name="x3" fmla="+- hc dx3 0" />\r
--\r
-- <gd name="y3" fmla="+- vc dy3 0" />\r
--\r
--\r
-- <gd name="dr" fmla="*/ ss a3 100000" />\r
-- <gd name="iwd2" fmla="+- wd2 0 dr" />\r
-- <gd name="ihd2" fmla="+- hd2 0 dr" />\r
-- <gd name="wt2" fmla="sin iwd2 istAng" />\r
-- <gd name="ht2" fmla="cos ihd2 istAng" />\r
-- <gd name="wt4" fmla="sin iwd2 stAng" />\r
-- <gd name="ht4" fmla="cos ihd2 stAng" />\r
-- <gd name="dx2" fmla="cat2 iwd2 ht2 wt2" />\r
-- <gd name="dy2" fmla="sat2 ihd2 ht2 wt2" />\r
-- <gd name="dx4" fmla="cat2 iwd2 ht4 wt4" />\r
-- <gd name="dy4" fmla="sat2 ihd2 ht4 wt4" />\r
-- <gd name="x2" fmla="+- hc dx2 0" />\r
--\r
-- <gd name="y2" fmla="+- vc dy2 0" />\r
--\r
-- <gd name="x4" fmla="+- hc dx4 0" />\r
--\r
-- <gd name="y4" fmla="+- vc dy4 0" />\r
--\r
--\r
-- <gd name="sw0" fmla="+- 21600000 0 stAng" />\r
-- <gd name="da1" fmla="+- swAng 0 sw0" />\r
-- <gd name="g1" fmla="max x1 x2" />\r
-- <gd name="g2" fmla="max x3 x4" />\r
-- <gd name="g3" fmla="max g1 g2" />\r
-- <gd name="ir" fmla="?: da1 r g3" />\r
--\r
-- <gd name="sw1" fmla="+- cd4 0 stAng" />\r
-- <gd name="sw2" fmla="+- 27000000 0 stAng" />\r
-- <gd name="sw3" fmla="?: sw1 sw1 sw2" />\r
-- <gd name="da2" fmla="+- swAng 0 sw3" />\r
-- <gd name="g5" fmla="max y1 y2" />\r
-- <gd name="g6" fmla="max y3 y4" />\r
-- <gd name="g7" fmla="max g5 g6" />\r
-- <gd name="ib" fmla="?: da2 b g7" />\r
--\r
-- <gd name="sw4" fmla="+- cd2 0 stAng" />\r
-- <gd name="sw5" fmla="+- 32400000 0 stAng" />\r
-- <gd name="sw6" fmla="?: sw4 sw4 sw5" />\r
-- <gd name="da3" fmla="+- swAng 0 sw6" />\r
-- <gd name="g9" fmla="min x1 x2" />\r
-- <gd name="g10" fmla="min x3 x4" />\r
-- <gd name="g11" fmla="min g9 g10" />\r
-- <gd name="il" fmla="?: da3 l g11" />\r
--\r
-- <gd name="sw7" fmla="+- 3cd4 0 stAng" />\r
-- <gd name="sw8" fmla="+- 37800000 0 stAng" />\r
-- <gd name="sw9" fmla="?: sw7 sw7 sw8" />\r
-- <gd name="da4" fmla="+- swAng 0 sw9" />\r
-- <gd name="g13" fmla="min y1 y2" />\r
-- <gd name="g14" fmla="min y3 y4" />\r
-- <gd name="g15" fmla="min g13 g14" />\r
-- <gd name="it" fmla="?: da4 t g15" />\r
--\r
-- <gd name="x5" fmla="+/ x1 x4 2" />\r
--\r
-- <gd name="y5" fmla="+/ y1 y4 2" />\r
--\r
-- <gd name="x6" fmla="+/ x3 x2 2" />\r
--\r
-- <gd name="y6" fmla="+/ y3 y2 2" />\r
--\r
-- <gd name="cang1" fmla="+- stAng 0 cd4" />\r
-- <gd name="cang2" fmla="+- istAng cd4 0" />\r
-- <gd name="cang3" fmla="+/ cang1 cang2 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahPolar gdRefAng="adj1" minAng="0" maxAng="21599999">\r
-- <pos x="x1" y="y1" />\r
-- </ahPolar>\r
-- <ahPolar gdRefR="adj3" minR="0" maxR="50000" gdRefAng="adj2" minAng="0" maxAng="21599999">\r
-- <pos x="x2" y="y2" />\r
-- </ahPolar>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cang1">\r
-- <pos x="x5" y="y5" />\r
-- </cxn>\r
-- <cxn ang="cang2">\r
-- <pos x="x6" y="y6" />\r
-- </cxn>\r
-- <cxn ang="cang3">\r
-- <pos x="hc" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="iwd2" hR="ihd2" stAng="istAng" swAng="iswAng" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </blockArc>\r
-- <borderCallout1>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 112500" />\r
--\r
-- <gd name="adj4" fmla="val -38333" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </borderCallout1>\r
-- <borderCallout2>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 18750" />\r
--\r
-- <gd name="adj4" fmla="val -16667" />\r
--\r
-- <gd name="adj5" fmla="val 112500" />\r
--\r
-- <gd name="adj6" fmla="val -46667" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- <gd name="y3" fmla="*/ h adj5 100000" />\r
-- <gd name="x3" fmla="*/ w adj6 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </borderCallout2>\r
-- <borderCallout3>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 18750" />\r
--\r
-- <gd name="adj4" fmla="val -16667" />\r
--\r
-- <gd name="adj5" fmla="val 100000" />\r
--\r
-- <gd name="adj6" fmla="val -16667" />\r
--\r
-- <gd name="adj7" fmla="val 112963" />\r
--\r
-- <gd name="adj8" fmla="val -8333" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- <gd name="y3" fmla="*/ h adj5 100000" />\r
-- <gd name="x3" fmla="*/ w adj6 100000" />\r
-- <gd name="y4" fmla="*/ h adj7 100000" />\r
-- <gd name="x4" fmla="*/ w adj8 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj8" minX="-2147483647" maxX="2147483647" gdRefY="adj7" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x4" y="y4" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </borderCallout3>\r
-- <bracePair>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 8333" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 25000" />\r
-- <gd name="x1" fmla="*/ ss a 100000" />\r
-- <gd name="x2" fmla="*/ ss a 50000" />\r
-- <gd name="x3" fmla="+- r 0 x2" />\r
-- <gd name="x4" fmla="+- r 0 x1" />\r
--\r
-- <gd name="y2" fmla="+- vc 0 x1" />\r
-- <gd name="y3" fmla="+- vc x1 0" />\r
-- <gd name="y4" fmla="+- b 0 x1" />\r
-- <gd name="it" fmla="*/ x1 29289 100000" />\r
--\r
-- <gd name="il" fmla="+- x1 it 0" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 it" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="25000">\r
-- <pos x="l" y="x1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x2" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="0" swAng="-5400000" />\r
-- <arcTo wR="x1" hR="x1" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x1" y="x1" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x4" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="-5400000" />\r
-- <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="x2" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="0" swAng="-5400000" />\r
-- <arcTo wR="x1" hR="x1" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x1" y="x1" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
-- <moveTo>\r
-- <pt x="x3" y="t" />\r
-- </moveTo>\r
-- <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x4" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="-5400000" />\r
-- <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </bracePair>\r
-- <bracketPair>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 16667" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="x1" fmla="*/ ss a 100000" />\r
-- <gd name="x2" fmla="+- r 0 x1" />\r
--\r
-- <gd name="y2" fmla="+- b 0 x1" />\r
-- <gd name="il" fmla="*/ x1 29289 100000" />\r
--\r
--\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 il" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="50000">\r
-- <pos x="l" y="x1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="x1" />\r
-- </moveTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="x1" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="l" y="x1" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
-- <moveTo>\r
-- <pt x="x2" y="t" />\r
-- </moveTo>\r
-- <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </bracketPair>\r
-- <callout1>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 112500" />\r
--\r
-- <gd name="adj4" fmla="val -38333" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </callout1>\r
-- <callout2>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 18750" />\r
--\r
-- <gd name="adj4" fmla="val -16667" />\r
--\r
-- <gd name="adj5" fmla="val 112500" />\r
--\r
-- <gd name="adj6" fmla="val -46667" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- <gd name="y3" fmla="*/ h adj5 100000" />\r
-- <gd name="x3" fmla="*/ w adj6 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </callout2>\r
-- <callout3>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="adj1" fmla="val 18750" />\r
--\r
-- <gd name="adj2" fmla="val -8333" />\r
--\r
-- <gd name="adj3" fmla="val 18750" />\r
--\r
-- <gd name="adj4" fmla="val -16667" />\r
--\r
-- <gd name="adj5" fmla="val 100000" />\r
--\r
-- <gd name="adj6" fmla="val -16667" />\r
--\r
-- <gd name="adj7" fmla="val 112963" />\r
--\r
-- <gd name="adj8" fmla="val -8333" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h adj1 100000" />\r
-- <gd name="x1" fmla="*/ w adj2 100000" />\r
-- <gd name="y2" fmla="*/ h adj3 100000" />\r
-- <gd name="x2" fmla="*/ w adj4 100000" />\r
-- <gd name="y3" fmla="*/ h adj5 100000" />\r
-- <gd name="x3" fmla="*/ w adj6 100000" />\r
-- <gd name="y4" fmla="*/ h adj7 100000" />\r
-- <gd name="x4" fmla="*/ w adj8 100000" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj2" minX="-2147483647" maxX="2147483647" gdRefY="adj1" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="-2147483647" maxX="2147483647" gdRefY="adj3" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x2" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj6" minX="-2147483647" maxX="2147483647" gdRefY="adj5" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj8" minX="-2147483647" maxX="2147483647" gdRefY="adj7" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x4" y="y4" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </callout3>\r
-- <can>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj" fmla="*/ 50000 h ss" />\r
-- <gd name="a" fmla="pin 0 adj maxAdj" />\r
-- <gd name="y1" fmla="*/ ss a 200000" />\r
-- <gd name="y2" fmla="+- y1 y1 0" />\r
-- <gd name="y3" fmla="+- b 0 y1" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="maxAdj">\r
-- <pos x="hc" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="y2" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="y2" r="r" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="r" y="y3" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="lighten" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="cd2" />\r
-- <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="r" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd2" />\r
-- <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="r" y="y3" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="l" y="y1" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </can>\r
-- <chartPlus>\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="10" h="10" fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="5" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="5" y="10" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="0" y="5" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="10" y="5" />\r
-- </lnTo>\r
-- </path>\r
-- <path w="10" h="10" stroke="false">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="0" y="10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10" y="10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10" y="0" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </chartPlus>\r
-- <chartStar>\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="10" h="10" fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="10" y="10" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="0" y="10" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="10" y="0" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="5" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="5" y="10" />\r
-- </lnTo>\r
-- </path>\r
-- <path w="10" h="10" stroke="false">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="0" y="10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10" y="10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10" y="0" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </chartStar>\r
-- <chartX>\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="10" h="10" fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="10" y="10" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="0" y="10" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="10" y="0" />\r
-- </lnTo>\r
-- </path>\r
-- <path w="10" h="10" stroke="false">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="0" y="10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10" y="10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10" y="0" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </chartX>\r
-- <chevron>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj" fmla="*/ 100000 w ss" />\r
-- <gd name="a" fmla="pin 0 adj maxAdj" />\r
-- <gd name="x1" fmla="*/ ss a 100000" />\r
-- <gd name="x2" fmla="+- r 0 x1" />\r
-- <gd name="x3" fmla="*/ x2 1 2" />\r
-- <gd name="dx" fmla="+- x2 0 x1" />\r
-- <gd name="il" fmla="?: dx x1 l" />\r
-- <gd name="ir" fmla="?: dx x2 r" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="t" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </chevron>\r
-- <chord>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 2700000" />\r
--\r
-- <gd name="adj2" fmla="val 16200000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="stAng" fmla="pin 0 adj1 21599999" />\r
-- <gd name="enAng" fmla="pin 0 adj2 21599999" />\r
-- <gd name="sw1" fmla="+- enAng 0 stAng" />\r
--\r
-- <gd name="sw2" fmla="+- sw1 21600000 0" />\r
--\r
-- <gd name="swAng" fmla="?: sw1 sw1 sw2" />\r
--\r
-- <gd name="wt1" fmla="sin wd2 stAng" />\r
-- <gd name="ht1" fmla="cos hd2 stAng" />\r
-- <gd name="dx1" fmla="cat2 wd2 ht1 wt1" />\r
-- <gd name="dy1" fmla="sat2 hd2 ht1 wt1" />\r
-- <gd name="wt2" fmla="sin wd2 enAng" />\r
-- <gd name="ht2" fmla="cos hd2 enAng" />\r
-- <gd name="dx2" fmla="cat2 wd2 ht2 wt2" />\r
-- <gd name="dy2" fmla="sat2 hd2 ht2 wt2" />\r
-- <gd name="x1" fmla="+- hc dx1 0" />\r
--\r
-- <gd name="y1" fmla="+- vc dy1 0" />\r
--\r
-- <gd name="x2" fmla="+- hc dx2 0" />\r
--\r
-- <gd name="y2" fmla="+- vc dy2 0" />\r
--\r
-- <gd name="x3" fmla="+/ x1 x2 2" />\r
-- <gd name="y3" fmla="+/ y1 y2 2" />\r
-- <gd name="midAng0" fmla="*/ swAng 1 2" />\r
-- <gd name="midAng" fmla="+- stAng midAng0 cd2" />\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahPolar gdRefAng="adj1" minAng="0" maxAng="21599999">\r
-- <pos x="x1" y="y1" />\r
-- </ahPolar>\r
-- <ahPolar gdRefAng="adj2" minAng="0" maxAng="21599999">\r
-- <pos x="x2" y="y2" />\r
-- </ahPolar>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="stAng">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- <cxn ang="enAng">\r
-- <pos x="x2" y="y2" />\r
-- </cxn>\r
-- <cxn ang="midAng">\r
-- <pos x="x3" y="y3" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </chord>\r
-- <circularArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 12500" />\r
--\r
-- <gd name="adj2" fmla="val 1142319" />\r
--\r
-- <gd name="adj3" fmla="val 20457681" />\r
--\r
-- <gd name="adj4" fmla="val 10800000" />\r
--\r
-- <gd name="adj5" fmla="val 12500" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a5" fmla="pin 0 adj5 25000" />\r
--\r
-- <gd name="maxAdj1" fmla="*/ a5 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="enAng" fmla="pin 1 adj3 21599999" />\r
-- <gd name="stAng" fmla="pin 0 adj4 21599999" />\r
--\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="thh" fmla="*/ ss a5 100000" />\r
--\r
-- <gd name="th2" fmla="*/ th 1 2" />\r
--\r
--\r
-- <gd name="rw1" fmla="+- wd2 th2 thh" />\r
--\r
-- <gd name="rh1" fmla="+- hd2 th2 thh" />\r
--\r
-- <gd name="rw2" fmla="+- rw1 0 th" />\r
--\r
-- <gd name="rh2" fmla="+- rh1 0 th" />\r
--\r
-- <gd name="rw3" fmla="+- rw2 th2 0" />\r
--\r
-- <gd name="rh3" fmla="+- rh2 th2 0" />\r
--\r
--\r
-- <gd name="wtH" fmla="sin rw3 enAng" />\r
-- <gd name="htH" fmla="cos rh3 enAng" />\r
-- <gd name="dxH" fmla="cat2 rw3 htH wtH" />\r
-- <gd name="dyH" fmla="sat2 rh3 htH wtH" />\r
-- <gd name="xH" fmla="+- hc dxH 0" />\r
--\r
-- <gd name="yH" fmla="+- vc dyH 0" />\r
--\r
--\r
-- <gd name="rI" fmla="min rw2 rh2" />\r
--\r
-- <gd name="u1" fmla="*/ dxH dxH 1" />\r
-- <gd name="u2" fmla="*/ dyH dyH 1" />\r
-- <gd name="u3" fmla="*/ rI rI 1" />\r
-- <gd name="u4" fmla="+- u1 0 u3" />\r
-- <gd name="u5" fmla="+- u2 0 u3" />\r
-- <gd name="u6" fmla="*/ u4 u5 u1" />\r
-- <gd name="u7" fmla="*/ u6 1 u2" />\r
-- <gd name="u8" fmla="+- 1 0 u7" />\r
-- <gd name="u9" fmla="sqrt u8" />\r
-- <gd name="u10" fmla="*/ u4 1 dxH" />\r
-- <gd name="u11" fmla="*/ u10 1 dyH" />\r
-- <gd name="u12" fmla="+/ 1 u9 u11" />\r
-- <gd name="u13" fmla="at2 1 u12" />\r
-- <gd name="u14" fmla="+- u13 21600000 0" />\r
-- <gd name="u15" fmla="?: u13 u13 u14" />\r
-- <gd name="u16" fmla="+- u15 0 enAng" />\r
--\r
-- <gd name="u17" fmla="+- u16 21600000 0" />\r
-- <gd name="u18" fmla="?: u16 u16 u17" />\r
-- <gd name="u19" fmla="+- u18 0 cd2" />\r
-- <gd name="u20" fmla="+- u18 0 21600000" />\r
-- <gd name="u21" fmla="?: u19 u20 u18" />\r
-- <gd name="maxAng" fmla="abs u21" />\r
-- <gd name="aAng" fmla="pin 0 adj2 maxAng" />\r
--\r
-- <gd name="ptAng" fmla="+- enAng aAng 0" />\r
--\r
--\r
-- <gd name="wtA" fmla="sin rw3 ptAng" />\r
-- <gd name="htA" fmla="cos rh3 ptAng" />\r
-- <gd name="dxA" fmla="cat2 rw3 htA wtA" />\r
-- <gd name="dyA" fmla="sat2 rh3 htA wtA" />\r
-- <gd name="xA" fmla="+- hc dxA 0" />\r
--\r
-- <gd name="yA" fmla="+- vc dyA 0" />\r
--\r
--\r
-- <gd name="wtE" fmla="sin rw1 stAng" />\r
-- <gd name="htE" fmla="cos rh1 stAng" />\r
-- <gd name="dxE" fmla="cat2 rw1 htE wtE" />\r
-- <gd name="dyE" fmla="sat2 rh1 htE wtE" />\r
-- <gd name="xE" fmla="+- hc dxE 0" />\r
--\r
-- <gd name="yE" fmla="+- vc dyE 0" />\r
--\r
--\r
-- <gd name="dxG" fmla="cos thh ptAng" />\r
-- <gd name="dyG" fmla="sin thh ptAng" />\r
-- <gd name="xG" fmla="+- xH dxG 0" />\r
--\r
-- <gd name="yG" fmla="+- yH dyG 0" />\r
--\r
--\r
-- <gd name="dxB" fmla="cos thh ptAng" />\r
-- <gd name="dyB" fmla="sin thh ptAng" />\r
-- <gd name="xB" fmla="+- xH 0 dxB 0" />\r
--\r
-- <gd name="yB" fmla="+- yH 0 dyB 0" />\r
--\r
--\r
-- <gd name="sx1" fmla="+- xB 0 hc" />\r
--\r
-- <gd name="sy1" fmla="+- yB 0 vc" />\r
--\r
-- <gd name="sx2" fmla="+- xG 0 hc" />\r
--\r
-- <gd name="sy2" fmla="+- yG 0 vc" />\r
--\r
--\r
-- <gd name="rO" fmla="min rw1 rh1" />\r
--\r
-- <gd name="x1O" fmla="*/ sx1 rO rw1" />\r
--\r
-- <gd name="y1O" fmla="*/ sy1 rO rh1" />\r
--\r
-- <gd name="x2O" fmla="*/ sx2 rO rw1" />\r
--\r
-- <gd name="y2O" fmla="*/ sy2 rO rh1" />\r
--\r
--\r
-- <gd name="dxO" fmla="+- x2O 0 x1O" />\r
-- <gd name="dyO" fmla="+- y2O 0 y1O" />\r
-- <gd name="dO" fmla="mod dxO dyO 0" />\r
--\r
-- <gd name="q1" fmla="*/ x1O y2O 1" />\r
-- <gd name="q2" fmla="*/ x2O y1O 1" />\r
-- <gd name="DO" fmla="+- q1 0 q2" />\r
--\r
--\r
-- <gd name="q3" fmla="*/ rO rO 1" />\r
--\r
-- <gd name="q4" fmla="*/ dO dO 1" />\r
--\r
-- <gd name="q5" fmla="*/ q3 q4 1" />\r
--\r
-- <gd name="q6" fmla="*/ DO DO 1" />\r
--\r
-- <gd name="q7" fmla="+- q5 0 q6" />\r
--\r
-- <gd name="q8" fmla="max q7 0" />\r
--\r
-- <gd name="sdelO" fmla="sqrt q8" />\r
--\r
-- <gd name="ndyO" fmla="*/ dyO -1 1" />\r
-- <gd name="sdyO" fmla="?: ndyO -1 1" />\r
--\r
-- <gd name="q9" fmla="*/ sdyO dxO 1" />\r
--\r
-- <gd name="q10" fmla="*/ q9 sdelO 1" />\r
--\r
-- <gd name="q11" fmla="*/ DO dyO 1" />\r
--\r
-- <gd name="dxF1" fmla="+/ q11 q10 q4" />\r
--\r
-- <gd name="q12" fmla="+- q11 0 q10" />\r
-- <gd name="dxF2" fmla="*/ q12 1 q4" />\r
--\r
--\r
-- <gd name="adyO" fmla="abs dyO" />\r
-- <gd name="q13" fmla="*/ adyO sdelO 1" />\r
--\r
-- <gd name="q14" fmla="*/ DO dxO -1" />\r
--\r
-- <gd name="dyF1" fmla="+/ q14 q13 q4" />\r
--\r
-- <gd name="q15" fmla="+- q14 0 q13" />\r
-- <gd name="dyF2" fmla="*/ q15 1 q4" />\r
--\r
--\r
--\r
-- <gd name="q16" fmla="+- x2O 0 dxF1" />\r
-- <gd name="q17" fmla="+- x2O 0 dxF2" />\r
-- <gd name="q18" fmla="+- y2O 0 dyF1" />\r
-- <gd name="q19" fmla="+- y2O 0 dyF2" />\r
-- <gd name="q20" fmla="mod q16 q18 0" />\r
--\r
-- <gd name="q21" fmla="mod q17 q19 0" />\r
--\r
-- <gd name="q22" fmla="+- q21 0 q20" />\r
-- <gd name="dxF" fmla="?: q22 dxF1 dxF2" />\r
--\r
-- <gd name="dyF" fmla="?: q22 dyF1 dyF2" />\r
--\r
-- <gd name="sdxF" fmla="*/ dxF rw1 rO" />\r
--\r
-- <gd name="sdyF" fmla="*/ dyF rh1 rO" />\r
--\r
-- <gd name="xF" fmla="+- hc sdxF 0" />\r
--\r
-- <gd name="yF" fmla="+- vc sdyF 0" />\r
--\r
--\r
--\r
--\r
-- <gd name="x1I" fmla="*/ sx1 rI rw2" />\r
--\r
-- <gd name="y1I" fmla="*/ sy1 rI rh2" />\r
--\r
-- <gd name="x2I" fmla="*/ sx2 rI rw2" />\r
--\r
-- <gd name="y2I" fmla="*/ sy2 rI rh2" />\r
--\r
--\r
-- <gd name="dxI" fmla="+- x2I 0 x1I" />\r
-- <gd name="dyI" fmla="+- y2I 0 y1I" />\r
-- <gd name="dI" fmla="mod dxI dyI 0" />\r
-- <gd name="v1" fmla="*/ x1I y2I 1" />\r
-- <gd name="v2" fmla="*/ x2I y1I 1" />\r
-- <gd name="DI" fmla="+- v1 0 v2" />\r
--\r
-- <gd name="v3" fmla="*/ rI rI 1" />\r
-- <gd name="v4" fmla="*/ dI dI 1" />\r
-- <gd name="v5" fmla="*/ v3 v4 1" />\r
-- <gd name="v6" fmla="*/ DI DI 1" />\r
-- <gd name="v7" fmla="+- v5 0 v6" />\r
-- <gd name="v8" fmla="max v7 0" />\r
-- <gd name="sdelI" fmla="sqrt v8" />\r
-- <gd name="v9" fmla="*/ sdyO dxI 1" />\r
-- <gd name="v10" fmla="*/ v9 sdelI 1" />\r
-- <gd name="v11" fmla="*/ DI dyI 1" />\r
-- <gd name="dxC1" fmla="+/ v11 v10 v4" />\r
-- <gd name="v12" fmla="+- v11 0 v10" />\r
-- <gd name="dxC2" fmla="*/ v12 1 v4" />\r
--\r
-- <gd name="adyI" fmla="abs dyI" />\r
-- <gd name="v13" fmla="*/ adyI sdelI 1" />\r
-- <gd name="v14" fmla="*/ DI dxI -1" />\r
-- <gd name="dyC1" fmla="+/ v14 v13 v4" />\r
-- <gd name="v15" fmla="+- v14 0 v13" />\r
-- <gd name="dyC2" fmla="*/ v15 1 v4" />\r
--\r
-- <gd name="v16" fmla="+- x1I 0 dxC1" />\r
-- <gd name="v17" fmla="+- x1I 0 dxC2" />\r
-- <gd name="v18" fmla="+- y1I 0 dyC1" />\r
-- <gd name="v19" fmla="+- y1I 0 dyC2" />\r
-- <gd name="v20" fmla="mod v16 v18 0" />\r
-- <gd name="v21" fmla="mod v17 v19 0" />\r
-- <gd name="v22" fmla="+- v21 0 v20" />\r
-- <gd name="dxC" fmla="?: v22 dxC1 dxC2" />\r
-- <gd name="dyC" fmla="?: v22 dyC1 dyC2" />\r
-- <gd name="sdxC" fmla="*/ dxC rw2 rI" />\r
-- <gd name="sdyC" fmla="*/ dyC rh2 rI" />\r
-- <gd name="xC" fmla="+- hc sdxC 0" />\r
--\r
-- <gd name="yC" fmla="+- vc sdyC 0" />\r
--\r
--\r
-- <gd name="ist0" fmla="at2 sdxC sdyC" />\r
-- <gd name="ist1" fmla="+- ist0 21600000 0" />\r
-- <gd name="istAng" fmla="?: ist0 ist0 ist1" />\r
-- <gd name="isw1" fmla="+- stAng 0 istAng" />\r
-- <gd name="isw2" fmla="+- isw1 0 21600000" />\r
-- <gd name="iswAng" fmla="?: isw1 isw2 isw1" />\r
--\r
--\r
-- <gd name="p1" fmla="+- xF 0 xC" />\r
-- <gd name="p2" fmla="+- yF 0 yC" />\r
-- <gd name="p3" fmla="mod p1 p2 0" />\r
-- <gd name="p4" fmla="*/ p3 1 2" />\r
-- <gd name="p5" fmla="+- p4 0 thh" />\r
-- <gd name="xGp" fmla="?: p5 xF xG" />\r
-- <gd name="yGp" fmla="?: p5 yF yG" />\r
-- <gd name="xBp" fmla="?: p5 xC xB" />\r
-- <gd name="yBp" fmla="?: p5 yC yB" />\r
--\r
-- <gd name="en0" fmla="at2 sdxF sdyF" />\r
-- <gd name="en1" fmla="+- en0 21600000 0" />\r
-- <gd name="en2" fmla="?: en0 en0 en1" />\r
-- <gd name="sw0" fmla="+- en2 0 stAng" />\r
-- <gd name="sw1" fmla="+- sw0 21600000 0" />\r
-- <gd name="swAng" fmla="?: sw0 sw0 sw1" />\r
--\r
-- <gd name="wtI" fmla="sin rw3 stAng" />\r
-- <gd name="htI" fmla="cos rh3 stAng" />\r
-- <gd name="dxI" fmla="cat2 rw3 htI wtI" />\r
-- <gd name="dyI" fmla="sat2 rh3 htI wtI" />\r
-- <gd name="xI" fmla="+- hc dxI 0" />\r
--\r
-- <gd name="yI" fmla="+- vc dyI 0" />\r
--\r
--\r
-- <gd name="aI" fmla="+- stAng 0 cd4" />\r
-- <gd name="aA" fmla="+- ptAng cd4 0" />\r
-- <gd name="aB" fmla="+- ptAng cd2 0" />\r
--\r
-- <gd name="idx" fmla="cos rw1 2700000" />\r
-- <gd name="idy" fmla="sin rh1 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahPolar gdRefAng="adj2" minAng="0" maxAng="maxAng">\r
-- <pos x="xA" y="yA" />\r
-- </ahPolar>\r
-- <ahPolar gdRefAng="adj4" minAng="0" maxAng="21599999">\r
-- <pos x="xE" y="yE" />\r
-- </ahPolar>\r
-- <ahPolar gdRefR="adj1" minR="0" maxR="maxAdj1" gdRefAng="adj3" minAng="0" maxAng="21599999">\r
-- <pos x="xF" y="yF" />\r
-- </ahPolar>\r
-- <ahPolar gdRefR="adj5" minR="0" maxR="25000">\r
-- <pos x="xB" y="yB" />\r
-- </ahPolar>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="aI">\r
-- <pos x="xI" y="yI" />\r
-- </cxn>\r
-- <cxn ang="ptAng">\r
-- <pos x="xGp" y="yGp" />\r
-- </cxn>\r
-- <cxn ang="aA">\r
-- <pos x="xA" y="yA" />\r
-- </cxn>\r
-- <cxn ang="aB">\r
-- <pos x="xBp" y="yBp" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="xE" y="yE" />\r
-- </moveTo>\r
-- <arcTo wR="rw1" hR="rh1" stAng="stAng" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="xGp" y="yGp" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xA" y="yA" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xBp" y="yBp" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC" y="yC" />\r
-- </lnTo>\r
-- <arcTo wR="rw2" hR="rh2" stAng="istAng" swAng="iswAng" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </circularArrow>\r
-- <cloud>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="il" fmla="*/ w 2977 21600" />\r
-- <gd name="it" fmla="*/ h 3262 21600" />\r
-- <gd name="ir" fmla="*/ w 17087 21600" />\r
-- <gd name="ib" fmla="*/ h 17337 21600" />\r
-- <gd name="g27" fmla="*/ w 67 21600" />\r
-- <gd name="g28" fmla="*/ h 21577 21600" />\r
-- <gd name="g29" fmla="*/ w 21582 21600" />\r
-- <gd name="g30" fmla="*/ h 1235 21600" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="g29" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="g28" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="g27" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="g30" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="43200" h="43200">\r
-- <moveTo>\r
-- <pt x="3900" y="14370" />\r
-- </moveTo>\r
-- <arcTo wR="6753" hR="9190" stAng="-11429249" swAng="7426832" />\r
-- <arcTo wR="5333" hR="7267" stAng="-8646143" swAng="5396714" />\r
-- <arcTo wR="4365" hR="5945" stAng="-8748475" swAng="5983381" />\r
-- <arcTo wR="4857" hR="6595" stAng="-7859164" swAng="7034504" />\r
-- <arcTo wR="5333" hR="7273" stAng="-4722533" swAng="6541615" />\r
-- <arcTo wR="6775" hR="9220" stAng="-2776035" swAng="7816140" />\r
-- <arcTo wR="5785" hR="7867" stAng="37501" swAng="6842000" />\r
-- <arcTo wR="6752" hR="9215" stAng="1347096" swAng="6910353" />\r
-- <arcTo wR="7720" hR="10543" stAng="3974558" swAng="4542661" />\r
-- <arcTo wR="4360" hR="5918" stAng="-16496525" swAng="8804134" />\r
-- <arcTo wR="4345" hR="5945" stAng="-14809710" swAng="9151131" />\r
-- <close />\r
-- </path>\r
-- <path w="43200" h="43200" fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="4693" y="26177" />\r
-- </moveTo>\r
-- <arcTo wR="4345" hR="5945" stAng="5204520" swAng="1585770" />\r
-- <moveTo>\r
-- <pt x="6928" y="34899" />\r
-- </moveTo>\r
-- <arcTo wR="4360" hR="5918" stAng="4416628" swAng="686848" />\r
-- <moveTo>\r
-- <pt x="16478" y="39090" />\r
-- </moveTo>\r
-- <arcTo wR="6752" hR="9215" stAng="8257449" swAng="844866" />\r
-- <moveTo>\r
-- <pt x="28827" y="34751" />\r
-- </moveTo>\r
-- <arcTo wR="6752" hR="9215" stAng="387196" swAng="959901" />\r
-- <moveTo>\r
-- <pt x="34129" y="22954" />\r
-- </moveTo>\r
-- <arcTo wR="5785" hR="7867" stAng="-4217541" swAng="4255042" />\r
-- <moveTo>\r
-- <pt x="41798" y="15354" />\r
-- </moveTo>\r
-- <arcTo wR="5333" hR="7273" stAng="1819082" swAng="1665090" />\r
-- <moveTo>\r
-- <pt x="38324" y="5426" />\r
-- </moveTo>\r
-- <arcTo wR="4857" hR="6595" stAng="-824660" swAng="891534" />\r
-- <moveTo>\r
-- <pt x="29078" y="3952" />\r
-- </moveTo>\r
-- <arcTo wR="4857" hR="6595" stAng="-8950887" swAng="1091722" />\r
-- <moveTo>\r
-- <pt x="22141" y="4720" />\r
-- </moveTo>\r
-- <arcTo wR="4365" hR="5945" stAng="-9809656" swAng="1061181" />\r
-- <moveTo>\r
-- <pt x="14000" y="5192" />\r
-- </moveTo>\r
-- <arcTo wR="6753" hR="9190" stAng="-4002417" swAng="739161" />\r
-- <moveTo>\r
-- <pt x="4127" y="15789" />\r
-- </moveTo>\r
-- <arcTo wR="6753" hR="9190" stAng="9459261" swAng="711490" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </cloud>\r
-- <cloudCallout>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val -20833" />\r
--\r
-- <gd name="adj2" fmla="val 62500" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dxPos" fmla="*/ w adj1 100000" />\r
-- <gd name="dyPos" fmla="*/ h adj2 100000" />\r
-- <gd name="xPos" fmla="+- hc dxPos 0" />\r
-- <gd name="yPos" fmla="+- vc dyPos 0" />\r
-- <gd name="ht" fmla="cat2 hd2 dxPos dyPos" />\r
-- <gd name="wt" fmla="sat2 wd2 dxPos dyPos" />\r
-- <gd name="g2" fmla="cat2 wd2 ht wt" />\r
-- <gd name="g3" fmla="sat2 hd2 ht wt" />\r
-- <gd name="g4" fmla="+- hc g2 0" />\r
--\r
-- <gd name="g5" fmla="+- vc g3 0" />\r
--\r
-- <gd name="g6" fmla="+- g4 0 xPos" />\r
--\r
-- <gd name="g7" fmla="+- g5 0 yPos" />\r
--\r
-- <gd name="g8" fmla="mod g6 g7 0" />\r
--\r
-- <gd name="g9" fmla="*/ ss 6600 21600" />\r
--\r
-- <gd name="g10" fmla="+- g8 0 g9" />\r
--\r
-- <gd name="g11" fmla="*/ g10 1 3" />\r
--\r
-- <gd name="g12" fmla="*/ ss 1800 21600" />\r
--\r
-- <gd name="g13" fmla="+- g11 g12 0" />\r
--\r
-- <gd name="g14" fmla="*/ g13 g6 g8" />\r
--\r
-- <gd name="g15" fmla="*/ g13 g7 g8" />\r
--\r
-- <gd name="g16" fmla="+- g14 xPos 0" />\r
--\r
-- <gd name="g17" fmla="+- g15 yPos 0" />\r
--\r
-- <gd name="g18" fmla="*/ ss 4800 21600" />\r
--\r
-- <gd name="g19" fmla="*/ g11 2 1" />\r
--\r
-- <gd name="g20" fmla="+- g18 g19 0" />\r
--\r
-- <gd name="g21" fmla="*/ g20 g6 g8" />\r
-- <gd name="g22" fmla="*/ g20 g7 g8" />\r
-- <gd name="g23" fmla="+- g21 xPos 0" />\r
-- <gd name="g24" fmla="+- g22 yPos 0" />\r
-- <gd name="g25" fmla="*/ ss 1200 21600" />\r
-- <gd name="g26" fmla="*/ ss 600 21600" />\r
--\r
-- <gd name="x23" fmla="+- xPos g26 0" />\r
-- <gd name="x24" fmla="+- g16 g25 0" />\r
-- <gd name="x25" fmla="+- g23 g12 0" />\r
-- <gd name="il" fmla="*/ w 2977 21600" />\r
-- <gd name="it" fmla="*/ h 3262 21600" />\r
-- <gd name="ir" fmla="*/ w 17087 21600" />\r
-- <gd name="ib" fmla="*/ h 17337 21600" />\r
--\r
-- <gd name="g27" fmla="*/ w 67 21600" />\r
-- <gd name="g28" fmla="*/ h 21577 21600" />\r
-- <gd name="g29" fmla="*/ w 21582 21600" />\r
-- <gd name="g30" fmla="*/ h 1235 21600" />\r
-- <gd name="pang" fmla="at2 dxPos dyPos" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647" gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
-- <pos x="xPos" y="yPos" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd2">\r
-- <pos x="g27" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="g28" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="g29" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="g30" />\r
-- </cxn>\r
-- <cxn ang="pang">\r
-- <pos x="xPos" y="yPos" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="43200" h="43200">\r
-- <moveTo>\r
-- <pt x="3900" y="14370" />\r
-- </moveTo>\r
-- <arcTo wR="6753" hR="9190" stAng="-11429249" swAng="7426832" />\r
-- <arcTo wR="5333" hR="7267" stAng="-8646143" swAng="5396714" />\r
-- <arcTo wR="4365" hR="5945" stAng="-8748475" swAng="5983381" />\r
-- <arcTo wR="4857" hR="6595" stAng="-7859164" swAng="7034504" />\r
-- <arcTo wR="5333" hR="7273" stAng="-4722533" swAng="6541615" />\r
-- <arcTo wR="6775" hR="9220" stAng="-2776035" swAng="7816140" />\r
-- <arcTo wR="5785" hR="7867" stAng="37501" swAng="6842000" />\r
-- <arcTo wR="6752" hR="9215" stAng="1347096" swAng="6910353" />\r
-- <arcTo wR="7720" hR="10543" stAng="3974558" swAng="4542661" />\r
-- <arcTo wR="4360" hR="5918" stAng="-16496525" swAng="8804134" />\r
-- <arcTo wR="4345" hR="5945" stAng="-14809710" swAng="9151131" />\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x23" y="yPos" />\r
-- </moveTo>\r
-- <arcTo wR="g26" hR="g26" stAng="0" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x24" y="g17" />\r
-- </moveTo>\r
-- <arcTo wR="g25" hR="g25" stAng="0" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x25" y="g24" />\r
-- </moveTo>\r
-- <arcTo wR="g12" hR="g12" stAng="0" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- <path w="43200" h="43200" fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="4693" y="26177" />\r
-- </moveTo>\r
-- <arcTo wR="4345" hR="5945" stAng="5204520" swAng="1585770" />\r
-- <moveTo>\r
-- <pt x="6928" y="34899" />\r
-- </moveTo>\r
-- <arcTo wR="4360" hR="5918" stAng="4416628" swAng="686848" />\r
-- <moveTo>\r
-- <pt x="16478" y="39090" />\r
-- </moveTo>\r
-- <arcTo wR="6752" hR="9215" stAng="8257449" swAng="844866" />\r
-- <moveTo>\r
-- <pt x="28827" y="34751" />\r
-- </moveTo>\r
-- <arcTo wR="6752" hR="9215" stAng="387196" swAng="959901" />\r
-- <moveTo>\r
-- <pt x="34129" y="22954" />\r
-- </moveTo>\r
-- <arcTo wR="5785" hR="7867" stAng="-4217541" swAng="4255042" />\r
-- <moveTo>\r
-- <pt x="41798" y="15354" />\r
-- </moveTo>\r
-- <arcTo wR="5333" hR="7273" stAng="1819082" swAng="1665090" />\r
-- <moveTo>\r
-- <pt x="38324" y="5426" />\r
-- </moveTo>\r
-- <arcTo wR="4857" hR="6595" stAng="-824660" swAng="891534" />\r
-- <moveTo>\r
-- <pt x="29078" y="3952" />\r
-- </moveTo>\r
-- <arcTo wR="4857" hR="6595" stAng="-8950887" swAng="1091722" />\r
-- <moveTo>\r
-- <pt x="22141" y="4720" />\r
-- </moveTo>\r
-- <arcTo wR="4365" hR="5945" stAng="-9809656" swAng="1061181" />\r
-- <moveTo>\r
-- <pt x="14000" y="5192" />\r
-- </moveTo>\r
-- <arcTo wR="6753" hR="9190" stAng="-4002417" swAng="739161" />\r
-- <moveTo>\r
-- <pt x="4127" y="15789" />\r
-- </moveTo>\r
-- <arcTo wR="6753" hR="9190" stAng="9459261" swAng="711490" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </cloudCallout>\r
-- <corner>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj1" fmla="*/ 100000 h ss" />\r
-- <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="x1" fmla="*/ ss a2 100000" />\r
-- <gd name="dy1" fmla="*/ ss a1 100000" />\r
-- <gd name="y1" fmla="+- b 0 dy1" />\r
-- <gd name="cx1" fmla="*/ x1 1 2" />\r
-- <gd name="cy1" fmla="+/ y1 b 2" />\r
-- <gd name="d" fmla="+- w 0 h" />\r
-- <gd name="it" fmla="?: d y1 t" />\r
-- <gd name="ir" fmla="?: d r x1" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="cy1" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="cx1" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="it" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </corner>\r
-- <cornerTabs>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="md" fmla="mod w h 0" />\r
-- <gd name="dx" fmla="*/ 1 md 20" />\r
--\r
-- <gd name="y1" fmla="+- 0 b dx" />\r
--\r
-- <gd name="x1" fmla="+- 0 r dx" />\r
--\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="dx" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="b" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="dx" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="dx" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="t" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="dx" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y1" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="dx" t="dx" r="x1" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="dx" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="dx" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="dx" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="dx" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="r" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </cornerTabs>\r
-- <cube>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 25000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 100000" />\r
-- <gd name="y1" fmla="*/ ss a 100000" />\r
-- <gd name="y4" fmla="+- b 0 y1" />\r
-- <gd name="y2" fmla="*/ y4 1 2" />\r
-- <gd name="y3" fmla="+/ y1 b 2" />\r
-- <gd name="x4" fmla="+- r 0 y1" />\r
-- <gd name="x2" fmla="*/ x4 1 2" />\r
-- <gd name="x3" fmla="+/ y1 r 2" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="100000">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y3" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y2" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="y1" r="x4" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darkenLess" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x4" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="lightenLess" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="y1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="y1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x4" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
-- </cube>\r
-- <curvedConnector2>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <cubicBezTo>\r
-- <pt x="wd2" y="t" />\r
-- <pt x="r" y="hd2" />\r
-- <pt x="r" y="b" />\r
-- </cubicBezTo>\r
-- </path>\r
-- </pathLst>\r
-- </curvedConnector2>\r
-- <curvedConnector3>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w adj1 100000" />\r
-- <gd name="x1" fmla="+/ l x2 2" />\r
-- <gd name="x3" fmla="+/ r x2 2" />\r
-- <gd name="y3" fmla="*/ h 3 4" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
-- <pos x="x2" y="vc" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <cubicBezTo>\r
-- <pt x="x1" y="t" />\r
-- <pt x="x2" y="hd4" />\r
-- <pt x="x2" y="vc" />\r
-- </cubicBezTo>\r
-- <cubicBezTo>\r
-- <pt x="x2" y="y3" />\r
-- <pt x="x3" y="b" />\r
-- <pt x="r" y="b" />\r
-- </cubicBezTo>\r
-- </path>\r
-- </pathLst>\r
-- </curvedConnector3>\r
-- <curvedConnector4>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w adj1 100000" />\r
-- <gd name="x1" fmla="+/ l x2 2" />\r
-- <gd name="x3" fmla="+/ r x2 2" />\r
-- <gd name="x4" fmla="+/ x2 x3 2" />\r
-- <gd name="x5" fmla="+/ x3 r 2" />\r
-- <gd name="y4" fmla="*/ h adj2 100000" />\r
-- <gd name="y1" fmla="+/ t y4 2" />\r
-- <gd name="y2" fmla="+/ t y1 2" />\r
-- <gd name="y3" fmla="+/ y1 y4 2" />\r
-- <gd name="y5" fmla="+/ b y4 2" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
-- <pos x="x2" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x3" y="y4" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <cubicBezTo>\r
-- <pt x="x1" y="t" />\r
-- <pt x="x2" y="y2" />\r
-- <pt x="x2" y="y1" />\r
-- </cubicBezTo>\r
-- <cubicBezTo>\r
-- <pt x="x2" y="y3" />\r
-- <pt x="x4" y="y4" />\r
-- <pt x="x3" y="y4" />\r
-- </cubicBezTo>\r
-- <cubicBezTo>\r
-- <pt x="x5" y="y4" />\r
-- <pt x="r" y="y5" />\r
-- <pt x="r" y="b" />\r
-- </cubicBezTo>\r
-- </path>\r
-- </pathLst>\r
-- </curvedConnector4>\r
-- <curvedConnector5>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- <gd name="adj3" fmla="val 50000" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x3" fmla="*/ w adj1 100000" />\r
-- <gd name="x6" fmla="*/ w adj3 100000" />\r
-- <gd name="x1" fmla="+/ x3 x6 2" />\r
-- <gd name="x2" fmla="+/ l x3 2" />\r
-- <gd name="x4" fmla="+/ x3 x1 2" />\r
-- <gd name="x5" fmla="+/ x6 x1 2" />\r
-- <gd name="x7" fmla="+/ x6 r 2" />\r
-- <gd name="y4" fmla="*/ h adj2 100000" />\r
-- <gd name="y1" fmla="+/ t y4 2" />\r
-- <gd name="y2" fmla="+/ t y1 2" />\r
-- <gd name="y3" fmla="+/ y1 y4 2" />\r
-- <gd name="y5" fmla="+/ b y4 2" />\r
-- <gd name="y6" fmla="+/ y5 y4 2" />\r
-- <gd name="y7" fmla="+/ y5 b 2" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647">\r
-- <pos x="x3" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
-- <pos x="x1" y="y4" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj3" minX="-2147483647" maxX="2147483647">\r
-- <pos x="x6" y="y5" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <cubicBezTo>\r
-- <pt x="x2" y="t" />\r
-- <pt x="x3" y="y2" />\r
-- <pt x="x3" y="y1" />\r
-- </cubicBezTo>\r
-- <cubicBezTo>\r
-- <pt x="x3" y="y3" />\r
-- <pt x="x4" y="y4" />\r
-- <pt x="x1" y="y4" />\r
-- </cubicBezTo>\r
-- <cubicBezTo>\r
-- <pt x="x5" y="y4" />\r
-- <pt x="x6" y="y6" />\r
-- <pt x="x6" y="y5" />\r
-- </cubicBezTo>\r
-- <cubicBezTo>\r
-- <pt x="x6" y="y7" />\r
-- <pt x="x7" y="b" />\r
-- <pt x="r" y="b" />\r
-- </cubicBezTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </curvedConnector5>\r
-- <curvedDownArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="aw" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="q1" fmla="+/ th aw 4" />\r
--\r
-- <gd name="wR" fmla="+- wd2 0 q1" />\r
--\r
-- <gd name="q7" fmla="*/ wR 2 1" />\r
--\r
-- <gd name="q8" fmla="*/ q7 q7 1" />\r
--\r
-- <gd name="q9" fmla="*/ th th 1" />\r
--\r
-- <gd name="q10" fmla="+- q8 0 q9" />\r
-- <gd name="q11" fmla="sqrt q10" />\r
-- <gd name="idy" fmla="*/ q11 h q7" />\r
-- <gd name="maxAdj3" fmla="*/ 100000 idy ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="ah" fmla="*/ ss adj3 100000" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="x3" fmla="+- wR th 0" />\r
--\r
-- <gd name="q2" fmla="*/ h h 1" />\r
-- <gd name="q3" fmla="*/ ah ah 1" />\r
-- <gd name="q4" fmla="+- q2 0 q3" />\r
-- <gd name="q5" fmla="sqrt q4" />\r
-- <gd name="dx" fmla="*/ q5 wR h" />\r
-- <gd name="x5" fmla="+- wR dx 0" />\r
--\r
-- <gd name="x7" fmla="+- x3 dx 0" />\r
--\r
-- <gd name="q6" fmla="+- aw 0 th" />\r
-- <gd name="dh" fmla="*/ q6 1 2" />\r
--\r
-- <gd name="x4" fmla="+- x5 0 dh" />\r
--\r
-- <gd name="x8" fmla="+- x7 dh 0" />\r
--\r
-- <gd name="aw2" fmla="*/ aw 1 2" />\r
-- <gd name="x6" fmla="+- r 0 aw2" />\r
--\r
-- <gd name="y1" fmla="+- b 0 ah" />\r
-- <gd name="swAng" fmla="at2 ah dx" />\r
--\r
-- <gd name="mswAng" fmla="+- 0 0 swAng" />\r
-- <gd name="iy" fmla="+- b 0 idy" />\r
--\r
-- <gd name="ix" fmla="+/ wR x3 2" />\r
--\r
-- <gd name="q12" fmla="*/ th 1 2" />\r
-- <gd name="dang2" fmla="at2 idy q12" />\r
-- <gd name="stAng" fmla="+- 3cd4 swAng 0" />\r
-- <gd name="stAng2" fmla="+- 3cd4 0 dang2" />\r
-- <gd name="swAng2" fmla="+- dang2 0 cd4" />\r
-- <gd name="swAng3" fmla="+- cd4 dang2 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="adj2">\r
-- <pos x="x7" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x4" y="b" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="r" y="y1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="ix" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="q12" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x4" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x6" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x8" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x6" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="stAng" swAng="mswAng" />\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="3cd4" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="x8" y="y1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
--\r
-- <path fill="darkenLess" stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="ix" y="iy" />\r
-- </moveTo>\r
-- <arcTo wR="wR" hR="h" stAng="stAng2" swAng="swAng2" />\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="cd2" swAng="swAng3" />\r
-- <close />\r
-- </path>\r
--\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="ix" y="iy" />\r
-- </moveTo>\r
-- <arcTo wR="wR" hR="h" stAng="stAng2" swAng="swAng2" />\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="3cd4" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="x8" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="stAng" swAng="mswAng" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </curvedDownArrow>\r
-- <curvedLeftArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="a1" fmla="pin 0 adj1 a2" />\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="aw" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="q1" fmla="+/ th aw 4" />\r
--\r
-- <gd name="hR" fmla="+- hd2 0 q1" />\r
--\r
-- <gd name="q7" fmla="*/ hR 2 1" />\r
--\r
-- <gd name="q8" fmla="*/ q7 q7 1" />\r
--\r
-- <gd name="q9" fmla="*/ th th 1" />\r
--\r
-- <gd name="q10" fmla="+- q8 0 q9" />\r
-- <gd name="q11" fmla="sqrt q10" />\r
-- <gd name="idx" fmla="*/ q11 w q7" />\r
-- <gd name="maxAdj3" fmla="*/ 100000 idx ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="ah" fmla="*/ ss a3 100000" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="y3" fmla="+- hR th 0" />\r
--\r
-- <gd name="q2" fmla="*/ w w 1" />\r
-- <gd name="q3" fmla="*/ ah ah 1" />\r
-- <gd name="q4" fmla="+- q2 0 q3" />\r
-- <gd name="q5" fmla="sqrt q4" />\r
-- <gd name="dy" fmla="*/ q5 hR w" />\r
-- <gd name="y5" fmla="+- hR dy 0" />\r
--\r
-- <gd name="y7" fmla="+- y3 dy 0" />\r
--\r
-- <gd name="q6" fmla="+- aw 0 th" />\r
-- <gd name="dh" fmla="*/ q6 1 2" />\r
--\r
-- <gd name="y4" fmla="+- y5 0 dh" />\r
--\r
-- <gd name="y8" fmla="+- y7 dh 0" />\r
--\r
-- <gd name="aw2" fmla="*/ aw 1 2" />\r
-- <gd name="y6" fmla="+- b 0 aw2" />\r
--\r
-- <gd name="x1" fmla="+- l ah 0" />\r
-- <gd name="swAng" fmla="at2 ah dy" />\r
--\r
-- <gd name="mswAng" fmla="+- 0 0 swAng" />\r
-- <gd name="ix" fmla="+- l idx 0" />\r
--\r
-- <gd name="iy" fmla="+/ hR y3 2" />\r
--\r
-- <gd name="q12" fmla="*/ th 1 2" />\r
-- <gd name="dang2" fmla="at2 idx q12" />\r
-- <gd name="swAng2" fmla="+- dang2 0 swAng" />\r
-- <gd name="swAng3" fmla="+- swAng dang2 0" />\r
-- <gd name="stAng3" fmla="+- 0 0 dang2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="a2">\r
-- <pos x="x1" y="y5" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
-- <pos x="r" y="y4" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
-- <pos x="x1" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="q12" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd3">\r
-- <pos x="l" y="y6" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="y8" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="iy" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="y6" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y5" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="hR" stAng="swAng" swAng="swAng2" />\r
-- <arcTo wR="w" hR="hR" stAng="stAng3" swAng="swAng3" />\r
-- <lnTo>\r
-- <pt x="x1" y="y8" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
--\r
-- <path fill="darkenLess" stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="r" y="y3" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="hR" stAng="0" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="l" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="hR" stAng="3cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
--\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="r" y="y3" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="hR" stAng="0" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="l" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="hR" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="y3" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="hR" stAng="0" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="x1" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y5" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="hR" stAng="swAng" swAng="swAng2" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </curvedLeftArrow>\r
-- <curvedRightArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="a1" fmla="pin 0 adj1 a2" />\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="aw" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="q1" fmla="+/ th aw 4" />\r
--\r
-- <gd name="hR" fmla="+- hd2 0 q1" />\r
--\r
-- <gd name="q7" fmla="*/ hR 2 1" />\r
--\r
-- <gd name="q8" fmla="*/ q7 q7 1" />\r
--\r
-- <gd name="q9" fmla="*/ th th 1" />\r
--\r
-- <gd name="q10" fmla="+- q8 0 q9" />\r
-- <gd name="q11" fmla="sqrt q10" />\r
-- <gd name="idx" fmla="*/ q11 w q7" />\r
-- <gd name="maxAdj3" fmla="*/ 100000 idx ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="ah" fmla="*/ ss a3 100000" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="y3" fmla="+- hR th 0" />\r
--\r
-- <gd name="q2" fmla="*/ w w 1" />\r
-- <gd name="q3" fmla="*/ ah ah 1" />\r
-- <gd name="q4" fmla="+- q2 0 q3" />\r
-- <gd name="q5" fmla="sqrt q4" />\r
-- <gd name="dy" fmla="*/ q5 hR w" />\r
-- <gd name="y5" fmla="+- hR dy 0" />\r
--\r
-- <gd name="y7" fmla="+- y3 dy 0" />\r
--\r
-- <gd name="q6" fmla="+- aw 0 th" />\r
-- <gd name="dh" fmla="*/ q6 1 2" />\r
--\r
-- <gd name="y4" fmla="+- y5 0 dh" />\r
--\r
-- <gd name="y8" fmla="+- y7 dh 0" />\r
--\r
-- <gd name="aw2" fmla="*/ aw 1 2" />\r
-- <gd name="y6" fmla="+- b 0 aw2" />\r
--\r
-- <gd name="x1" fmla="+- r 0 ah" />\r
-- <gd name="swAng" fmla="at2 ah dy" />\r
--\r
-- <gd name="stAng" fmla="+- cd2 0 swAng" />\r
-- <gd name="mswAng" fmla="+- 0 0 swAng" />\r
-- <gd name="ix" fmla="+- r 0 idx" />\r
--\r
-- <gd name="iy" fmla="+/ hR y3 2" />\r
--\r
-- <gd name="q12" fmla="*/ th 1 2" />\r
-- <gd name="dang2" fmla="at2 idx q12" />\r
-- <gd name="swAng2" fmla="+- dang2 0 cd4" />\r
-- <gd name="swAng3" fmla="+- cd4 dang2 0" />\r
-- <gd name="stAng3" fmla="+- cd2 0 dang2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="a2">\r
-- <pos x="x1" y="y5" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
-- <pos x="r" y="y4" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
-- <pos x="x1" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="iy" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="y8" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y6" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x1" y="y4" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="q12" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="hR" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="hR" stAng="cd2" swAng="mswAng" />\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y7" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="hR" stAng="stAng" swAng="swAng" />\r
-- <close />\r
-- </path>\r
--\r
-- <path fill="darkenLess" stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="r" y="th" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="hR" stAng="3cd4" swAng="swAng2" />\r
-- <arcTo wR="w" hR="hR" stAng="stAng3" swAng="swAng3" />\r
-- <close />\r
-- </path>\r
--\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="hR" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="hR" stAng="cd2" swAng="mswAng" />\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y7" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="hR" stAng="stAng" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="l" y="hR" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="hR" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="th" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="hR" stAng="3cd4" swAng="swAng2" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </curvedRightArrow>\r
-- <curvedUpArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="aw" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="q1" fmla="+/ th aw 4" />\r
--\r
-- <gd name="wR" fmla="+- wd2 0 q1" />\r
--\r
-- <gd name="q7" fmla="*/ wR 2 1" />\r
--\r
-- <gd name="q8" fmla="*/ q7 q7 1" />\r
--\r
-- <gd name="q9" fmla="*/ th th 1" />\r
--\r
-- <gd name="q10" fmla="+- q8 0 q9" />\r
-- <gd name="q11" fmla="sqrt q10" />\r
-- <gd name="idy" fmla="*/ q11 h q7" />\r
-- <gd name="maxAdj3" fmla="*/ 100000 idy ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="ah" fmla="*/ ss adj3 100000" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="x3" fmla="+- wR th 0" />\r
--\r
-- <gd name="q2" fmla="*/ h h 1" />\r
-- <gd name="q3" fmla="*/ ah ah 1" />\r
-- <gd name="q4" fmla="+- q2 0 q3" />\r
-- <gd name="q5" fmla="sqrt q4" />\r
-- <gd name="dx" fmla="*/ q5 wR h" />\r
-- <gd name="x5" fmla="+- wR dx 0" />\r
--\r
-- <gd name="x7" fmla="+- x3 dx 0" />\r
--\r
-- <gd name="q6" fmla="+- aw 0 th" />\r
-- <gd name="dh" fmla="*/ q6 1 2" />\r
--\r
-- <gd name="x4" fmla="+- x5 0 dh" />\r
--\r
-- <gd name="x8" fmla="+- x7 dh 0" />\r
--\r
-- <gd name="aw2" fmla="*/ aw 1 2" />\r
-- <gd name="x6" fmla="+- r 0 aw2" />\r
--\r
-- <gd name="y1" fmla="+- t ah 0" />\r
-- <gd name="swAng" fmla="at2 ah dx" />\r
--\r
-- <gd name="mswAng" fmla="+- 0 0 swAng" />\r
-- <gd name="iy" fmla="+- t idy 0" />\r
--\r
-- <gd name="ix" fmla="+/ wR x3 2" />\r
--\r
-- <gd name="q12" fmla="*/ th 1 2" />\r
-- <gd name="dang2" fmla="at2 idy q12" />\r
-- <gd name="swAng2" fmla="+- dang2 0 swAng" />\r
-- <gd name="mswAng2" fmla="+- 0 0 swAng2" />\r
-- <gd name="stAng3" fmla="+- cd4 0 swAng" />\r
-- <gd name="swAng3" fmla="+- swAng dang2 0" />\r
-- <gd name="stAng2" fmla="+- cd4 0 dang2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="a2">\r
-- <pos x="x7" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x4" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="r" y="y1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x6" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x4" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="q12" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ix" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x8" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x6" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="stAng3" swAng="swAng3" />\r
-- <arcTo wR="wR" hR="h" stAng="stAng2" swAng="swAng2" />\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
--\r
-- <path fill="darkenLess" stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="wR" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="wR" hR="h" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="th" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="cd2" swAng="-5400000" />\r
-- <close />\r
-- </path>\r
--\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="ix" y="iy" />\r
-- </moveTo>\r
-- <arcTo wR="wR" hR="h" stAng="stAng2" swAng="swAng2" />\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="stAng3" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="wR" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="th" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="wR" hR="h" stAng="cd2" swAng="-5400000" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </curvedUpArrow>\r
-- <decagon>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="vf" fmla="val 105146" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
-- <gd name="dx1" fmla="cos wd2 2160000" />\r
-- <gd name="dx2" fmla="cos wd2 4320000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
-- <gd name="dy1" fmla="sin shd2 4320000" />\r
-- <gd name="dy2" fmla="sin shd2 2160000" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
-- <gd name="y3" fmla="+- vc dy2 0" />\r
-- <gd name="y4" fmla="+- vc dy1 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y2" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="y2" r="x4" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </decagon>\r
-- <diagStripe>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 50000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 100000" />\r
-- <gd name="x2" fmla="*/ w a 100000" />\r
-- <gd name="x1" fmla="*/ x2 1 2" />\r
-- <gd name="x3" fmla="+/ x2 r 2" />\r
-- <gd name="y2" fmla="*/ h a 100000" />\r
-- <gd name="y1" fmla="*/ y2 1 2" />\r
-- <gd name="y3" fmla="+/ y2 b 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="100000">\r
-- <pos x="l" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="hc" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="x3" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </diagStripe>\r
-- <diamond>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="ir" fmla="*/ w 3 4" />\r
-- <gd name="ib" fmla="*/ h 3 4" />\r
-- </gdLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="wd4" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </diamond>\r
-- <dodecagon>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x1" fmla="*/ w 2894 21600" />\r
-- <gd name="x2" fmla="*/ w 7906 21600" />\r
-- <gd name="x3" fmla="*/ w 13694 21600" />\r
-- <gd name="x4" fmla="*/ w 18706 21600" />\r
-- <gd name="y1" fmla="*/ h 2894 21600" />\r
-- <gd name="y2" fmla="*/ h 7906 21600" />\r
-- <gd name="y3" fmla="*/ h 13694 21600" />\r
-- <gd name="y4" fmla="*/ h 18706 21600" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y1" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y3" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="y1" r="x4" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y3" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </dodecagon>\r
-- <donut>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 25000" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dr" fmla="*/ ss a 100000" />\r
-- <gd name="iwd2" fmla="+- wd2 0 dr" />\r
-- <gd name="ihd2" fmla="+- hd2 0 dr" />\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahPolar gdRefR="adj" minR="0" maxR="50000">\r
-- <pos x="dr" y="vc" />\r
-- </ahPolar>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="il" y="it" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="il" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ir" y="ib" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="ir" y="it" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="dr" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="iwd2" hR="ihd2" stAng="cd2" swAng="-5400000" />\r
-- <arcTo wR="iwd2" hR="ihd2" stAng="cd4" swAng="-5400000" />\r
-- <arcTo wR="iwd2" hR="ihd2" stAng="0" swAng="-5400000" />\r
-- <arcTo wR="iwd2" hR="ihd2" stAng="3cd4" swAng="-5400000" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </donut>\r
-- <doubleWave>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 6250" />\r
--\r
-- <gd name="adj2" fmla="val 0" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 12500" />\r
-- <gd name="a2" fmla="pin -10000 adj2 10000" />\r
-- <gd name="y1" fmla="*/ h a1 100000" />\r
--\r
-- <gd name="dy2" fmla="*/ y1 10 3" />\r
-- <gd name="y2" fmla="+- y1 0 dy2" />\r
--\r
-- <gd name="y3" fmla="+- y1 dy2 0" />\r
--\r
-- <gd name="y4" fmla="+- b 0 y1" />\r
--\r
-- <gd name="y5" fmla="+- y4 0 dy2" />\r
--\r
-- <gd name="y6" fmla="+- y4 dy2 0" />\r
--\r
-- <gd name="dx1" fmla="*/ w a2 100000" />\r
--\r
-- <gd name="of2" fmla="*/ w a2 50000" />\r
--\r
-- <gd name="x1" fmla="abs dx1" />\r
--\r
-- <gd name="dx2" fmla="?: of2 0 of2" />\r
-- <gd name="x2" fmla="+- l 0 dx2" />\r
--\r
-- <gd name="dx8" fmla="?: of2 of2 0" />\r
-- <gd name="x8" fmla="+- r 0 dx8" />\r
--\r
-- <gd name="dx3" fmla="+/ dx2 x8 6" />\r
-- <gd name="x3" fmla="+- x2 dx3 0" />\r
--\r
-- <gd name="dx4" fmla="+/ dx2 x8 3" />\r
-- <gd name="x4" fmla="+- x2 dx4 0" />\r
--\r
-- <gd name="x5" fmla="+/ x2 x8 2" />\r
--\r
-- <gd name="x6" fmla="+- x5 dx3 0" />\r
--\r
-- <gd name="x7" fmla="+/ x6 x8 2" />\r
--\r
-- <gd name="x9" fmla="+- l dx8 0" />\r
--\r
-- <gd name="x15" fmla="+- r dx2 0" />\r
--\r
-- <gd name="x10" fmla="+- x9 dx3 0" />\r
--\r
-- <gd name="x11" fmla="+- x9 dx4 0" />\r
--\r
-- <gd name="x12" fmla="+/ x9 x15 2" />\r
--\r
-- <gd name="x13" fmla="+- x12 dx3 0" />\r
--\r
-- <gd name="x14" fmla="+/ x13 x15 2" />\r
--\r
-- <gd name="x16" fmla="+- r 0 x1" />\r
--\r
-- <gd name="xAdj" fmla="+- hc dx1 0" />\r
-- <gd name="il" fmla="max x2 x9" />\r
-- <gd name="ir" fmla="min x8 x15" />\r
-- <gd name="it" fmla="*/ h a1 50000" />\r
-- <gd name="ib" fmla="+- b 0 it" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="12500">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="-10000" maxX="10000">\r
-- <pos x="xAdj" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="x12" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x5" y="y4" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x16" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x2" y="y1" />\r
-- </moveTo>\r
-- <cubicBezTo>\r
-- <pt x="x3" y="y2" />\r
-- <pt x="x4" y="y3" />\r
-- <pt x="x5" y="y1" />\r
-- </cubicBezTo>\r
-- <cubicBezTo>\r
-- <pt x="x6" y="y2" />\r
-- <pt x="x7" y="y3" />\r
-- <pt x="x8" y="y1" />\r
-- </cubicBezTo>\r
-- <lnTo>\r
-- <pt x="x15" y="y4" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="x14" y="y6" />\r
-- <pt x="x13" y="y5" />\r
-- <pt x="x12" y="y4" />\r
-- </cubicBezTo>\r
-- <cubicBezTo>\r
-- <pt x="x11" y="y6" />\r
-- <pt x="x10" y="y5" />\r
-- <pt x="x9" y="y4" />\r
-- </cubicBezTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </doubleWave>\r
-- <downArrow>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 100000 h ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="dy1" fmla="*/ ss a2 100000" />\r
-- <gd name="y1" fmla="+- b 0 dy1" />\r
-- <gd name="dx1" fmla="*/ w a1 200000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc dx1 0" />\r
-- <gd name="dy2" fmla="*/ x1 dy1 wd2" />\r
-- <gd name="y2" fmla="+- y1 dy2 0" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="100000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="x1" t="t" r="x2" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </downArrow>\r
-- <downArrowCallout>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- <gd name="adj4" fmla="val 64977" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="*/ 100000 h ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="q2" fmla="*/ a3 ss h" />\r
--\r
-- <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
--\r
-- <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
-- <gd name="dx1" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="dx2" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
-- <gd name="dy3" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="y3" fmla="+- b 0 dy3" />\r
-- <gd name="y2" fmla="*/ h a4 100000" />\r
--\r
-- <gd name="y1" fmla="*/ y2 1 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
-- <pos x="x2" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x1" y="b" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="r" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj4" minY="0" maxY="maxAdj4">\r
-- <pos x="l" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </downArrowCallout>\r
-- <ellipse>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="il" y="it" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="il" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ir" y="ib" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="ir" y="it" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </ellipse>\r
-- <ellipseRibbon>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- <gd name="adj3" fmla="val 12500" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 25000 adj2 75000" />\r
-- <gd name="q10" fmla="+- 100000 0 a1" />\r
-- <gd name="q11" fmla="*/ q10 1 2" />\r
-- <gd name="q12" fmla="+- a1 0 q11" />\r
-- <gd name="minAdj3" fmla="max 0 q12" />\r
-- <gd name="a3" fmla="pin minAdj3 adj3 a1" />\r
--\r
--\r
-- <gd name="dx2" fmla="*/ w a2 200000" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
--\r
-- <gd name="x3" fmla="+- x2 wd8 0" />\r
--\r
-- <gd name="x4" fmla="+- r 0 x3" />\r
--\r
-- <gd name="x5" fmla="+- r 0 x2" />\r
--\r
-- <gd name="x6" fmla="+- r 0 wd8" />\r
--\r
-- <gd name="dy1" fmla="*/ h a3 100000" />\r
--\r
-- <gd name="f1" fmla="*/ 4 dy1 w" />\r
--\r
-- <gd name="q1" fmla="*/ x3 x3 w" />\r
-- <gd name="q2" fmla="+- x3 0 q1" />\r
-- <gd name="y1" fmla="*/ f1 q2 1" />\r
--\r
-- <gd name="cx1" fmla="*/ x3 1 2" />\r
--\r
-- <gd name="cy1" fmla="*/ f1 cx1 1" />\r
--\r
-- <gd name="cx2" fmla="+- r 0 cx1" />\r
--\r
--\r
--\r
-- <gd name="q1" fmla="*/ h a1 100000" />\r
--\r
-- <gd name="dy3" fmla="+- q1 0 dy1" />\r
--\r
-- <gd name="q3" fmla="*/ x2 x2 w" />\r
-- <gd name="q4" fmla="+- x2 0 q3" />\r
-- <gd name="q5" fmla="*/ f1 q4 1" />\r
-- <gd name="y3" fmla="+- q5 dy3 0" />\r
--\r
--\r
--\r
-- <gd name="q6" fmla="+- dy1 dy3 y3" />\r
-- <gd name="q7" fmla="+- q6 dy1 0" />\r
-- <gd name="cy3" fmla="+- q7 dy3 0" />\r
--\r
-- <gd name="rh" fmla="+- b 0 q1" />\r
--\r
-- <gd name="q8" fmla="*/ dy1 14 16" />\r
-- <gd name="y2" fmla="+/ q8 rh 2" />\r
--\r
--\r
-- <gd name="y5" fmla="+- q5 rh 0" />\r
--\r
-- <gd name="y6" fmla="+- y3 rh 0" />\r
--\r
-- <gd name="cx4" fmla="*/ x2 1 2" />\r
--\r
-- <gd name="q9" fmla="*/ f1 cx4 1" />\r
-- <gd name="cy4" fmla="+- q9 rh 0" />\r
--\r
-- <gd name="cx5" fmla="+- r 0 cx4" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="cy6" fmla="+- cy3 rh 0" />\r
--\r
-- <gd name="y7" fmla="+- y1 dy3 0" />\r
-- <gd name="cy7" fmla="+- q1 q1 y7" />\r
-- <gd name="y8" fmla="+- b 0 dy1" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
-- <pos x="hc" y="q1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="25000" maxX="75000">\r
-- <pos x="x2" y="b" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="minAdj3" maxY="a1">\r
-- <pos x="l" y="y8" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="q1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="wd8" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x6" y="y2" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x2" t="q1" r="x5" b="y6" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <quadBezTo>\r
-- <pt x="cx1" y="cy1" />\r
-- <pt x="x3" y="y1" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy3" />\r
-- <pt x="x5" y="y3" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx2" y="cy1" />\r
-- <pt x="r" y="t" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="rh" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx5" y="cy4" />\r
-- <pt x="x5" y="y5" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y6" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy6" />\r
-- <pt x="x2" y="y6" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y5" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx4" y="cy4" />\r
-- <pt x="l" y="rh" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="wd8" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="darkenLess" stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x3" y="y7" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy3" />\r
-- <pt x="x5" y="y3" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y7" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy7" />\r
-- <pt x="x3" y="y7" />\r
-- </quadBezTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <quadBezTo>\r
-- <pt x="cx1" y="cy1" />\r
-- <pt x="x3" y="y1" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy3" />\r
-- <pt x="x5" y="y3" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx2" y="cy1" />\r
-- <pt x="r" y="t" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="rh" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx5" y="cy4" />\r
-- <pt x="x5" y="y5" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y6" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy6" />\r
-- <pt x="x2" y="y6" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y5" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx4" y="cy4" />\r
-- <pt x="l" y="rh" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="wd8" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x2" y="y5" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x5" y="y3" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y5" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x3" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y7" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x4" y="y7" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </ellipseRibbon>\r
-- <ellipseRibbon2>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- <gd name="adj3" fmla="val 12500" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 25000 adj2 75000" />\r
-- <gd name="q10" fmla="+- 100000 0 a1" />\r
-- <gd name="q11" fmla="*/ q10 1 2" />\r
-- <gd name="q12" fmla="+- a1 0 q11" />\r
-- <gd name="minAdj3" fmla="max 0 q12" />\r
-- <gd name="a3" fmla="pin minAdj3 adj3 a1" />\r
-- <gd name="dx2" fmla="*/ w a2 200000" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
--\r
-- <gd name="x3" fmla="+- x2 wd8 0" />\r
--\r
-- <gd name="x4" fmla="+- r 0 x3" />\r
--\r
-- <gd name="x5" fmla="+- r 0 x2" />\r
--\r
-- <gd name="x6" fmla="+- r 0 wd8" />\r
--\r
-- <gd name="dy1" fmla="*/ h a3 100000" />\r
--\r
-- <gd name="f1" fmla="*/ 4 dy1 w" />\r
--\r
-- <gd name="q1" fmla="*/ x3 x3 w" />\r
-- <gd name="q2" fmla="+- x3 0 q1" />\r
-- <gd name="u1" fmla="*/ f1 q2 1" />\r
--\r
-- <gd name="y1" fmla="+- b 0 u1" />\r
-- <gd name="cx1" fmla="*/ x3 1 2" />\r
--\r
-- <gd name="cu1" fmla="*/ f1 cx1 1" />\r
--\r
-- <gd name="cy1" fmla="+- b 0 cu1" />\r
-- <gd name="cx2" fmla="+- r 0 cx1" />\r
--\r
--\r
--\r
-- <gd name="q1" fmla="*/ h a1 100000" />\r
--\r
-- <gd name="dy3" fmla="+- q1 0 dy1" />\r
--\r
-- <gd name="q3" fmla="*/ x2 x2 w" />\r
-- <gd name="q4" fmla="+- x2 0 q3" />\r
-- <gd name="q5" fmla="*/ f1 q4 1" />\r
-- <gd name="u3" fmla="+- q5 dy3 0" />\r
--\r
-- <gd name="y3" fmla="+- b 0 u3" />\r
--\r
--\r
-- <gd name="q6" fmla="+- dy1 dy3 u3" />\r
-- <gd name="q7" fmla="+- q6 dy1 0" />\r
-- <gd name="cu3" fmla="+- q7 dy3 0" />\r
--\r
-- <gd name="cy3" fmla="+- b 0 cu3" />\r
-- <gd name="rh" fmla="+- b 0 q1" />\r
--\r
-- <gd name="q8" fmla="*/ dy1 14 16" />\r
-- <gd name="u2" fmla="+/ q8 rh 2" />\r
--\r
-- <gd name="y2" fmla="+- b 0 u2" />\r
--\r
-- <gd name="u5" fmla="+- q5 rh 0" />\r
--\r
-- <gd name="y5" fmla="+- b 0 u5" />\r
-- <gd name="u6" fmla="+- u3 rh 0" />\r
--\r
-- <gd name="y6" fmla="+- b 0 u6" />\r
-- <gd name="cx4" fmla="*/ x2 1 2" />\r
--\r
-- <gd name="q9" fmla="*/ f1 cx4 1" />\r
-- <gd name="cu4" fmla="+- q9 rh 0" />\r
--\r
-- <gd name="cy4" fmla="+- b 0 cu4" />\r
-- <gd name="cx5" fmla="+- r 0 cx4" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="cu6" fmla="+- cu3 rh 0" />\r
--\r
-- <gd name="cy6" fmla="+- b 0 cu6" />\r
-- <gd name="u7" fmla="+- u1 dy3 0" />\r
-- <gd name="y7" fmla="+- b 0 u7" />\r
-- <gd name="cu7" fmla="+- q1 q1 u7" />\r
-- <gd name="cy7" fmla="+- b 0 cu7" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
-- <pos x="hc" y="rh" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="25000" maxX="100000">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="minAdj3" maxY="a1">\r
-- <pos x="l" y="dy1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="wd8" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="rh" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x6" y="y2" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x2" t="y6" r="x5" b="rh" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <quadBezTo>\r
-- <pt x="cx1" y="cy1" />\r
-- <pt x="x3" y="y1" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy3" />\r
-- <pt x="x5" y="y3" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx2" y="cy1" />\r
-- <pt x="r" y="b" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="q1" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx5" y="cy4" />\r
-- <pt x="x5" y="y5" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y6" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy6" />\r
-- <pt x="x2" y="y6" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y5" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx4" y="cy4" />\r
-- <pt x="l" y="q1" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="wd8" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="darkenLess" stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x3" y="y7" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy3" />\r
-- <pt x="x5" y="y3" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y7" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy7" />\r
-- <pt x="x3" y="y7" />\r
-- </quadBezTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="wd8" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="q1" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx4" y="cy4" />\r
-- <pt x="x2" y="y5" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y6" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy6" />\r
-- <pt x="x5" y="y6" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y5" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx5" y="cy4" />\r
-- <pt x="r" y="q1" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx2" y="cy1" />\r
-- <pt x="x4" y="y1" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y3" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="cy3" />\r
-- <pt x="x2" y="y3" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="cx1" y="cy1" />\r
-- <pt x="l" y="b" />\r
-- </quadBezTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x2" y="y3" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y5" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x5" y="y5" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y3" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x3" y="y7" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x4" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y7" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </ellipseRibbon2>\r
-- <flowChartAlternateProcess>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="+- r 0 ssd6" />\r
-- <gd name="y2" fmla="+- b 0 ssd6" />\r
-- <gd name="il" fmla="*/ ssd6 29289 100000" />\r
--\r
--\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 il" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="ssd6" />\r
-- </moveTo>\r
-- <arcTo wR="ssd6" hR="ssd6" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="ssd6" hR="ssd6" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="ssd6" hR="ssd6" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="ssd6" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="ssd6" hR="ssd6" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartAlternateProcess>\r
-- <flowChartCollate>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="ir" fmla="*/ w 3 4" />\r
-- <gd name="ib" fmla="*/ h 3 4" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd4" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="2" h="2">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="2" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="2" y="2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartCollate>\r
-- <flowChartConnector>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="il" y="it" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="il" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ir" y="ib" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="ir" y="it" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartConnector>\r
-- <flowChartDecision>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="ir" fmla="*/ w 3 4" />\r
-- <gd name="ib" fmla="*/ h 3 4" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd4" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="2" h="2">\r
-- <moveTo>\r
-- <pt x="0" y="1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="2" y="1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartDecision>\r
-- <flowChartDelay>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartDelay>\r
-- <flowChartDisplay>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w 5 6" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd6" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="6" h="6">\r
-- <moveTo>\r
-- <pt x="0" y="3" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="5" y="0" />\r
-- </lnTo>\r
-- <arcTo wR="1" hR="3" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="1" y="6" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartDisplay>\r
-- <flowChartDocument>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h 17322 21600" />\r
-- <gd name="y2" fmla="*/ h 20172 21600" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="21600" h="21600">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="21600" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="21600" y="17322" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="10800" y="17322" />\r
-- <pt x="10800" y="23922" />\r
-- <pt x="0" y="20172" />\r
-- </cubicBezTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartDocument>\r
-- <flowChartExtract>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w 3 4" />\r
-- </gdLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="wd4" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x2" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd4" t="vc" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="2" h="2">\r
-- <moveTo>\r
-- <pt x="0" y="2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="2" y="2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartExtract>\r
-- <flowChartInputOutput>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x3" fmla="*/ w 2 5" />\r
-- <gd name="x4" fmla="*/ w 3 5" />\r
-- <gd name="x5" fmla="*/ w 4 5" />\r
-- <gd name="x6" fmla="*/ w 9 10" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x4" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="wd10" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x6" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd5" t="t" r="x5" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="5" h="5">\r
-- <moveTo>\r
-- <pt x="0" y="5" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="5" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="4" y="5" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartInputOutput>\r
-- <flowChartInternalStorage>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd8" t="hd8" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false" w="1" h="1">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false" w="8" h="8">\r
--\r
-- <moveTo>\r
-- <pt x="1" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="8" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="0" y="1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="8" y="1" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" w="1" h="1">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartInternalStorage>\r
-- <flowChartMagneticDisk>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y3" fmla="*/ h 5 6" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="hd3" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="hd3" r="r" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false" w="6" h="6">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="1" />\r
-- </moveTo>\r
-- <arcTo wR="3" hR="1" stAng="cd2" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="6" y="5" />\r
-- </lnTo>\r
-- <arcTo wR="3" hR="1" stAng="0" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false" w="6" h="6">\r
--\r
-- <moveTo>\r
-- <pt x="6" y="1" />\r
-- </moveTo>\r
-- <arcTo wR="3" hR="1" stAng="0" swAng="cd2" />\r
-- </path>\r
-- <path fill="none" w="6" h="6">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="1" />\r
-- </moveTo>\r
-- <arcTo wR="3" hR="1" stAng="cd2" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="6" y="5" />\r
-- </lnTo>\r
-- <arcTo wR="3" hR="1" stAng="0" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartMagneticDisk>\r
-- <flowChartMagneticDrum>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w 2 3" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x2" y="vc" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd6" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false" w="6" h="6">\r
--\r
-- <moveTo>\r
-- <pt x="1" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="5" y="0" />\r
-- </lnTo>\r
-- <arcTo wR="1" hR="3" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="1" y="6" />\r
-- </lnTo>\r
-- <arcTo wR="1" hR="3" stAng="cd4" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false" w="6" h="6">\r
--\r
-- <moveTo>\r
-- <pt x="5" y="6" />\r
-- </moveTo>\r
-- <arcTo wR="1" hR="3" stAng="cd4" swAng="cd2" />\r
-- </path>\r
-- <path fill="none" w="6" h="6">\r
--\r
-- <moveTo>\r
-- <pt x="1" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="5" y="0" />\r
-- </lnTo>\r
-- <arcTo wR="1" hR="3" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="1" y="6" />\r
-- </lnTo>\r
-- <arcTo wR="1" hR="3" stAng="cd4" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartMagneticDrum>\r
-- <flowChartMagneticTape>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- <gd name="ang1" fmla="at2 w h" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="hc" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="ang1" />\r
-- <lnTo>\r
-- <pt x="r" y="ib" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartMagneticTape>\r
-- <flowChartManualInput>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="hd10" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="hd5" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="5" h="5">\r
-- <moveTo>\r
-- <pt x="0" y="1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="5" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="5" y="5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="5" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartManualInput>\r
-- <flowChartManualOperation>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x3" fmla="*/ w 4 5" />\r
-- <gd name="x4" fmla="*/ w 9 10" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="wd10" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd5" t="t" r="x3" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="5" h="5">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="5" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="4" y="5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="5" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartManualOperation>\r
-- <flowChartMerge>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w 3 4" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="wd4" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x2" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd4" t="t" r="x2" b="vc" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="2" h="2">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="2" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartMerge>\r
-- <flowChartMultidocument>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y2" fmla="*/ h 3675 21600" />\r
-- <gd name="y8" fmla="*/ h 20782 21600" />\r
-- <gd name="x3" fmla="*/ w 9298 21600" />\r
-- <gd name="x4" fmla="*/ w 12286 21600" />\r
-- <gd name="x5" fmla="*/ w 18595 21600" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x4" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="y8" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="y2" r="x5" b="y8" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false" w="21600" h="21600">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="20782" />\r
-- </moveTo>\r
-- <cubicBezTo>\r
-- <pt x="9298" y="23542" />\r
-- <pt x="9298" y="18022" />\r
-- <pt x="18595" y="18022" />\r
-- </cubicBezTo>\r
-- <lnTo>\r
-- <pt x="18595" y="3675" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="3675" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="1532" y="3675" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1532" y="1815" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="20000" y="1815" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="20000" y="16252" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="19298" y="16252" />\r
-- <pt x="18595" y="16352" />\r
-- <pt x="18595" y="16352" />\r
-- </cubicBezTo>\r
-- <lnTo>\r
-- <pt x="18595" y="3675" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="2972" y="1815" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="2972" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="21600" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="21600" y="14392" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="20800" y="14392" />\r
-- <pt x="20000" y="14467" />\r
-- <pt x="20000" y="14467" />\r
-- </cubicBezTo>\r
-- <lnTo>\r
-- <pt x="20000" y="1815" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false" w="21600" h="21600">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="3675" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="18595" y="3675" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="18595" y="18022" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="9298" y="18022" />\r
-- <pt x="9298" y="23542" />\r
-- <pt x="0" y="20782" />\r
-- </cubicBezTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="1532" y="3675" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1532" y="1815" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="20000" y="1815" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="20000" y="16252" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="19298" y="16252" />\r
-- <pt x="18595" y="16352" />\r
-- <pt x="18595" y="16352" />\r
-- </cubicBezTo>\r
-- <moveTo>\r
-- <pt x="2972" y="1815" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="2972" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="21600" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="21600" y="14392" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="20800" y="14392" />\r
-- <pt x="20000" y="14467" />\r
-- <pt x="20000" y="14467" />\r
-- </cubicBezTo>\r
-- </path>\r
-- <path stroke="false" fill="none" w="21600" h="21600">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="20782" />\r
-- </moveTo>\r
-- <cubicBezTo>\r
-- <pt x="9298" y="23542" />\r
-- <pt x="9298" y="18022" />\r
-- <pt x="18595" y="18022" />\r
-- </cubicBezTo>\r
-- <lnTo>\r
-- <pt x="18595" y="16352" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="18595" y="16352" />\r
-- <pt x="19298" y="16252" />\r
-- <pt x="20000" y="16252" />\r
-- </cubicBezTo>\r
-- <lnTo>\r
-- <pt x="20000" y="14467" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="20000" y="14467" />\r
-- <pt x="20800" y="14392" />\r
-- <pt x="21600" y="14392" />\r
-- </cubicBezTo>\r
-- <lnTo>\r
-- <pt x="21600" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="2972" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="2972" y="1815" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1532" y="1815" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1532" y="3675" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="3675" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartMultidocument>\r
-- <flowChartOfflineStorage>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x4" fmla="*/ w 3 4" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x4" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="wd4" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd4" t="t" r="x4" b="vc" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false" w="2" h="2">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="2" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false" w="5" h="5">\r
--\r
-- <moveTo>\r
-- <pt x="2" y="4" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="3" y="4" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" extrusionOk="true" w="2" h="2">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="2" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartOfflineStorage>\r
-- <flowChartOffpageConnector>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y1" fmla="*/ h 4 5" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="10" h="10">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="10" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10" y="8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="5" y="10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="8" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartOffpageConnector>\r
-- <flowChartOnlineStorage>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w 5 6" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x2" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd6" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="6" h="6">\r
-- <moveTo>\r
-- <pt x="1" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="6" y="0" />\r
-- </lnTo>\r
-- <arcTo wR="1" hR="3" stAng="3cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="1" y="6" />\r
-- </lnTo>\r
-- <arcTo wR="1" hR="3" stAng="cd4" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartOnlineStorage>\r
-- <flowChartOr>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="il" y="it" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="il" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ir" y="ib" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="ir" y="it" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="hc" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartOr>\r
-- <flowChartPredefinedProcess>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w 7 8" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd8" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false" w="1" h="1">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false" w="8" h="8">\r
--\r
-- <moveTo>\r
-- <pt x="1" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="8" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="7" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="7" y="8" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" w="1" h="1">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartPredefinedProcess>\r
-- <flowChartPreparation>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w 4 5" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd5" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="10" h="10">\r
-- <moveTo>\r
-- <pt x="0" y="5" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="2" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="8" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10" y="5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="8" y="10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="2" y="10" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartPreparation>\r
-- <flowChartProcess>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="1" h="1">\r
-- <moveTo>\r
-- <pt x="0" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartProcess>\r
-- <flowChartPunchedCard>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="hd5" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="5" h="5">\r
-- <moveTo>\r
-- <pt x="0" y="1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="5" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="5" y="5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="5" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartPunchedCard>\r
-- <flowChartPunchedTape>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="y2" fmla="*/ h 9 10" />\r
-- <gd name="ib" fmla="*/ h 4 5" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="hd10" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="hd5" r="r" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="20" h="20">\r
-- <moveTo>\r
-- <pt x="0" y="2" />\r
-- </moveTo>\r
-- <arcTo wR="5" hR="2" stAng="cd2" swAng="-10800000" />\r
-- <arcTo wR="5" hR="2" stAng="cd2" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="20" y="18" />\r
-- </lnTo>\r
-- <arcTo wR="5" hR="2" stAng="0" swAng="-10800000" />\r
-- <arcTo wR="5" hR="2" stAng="0" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartPunchedTape>\r
-- <flowChartSort>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="ir" fmla="*/ w 3 4" />\r
-- <gd name="ib" fmla="*/ h 3 4" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="wd4" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false" w="2" h="2">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="2" y="1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false" w="2" h="2">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="2" y="1" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none" w="2" h="2">\r
--\r
-- <moveTo>\r
-- <pt x="0" y="1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="1" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="2" y="1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1" y="2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartSort>\r
-- <flowChartSummingJunction>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="il" y="it" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="il" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ir" y="ib" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="ir" y="it" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="il" y="it" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="ir" y="ib" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="ir" y="it" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="il" y="ib" />\r
-- </lnTo>\r
-- </path>\r
-- <path fill="none">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartSummingJunction>\r
-- <flowChartTerminator>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="il" fmla="*/ w 1018 21600" />\r
-- <gd name="ir" fmla="*/ w 20582 21600" />\r
-- <gd name="it" fmla="*/ h 3163 21600" />\r
-- <gd name="ib" fmla="*/ h 18437 21600" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="21600" h="21600">\r
-- <moveTo>\r
-- <pt x="3475" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="18125" y="0" />\r
-- </lnTo>\r
-- <arcTo wR="3475" hR="10800" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="3475" y="21600" />\r
-- </lnTo>\r
-- <arcTo wR="3475" hR="10800" stAng="cd4" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </flowChartTerminator>\r
-- <foldedCorner>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 16667" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dy2" fmla="*/ ss a 100000" />\r
-- <gd name="dy1" fmla="*/ dy2 1 5" />\r
-- <gd name="x1" fmla="+- r 0 dy2" />\r
-- <gd name="x2" fmla="+- x1 dy1 0" />\r
-- <gd name="y2" fmla="+- b 0 dy2" />\r
-- <gd name="y1" fmla="+- y2 dy1 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="50000">\r
-- <pos x="x1" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darkenLess" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="x1" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="x1" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </foldedCorner>\r
-- <frame>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 12500" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 50000" />\r
-- <gd name="x1" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="x4" fmla="+- r 0 x1" />\r
--\r
--\r
--\r
-- <gd name="y4" fmla="+- b 0 x1" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="x1" r="x4" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x1" y="x1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="x1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </frame>\r
-- <funnel>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="d" fmla="*/ ss 1 20" />\r
--\r
--\r
-- <gd name="rw2" fmla="+- wd2 0 d" />\r
--\r
-- <gd name="rh2" fmla="+- hd4 0 d" />\r
--\r
--\r
--\r
-- <gd name="t1" fmla="cos wd2 480000" />\r
--\r
-- <gd name="t2" fmla="sin hd4 480000" />\r
--\r
-- <gd name="da" fmla="at2 t1 t2" />\r
--\r
--\r
-- <gd name="2da" fmla="*/ da 2 1" />\r
-- <gd name="stAng1" fmla="+- cd2 0 da" />\r
-- <gd name="swAng1" fmla="+- cd2 2da 0" />\r
--\r
--\r
-- <gd name="swAng3" fmla="+- cd2 0 2da" />\r
--\r
--\r
-- <gd name="rw3" fmla="*/ wd2 1 4" />\r
-- <gd name="rh3" fmla="*/ hd4 1 4" />\r
--\r
--\r
-- <gd name="ct1" fmla="cos hd4 stAng1" />\r
-- <gd name="st1" fmla="sin wd2 stAng1" />\r
-- <gd name="m1" fmla="mod ct1 st1 0" />\r
-- <gd name="n1" fmla="*/ wd2 hd4 m1" />\r
-- <gd name="dx1" fmla="cos n1 stAng1" />\r
-- <gd name="dy1" fmla="sin n1 stAng1" />\r
-- <gd name="x1" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- hd4 dy1 0" />\r
--\r
--\r
-- <gd name="ct3" fmla="cos rh3 da" />\r
-- <gd name="st3" fmla="sin rw3 da" />\r
-- <gd name="m3" fmla="mod ct3 st3 0" />\r
-- <gd name="n3" fmla="*/ rw3 rh3 m3" />\r
-- <gd name="dx3" fmla="cos n3 da" />\r
-- <gd name="dy3" fmla="sin n3 da" />\r
-- <gd name="x3" fmla="+- hc dx3 0" />\r
-- <gd name="vc3" fmla="+- b 0 rh3" />\r
-- <gd name="y2" fmla="+- vc3 dy3 0" />\r
--\r
--\r
-- <gd name="x2" fmla="+- wd2 0 rw2" />\r
--\r
-- <gd name="cd" fmla="*/ cd2 2 1" />\r
-- </gdLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <arcTo hR="hd4" wR="wd2" stAng="stAng1" swAng="swAng1" />\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <arcTo hR="rh3" wR="rw3" stAng="da" swAng="swAng3" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x2" y="hd4" />\r
-- </moveTo>\r
-- <arcTo hR="rh2" wR="rw2" stAng="cd2" swAng="-21600000" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </funnel>\r
-- <gear6>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 15000" />\r
--\r
-- <gd name="adj2" fmla="val 3526" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
--\r
--\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 20000" />\r
-- <gd name="a2" fmla="pin 0 adj2 5358" />\r
--\r
--\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
-- <gd name="lFD" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="th2" fmla="*/ th 1 2" />\r
-- <gd name="l2" fmla="*/ lFD 1 2" />\r
-- <gd name="l3" fmla="+- th2 l2 0" />\r
--\r
--\r
-- <gd name="rh" fmla="+- hd2 0 th" />\r
-- <gd name="rw" fmla="+- wd2 0 th" />\r
--\r
--\r
-- <gd name="dr" fmla="+- rw 0 rh" />\r
-- <gd name="maxr" fmla="?: dr rh rw" />\r
-- <gd name="ha" fmla="at2 maxr l3" />\r
--\r
--\r
-- <gd name="aA1" fmla="+- 19800000 0 ha" />\r
-- <gd name="aD1" fmla="+- 19800000 ha 0" />\r
--\r
--\r
-- <gd name="ta11" fmla="cos rw aA1" />\r
-- <gd name="ta12" fmla="sin rh aA1" />\r
-- <gd name="bA1" fmla="at2 ta11 ta12" />\r
--\r
-- <gd name="cta1" fmla="cos rh bA1" />\r
-- <gd name="sta1" fmla="sin rw bA1" />\r
-- <gd name="ma1" fmla="mod cta1 sta1 0" />\r
-- <gd name="na1" fmla="*/ rw rh ma1" />\r
-- <gd name="dxa1" fmla="cos na1 bA1" />\r
-- <gd name="dya1" fmla="sin na1 bA1" />\r
-- <gd name="xA1" fmla="+- hc dxa1 0" />\r
-- <gd name="yA1" fmla="+- vc dya1 0" />\r
--\r
--\r
-- <gd name="td11" fmla="cos rw aD1" />\r
-- <gd name="td12" fmla="sin rh aD1" />\r
-- <gd name="bD1" fmla="at2 td11 td12" />\r
--\r
-- <gd name="ctd1" fmla="cos rh bD1" />\r
-- <gd name="std1" fmla="sin rw bD1" />\r
-- <gd name="md1" fmla="mod ctd1 std1 0" />\r
-- <gd name="nd1" fmla="*/ rw rh md1" />\r
-- <gd name="dxd1" fmla="cos nd1 bD1" />\r
-- <gd name="dyd1" fmla="sin nd1 bD1" />\r
-- <gd name="xD1" fmla="+- hc dxd1 0" />\r
-- <gd name="yD1" fmla="+- vc dyd1 0" />\r
--\r
--\r
-- <gd name="xAD1" fmla="+- xA1 0 xD1" />\r
-- <gd name="yAD1" fmla="+- yA1 0 yD1" />\r
-- <gd name="lAD1" fmla="mod xAD1 yAD1 0" />\r
-- <gd name="a1" fmla="at2 yAD1 xAD1" />\r
--\r
--\r
-- <gd name="dxF1" fmla="sin lFD a1" />\r
-- <gd name="dyF1" fmla="cos lFD a1" />\r
-- <gd name="xF1" fmla="+- xD1 dxF1 0" />\r
-- <gd name="yF1" fmla="+- yD1 dyF1 0" />\r
-- <gd name="xE1" fmla="+- xA1 0 dxF1" />\r
-- <gd name="yE1" fmla="+- yA1 0 dyF1" />\r
--\r
--\r
-- <gd name="yC1t" fmla="sin th a1" />\r
-- <gd name="xC1t" fmla="cos th a1" />\r
-- <gd name="yC1" fmla="+- yF1 yC1t 0" />\r
-- <gd name="xC1" fmla="+- xF1 0 xC1t" />\r
--\r
--\r
-- <gd name="yB1" fmla="+- yE1 yC1t 0" />\r
-- <gd name="xB1" fmla="+- xE1 0 xC1t" />\r
--\r
--\r
-- <gd name="aD6" fmla="+- 3cd4 ha 0" />\r
--\r
--\r
-- <gd name="td61" fmla="cos rw aD6" />\r
-- <gd name="td62" fmla="sin rh aD6" />\r
-- <gd name="bD6" fmla="at2 td61 td62" />\r
--\r
-- <gd name="ctd6" fmla="cos rh bD6" />\r
-- <gd name="std6" fmla="sin rw bD6" />\r
-- <gd name="md6" fmla="mod ctd6 std6 0" />\r
-- <gd name="nd6" fmla="*/ rw rh md6" />\r
-- <gd name="dxd6" fmla="cos nd6 bD6" />\r
-- <gd name="dyd6" fmla="sin nd6 bD6" />\r
-- <gd name="xD6" fmla="+- hc dxd6 0" />\r
-- <gd name="yD6" fmla="+- vc dyd6 0" />\r
--\r
--\r
-- <gd name="xA6" fmla="+- hc 0 dxd6" />\r
--\r
--\r
-- <gd name="xF6" fmla="+- xD6 0 lFD" />\r
-- <gd name="xE6" fmla="+- xA6 lFD 0" />\r
--\r
--\r
-- <gd name="yC6" fmla="+- yD6 0 th" />\r
--\r
-- <gd name="swAng1" fmla="+- bA1 0 bD6" />\r
--\r
--\r
-- <gd name="aA2" fmla="+- 1800000 0 ha" />\r
-- <gd name="aD2" fmla="+- 1800000 ha 0" />\r
--\r
--\r
-- <gd name="ta21" fmla="cos rw aA2" />\r
-- <gd name="ta22" fmla="sin rh aA2" />\r
-- <gd name="bA2" fmla="at2 ta21 ta22" />\r
--\r
-- <gd name="yA2" fmla="+- h 0 yD1" />\r
--\r
--\r
-- <gd name="td21" fmla="cos rw aD2" />\r
-- <gd name="td22" fmla="sin rh aD2" />\r
-- <gd name="bD2" fmla="at2 td21 td22" />\r
--\r
-- <gd name="yD2" fmla="+- h 0 yA1" />\r
--\r
--\r
-- <gd name="yC2" fmla="+- h 0 yB1" />\r
--\r
--\r
-- <gd name="yB2" fmla="+- h 0 yC1" />\r
-- <gd name="xB2" fmla="val xC1" />\r
--\r
-- <gd name="swAng2" fmla="+- bA2 0 bD1" />\r
--\r
--\r
-- <gd name="aD3" fmla="+- cd4 ha 0" />\r
--\r
-- <gd name="td31" fmla="cos rw aD3" />\r
-- <gd name="td32" fmla="sin rh aD3" />\r
-- <gd name="bD3" fmla="at2 td31 td32" />\r
--\r
--\r
-- <gd name="yD3" fmla="+- h 0 yD6" />\r
--\r
--\r
-- <gd name="yB3" fmla="+- h 0 yC6" />\r
--\r
--\r
-- <gd name="aD4" fmla="+- 9000000 ha 0" />\r
--\r
-- <gd name="td41" fmla="cos rw aD4" />\r
-- <gd name="td42" fmla="sin rh aD4" />\r
-- <gd name="bD4" fmla="at2 td41 td42" />\r
--\r
--\r
-- <gd name="xD4" fmla="+- w 0 xD1" />\r
--\r
--\r
-- <gd name="xC4" fmla="+- w 0 xC1" />\r
--\r
--\r
-- <gd name="xB4" fmla="+- w 0 xB1" />\r
--\r
--\r
-- <gd name="aD5" fmla="+- 12600000 ha 0" />\r
--\r
-- <gd name="td51" fmla="cos rw aD5" />\r
-- <gd name="td52" fmla="sin rh aD5" />\r
-- <gd name="bD5" fmla="at2 td51 td52" />\r
--\r
--\r
-- <gd name="xD5" fmla="+- w 0 xA1" />\r
--\r
--\r
-- <gd name="xC5" fmla="+- w 0 xB1" />\r
--\r
--\r
-- <gd name="xB5" fmla="+- w 0 xC1" />\r
--\r
--\r
-- <gd name="xCxn1" fmla="+/ xB1 xC1 2" />\r
-- <gd name="yCxn1" fmla="+/ yB1 yC1 2" />\r
-- <gd name="yCxn2" fmla="+- b 0 yCxn1" />\r
-- <gd name="xCxn4" fmla="+/ r 0 xCxn1" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="20000">\r
-- <pos x="xD6" y="yD6" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="5358">\r
-- <pos x="xA6" y="yD6" />\r
-- </ahXY>\r
--\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="19800000">\r
-- <pos x="xCxn1" y="yCxn1" />\r
-- </cxn>\r
--\r
-- <cxn ang="1800000">\r
-- <pos x="xCxn1" y="yCxn2" />\r
-- </cxn>\r
--\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="yB3" />\r
-- </cxn>\r
--\r
-- <cxn ang="9000000">\r
-- <pos x="xCxn4" y="yCxn2" />\r
-- </cxn>\r
--\r
-- <cxn ang="12600000">\r
-- <pos x="xCxn4" y="yCxn1" />\r
-- </cxn>\r
--\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="yC6" />\r
-- </cxn>\r
--\r
-- </cxnLst>\r
--\r
-- <rect l="xD5" t="yA1" r="xA1" b="yD2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="xA1" y="yA1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="xB1" y="yB1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC1" y="yC1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD1" y="yD1" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD1" swAng="swAng2" />\r
--\r
-- <lnTo>\r
-- <pt x="xC1" y="yB2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xB1" y="yC2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xA1" y="yD2" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD2" swAng="swAng1" />\r
--\r
-- <lnTo>\r
-- <pt x="xF6" y="yB3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xE6" y="yB3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xA6" y="yD3" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD3" swAng="swAng1" />\r
--\r
-- <lnTo>\r
-- <pt x="xB4" y="yC2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC4" y="yB2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD4" y="yA2" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD4" swAng="swAng2" />\r
--\r
-- <lnTo>\r
-- <pt x="xB5" y="yC1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC5" y="yB1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD5" y="yA1" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD5" swAng="swAng1" />\r
--\r
-- <lnTo>\r
-- <pt x="xE6" y="yC6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xF6" y="yC6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD6" y="yD6" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD6" swAng="swAng1" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </gear6>\r
-- <gear9>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 10000" />\r
--\r
-- <gd name="adj2" fmla="val 1763" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
--\r
--\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 20000" />\r
-- <gd name="a2" fmla="pin 0 adj2 2679" />\r
--\r
--\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
-- <gd name="lFD" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="th2" fmla="*/ th 1 2" />\r
-- <gd name="l2" fmla="*/ lFD 1 2" />\r
-- <gd name="l3" fmla="+- th2 l2 0" />\r
--\r
--\r
-- <gd name="rh" fmla="+- hd2 0 th" />\r
-- <gd name="rw" fmla="+- wd2 0 th" />\r
--\r
--\r
-- <gd name="dr" fmla="+- rw 0 rh" />\r
-- <gd name="maxr" fmla="?: dr rh rw" />\r
-- <gd name="ha" fmla="at2 maxr l3" />\r
--\r
--\r
-- <gd name="aA1" fmla="+- 18600000 0 ha" />\r
-- <gd name="aD1" fmla="+- 18600000 ha 0" />\r
--\r
--\r
-- <gd name="ta11" fmla="cos rw aA1" />\r
-- <gd name="ta12" fmla="sin rh aA1" />\r
-- <gd name="bA1" fmla="at2 ta11 ta12" />\r
--\r
-- <gd name="cta1" fmla="cos rh bA1" />\r
-- <gd name="sta1" fmla="sin rw bA1" />\r
-- <gd name="ma1" fmla="mod cta1 sta1 0" />\r
-- <gd name="na1" fmla="*/ rw rh ma1" />\r
-- <gd name="dxa1" fmla="cos na1 bA1" />\r
-- <gd name="dya1" fmla="sin na1 bA1" />\r
-- <gd name="xA1" fmla="+- hc dxa1 0" />\r
-- <gd name="yA1" fmla="+- vc dya1 0" />\r
--\r
--\r
-- <gd name="td11" fmla="cos rw aD1" />\r
-- <gd name="td12" fmla="sin rh aD1" />\r
-- <gd name="bD1" fmla="at2 td11 td12" />\r
--\r
-- <gd name="ctd1" fmla="cos rh bD1" />\r
-- <gd name="std1" fmla="sin rw bD1" />\r
-- <gd name="md1" fmla="mod ctd1 std1 0" />\r
-- <gd name="nd1" fmla="*/ rw rh md1" />\r
-- <gd name="dxd1" fmla="cos nd1 bD1" />\r
-- <gd name="dyd1" fmla="sin nd1 bD1" />\r
-- <gd name="xD1" fmla="+- hc dxd1 0" />\r
-- <gd name="yD1" fmla="+- vc dyd1 0" />\r
--\r
--\r
-- <gd name="xAD1" fmla="+- xA1 0 xD1" />\r
-- <gd name="yAD1" fmla="+- yA1 0 yD1" />\r
-- <gd name="lAD1" fmla="mod xAD1 yAD1 0" />\r
-- <gd name="a1" fmla="at2 yAD1 xAD1" />\r
--\r
--\r
-- <gd name="dxF1" fmla="sin lFD a1" />\r
-- <gd name="dyF1" fmla="cos lFD a1" />\r
-- <gd name="xF1" fmla="+- xD1 dxF1 0" />\r
-- <gd name="yF1" fmla="+- yD1 dyF1 0" />\r
-- <gd name="xE1" fmla="+- xA1 0 dxF1" />\r
-- <gd name="yE1" fmla="+- yA1 0 dyF1" />\r
--\r
--\r
-- <gd name="yC1t" fmla="sin th a1" />\r
-- <gd name="xC1t" fmla="cos th a1" />\r
-- <gd name="yC1" fmla="+- yF1 yC1t 0" />\r
-- <gd name="xC1" fmla="+- xF1 0 xC1t" />\r
--\r
--\r
-- <gd name="yB1" fmla="+- yE1 yC1t 0" />\r
-- <gd name="xB1" fmla="+- xE1 0 xC1t" />\r
--\r
--\r
-- <gd name="aA2" fmla="+- 21000000 0 ha" />\r
-- <gd name="aD2" fmla="+- 21000000 ha 0" />\r
--\r
--\r
-- <gd name="ta21" fmla="cos rw aA2" />\r
-- <gd name="ta22" fmla="sin rh aA2" />\r
-- <gd name="bA2" fmla="at2 ta21 ta22" />\r
--\r
-- <gd name="cta2" fmla="cos rh bA2" />\r
-- <gd name="sta2" fmla="sin rw bA2" />\r
-- <gd name="ma2" fmla="mod cta2 sta2 0" />\r
-- <gd name="na2" fmla="*/ rw rh ma2" />\r
-- <gd name="dxa2" fmla="cos na2 bA2" />\r
-- <gd name="dya2" fmla="sin na2 bA2" />\r
-- <gd name="xA2" fmla="+- hc dxa2 0" />\r
-- <gd name="yA2" fmla="+- vc dya2 0" />\r
--\r
--\r
-- <gd name="td21" fmla="cos rw aD2" />\r
-- <gd name="td22" fmla="sin rh aD2" />\r
-- <gd name="bD2" fmla="at2 td21 td22" />\r
--\r
-- <gd name="ctd2" fmla="cos rh bD2" />\r
-- <gd name="std2" fmla="sin rw bD2" />\r
-- <gd name="md2" fmla="mod ctd2 std2 0" />\r
-- <gd name="nd2" fmla="*/ rw rh md2" />\r
-- <gd name="dxd2" fmla="cos nd2 bD2" />\r
-- <gd name="dyd2" fmla="sin nd2 bD2" />\r
-- <gd name="xD2" fmla="+- hc dxd2 0" />\r
-- <gd name="yD2" fmla="+- vc dyd2 0" />\r
--\r
--\r
-- <gd name="xAD2" fmla="+- xA2 0 xD2" />\r
-- <gd name="yAD2" fmla="+- yA2 0 yD2" />\r
-- <gd name="lAD2" fmla="mod xAD2 yAD2 0" />\r
-- <gd name="a2" fmla="at2 yAD2 xAD2" />\r
--\r
--\r
-- <gd name="dxF2" fmla="sin lFD a2" />\r
-- <gd name="dyF2" fmla="cos lFD a2" />\r
-- <gd name="xF2" fmla="+- xD2 dxF2 0" />\r
-- <gd name="yF2" fmla="+- yD2 dyF2 0" />\r
-- <gd name="xE2" fmla="+- xA2 0 dxF2" />\r
-- <gd name="yE2" fmla="+- yA2 0 dyF2" />\r
--\r
--\r
-- <gd name="yC2t" fmla="sin th a2" />\r
-- <gd name="xC2t" fmla="cos th a2" />\r
-- <gd name="yC2" fmla="+- yF2 yC2t 0" />\r
-- <gd name="xC2" fmla="+- xF2 0 xC2t" />\r
--\r
--\r
-- <gd name="yB2" fmla="+- yE2 yC2t 0" />\r
-- <gd name="xB2" fmla="+- xE2 0 xC2t" />\r
--\r
-- <gd name="swAng1" fmla="+- bA2 0 bD1" />\r
--\r
--\r
-- <gd name="aA3" fmla="+- 1800000 0 ha" />\r
-- <gd name="aD3" fmla="+- 1800000 ha 0" />\r
--\r
--\r
-- <gd name="ta31" fmla="cos rw aA3" />\r
-- <gd name="ta32" fmla="sin rh aA3" />\r
-- <gd name="bA3" fmla="at2 ta31 ta32" />\r
--\r
-- <gd name="cta3" fmla="cos rh bA3" />\r
-- <gd name="sta3" fmla="sin rw bA3" />\r
-- <gd name="ma3" fmla="mod cta3 sta3 0" />\r
-- <gd name="na3" fmla="*/ rw rh ma3" />\r
-- <gd name="dxa3" fmla="cos na3 bA3" />\r
-- <gd name="dya3" fmla="sin na3 bA3" />\r
-- <gd name="xA3" fmla="+- hc dxa3 0" />\r
-- <gd name="yA3" fmla="+- vc dya3 0" />\r
--\r
--\r
-- <gd name="td31" fmla="cos rw aD3" />\r
-- <gd name="td32" fmla="sin rh aD3" />\r
-- <gd name="bD3" fmla="at2 td31 td32" />\r
--\r
-- <gd name="ctd3" fmla="cos rh bD3" />\r
-- <gd name="std3" fmla="sin rw bD3" />\r
-- <gd name="md3" fmla="mod ctd3 std3 0" />\r
-- <gd name="nd3" fmla="*/ rw rh md3" />\r
-- <gd name="dxd3" fmla="cos nd3 bD3" />\r
-- <gd name="dyd3" fmla="sin nd3 bD3" />\r
-- <gd name="xD3" fmla="+- hc dxd3 0" />\r
-- <gd name="yD3" fmla="+- vc dyd3 0" />\r
--\r
--\r
-- <gd name="xAD3" fmla="+- xA3 0 xD3" />\r
-- <gd name="yAD3" fmla="+- yA3 0 yD3" />\r
-- <gd name="lAD3" fmla="mod xAD3 yAD3 0" />\r
-- <gd name="a3" fmla="at2 yAD3 xAD3" />\r
--\r
--\r
-- <gd name="dxF3" fmla="sin lFD a3" />\r
-- <gd name="dyF3" fmla="cos lFD a3" />\r
-- <gd name="xF3" fmla="+- xD3 dxF3 0" />\r
-- <gd name="yF3" fmla="+- yD3 dyF3 0" />\r
-- <gd name="xE3" fmla="+- xA3 0 dxF3" />\r
-- <gd name="yE3" fmla="+- yA3 0 dyF3" />\r
--\r
--\r
-- <gd name="yC3t" fmla="sin th a3" />\r
-- <gd name="xC3t" fmla="cos th a3" />\r
-- <gd name="yC3" fmla="+- yF3 yC3t 0" />\r
-- <gd name="xC3" fmla="+- xF3 0 xC3t" />\r
--\r
--\r
-- <gd name="yB3" fmla="+- yE3 yC3t 0" />\r
-- <gd name="xB3" fmla="+- xE3 0 xC3t" />\r
--\r
-- <gd name="swAng2" fmla="+- bA3 0 bD2" />\r
--\r
--\r
-- <gd name="aA4" fmla="+- 4200000 0 ha" />\r
-- <gd name="aD4" fmla="+- 4200000 ha 0" />\r
--\r
--\r
-- <gd name="ta41" fmla="cos rw aA4" />\r
-- <gd name="ta42" fmla="sin rh aA4" />\r
-- <gd name="bA4" fmla="at2 ta41 ta42" />\r
--\r
-- <gd name="cta4" fmla="cos rh bA4" />\r
-- <gd name="sta4" fmla="sin rw bA4" />\r
-- <gd name="ma4" fmla="mod cta4 sta4 0" />\r
-- <gd name="na4" fmla="*/ rw rh ma4" />\r
-- <gd name="dxa4" fmla="cos na4 bA4" />\r
-- <gd name="dya4" fmla="sin na4 bA4" />\r
-- <gd name="xA4" fmla="+- hc dxa4 0" />\r
-- <gd name="yA4" fmla="+- vc dya4 0" />\r
--\r
--\r
-- <gd name="td41" fmla="cos rw aD4" />\r
-- <gd name="td42" fmla="sin rh aD4" />\r
-- <gd name="bD4" fmla="at2 td41 td42" />\r
--\r
-- <gd name="ctd4" fmla="cos rh bD4" />\r
-- <gd name="std4" fmla="sin rw bD4" />\r
-- <gd name="md4" fmla="mod ctd4 std4 0" />\r
-- <gd name="nd4" fmla="*/ rw rh md4" />\r
-- <gd name="dxd4" fmla="cos nd4 bD4" />\r
-- <gd name="dyd4" fmla="sin nd4 bD4" />\r
-- <gd name="xD4" fmla="+- hc dxd4 0" />\r
-- <gd name="yD4" fmla="+- vc dyd4 0" />\r
--\r
--\r
-- <gd name="xAD4" fmla="+- xA4 0 xD4" />\r
-- <gd name="yAD4" fmla="+- yA4 0 yD4" />\r
-- <gd name="lAD4" fmla="mod xAD4 yAD4 0" />\r
-- <gd name="a4" fmla="at2 yAD4 xAD4" />\r
--\r
--\r
-- <gd name="dxF4" fmla="sin lFD a4" />\r
-- <gd name="dyF4" fmla="cos lFD a4" />\r
-- <gd name="xF4" fmla="+- xD4 dxF4 0" />\r
-- <gd name="yF4" fmla="+- yD4 dyF4 0" />\r
-- <gd name="xE4" fmla="+- xA4 0 dxF4" />\r
-- <gd name="yE4" fmla="+- yA4 0 dyF4" />\r
--\r
--\r
-- <gd name="yC4t" fmla="sin th a4" />\r
-- <gd name="xC4t" fmla="cos th a4" />\r
-- <gd name="yC4" fmla="+- yF4 yC4t 0" />\r
-- <gd name="xC4" fmla="+- xF4 0 xC4t" />\r
--\r
--\r
-- <gd name="yB4" fmla="+- yE4 yC4t 0" />\r
-- <gd name="xB4" fmla="+- xE4 0 xC4t" />\r
--\r
-- <gd name="swAng3" fmla="+- bA4 0 bD3" />\r
--\r
--\r
-- <gd name="aA5" fmla="+- 6600000 0 ha" />\r
-- <gd name="aD5" fmla="+- 6600000 ha 0" />\r
--\r
-- <gd name="ta51" fmla="cos rw aA5" />\r
-- <gd name="ta52" fmla="sin rh aA5" />\r
-- <gd name="bA5" fmla="at2 ta51 ta52" />\r
--\r
-- <gd name="td51" fmla="cos rw aD5" />\r
-- <gd name="td52" fmla="sin rh aD5" />\r
-- <gd name="bD5" fmla="at2 td51 td52" />\r
--\r
--\r
-- <gd name="xD5" fmla="+- w 0 xA4" />\r
--\r
--\r
-- <gd name="xC5" fmla="+- w 0 xB4" />\r
--\r
--\r
-- <gd name="xB5" fmla="+- w 0 xC4" />\r
--\r
-- <gd name="swAng4" fmla="+- bA5 0 bD4" />\r
--\r
--\r
-- <gd name="aD6" fmla="+- 9000000 ha 0" />\r
--\r
-- <gd name="td61" fmla="cos rw aD6" />\r
-- <gd name="td62" fmla="sin rh aD6" />\r
-- <gd name="bD6" fmla="at2 td61 td62" />\r
--\r
--\r
-- <gd name="xD6" fmla="+- w 0 xA3" />\r
--\r
--\r
-- <gd name="xC6" fmla="+- w 0 xB3" />\r
--\r
--\r
-- <gd name="xB6" fmla="+- w 0 xC3" />\r
--\r
--\r
-- <gd name="aD7" fmla="+- 11400000 ha 0" />\r
--\r
-- <gd name="td71" fmla="cos rw aD7" />\r
-- <gd name="td72" fmla="sin rh aD7" />\r
-- <gd name="bD7" fmla="at2 td71 td72" />\r
--\r
--\r
-- <gd name="xD7" fmla="+- w 0 xA2" />\r
--\r
--\r
-- <gd name="xC7" fmla="+- w 0 xB2" />\r
--\r
--\r
-- <gd name="xB7" fmla="+- w 0 xC2" />\r
--\r
--\r
-- <gd name="aD8" fmla="+- 13800000 ha 0" />\r
--\r
-- <gd name="td81" fmla="cos rw aD8" />\r
-- <gd name="td82" fmla="sin rh aD8" />\r
-- <gd name="bD8" fmla="at2 td81 td82" />\r
--\r
--\r
-- <gd name="xA8" fmla="+- w 0 xD1" />\r
--\r
-- <gd name="xD8" fmla="+- w 0 xA1" />\r
--\r
--\r
-- <gd name="xC8" fmla="+- w 0 xB1" />\r
--\r
--\r
-- <gd name="xB8" fmla="+- w 0 xC1" />\r
--\r
--\r
-- <gd name="aA9" fmla="+- 3cd4 0 ha" />\r
-- <gd name="aD9" fmla="+- 3cd4 ha 0" />\r
--\r
--\r
-- <gd name="td91" fmla="cos rw aD9" />\r
-- <gd name="td92" fmla="sin rh aD9" />\r
-- <gd name="bD9" fmla="at2 td91 td92" />\r
--\r
-- <gd name="ctd9" fmla="cos rh bD9" />\r
-- <gd name="std9" fmla="sin rw bD9" />\r
-- <gd name="md9" fmla="mod ctd9 std9 0" />\r
-- <gd name="nd9" fmla="*/ rw rh md9" />\r
-- <gd name="dxd9" fmla="cos nd9 bD9" />\r
-- <gd name="dyd9" fmla="sin nd9 bD9" />\r
-- <gd name="xD9" fmla="+- hc dxd9 0" />\r
-- <gd name="yD9" fmla="+- vc dyd9 0" />\r
--\r
--\r
-- <gd name="ta91" fmla="cos rw aA9" />\r
-- <gd name="ta92" fmla="sin rh aA9" />\r
-- <gd name="bA9" fmla="at2 ta91 ta92" />\r
--\r
-- <gd name="xA9" fmla="+- hc 0 dxd9" />\r
--\r
--\r
-- <gd name="xF9" fmla="+- xD9 0 lFD" />\r
-- <gd name="xE9" fmla="+- xA9 lFD 0" />\r
--\r
--\r
-- <gd name="yC9" fmla="+- yD9 0 th" />\r
--\r
-- <gd name="swAng5" fmla="+- bA9 0 bD8" />\r
--\r
--\r
-- <gd name="xCxn1" fmla="+/ xB1 xC1 2" />\r
-- <gd name="yCxn1" fmla="+/ yB1 yC1 2" />\r
-- <gd name="xCxn2" fmla="+/ xB2 xC2 2" />\r
-- <gd name="yCxn2" fmla="+/ yB2 yC2 2" />\r
-- <gd name="xCxn3" fmla="+/ xB3 xC3 2" />\r
-- <gd name="yCxn3" fmla="+/ yB3 yC3 2" />\r
-- <gd name="xCxn4" fmla="+/ xB4 xC4 2" />\r
-- <gd name="yCxn4" fmla="+/ yB4 yC4 2" />\r
-- <gd name="xCxn5" fmla="+/ r 0 xCxn4" />\r
-- <gd name="xCxn6" fmla="+/ r 0 xCxn3" />\r
-- <gd name="xCxn7" fmla="+/ r 0 xCxn2" />\r
-- <gd name="xCxn8" fmla="+/ r 0 xCxn1" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="20000">\r
-- <pos x="xD9" y="yD9" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="2679">\r
-- <pos x="xA9" y="yD9" />\r
-- </ahXY>\r
--\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="18600000">\r
-- <pos x="xCxn1" y="yCxn1" />\r
-- </cxn>\r
--\r
-- <cxn ang="21000000">\r
-- <pos x="xCxn2" y="yCxn2" />\r
-- </cxn>\r
--\r
-- <cxn ang="1800000">\r
-- <pos x="xCxn3" y="yCxn3" />\r
-- </cxn>\r
--\r
-- <cxn ang="4200000">\r
-- <pos x="xCxn4" y="yCxn4" />\r
-- </cxn>\r
--\r
-- <cxn ang="6600000">\r
-- <pos x="xCxn5" y="yCxn4" />\r
-- </cxn>\r
--\r
-- <cxn ang="9000000">\r
-- <pos x="xCxn6" y="yCxn3" />\r
-- </cxn>\r
--\r
-- <cxn ang="11400000">\r
-- <pos x="xCxn7" y="yCxn2" />\r
-- </cxn>\r
--\r
-- <cxn ang="13800000">\r
-- <pos x="xCxn8" y="yCxn1" />\r
-- </cxn>\r
--\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="yC9" />\r
-- </cxn>\r
--\r
-- </cxnLst>\r
--\r
-- <rect l="xA8" t="yD1" r="xD1" b="yD3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="xA1" y="yA1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="xB1" y="yB1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC1" y="yC1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD1" y="yD1" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD1" swAng="swAng1" />\r
--\r
-- <lnTo>\r
-- <pt x="xB2" y="yB2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC2" y="yC2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD2" y="yD2" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD2" swAng="swAng2" />\r
--\r
-- <lnTo>\r
-- <pt x="xB3" y="yB3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC3" y="yC3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD3" y="yD3" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD3" swAng="swAng3" />\r
--\r
-- <lnTo>\r
-- <pt x="xB4" y="yB4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC4" y="yC4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD4" y="yD4" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD4" swAng="swAng4" />\r
--\r
-- <lnTo>\r
-- <pt x="xB5" y="yC4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC5" y="yB4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD5" y="yA4" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD5" swAng="swAng3" />\r
--\r
-- <lnTo>\r
-- <pt x="xB6" y="yC3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC6" y="yB3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD6" y="yA3" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD6" swAng="swAng2" />\r
--\r
-- <lnTo>\r
-- <pt x="xB7" y="yC2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC7" y="yB2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD7" y="yA2" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD7" swAng="swAng1" />\r
--\r
-- <lnTo>\r
-- <pt x="xB8" y="yC1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC8" y="yB1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD8" y="yA1" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD8" swAng="swAng5" />\r
--\r
-- <lnTo>\r
-- <pt x="xE9" y="yC9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xF9" y="yC9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD9" y="yD9" />\r
-- </lnTo>\r
-- <arcTo hR="rh" wR="rw" stAng="bD9" swAng="swAng5" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </gear9>\r
-- <halfFrame>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 33333" />\r
--\r
-- <gd name="adj2" fmla="val 33333" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="x1" fmla="*/ ss a2 100000" />\r
-- <gd name="g1" fmla="*/ h x1 w" />\r
-- <gd name="g2" fmla="+- h 0 g1" />\r
-- <gd name="maxAdj1" fmla="*/ 100000 g2 ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="y1" fmla="*/ ss a1 100000" />\r
-- <gd name="dx2" fmla="*/ y1 w h" />\r
-- <gd name="x2" fmla="+- r 0 dx2" />\r
-- <gd name="dy2" fmla="*/ x1 h w" />\r
-- <gd name="y2" fmla="+- b 0 dy2" />\r
-- <gd name="cx1" fmla="*/ x1 1 2" />\r
-- <gd name="cy1" fmla="+/ y2 b 2" />\r
-- <gd name="cx2" fmla="+/ x2 r 2" />\r
-- <gd name="cy2" fmla="*/ y1 1 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="cx2" y="cy2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="cx1" y="cy1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </halfFrame>\r
-- <heart>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dx1" fmla="*/ w 49 48" />\r
-- <gd name="dx2" fmla="*/ w 10 48" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- t 0 hd3" />\r
--\r
--\r
-- <gd name="il" fmla="*/ w 1 6" />\r
-- <gd name="ir" fmla="*/ w 5 6" />\r
-- <gd name="ib" fmla="*/ h 2 3" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="hd4" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="hd4" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="hc" y="hd4" />\r
-- </moveTo>\r
-- <cubicBezTo>\r
-- <pt x="x3" y="y1" />\r
-- <pt x="x4" y="hd4" />\r
-- <pt x="hc" y="b" />\r
-- </cubicBezTo>\r
-- <cubicBezTo>\r
-- <pt x="x1" y="hd4" />\r
-- <pt x="x2" y="y1" />\r
-- <pt x="hc" y="hd4" />\r
-- </cubicBezTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </heart>\r
-- <heptagon>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="hf" fmla="val 102572" />\r
-- <gd name="vf" fmla="val 105210" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
-- <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
-- <gd name="svc" fmla="*/ vc vf 100000" />\r
-- <gd name="dx1" fmla="*/ swd2 97493 100000" />\r
-- <gd name="dx2" fmla="*/ swd2 78183 100000" />\r
-- <gd name="dx3" fmla="*/ swd2 43388 100000" />\r
-- <gd name="dy1" fmla="*/ shd2 62349 100000" />\r
-- <gd name="dy2" fmla="*/ shd2 22252 100000" />\r
-- <gd name="dy3" fmla="*/ shd2 90097 100000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc 0 dx3" />\r
-- <gd name="x4" fmla="+- hc dx3 0" />\r
-- <gd name="x5" fmla="+- hc dx2 0" />\r
-- <gd name="x6" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- svc 0 dy1" />\r
-- <gd name="y2" fmla="+- svc dy2 0" />\r
-- <gd name="y3" fmla="+- svc dy3 0" />\r
-- <gd name="ib" fmla="+- b 0 y1" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x5" y="y1" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x6" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x4" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x2" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x2" t="y1" r="x5" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </heptagon>\r
-- <hexagon>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 25000" />\r
-- <gd name="vf" fmla="val 115470" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj" fmla="*/ 50000 w ss" />\r
-- <gd name="a" fmla="pin 0 adj maxAdj" />\r
-- <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
-- <gd name="x1" fmla="*/ ss a 100000" />\r
-- <gd name="x2" fmla="+- r 0 x1" />\r
-- <gd name="dy1" fmla="sin shd2 3600000" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc dy1 0" />\r
-- <gd name="q1" fmla="*/ maxAdj -1 2" />\r
-- <gd name="q2" fmla="+- a q1 0" />\r
-- <gd name="q3" fmla="?: q2 4 2" />\r
-- <gd name="q4" fmla="?: q2 3 2" />\r
-- <gd name="q5" fmla="?: q2 q1 0" />\r
-- <gd name="q6" fmla="+/ a q5 q1" />\r
-- <gd name="q7" fmla="*/ q6 q4 -1" />\r
-- <gd name="q8" fmla="+- q3 q7 0" />\r
-- <gd name="il" fmla="*/ w q8 24" />\r
-- <gd name="it" fmla="*/ h q8 24" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 it" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </hexagon>\r
-- <homePlate>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj" fmla="*/ 100000 w ss" />\r
-- <gd name="a" fmla="pin 0 adj maxAdj" />\r
-- <gd name="dx1" fmla="*/ ss a 100000" />\r
-- <gd name="x1" fmla="+- r 0 dx1" />\r
-- <gd name="ir" fmla="+/ x1 r 2" />\r
-- <gd name="x2" fmla="*/ x1 1 2" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </homePlate>\r
-- <horizontalScroll>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 12500" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 25000" />\r
-- <gd name="ch" fmla="*/ ss a 100000" />\r
--\r
-- <gd name="ch2" fmla="*/ ch 1 2" />\r
--\r
-- <gd name="ch4" fmla="*/ ch 1 4" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="y3" fmla="+- ch ch2 0" />\r
--\r
-- <gd name="y4" fmla="+- ch ch 0" />\r
--\r
-- <gd name="y6" fmla="+- b 0 ch" />\r
--\r
-- <gd name="y7" fmla="+- b 0 ch2" />\r
--\r
-- <gd name="y5" fmla="+- y6 0 ch2" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="x3" fmla="+- r 0 ch" />\r
--\r
-- <gd name="x4" fmla="+- r 0 ch2" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="25000">\r
-- <pos x="ch" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="ch" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="y6" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="ch" t="ch" r="x4" b="y6" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="r" y="ch2" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x4" y="ch2" />\r
-- </lnTo>\r
-- <arcTo wR="ch4" hR="ch4" stAng="0" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x3" y="ch" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="ch2" y="ch" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="l" y="y7" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="ch" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y6" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="ch2" y="y4" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
-- <arcTo wR="ch4" hR="ch4" stAng="0" swAng="-10800000" />\r
-- <close />\r
-- </path>\r
-- <path fill="darkenLess" stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="ch2" y="y4" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
-- <arcTo wR="ch4" hR="ch4" stAng="0" swAng="-10800000" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x4" y="ch" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-16200000" />\r
-- <arcTo wR="ch4" hR="ch4" stAng="cd2" swAng="-10800000" />\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="y3" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x3" y="ch" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="ch2" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="r" y="y5" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="ch" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="ch" y="y7" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd2" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x3" y="ch" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="ch" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
-- <moveTo>\r
-- <pt x="x4" y="ch" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="ch2" />\r
-- </lnTo>\r
-- <arcTo wR="ch4" hR="ch4" stAng="0" swAng="cd2" />\r
-- <moveTo>\r
-- <pt x="ch2" y="y4" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="ch2" y="y3" />\r
-- </lnTo>\r
-- <arcTo wR="ch4" hR="ch4" stAng="cd2" swAng="cd2" />\r
-- <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd2" />\r
-- <moveTo>\r
-- <pt x="ch" y="y3" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="ch" y="y6" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </horizontalScroll>\r
-- <irregularSeal1>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x5" fmla="*/ w 4627 21600" />\r
-- <gd name="x12" fmla="*/ w 8485 21600" />\r
-- <gd name="x21" fmla="*/ w 16702 21600" />\r
-- <gd name="x24" fmla="*/ w 14522 21600" />\r
-- <gd name="y3" fmla="*/ h 6320 21600" />\r
-- <gd name="y6" fmla="*/ h 8615 21600" />\r
-- <gd name="y9" fmla="*/ h 13937 21600" />\r
-- <gd name="y18" fmla="*/ h 13290 21600" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x24" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y6" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x12" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y18" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x5" t="y3" r="x21" b="y9" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="21600" h="21600">\r
-- <moveTo>\r
-- <pt x="10800" y="5800" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="14522" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="14155" y="5325" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="18380" y="4457" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="16702" y="7315" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="21097" y="8137" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="17607" y="10475" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="21600" y="13290" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="16837" y="12942" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="18145" y="18095" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="14020" y="14457" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="13247" y="19737" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10532" y="14935" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="8485" y="21600" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="7715" y="15627" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="4762" y="17617" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="5667" y="13937" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="135" y="14587" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="3722" y="11775" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="8615" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="4627" y="7617" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="370" y="2295" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="7312" y="6320" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="8352" y="2295" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </irregularSeal1>\r
-- <irregularSeal2>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x2" fmla="*/ w 9722 21600" />\r
-- <gd name="x5" fmla="*/ w 5372 21600" />\r
-- <gd name="x16" fmla="*/ w 11612 21600" />\r
-- <gd name="x19" fmla="*/ w 14640 21600" />\r
-- <gd name="y2" fmla="*/ h 1887 21600" />\r
-- <gd name="y3" fmla="*/ h 6382 21600" />\r
-- <gd name="y8" fmla="*/ h 12877 21600" />\r
-- <gd name="y14" fmla="*/ h 19712 21600" />\r
-- <gd name="y16" fmla="*/ h 18842 21600" />\r
-- <gd name="y17" fmla="*/ h 15935 21600" />\r
-- <gd name="y24" fmla="*/ h 6645 21600" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y8" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x16" y="y16" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y24" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x5" t="y3" r="x19" b="y17" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="21600" h="21600">\r
-- <moveTo>\r
-- <pt x="11462" y="4342" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="14790" y="0" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="14525" y="5777" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="18007" y="3172" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="16380" y="6532" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="21600" y="6645" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="16985" y="9402" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="18270" y="11290" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="16380" y="12310" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="18877" y="15632" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="14640" y="14350" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="14942" y="17370" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="12180" y="15935" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="11612" y="18842" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="9872" y="17370" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="8700" y="19712" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="7527" y="18125" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="4917" y="21600" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="4805" y="18240" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1285" y="17825" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="3330" y="15370" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="12877" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="3935" y="11592" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="1172" y="8270" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="5372" y="7817" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="4502" y="3625" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="8550" y="6382" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="9722" y="1887" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </irregularSeal2>\r
-- <leftArrow>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="dx2" fmla="*/ ss a2 100000" />\r
-- <gd name="x2" fmla="+- l dx2 0" />\r
-- <gd name="dy1" fmla="*/ h a1 200000" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc dy1 0" />\r
-- <gd name="dx1" fmla="*/ y1 dx2 hd2" />\r
-- <gd name="x1" fmla="+- x2 0 dx1" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
-- <pos x="r" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="x1" t="y1" r="r" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </leftArrow>\r
-- <leftArrowCallout>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- <gd name="adj4" fmla="val 64977" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="*/ 100000 w ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="q2" fmla="*/ a3 ss w" />\r
--\r
-- <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
--\r
-- <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
-- <gd name="dy1" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="dy2" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
-- <gd name="y3" fmla="+- vc dy2 0" />\r
-- <gd name="y4" fmla="+- vc dy1 0" />\r
-- <gd name="x1" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="dx2" fmla="*/ w a4 100000" />\r
--\r
-- <gd name="x2" fmla="+- r 0 dx2" />\r
-- <gd name="x3" fmla="+/ x2 r 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
-- <pos x="x1" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
-- <pos x="x2" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x2" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </leftArrowCallout>\r
-- <leftBrace>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 8333" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a2" fmla="pin 0 adj2 100000" />\r
-- <gd name="q1" fmla="+- 100000 0 a2" />\r
-- <gd name="q2" fmla="min q1 a2" />\r
-- <gd name="q3" fmla="*/ q2 1 2" />\r
-- <gd name="maxAdj1" fmla="*/ q3 h ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="y1" fmla="*/ ss a1 100000" />\r
-- <gd name="y3" fmla="*/ h a2 100000" />\r
-- <gd name="y4" fmla="+- y3 y1 0" />\r
-- <gd name="dx1" fmla="cos wd2 2700000" />\r
-- <gd name="dy1" fmla="sin y1 2700000" />\r
-- <gd name="il" fmla="+- r 0 dx1" />\r
-- <gd name="it" fmla="+- y1 0 dy1" />\r
-- <gd name="ib" fmla="+- b dy1 y1" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
-- <pos x="hc" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="100000">\r
-- <pos x="l" y="y3" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="r" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y3" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="it" r="r" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="r" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="hc" y="y4" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="0" swAng="-5400000" />\r
-- <arcTo wR="wd2" hR="y1" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="hc" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="r" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="hc" y="y4" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="0" swAng="-5400000" />\r
-- <arcTo wR="wd2" hR="y1" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="hc" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="cd4" />\r
-- </path>\r
-- </pathLst>\r
-- </leftBrace>\r
-- <leftBracket>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 8333" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj" fmla="*/ 50000 h ss" />\r
--\r
-- <gd name="a" fmla="pin 0 adj maxAdj" />\r
-- <gd name="y1" fmla="*/ ss a 100000" />\r
--\r
-- <gd name="y2" fmla="+- b 0 y1" />\r
--\r
-- <gd name="dx1" fmla="cos w 2700000" />\r
-- <gd name="dy1" fmla="sin y1 2700000" />\r
-- <gd name="il" fmla="+- r 0 dx1" />\r
-- <gd name="it" fmla="+- y1 0 dy1" />\r
-- <gd name="ib" fmla="+- b dy1 y1" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="maxAdj">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="r" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="r" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="r" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="y1" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="l" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="y1" stAng="cd2" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
--\r
-- <moveTo>\r
-- <pt x="r" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="y1" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="l" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="y1" stAng="cd2" swAng="cd4" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </leftBracket>\r
-- <leftCircularArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 12500" />\r
--\r
-- <gd name="adj2" fmla="val -1142319" />\r
--\r
-- <gd name="adj3" fmla="val 1142319" />\r
--\r
-- <gd name="adj4" fmla="val 10800000" />\r
--\r
-- <gd name="adj5" fmla="val 12500" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a5" fmla="pin 0 adj5 25000" />\r
--\r
-- <gd name="maxAdj1" fmla="*/ a5 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="enAng" fmla="pin 1 adj3 21599999" />\r
-- <gd name="stAng" fmla="pin 0 adj4 21599999" />\r
--\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="thh" fmla="*/ ss a5 100000" />\r
--\r
-- <gd name="th2" fmla="*/ th 1 2" />\r
--\r
--\r
-- <gd name="rw1" fmla="+- wd2 th2 thh" />\r
--\r
-- <gd name="rh1" fmla="+- hd2 th2 thh" />\r
--\r
-- <gd name="rw2" fmla="+- rw1 0 th" />\r
--\r
-- <gd name="rh2" fmla="+- rh1 0 th" />\r
--\r
-- <gd name="rw3" fmla="+- rw2 th2 0" />\r
--\r
-- <gd name="rh3" fmla="+- rh2 th2 0" />\r
--\r
--\r
-- <gd name="wtH" fmla="sin rw3 enAng" />\r
-- <gd name="htH" fmla="cos rh3 enAng" />\r
-- <gd name="dxH" fmla="cat2 rw3 htH wtH" />\r
-- <gd name="dyH" fmla="sat2 rh3 htH wtH" />\r
-- <gd name="xH" fmla="+- hc dxH 0" />\r
--\r
-- <gd name="yH" fmla="+- vc dyH 0" />\r
--\r
--\r
-- <gd name="rI" fmla="min rw2 rh2" />\r
--\r
-- <gd name="u1" fmla="*/ dxH dxH 1" />\r
-- <gd name="u2" fmla="*/ dyH dyH 1" />\r
-- <gd name="u3" fmla="*/ rI rI 1" />\r
-- <gd name="u4" fmla="+- u1 0 u3" />\r
-- <gd name="u5" fmla="+- u2 0 u3" />\r
-- <gd name="u6" fmla="*/ u4 u5 u1" />\r
-- <gd name="u7" fmla="*/ u6 1 u2" />\r
-- <gd name="u8" fmla="+- 1 0 u7" />\r
-- <gd name="u9" fmla="sqrt u8" />\r
-- <gd name="u10" fmla="*/ u4 1 dxH" />\r
-- <gd name="u11" fmla="*/ u10 1 dyH" />\r
-- <gd name="u12" fmla="+/ 1 u9 u11" />\r
-- <gd name="u13" fmla="at2 1 u12" />\r
-- <gd name="u14" fmla="+- u13 21600000 0" />\r
-- <gd name="u15" fmla="?: u13 u13 u14" />\r
-- <gd name="u16" fmla="+- u15 0 enAng" />\r
--\r
-- <gd name="u17" fmla="+- u16 21600000 0" />\r
-- <gd name="u18" fmla="?: u16 u16 u17" />\r
-- <gd name="u19" fmla="+- u18 0 cd2" />\r
-- <gd name="u20" fmla="+- u18 0 21600000" />\r
-- <gd name="u21" fmla="?: u19 u20 u18" />\r
-- <gd name="u22" fmla="abs u21" />\r
-- <gd name="minAng" fmla="*/ u22 -1 1" />\r
-- <gd name="u23" fmla="abs adj2" />\r
-- <gd name="a2" fmla="*/ u23 -1 1" />\r
-- <gd name="aAng" fmla="pin minAng a2 0" />\r
--\r
-- <gd name="ptAng" fmla="+- enAng aAng 0" />\r
--\r
--\r
-- <gd name="wtA" fmla="sin rw3 ptAng" />\r
-- <gd name="htA" fmla="cos rh3 ptAng" />\r
-- <gd name="dxA" fmla="cat2 rw3 htA wtA" />\r
-- <gd name="dyA" fmla="sat2 rh3 htA wtA" />\r
-- <gd name="xA" fmla="+- hc dxA 0" />\r
--\r
-- <gd name="yA" fmla="+- vc dyA 0" />\r
--\r
--\r
-- <gd name="wtE" fmla="sin rw1 stAng" />\r
-- <gd name="htE" fmla="cos rh1 stAng" />\r
-- <gd name="dxE" fmla="cat2 rw1 htE wtE" />\r
-- <gd name="dyE" fmla="sat2 rh1 htE wtE" />\r
-- <gd name="xE" fmla="+- hc dxE 0" />\r
--\r
-- <gd name="yE" fmla="+- vc dyE 0" />\r
--\r
--\r
-- <gd name="wtD" fmla="sin rw2 stAng" />\r
-- <gd name="htD" fmla="cos rh2 stAng" />\r
-- <gd name="dxD" fmla="cat2 rw2 htD wtD" />\r
-- <gd name="dyD" fmla="sat2 rh2 htD wtD" />\r
-- <gd name="xD" fmla="+- hc dxD 0" />\r
--\r
-- <gd name="yD" fmla="+- vc dyD 0" />\r
--\r
--\r
-- <gd name="dxG" fmla="cos thh ptAng" />\r
-- <gd name="dyG" fmla="sin thh ptAng" />\r
-- <gd name="xG" fmla="+- xH dxG 0" />\r
--\r
-- <gd name="yG" fmla="+- yH dyG 0" />\r
--\r
--\r
-- <gd name="dxB" fmla="cos thh ptAng" />\r
-- <gd name="dyB" fmla="sin thh ptAng" />\r
-- <gd name="xB" fmla="+- xH 0 dxB 0" />\r
--\r
-- <gd name="yB" fmla="+- yH 0 dyB 0" />\r
--\r
--\r
-- <gd name="sx1" fmla="+- xB 0 hc" />\r
--\r
-- <gd name="sy1" fmla="+- yB 0 vc" />\r
--\r
-- <gd name="sx2" fmla="+- xG 0 hc" />\r
--\r
-- <gd name="sy2" fmla="+- yG 0 vc" />\r
--\r
--\r
-- <gd name="rO" fmla="min rw1 rh1" />\r
--\r
-- <gd name="x1O" fmla="*/ sx1 rO rw1" />\r
--\r
-- <gd name="y1O" fmla="*/ sy1 rO rh1" />\r
--\r
-- <gd name="x2O" fmla="*/ sx2 rO rw1" />\r
--\r
-- <gd name="y2O" fmla="*/ sy2 rO rh1" />\r
--\r
--\r
-- <gd name="dxO" fmla="+- x2O 0 x1O" />\r
-- <gd name="dyO" fmla="+- y2O 0 y1O" />\r
-- <gd name="dO" fmla="mod dxO dyO 0" />\r
--\r
-- <gd name="q1" fmla="*/ x1O y2O 1" />\r
-- <gd name="q2" fmla="*/ x2O y1O 1" />\r
-- <gd name="DO" fmla="+- q1 0 q2" />\r
--\r
--\r
-- <gd name="q3" fmla="*/ rO rO 1" />\r
--\r
-- <gd name="q4" fmla="*/ dO dO 1" />\r
--\r
-- <gd name="q5" fmla="*/ q3 q4 1" />\r
--\r
-- <gd name="q6" fmla="*/ DO DO 1" />\r
--\r
-- <gd name="q7" fmla="+- q5 0 q6" />\r
--\r
-- <gd name="q8" fmla="max q7 0" />\r
--\r
-- <gd name="sdelO" fmla="sqrt q8" />\r
--\r
-- <gd name="ndyO" fmla="*/ dyO -1 1" />\r
-- <gd name="sdyO" fmla="?: ndyO -1 1" />\r
--\r
-- <gd name="q9" fmla="*/ sdyO dxO 1" />\r
--\r
-- <gd name="q10" fmla="*/ q9 sdelO 1" />\r
--\r
-- <gd name="q11" fmla="*/ DO dyO 1" />\r
--\r
-- <gd name="dxF1" fmla="+/ q11 q10 q4" />\r
--\r
-- <gd name="q12" fmla="+- q11 0 q10" />\r
-- <gd name="dxF2" fmla="*/ q12 1 q4" />\r
--\r
--\r
-- <gd name="adyO" fmla="abs dyO" />\r
-- <gd name="q13" fmla="*/ adyO sdelO 1" />\r
--\r
-- <gd name="q14" fmla="*/ DO dxO -1" />\r
--\r
-- <gd name="dyF1" fmla="+/ q14 q13 q4" />\r
--\r
-- <gd name="q15" fmla="+- q14 0 q13" />\r
-- <gd name="dyF2" fmla="*/ q15 1 q4" />\r
--\r
--\r
--\r
-- <gd name="q16" fmla="+- x2O 0 dxF1" />\r
-- <gd name="q17" fmla="+- x2O 0 dxF2" />\r
-- <gd name="q18" fmla="+- y2O 0 dyF1" />\r
-- <gd name="q19" fmla="+- y2O 0 dyF2" />\r
-- <gd name="q20" fmla="mod q16 q18 0" />\r
--\r
-- <gd name="q21" fmla="mod q17 q19 0" />\r
--\r
-- <gd name="q22" fmla="+- q21 0 q20" />\r
-- <gd name="dxF" fmla="?: q22 dxF1 dxF2" />\r
--\r
-- <gd name="dyF" fmla="?: q22 dyF1 dyF2" />\r
--\r
-- <gd name="sdxF" fmla="*/ dxF rw1 rO" />\r
--\r
-- <gd name="sdyF" fmla="*/ dyF rh1 rO" />\r
--\r
-- <gd name="xF" fmla="+- hc sdxF 0" />\r
--\r
-- <gd name="yF" fmla="+- vc sdyF 0" />\r
--\r
--\r
--\r
--\r
-- <gd name="x1I" fmla="*/ sx1 rI rw2" />\r
--\r
-- <gd name="y1I" fmla="*/ sy1 rI rh2" />\r
--\r
-- <gd name="x2I" fmla="*/ sx2 rI rw2" />\r
--\r
-- <gd name="y2I" fmla="*/ sy2 rI rh2" />\r
--\r
--\r
-- <gd name="dxI" fmla="+- x2I 0 x1I" />\r
-- <gd name="dyI" fmla="+- y2I 0 y1I" />\r
-- <gd name="dI" fmla="mod dxI dyI 0" />\r
-- <gd name="v1" fmla="*/ x1I y2I 1" />\r
-- <gd name="v2" fmla="*/ x2I y1I 1" />\r
-- <gd name="DI" fmla="+- v1 0 v2" />\r
--\r
-- <gd name="v3" fmla="*/ rI rI 1" />\r
-- <gd name="v4" fmla="*/ dI dI 1" />\r
-- <gd name="v5" fmla="*/ v3 v4 1" />\r
-- <gd name="v6" fmla="*/ DI DI 1" />\r
-- <gd name="v7" fmla="+- v5 0 v6" />\r
-- <gd name="v8" fmla="max v7 0" />\r
-- <gd name="sdelI" fmla="sqrt v8" />\r
-- <gd name="v9" fmla="*/ sdyO dxI 1" />\r
-- <gd name="v10" fmla="*/ v9 sdelI 1" />\r
-- <gd name="v11" fmla="*/ DI dyI 1" />\r
-- <gd name="dxC1" fmla="+/ v11 v10 v4" />\r
-- <gd name="v12" fmla="+- v11 0 v10" />\r
-- <gd name="dxC2" fmla="*/ v12 1 v4" />\r
--\r
-- <gd name="adyI" fmla="abs dyI" />\r
-- <gd name="v13" fmla="*/ adyI sdelI 1" />\r
-- <gd name="v14" fmla="*/ DI dxI -1" />\r
-- <gd name="dyC1" fmla="+/ v14 v13 v4" />\r
-- <gd name="v15" fmla="+- v14 0 v13" />\r
-- <gd name="dyC2" fmla="*/ v15 1 v4" />\r
--\r
-- <gd name="v16" fmla="+- x1I 0 dxC1" />\r
-- <gd name="v17" fmla="+- x1I 0 dxC2" />\r
-- <gd name="v18" fmla="+- y1I 0 dyC1" />\r
-- <gd name="v19" fmla="+- y1I 0 dyC2" />\r
-- <gd name="v20" fmla="mod v16 v18 0" />\r
-- <gd name="v21" fmla="mod v17 v19 0" />\r
-- <gd name="v22" fmla="+- v21 0 v20" />\r
-- <gd name="dxC" fmla="?: v22 dxC1 dxC2" />\r
-- <gd name="dyC" fmla="?: v22 dyC1 dyC2" />\r
-- <gd name="sdxC" fmla="*/ dxC rw2 rI" />\r
-- <gd name="sdyC" fmla="*/ dyC rh2 rI" />\r
-- <gd name="xC" fmla="+- hc sdxC 0" />\r
--\r
-- <gd name="yC" fmla="+- vc sdyC 0" />\r
--\r
--\r
-- <gd name="ist0" fmla="at2 sdxC sdyC" />\r
-- <gd name="ist1" fmla="+- ist0 21600000 0" />\r
-- <gd name="istAng0" fmla="?: ist0 ist0 ist1" />\r
-- <gd name="isw1" fmla="+- stAng 0 istAng0" />\r
-- <gd name="isw2" fmla="+- isw1 21600000 0" />\r
-- <gd name="iswAng0" fmla="?: isw1 isw1 isw2" />\r
--\r
-- <gd name="istAng" fmla="+- istAng0 iswAng0 0" />\r
-- <gd name="iswAng" fmla="+- 0 0 iswAng0" />\r
--\r
-- <gd name="p1" fmla="+- xF 0 xC" />\r
-- <gd name="p2" fmla="+- yF 0 yC" />\r
-- <gd name="p3" fmla="mod p1 p2 0" />\r
-- <gd name="p4" fmla="*/ p3 1 2" />\r
-- <gd name="p5" fmla="+- p4 0 thh" />\r
-- <gd name="xGp" fmla="?: p5 xF xG" />\r
-- <gd name="yGp" fmla="?: p5 yF yG" />\r
-- <gd name="xBp" fmla="?: p5 xC xB" />\r
-- <gd name="yBp" fmla="?: p5 yC yB" />\r
--\r
-- <gd name="en0" fmla="at2 sdxF sdyF" />\r
-- <gd name="en1" fmla="+- en0 21600000 0" />\r
-- <gd name="en2" fmla="?: en0 en0 en1" />\r
-- <gd name="sw0" fmla="+- en2 0 stAng" />\r
-- <gd name="sw1" fmla="+- sw0 0 21600000" />\r
-- <gd name="swAng" fmla="?: sw0 sw1 sw0" />\r
--\r
--\r
-- <gd name="stAng0" fmla="+- stAng swAng 0" />\r
--\r
-- <gd name="swAng0" fmla="+- 0 0 swAng" />\r
--\r
--\r
-- <gd name="wtI" fmla="sin rw3 stAng" />\r
-- <gd name="htI" fmla="cos rh3 stAng" />\r
-- <gd name="dxI" fmla="cat2 rw3 htI wtI" />\r
-- <gd name="dyI" fmla="sat2 rh3 htI wtI" />\r
-- <gd name="xI" fmla="+- hc dxI 0" />\r
--\r
-- <gd name="yI" fmla="+- vc dyI 0" />\r
--\r
--\r
-- <gd name="aI" fmla="+- stAng cd4 0" />\r
-- <gd name="aA" fmla="+- ptAng 0 cd4" />\r
-- <gd name="aB" fmla="+- ptAng cd2 0" />\r
--\r
-- <gd name="idx" fmla="cos rw1 2700000" />\r
-- <gd name="idy" fmla="sin rh1 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahPolar gdRefAng="adj2" minAng="minAng" maxAng="0">\r
-- <pos x="xA" y="yA" />\r
-- </ahPolar>\r
-- <ahPolar gdRefAng="adj4" minAng="0" maxAng="21599999">\r
-- <pos x="xE" y="yE" />\r
-- </ahPolar>\r
-- <ahPolar gdRefR="adj1" minR="0" maxR="maxAdj1" gdRefAng="adj3" minAng="0" maxAng="21599999">\r
-- <pos x="xF" y="yF" />\r
-- </ahPolar>\r
-- <ahPolar gdRefR="adj5" minR="0" maxR="25000">\r
-- <pos x="xB" y="yB" />\r
-- </ahPolar>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="aI">\r
-- <pos x="xI" y="yI" />\r
-- </cxn>\r
-- <cxn ang="ptAng">\r
-- <pos x="xGp" y="yGp" />\r
-- </cxn>\r
-- <cxn ang="aA">\r
-- <pos x="xA" y="yA" />\r
-- </cxn>\r
-- <cxn ang="aB">\r
-- <pos x="xBp" y="yBp" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="xE" y="yE" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="xD" y="yD" />\r
-- </lnTo>\r
-- <arcTo wR="rw2" hR="rh2" stAng="istAng" swAng="iswAng" />\r
-- <lnTo>\r
-- <pt x="xBp" y="yBp" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xA" y="yA" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xGp" y="yGp" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xF" y="yF" />\r
-- </lnTo>\r
-- <arcTo wR="rw1" hR="rh1" stAng="stAng0" swAng="swAng0" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </leftCircularArrow>\r
-- <leftRightArrow>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="x2" fmla="*/ ss a2 100000" />\r
-- <gd name="x3" fmla="+- r 0 x2" />\r
-- <gd name="dy" fmla="*/ h a1 200000" />\r
-- <gd name="y1" fmla="+- vc 0 dy" />\r
-- <gd name="y2" fmla="+- vc dy 0" />\r
-- <gd name="dx1" fmla="*/ y1 x2 hd2" />\r
-- <gd name="x1" fmla="+- x2 0 dx1" />\r
-- <gd name="x4" fmla="+- x3 dx1 0" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
-- <pos x="x3" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="x1" t="y1" r="x4" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </leftRightArrow>\r
-- <leftRightArrowCallout>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- <gd name="adj4" fmla="val 48123" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="*/ 50000 w ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="q2" fmla="*/ a3 ss wd2" />\r
--\r
-- <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
--\r
-- <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
-- <gd name="dy1" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="dy2" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
-- <gd name="y3" fmla="+- vc dy2 0" />\r
-- <gd name="y4" fmla="+- vc dy1 0" />\r
-- <gd name="x1" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="x4" fmla="+- r 0 x1" />\r
--\r
-- <gd name="dx2" fmla="*/ w a4 200000" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
--\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
-- <pos x="x1" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
-- <pos x="x2" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x2" t="t" r="x3" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </leftRightArrowCallout>\r
-- <leftRightCircularArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 12500" />\r
--\r
-- <gd name="adj2" fmla="val 1142319" />\r
--\r
-- <gd name="adj3" fmla="val 20457681" />\r
--\r
-- <gd name="adj4" fmla="val 11942319" />\r
--\r
-- <gd name="adj5" fmla="val 12500" />\r
--\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a5" fmla="pin 0 adj5 25000" />\r
--\r
-- <gd name="maxAdj1" fmla="*/ a5 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="enAng" fmla="pin 1 adj3 21599999" />\r
-- <gd name="stAng" fmla="pin 0 adj4 21599999" />\r
--\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="thh" fmla="*/ ss a5 100000" />\r
--\r
-- <gd name="th2" fmla="*/ th 1 2" />\r
--\r
--\r
-- <gd name="rw1" fmla="+- wd2 th2 thh" />\r
--\r
-- <gd name="rh1" fmla="+- hd2 th2 thh" />\r
--\r
-- <gd name="rw2" fmla="+- rw1 0 th" />\r
--\r
-- <gd name="rh2" fmla="+- rh1 0 th" />\r
--\r
-- <gd name="rw3" fmla="+- rw2 th2 0" />\r
--\r
-- <gd name="rh3" fmla="+- rh2 th2 0" />\r
--\r
--\r
-- <gd name="wtH" fmla="sin rw3 enAng" />\r
-- <gd name="htH" fmla="cos rh3 enAng" />\r
-- <gd name="dxH" fmla="cat2 rw3 htH wtH" />\r
-- <gd name="dyH" fmla="sat2 rh3 htH wtH" />\r
-- <gd name="xH" fmla="+- hc dxH 0" />\r
--\r
-- <gd name="yH" fmla="+- vc dyH 0" />\r
--\r
--\r
-- <gd name="rI" fmla="min rw2 rh2" />\r
--\r
-- <gd name="u1" fmla="*/ dxH dxH 1" />\r
-- <gd name="u2" fmla="*/ dyH dyH 1" />\r
-- <gd name="u3" fmla="*/ rI rI 1" />\r
-- <gd name="u4" fmla="+- u1 0 u3" />\r
-- <gd name="u5" fmla="+- u2 0 u3" />\r
-- <gd name="u6" fmla="*/ u4 u5 u1" />\r
-- <gd name="u7" fmla="*/ u6 1 u2" />\r
-- <gd name="u8" fmla="+- 1 0 u7" />\r
-- <gd name="u9" fmla="sqrt u8" />\r
-- <gd name="u10" fmla="*/ u4 1 dxH" />\r
-- <gd name="u11" fmla="*/ u10 1 dyH" />\r
-- <gd name="u12" fmla="+/ 1 u9 u11" />\r
-- <gd name="u13" fmla="at2 1 u12" />\r
-- <gd name="u14" fmla="+- u13 21600000 0" />\r
-- <gd name="u15" fmla="?: u13 u13 u14" />\r
-- <gd name="u16" fmla="+- u15 0 enAng" />\r
--\r
-- <gd name="u17" fmla="+- u16 21600000 0" />\r
-- <gd name="u18" fmla="?: u16 u16 u17" />\r
-- <gd name="u19" fmla="+- u18 0 cd2" />\r
-- <gd name="u20" fmla="+- u18 0 21600000" />\r
-- <gd name="u21" fmla="?: u19 u20 u18" />\r
-- <gd name="maxAng" fmla="abs u21" />\r
-- <gd name="aAng" fmla="pin 0 adj2 maxAng" />\r
--\r
-- <gd name="ptAng" fmla="+- enAng aAng 0" />\r
--\r
--\r
-- <gd name="wtA" fmla="sin rw3 ptAng" />\r
-- <gd name="htA" fmla="cos rh3 ptAng" />\r
-- <gd name="dxA" fmla="cat2 rw3 htA wtA" />\r
-- <gd name="dyA" fmla="sat2 rh3 htA wtA" />\r
-- <gd name="xA" fmla="+- hc dxA 0" />\r
--\r
-- <gd name="yA" fmla="+- vc dyA 0" />\r
--\r
--\r
-- <gd name="dxG" fmla="cos thh ptAng" />\r
-- <gd name="dyG" fmla="sin thh ptAng" />\r
-- <gd name="xG" fmla="+- xH dxG 0" />\r
--\r
-- <gd name="yG" fmla="+- yH dyG 0" />\r
--\r
--\r
-- <gd name="dxB" fmla="cos thh ptAng" />\r
-- <gd name="dyB" fmla="sin thh ptAng" />\r
-- <gd name="xB" fmla="+- xH 0 dxB 0" />\r
--\r
-- <gd name="yB" fmla="+- yH 0 dyB 0" />\r
--\r
--\r
-- <gd name="sx1" fmla="+- xB 0 hc" />\r
--\r
-- <gd name="sy1" fmla="+- yB 0 vc" />\r
--\r
-- <gd name="sx2" fmla="+- xG 0 hc" />\r
--\r
-- <gd name="sy2" fmla="+- yG 0 vc" />\r
--\r
--\r
-- <gd name="rO" fmla="min rw1 rh1" />\r
--\r
-- <gd name="x1O" fmla="*/ sx1 rO rw1" />\r
--\r
-- <gd name="y1O" fmla="*/ sy1 rO rh1" />\r
--\r
-- <gd name="x2O" fmla="*/ sx2 rO rw1" />\r
--\r
-- <gd name="y2O" fmla="*/ sy2 rO rh1" />\r
--\r
--\r
-- <gd name="dxO" fmla="+- x2O 0 x1O" />\r
-- <gd name="dyO" fmla="+- y2O 0 y1O" />\r
-- <gd name="dO" fmla="mod dxO dyO 0" />\r
--\r
-- <gd name="q1" fmla="*/ x1O y2O 1" />\r
-- <gd name="q2" fmla="*/ x2O y1O 1" />\r
-- <gd name="DO" fmla="+- q1 0 q2" />\r
--\r
--\r
-- <gd name="q3" fmla="*/ rO rO 1" />\r
--\r
-- <gd name="q4" fmla="*/ dO dO 1" />\r
--\r
-- <gd name="q5" fmla="*/ q3 q4 1" />\r
--\r
-- <gd name="q6" fmla="*/ DO DO 1" />\r
--\r
-- <gd name="q7" fmla="+- q5 0 q6" />\r
--\r
-- <gd name="q8" fmla="max q7 0" />\r
--\r
-- <gd name="sdelO" fmla="sqrt q8" />\r
--\r
-- <gd name="ndyO" fmla="*/ dyO -1 1" />\r
-- <gd name="sdyO" fmla="?: ndyO -1 1" />\r
--\r
-- <gd name="q9" fmla="*/ sdyO dxO 1" />\r
--\r
-- <gd name="q10" fmla="*/ q9 sdelO 1" />\r
--\r
-- <gd name="q11" fmla="*/ DO dyO 1" />\r
--\r
-- <gd name="dxF1" fmla="+/ q11 q10 q4" />\r
--\r
-- <gd name="q12" fmla="+- q11 0 q10" />\r
-- <gd name="dxF2" fmla="*/ q12 1 q4" />\r
--\r
--\r
-- <gd name="adyO" fmla="abs dyO" />\r
-- <gd name="q13" fmla="*/ adyO sdelO 1" />\r
--\r
-- <gd name="q14" fmla="*/ DO dxO -1" />\r
--\r
-- <gd name="dyF1" fmla="+/ q14 q13 q4" />\r
--\r
-- <gd name="q15" fmla="+- q14 0 q13" />\r
-- <gd name="dyF2" fmla="*/ q15 1 q4" />\r
--\r
--\r
--\r
-- <gd name="q16" fmla="+- x2O 0 dxF1" />\r
-- <gd name="q17" fmla="+- x2O 0 dxF2" />\r
-- <gd name="q18" fmla="+- y2O 0 dyF1" />\r
-- <gd name="q19" fmla="+- y2O 0 dyF2" />\r
-- <gd name="q20" fmla="mod q16 q18 0" />\r
--\r
-- <gd name="q21" fmla="mod q17 q19 0" />\r
--\r
-- <gd name="q22" fmla="+- q21 0 q20" />\r
-- <gd name="dxF" fmla="?: q22 dxF1 dxF2" />\r
--\r
-- <gd name="dyF" fmla="?: q22 dyF1 dyF2" />\r
--\r
-- <gd name="sdxF" fmla="*/ dxF rw1 rO" />\r
--\r
-- <gd name="sdyF" fmla="*/ dyF rh1 rO" />\r
--\r
-- <gd name="xF" fmla="+- hc sdxF 0" />\r
--\r
-- <gd name="yF" fmla="+- vc sdyF 0" />\r
--\r
--\r
--\r
--\r
-- <gd name="x1I" fmla="*/ sx1 rI rw2" />\r
--\r
-- <gd name="y1I" fmla="*/ sy1 rI rh2" />\r
--\r
-- <gd name="x2I" fmla="*/ sx2 rI rw2" />\r
--\r
-- <gd name="y2I" fmla="*/ sy2 rI rh2" />\r
--\r
--\r
-- <gd name="dxI" fmla="+- x2I 0 x1I" />\r
-- <gd name="dyI" fmla="+- y2I 0 y1I" />\r
-- <gd name="dI" fmla="mod dxI dyI 0" />\r
-- <gd name="v1" fmla="*/ x1I y2I 1" />\r
-- <gd name="v2" fmla="*/ x2I y1I 1" />\r
-- <gd name="DI" fmla="+- v1 0 v2" />\r
--\r
-- <gd name="v3" fmla="*/ rI rI 1" />\r
-- <gd name="v4" fmla="*/ dI dI 1" />\r
-- <gd name="v5" fmla="*/ v3 v4 1" />\r
-- <gd name="v6" fmla="*/ DI DI 1" />\r
-- <gd name="v7" fmla="+- v5 0 v6" />\r
-- <gd name="v8" fmla="max v7 0" />\r
-- <gd name="sdelI" fmla="sqrt v8" />\r
-- <gd name="v9" fmla="*/ sdyO dxI 1" />\r
-- <gd name="v10" fmla="*/ v9 sdelI 1" />\r
-- <gd name="v11" fmla="*/ DI dyI 1" />\r
-- <gd name="dxC1" fmla="+/ v11 v10 v4" />\r
-- <gd name="v12" fmla="+- v11 0 v10" />\r
-- <gd name="dxC2" fmla="*/ v12 1 v4" />\r
--\r
-- <gd name="adyI" fmla="abs dyI" />\r
-- <gd name="v13" fmla="*/ adyI sdelI 1" />\r
-- <gd name="v14" fmla="*/ DI dxI -1" />\r
-- <gd name="dyC1" fmla="+/ v14 v13 v4" />\r
-- <gd name="v15" fmla="+- v14 0 v13" />\r
-- <gd name="dyC2" fmla="*/ v15 1 v4" />\r
--\r
-- <gd name="v16" fmla="+- x1I 0 dxC1" />\r
-- <gd name="v17" fmla="+- x1I 0 dxC2" />\r
-- <gd name="v18" fmla="+- y1I 0 dyC1" />\r
-- <gd name="v19" fmla="+- y1I 0 dyC2" />\r
-- <gd name="v20" fmla="mod v16 v18 0" />\r
-- <gd name="v21" fmla="mod v17 v19 0" />\r
-- <gd name="v22" fmla="+- v21 0 v20" />\r
-- <gd name="dxC" fmla="?: v22 dxC1 dxC2" />\r
-- <gd name="dyC" fmla="?: v22 dyC1 dyC2" />\r
-- <gd name="sdxC" fmla="*/ dxC rw2 rI" />\r
-- <gd name="sdyC" fmla="*/ dyC rh2 rI" />\r
-- <gd name="xC" fmla="+- hc sdxC 0" />\r
--\r
-- <gd name="yC" fmla="+- vc sdyC 0" />\r
--\r
--\r
-- <gd name="wtI" fmla="sin rw3 stAng" />\r
-- <gd name="htI" fmla="cos rh3 stAng" />\r
-- <gd name="dxI" fmla="cat2 rw3 htI wtI" />\r
-- <gd name="dyI" fmla="sat2 rh3 htI wtI" />\r
-- <gd name="xI" fmla="+- hc dxI 0" />\r
--\r
-- <gd name="yI" fmla="+- vc dyI 0" />\r
--\r
--\r
-- <gd name="lptAng" fmla="+- stAng 0 aAng" />\r
--\r
--\r
-- <gd name="wtL" fmla="sin rw3 lptAng" />\r
-- <gd name="htL" fmla="cos rh3 lptAng" />\r
-- <gd name="dxL" fmla="cat2 rw3 htL wtL" />\r
-- <gd name="dyL" fmla="sat2 rh3 htL wtL" />\r
-- <gd name="xL" fmla="+- hc dxL 0" />\r
--\r
-- <gd name="yL" fmla="+- vc dyL 0" />\r
--\r
--\r
-- <gd name="dxK" fmla="cos thh lptAng" />\r
-- <gd name="dyK" fmla="sin thh lptAng" />\r
-- <gd name="xK" fmla="+- xI dxK 0" />\r
--\r
-- <gd name="yK" fmla="+- yI dyK 0" />\r
--\r
--\r
-- <gd name="dxJ" fmla="cos thh lptAng" />\r
-- <gd name="dyJ" fmla="sin thh lptAng" />\r
-- <gd name="xJ" fmla="+- xI 0 dxJ 0" />\r
--\r
-- <gd name="yJ" fmla="+- yI 0 dyJ 0" />\r
--\r
--\r
-- <gd name="p1" fmla="+- xF 0 xC" />\r
-- <gd name="p2" fmla="+- yF 0 yC" />\r
-- <gd name="p3" fmla="mod p1 p2 0" />\r
-- <gd name="p4" fmla="*/ p3 1 2" />\r
-- <gd name="p5" fmla="+- p4 0 thh" />\r
-- <gd name="xGp" fmla="?: p5 xF xG" />\r
-- <gd name="yGp" fmla="?: p5 yF yG" />\r
-- <gd name="xBp" fmla="?: p5 xC xB" />\r
-- <gd name="yBp" fmla="?: p5 yC yB" />\r
--\r
-- <gd name="en0" fmla="at2 sdxF sdyF" />\r
-- <gd name="en1" fmla="+- en0 21600000 0" />\r
-- <gd name="en2" fmla="?: en0 en0 en1" />\r
-- <gd name="od0" fmla="+- en2 0 enAng" />\r
-- <gd name="od1" fmla="+- od0 21600000 0" />\r
-- <gd name="od2" fmla="?: od0 od0 od1" />\r
--\r
-- <gd name="st0" fmla="+- stAng 0 od2" />\r
-- <gd name="st1" fmla="+- st0 21600000 0" />\r
-- <gd name="st2" fmla="?: st0 st0 st1" />\r
--\r
-- <gd name="sw0" fmla="+- en2 0 st2" />\r
-- <gd name="sw1" fmla="+- sw0 21600000 0" />\r
-- <gd name="swAng" fmla="?: sw0 sw0 sw1" />\r
--\r
--\r
-- <gd name="ist0" fmla="at2 sdxC sdyC" />\r
-- <gd name="ist1" fmla="+- ist0 21600000 0" />\r
-- <gd name="istAng" fmla="?: ist0 ist0 ist1" />\r
--\r
-- <gd name="id0" fmla="+- istAng 0 enAng" />\r
-- <gd name="id1" fmla="+- id0 0 21600000" />\r
-- <gd name="id2" fmla="?: id0 id1 id0" />\r
--\r
-- <gd name="ien0" fmla="+- stAng 0 id2" />\r
-- <gd name="ien1" fmla="+- ien0 0 21600000" />\r
-- <gd name="ien2" fmla="?: ien1 ien1 ien0" />\r
--\r
-- <gd name="isw1" fmla="+- ien2 0 istAng" />\r
-- <gd name="isw2" fmla="+- isw1 0 21600000" />\r
-- <gd name="iswAng" fmla="?: isw1 isw2 isw1" />\r
--\r
--\r
-- <gd name="wtE" fmla="sin rw1 st2" />\r
-- <gd name="htE" fmla="cos rh1 st2" />\r
-- <gd name="dxE" fmla="cat2 rw1 htE wtE" />\r
-- <gd name="dyE" fmla="sat2 rh1 htE wtE" />\r
-- <gd name="xE" fmla="+- hc dxE 0" />\r
--\r
-- <gd name="yE" fmla="+- vc dyE 0" />\r
--\r
--\r
-- <gd name="wtD" fmla="sin rw2 ien2" />\r
-- <gd name="htD" fmla="cos rh2 ien2" />\r
-- <gd name="dxD" fmla="cat2 rw2 htD wtD" />\r
-- <gd name="dyD" fmla="sat2 rh2 htD wtD" />\r
-- <gd name="xD" fmla="+- hc dxD 0" />\r
--\r
-- <gd name="yD" fmla="+- vc dyD 0" />\r
--\r
--\r
-- <gd name="xKp" fmla="?: p5 xE xK" />\r
-- <gd name="yKp" fmla="?: p5 yE yK" />\r
-- <gd name="xJp" fmla="?: p5 xD xJ" />\r
-- <gd name="yJp" fmla="?: p5 yD yJ" />\r
--\r
-- <gd name="aL" fmla="+- lptAng 0 cd4" />\r
-- <gd name="aA" fmla="+- ptAng cd4 0" />\r
-- <gd name="aB" fmla="+- ptAng cd2 0" />\r
-- <gd name="aJ" fmla="+- lptAng cd2 0" />\r
--\r
-- <gd name="idx" fmla="cos rw1 2700000" />\r
-- <gd name="idy" fmla="sin rh1 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahPolar gdRefAng="adj2" minAng="0" maxAng="maxAng">\r
-- <pos x="xA" y="yA" />\r
-- </ahPolar>\r
-- <ahPolar gdRefAng="adj4" minAng="0" maxAng="21599999">\r
-- <pos x="xE" y="yE" />\r
-- </ahPolar>\r
-- <ahPolar gdRefR="adj1" minR="0" maxR="maxAdj1" gdRefAng="adj3" minAng="0" maxAng="21599999">\r
-- <pos x="xF" y="yF" />\r
-- </ahPolar>\r
-- <ahPolar gdRefR="adj5" minR="0" maxR="25000">\r
-- <pos x="xB" y="yB" />\r
-- </ahPolar>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="aL">\r
-- <pos x="xL" y="yL" />\r
-- </cxn>\r
-- <cxn ang="lptAng">\r
-- <pos x="xKp" y="yKp" />\r
-- </cxn>\r
-- <cxn ang="ptAng">\r
-- <pos x="xGp" y="yGp" />\r
-- </cxn>\r
-- <cxn ang="aA">\r
-- <pos x="xA" y="yA" />\r
-- </cxn>\r
-- <cxn ang="aB">\r
-- <pos x="xBp" y="yBp" />\r
-- </cxn>\r
-- <cxn ang="aJ">\r
-- <pos x="xJp" y="yJp" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="xL" y="yL" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="xKp" y="yKp" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xE" y="yE" />\r
-- </lnTo>\r
-- <arcTo wR="rw1" hR="rh1" stAng="st2" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="xGp" y="yGp" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xA" y="yA" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xBp" y="yBp" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xC" y="yC" />\r
-- </lnTo>\r
-- <arcTo wR="rw2" hR="rh2" stAng="istAng" swAng="iswAng" />\r
-- <lnTo>\r
-- <pt x="xJp" y="yJp" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </leftRightCircularArrow>\r
-- <leftRightRibbon>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- <gd name="adj3" fmla="val 16667" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a3" fmla="pin 0 adj3 33333" />\r
-- <gd name="maxAdj1" fmla="+- 100000 0 a3" />\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
--\r
-- <gd name="w1" fmla="+- wd2 0 wd32" />\r
-- <gd name="maxAdj2" fmla="*/ 100000 w1 ss" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
--\r
-- <gd name="x1" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="x4" fmla="+- r 0 x1" />\r
--\r
-- <gd name="dy1" fmla="*/ h a1 200000" />\r
--\r
-- <gd name="dy2" fmla="*/ h a3 -200000" />\r
--\r
-- <gd name="ly1" fmla="+- vc dy2 dy1" />\r
--\r
-- <gd name="ry4" fmla="+- vc dy1 dy2" />\r
--\r
-- <gd name="ly2" fmla="+- ly1 dy1 0" />\r
--\r
-- <gd name="ry3" fmla="+- b 0 ly2" />\r
--\r
-- <gd name="ly4" fmla="*/ ly2 2 1" />\r
--\r
-- <gd name="ry1" fmla="+- b 0 ly4" />\r
--\r
-- <gd name="ly3" fmla="+- ly4 0 ly1" />\r
--\r
-- <gd name="ry2" fmla="+- b 0 ly3" />\r
--\r
--\r
-- <gd name="hR" fmla="*/ a3 ss 400000" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 wd32" />\r
--\r
-- <gd name="x3" fmla="+- hc wd32 0" />\r
--\r
-- <gd name="y1" fmla="+- ly1 hR 0" />\r
--\r
-- <gd name="y2" fmla="+- ry2 0 hR" />\r
--\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
-- <pos x="x4" y="ry2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="33333">\r
-- <pos x="x3" y="ry2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="ry3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x4" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="ly4" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="ly2" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x4" y="ry1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="ly1" r="x4" b="ry4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="ly2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="ly1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="ly1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x4" y="ry2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="ry1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="ry3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="ry4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="ry4" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x2" y="ly3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="ly3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="ly4" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darkenLess" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="x3" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x3" y="ry2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="ly2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="ly1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="ly1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x4" y="ry2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="ry1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="ry3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="ry4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="ry4" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x2" y="ly3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="ly3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="ly4" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x3" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x3" y="ry2" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x2" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="ly3" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </leftRightRibbon>\r
-- <leftRightUpArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="q1" fmla="+- 100000 0 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="*/ q1 1 2" />\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="x1" fmla="*/ ss a3 100000" />\r
-- <gd name="dx2" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x5" fmla="+- hc dx2 0" />\r
-- <gd name="dx3" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="x3" fmla="+- hc 0 dx3" />\r
-- <gd name="x4" fmla="+- hc dx3 0" />\r
-- <gd name="x6" fmla="+- r 0 x1" />\r
--\r
-- <gd name="dy2" fmla="*/ ss a2 50000" />\r
--\r
-- <gd name="y2" fmla="+- b 0 dy2" />\r
-- <gd name="y4" fmla="+- b 0 dx2" />\r
-- <gd name="y3" fmla="+- y4 0 dx3" />\r
-- <gd name="y5" fmla="+- y4 dx3 0" />\r
-- <gd name="il" fmla="*/ dx3 x1 dx2" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
-- <pos x="x3" y="x1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="r" y="x1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y5" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y4" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="y3" r="ir" b="y5" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y4" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </leftRightUpArrow>\r
-- <leftUpArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="+- 100000 0 maxAdj1" />\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="x1" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="dx2" fmla="*/ ss a2 50000" />\r
--\r
-- <gd name="x2" fmla="+- r 0 dx2" />\r
-- <gd name="y2" fmla="+- b 0 dx2" />\r
-- <gd name="dx4" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="x4" fmla="+- r 0 dx4" />\r
-- <gd name="y4" fmla="+- b 0 dx4" />\r
-- <gd name="dx3" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="x3" fmla="+- x4 0 dx3" />\r
-- <gd name="x5" fmla="+- x4 dx3 0" />\r
-- <gd name="y3" fmla="+- y4 0 dx3" />\r
-- <gd name="y5" fmla="+- y4 dx3 0" />\r
-- <gd name="il" fmla="*/ dx3 x1 dx4" />\r
-- <gd name="cx1" fmla="+/ x1 x5 2" />\r
-- <gd name="cy1" fmla="+/ x1 y5 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
-- <pos x="x3" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="x3" y="x1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x4" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x2" y="x1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="cx1" y="y5" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x5" y="cy1" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="x1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="y3" r="x4" b="y5" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y4" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </leftUpArrow>\r
-- <lightningBolt>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="x1" fmla="*/ w 5022 21600" />\r
-- <gd name="x3" fmla="*/ w 8472 21600" />\r
-- <gd name="x4" fmla="*/ w 8757 21600" />\r
--\r
-- <gd name="x5" fmla="*/ w 10012 21600" />\r
-- <gd name="x8" fmla="*/ w 12860 21600" />\r
-- <gd name="x9" fmla="*/ w 13917 21600" />\r
--\r
-- <gd name="x11" fmla="*/ w 16577 21600" />\r
-- <gd name="y1" fmla="*/ h 3890 21600" />\r
-- <gd name="y2" fmla="*/ h 6080 21600" />\r
-- <gd name="y4" fmla="*/ h 7437 21600" />\r
--\r
-- <gd name="y6" fmla="*/ h 9705 21600" />\r
-- <gd name="y7" fmla="*/ h 12007 21600" />\r
-- <gd name="y10" fmla="*/ h 14277 21600" />\r
--\r
-- <gd name="y11" fmla="*/ h 14915 21600" />\r
--\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="l" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y6" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x5" y="y11" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x11" y="y7" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x8" y="y2" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x4" t="y4" r="x9" b="y10" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path w="21600" h="21600">\r
-- <moveTo>\r
-- <pt x="8472" y="0" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="12860" y="6080" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="11050" y="6797" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="16577" y="12007" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="14767" y="12877" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="21600" y="21600" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="10012" y="14915" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="12222" y="13987" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="5022" y="9705" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="7602" y="8382" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="0" y="3890" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </lightningBolt>\r
-- <line>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="l" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
-- </line>\r
-- <lineInv>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="l" y="b" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="r" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
-- </lineInv>\r
-- <mathDivide>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 23520" />\r
--\r
-- <gd name="adj2" fmla="val 5880" />\r
--\r
-- <gd name="adj3" fmla="val 11760" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
-- <gd name="a1" fmla="pin 1000 adj1 36745" />\r
-- <gd name="ma1" fmla="+- 0 0 a1" />\r
--\r
-- <gd name="ma3h" fmla="+/ 73490 ma1 4" />\r
--\r
-- <gd name="ma3w" fmla="*/ 36745 w h" />\r
--\r
-- <gd name="maxAdj3" fmla="min ma3h ma3w" />\r
-- <gd name="a3" fmla="pin 1000 adj3 maxAdj3" />\r
-- <gd name="m4a3" fmla="*/ -4 a3 1" />\r
--\r
-- <gd name="maxAdj2" fmla="+- 73490 m4a3 a1" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
--\r
-- <gd name="dy1" fmla="*/ h a1 200000" />\r
--\r
-- <gd name="yg" fmla="*/ h a2 100000" />\r
--\r
-- <gd name="rad" fmla="*/ h a3 100000" />\r
--\r
-- <gd name="dx1" fmla="*/ w 73490 200000" />\r
--\r
--\r
-- <gd name="y3" fmla="+- vc 0 dy1" />\r
--\r
-- <gd name="y4" fmla="+- vc dy1 0" />\r
--\r
-- <gd name="a" fmla="+- yg rad 0" />\r
-- <gd name="y2" fmla="+- y3 0 a" />\r
--\r
-- <gd name="y1" fmla="+- y2 0 rad" />\r
--\r
-- <gd name="y5" fmla="+- b 0 y1" />\r
--\r
--\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
--\r
-- <gd name="x3" fmla="+- hc dx1 0" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 rad" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="1000" maxY="36745">\r
-- <pos x="l" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
-- <pos x="r" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj3" minX="1000" maxX="maxAdj3">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x3" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y5" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="y3" r="x3" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="hc" y="y1" />\r
-- </moveTo>\r
-- <arcTo hR="rad" wR="rad" stAng="3cd4" swAng="21600000" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="y5" />\r
-- </moveTo>\r
-- <arcTo hR="rad" wR="rad" stAng="cd4" swAng="21600000" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x1" y="y3" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </mathDivide>\r
-- <mathEqual>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 23520" />\r
--\r
-- <gd name="adj2" fmla="val 11760" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 36745" />\r
--\r
--\r
-- <gd name="2a1" fmla="*/ a1 2 1" />\r
--\r
-- <gd name="mAdj2" fmla="+- 100000 0 2a1" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 mAdj2" />\r
-- <gd name="dy1" fmla="*/ h a1 100000" />\r
--\r
-- <gd name="dy2" fmla="*/ h a2 200000" />\r
--\r
-- <gd name="dx1" fmla="*/ w 73490 200000" />\r
--\r
--\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
--\r
-- <gd name="y3" fmla="+- vc dy2 0" />\r
--\r
-- <gd name="y1" fmla="+- y2 0 dy1" />\r
--\r
-- <gd name="y4" fmla="+- y3 dy1 0" />\r
--\r
--\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
--\r
-- <gd name="x2" fmla="+- hc dx1 0" />\r
--\r
--\r
--\r
-- <gd name="yC1" fmla="+/ y1 y2 2" />\r
--\r
-- <gd name="yC2" fmla="+/ y3 y4 2" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="36745">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
--\r
-- <ahXY gdRefY="adj2" minY="0" maxY="mAdj2">\r
-- <pos x="r" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x2" y="yC1" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x2" y="yC2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="yC1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="yC2" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="y1" r="x2" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x1" y="y3" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </mathEqual>\r
-- <mathMinus>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 23520" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="dy1" fmla="*/ h a1 200000" />\r
--\r
-- <gd name="dx1" fmla="*/ w 73490 200000" />\r
--\r
--\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
--\r
-- <gd name="y2" fmla="+- vc dy1 0" />\r
--\r
--\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
--\r
-- <gd name="x2" fmla="+- hc dx1 0" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x2" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="y1" r="x2" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </mathMinus>\r
-- <mathMultiply>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 23520" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 51965" />\r
--\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
--\r
-- <gd name="a" fmla="at2 w h" />\r
--\r
-- <gd name="sa" fmla="sin 1 a" />\r
-- <gd name="ca" fmla="cos 1 a" />\r
-- <gd name="ta" fmla="tan 1 a" />\r
--\r
--\r
-- <gd name="dl" fmla="mod w h 0" />\r
--\r
-- <gd name="rw" fmla="*/ dl 51965 100000" />\r
--\r
--\r
--\r
-- <gd name="lM" fmla="+- dl 0 rw" />\r
-- <gd name="xM" fmla="*/ ca lM 2" />\r
-- <gd name="yM" fmla="*/ sa lM 2" />\r
--\r
--\r
-- <gd name="dxAM" fmla="*/ sa th 2" />\r
-- <gd name="dyAM" fmla="*/ ca th 2" />\r
-- <gd name="xA" fmla="+- xM 0 dxAM" />\r
-- <gd name="yA" fmla="+- yM dyAM 0" />\r
--\r
--\r
-- <gd name="xB" fmla="+- xM dxAM 0" />\r
-- <gd name="yB" fmla="+- yM 0 dyAM" />\r
--\r
--\r
-- <gd name="xBC" fmla="+- hc 0 xB" />\r
-- <gd name="yBC" fmla="*/ xBC ta 1" />\r
-- <gd name="yC" fmla="+- yBC yB 0" />\r
--\r
--\r
-- <gd name="xD" fmla="+- r 0 xB" />\r
-- <gd name="xE" fmla="+- r 0 xA" />\r
--\r
-- <gd name="yFE" fmla="+- vc 0 yA" />\r
-- <gd name="xFE" fmla="*/ yFE 1 ta" />\r
-- <gd name="xF" fmla="+- xE 0 xFE" />\r
-- <gd name="xL" fmla="+- xA xFE 0" />\r
-- <gd name="yG" fmla="+- b 0 yA" />\r
-- <gd name="yH" fmla="+- b 0 yB" />\r
-- <gd name="yI" fmla="+- b 0 yC" />\r
--\r
--\r
-- <gd name="xC2" fmla="+- r 0 xM" />\r
--\r
-- <gd name="yC3" fmla="+- b 0 yM" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="51965">\r
-- <pos x="l" y="th" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd2">\r
-- <pos x="xM" y="yM" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="xC2" y="yM" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="xC2" y="yC3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="xM" y="yC3" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="xA" t="yB" r="xE" b="yH" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="xA" y="yA" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="xB" y="yB" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="yC" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD" y="yB" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xE" y="yA" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xF" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xE" y="yG" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xD" y="yH" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="yI" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xB" y="yH" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xA" y="yG" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xL" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </mathMultiply>\r
-- <mathNotEqual>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 23520" />\r
--\r
-- <gd name="adj2" fmla="val 6600000" />\r
--\r
-- <gd name="adj3" fmla="val 11760" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 50000" />\r
-- <gd name="crAng" fmla="pin 4200000 adj2 6600000" />\r
--\r
--\r
-- <gd name="2a1" fmla="*/ a1 2 1" />\r
-- <gd name="maxAdj3" fmla="+- 100000 0 2a1" />\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
--\r
-- <gd name="dy1" fmla="*/ h a1 100000" />\r
--\r
-- <gd name="dy2" fmla="*/ h a3 200000" />\r
--\r
-- <gd name="dx1" fmla="*/ w 73490 200000" />\r
--\r
--\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
--\r
-- <gd name="x8" fmla="+- hc dx1 0" />\r
--\r
--\r
--\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
--\r
-- <gd name="y3" fmla="+- vc dy2 0" />\r
--\r
-- <gd name="y1" fmla="+- y2 0 dy1" />\r
--\r
-- <gd name="y4" fmla="+- y3 dy1 0" />\r
--\r
--\r
-- <gd name="cadj2" fmla="+- crAng 0 cd4" />\r
-- <gd name="xadj2" fmla="tan hd2 cadj2" />\r
--\r
--\r
--\r
-- <gd name="len" fmla="mod xadj2 hd2 0" />\r
--\r
--\r
--\r
-- <gd name="bhw" fmla="*/ len dy1 hd2" />\r
--\r
-- <gd name="bhw2" fmla="*/ bhw 1 2" />\r
-- <gd name="x7" fmla="+- hc xadj2 bhw2" />\r
--\r
-- <gd name="dx67" fmla="*/ xadj2 y1 hd2" />\r
-- <gd name="x6" fmla="+- x7 0 dx67" />\r
--\r
-- <gd name="dx57" fmla="*/ xadj2 y2 hd2" />\r
-- <gd name="x5" fmla="+- x7 0 dx57" />\r
--\r
-- <gd name="dx47" fmla="*/ xadj2 y3 hd2" />\r
-- <gd name="x4" fmla="+- x7 0 dx47" />\r
--\r
-- <gd name="dx37" fmla="*/ xadj2 y4 hd2" />\r
-- <gd name="x3" fmla="+- x7 0 dx37" />\r
--\r
-- <gd name="dx27" fmla="*/ xadj2 2 1" />\r
-- <gd name="x2" fmla="+- x7 0 dx27" />\r
--\r
--\r
-- <gd name="rx7" fmla="+- x7 bhw 0" />\r
--\r
-- <gd name="rx6" fmla="+- x6 bhw 0" />\r
--\r
-- <gd name="rx5" fmla="+- x5 bhw 0" />\r
--\r
-- <gd name="rx4" fmla="+- x4 bhw 0" />\r
--\r
-- <gd name="rx3" fmla="+- x3 bhw 0" />\r
--\r
-- <gd name="rx2" fmla="+- x2 bhw 0" />\r
--\r
--\r
--\r
-- <gd name="dx7" fmla="*/ dy1 hd2 len" />\r
-- <gd name="rxt" fmla="+- x7 dx7 0" />\r
--\r
-- <gd name="lxt" fmla="+- rx7 0 dx7" />\r
--\r
-- <gd name="rx" fmla="?: cadj2 rxt rx7" />\r
--\r
-- <gd name="lx" fmla="?: cadj2 x7 lxt" />\r
--\r
--\r
-- <gd name="dy3" fmla="*/ dy1 xadj2 len" />\r
-- <gd name="dy4" fmla="+- 0 0 dy3" />\r
-- <gd name="ry" fmla="?: cadj2 dy3 t" />\r
--\r
-- <gd name="ly" fmla="?: cadj2 t dy4" />\r
--\r
--\r
-- <gd name="dlx" fmla="+- w 0 rx" />\r
--\r
-- <gd name="drx" fmla="+- w 0 lx" />\r
--\r
--\r
-- <gd name="dly" fmla="+- h 0 ry" />\r
--\r
-- <gd name="dry" fmla="+- h 0 ly" />\r
--\r
--\r
--\r
-- <gd name="xC1" fmla="+/ rx lx 2" />\r
--\r
-- <gd name="xC2" fmla="+/ drx dlx 2" />\r
--\r
--\r
-- <gd name="yC1" fmla="+/ ry ly 2" />\r
--\r
-- <gd name="yC2" fmla="+/ y1 y2 2" />\r
--\r
-- <gd name="yC3" fmla="+/ y3 y4 2" />\r
--\r
-- <gd name="yC4" fmla="+/ dry dly 2" />\r
--\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="50000">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- <ahPolar gdRefAng="adj2" minAng="4200000" maxAng="6600000">\r
-- <pos x="lx" y="t" />\r
-- </ahPolar>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="r" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x8" y="yC2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x8" y="yC3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="xC2" y="yC4" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="yC2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="yC3" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="xC1" y="yC1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="y1" r="x8" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="lx" y="ly" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="rx" y="ry" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="rx6" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="rx5" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="rx4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="rx3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="drx" y="dry" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="dlx" y="dly" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </mathNotEqual>\r
-- <mathPlus>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 23520" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 73490" />\r
-- <gd name="dx1" fmla="*/ w 73490 200000" />\r
--\r
-- <gd name="dy1" fmla="*/ h 73490 200000" />\r
--\r
-- <gd name="dx2" fmla="*/ ss a1 200000" />\r
--\r
--\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
--\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
--\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
--\r
--\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
--\r
-- <gd name="y2" fmla="+- vc 0 dx2" />\r
--\r
-- <gd name="y3" fmla="+- vc dx2 0" />\r
--\r
-- <gd name="y4" fmla="+- vc dy1 0" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="73490">\r
-- <pos x="l" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x4" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="y2" r="x4" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </mathPlus>\r
-- <moon>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 50000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 87500" />\r
-- <gd name="g0" fmla="*/ ss a 100000" />\r
-- <gd name="g0w" fmla="*/ g0 w ss" />\r
-- <gd name="g1" fmla="+- ss 0 g0" />\r
-- <gd name="g2" fmla="*/ g0 g0 g1" />\r
-- <gd name="g3" fmla="*/ ss ss g1" />\r
-- <gd name="g4" fmla="*/ g3 2 1" />\r
-- <gd name="g5" fmla="+- g4 0 g2" />\r
-- <gd name="g6" fmla="+- g5 0 g0" />\r
-- <gd name="g6w" fmla="*/ g6 w ss" />\r
-- <gd name="g7" fmla="*/ g5 1 2" />\r
-- <gd name="g8" fmla="+- g7 0 g0" />\r
-- <gd name="dy1" fmla="*/ g8 hd2 ss" />\r
--\r
-- <gd name="g10h" fmla="+- vc 0 dy1" />\r
-- <gd name="g11h" fmla="+- vc dy1 0" />\r
-- <gd name="g12" fmla="*/ g0 9598 32768" />\r
-- <gd name="g12w" fmla="*/ g12 w ss" />\r
-- <gd name="g13" fmla="+- ss 0 g12" />\r
-- <gd name="q1" fmla="*/ ss ss 1" />\r
-- <gd name="q2" fmla="*/ g13 g13 1" />\r
-- <gd name="q3" fmla="+- q1 0 q2" />\r
-- <gd name="q4" fmla="sqrt q3" />\r
-- <gd name="dy4" fmla="*/ q4 hd2 ss" />\r
-- <gd name="g15h" fmla="+- vc 0 dy4" />\r
-- <gd name="g16h" fmla="+- vc dy4 0" />\r
-- <gd name="g17w" fmla="+- g6w 0 g0w" />\r
-- <gd name="g18w" fmla="*/ g17w 1 2" />\r
--\r
--\r
-- <gd name="dx2p" fmla="+- g0w g18w w" />\r
-- <gd name="dx2" fmla="*/ dx2p -1 1" />\r
--\r
-- <gd name="dy2" fmla="*/ hd2 -1 1" />\r
--\r
-- <gd name="stAng1" fmla="at2 dx2 dy2" />\r
-- <gd name="enAngp1" fmla="at2 dx2 hd2" />\r
-- <gd name="enAng1" fmla="+- enAngp1 0 21600000" />\r
-- <gd name="swAng1" fmla="+- enAng1 0 stAng1" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="87500">\r
-- <pos x="g0w" y="vc" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="r" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="g0w" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="g12w" t="g15h" r="g0w" b="g16h" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="r" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="hd2" stAng="cd4" swAng="cd2" />\r
-- <arcTo wR="g18w" hR="dy1" stAng="stAng1" swAng="swAng1" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </moon>\r
-- <nonIsoscelesTrapezoid>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj" fmla="*/ 50000 w ss" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj" />\r
-- <gd name="x1" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="x2" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="dx3" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="x3" fmla="+- r 0 dx3" />\r
-- <gd name="x4" fmla="+/ r x3 2" />\r
-- <gd name="il" fmla="*/ wd3 a1 maxAdj" />\r
--\r
-- <gd name="adjm" fmla="max a1 a2" />\r
-- <gd name="it" fmla="*/ hd3 adjm maxAdj" />\r
--\r
-- <gd name="irt" fmla="*/ wd3 a2 maxAdj" />\r
-- <gd name="ir" fmla="+- r 0 irt" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="maxAdj">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj">\r
-- <pos x="x3" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x4" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
--\r
-- <rect l="il" t="it" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </nonIsoscelesTrapezoid>\r
-- <noSmoking>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 18750" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dr" fmla="*/ ss a 100000" />\r
-- <gd name="iwd2" fmla="+- wd2 0 dr" />\r
-- <gd name="ihd2" fmla="+- hd2 0 dr" />\r
-- <gd name="ang" fmla="at2 w h" />\r
-- <gd name="ct" fmla="cos ihd2 ang" />\r
-- <gd name="st" fmla="sin iwd2 ang" />\r
-- <gd name="m" fmla="mod ct st 0" />\r
-- <gd name="n" fmla="*/ iwd2 ihd2 m" />\r
-- <gd name="drd2" fmla="*/ dr 1 2" />\r
-- <gd name="dang" fmla="at2 n drd2" />\r
-- <gd name="2dang" fmla="*/ dang 2 1" />\r
-- <gd name="swAng" fmla="+- -10800000 2dang 0" />\r
-- <gd name="t3" fmla="at2 w h" />\r
-- <gd name="stAng1" fmla="+- t3 0 dang" />\r
-- <gd name="stAng2" fmla="+- stAng1 0 cd2" />\r
-- <gd name="ct1" fmla="cos ihd2 stAng1" />\r
-- <gd name="st1" fmla="sin iwd2 stAng1" />\r
-- <gd name="m1" fmla="mod ct1 st1 0" />\r
-- <gd name="n1" fmla="*/ iwd2 ihd2 m1" />\r
-- <gd name="dx1" fmla="cos n1 stAng1" />\r
-- <gd name="dy1" fmla="sin n1 stAng1" />\r
-- <gd name="x1" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- vc dy1 0" />\r
-- <gd name="x2" fmla="+- hc 0 dx1" />\r
-- <gd name="y2" fmla="+- vc 0 dy1" />\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahPolar gdRefR="adj" minR="0" maxR="50000">\r
-- <pos x="dr" y="vc" />\r
-- </ahPolar>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="il" y="it" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="il" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ir" y="ib" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="ir" y="it" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="3cd4" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="iwd2" hR="ihd2" stAng="stAng1" swAng="swAng" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x2" y="y2" />\r
-- </moveTo>\r
-- <arcTo wR="iwd2" hR="ihd2" stAng="stAng2" swAng="swAng" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </noSmoking>\r
-- <notchedRightArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="dx2" fmla="*/ ss a2 100000" />\r
-- <gd name="x2" fmla="+- r 0 dx2" />\r
-- <gd name="dy1" fmla="*/ h a1 200000" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc dy1 0" />\r
-- <gd name="x1" fmla="*/ dy1 dx2 hd2" />\r
-- <gd name="x3" fmla="+- r 0 x1" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
-- <pos x="r" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x1" t="y1" r="x3" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </notchedRightArrow>\r
-- <octagon>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 29289" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="x1" fmla="*/ ss a 100000" />\r
-- <gd name="x2" fmla="+- r 0 x1" />\r
-- <gd name="y2" fmla="+- b 0 x1" />\r
-- <gd name="il" fmla="*/ x1 1 2" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 il" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="x1" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="x1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="x1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </octagon>\r
-- <parallelogram>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 25000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj" fmla="*/ 100000 w ss" />\r
-- <gd name="a" fmla="pin 0 adj maxAdj" />\r
-- <gd name="x1" fmla="*/ ss a 200000" />\r
-- <gd name="x2" fmla="*/ ss a 100000" />\r
-- <gd name="x6" fmla="+- r 0 x1" />\r
-- <gd name="x5" fmla="+- r 0 x2" />\r
-- <gd name="x3" fmla="*/ x5 1 2" />\r
-- <gd name="x4" fmla="+- r 0 x3" />\r
-- <gd name="il" fmla="*/ wd2 a maxAdj" />\r
-- <gd name="q1" fmla="*/ 5 a maxAdj" />\r
-- <gd name="q2" fmla="+/ 1 q1 12" />\r
-- <gd name="il" fmla="*/ q2 w 1" />\r
-- <gd name="it" fmla="*/ q2 h 1" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 it" />\r
-- <gd name="q3" fmla="*/ h hc x2" />\r
-- <gd name="y1" fmla="pin 0 q3 h" />\r
-- <gd name="y2" fmla="+- b 0 y1" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="y2" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x4" y="t" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x6" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </parallelogram>\r
-- <pentagon>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="hf" fmla="val 105146" />\r
-- <gd name="vf" fmla="val 110557" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
-- <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
-- <gd name="svc" fmla="*/ vc vf 100000" />\r
-- <gd name="dx1" fmla="cos swd2 1080000" />\r
-- <gd name="dx2" fmla="cos swd2 18360000" />\r
-- <gd name="dy1" fmla="sin shd2 1080000" />\r
-- <gd name="dy2" fmla="sin shd2 18360000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- svc 0 dy1" />\r
-- <gd name="y2" fmla="+- svc 0 dy2" />\r
-- <gd name="it" fmla="*/ y1 dx2 dx1" />\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="y2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x2" t="it" r="x3" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </pentagon>\r
-- <pie>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 0" />\r
-- <gd name="adj2" fmla="val 16200000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="stAng" fmla="pin 0 adj1 21599999" />\r
-- <gd name="enAng" fmla="pin 0 adj2 21599999" />\r
-- <gd name="sw1" fmla="+- enAng 0 stAng" />\r
-- <gd name="sw2" fmla="+- sw1 21600000 0" />\r
-- <gd name="swAng" fmla="?: sw1 sw1 sw2" />\r
-- <gd name="wt1" fmla="sin wd2 stAng" />\r
-- <gd name="ht1" fmla="cos hd2 stAng" />\r
-- <gd name="dx1" fmla="cat2 wd2 ht1 wt1" />\r
-- <gd name="dy1" fmla="sat2 hd2 ht1 wt1" />\r
-- <gd name="x1" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- vc dy1 0" />\r
-- <gd name="wt2" fmla="sin wd2 enAng" />\r
-- <gd name="ht2" fmla="cos hd2 enAng" />\r
-- <gd name="dx2" fmla="cat2 wd2 ht2 wt2" />\r
-- <gd name="dy2" fmla="sat2 hd2 ht2 wt2" />\r
-- <gd name="x2" fmla="+- hc dx2 0" />\r
-- <gd name="y2" fmla="+- vc dy2 0" />\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahPolar gdRefAng="adj1" minAng="0" maxAng="21599999">\r
-- <pos x="x1" y="y1" />\r
-- </ahPolar>\r
-- <ahPolar gdRefAng="adj2" minAng="0" maxAng="21599999">\r
-- <pos x="x2" y="y2" />\r
-- </ahPolar>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="ir" r="it" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="stAng" swAng="swAng" />\r
-- <lnTo>\r
-- <pt x="hc" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </pie>\r
-- <pieWedge>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="g1" fmla="cos w 13500000" />\r
-- <gd name="g2" fmla="sin h 13500000" />\r
-- <gd name="x1" fmla="+- r g1 0" />\r
-- <gd name="y1" fmla="+- b g2 0" />\r
-- </gdLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="x1" t="y1" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="h" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </pieWedge>\r
-- <plaque>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 16667" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="x1" fmla="*/ ss a 100000" />\r
-- <gd name="x2" fmla="+- r 0 x1" />\r
--\r
-- <gd name="y2" fmla="+- b 0 x1" />\r
-- <gd name="il" fmla="*/ x1 70711 100000" />\r
--\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 il" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="x1" />\r
-- </moveTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="0" swAng="-5400000" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </plaque>\r
-- <plaqueTabs>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="md" fmla="mod w h 0" />\r
-- <gd name="dx" fmla="*/ 1 md 20" />\r
--\r
-- <gd name="y1" fmla="+- 0 b dx" />\r
--\r
-- <gd name="x1" fmla="+- 0 r dx" />\r
--\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="dx" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="b" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="dx" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="dx" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="t" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="dx" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y1" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="dx" t="dx" r="x1" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="dx" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="dx" hR="dx" stAng="0" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="dx" hR="dx" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="r" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="dx" />\r
-- </lnTo>\r
-- <arcTo wR="dx" hR="dx" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="dx" hR="dx" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </plaqueTabs>\r
-- <plus>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 25000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="x1" fmla="*/ ss a 100000" />\r
-- <gd name="x2" fmla="+- r 0 x1" />\r
-- <gd name="y2" fmla="+- b 0 x1" />\r
-- <gd name="d" fmla="+- w 0 h" />\r
-- <gd name="il" fmla="?: d l x1" />\r
-- <gd name="ir" fmla="?: d r x2" />\r
-- <gd name="it" fmla="?: d x1 t" />\r
-- <gd name="ib" fmla="?: d y2 b" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="x1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </plus>\r
-- <quadArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 22500" />\r
--\r
-- <gd name="adj2" fmla="val 22500" />\r
--\r
-- <gd name="adj3" fmla="val 22500" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="q1" fmla="+- 100000 0 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="*/ q1 1 2" />\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="x1" fmla="*/ ss a3 100000" />\r
-- <gd name="dx2" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x5" fmla="+- hc dx2 0" />\r
-- <gd name="dx3" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="x3" fmla="+- hc 0 dx3" />\r
-- <gd name="x4" fmla="+- hc dx3 0" />\r
-- <gd name="x6" fmla="+- r 0 x1" />\r
--\r
-- <gd name="y2" fmla="+- vc 0 dx2" />\r
-- <gd name="y5" fmla="+- vc dx2 0" />\r
-- <gd name="y3" fmla="+- vc 0 dx3" />\r
-- <gd name="y4" fmla="+- vc dx3 0" />\r
-- <gd name="y6" fmla="+- b 0 x1" />\r
-- <gd name="il" fmla="*/ dx3 x1 dx2" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
-- <pos x="x3" y="x1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="r" y="x1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="y3" r="ir" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="x1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y5" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </quadArrow>\r
-- <quadArrowCallout>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 18515" />\r
--\r
-- <gd name="adj2" fmla="val 18515" />\r
--\r
-- <gd name="adj3" fmla="val 18515" />\r
--\r
-- <gd name="adj4" fmla="val 48123" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="+- 50000 0 a2" />\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="q2" fmla="*/ a3 2 1" />\r
--\r
-- <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
--\r
-- <gd name="a4" fmla="pin a1 adj4 maxAdj4" />\r
-- <gd name="dx2" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="dx3" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="ah" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="dx1" fmla="*/ w a4 200000" />\r
--\r
-- <gd name="dy1" fmla="*/ h a4 200000" />\r
--\r
--\r
-- <gd name="x8" fmla="+- r 0 ah" />\r
-- <gd name="x2" fmla="+- hc 0 dx1" />\r
-- <gd name="x7" fmla="+- hc dx1 0" />\r
-- <gd name="x3" fmla="+- hc 0 dx2" />\r
-- <gd name="x6" fmla="+- hc dx2 0" />\r
-- <gd name="x4" fmla="+- hc 0 dx3" />\r
-- <gd name="x5" fmla="+- hc dx3 0" />\r
--\r
-- <gd name="y8" fmla="+- b 0 ah" />\r
-- <gd name="y2" fmla="+- vc 0 dy1" />\r
-- <gd name="y7" fmla="+- vc dy1 0" />\r
-- <gd name="y3" fmla="+- vc 0 dx2" />\r
-- <gd name="y6" fmla="+- vc dx2 0" />\r
-- <gd name="y4" fmla="+- vc 0 dx3" />\r
-- <gd name="y5" fmla="+- vc dx3 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
-- <pos x="x4" y="ah" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="x3" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="r" y="ah" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj4" minY="a1" maxY="maxAdj4">\r
-- <pos x="l" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x2" t="y2" r="x7" b="y7" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="ah" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="ah" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="ah" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="ah" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="ah" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="ah" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="ah" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="ah" y="y6" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </quadArrowCallout>\r
-- <rect>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </rect>\r
-- <ribbon>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 16667" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 33333" />\r
-- <gd name="a2" fmla="pin 25000 adj2 75000" />\r
--\r
--\r
-- <gd name="x10" fmla="+- r 0 wd8" />\r
--\r
-- <gd name="dx2" fmla="*/ w a2 200000" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
--\r
-- <gd name="x9" fmla="+- hc dx2 0" />\r
--\r
-- <gd name="x3" fmla="+- x2 wd32 0" />\r
-- <gd name="x8" fmla="+- x9 0 wd32" />\r
-- <gd name="x5" fmla="+- x2 wd8 0" />\r
--\r
-- <gd name="x6" fmla="+- x9 0 wd8" />\r
--\r
-- <gd name="x4" fmla="+- x5 0 wd32" />\r
-- <gd name="x7" fmla="+- x6 wd32 0" />\r
-- <gd name="y1" fmla="*/ h a1 200000" />\r
--\r
-- <gd name="y2" fmla="*/ h a1 100000" />\r
--\r
-- <gd name="y4" fmla="+- b 0 y2" />\r
--\r
-- <gd name="y3" fmla="*/ y4 1 2" />\r
--\r
-- <gd name="hR" fmla="*/ h a1 400000" />\r
--\r
-- <gd name="y5" fmla="+- b 0 hR" />\r
-- <gd name="y6" fmla="+- y2 0 hR" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="33333">\r
-- <pos x="hc" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="25000" maxX="75000">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="wd8" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x10" y="y3" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x2" t="y2" r="x9" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x8" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x7" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y5" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x3" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="wd8" y="y3" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darkenLess" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="x5" y="hR" />\r
-- </moveTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x5" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x6" y="hR" />\r
-- </moveTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd2" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x8" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x8" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x7" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y5" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x3" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="wd8" y="y3" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x5" y="hR" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y2" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x6" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x6" y="hR" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x2" y="y4" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y6" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x9" y="y6" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y4" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </ribbon>\r
-- <ribbon2>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 16667" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 33333" />\r
-- <gd name="a2" fmla="pin 25000 adj2 75000" />\r
--\r
--\r
-- <gd name="x10" fmla="+- r 0 wd8" />\r
--\r
-- <gd name="dx2" fmla="*/ w a2 200000" />\r
--\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
--\r
-- <gd name="x9" fmla="+- hc dx2 0" />\r
--\r
-- <gd name="x3" fmla="+- x2 wd32 0" />\r
-- <gd name="x8" fmla="+- x9 0 wd32" />\r
-- <gd name="x5" fmla="+- x2 wd8 0" />\r
--\r
-- <gd name="x6" fmla="+- x9 0 wd8" />\r
--\r
-- <gd name="x4" fmla="+- x5 0 wd32" />\r
-- <gd name="x7" fmla="+- x6 wd32 0" />\r
-- <gd name="dy1" fmla="*/ h a1 200000" />\r
--\r
-- <gd name="y1" fmla="+- b 0 dy1" />\r
-- <gd name="dy2" fmla="*/ h a1 100000" />\r
--\r
-- <gd name="y2" fmla="+- b 0 dy2" />\r
-- <gd name="y4" fmla="+- t dy2 0" />\r
--\r
-- <gd name="y3" fmla="+/ y4 b 2" />\r
--\r
-- <gd name="hR" fmla="*/ h a1 400000" />\r
--\r
--\r
-- <gd name="y6" fmla="+- b 0 hR" />\r
-- <gd name="y7" fmla="+- y1 0 hR" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="33333">\r
-- <pos x="hc" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="25000" maxX="75000">\r
-- <pos x="x2" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="wd8" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="y2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x10" y="y3" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x2" t="t" r="x9" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x4" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x8" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x7" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="hR" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="0" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="wd8" y="y3" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path stroke="false" fill="darkenLess" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="x5" y="y6" />\r
-- </moveTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="0" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x5" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x6" y="y6" />\r
-- </moveTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x8" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="wd8" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="hR" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x8" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x9" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x8" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd32" hR="hR" stAng="3cd4" swAng="cd2" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x5" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y6" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x6" y="y6" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x2" y="y7" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x9" y="y4" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y7" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </ribbon2>\r
-- <rightArrow>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 100000 w ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="dx1" fmla="*/ ss a2 100000" />\r
-- <gd name="x1" fmla="+- r 0 dx1" />\r
-- <gd name="dy1" fmla="*/ h a1 200000" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc dy1 0" />\r
-- <gd name="dx2" fmla="*/ y1 dx1 hd2" />\r
-- <gd name="x2" fmla="+- x1 dx2 0" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="y1" r="x2" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </rightArrow>\r
-- <rightArrowCallout>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- <gd name="adj4" fmla="val 64977" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="*/ 100000 w ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="q2" fmla="*/ a3 ss w" />\r
--\r
-- <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
--\r
-- <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
-- <gd name="dy1" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="dy2" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
-- <gd name="y3" fmla="+- vc dy2 0" />\r
-- <gd name="y4" fmla="+- vc dy1 0" />\r
-- <gd name="dx3" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="x3" fmla="+- r 0 dx3" />\r
-- <gd name="x2" fmla="*/ w a4 100000" />\r
--\r
-- <gd name="x1" fmla="*/ x2 1 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
-- <pos x="x3" y="y2" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
-- <pos x="r" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj3" minX="0" maxX="maxAdj3">\r
-- <pos x="x3" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
-- <pos x="x2" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="x2" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </rightArrowCallout>\r
-- <rightBrace>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 8333" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a2" fmla="pin 0 adj2 100000" />\r
-- <gd name="q1" fmla="+- 100000 0 a2" />\r
-- <gd name="q2" fmla="min q1 a2" />\r
-- <gd name="q3" fmla="*/ q2 1 2" />\r
-- <gd name="maxAdj1" fmla="*/ q3 h ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="y1" fmla="*/ ss a1 100000" />\r
-- <gd name="y3" fmla="*/ h a2 100000" />\r
-- <gd name="y2" fmla="+- y3 0 y1" />\r
-- <gd name="y4" fmla="+- b 0 y1" />\r
-- <gd name="dx1" fmla="cos wd2 2700000" />\r
-- <gd name="dy1" fmla="sin y1 2700000" />\r
-- <gd name="ir" fmla="+- l dx1 0" />\r
-- <gd name="it" fmla="+- y1 0 dy1" />\r
-- <gd name="ib" fmla="+- b dy1 y1" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="maxAdj1">\r
-- <pos x="hc" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="100000">\r
-- <pos x="r" y="y3" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="l" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="r" y="y3" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="l" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="l" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="hc" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="-5400000" />\r
-- <arcTo wR="wd2" hR="y1" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="hc" y="y4" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="hc" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="cd2" swAng="-5400000" />\r
-- <arcTo wR="wd2" hR="y1" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="hc" y="y4" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="y1" stAng="0" swAng="cd4" />\r
-- </path>\r
-- </pathLst>\r
-- </rightBrace>\r
-- <rightBracket>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 8333" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj" fmla="*/ 50000 h ss" />\r
--\r
-- <gd name="a" fmla="pin 0 adj maxAdj" />\r
-- <gd name="y1" fmla="*/ ss a 100000" />\r
--\r
-- <gd name="y2" fmla="+- b 0 y1" />\r
--\r
-- <gd name="dx1" fmla="cos w 2700000" />\r
-- <gd name="dy1" fmla="sin y1 2700000" />\r
-- <gd name="ir" fmla="+- l dx1 0" />\r
-- <gd name="it" fmla="+- y1 0 dy1" />\r
-- <gd name="ib" fmla="+- b dy1 y1" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="maxAdj">\r
-- <pos x="r" y="y1" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="l" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="l" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="y1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="y1" stAng="0" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- <path fill="none">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <arcTo wR="w" hR="y1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="w" hR="y1" stAng="0" swAng="cd4" />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </rightBracket>\r
-- <round1Rect>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 16667" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dx1" fmla="*/ ss a 100000" />\r
-- <gd name="x1" fmla="+- r 0 dx1" />\r
-- <gd name="idx" fmla="*/ dx1 29289 100000" />\r
-- <gd name="ir" fmla="+- r 0 idx" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="dx1" hR="dx1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </round1Rect>\r
-- <round2DiagRect>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 16667" />\r
-- <gd name="adj2" fmla="val 0" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 50000" />\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="x1" fmla="*/ ss a1 100000" />\r
-- <gd name="y1" fmla="+- b 0 x1" />\r
-- <gd name="a" fmla="*/ ss a2 100000" />\r
-- <gd name="x2" fmla="+- r 0 a" />\r
-- <gd name="y2" fmla="+- b 0 a" />\r
-- <gd name="dx1" fmla="*/ x1 29289 100000" />\r
-- <gd name="dx2" fmla="*/ a 29289 100000" />\r
-- <gd name="d" fmla="+- dx1 0 dx2" />\r
-- <gd name="dx" fmla="?: d dx1 dx2" />\r
-- <gd name="ir" fmla="+- r 0 dx" />\r
-- <gd name="ib" fmla="+- b 0 dx" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="dx" t="dx" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="a" hR="a" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="a" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="a" hR="a" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="l" y="x1" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </round2DiagRect>\r
-- <round2SameRect>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 16667" />\r
-- <gd name="adj2" fmla="val 0" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 50000" />\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
--\r
-- <gd name="tx1" fmla="*/ ss a1 100000" />\r
-- <gd name="tx2" fmla="+- r 0 tx1" />\r
--\r
-- <gd name="bx1" fmla="*/ ss a2 100000" />\r
-- <gd name="bx2" fmla="+- r 0 bx1" />\r
-- <gd name="by1" fmla="+- b 0 bx1" />\r
-- <gd name="d" fmla="+- tx1 0 bx1" />\r
-- <gd name="tdx" fmla="*/ tx1 29289 100000" />\r
-- <gd name="bdx" fmla="*/ bx1 29289 100000" />\r
-- <gd name="il" fmla="?: d tdx bdx" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 bdx" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
-- <pos x="tx2" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="bx1" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="tdx" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="tx1" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="tx2" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="tx1" hR="tx1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="by1" />\r
-- </lnTo>\r
-- <arcTo wR="bx1" hR="bx1" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="bx1" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="bx1" hR="bx1" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="l" y="tx1" />\r
-- </lnTo>\r
-- <arcTo wR="tx1" hR="tx1" stAng="cd2" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </round2SameRect>\r
-- <roundRect>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 16667" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="x1" fmla="*/ ss a 100000" />\r
-- <gd name="x2" fmla="+- r 0 x1" />\r
-- <gd name="y2" fmla="+- b 0 x1" />\r
-- <gd name="il" fmla="*/ x1 29289 100000" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 il" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="x1" />\r
-- </moveTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </roundRect>\r
-- <rtTriangle>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="it" fmla="*/ h 7 12" />\r
-- <gd name="ir" fmla="*/ w 7 12" />\r
-- <gd name="ib" fmla="*/ h 11 12" />\r
-- </gdLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="l" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="l" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="hc" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="wd12" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="l" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </rtTriangle>\r
-- <smileyFace>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 4653" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin -4653 adj 4653" />\r
-- <gd name="x1" fmla="*/ w 4969 21699" />\r
--\r
-- <gd name="x2" fmla="*/ w 6215 21600" />\r
--\r
-- <gd name="x3" fmla="*/ w 13135 21600" />\r
--\r
-- <gd name="x4" fmla="*/ w 16640 21600" />\r
--\r
-- <gd name="y1" fmla="*/ h 7570 21600" />\r
--\r
-- <gd name="y3" fmla="*/ h 16515 21600" />\r
--\r
-- <gd name="dy2" fmla="*/ h a 100000" />\r
--\r
-- <gd name="y2" fmla="+- y3 0 dy2" />\r
--\r
-- <gd name="y4" fmla="+- y3 dy2 0" />\r
--\r
-- <gd name="dy3" fmla="*/ h a 50000" />\r
--\r
-- <gd name="y5" fmla="+- y4 dy3 0" />\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- <gd name="wR" fmla="*/ w 1125 21600" />\r
-- <gd name="hR" fmla="*/ h 1125 21600" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="-4653" maxY="4653">\r
-- <pos x="hc" y="y4" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="il" y="it" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="il" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ir" y="ib" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="ir" y="it" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- <path fill="darkenLess" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="x2" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wR" hR="hR" stAng="cd2" swAng="21600000" />\r
-- <moveTo>\r
-- <pt x="x3" y="y1" />\r
-- </moveTo>\r
-- <arcTo wR="wR" hR="hR" stAng="cd2" swAng="21600000" />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="x1" y="y2" />\r
-- </moveTo>\r
-- <quadBezTo>\r
-- <pt x="hc" y="y5" />\r
-- <pt x="x4" y="y2" />\r
-- </quadBezTo>\r
-- </path>\r
-- <path fill="none">\r
--\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </smileyFace>\r
-- <snip1Rect>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 16667" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dx1" fmla="*/ ss a 100000" />\r
-- <gd name="x1" fmla="+- r 0 dx1" />\r
-- <gd name="it" fmla="*/ dx1 1 2" />\r
-- <gd name="ir" fmla="+/ x1 r 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="it" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="dx1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </snip1Rect>\r
-- <snip2DiagRect>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 0" />\r
-- <gd name="adj2" fmla="val 16667" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 50000" />\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="lx1" fmla="*/ ss a1 100000" />\r
-- <gd name="lx2" fmla="+- r 0 lx1" />\r
-- <gd name="ly1" fmla="+- b 0 lx1" />\r
-- <gd name="rx1" fmla="*/ ss a2 100000" />\r
-- <gd name="rx2" fmla="+- r 0 rx1" />\r
-- <gd name="ry1" fmla="+- b 0 rx1" />\r
-- <gd name="d" fmla="+- lx1 0 rx1" />\r
-- <gd name="dx" fmla="?: d lx1 rx1" />\r
-- <gd name="il" fmla="*/ dx 1 2" />\r
--\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 il" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
-- <pos x="lx1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="rx2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="lx1" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="rx2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="rx1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="ly1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="lx2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="rx1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="ry1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="lx1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </snip2DiagRect>\r
-- <snip2SameRect>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 16667" />\r
-- <gd name="adj2" fmla="val 0" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 50000" />\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="tx1" fmla="*/ ss a1 100000" />\r
-- <gd name="tx2" fmla="+- r 0 tx1" />\r
-- <gd name="bx1" fmla="*/ ss a2 100000" />\r
-- <gd name="bx2" fmla="+- r 0 bx1" />\r
-- <gd name="by1" fmla="+- b 0 bx1" />\r
-- <gd name="d" fmla="+- tx1 0 bx1" />\r
-- <gd name="dx" fmla="?: d tx1 bx1" />\r
-- <gd name="il" fmla="*/ dx 1 2" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="it" fmla="*/ tx1 1 2" />\r
-- <gd name="ib" fmla="+/ by1 b 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
-- <pos x="tx2" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="bx1" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="tx1" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="tx2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="tx1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="by1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="bx2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="bx1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="by1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="tx1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </snip2SameRect>\r
-- <snipRoundRect>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 16667" />\r
-- <gd name="adj2" fmla="val 16667" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 50000" />\r
-- <gd name="a2" fmla="pin 0 adj2 50000" />\r
-- <gd name="x1" fmla="*/ ss a1 100000" />\r
-- <gd name="dx2" fmla="*/ ss a2 100000" />\r
-- <gd name="x2" fmla="+- r 0 dx2" />\r
-- <gd name="il" fmla="*/ x1 29289 100000" />\r
--\r
-- <gd name="ir" fmla="+/ x2 r 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="50000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="50000">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="il" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="dx2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="x1" />\r
-- </lnTo>\r
-- <arcTo wR="x1" hR="x1" stAng="cd2" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </snipRoundRect>\r
-- <squareTabs>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="md" fmla="mod w h 0" />\r
-- <gd name="dx" fmla="*/ 1 md 20" />\r
--\r
-- <gd name="y1" fmla="+- 0 b dx" />\r
--\r
-- <gd name="x1" fmla="+- 0 r dx" />\r
--\r
-- </gdLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="dx" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="dx" y="dx" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="dx" y="x1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="dx" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="dx" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="t" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="dx" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y1" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x1" y="dx" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="dx" t="dx" r="x1" b="y1" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="dx" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="dx" y="dx" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="dx" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="dx" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="dx" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="dx" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="dx" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </squareTabs>\r
-- <star10>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 42533" />\r
-- <gd name="hf" fmla="val 105146" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
-- <gd name="dx1" fmla="*/ swd2 95106 100000" />\r
-- <gd name="dx2" fmla="*/ swd2 58779 100000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
-- <gd name="dy1" fmla="*/ hd2 80902 100000" />\r
-- <gd name="dy2" fmla="*/ hd2 30902 100000" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
-- <gd name="y3" fmla="+- vc dy2 0" />\r
-- <gd name="y4" fmla="+- vc dy1 0" />\r
-- <gd name="iwd2" fmla="*/ swd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
-- <gd name="sdx1" fmla="*/ iwd2 80902 100000" />\r
-- <gd name="sdx2" fmla="*/ iwd2 30902 100000" />\r
-- <gd name="sdy1" fmla="*/ ihd2 95106 100000" />\r
-- <gd name="sdy2" fmla="*/ ihd2 58779 100000" />\r
-- <gd name="sx1" fmla="+- hc 0 iwd2" />\r
-- <gd name="sx2" fmla="+- hc 0 sdx1" />\r
-- <gd name="sx3" fmla="+- hc 0 sdx2" />\r
-- <gd name="sx4" fmla="+- hc sdx2 0" />\r
-- <gd name="sx5" fmla="+- hc sdx1 0" />\r
-- <gd name="sx6" fmla="+- hc iwd2 0" />\r
-- <gd name="sy1" fmla="+- vc 0 sdy1" />\r
-- <gd name="sy2" fmla="+- vc 0 sdy2" />\r
-- <gd name="sy3" fmla="+- vc sdy2 0" />\r
-- <gd name="sy4" fmla="+- vc sdy1 0" />\r
-- <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="50000">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y2" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="sx2" t="sy2" r="sx5" b="sy3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </star10>\r
-- <star12>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 37500" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dx1" fmla="cos wd2 1800000" />\r
--\r
-- <gd name="dy1" fmla="sin hd2 3600000" />\r
--\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x3" fmla="*/ w 3 4" />\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y3" fmla="*/ h 3 4" />\r
-- <gd name="y4" fmla="+- vc dy1 0" />\r
-- <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
-- <gd name="sdx1" fmla="cos iwd2 900000" />\r
-- <gd name="sdx2" fmla="cos iwd2 2700000" />\r
-- <gd name="sdx3" fmla="cos iwd2 4500000" />\r
-- <gd name="sdy1" fmla="sin ihd2 4500000" />\r
-- <gd name="sdy2" fmla="sin ihd2 2700000" />\r
-- <gd name="sdy3" fmla="sin ihd2 900000" />\r
-- <gd name="sx1" fmla="+- hc 0 sdx1" />\r
-- <gd name="sx2" fmla="+- hc 0 sdx2" />\r
-- <gd name="sx3" fmla="+- hc 0 sdx3" />\r
-- <gd name="sx4" fmla="+- hc sdx3 0" />\r
-- <gd name="sx5" fmla="+- hc sdx2 0" />\r
-- <gd name="sx6" fmla="+- hc sdx1 0" />\r
-- <gd name="sy1" fmla="+- vc 0 sdy1" />\r
-- <gd name="sy2" fmla="+- vc 0 sdy2" />\r
-- <gd name="sy3" fmla="+- vc 0 sdy3" />\r
-- <gd name="sy4" fmla="+- vc sdy3 0" />\r
-- <gd name="sy5" fmla="+- vc sdy2 0" />\r
-- <gd name="sy6" fmla="+- vc sdy1 0" />\r
-- <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="50000">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x4" y="hd4" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="wd4" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="hd4" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="wd4" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="sx2" t="sy2" r="sx5" b="sy5" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="hd4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="wd4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="hd4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="wd4" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy4" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </star12>\r
-- <star16>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 37500" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dx1" fmla="*/ wd2 92388 100000" />\r
-- <gd name="dx2" fmla="*/ wd2 70711 100000" />\r
-- <gd name="dx3" fmla="*/ wd2 38268 100000" />\r
-- <gd name="dy1" fmla="*/ hd2 92388 100000" />\r
-- <gd name="dy2" fmla="*/ hd2 70711 100000" />\r
-- <gd name="dy3" fmla="*/ hd2 38268 100000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc 0 dx3" />\r
-- <gd name="x4" fmla="+- hc dx3 0" />\r
-- <gd name="x5" fmla="+- hc dx2 0" />\r
-- <gd name="x6" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
-- <gd name="y3" fmla="+- vc 0 dy3" />\r
-- <gd name="y4" fmla="+- vc dy3 0" />\r
-- <gd name="y5" fmla="+- vc dy2 0" />\r
-- <gd name="y6" fmla="+- vc dy1 0" />\r
-- <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
-- <gd name="sdx1" fmla="*/ iwd2 98079 100000" />\r
-- <gd name="sdx2" fmla="*/ iwd2 83147 100000" />\r
-- <gd name="sdx3" fmla="*/ iwd2 55557 100000" />\r
-- <gd name="sdx4" fmla="*/ iwd2 19509 100000" />\r
-- <gd name="sdy1" fmla="*/ ihd2 98079 100000" />\r
-- <gd name="sdy2" fmla="*/ ihd2 83147 100000" />\r
-- <gd name="sdy3" fmla="*/ ihd2 55557 100000" />\r
-- <gd name="sdy4" fmla="*/ ihd2 19509 100000" />\r
-- <gd name="sx1" fmla="+- hc 0 sdx1" />\r
-- <gd name="sx2" fmla="+- hc 0 sdx2" />\r
-- <gd name="sx3" fmla="+- hc 0 sdx3" />\r
-- <gd name="sx4" fmla="+- hc 0 sdx4" />\r
-- <gd name="sx5" fmla="+- hc sdx4 0" />\r
-- <gd name="sx6" fmla="+- hc sdx3 0" />\r
-- <gd name="sx7" fmla="+- hc sdx2 0" />\r
-- <gd name="sx8" fmla="+- hc sdx1 0" />\r
-- <gd name="sy1" fmla="+- vc 0 sdy1" />\r
-- <gd name="sy2" fmla="+- vc 0 sdy2" />\r
-- <gd name="sy3" fmla="+- vc 0 sdy3" />\r
-- <gd name="sy4" fmla="+- vc 0 sdy4" />\r
-- <gd name="sy5" fmla="+- vc sdy4 0" />\r
-- <gd name="sy6" fmla="+- vc sdy3 0" />\r
-- <gd name="sy7" fmla="+- vc sdy2 0" />\r
-- <gd name="sy8" fmla="+- vc sdy1 0" />\r
-- <gd name="idx" fmla="cos iwd2 2700000" />\r
-- <gd name="idy" fmla="sin ihd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="50000">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x5" y="y2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x6" y="y3" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x6" y="y4" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x5" y="y5" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x4" y="y6" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="y6" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x2" y="y5" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x2" y="y2" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x3" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x4" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx7" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx8" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx8" y="sy5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx7" y="sy6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="sy7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy5" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </star16>\r
-- <star24>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 37500" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dx1" fmla="cos wd2 900000" />\r
-- <gd name="dx2" fmla="cos wd2 1800000" />\r
-- <gd name="dx3" fmla="cos wd2 2700000" />\r
-- <gd name="dx4" fmla="val wd4" />\r
-- <gd name="dx5" fmla="cos wd2 4500000" />\r
-- <gd name="dy1" fmla="sin hd2 4500000" />\r
-- <gd name="dy2" fmla="sin hd2 3600000" />\r
-- <gd name="dy3" fmla="sin hd2 2700000" />\r
-- <gd name="dy4" fmla="val hd4" />\r
-- <gd name="dy5" fmla="sin hd2 900000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc 0 dx3" />\r
-- <gd name="x4" fmla="+- hc 0 dx4" />\r
-- <gd name="x5" fmla="+- hc 0 dx5" />\r
-- <gd name="x6" fmla="+- hc dx5 0" />\r
-- <gd name="x7" fmla="+- hc dx4 0" />\r
-- <gd name="x8" fmla="+- hc dx3 0" />\r
-- <gd name="x9" fmla="+- hc dx2 0" />\r
-- <gd name="x10" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
-- <gd name="y3" fmla="+- vc 0 dy3" />\r
-- <gd name="y4" fmla="+- vc 0 dy4" />\r
-- <gd name="y5" fmla="+- vc 0 dy5" />\r
-- <gd name="y6" fmla="+- vc dy5 0" />\r
-- <gd name="y7" fmla="+- vc dy4 0" />\r
-- <gd name="y8" fmla="+- vc dy3 0" />\r
-- <gd name="y9" fmla="+- vc dy2 0" />\r
-- <gd name="y10" fmla="+- vc dy1 0" />\r
-- <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
-- <gd name="sdx1" fmla="*/ iwd2 99144 100000" />\r
-- <gd name="sdx2" fmla="*/ iwd2 92388 100000" />\r
-- <gd name="sdx3" fmla="*/ iwd2 79335 100000" />\r
-- <gd name="sdx4" fmla="*/ iwd2 60876 100000" />\r
-- <gd name="sdx5" fmla="*/ iwd2 38268 100000" />\r
-- <gd name="sdx6" fmla="*/ iwd2 13053 100000" />\r
-- <gd name="sdy1" fmla="*/ ihd2 99144 100000" />\r
-- <gd name="sdy2" fmla="*/ ihd2 92388 100000" />\r
-- <gd name="sdy3" fmla="*/ ihd2 79335 100000" />\r
-- <gd name="sdy4" fmla="*/ ihd2 60876 100000" />\r
-- <gd name="sdy5" fmla="*/ ihd2 38268 100000" />\r
-- <gd name="sdy6" fmla="*/ ihd2 13053 100000" />\r
-- <gd name="sx1" fmla="+- hc 0 sdx1" />\r
-- <gd name="sx2" fmla="+- hc 0 sdx2" />\r
-- <gd name="sx3" fmla="+- hc 0 sdx3" />\r
-- <gd name="sx4" fmla="+- hc 0 sdx4" />\r
-- <gd name="sx5" fmla="+- hc 0 sdx5" />\r
-- <gd name="sx6" fmla="+- hc 0 sdx6" />\r
-- <gd name="sx7" fmla="+- hc sdx6 0" />\r
-- <gd name="sx8" fmla="+- hc sdx5 0" />\r
-- <gd name="sx9" fmla="+- hc sdx4 0" />\r
-- <gd name="sx10" fmla="+- hc sdx3 0" />\r
-- <gd name="sx11" fmla="+- hc sdx2 0" />\r
-- <gd name="sx12" fmla="+- hc sdx1 0" />\r
-- <gd name="sy1" fmla="+- vc 0 sdy1" />\r
-- <gd name="sy2" fmla="+- vc 0 sdy2" />\r
-- <gd name="sy3" fmla="+- vc 0 sdy3" />\r
-- <gd name="sy4" fmla="+- vc 0 sdy4" />\r
-- <gd name="sy5" fmla="+- vc 0 sdy5" />\r
-- <gd name="sy6" fmla="+- vc 0 sdy6" />\r
-- <gd name="sy7" fmla="+- vc sdy6 0" />\r
-- <gd name="sy8" fmla="+- vc sdy5 0" />\r
-- <gd name="sy9" fmla="+- vc sdy4 0" />\r
-- <gd name="sy10" fmla="+- vc sdy3 0" />\r
-- <gd name="sy11" fmla="+- vc sdy2 0" />\r
-- <gd name="sy12" fmla="+- vc sdy1 0" />\r
-- <gd name="idx" fmla="cos iwd2 2700000" />\r
-- <gd name="idy" fmla="sin ihd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="ssd2">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx7" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx8" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx9" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx10" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx11" y="sy5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx12" y="sy6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx12" y="sy7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx11" y="sy8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx10" y="sy9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx9" y="sy10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx8" y="sy11" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx7" y="sy12" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="sy12" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy11" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy7" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </star24>\r
-- <star32>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 37500" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dx1" fmla="*/ wd2 98079 100000" />\r
-- <gd name="dx2" fmla="*/ wd2 92388 100000" />\r
-- <gd name="dx3" fmla="*/ wd2 83147 100000" />\r
-- <gd name="dx4" fmla="cos wd2 2700000" />\r
-- <gd name="dx5" fmla="*/ wd2 55557 100000" />\r
-- <gd name="dx6" fmla="*/ wd2 38268 100000" />\r
-- <gd name="dx7" fmla="*/ wd2 19509 100000" />\r
-- <gd name="dy1" fmla="*/ hd2 98079 100000" />\r
-- <gd name="dy2" fmla="*/ hd2 92388 100000" />\r
-- <gd name="dy3" fmla="*/ hd2 83147 100000" />\r
-- <gd name="dy4" fmla="sin hd2 2700000" />\r
-- <gd name="dy5" fmla="*/ hd2 55557 100000" />\r
-- <gd name="dy6" fmla="*/ hd2 38268 100000" />\r
-- <gd name="dy7" fmla="*/ hd2 19509 100000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc 0 dx3" />\r
-- <gd name="x4" fmla="+- hc 0 dx4" />\r
-- <gd name="x5" fmla="+- hc 0 dx5" />\r
-- <gd name="x6" fmla="+- hc 0 dx6" />\r
-- <gd name="x7" fmla="+- hc 0 dx7" />\r
-- <gd name="x8" fmla="+- hc dx7 0" />\r
-- <gd name="x9" fmla="+- hc dx6 0" />\r
-- <gd name="x10" fmla="+- hc dx5 0" />\r
-- <gd name="x11" fmla="+- hc dx4 0" />\r
-- <gd name="x12" fmla="+- hc dx3 0" />\r
-- <gd name="x13" fmla="+- hc dx2 0" />\r
-- <gd name="x14" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
-- <gd name="y3" fmla="+- vc 0 dy3" />\r
-- <gd name="y4" fmla="+- vc 0 dy4" />\r
-- <gd name="y5" fmla="+- vc 0 dy5" />\r
-- <gd name="y6" fmla="+- vc 0 dy6" />\r
-- <gd name="y7" fmla="+- vc 0 dy7" />\r
-- <gd name="y8" fmla="+- vc dy7 0" />\r
-- <gd name="y9" fmla="+- vc dy6 0" />\r
-- <gd name="y10" fmla="+- vc dy5 0" />\r
-- <gd name="y11" fmla="+- vc dy4 0" />\r
-- <gd name="y12" fmla="+- vc dy3 0" />\r
-- <gd name="y13" fmla="+- vc dy2 0" />\r
-- <gd name="y14" fmla="+- vc dy1 0" />\r
-- <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
-- <gd name="sdx1" fmla="*/ iwd2 99518 100000" />\r
-- <gd name="sdx2" fmla="*/ iwd2 95694 100000" />\r
-- <gd name="sdx3" fmla="*/ iwd2 88192 100000" />\r
-- <gd name="sdx4" fmla="*/ iwd2 77301 100000" />\r
-- <gd name="sdx5" fmla="*/ iwd2 63439 100000" />\r
-- <gd name="sdx6" fmla="*/ iwd2 47140 100000" />\r
-- <gd name="sdx7" fmla="*/ iwd2 29028 100000" />\r
-- <gd name="sdx8" fmla="*/ iwd2 9802 100000" />\r
-- <gd name="sdy1" fmla="*/ ihd2 99518 100000" />\r
-- <gd name="sdy2" fmla="*/ ihd2 95694 100000" />\r
-- <gd name="sdy3" fmla="*/ ihd2 88192 100000" />\r
-- <gd name="sdy4" fmla="*/ ihd2 77301 100000" />\r
-- <gd name="sdy5" fmla="*/ ihd2 63439 100000" />\r
-- <gd name="sdy6" fmla="*/ ihd2 47140 100000" />\r
-- <gd name="sdy7" fmla="*/ ihd2 29028 100000" />\r
-- <gd name="sdy8" fmla="*/ ihd2 9802 100000" />\r
-- <gd name="sx1" fmla="+- hc 0 sdx1" />\r
-- <gd name="sx2" fmla="+- hc 0 sdx2" />\r
-- <gd name="sx3" fmla="+- hc 0 sdx3" />\r
-- <gd name="sx4" fmla="+- hc 0 sdx4" />\r
-- <gd name="sx5" fmla="+- hc 0 sdx5" />\r
-- <gd name="sx6" fmla="+- hc 0 sdx6" />\r
-- <gd name="sx7" fmla="+- hc 0 sdx7" />\r
-- <gd name="sx8" fmla="+- hc 0 sdx8" />\r
-- <gd name="sx9" fmla="+- hc sdx8 0" />\r
-- <gd name="sx10" fmla="+- hc sdx7 0" />\r
-- <gd name="sx11" fmla="+- hc sdx6 0" />\r
-- <gd name="sx12" fmla="+- hc sdx5 0" />\r
-- <gd name="sx13" fmla="+- hc sdx4 0" />\r
-- <gd name="sx14" fmla="+- hc sdx3 0" />\r
-- <gd name="sx15" fmla="+- hc sdx2 0" />\r
-- <gd name="sx16" fmla="+- hc sdx1 0" />\r
-- <gd name="sy1" fmla="+- vc 0 sdy1" />\r
-- <gd name="sy2" fmla="+- vc 0 sdy2" />\r
-- <gd name="sy3" fmla="+- vc 0 sdy3" />\r
-- <gd name="sy4" fmla="+- vc 0 sdy4" />\r
-- <gd name="sy5" fmla="+- vc 0 sdy5" />\r
-- <gd name="sy6" fmla="+- vc 0 sdy6" />\r
-- <gd name="sy7" fmla="+- vc 0 sdy7" />\r
-- <gd name="sy8" fmla="+- vc 0 sdy8" />\r
-- <gd name="sy9" fmla="+- vc sdy8 0" />\r
-- <gd name="sy10" fmla="+- vc sdy7 0" />\r
-- <gd name="sy11" fmla="+- vc sdy6 0" />\r
-- <gd name="sy12" fmla="+- vc sdy5 0" />\r
-- <gd name="sy13" fmla="+- vc sdy4 0" />\r
-- <gd name="sy14" fmla="+- vc sdy3 0" />\r
-- <gd name="sy15" fmla="+- vc sdy2 0" />\r
-- <gd name="sy16" fmla="+- vc sdy1 0" />\r
-- <gd name="idx" fmla="cos iwd2 2700000" />\r
-- <gd name="idy" fmla="sin ihd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="ssd2">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx7" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx8" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx9" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx10" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx11" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx12" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x11" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx13" y="sy5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x12" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx14" y="sy6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x13" y="y6" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx15" y="sy7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x14" y="y7" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx16" y="sy8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx16" y="sy9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x14" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx15" y="sy10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x13" y="y9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx14" y="sy11" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x12" y="y10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx13" y="sy12" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x11" y="y11" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx12" y="sy13" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y12" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx11" y="sy14" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x9" y="y13" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx10" y="sy15" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y14" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx9" y="sy16" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx8" y="sy16" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y14" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx7" y="sy15" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y13" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="sy14" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y12" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy13" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y11" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy12" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy11" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y9" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y8" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy9" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </star32>\r
-- <star4>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 12500" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
-- <gd name="sdx" fmla="cos iwd2 2700000" />\r
-- <gd name="sdy" fmla="sin ihd2 2700000" />\r
-- <gd name="sx1" fmla="+- hc 0 sdx" />\r
-- <gd name="sx2" fmla="+- hc sdx 0" />\r
-- <gd name="sy1" fmla="+- vc 0 sdy" />\r
-- <gd name="sy2" fmla="+- vc sdy 0" />\r
-- <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="50000">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="sx1" t="sy1" r="sx2" b="sy2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </star4>\r
-- <star5>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 19098" />\r
-- <gd name="hf" fmla="val 105146" />\r
-- <gd name="vf" fmla="val 110557" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
-- <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
-- <gd name="svc" fmla="*/ vc vf 100000" />\r
-- <gd name="dx1" fmla="cos swd2 1080000" />\r
-- <gd name="dx2" fmla="cos swd2 18360000" />\r
-- <gd name="dy1" fmla="sin shd2 1080000" />\r
-- <gd name="dy2" fmla="sin shd2 18360000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- svc 0 dy1" />\r
-- <gd name="y2" fmla="+- svc 0 dy2" />\r
-- <gd name="iwd2" fmla="*/ swd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ shd2 a 50000" />\r
-- <gd name="sdx1" fmla="cos iwd2 20520000" />\r
-- <gd name="sdx2" fmla="cos iwd2 3240000" />\r
-- <gd name="sdy1" fmla="sin ihd2 3240000" />\r
-- <gd name="sdy2" fmla="sin ihd2 20520000" />\r
-- <gd name="sx1" fmla="+- hc 0 sdx1" />\r
-- <gd name="sx2" fmla="+- hc 0 sdx2" />\r
-- <gd name="sx3" fmla="+- hc sdx2 0" />\r
-- <gd name="sx4" fmla="+- hc sdx1 0" />\r
-- <gd name="sy1" fmla="+- svc 0 sdy1" />\r
-- <gd name="sy2" fmla="+- svc 0 sdy2" />\r
-- <gd name="sy3" fmla="+- svc ihd2 0" />\r
-- <gd name="yAdj" fmla="+- svc 0 ihd2" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="50000">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="y2" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="sx1" t="sy1" r="sx4" b="sy3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </star5>\r
-- <star6>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 28868" />\r
-- <gd name="hf" fmla="val 115470" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
-- <gd name="dx1" fmla="cos swd2 1800000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc dx1 0" />\r
-- <gd name="y2" fmla="+- vc hd4 0" />\r
-- <gd name="iwd2" fmla="*/ swd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
-- <gd name="sdx2" fmla="*/ iwd2 1 2" />\r
-- <gd name="sx1" fmla="+- hc 0 iwd2" />\r
-- <gd name="sx2" fmla="+- hc 0 sdx2" />\r
-- <gd name="sx3" fmla="+- hc sdx2 0" />\r
-- <gd name="sx4" fmla="+- hc iwd2 0" />\r
-- <gd name="sdy1" fmla="sin ihd2 3600000" />\r
-- <gd name="sy1" fmla="+- vc 0 sdy1" />\r
-- <gd name="sy2" fmla="+- vc sdy1 0" />\r
-- <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="50000">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x2" y="hd4" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x2" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="hd4" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="sx1" t="sy1" r="sx4" b="sy2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="hd4" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="hd4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="vc" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </star6>\r
-- <star7>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 34601" />\r
-- <gd name="hf" fmla="val 102572" />\r
-- <gd name="vf" fmla="val 105210" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="swd2" fmla="*/ wd2 hf 100000" />\r
-- <gd name="shd2" fmla="*/ hd2 vf 100000" />\r
-- <gd name="svc" fmla="*/ vc vf 100000" />\r
-- <gd name="dx1" fmla="*/ swd2 97493 100000" />\r
-- <gd name="dx2" fmla="*/ swd2 78183 100000" />\r
-- <gd name="dx3" fmla="*/ swd2 43388 100000" />\r
-- <gd name="dy1" fmla="*/ shd2 62349 100000" />\r
-- <gd name="dy2" fmla="*/ shd2 22252 100000" />\r
-- <gd name="dy3" fmla="*/ shd2 90097 100000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc 0 dx3" />\r
-- <gd name="x4" fmla="+- hc dx3 0" />\r
-- <gd name="x5" fmla="+- hc dx2 0" />\r
-- <gd name="x6" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- svc 0 dy1" />\r
-- <gd name="y2" fmla="+- svc dy2 0" />\r
-- <gd name="y3" fmla="+- svc dy3 0" />\r
-- <gd name="iwd2" fmla="*/ swd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ shd2 a 50000" />\r
-- <gd name="sdx1" fmla="*/ iwd2 97493 100000" />\r
-- <gd name="sdx2" fmla="*/ iwd2 78183 100000" />\r
-- <gd name="sdx3" fmla="*/ iwd2 43388 100000" />\r
-- <gd name="sx1" fmla="+- hc 0 sdx1" />\r
-- <gd name="sx2" fmla="+- hc 0 sdx2" />\r
-- <gd name="sx3" fmla="+- hc 0 sdx3" />\r
-- <gd name="sx4" fmla="+- hc sdx3 0" />\r
-- <gd name="sx5" fmla="+- hc sdx2 0" />\r
-- <gd name="sx6" fmla="+- hc sdx1 0" />\r
-- <gd name="sdy1" fmla="*/ ihd2 90097 100000" />\r
-- <gd name="sdy2" fmla="*/ ihd2 22252 100000" />\r
-- <gd name="sdy3" fmla="*/ ihd2 62349 100000" />\r
-- <gd name="sy1" fmla="+- svc 0 sdy1" />\r
-- <gd name="sy2" fmla="+- svc 0 sdy2" />\r
-- <gd name="sy3" fmla="+- svc sdy3 0" />\r
-- <gd name="sy4" fmla="+- svc ihd2 0" />\r
-- <gd name="yAdj" fmla="+- svc 0 ihd2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="50000">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="x5" y="y1" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x6" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x4" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x3" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x2" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="sx2" t="sy1" r="sx5" b="sy3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x1" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx6" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx5" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy3" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </star7>\r
-- <star8>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 37500" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 50000" />\r
-- <gd name="dx1" fmla="cos wd2 2700000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc dx1 0" />\r
-- <gd name="dy1" fmla="sin hd2 2700000" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc dy1 0" />\r
-- <gd name="iwd2" fmla="*/ wd2 a 50000" />\r
-- <gd name="ihd2" fmla="*/ hd2 a 50000" />\r
-- <gd name="sdx1" fmla="*/ iwd2 92388 100000" />\r
-- <gd name="sdx2" fmla="*/ iwd2 38268 100000" />\r
-- <gd name="sdy1" fmla="*/ ihd2 92388 100000" />\r
-- <gd name="sdy2" fmla="*/ ihd2 38268 100000" />\r
-- <gd name="sx1" fmla="+- hc 0 sdx1" />\r
-- <gd name="sx2" fmla="+- hc 0 sdx2" />\r
-- <gd name="sx3" fmla="+- hc sdx2 0" />\r
-- <gd name="sx4" fmla="+- hc sdx1 0" />\r
-- <gd name="sy1" fmla="+- vc 0 sdy1" />\r
-- <gd name="sy2" fmla="+- vc 0 sdy2" />\r
-- <gd name="sy3" fmla="+- vc sdy2 0" />\r
-- <gd name="sy4" fmla="+- vc sdy1 0" />\r
-- <gd name="yAdj" fmla="+- vc 0 ihd2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="50000">\r
-- <pos x="hc" y="yAdj" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x1" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="sx1" t="sy1" r="sx4" b="sy4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx4" y="sy3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx3" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx2" y="sy4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="sx1" y="sy3" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </star8>\r
-- <straightConnector1>\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path fill="none">\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
-- </straightConnector1>\r
-- <stripedRightArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
--\r
-- <gd name="adj2" fmla="val 50000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 84375 w ss" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="x4" fmla="*/ ss 5 32" />\r
-- <gd name="dx5" fmla="*/ ss a2 100000" />\r
-- <gd name="x5" fmla="+- r 0 dx5" />\r
-- <gd name="dy1" fmla="*/ h a1 200000" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="y2" fmla="+- vc dy1 0" />\r
-- <gd name="dx6" fmla="*/ dy1 dx5 hd2" />\r
-- <gd name="x6" fmla="+- r 0 dx6" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="100000">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x5" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x5" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x5" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x4" t="y1" r="x6" b="y2" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="ssd32" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="ssd32" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="ssd16" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="ssd8" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="ssd8" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="ssd16" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x4" y="y1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="vc" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x5" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </stripedRightArrow>\r
-- <sun>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 25000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 12500 adj 46875" />\r
-- <gd name="g0" fmla="+- 50000 0 a" />\r
-- <gd name="g1" fmla="*/ g0 30274 32768" />\r
-- <gd name="g2" fmla="*/ g0 12540 32768" />\r
-- <gd name="g3" fmla="+- g1 50000 0" />\r
-- <gd name="g4" fmla="+- g2 50000 0" />\r
-- <gd name="g5" fmla="+- 50000 0 g1" />\r
-- <gd name="g6" fmla="+- 50000 0 g2" />\r
-- <gd name="g7" fmla="*/ g0 23170 32768" />\r
-- <gd name="g8" fmla="+- 50000 g7 0" />\r
-- <gd name="g9" fmla="+- 50000 0 g7" />\r
-- <gd name="g10" fmla="*/ g5 3 4" />\r
-- <gd name="g11" fmla="*/ g6 3 4" />\r
-- <gd name="g12" fmla="+- g10 3662 0" />\r
-- <gd name="g13" fmla="+- g11 3662 0" />\r
-- <gd name="g14" fmla="+- g11 12500 0" />\r
-- <gd name="g15" fmla="+- 100000 0 g10" />\r
-- <gd name="g16" fmla="+- 100000 0 g12" />\r
-- <gd name="g17" fmla="+- 100000 0 g13" />\r
-- <gd name="g18" fmla="+- 100000 0 g14" />\r
-- <gd name="ox1" fmla="*/ w 18436 21600" />\r
-- <gd name="oy1" fmla="*/ h 3163 21600" />\r
-- <gd name="ox2" fmla="*/ w 3163 21600" />\r
-- <gd name="oy2" fmla="*/ h 18436 21600" />\r
-- <gd name="x8" fmla="*/ w g8 100000" />\r
-- <gd name="x9" fmla="*/ w g9 100000" />\r
-- <gd name="x10" fmla="*/ w g10 100000" />\r
-- <gd name="x12" fmla="*/ w g12 100000" />\r
-- <gd name="x13" fmla="*/ w g13 100000" />\r
-- <gd name="x14" fmla="*/ w g14 100000" />\r
-- <gd name="x15" fmla="*/ w g15 100000" />\r
-- <gd name="x16" fmla="*/ w g16 100000" />\r
-- <gd name="x17" fmla="*/ w g17 100000" />\r
-- <gd name="x18" fmla="*/ w g18 100000" />\r
-- <gd name="x19" fmla="*/ w a 100000" />\r
-- <gd name="wR" fmla="*/ w g0 100000" />\r
-- <gd name="hR" fmla="*/ h g0 100000" />\r
-- <gd name="y8" fmla="*/ h g8 100000" />\r
-- <gd name="y9" fmla="*/ h g9 100000" />\r
-- <gd name="y10" fmla="*/ h g10 100000" />\r
-- <gd name="y12" fmla="*/ h g12 100000" />\r
-- <gd name="y13" fmla="*/ h g13 100000" />\r
-- <gd name="y14" fmla="*/ h g14 100000" />\r
-- <gd name="y15" fmla="*/ h g15 100000" />\r
-- <gd name="y16" fmla="*/ h g16 100000" />\r
-- <gd name="y17" fmla="*/ h g17 100000" />\r
-- <gd name="y18" fmla="*/ h g18 100000" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="12500" maxX="46875">\r
-- <pos x="x19" y="vc" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="x9" t="y9" r="x8" b="y8" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="r" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x15" y="y18" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x15" y="y14" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="ox1" y="oy1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x16" y="y13" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x17" y="y12" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x18" y="y10" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x14" y="y10" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="ox2" y="oy1" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x13" y="y12" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x12" y="y13" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y14" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y18" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="ox2" y="oy2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x12" y="y17" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x13" y="y16" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="hc" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x14" y="y15" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x18" y="y15" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="ox1" y="oy2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x17" y="y16" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x16" y="y17" />\r
-- </lnTo>\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x19" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wR" hR="hR" stAng="cd2" swAng="21600000" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </sun>\r
-- <swooshArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 16667" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
--\r
--\r
-- <gd name="a1" fmla="pin 1 adj1 75000" />\r
--\r
-- <gd name="maxAdj2" fmla="*/ 70000 w ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="ad1" fmla="*/ h a1 100000" />\r
-- <gd name="ad2" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="xB" fmla="+- r 0 ad2" />\r
-- <gd name="yB" fmla="+- t ssd8 0" />\r
--\r
-- <gd name="alfa" fmla="*/ cd4 1 14" />\r
--\r
-- <gd name="dx0" fmla="tan ssd8 alfa" />\r
-- <gd name="xC" fmla="+- xB 0 dx0" />\r
--\r
-- <gd name="dx1" fmla="tan ad1 alfa" />\r
--\r
-- <gd name="yF" fmla="+- yB ad1 0" />\r
-- <gd name="xF" fmla="+- xB dx1 0" />\r
--\r
-- <gd name="xE" fmla="+- xF dx0 0" />\r
-- <gd name="yE" fmla="+- yF ssd8 0" />\r
--\r
-- <gd name="dy2" fmla="+- yE 0 t" />\r
-- <gd name="dy22" fmla="*/ dy2 1 2" />\r
-- <gd name="dy3" fmla="*/ h 1 20" />\r
-- <gd name="yD" fmla="+- t dy22 dy3" />\r
--\r
--\r
-- <gd name="dy4" fmla="*/ hd6 1 1" />\r
-- <gd name="yP1" fmla="+- hd6 dy4 0" />\r
-- <gd name="xP1" fmla="val wd6" />\r
--\r
--\r
-- <gd name="dy5" fmla="*/ hd6 1 2" />\r
-- <gd name="yP2" fmla="+- yF dy5 0" />\r
-- <gd name="xP2" fmla="val wd4" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="1" maxY="75000">\r
-- <pos x="xF" y="yF" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="xB" y="yB" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="l" y="b" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="xC" y="t" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="yD" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="xE" y="yE" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <quadBezTo>\r
-- <pt x="xP1" y="yP1" />\r
-- <pt x="xB" y="yB" />\r
-- </quadBezTo>\r
-- <lnTo>\r
-- <pt x="xC" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="yD" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xE" y="yE" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xF" y="yF" />\r
-- </lnTo>\r
-- <quadBezTo>\r
-- <pt x="xP2" y="yP2" />\r
-- <pt x="l" y="b" />\r
-- </quadBezTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </swooshArrow>\r
-- <teardrop>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 100000" />\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 200000" />\r
-- <gd name="r2" fmla="sqrt 2" />\r
-- <gd name="tw" fmla="*/ wd2 r2 1" />\r
-- <gd name="th" fmla="*/ hd2 r2 1" />\r
-- <gd name="sw" fmla="*/ tw a 100000" />\r
-- <gd name="sh" fmla="*/ th a 100000" />\r
-- <gd name="dx1" fmla="cos sw 2700000" />\r
-- <gd name="dy1" fmla="sin sh 2700000" />\r
-- <gd name="x1" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- vc 0 dy1" />\r
-- <gd name="x2" fmla="+/ hc x1 2" />\r
-- <gd name="y2" fmla="+/ vc y1 2" />\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="200000">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ir" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="il" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="il" y="it" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="x1" y="y1" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="vc" />\r
-- </moveTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd2" swAng="cd4" />\r
-- <quadBezTo>\r
-- <pt x="x2" y="t" />\r
-- <pt x="x1" y="y1" />\r
-- </quadBezTo>\r
-- <quadBezTo>\r
-- <pt x="r" y="y2" />\r
-- <pt x="r" y="vc" />\r
-- </quadBezTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="wd2" hR="hd2" stAng="cd4" swAng="cd4" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </teardrop>\r
-- <trapezoid>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 25000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj" fmla="*/ 50000 w ss" />\r
-- <gd name="a" fmla="pin 0 adj maxAdj" />\r
-- <gd name="x1" fmla="*/ ss a 200000" />\r
-- <gd name="x2" fmla="*/ ss a 100000" />\r
-- <gd name="x3" fmla="+- r 0 x2" />\r
-- <gd name="x4" fmla="+- r 0 x1" />\r
-- <gd name="il" fmla="*/ wd3 a maxAdj" />\r
-- <gd name="it" fmla="*/ hd3 a maxAdj" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="maxAdj">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x4" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="it" r="ir" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </trapezoid>\r
-- <triangle>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 100000" />\r
-- <gd name="x1" fmla="*/ w a 200000" />\r
-- <gd name="x2" fmla="*/ w a 100000" />\r
-- <gd name="x3" fmla="+- x1 wd2 0" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj" minX="0" maxX="100000">\r
-- <pos x="x2" y="t" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="x2" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="l" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x2" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="r" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x3" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="x1" t="vc" r="x3" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </triangle>\r
-- <upArrowCallout>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- <gd name="adj4" fmla="val 64977" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="*/ 100000 h ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="q2" fmla="*/ a3 ss h" />\r
--\r
-- <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
--\r
-- <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
-- <gd name="dx1" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="dx2" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="dy2" fmla="*/ h a4 100000" />\r
--\r
-- <gd name="y2" fmla="+- b 0 dy2" />\r
-- <gd name="y3" fmla="+/ y2 b 2" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
-- <pos x="x2" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="r" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj4" minY="0" maxY="maxAdj4">\r
-- <pos x="l" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y2" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="y2" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </upArrowCallout>\r
-- <upArrow>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="y2" fmla="*/ ss a2 100000" />\r
-- <gd name="y3" fmla="+- b 0 y2" />\r
-- <gd name="dx1" fmla="*/ w a1 200000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc dx1 0" />\r
-- <gd name="dy1" fmla="*/ x1 y2 wd2" />\r
-- <gd name="y1" fmla="+- y2 0 dy1" />\r
-- <gd name="y4" fmla="+- y3 dy1 0" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="100000">\r
-- <pos x="x1" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
-- <pos x="l" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y3" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x2" y="vc" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y2" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="x1" t="y1" r="x2" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </upArrow>\r
-- <upDownArrow>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 50000" />\r
-- <gd name="adj2" fmla="val 50000" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 h ss" />\r
-- <gd name="a1" fmla="pin 0 adj1 100000" />\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="y2" fmla="*/ ss a2 100000" />\r
-- <gd name="y3" fmla="+- b 0 y2" />\r
-- <gd name="dx1" fmla="*/ w a1 200000" />\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc dx1 0" />\r
-- <gd name="dy1" fmla="*/ x1 y2 wd2" />\r
-- <gd name="y1" fmla="+- y2 0 dy1" />\r
-- <gd name="y4" fmla="+- y3 dy1 0" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="100000">\r
-- <pos x="x1" y="y3" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj2" minY="0" maxY="maxAdj2">\r
-- <pos x="l" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y2" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="y3" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y3" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x2" y="vc" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y2" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="x1" t="y1" r="x2" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y2" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </upDownArrow>\r
-- <upDownArrowCallout>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- <gd name="adj4" fmla="val 48123" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="maxAdj2" fmla="*/ 50000 w ss" />\r
--\r
-- <gd name="a2" fmla="pin 0 adj2 maxAdj2" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
--\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="maxAdj3" fmla="*/ 50000 h ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="q2" fmla="*/ a3 ss hd2" />\r
--\r
-- <gd name="maxAdj4" fmla="+- 100000 0 q2" />\r
--\r
-- <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
-- <gd name="dx1" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="dx2" fmla="*/ ss a1 200000" />\r
--\r
-- <gd name="x1" fmla="+- hc 0 dx1" />\r
-- <gd name="x2" fmla="+- hc 0 dx2" />\r
-- <gd name="x3" fmla="+- hc dx2 0" />\r
-- <gd name="x4" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="y4" fmla="+- b 0 y1" />\r
--\r
-- <gd name="dy2" fmla="*/ h a4 200000" />\r
--\r
-- <gd name="y2" fmla="+- vc 0 dy2" />\r
--\r
-- <gd name="y3" fmla="+- vc dy2 0" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
-- <pos x="x2" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="maxAdj2">\r
-- <pos x="x1" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="r" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj4" minY="0" maxY="maxAdj4">\r
-- <pos x="l" y="y2" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="y2" r="r" b="y3" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="y2" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x3" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x4" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="hc" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y3" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </upDownArrowCallout>\r
-- <uturnArrow>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 25000" />\r
--\r
-- <gd name="adj2" fmla="val 25000" />\r
--\r
-- <gd name="adj3" fmla="val 25000" />\r
--\r
-- <gd name="adj4" fmla="val 43750" />\r
--\r
-- <gd name="adj5" fmla="val 75000" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a2" fmla="pin 0 adj2 25000" />\r
-- <gd name="maxAdj1" fmla="*/ a2 2 1" />\r
-- <gd name="a1" fmla="pin 0 adj1 maxAdj1" />\r
-- <gd name="q2" fmla="*/ a1 ss h" />\r
--\r
-- <gd name="q3" fmla="+- 100000 0 q2" />\r
--\r
-- <gd name="maxAdj3" fmla="*/ q3 h ss" />\r
--\r
-- <gd name="a3" fmla="pin 0 adj3 maxAdj3" />\r
-- <gd name="q1" fmla="+- a3 a1 0" />\r
-- <gd name="minAdj5" fmla="*/ q1 ss h" />\r
-- <gd name="a5" fmla="pin minAdj5 adj5 100000" />\r
-- <gd name="th" fmla="*/ ss a1 100000" />\r
--\r
-- <gd name="aw2" fmla="*/ ss a2 100000" />\r
--\r
-- <gd name="th2" fmla="*/ th 1 2" />\r
-- <gd name="dh2" fmla="+- aw2 0 th2" />\r
--\r
-- <gd name="y5" fmla="*/ h a5 100000" />\r
--\r
-- <gd name="ah" fmla="*/ ss a3 100000" />\r
--\r
-- <gd name="y4" fmla="+- y5 0 ah" />\r
-- <gd name="x9" fmla="+- r 0 dh2" />\r
--\r
-- <gd name="bw" fmla="*/ x9 1 2" />\r
-- <gd name="bs" fmla="min bw y4" />\r
-- <gd name="maxAdj4" fmla="*/ bs 100000 ss" />\r
-- <gd name="a4" fmla="pin 0 adj4 maxAdj4" />\r
--\r
--\r
-- <gd name="bd" fmla="*/ ss a4 100000" />\r
--\r
--\r
--\r
-- <gd name="bd3" fmla="+- bd 0 th" />\r
-- <gd name="bd2" fmla="max bd3 0" />\r
-- <gd name="x3" fmla="+- th bd2 0" />\r
--\r
-- <gd name="x8" fmla="+- r 0 aw2" />\r
--\r
-- <gd name="x6" fmla="+- x8 0 aw2" />\r
--\r
-- <gd name="x7" fmla="+- x6 dh2 0" />\r
--\r
-- <gd name="x4" fmla="+- x9 0 bd" />\r
--\r
-- <gd name="x5" fmla="+- x7 0 bd2" />\r
--\r
-- <gd name="cx" fmla="+/ th x7 2" />\r
--\r
--\r
--\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="0" maxX="maxAdj1">\r
-- <pos x="th" y="b" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="0" maxX="25000">\r
-- <pos x="x6" y="b" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj3" minY="0" maxY="maxAdj3">\r
-- <pos x="x6" y="y4" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj4" minX="0" maxX="maxAdj4">\r
-- <pos x="bd" y="t" />\r
-- </ahXY>\r
-- <ahXY gdRefY="adj5" minY="minAdj5" maxY="100000">\r
-- <pos x="r" y="y5" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="x6" y="y4" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="x8" y="y5" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="y4" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="cx" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="th2" y="b" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="b" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="l" y="bd" />\r
-- </lnTo>\r
-- <arcTo wR="bd" hR="bd" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x4" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="bd" hR="bd" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x9" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x8" y="y5" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="y4" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x7" y="x3" />\r
-- </lnTo>\r
-- <arcTo wR="bd2" hR="bd2" stAng="0" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="x3" y="th" />\r
-- </lnTo>\r
-- <arcTo wR="bd2" hR="bd2" stAng="3cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="th" y="b" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </uturnArrow>\r
-- <verticalScroll>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj" fmla="val 12500" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a" fmla="pin 0 adj 25000" />\r
-- <gd name="ch" fmla="*/ ss a 100000" />\r
--\r
-- <gd name="ch2" fmla="*/ ch 1 2" />\r
--\r
-- <gd name="ch4" fmla="*/ ch 1 4" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="x3" fmla="+- ch ch2 0" />\r
--\r
-- <gd name="x4" fmla="+- ch ch 0" />\r
--\r
-- <gd name="x6" fmla="+- r 0 ch" />\r
--\r
-- <gd name="x7" fmla="+- r 0 ch2" />\r
--\r
-- <gd name="x5" fmla="+- x6 0 ch2" />\r
--\r
--\r
--\r
--\r
--\r
-- <gd name="y3" fmla="+- b 0 ch" />\r
--\r
-- <gd name="y4" fmla="+- b 0 ch2" />\r
--\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj" minY="0" maxY="25000">\r
-- <pos x="l" y="ch" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="ch" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x6" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="ch" t="ch" r="x6" b="y4" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="ch2" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="ch2" y="y4" />\r
-- </lnTo>\r
-- <arcTo wR="ch4" hR="ch4" stAng="cd4" swAng="-10800000" />\r
-- <lnTo>\r
-- <pt x="ch" y="y3" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="ch" y="ch2" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x7" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x6" y="ch" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y4" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x4" y="ch2" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="ch4" hR="ch4" stAng="cd4" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- <path fill="darkenLess" stroke="false" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="x4" y="ch2" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
-- <arcTo wR="ch4" hR="ch4" stAng="cd4" swAng="cd2" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="ch" y="y4" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="0" swAng="3cd4" />\r
-- <arcTo wR="ch4" hR="ch4" stAng="3cd4" swAng="cd2" />\r
-- <close />\r
-- </path>\r
-- <path fill="none" extrusionOk="false">\r
--\r
-- <moveTo>\r
-- <pt x="ch" y="y3" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="ch" y="ch2" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x7" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x6" y="ch" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x6" y="y4" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="ch2" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="cd2" />\r
-- <close />\r
-- <moveTo>\r
-- <pt x="x3" y="t" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="3cd4" swAng="cd2" />\r
-- <arcTo wR="ch4" hR="ch4" stAng="cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="x4" y="ch2" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="x6" y="ch" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x3" y="ch" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="ch2" y="y3" />\r
-- </moveTo>\r
-- <arcTo wR="ch4" hR="ch4" stAng="3cd4" swAng="cd2" />\r
-- <lnTo>\r
-- <pt x="ch" y="y4" />\r
-- </lnTo>\r
-- <moveTo>\r
-- <pt x="ch2" y="b" />\r
-- </moveTo>\r
-- <arcTo wR="ch2" hR="ch2" stAng="cd4" swAng="-5400000" />\r
-- <lnTo>\r
-- <pt x="ch" y="y3" />\r
-- </lnTo>\r
-- </path>\r
-- </pathLst>\r
--\r
-- </verticalScroll>\r
-- <wave>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val 12500" />\r
--\r
-- <gd name="adj2" fmla="val 0" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="a1" fmla="pin 0 adj1 20000" />\r
-- <gd name="a2" fmla="pin -10000 adj2 10000" />\r
-- <gd name="y1" fmla="*/ h a1 100000" />\r
--\r
-- <gd name="dy2" fmla="*/ y1 10 3" />\r
-- <gd name="y2" fmla="+- y1 0 dy2" />\r
--\r
-- <gd name="y3" fmla="+- y1 dy2 0" />\r
--\r
-- <gd name="y4" fmla="+- b 0 y1" />\r
--\r
-- <gd name="y5" fmla="+- y4 0 dy2" />\r
--\r
-- <gd name="y6" fmla="+- y4 dy2 0" />\r
--\r
-- <gd name="dx1" fmla="*/ w a2 100000" />\r
--\r
-- <gd name="of2" fmla="*/ w a2 50000" />\r
--\r
-- <gd name="x1" fmla="abs dx1" />\r
--\r
-- <gd name="dx2" fmla="?: of2 0 of2" />\r
-- <gd name="x2" fmla="+- l 0 dx2" />\r
--\r
-- <gd name="dx5" fmla="?: of2 of2 0" />\r
-- <gd name="x5" fmla="+- r 0 dx5" />\r
--\r
-- <gd name="dx3" fmla="+/ dx2 x5 3" />\r
--\r
-- <gd name="x3" fmla="+- x2 dx3 0" />\r
--\r
-- <gd name="x4" fmla="+/ x3 x5 2" />\r
--\r
-- <gd name="x6" fmla="+- l dx5 0" />\r
--\r
-- <gd name="x10" fmla="+- r dx2 0" />\r
--\r
-- <gd name="x7" fmla="+- x6 dx3 0" />\r
--\r
-- <gd name="x8" fmla="+/ x7 x10 2" />\r
--\r
-- <gd name="x9" fmla="+- r 0 x1" />\r
--\r
-- <gd name="xAdj" fmla="+- hc dx1 0" />\r
-- <gd name="xAdj2" fmla="+- hc 0 dx1" />\r
-- <gd name="il" fmla="max x2 x6" />\r
-- <gd name="ir" fmla="min x5 x10" />\r
-- <gd name="it" fmla="*/ h a1 50000" />\r
-- <gd name="ib" fmla="+- b 0 it" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefY="adj1" minY="0" maxY="20000">\r
-- <pos x="l" y="y1" />\r
-- </ahXY>\r
-- <ahXY gdRefX="adj2" minX="-10000" maxX="10000">\r
-- <pos x="xAdj" y="b" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="cd4">\r
-- <pos x="xAdj2" y="y1" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="x1" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="xAdj" y="y4" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="x9" y="vc" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="x2" y="y1" />\r
-- </moveTo>\r
-- <cubicBezTo>\r
-- <pt x="x3" y="y2" />\r
-- <pt x="x4" y="y3" />\r
-- <pt x="x5" y="y1" />\r
-- </cubicBezTo>\r
-- <lnTo>\r
-- <pt x="x10" y="y4" />\r
-- </lnTo>\r
-- <cubicBezTo>\r
-- <pt x="x8" y="y6" />\r
-- <pt x="x7" y="y5" />\r
-- <pt x="x6" y="y4" />\r
-- </cubicBezTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </wave>\r
-- <wedgeEllipseCallout>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val -20833" />\r
-- <gd name="adj2" fmla="val 62500" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dxPos" fmla="*/ w adj1 100000" />\r
-- <gd name="dyPos" fmla="*/ h adj2 100000" />\r
-- <gd name="xPos" fmla="+- hc dxPos 0" />\r
-- <gd name="yPos" fmla="+- vc dyPos 0" />\r
-- <gd name="sdx" fmla="*/ dxPos h 1" />\r
-- <gd name="sdy" fmla="*/ dyPos w 1" />\r
-- <gd name="pang" fmla="at2 sdx sdy" />\r
-- <gd name="stAng" fmla="+- pang 660000 0" />\r
-- <gd name="enAng" fmla="+- pang 0 660000" />\r
-- <gd name="dx1" fmla="cos wd2 stAng" />\r
-- <gd name="dy1" fmla="sin hd2 stAng" />\r
-- <gd name="x1" fmla="+- hc dx1 0" />\r
-- <gd name="y1" fmla="+- vc dy1 0" />\r
-- <gd name="dx2" fmla="cos wd2 enAng" />\r
-- <gd name="dy2" fmla="sin hd2 enAng" />\r
-- <gd name="x2" fmla="+- hc dx2 0" />\r
-- <gd name="y2" fmla="+- vc dy2 0" />\r
-- <gd name="stAng1" fmla="at2 dx1 dy1" />\r
-- <gd name="enAng1" fmla="at2 dx2 dy2" />\r
-- <gd name="swAng1" fmla="+- enAng1 0 stAng1" />\r
-- <gd name="swAng2" fmla="+- swAng1 21600000 0" />\r
-- <gd name="swAng" fmla="?: swAng1 swAng1 swAng2" />\r
-- <gd name="idx" fmla="cos wd2 2700000" />\r
-- <gd name="idy" fmla="sin hd2 2700000" />\r
-- <gd name="il" fmla="+- hc 0 idx" />\r
-- <gd name="ir" fmla="+- hc idx 0" />\r
-- <gd name="it" fmla="+- vc 0 idy" />\r
-- <gd name="ib" fmla="+- vc idy 0" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647" gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
-- <pos x="xPos" y="yPos" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="il" y="it" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="il" y="ib" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="ir" y="ib" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="3cd4">\r
-- <pos x="ir" y="it" />\r
-- </cxn>\r
-- <cxn ang="pang">\r
-- <pos x="xPos" y="yPos" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="it" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="xPos" y="yPos" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="y1" />\r
-- </lnTo>\r
-- <arcTo wR="wd2" hR="hd2" stAng="stAng1" swAng="swAng" />\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </wedgeEllipseCallout>\r
-- <wedgeRectCallout>\r
--\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val -20833" />\r
--\r
-- <gd name="adj2" fmla="val 62500" />\r
--\r
-- </avLst>\r
--\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dxPos" fmla="*/ w adj1 100000" />\r
-- <gd name="dyPos" fmla="*/ h adj2 100000" />\r
-- <gd name="xPos" fmla="+- hc dxPos 0" />\r
-- <gd name="yPos" fmla="+- vc dyPos 0" />\r
-- <gd name="dx" fmla="+- xPos 0 hc" />\r
-- <gd name="dy" fmla="+- yPos 0 vc" />\r
-- <gd name="dq" fmla="*/ dxPos h w" />\r
-- <gd name="ady" fmla="abs dyPos" />\r
-- <gd name="adq" fmla="abs dq" />\r
-- <gd name="dz" fmla="+- ady 0 adq" />\r
-- <gd name="xg1" fmla="?: dxPos 7 2" />\r
-- <gd name="xg2" fmla="?: dxPos 10 5" />\r
-- <gd name="x1" fmla="*/ w xg1 12" />\r
-- <gd name="x2" fmla="*/ w xg2 12" />\r
-- <gd name="yg1" fmla="?: dyPos 7 2" />\r
-- <gd name="yg2" fmla="?: dyPos 10 5" />\r
-- <gd name="y1" fmla="*/ h yg1 12" />\r
-- <gd name="y2" fmla="*/ h yg2 12" />\r
-- <gd name="t1" fmla="?: dxPos l xPos" />\r
-- <gd name="xl" fmla="?: dz l t1" />\r
-- <gd name="t2" fmla="?: dyPos x1 xPos" />\r
-- <gd name="xt" fmla="?: dz t2 x1" />\r
-- <gd name="t3" fmla="?: dxPos xPos r" />\r
-- <gd name="xr" fmla="?: dz r t3" />\r
-- <gd name="t4" fmla="?: dyPos xPos x1" />\r
-- <gd name="xb" fmla="?: dz t4 x1" />\r
-- <gd name="t5" fmla="?: dxPos y1 yPos" />\r
-- <gd name="yl" fmla="?: dz y1 t5" />\r
-- <gd name="t6" fmla="?: dyPos t yPos" />\r
-- <gd name="yt" fmla="?: dz t6 t" />\r
-- <gd name="t7" fmla="?: dxPos yPos y1" />\r
-- <gd name="yr" fmla="?: dz y1 t7" />\r
-- <gd name="t8" fmla="?: dyPos yPos b" />\r
-- <gd name="yb" fmla="?: dz t8 b" />\r
-- </gdLst>\r
--\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647" gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
-- <pos x="xPos" y="yPos" />\r
-- </ahXY>\r
-- </ahLst>\r
--\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="xPos" y="yPos" />\r
-- </cxn>\r
-- </cxnLst>\r
--\r
-- <rect l="l" t="t" r="r" b="b" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
--\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="t" />\r
-- </moveTo>\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xt" y="yt" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xr" y="yr" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xb" y="yb" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xl" y="yl" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
--\r
-- </wedgeRectCallout>\r
-- <wedgeRoundRectCallout>\r
-- <avLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="adj1" fmla="val -20833" />\r
-- <gd name="adj2" fmla="val 62500" />\r
-- <gd name="adj3" fmla="val 16667" />\r
-- </avLst>\r
-- <gdLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <gd name="dxPos" fmla="*/ w adj1 100000" />\r
-- <gd name="dyPos" fmla="*/ h adj2 100000" />\r
-- <gd name="xPos" fmla="+- hc dxPos 0" />\r
-- <gd name="yPos" fmla="+- vc dyPos 0" />\r
-- <gd name="dq" fmla="*/ dxPos h w" />\r
-- <gd name="ady" fmla="abs dyPos" />\r
-- <gd name="adq" fmla="abs dq" />\r
-- <gd name="dz" fmla="+- ady 0 adq" />\r
-- <gd name="xg1" fmla="?: dxPos 7 2" />\r
-- <gd name="xg2" fmla="?: dxPos 10 5" />\r
-- <gd name="x1" fmla="*/ w xg1 12" />\r
-- <gd name="x2" fmla="*/ w xg2 12" />\r
-- <gd name="yg1" fmla="?: dyPos 7 2" />\r
-- <gd name="yg2" fmla="?: dyPos 10 5" />\r
-- <gd name="y1" fmla="*/ h yg1 12" />\r
-- <gd name="y2" fmla="*/ h yg2 12" />\r
-- <gd name="t1" fmla="?: dxPos l xPos" />\r
-- <gd name="xl" fmla="?: dz l t1" />\r
-- <gd name="t2" fmla="?: dyPos x1 xPos" />\r
-- <gd name="xt" fmla="?: dz t2 x1" />\r
-- <gd name="t3" fmla="?: dxPos xPos r" />\r
-- <gd name="xr" fmla="?: dz r t3" />\r
-- <gd name="t4" fmla="?: dyPos xPos x1" />\r
-- <gd name="xb" fmla="?: dz t4 x1" />\r
-- <gd name="t5" fmla="?: dxPos y1 yPos" />\r
-- <gd name="yl" fmla="?: dz y1 t5" />\r
-- <gd name="t6" fmla="?: dyPos t yPos" />\r
-- <gd name="yt" fmla="?: dz t6 t" />\r
-- <gd name="t7" fmla="?: dxPos yPos y1" />\r
-- <gd name="yr" fmla="?: dz y1 t7" />\r
-- <gd name="t8" fmla="?: dyPos yPos b" />\r
-- <gd name="yb" fmla="?: dz t8 b" />\r
-- <gd name="u1" fmla="*/ ss adj3 100000" />\r
-- <gd name="u2" fmla="+- r 0 u1" />\r
-- <gd name="v2" fmla="+- b 0 u1" />\r
-- <gd name="il" fmla="*/ u1 29289 100000" />\r
-- <gd name="ir" fmla="+- r 0 il" />\r
-- <gd name="ib" fmla="+- b 0 il" />\r
-- </gdLst>\r
-- <ahLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <ahXY gdRefX="adj1" minX="-2147483647" maxX="2147483647" gdRefY="adj2" minY="-2147483647" maxY="2147483647">\r
-- <pos x="xPos" y="yPos" />\r
-- </ahXY>\r
-- </ahLst>\r
-- <cxnLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <cxn ang="3cd4">\r
-- <pos x="hc" y="t" />\r
-- </cxn>\r
-- <cxn ang="cd2">\r
-- <pos x="l" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="hc" y="b" />\r
-- </cxn>\r
-- <cxn ang="0">\r
-- <pos x="r" y="vc" />\r
-- </cxn>\r
-- <cxn ang="cd4">\r
-- <pos x="xPos" y="yPos" />\r
-- </cxn>\r
-- </cxnLst>\r
-- <rect l="il" t="il" r="ir" b="ib" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" />\r
-- <pathLst xmlns="http://schemas.openxmlformats.org/drawingml/2006/main">\r
-- <path>\r
-- <moveTo>\r
-- <pt x="l" y="u1" />\r
-- </moveTo>\r
-- <arcTo wR="u1" hR="u1" stAng="cd2" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x1" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xt" y="yt" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x2" y="t" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="u2" y="t" />\r
-- </lnTo>\r
-- <arcTo wR="u1" hR="u1" stAng="3cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="r" y="y1" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xr" y="yr" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="r" y="v2" />\r
-- </lnTo>\r
-- <arcTo wR="u1" hR="u1" stAng="0" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="x2" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xb" y="yb" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="x1" y="b" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="u1" y="b" />\r
-- </lnTo>\r
-- <arcTo wR="u1" hR="u1" stAng="cd4" swAng="cd4" />\r
-- <lnTo>\r
-- <pt x="l" y="y2" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="xl" y="yl" />\r
-- </lnTo>\r
-- <lnTo>\r
-- <pt x="l" y="y1" />\r
-- </lnTo>\r
-- <close />\r
-- </path>\r
-- </pathLst>\r
-- </wedgeRoundRectCallout>\r
--</presetShapeDefinitons>\r
package org.apache.poi.hslf.blip;
- import org.apache.poi.hslf.model.Picture;
- import org.apache.poi.hslf.model.Shape;
-import org.apache.poi.hslf.usermodel.HSLFPictureShape;
-import org.apache.poi.hslf.usermodel.HSLFShape;
--import org.apache.poi.hslf.exceptions.HSLFException;
--
--import java.io.ByteArrayOutputStream;
--import java.io.InputStream;
import java.io.ByteArrayInputStream;
++import java.io.ByteArrayOutputStream;
import java.io.IOException;
++import java.io.InputStream;
import java.util.zip.InflaterInputStream;
++import org.apache.poi.hslf.exceptions.HSLFException;
++import org.apache.poi.hslf.usermodel.HSLFPictureShape;
++import org.apache.poi.util.Units;
++
/**
* Represents EMF (Windows Enhanced Metafile) picture data.
*
header.wmfsize = data.length;
//we don't have a EMF reader in java, have to set default image size 200x200
header.bounds = new java.awt.Rectangle(0, 0, 200, 200);
- header.size = new java.awt.Dimension(header.bounds.width*Shape.EMU_PER_POINT, header.bounds.height*Shape.EMU_PER_POINT);
- header.size = new java.awt.Dimension(header.bounds.width*HSLFShape.EMU_PER_POINT, header.bounds.height*HSLFShape.EMU_PER_POINT);
++ header.size = new java.awt.Dimension(header.bounds.width*Units.EMU_PER_POINT, header.bounds.height*Units.EMU_PER_POINT);
header.zipsize = compressed.length;
byte[] checksum = getChecksum(data);
import java.util.zip.InflaterInputStream;
import org.apache.poi.hslf.exceptions.HSLFException;
- import org.apache.poi.hslf.model.Picture;
- import org.apache.poi.hslf.model.Shape;
+ import org.apache.poi.hslf.usermodel.HSLFPictureShape;
-import org.apache.poi.hslf.usermodel.HSLFShape;
++import org.apache.poi.util.Units;
/**
* Represents Macintosh PICT picture data.
header.wmfsize = data.length - 512;
//we don't have a PICT reader in java, have to set default image size 200x200
header.bounds = new java.awt.Rectangle(0, 0, 200, 200);
- header.size = new java.awt.Dimension(header.bounds.width*Shape.EMU_PER_POINT,
- header.bounds.height*Shape.EMU_PER_POINT);
- header.size = new java.awt.Dimension(header.bounds.width*HSLFShape.EMU_PER_POINT,
- header.bounds.height*HSLFShape.EMU_PER_POINT);
++ header.size = new java.awt.Dimension(header.bounds.width*Units.EMU_PER_POINT,
++ header.bounds.height*Units.EMU_PER_POINT);
header.zipsize = compressed.length;
byte[] checksum = getChecksum(data);
package org.apache.poi.hslf.blip;
++import java.io.ByteArrayInputStream;
++import java.io.ByteArrayOutputStream;
++import java.io.IOException;
++import java.io.InputStream;
++import java.io.OutputStream;
++import java.util.zip.InflaterInputStream;
++
++import org.apache.poi.hslf.exceptions.HSLFException;
++import org.apache.poi.hslf.usermodel.HSLFPictureShape;
import org.apache.poi.util.LittleEndian;
import org.apache.poi.util.POILogger;
- import org.apache.poi.hslf.model.Picture;
- import org.apache.poi.hslf.model.Shape;
-import org.apache.poi.hslf.usermodel.HSLFPictureShape;
-import org.apache.poi.hslf.usermodel.HSLFShape;
--import org.apache.poi.hslf.exceptions.HSLFException;
--
--import java.io.*;
--import java.util.zip.InflaterInputStream;
++import org.apache.poi.util.Units;
/**
* Represents a WMF (Windows Metafile) picture data.
header.wmfsize = data.length - aldus.getSize();
header.bounds = new java.awt.Rectangle((short)aldus.left, (short)aldus.top, (short)aldus.right-(short)aldus.left, (short)aldus.bottom-(short)aldus.top);
//coefficient to translate from WMF dpi to 96pdi
- int coeff = 96*Shape.EMU_PER_POINT/aldus.inch;
- int coeff = 96*HSLFShape.EMU_PER_POINT/aldus.inch;
++ int coeff = 96*Units.EMU_PER_POINT/aldus.inch;
header.size = new java.awt.Dimension(header.bounds.width*coeff, header.bounds.height*coeff);
header.zipsize = compressed.length;
package org.apache.poi.hslf.model;
import org.apache.poi.ddf.*;
+ import org.apache.poi.hslf.usermodel.*;
+ import org.apache.poi.sl.usermodel.ShapeContainer;
+ import org.apache.poi.sl.usermodel.ShapeType;
import org.apache.poi.util.LittleEndian;
++import org.apache.poi.util.Units;
import java.awt.geom.Point2D;
float top = findSmallest(yPoints);
EscherOptRecord opt = getEscherOptRecord();
-- opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__RIGHT, (int)((right - left)*POINT_DPI/MASTER_DPI)));
-- opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__BOTTOM, (int)((bottom - top)*POINT_DPI/MASTER_DPI)));
++ opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__RIGHT, Units.pointsToMaster(right - left)));
++ opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__BOTTOM, Units.pointsToMaster(bottom - top)));
for (int i = 0; i < xPoints.length; i++) {
xPoints[i] += -left;
for (int i = 0; i < numpoints; i++)
{
byte[] data = new byte[4];
-- LittleEndian.putShort(data, 0, (short)(xPoints[i]*POINT_DPI/MASTER_DPI));
-- LittleEndian.putShort(data, 2, (short)(yPoints[i]*POINT_DPI/MASTER_DPI));
++ LittleEndian.putShort(data, 0, (short)Units.pointsToMaster(xPoints[i]));
++ LittleEndian.putShort(data, 2, (short)Units.pointsToMaster(yPoints[i]));
verticesProp.setElement(i, data);
}
byte[] data = new byte[4];
-- LittleEndian.putShort(data, 0, (short)(xPoints[0]*POINT_DPI/MASTER_DPI));
-- LittleEndian.putShort(data, 2, (short)(yPoints[0]*POINT_DPI/MASTER_DPI));
++ LittleEndian.putShort(data, 0, (short)Units.pointsToMaster(xPoints[0]));
++ LittleEndian.putShort(data, 2, (short)Units.pointsToMaster(yPoints[0]));
verticesProp.setElement(numpoints, data);
opt.addEscherProperty(verticesProp);
private static long _type = 4003;
private byte[] _data;
- private TextPropCollection[] prstyles;
- private TextPropCollection[] chstyles;
+ private List<TextPropCollection> paragraphStyles;
- private List<TextPropCollection> charStylesyles;
++ private List<TextPropCollection> charStyles;
protected TxMasterStyleAtom(byte[] source, int start, int len) {
_header = new byte[8];
*
* @return character styles defined in this record
*/
- public TextPropCollection[] getCharacterStyles(){
- return chstyles;
+ public List<TextPropCollection> getCharacterStyles(){
- return charStylesyles;
++ return charStyles;
}
/**
short levels = LittleEndian.getShort(_data, 0);
pos += LittleEndian.SHORT_SIZE;
- prstyles = new TextPropCollection[levels];
- chstyles = new TextPropCollection[levels];
+ paragraphStyles = new ArrayList<TextPropCollection>(levels);
- charStylesyles = new ArrayList<TextPropCollection>(levels);
++ charStyles = new ArrayList<TextPropCollection>(levels);
for(short j = 0; j < levels; j++) {
-
+ TextPropCollection prprops = new TextPropCollection(0, TextPropType.paragraph); // getParagraphProps(type, j)
if (type >= TextHeaderAtom.CENTRE_BODY_TYPE) {
// Fetch the 2 byte value, that is safe to ignore for some types of text
- short val = LittleEndian.getShort(_data, pos);
+ short indentLevel = LittleEndian.getShort(_data, pos);
+ prprops.setIndentLevel(indentLevel);
pos += LittleEndian.SHORT_SIZE;
+ } else {
+ prprops.setIndentLevel((short)-1);
}
head = LittleEndian.getInt(_data, pos);
head = LittleEndian.getInt(_data, pos);
pos += LittleEndian.INT_SIZE;
- TextPropCollection chprops = new TextPropCollection(0);
- pos += chprops.buildTextPropList( head, getCharacterProps(type, j), _data, pos);
- chstyles[j] = chprops;
+ TextPropCollection chprops = new TextPropCollection(0, TextPropType.character); // getCharacterProps(type, j)
+ pos += chprops.buildTextPropList( head, _data, pos);
- charStylesyles.add(chprops);
++ charStyles.add(chprops);
}
}
--- /dev/null
-public final class HSLFFreeformShape extends HSLFAutoShape {
+ /* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ ==================================================================== */
+
+ package org.apache.poi.hslf.usermodel;
+
+ import java.awt.geom.AffineTransform;
+ import java.awt.geom.GeneralPath;
+ import java.awt.geom.PathIterator;
+ import java.awt.geom.Point2D;
+ import java.awt.geom.Rectangle2D;
+ import java.util.ArrayList;
+ import java.util.Arrays;
+ import java.util.List;
+
+ import org.apache.poi.ddf.EscherArrayProperty;
+ import org.apache.poi.ddf.EscherContainerRecord;
+ import org.apache.poi.ddf.EscherOptRecord;
+ import org.apache.poi.ddf.EscherProperties;
+ import org.apache.poi.ddf.EscherSimpleProperty;
++import org.apache.poi.sl.usermodel.FreeformShape;
+ import org.apache.poi.sl.usermodel.ShapeContainer;
+ import org.apache.poi.sl.usermodel.ShapeType;
+ import org.apache.poi.util.LittleEndian;
+ import org.apache.poi.util.POILogger;
++import org.apache.poi.util.Units;
+
+ /**
+ * A "Freeform" shape.
+ *
+ * <p>
+ * Shapes drawn with the "Freeform" tool have cubic bezier curve segments in the smooth sections
+ * and straight-line segments in the straight sections. This object closely corresponds to <code>java.awt.geom.GeneralPath</code>.
+ * </p>
+ * @author Yegor Kozlov
+ */
- /**
- * Set the shape path
- *
- * @param path
- */
- public void setPath(GeneralPath path)
- {
++public final class HSLFFreeformShape extends HSLFAutoShape implements FreeformShape<HSLFTextParagraph> {
+
+ public static final byte[] SEGMENTINFO_MOVETO = new byte[]{0x00, 0x40};
+ public static final byte[] SEGMENTINFO_LINETO = new byte[]{0x00, (byte)0xAC};
+ public static final byte[] SEGMENTINFO_ESCAPE = new byte[]{0x01, 0x00};
+ public static final byte[] SEGMENTINFO_ESCAPE2 = new byte[]{0x01, 0x20};
+ public static final byte[] SEGMENTINFO_CUBICTO = new byte[]{0x00, (byte)0xAD};
+ public static final byte[] SEGMENTINFO_CUBICTO2 = new byte[]{0x00, (byte)0xB3}; //OpenOffice inserts 0xB3 instead of 0xAD.
+ public static final byte[] SEGMENTINFO_CLOSE = new byte[]{0x01, (byte)0x60};
+ public static final byte[] SEGMENTINFO_END = new byte[]{0x00, (byte)0x80};
+
+ /**
+ * Create a Freeform object and initialize it from the supplied Record container.
+ *
+ * @param escherRecord <code>EscherSpContainer</code> container which holds information about this shape
+ * @param parent the parent of the shape
+ */
+ protected HSLFFreeformShape(EscherContainerRecord escherRecord, ShapeContainer<HSLFShape> parent){
+ super(escherRecord, parent);
+
+ }
+
+ /**
+ * Create a new Freeform. This constructor is used when a new shape is created.
+ *
+ * @param parent the parent of this Shape. For example, if this text box is a cell
+ * in a table then the parent is Table.
+ */
+ public HSLFFreeformShape(ShapeContainer<HSLFShape> parent){
+ super((EscherContainerRecord)null, parent);
+ _escherContainer = createSpContainer(ShapeType.NOT_PRIMITIVE, parent instanceof HSLFGroupShape);
+ }
+
+ /**
+ * Create a new Freeform. This constructor is used when a new shape is created.
+ *
+ */
+ public HSLFFreeformShape(){
+ this(null);
+ }
+
- LittleEndian.putShort(data, 0, (short)((pnt.getX() - bounds.getX())*MASTER_DPI/POINT_DPI));
- LittleEndian.putShort(data, 2, (short)((pnt.getY() - bounds.getY())*MASTER_DPI/POINT_DPI));
++ @Override
++ public int setPath(GeneralPath path) {
+ Rectangle2D bounds = path.getBounds2D();
+ PathIterator it = path.getPathIterator(new AffineTransform());
+
+ List<byte[]> segInfo = new ArrayList<byte[]>();
+ List<Point2D.Double> pntInfo = new ArrayList<Point2D.Double>();
+ boolean isClosed = false;
++ int numPoints = 0;
+ while (!it.isDone()) {
+ double[] vals = new double[6];
+ int type = it.currentSegment(vals);
+ switch (type) {
+ case PathIterator.SEG_MOVETO:
+ pntInfo.add(new Point2D.Double(vals[0], vals[1]));
+ segInfo.add(SEGMENTINFO_MOVETO);
++ numPoints++;
+ break;
+ case PathIterator.SEG_LINETO:
+ pntInfo.add(new Point2D.Double(vals[0], vals[1]));
+ segInfo.add(SEGMENTINFO_LINETO);
+ segInfo.add(SEGMENTINFO_ESCAPE);
++ numPoints++;
+ break;
+ case PathIterator.SEG_CUBICTO:
+ pntInfo.add(new Point2D.Double(vals[0], vals[1]));
+ pntInfo.add(new Point2D.Double(vals[2], vals[3]));
+ pntInfo.add(new Point2D.Double(vals[4], vals[5]));
+ segInfo.add(SEGMENTINFO_CUBICTO);
+ segInfo.add(SEGMENTINFO_ESCAPE2);
++ numPoints++;
+ break;
+ case PathIterator.SEG_QUADTO:
+ //TODO: figure out how to convert SEG_QUADTO into SEG_CUBICTO
+ logger.log(POILogger.WARN, "SEG_QUADTO is not supported");
+ break;
+ case PathIterator.SEG_CLOSE:
+ pntInfo.add(pntInfo.get(0));
+ segInfo.add(SEGMENTINFO_LINETO);
+ segInfo.add(SEGMENTINFO_ESCAPE);
+ segInfo.add(SEGMENTINFO_LINETO);
+ segInfo.add(SEGMENTINFO_CLOSE);
+ isClosed = true;
++ numPoints++;
+ break;
+ }
+
+ it.next();
+ }
+ if(!isClosed) segInfo.add(SEGMENTINFO_LINETO);
+ segInfo.add(new byte[]{0x00, (byte)0x80});
+
+ EscherOptRecord opt = getEscherOptRecord();
+ opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__SHAPEPATH, 0x4));
+
+ EscherArrayProperty verticesProp = new EscherArrayProperty((short)(EscherProperties.GEOMETRY__VERTICES + 0x4000), false, null);
+ verticesProp.setNumberOfElementsInArray(pntInfo.size());
+ verticesProp.setNumberOfElementsInMemory(pntInfo.size());
+ verticesProp.setSizeOfElements(0xFFF0);
+ for (int i = 0; i < pntInfo.size(); i++) {
+ Point2D.Double pnt = pntInfo.get(i);
+ byte[] data = new byte[4];
- opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__RIGHT, (int)(bounds.getWidth()*MASTER_DPI/POINT_DPI)));
- opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__BOTTOM, (int)(bounds.getHeight()*MASTER_DPI/POINT_DPI)));
++ LittleEndian.putShort(data, 0, (short)Units.pointsToMaster(pnt.getX() - bounds.getX()));
++ LittleEndian.putShort(data, 2, (short)Units.pointsToMaster(pnt.getY() - bounds.getY()));
+ verticesProp.setElement(i, data);
+ }
+ opt.addEscherProperty(verticesProp);
+
+ EscherArrayProperty segmentsProp = new EscherArrayProperty((short)(EscherProperties.GEOMETRY__SEGMENTINFO + 0x4000), false, null);
+ segmentsProp.setNumberOfElementsInArray(segInfo.size());
+ segmentsProp.setNumberOfElementsInMemory(segInfo.size());
+ segmentsProp.setSizeOfElements(0x2);
+ for (int i = 0; i < segInfo.size(); i++) {
+ byte[] seg = segInfo.get(i);
+ segmentsProp.setElement(i, seg);
+ }
+ opt.addEscherProperty(segmentsProp);
+
- /**
- * Gets the freeform path
- *
- * @return the freeform path
- */
- public GeneralPath getPath(){
++ opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__RIGHT, Units.pointsToMaster(bounds.getWidth())));
++ opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__BOTTOM, Units.pointsToMaster(bounds.getHeight())));
+
+ opt.sortProperties();
+
+ setAnchor(bounds);
++
++ return numPoints;
+ }
+
- return null;
++ @Override
++ public GeneralPath getPath(){
+ EscherOptRecord opt = getEscherOptRecord();
+ opt.addEscherProperty(new EscherSimpleProperty(EscherProperties.GEOMETRY__SHAPEPATH, 0x4));
+
+ EscherArrayProperty verticesProp = getEscherProperty(opt, (short)(EscherProperties.GEOMETRY__VERTICES + 0x4000));
+ if(verticesProp == null) verticesProp = getEscherProperty(opt, EscherProperties.GEOMETRY__VERTICES);
+
+ EscherArrayProperty segmentsProp = getEscherProperty(opt, (short)(EscherProperties.GEOMETRY__SEGMENTINFO + 0x4000));
+ if(segmentsProp == null) segmentsProp = getEscherProperty(opt, EscherProperties.GEOMETRY__SEGMENTINFO);
+
++ // return empty path if either GEOMETRY__VERTICES or GEOMETRY__SEGMENTINFO is missing, see Bugzilla 54188
++ GeneralPath path = new GeneralPath();
++
+ //sanity check
+ if(verticesProp == null) {
+ logger.log(POILogger.WARN, "Freeform is missing GEOMETRY__VERTICES ");
- return null;
++ return path;
+ }
+ if(segmentsProp == null) {
+ logger.log(POILogger.WARN, "Freeform is missing GEOMETRY__SEGMENTINFO ");
- GeneralPath path = new GeneralPath();
++ return path;
+ }
+
- path.moveTo(
- ((float)x*POINT_DPI/MASTER_DPI),
- ((float)y*POINT_DPI/MASTER_DPI));
+ int numPoints = verticesProp.getNumberOfElementsInArray();
+ int numSegments = segmentsProp.getNumberOfElementsInArray();
+ for (int i = 0, j = 0; i < numSegments && j < numPoints; i++) {
+ byte[] elem = segmentsProp.getElement(i);
+ if(Arrays.equals(elem, SEGMENTINFO_MOVETO)){
+ byte[] p = verticesProp.getElement(j++);
+ short x = LittleEndian.getShort(p, 0);
+ short y = LittleEndian.getShort(p, 2);
- ((float)x1*POINT_DPI/MASTER_DPI), ((float)y1*POINT_DPI/MASTER_DPI),
- ((float)x2*POINT_DPI/MASTER_DPI), ((float)y2*POINT_DPI/MASTER_DPI),
- ((float)x3*POINT_DPI/MASTER_DPI), ((float)y3*POINT_DPI/MASTER_DPI));
++ path.moveTo(Units.masterToPoints(x), Units.masterToPoints(y));
+ } else if (Arrays.equals(elem, SEGMENTINFO_CUBICTO) || Arrays.equals(elem, SEGMENTINFO_CUBICTO2)){
+ i++;
+ byte[] p1 = verticesProp.getElement(j++);
+ short x1 = LittleEndian.getShort(p1, 0);
+ short y1 = LittleEndian.getShort(p1, 2);
+ byte[] p2 = verticesProp.getElement(j++);
+ short x2 = LittleEndian.getShort(p2, 0);
+ short y2 = LittleEndian.getShort(p2, 2);
+ byte[] p3 = verticesProp.getElement(j++);
+ short x3 = LittleEndian.getShort(p3, 0);
+ short y3 = LittleEndian.getShort(p3, 2);
+ path.curveTo(
- path.lineTo(
- ((float)x*POINT_DPI/MASTER_DPI), ((float)y*POINT_DPI/MASTER_DPI));
++ Units.masterToPoints(x1), Units.masterToPoints(y1),
++ Units.masterToPoints(x2), Units.masterToPoints(y2),
++ Units.masterToPoints(x3), Units.masterToPoints(y3));
+
+ } else if (Arrays.equals(elem, SEGMENTINFO_LINETO)){
+ i++;
+ byte[] pnext = segmentsProp.getElement(i);
+ if(Arrays.equals(pnext, SEGMENTINFO_ESCAPE)){
+ if(j + 1 < numPoints){
+ byte[] p = verticesProp.getElement(j++);
+ short x = LittleEndian.getShort(p, 0);
+ short y = LittleEndian.getShort(p, 2);
- return path;
- }
-
- public java.awt.Shape getOutline(){
- GeneralPath path = getPath();
- if(path == null) {
- // return empty path if either GEOMETRY__VERTICES or GEOMETRY__SEGMENTINFO is missing, see Bugzilla 54188
- return new GeneralPath();
- }
-
++ path.lineTo(Units.masterToPoints(x), Units.masterToPoints(y));
+ }
+ } else if (Arrays.equals(pnext, SEGMENTINFO_CLOSE)){
+ path.closePath();
+ }
+ }
+ }
- return at.createTransformedShape(path);
++
+ Rectangle2D anchor = getAnchor2D();
+ Rectangle2D bounds = path.getBounds2D();
+ AffineTransform at = new AffineTransform();
+ at.translate(anchor.getX(), anchor.getY());
+ at.scale(
+ anchor.getWidth()/bounds.getWidth(),
+ anchor.getHeight()/bounds.getHeight()
+ );
++ return new GeneralPath(at.createTransformedShape(path));
+ }
+ }
--- /dev/null
- clientAnchor.setFlag((short)(anchor.y*MASTER_DPI/POINT_DPI));
- clientAnchor.setCol1((short)(anchor.x*MASTER_DPI/POINT_DPI));
- clientAnchor.setDx1((short)((anchor.width + anchor.x)*MASTER_DPI/POINT_DPI));
- clientAnchor.setRow1((short)((anchor.height + anchor.y)*MASTER_DPI/POINT_DPI));
+ /* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ ==================================================================== */
+
+ package org.apache.poi.hslf.usermodel;
+
+ import java.awt.geom.Rectangle2D;
+ import java.util.*;
+
+ import org.apache.poi.ddf.*;
+ import org.apache.poi.sl.usermodel.*;
+ import org.apache.poi.util.LittleEndian;
+ import org.apache.poi.util.POILogger;
++import org.apache.poi.util.Units;
+
+ /**
+ * Represents a group of shapes.
+ *
+ * @author Yegor Kozlov
+ */
+ public class HSLFGroupShape extends HSLFShape implements GroupShape<HSLFShape> {
+
+ /**
+ * Create a new ShapeGroup. This constructor is used when a new shape is created.
+ *
+ */
+ public HSLFGroupShape(){
+ this(null, null);
+ _escherContainer = createSpContainer(false);
+ }
+
+ /**
+ * Create a ShapeGroup object and initilize it from the supplied Record container.
+ *
+ * @param escherRecord <code>EscherSpContainer</code> container which holds information about this shape
+ * @param parent the parent of the shape
+ */
+ protected HSLFGroupShape(EscherContainerRecord escherRecord, ShapeContainer<HSLFShape> parent){
+ super(escherRecord, parent);
+ }
+
+ @Override
+ public List<HSLFShape> getShapes() {
+ return getShapeList();
+ }
+
+ /**
+ * Sets the anchor (the bounding box rectangle) of this shape.
+ * All coordinates should be expressed in Master units (576 dpi).
+ *
+ * @param anchor new anchor
+ */
+ public void setAnchor(java.awt.Rectangle anchor){
+
+ EscherClientAnchorRecord clientAnchor = getEscherChild(EscherClientAnchorRecord.RECORD_ID);
+ //hack. internal variable EscherClientAnchorRecord.shortRecord can be
+ //initialized only in fillFields(). We need to set shortRecord=false;
+ byte[] header = new byte[16];
+ LittleEndian.putUShort(header, 0, 0);
+ LittleEndian.putUShort(header, 2, 0);
+ LittleEndian.putInt(header, 4, 8);
+ clientAnchor.fillFields(header, 0, null);
+
- spgr.setRectX1(anchor.x*MASTER_DPI/POINT_DPI);
- spgr.setRectY1(anchor.y*MASTER_DPI/POINT_DPI);
- spgr.setRectX2((anchor.x + anchor.width)*MASTER_DPI/POINT_DPI);
- spgr.setRectY2((anchor.y + anchor.height)*MASTER_DPI/POINT_DPI);
++ clientAnchor.setFlag((short)Units.pointsToMaster(anchor.y));
++ clientAnchor.setCol1((short)Units.pointsToMaster(anchor.x));
++ clientAnchor.setDx1((short)Units.pointsToMaster(anchor.width + anchor.x));
++ clientAnchor.setRow1((short)Units.pointsToMaster(anchor.height + anchor.y));
+
+ EscherSpgrRecord spgr = getEscherChild(EscherSpgrRecord.RECORD_ID);
+
- int x1 = (int)Math.round(anchor.getX()*MASTER_DPI/POINT_DPI);
- int y1 = (int)Math.round(anchor.getY()*MASTER_DPI/POINT_DPI);
- int x2 = (int)Math.round((anchor.getX() + anchor.getWidth())*MASTER_DPI/POINT_DPI);
- int y2 = (int)Math.round((anchor.getY() + anchor.getHeight())*MASTER_DPI/POINT_DPI);
++ spgr.setRectX1(Units.pointsToMaster(anchor.x));
++ spgr.setRectY1(Units.pointsToMaster(anchor.y));
++ spgr.setRectX2(Units.pointsToMaster(anchor.x + anchor.width));
++ spgr.setRectY2(Units.pointsToMaster(anchor.y + anchor.height));
+ }
+
+ @Override
+ public void setInteriorAnchor(Rectangle2D anchor){
+ EscherSpgrRecord spgr = getEscherChild(EscherSpgrRecord.RECORD_ID);
+
- double x = rec.getRectX1()*POINT_DPI/MASTER_DPI;
- double y = rec.getRectY1()*POINT_DPI/MASTER_DPI;
- double width = (rec.getRectX2()-rec.getRectX1())*POINT_DPI/MASTER_DPI;
- double height = (rec.getRectY2()-rec.getRectY1())*POINT_DPI/MASTER_DPI;
- return new Rectangle2D.Double(x,y,width,height);
++ int x1 = Units.pointsToMaster(anchor.getX());
++ int y1 = Units.pointsToMaster(anchor.getY());
++ int x2 = Units.pointsToMaster(anchor.getX() + anchor.getWidth());
++ int y2 = Units.pointsToMaster(anchor.getY() + anchor.getHeight());
+
+ spgr.setRectX1(x1);
+ spgr.setRectY1(y1);
+ spgr.setRectX2(x2);
+ spgr.setRectY2(y2);
+
+ }
+
+ @Override
+ public Rectangle2D getInteriorAnchor(){
+ EscherSpgrRecord rec = getEscherChild(EscherSpgrRecord.RECORD_ID);
- Rectangle2D anchor;
++ double x1 = Units.masterToPoints(rec.getRectX1());
++ double y1 = Units.masterToPoints(rec.getRectY1());
++ double x2 = Units.masterToPoints(rec.getRectX2());
++ double y2 = Units.masterToPoints(rec.getRectY2());
++ return new Rectangle2D.Double(x1,y1,x2-x1,y2-y1);
+ }
+
+ /**
+ * Create a new ShapeGroup and create an instance of <code>EscherSpgrContainer</code> which represents a group of shapes
+ */
+ protected EscherContainerRecord createSpContainer(boolean isChild) {
+ EscherContainerRecord spgr = new EscherContainerRecord();
+ spgr.setRecordId(EscherContainerRecord.SPGR_CONTAINER);
+ spgr.setOptions((short)15);
+
+ //The group itself is a shape, and always appears as the first EscherSpContainer in the group container.
+ EscherContainerRecord spcont = new EscherContainerRecord();
+ spcont.setRecordId(EscherContainerRecord.SP_CONTAINER);
+ spcont.setOptions((short)15);
+
+ EscherSpgrRecord spg = new EscherSpgrRecord();
+ spg.setOptions((short)1);
+ spcont.addChildRecord(spg);
+
+ EscherSpRecord sp = new EscherSpRecord();
+ short type = (short)((ShapeType.NOT_PRIMITIVE.nativeId << 4) + 2);
+ sp.setOptions(type);
+ sp.setFlags(EscherSpRecord.FLAG_HAVEANCHOR | EscherSpRecord.FLAG_GROUP);
+ spcont.addChildRecord(sp);
+
+ EscherClientAnchorRecord anchor = new EscherClientAnchorRecord();
+ spcont.addChildRecord(anchor);
+
+ spgr.addChildRecord(spcont);
+ return spgr;
+ }
+
+ /**
+ * Add a shape to this group.
+ *
+ * @param shape - the Shape to add
+ */
+ public void addShape(HSLFShape shape){
+ _escherContainer.addChildRecord(shape.getSpContainer());
+
+ HSLFSheet sheet = getSheet();
+ shape.setSheet(sheet);
+ shape.setShapeId(sheet.allocateShapeId());
+ shape.afterInsert(sheet);
+ }
+
+ /**
+ * Moves this <code>ShapeGroup</code> to the specified location.
+ * <p>
+ * @param x the x coordinate of the top left corner of the shape in new location
+ * @param y the y coordinate of the top left corner of the shape in new location
+ */
+ public void moveTo(int x, int y){
+ java.awt.Rectangle anchor = getAnchor();
+ int dx = x - anchor.x;
+ int dy = y - anchor.y;
+ anchor.translate(dx, dy);
+ setAnchor(anchor);
+
+
+ for (HSLFShape shape : getShapes()) {
+ java.awt.Rectangle chanchor = shape.getAnchor();
+ chanchor.translate(dx, dy);
+ shape.setAnchor(chanchor);
+ }
+ }
+
+ /**
+ * Returns the anchor (the bounding box rectangle) of this shape group.
+ * All coordinates are expressed in points (72 dpi).
+ *
+ * @return the anchor of this shape group
+ */
+ public Rectangle2D getAnchor2D(){
+ EscherClientAnchorRecord clientAnchor = getEscherChild(EscherClientAnchorRecord.RECORD_ID);
- double x = rec.getDx1()*POINT_DPI/MASTER_DPI;
- double y = rec.getDy1()*POINT_DPI/MASTER_DPI;
- double width = (rec.getDx2()-rec.getDx1())*POINT_DPI/MASTER_DPI;
- double height = (rec.getDy2()-rec.getDy1())*POINT_DPI/MASTER_DPI;
- anchor = new Rectangle2D.Double(x,y,width,height);
++ int x1,y1,x2,y2;
+ if(clientAnchor == null){
+ logger.log(POILogger.INFO, "EscherClientAnchorRecord was not found for shape group. Searching for EscherChildAnchorRecord.");
+ EscherChildAnchorRecord rec = getEscherChild(EscherChildAnchorRecord.RECORD_ID);
- double x = clientAnchor.getCol1()*POINT_DPI/MASTER_DPI;
- double y = clientAnchor.getFlag()*POINT_DPI/MASTER_DPI;
- double width = (clientAnchor.getDx1() - clientAnchor.getCol1())*POINT_DPI/MASTER_DPI ;
- double height = (clientAnchor.getRow1() - clientAnchor.getFlag())*POINT_DPI/MASTER_DPI;
- anchor = new Rectangle2D.Double(x,y,width,height);
++ x1 = rec.getDx1();
++ y1 = rec.getDy1();
++ x2 = rec.getDx2();
++ y2 = rec.getDy2();
+ } else {
++ x1 = clientAnchor.getCol1();
++ y1 = clientAnchor.getFlag();
++ x2 = clientAnchor.getDx1();
++ y2 = clientAnchor.getRow1();
+ }
++ Rectangle2D anchor= new Rectangle2D.Double(
++ (x1 == -1 ? -1 : Units.masterToPoints(x1)),
++ (y1 == -1 ? -1 : Units.masterToPoints(y1)),
++ (x2 == -1 ? -1 : Units.masterToPoints(x2-x1)),
++ (y2 == -1 ? -1 : Units.masterToPoints(y2-y1))
++ );
+
+ return anchor;
+ }
+
+ /**
+ * Return type of the shape.
+ * In most cases shape group type is {@link org.apache.poi.hslf.model.ShapeTypes#NotPrimitive}
+ *
+ * @return type of the shape.
+ */
+ public ShapeType getShapeType(){
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ int nativeId = spRecord.getOptions() >> 4;
+ return ShapeType.forId(nativeId, false);
+ }
+
+ /**
+ * Returns <code>null</code> - shape groups can't have hyperlinks
+ *
+ * @return <code>null</code>.
+ */
+ public HSLFHyperlink getHyperlink(){
+ return null;
+ }
+
+ @Override
+ public <T extends EscherRecord> T getEscherChild(int recordId){
+ EscherContainerRecord groupInfoContainer = (EscherContainerRecord)_escherContainer.getChild(0);
+ return groupInfoContainer.getChildById((short)recordId);
+ }
+
+ public Iterator<HSLFShape> iterator() {
+ return getShapeList().iterator();
+ }
+
+ public boolean removeShape(HSLFShape shape) {
+ // TODO: implement!
+ throw new UnsupportedOperationException();
+ }
+
+ /**
+ * @return the shapes contained in this group container
+ */
+ protected List<HSLFShape> getShapeList() {
+ // Out escher container record should contain several
+ // SpContainers, the first of which is the group shape itself
+ Iterator<EscherRecord> iter = _escherContainer.getChildIterator();
+
+ // Don't include the first SpContainer, it is always NotPrimitive
+ if (iter.hasNext()) {
+ iter.next();
+ }
+ List<HSLFShape> shapeList = new ArrayList<HSLFShape>();
+ while (iter.hasNext()) {
+ EscherRecord r = iter.next();
+ if(r instanceof EscherContainerRecord) {
+ // Create the Shape for it
+ EscherContainerRecord container = (EscherContainerRecord)r;
+ HSLFShape shape = HSLFShapeFactory.createShape(container, this);
+ shape.setSheet(getSheet());
+ shapeList.add( shape );
+ } else {
+ // Should we do anything special with these non
+ // Container records?
+ logger.log(POILogger.ERROR, "Shape contained non container escher record, was " + r.getClass().getName());
+ }
+ }
+
+ return shapeList;
+ }
+
+ }
--- /dev/null
-import org.apache.poi.ddf.*;
+ /* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ ==================================================================== */
+
+ package org.apache.poi.hslf.usermodel;
+
+ import java.awt.Insets;
++import java.awt.geom.Rectangle2D;
+ import java.awt.image.BufferedImage;
+ import java.io.ByteArrayInputStream;
+ import java.io.IOException;
+ import java.util.List;
+
+ import javax.imageio.ImageIO;
+
-import org.apache.poi.sl.usermodel.*;
-import org.apache.poi.util.*;
++import org.apache.poi.ddf.EscherBSERecord;
++import org.apache.poi.ddf.EscherComplexProperty;
++import org.apache.poi.ddf.EscherContainerRecord;
++import org.apache.poi.ddf.EscherOptRecord;
++import org.apache.poi.ddf.EscherProperties;
++import org.apache.poi.ddf.EscherRecord;
++import org.apache.poi.ddf.EscherSimpleProperty;
++import org.apache.poi.ddf.EscherSpRecord;
+ import org.apache.poi.hslf.blip.Bitmap;
+ import org.apache.poi.hslf.record.Document;
- setAnchor(new java.awt.Rectangle(0, 0, img.getWidth()*POINT_DPI/PIXEL_DPI, img.getHeight()*POINT_DPI/PIXEL_DPI));
++import org.apache.poi.sl.usermodel.PictureShape;
++import org.apache.poi.sl.usermodel.ShapeContainer;
++import org.apache.poi.sl.usermodel.ShapeType;
++import org.apache.poi.util.POILogger;
++import org.apache.poi.util.StringUtil;
++import org.apache.poi.util.Units;
+
+
+ /**
+ * Represents a picture in a PowerPoint document.
+ *
+ * @author Yegor Kozlov
+ */
+ public class HSLFPictureShape extends HSLFSimpleShape implements PictureShape {
+
+ /**
+ * Windows Enhanced Metafile (EMF)
+ */
+ public static final int EMF = 2;
+
+ /**
+ * Windows Metafile (WMF)
+ */
+ public static final int WMF = 3;
+
+ /**
+ * Macintosh PICT
+ */
+ public static final int PICT = 4;
+
+ /**
+ * JPEG
+ */
+ public static final int JPEG = 5;
+
+ /**
+ * PNG
+ */
+ public static final int PNG = 6;
+
+ /**
+ * Windows DIB (BMP)
+ */
+ public static final byte DIB = 7;
+
+ /**
+ * Create a new <code>Picture</code>
+ *
+ * @param idx the index of the picture
+ */
+ public HSLFPictureShape(int idx){
+ this(idx, null);
+ }
+
+ /**
+ * Create a new <code>Picture</code>
+ *
+ * @param idx the index of the picture
+ * @param parent the parent shape
+ */
+ public HSLFPictureShape(int idx, ShapeContainer<HSLFShape> parent) {
+ super(null, parent);
+ _escherContainer = createSpContainer(idx, parent instanceof HSLFGroupShape);
+ }
+
+ /**
+ * Create a <code>Picture</code> object
+ *
+ * @param escherRecord the <code>EscherSpContainer</code> record which holds information about
+ * this picture in the <code>Slide</code>
+ * @param parent the parent shape of this picture
+ */
+ protected HSLFPictureShape(EscherContainerRecord escherRecord, ShapeContainer<HSLFShape> parent){
+ super(escherRecord, parent);
+ }
+
+ /**
+ * Returns index associated with this picture.
+ * Index starts with 1 and points to a EscherBSE record which
+ * holds information about this picture.
+ *
+ * @return the index to this picture (1 based).
+ */
+ public int getPictureIndex(){
+ EscherOptRecord opt = getEscherOptRecord();
+ EscherSimpleProperty prop = getEscherProperty(opt, EscherProperties.BLIP__BLIPTODISPLAY);
+ return prop == null ? 0 : prop.getPropertyValue();
+ }
+
+ /**
+ * Create a new Picture and populate the inital structure of the <code>EscherSp</code> record which holds information about this picture.
+
+ * @param idx the index of the picture which refers to <code>EscherBSE</code> container.
+ * @return the create Picture object
+ */
+ protected EscherContainerRecord createSpContainer(int idx, boolean isChild) {
+ _escherContainer = super.createSpContainer(isChild);
+ _escherContainer.setOptions((short)15);
+
+ EscherSpRecord spRecord = _escherContainer.getChildById(EscherSpRecord.RECORD_ID);
+ spRecord.setOptions((short)((ShapeType.FRAME.nativeId << 4) | 0x2));
+
+ //set default properties for a picture
+ EscherOptRecord opt = getEscherOptRecord();
+ setEscherProperty(opt, EscherProperties.PROTECTION__LOCKAGAINSTGROUPING, 0x800080);
+
+ //another weird feature of powerpoint: for picture id we must add 0x4000.
+ setEscherProperty(opt, (short)(EscherProperties.BLIP__BLIPTODISPLAY + 0x4000), idx);
+
+ return _escherContainer;
+ }
+
+ /**
+ * Resize this picture to the default size.
+ * For PNG and JPEG resizes the image to 100%,
+ * for other types sets the default size of 200x200 pixels.
+ */
+ public void setDefaultSize(){
+ HSLFPictureData pict = getPictureData();
+ if (pict instanceof Bitmap){
+ BufferedImage img = null;
+ try {
+ img = ImageIO.read(new ByteArrayInputStream(pict.getData()));
+ }
+ catch (IOException e){}
+ catch (NegativeArraySizeException ne) {}
+
+ if(img != null) {
+ // Valid image, set anchor from it
- setAnchor(new java.awt.Rectangle(0, 0, 200, 200));
++ setAnchor(new Rectangle2D.Double(0, 0, Units.pixelToPoints(img.getWidth()), Units.pixelToPoints(img.getHeight())));
+ } else {
+ // Invalid image, go with the default metafile size
- setAnchor(new java.awt.Rectangle(50, 50, 200, 200));
++ setAnchor(new Rectangle2D.Double(0, 0, 200, 200));
+ }
+ } else {
+ //default size of a metafile picture is 200x200
++ setAnchor(new Rectangle2D.Double(50, 50, 200, 200));
+ }
+ }
+
+ @Override
+ public HSLFPictureData getPictureData(){
+ HSLFSlideShow ppt = getSheet().getSlideShow();
+ HSLFPictureData[] pict = ppt.getPictureData();
+
+ EscherBSERecord bse = getEscherBSERecord();
+ if (bse == null){
+ logger.log(POILogger.ERROR, "no reference to picture data found ");
+ } else {
+ for ( int i = 0; i < pict.length; i++ ) {
+ if (pict[i].getOffset() == bse.getOffset()){
+ return pict[i];
+ }
+ }
+ logger.log(POILogger.ERROR, "no picture found for our BSE offset " + bse.getOffset());
+ }
+ return null;
+ }
+
+ protected EscherBSERecord getEscherBSERecord(){
+ HSLFSlideShow ppt = getSheet().getSlideShow();
+ Document doc = ppt.getDocumentRecord();
+ EscherContainerRecord dggContainer = doc.getPPDrawingGroup().getDggContainer();
+ EscherContainerRecord bstore = HSLFShape.getEscherChild(dggContainer, EscherContainerRecord.BSTORE_CONTAINER);
+ if(bstore == null) {
+ logger.log(POILogger.DEBUG, "EscherContainerRecord.BSTORE_CONTAINER was not found ");
+ return null;
+ }
+ List<EscherRecord> lst = bstore.getChildRecords();
+ int idx = getPictureIndex();
+ if (idx == 0){
+ logger.log(POILogger.DEBUG, "picture index was not found, returning ");
+ return null;
+ }
+ return (EscherBSERecord)lst.get(idx-1);
+ }
+
+ /**
+ * Name of this picture.
+ *
+ * @return name of this picture
+ */
+ public String getPictureName(){
+ EscherOptRecord opt = getEscherOptRecord();
+ EscherComplexProperty prop = getEscherProperty(opt, EscherProperties.BLIP__BLIPFILENAME);
+ if (prop == null) return null;
+ String name = StringUtil.getFromUnicodeLE(prop.getComplexData());
+ return name.trim();
+ }
+
+ /**
+ * Name of this picture.
+ *
+ * @param name of this picture
+ */
+ public void setPictureName(String name){
+ EscherOptRecord opt = getEscherOptRecord();
+ byte[] data = StringUtil.getToUnicodeLE(name + '\u0000');
+ EscherComplexProperty prop = new EscherComplexProperty(EscherProperties.BLIP__BLIPFILENAME, false, data);
+ opt.addEscherProperty(prop);
+ }
+
+ /**
+ * By default set the orininal image size
+ */
+ protected void afterInsert(HSLFSheet sh){
+ super.afterInsert(sh);
+
+ EscherBSERecord bse = getEscherBSERecord();
+ bse.setRef(bse.getRef() + 1);
+
+ java.awt.Rectangle anchor = getAnchor();
+ if (anchor.equals(new java.awt.Rectangle())){
+ setDefaultSize();
+ }
+ }
+
+ /**
+ * The anchor specified by {@link #getLogicalAnchor2D()} is the displayed size,
+ * i.e. the size of the already clipped image
+ */
+ @Override
+ public Insets getClipping() {
+ EscherOptRecord opt = getEscherOptRecord();
+
+ double top = getFractProp(opt, EscherProperties.BLIP__CROPFROMTOP);
+ double bottom = getFractProp(opt, EscherProperties.BLIP__CROPFROMBOTTOM);
+ double left = getFractProp(opt, EscherProperties.BLIP__CROPFROMLEFT);
+ double right = getFractProp(opt, EscherProperties.BLIP__CROPFROMRIGHT);
+
+ // if all crop values are zero (the default) then no crop rectangle is set, return null
+ return (top==0 && bottom==0 && left==0 && right==0)
+ ? null
+ : new Insets((int)(top*100000), (int)(left*100000), (int)(bottom*100000), (int)(right*100000));
+ }
+
+ /**
+ * @return the fractional property or 0 if not defined
+ */
+ private static double getFractProp(EscherOptRecord opt, short propertyId) {
+ EscherSimpleProperty prop = getEscherProperty(opt, propertyId);
+ if (prop == null) return 0;
+ int fixedPoint = prop.getPropertyValue();
+ return Units.fixedPointToDouble(fixedPoint);
+ }
+ }
--- /dev/null
- /**
- * In Escher absolute distances are specified in
- * English Metric Units (EMUs), occasionally referred to as A units;
- * there are 360000 EMUs per centimeter, 914400 EMUs per inch, 12700 EMUs per point.
- */
- public static final int EMU_PER_INCH = 914400;
- public static final int EMU_PER_POINT = 12700;
- public static final int EMU_PER_CENTIMETER = 360000;
-
- /**
- * Master DPI (576 pixels per inch).
- * Used by the reference coordinate system in PowerPoint.
- */
- public static final int MASTER_DPI = 576;
-
- /**
- * Pixels DPI (96 pixels per inch)
- */
- public static final int PIXEL_DPI = 96;
-
- /**
- * Points DPI (72 pixels per inch)
- */
- public static final int POINT_DPI = 72;
-
+ /* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ ==================================================================== */
+
+ package org.apache.poi.hslf.usermodel;
+
+ import java.awt.Color;
+ import java.awt.Graphics2D;
+ import java.awt.geom.Rectangle2D;
+ import java.util.Iterator;
+
+ import org.apache.poi.ddf.*;
+ import org.apache.poi.hslf.record.ColorSchemeAtom;
+ import org.apache.poi.hslf.record.RecordTypes;
+ import org.apache.poi.sl.usermodel.*;
+ import org.apache.poi.util.*;
+
+ /**
+ * <p>
+ * Represents a Shape which is the elemental object that composes a drawing.
+ * This class is a wrapper around EscherSpContainer which holds all information
+ * about a shape in PowerPoint document.
+ * </p>
+ * <p>
+ * When you add a shape, you usually specify the dimensions of the shape and the position
+ * of the upper'left corner of the bounding box for the shape relative to the upper'left
+ * corner of the page, worksheet, or slide. Distances in the drawing layer are measured
+ * in points (72 points = 1 inch).
+ * </p>
+ * <p>
+ *
+ * @author Yegor Kozlov
+ */
+ public abstract class HSLFShape implements Shape {
+
+ // For logging
+ protected POILogger logger = POILogFactory.getLogger(this.getClass());
+
- int x,y,w,h;
+ /**
+ * Either EscherSpContainer or EscheSpgrContainer record
+ * which holds information about this shape.
+ */
+ protected EscherContainerRecord _escherContainer;
+
+ /**
+ * Parent of this shape.
+ * <code>null</code> for the topmost shapes.
+ */
+ protected ShapeContainer<HSLFShape> _parent;
+
+ /**
+ * The <code>Sheet</code> this shape belongs to
+ */
+ protected HSLFSheet _sheet;
+
+ /**
+ * Fill
+ */
+ protected HSLFFill _fill;
+
+ /**
+ * Create a Shape object. This constructor is used when an existing Shape is read from from a PowerPoint document.
+ *
+ * @param escherRecord <code>EscherSpContainer</code> container which holds information about this shape
+ * @param parent the parent of this Shape
+ */
+ protected HSLFShape(EscherContainerRecord escherRecord, ShapeContainer<HSLFShape> parent){
+ _escherContainer = escherRecord;
+ _parent = parent;
+ }
+
+ /**
+ * Creates the lowerlevel escher records for this shape.
+ */
+ protected abstract EscherContainerRecord createSpContainer(boolean isChild);
+
+ /**
+ * @return the parent of this shape
+ */
+ public ShapeContainer<HSLFShape> getParent(){
+ return _parent;
+ }
+
+ /**
+ * @return name of the shape.
+ */
+ public String getShapeName(){
+ return getShapeType().nativeName;
+ }
+
+ /**
+ * @return type of the shape.
+ * @see org.apache.poi.hslf.record.RecordTypes
+ */
+ public ShapeType getShapeType(){
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ return ShapeType.forId(spRecord.getShapeType(), false);
+ }
+
+ /**
+ * @param type type of the shape.
+ * @see org.apache.poi.hslf.record.RecordTypes
+ */
+ public void setShapeType(ShapeType type){
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ spRecord.setShapeType( (short) type.nativeId );
+ spRecord.setVersion( (short) 0x2 );
+ }
+
+ /**
+ * Returns the anchor (the bounding box rectangle) of this shape.
+ * All coordinates are expressed in points (72 dpi).
+ *
+ * @return the anchor of this shape
+ */
+ public java.awt.Rectangle getAnchor(){
+ Rectangle2D anchor2d = getAnchor2D();
+ return anchor2d.getBounds();
+ }
+
+ /**
+ * Returns the anchor (the bounding box rectangle) of this shape.
+ * All coordinates are expressed in points (72 dpi).
+ *
+ * @return the anchor of this shape
+ */
+ public Rectangle2D getAnchor2D(){
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ int flags = spRecord.getFlags();
- x = childRec.getDx1();
- y = childRec.getDy1();
- w = childRec.getDx2()-childRec.getDx1();
- h = childRec.getDy2()-childRec.getDy1();
++ int x1,y1,x2,y2;
+ EscherChildAnchorRecord childRec = getEscherChild(EscherChildAnchorRecord.RECORD_ID);
+ boolean useChildRec = ((flags & EscherSpRecord.FLAG_CHILD) != 0);
+ if (useChildRec && childRec != null){
- x = clientRec.getFlag();
- y = clientRec.getCol1();
- w = clientRec.getDx1()-clientRec.getFlag();
- h = clientRec.getRow1()-clientRec.getCol1();
++ x1 = childRec.getDx1();
++ y1 = childRec.getDy1();
++ x2 = childRec.getDx2();
++ y2 = childRec.getDy2();
+ } else {
+ if (useChildRec) {
+ logger.log(POILogger.WARN, "EscherSpRecord.FLAG_CHILD is set but EscherChildAnchorRecord was not found");
+ }
+ EscherClientAnchorRecord clientRec = getEscherChild(EscherClientAnchorRecord.RECORD_ID);
- Rectangle2D anchor = new Rectangle2D.Float(
- (float)(x == -1 ? -1 : Units.masterToPoints(x)),
- (float)(y == -1 ? -1 : Units.masterToPoints(y)),
- (float)(w == -1 ? -1 : Units.masterToPoints(w)),
- (float)(h == -1 ? -1 : Units.masterToPoints(h))
++ x1 = clientRec.getCol1();
++ y1 = clientRec.getFlag();
++ x2 = clientRec.getDx1();
++ y2 = clientRec.getRow1();
+ }
+
+ // TODO: find out where this -1 value comes from at #57820 (link to ms docs?)
- rec.setFlag((short)x);
- rec.setCol1((short)y);
++ Rectangle2D anchor = new Rectangle2D.Double(
++ (x1 == -1 ? -1 : Units.masterToPoints(x1)),
++ (y1 == -1 ? -1 : Units.masterToPoints(y1)),
++ (x2 == -1 ? -1 : Units.masterToPoints(x2-x1)),
++ (y2 == -1 ? -1 : Units.masterToPoints(y2-y1))
+ );
+
+ return anchor;
+ }
+
+ /**
+ * Sets the anchor (the bounding box rectangle) of this shape.
+ * All coordinates should be expressed in points (72 dpi).
+ *
+ * @param anchor new anchor
+ */
+ public void setAnchor(Rectangle2D anchor){
+ int x = Units.pointsToMaster(anchor.getX());
+ int y = Units.pointsToMaster(anchor.getY());
+ int w = Units.pointsToMaster(anchor.getWidth() + anchor.getX());
+ int h = Units.pointsToMaster(anchor.getHeight() + anchor.getY());
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ int flags = spRecord.getFlags();
+ if ((flags & EscherSpRecord.FLAG_CHILD) != 0){
+ EscherChildAnchorRecord rec = (EscherChildAnchorRecord)getEscherChild(EscherChildAnchorRecord.RECORD_ID);
+ rec.setDx1(x);
+ rec.setDy1(y);
+ rec.setDx2(w);
+ rec.setDy2(h);
+ } else {
+ EscherClientAnchorRecord rec = (EscherClientAnchorRecord)getEscherChild(EscherClientAnchorRecord.RECORD_ID);
++ rec.setCol1((short)x);
++ rec.setFlag((short)y);
+ rec.setDx1((short)w);
+ rec.setRow1((short)h);
+ }
+
+ }
+
+ /**
+ * Moves the top left corner of the shape to the specified point.
+ *
+ * @param x the x coordinate of the top left corner of the shape
+ * @param y the y coordinate of the top left corner of the shape
+ */
+ public void moveTo(float x, float y){
+ Rectangle2D anchor = getAnchor2D();
+ anchor.setRect(x, y, anchor.getWidth(), anchor.getHeight());
+ setAnchor(anchor);
+ }
+
+ /**
+ * Helper method to return escher child by record ID
+ *
+ * @return escher record or <code>null</code> if not found.
+ */
+ public static <T extends EscherRecord> T getEscherChild(EscherContainerRecord owner, int recordId){
+ return owner.getChildById((short)recordId);
+ }
+
+ public <T extends EscherRecord> T getEscherChild(int recordId){
+ return _escherContainer.getChildById((short)recordId);
+ }
+
+ /**
+ * Returns escher property by id.
+ *
+ * @return escher property or <code>null</code> if not found.
+ */
+ public static <T extends EscherProperty> T getEscherProperty(EscherOptRecord opt, int propId){
+ if (opt == null) return null;
+ return opt.lookup(propId);
+ }
+
+ /**
+ * Set an escher property for this shape.
+ *
+ * @param opt The opt record to set the properties to.
+ * @param propId The id of the property. One of the constants defined in EscherOptRecord.
+ * @param value value of the property. If value = -1 then the property is removed.
+ */
+ public static void setEscherProperty(EscherOptRecord opt, short propId, int value){
+ java.util.List<EscherProperty> props = opt.getEscherProperties();
+ for ( Iterator<EscherProperty> iterator = props.iterator(); iterator.hasNext(); ) {
+ if (iterator.next().getPropertyNumber() == propId){
+ iterator.remove();
+ break;
+ }
+ }
+ if (value != -1) {
+ opt.addEscherProperty(new EscherSimpleProperty(propId, value));
+ opt.sortProperties();
+ }
+ }
+
+ /**
+ * Set an simple escher property for this shape.
+ *
+ * @param propId The id of the property. One of the constants defined in EscherOptRecord.
+ * @param value value of the property. If value = -1 then the property is removed.
+ */
+ public void setEscherProperty(short propId, int value){
+ EscherOptRecord opt = getEscherOptRecord();
+ setEscherProperty(opt, propId, value);
+ }
+
+ /**
+ * Get the value of a simple escher property for this shape.
+ *
+ * @param propId The id of the property. One of the constants defined in EscherOptRecord.
+ */
+ public int getEscherProperty(short propId){
+ EscherOptRecord opt = getEscherOptRecord();
+ EscherSimpleProperty prop = getEscherProperty(opt, propId);
+ return prop == null ? 0 : prop.getPropertyValue();
+ }
+
+ /**
+ * Get the value of a simple escher property for this shape.
+ *
+ * @param propId The id of the property. One of the constants defined in EscherOptRecord.
+ */
+ public int getEscherProperty(short propId, int defaultValue){
+ EscherOptRecord opt = getEscherOptRecord();
+ EscherSimpleProperty prop = getEscherProperty(opt, propId);
+ return prop == null ? defaultValue : prop.getPropertyValue();
+ }
+
+ /**
+ * @return The shape container and it's children that can represent this
+ * shape.
+ */
+ public EscherContainerRecord getSpContainer(){
+ return _escherContainer;
+ }
+
+ /**
+ * Event which fires when a shape is inserted in the sheet.
+ * In some cases we need to propagate changes to upper level containers.
+ * <br>
+ * Default implementation does nothing.
+ *
+ * @param sh - owning shape
+ */
+ protected void afterInsert(HSLFSheet sh){
+ if(_fill != null) {
+ _fill.afterInsert(sh);
+ }
+ }
+
+ /**
+ * @return the <code>SlideShow</code> this shape belongs to
+ */
+ public HSLFSheet getSheet(){
+ return _sheet;
+ }
+
+ /**
+ * Assign the <code>SlideShow</code> this shape belongs to
+ *
+ * @param sheet owner of this shape
+ */
+ public void setSheet(HSLFSheet sheet){
+ _sheet = sheet;
+ }
+
+ Color getColor(short colorProperty, short opacityProperty, int defaultColor){
+ EscherOptRecord opt = getEscherOptRecord();
+ EscherSimpleProperty p = getEscherProperty(opt, colorProperty);
+ if(p == null && defaultColor == -1) return null;
+
+ int val = (p == null) ? defaultColor : p.getPropertyValue();
+
+ EscherColorRef ecr = new EscherColorRef(val);
+
+ boolean fPaletteIndex = ecr.hasPaletteIndexFlag();
+ boolean fPaletteRGB = ecr.hasPaletteRGBFlag();
+ boolean fSystemRGB = ecr.hasSystemRGBFlag();
+ boolean fSchemeIndex = ecr.hasSchemeIndexFlag();
+ boolean fSysIndex = ecr.hasSysIndexFlag();
+
+ int rgb[] = ecr.getRGB();
+
+ HSLFSheet sheet = getSheet();
+ if (fSchemeIndex && sheet != null) {
+ //red is the index to the color scheme
+ ColorSchemeAtom ca = sheet.getColorScheme();
+ int schemeColor = ca.getColor(ecr.getSchemeIndex());
+
+ rgb[0] = (schemeColor >> 0) & 0xFF;
+ rgb[1] = (schemeColor >> 8) & 0xFF;
+ rgb[2] = (schemeColor >> 16) & 0xFF;
+ } else if (fPaletteIndex){
+ //TODO
+ } else if (fPaletteRGB){
+ //TODO
+ } else if (fSystemRGB){
+ //TODO
+ } else if (fSysIndex){
+ //TODO
+ }
+
+ double alpha = getAlpha(opacityProperty);
+ return new Color(rgb[0], rgb[1], rgb[2], (int)(alpha*255.0));
+ }
+
+ double getAlpha(short opacityProperty) {
+ EscherOptRecord opt = getEscherOptRecord();
+ EscherSimpleProperty op = getEscherProperty(opt, opacityProperty);
+ int defaultOpacity = 0x00010000;
+ int opacity = (op == null) ? defaultOpacity : op.getPropertyValue();
+ return Units.fixedPointToDouble(opacity);
+ }
+
+ Color toRGB(int val){
+ int a = (val >> 24) & 0xFF;
+ int b = (val >> 16) & 0xFF;
+ int g = (val >> 8) & 0xFF;
+ int r = (val >> 0) & 0xFF;
+
+ if(a == 0xFE){
+ // Color is an sRGB value specified by red, green, and blue fields.
+ } else if (a == 0xFF){
+ // Color is undefined.
+ } else {
+ // index in the color scheme
+ ColorSchemeAtom ca = getSheet().getColorScheme();
+ int schemeColor = ca.getColor(a);
+
+ r = (schemeColor >> 0) & 0xFF;
+ g = (schemeColor >> 8) & 0xFF;
+ b = (schemeColor >> 16) & 0xFF;
+ }
+ return new Color(r, g, b);
+ }
+
+ /**
+ * @return id for the shape.
+ */
+ public int getShapeId(){
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ return spRecord == null ? 0 : spRecord.getShapeId();
+ }
+
+ /**
+ * Sets shape ID
+ *
+ * @param id of the shape
+ */
+ public void setShapeId(int id){
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ if(spRecord != null) spRecord.setShapeId(id);
+ }
+
+ /**
+ * Fill properties of this shape
+ *
+ * @return fill properties of this shape
+ */
+ public HSLFFill getFill(){
+ if(_fill == null) {
+ _fill = new HSLFFill(this);
+ }
+ return _fill;
+ }
+
+ public FillStyle getFillStyle() {
+ return getFill().getFillStyle();
+ }
+
+ /**
+ * Returns the hyperlink assigned to this shape
+ *
+ * @return the hyperlink assigned to this shape
+ * or <code>null</code> if not found.
+ */
+ public HSLFHyperlink getHyperlink(){
+ return HSLFHyperlink.find(this);
+ }
+
+ public void draw(Graphics2D graphics){
+ logger.log(POILogger.INFO, "Rendering " + getShapeName());
+ }
+
+ public EscherOptRecord getEscherOptRecord() {
+ EscherOptRecord opt = getEscherChild(EscherOptRecord.RECORD_ID);
+ if (opt == null) {
+ opt = getEscherChild(RecordTypes.EscherUserDefined);
+ }
+ return opt;
+ }
+
+ public boolean getFlipHorizontal(){
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ return (spRecord.getFlags()& EscherSpRecord.FLAG_FLIPHORIZ) != 0;
+ }
+
+ public void setFlipHorizontal(boolean flip) {
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ int flag = spRecord.getFlags() | EscherSpRecord.FLAG_FLIPHORIZ;
+ spRecord.setFlags(flag);
+ }
+
+ public boolean getFlipVertical(){
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ return (spRecord.getFlags()& EscherSpRecord.FLAG_FLIPVERT) != 0;
+ }
+
+ public void setFlipVertical(boolean flip) {
+ EscherSpRecord spRecord = getEscherChild(EscherSpRecord.RECORD_ID);
+ int flag = spRecord.getFlags() | EscherSpRecord.FLAG_FLIPVERT;
+ spRecord.setFlags(flag);
+ }
+
+ public double getRotation(){
+ int rot = getEscherProperty(EscherProperties.TRANSFORM__ROTATION);
+ return Units.fixedPointToDouble(rot);
+ }
+
+ public void setRotation(double theta){
+ int rot = Units.doubleToFixedPoint(theta % 360.0);
+ setEscherProperty(EscherProperties.TRANSFORM__ROTATION, rot);
+ }
+
+ public boolean isPlaceholder() {
+ return false;
+ }
+ }
--- /dev/null
- int pgx = (int) docatom.getSlideSizeX() * HSLFShape.POINT_DPI / HSLFShape.MASTER_DPI;
- int pgy = (int) docatom.getSlideSizeY() * HSLFShape.POINT_DPI / HSLFShape.MASTER_DPI;
+ /* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ ==================================================================== */
+
+ package org.apache.poi.hslf.usermodel;
+
+ import java.awt.Dimension;
+ import java.io.ByteArrayInputStream;
+ import java.io.ByteArrayOutputStream;
+ import java.io.File;
+ import java.io.FileInputStream;
+ import java.io.IOException;
+ import java.io.InputStream;
+ import java.io.OutputStream;
+ import java.util.*;
+
+ import org.apache.poi.ddf.EscherBSERecord;
+ import org.apache.poi.ddf.EscherContainerRecord;
+ import org.apache.poi.ddf.EscherOptRecord;
+ import org.apache.poi.ddf.EscherRecord;
+ import org.apache.poi.hpsf.ClassID;
+ import org.apache.poi.hslf.exceptions.CorruptPowerPointFileException;
+ import org.apache.poi.hslf.exceptions.HSLFException;
+ import org.apache.poi.hslf.model.*;
+ import org.apache.poi.hslf.record.Document;
+ import org.apache.poi.hslf.record.DocumentAtom;
+ import org.apache.poi.hslf.record.ExAviMovie;
+ import org.apache.poi.hslf.record.ExControl;
+ import org.apache.poi.hslf.record.ExEmbed;
+ import org.apache.poi.hslf.record.ExEmbedAtom;
+ import org.apache.poi.hslf.record.ExHyperlink;
+ import org.apache.poi.hslf.record.ExHyperlinkAtom;
+ import org.apache.poi.hslf.record.ExMCIMovie;
+ import org.apache.poi.hslf.record.ExObjList;
+ import org.apache.poi.hslf.record.ExObjListAtom;
+ import org.apache.poi.hslf.record.ExOleObjAtom;
+ import org.apache.poi.hslf.record.ExOleObjStg;
+ import org.apache.poi.hslf.record.ExVideoContainer;
+ import org.apache.poi.hslf.record.FontCollection;
+ import org.apache.poi.hslf.record.FontEntityAtom;
+ import org.apache.poi.hslf.record.HeadersFootersContainer;
+ import org.apache.poi.hslf.record.PersistPtrHolder;
+ import org.apache.poi.hslf.record.PositionDependentRecord;
+ import org.apache.poi.hslf.record.PositionDependentRecordContainer;
+ import org.apache.poi.hslf.record.Record;
+ import org.apache.poi.hslf.record.RecordContainer;
+ import org.apache.poi.hslf.record.RecordTypes;
+ import org.apache.poi.hslf.record.SlideListWithText;
+ import org.apache.poi.hslf.record.SlideListWithText.SlideAtomsSet;
+ import org.apache.poi.hslf.record.SlidePersistAtom;
+ import org.apache.poi.hslf.record.UserEditAtom;
+ import org.apache.poi.poifs.filesystem.DirectoryNode;
+ import org.apache.poi.poifs.filesystem.POIFSFileSystem;
+ import org.apache.poi.sl.usermodel.*;
+ import org.apache.poi.util.POILogFactory;
+ import org.apache.poi.util.POILogger;
++import org.apache.poi.util.Units;
+
+ /**
+ * This class is a friendly wrapper on top of the more scary HSLFSlideShow.
+ *
+ * TODO: - figure out how to match notes to their correct sheet (will involve
+ * understanding DocSlideList and DocNotesList) - handle Slide creation cleaner
+ *
+ * @author Nick Burch
+ * @author Yegor kozlov
+ */
+ public final class HSLFSlideShow implements SlideShow {
+ // What we're based on
+ private HSLFSlideShowImpl _hslfSlideShow;
+
+ // Pointers to the most recent versions of the core records
+ // (Document, Notes, Slide etc)
+ private Record[] _mostRecentCoreRecords;
+ // Lookup between the PersitPtr "sheet" IDs, and the position
+ // in the mostRecentCoreRecords array
+ private Map<Integer,Integer> _sheetIdToCoreRecordsLookup;
+
+ // Records that are interesting
+ private Document _documentRecord;
+
+ // Friendly objects for people to deal with
+ private final List<HSLFSlideMaster> _masters = new ArrayList<HSLFSlideMaster>();
+ private final List<HSLFTitleMaster> _titleMasters = new ArrayList<HSLFTitleMaster>();
+ private final List<HSLFSlide> _slides = new ArrayList<HSLFSlide>();
+ private final List<HSLFNotes> _notes = new ArrayList<HSLFNotes>();
+ private FontCollection _fonts;
+
+ // For logging
+ private POILogger logger = POILogFactory.getLogger(this.getClass());
+
+
+ /* ===============================================================
+ * Setup Code
+ * ===============================================================
+ */
+
+
+ /**
+ * Constructs a Powerpoint document from the underlying
+ * HSLFSlideShow object. Finds the model stuff from this
+ *
+ * @param hslfSlideShow the HSLFSlideShow to base on
+ */
+ public HSLFSlideShow(HSLFSlideShowImpl hslfSlideShow) {
+ // Get useful things from our base slideshow
+ _hslfSlideShow = hslfSlideShow;
+
+ // Handle Parent-aware Records
+ for (Record record : _hslfSlideShow.getRecords()) {
+ if(record instanceof RecordContainer){
+ RecordContainer.handleParentAwareRecords((RecordContainer)record);
+ }
+ }
+
+ // Find the versions of the core records we'll want to use
+ findMostRecentCoreRecords();
+
+ // Build up the model level Slides and Notes
+ buildSlidesAndNotes();
+ }
+
+ /**
+ * Constructs a new, empty, Powerpoint document.
+ */
+ public HSLFSlideShow() {
+ this(HSLFSlideShowImpl.create());
+ }
+
+ /**
+ * Constructs a Powerpoint document from an input stream.
+ */
+ public HSLFSlideShow(InputStream inputStream) throws IOException {
+ this(new HSLFSlideShowImpl(inputStream));
+ }
+
+ /**
+ * Use the PersistPtrHolder entries to figure out what is the "most recent"
+ * version of all the core records (Document, Notes, Slide etc), and save a
+ * record of them. Do this by walking from the oldest PersistPtr to the
+ * newest, overwriting any references found along the way with newer ones
+ */
+ private void findMostRecentCoreRecords() {
+ // To start with, find the most recent in the byte offset domain
+ Map<Integer,Integer> mostRecentByBytes = new HashMap<Integer,Integer>();
+ for (Record record : _hslfSlideShow.getRecords()) {
+ if (record instanceof PersistPtrHolder) {
+ PersistPtrHolder pph = (PersistPtrHolder) record;
+
+ // If we've already seen any of the "slide" IDs for this
+ // PersistPtr, remove their old positions
+ int[] ids = pph.getKnownSlideIDs();
+ for (int id : ids) {
+ if (mostRecentByBytes.containsKey(id)) {
+ mostRecentByBytes.remove(id);
+ }
+ }
+
+ // Now, update the byte level locations with their latest values
+ Map<Integer,Integer> thisSetOfLocations = pph.getSlideLocationsLookup();
+ for (int id : ids) {
+ mostRecentByBytes.put(id, thisSetOfLocations.get(id));
+ }
+ }
+ }
+
+ // We now know how many unique special records we have, so init
+ // the array
+ _mostRecentCoreRecords = new Record[mostRecentByBytes.size()];
+
+ // We'll also want to be able to turn the slide IDs into a position
+ // in this array
+ _sheetIdToCoreRecordsLookup = new HashMap<Integer,Integer>();
+ Integer[] allIDs = mostRecentByBytes.keySet().toArray(new Integer[mostRecentByBytes.size()]);
+ Arrays.sort(allIDs);
+ for (int i = 0; i < allIDs.length; i++) {
+ _sheetIdToCoreRecordsLookup.put(allIDs[i], i);
+ }
+
+ Map<Integer,Integer> mostRecentByBytesRev = new HashMap<Integer,Integer>(mostRecentByBytes.size());
+ for (Map.Entry<Integer,Integer> me : mostRecentByBytes.entrySet()) {
+ mostRecentByBytesRev.put(me.getValue(), me.getKey());
+ }
+
+ // Now convert the byte offsets back into record offsets
+ for (Record record : _hslfSlideShow.getRecords()) {
+ if (!(record instanceof PositionDependentRecord)) continue;
+
+ PositionDependentRecord pdr = (PositionDependentRecord) record;
+ int recordAt = pdr.getLastOnDiskOffset();
+
+ Integer thisID = mostRecentByBytesRev.get(recordAt);
+
+ if (thisID == null) continue;
+
+ // Bingo. Now, where do we store it?
+ int storeAt = _sheetIdToCoreRecordsLookup.get(thisID);
+
+ // Tell it its Sheet ID, if it cares
+ if (pdr instanceof PositionDependentRecordContainer) {
+ PositionDependentRecordContainer pdrc = (PositionDependentRecordContainer) record;
+ pdrc.setSheetId(thisID);
+ }
+
+ // Finally, save the record
+ _mostRecentCoreRecords[storeAt] = record;
+ }
+
+ // Now look for the interesting records in there
+ for (Record record : _mostRecentCoreRecords) {
+ // Check there really is a record at this number
+ if (record != null) {
+ // Find the Document, and interesting things in it
+ if (record.getRecordType() == RecordTypes.Document.typeID) {
+ _documentRecord = (Document) record;
+ _fonts = _documentRecord.getEnvironment().getFontCollection();
+ }
+ } else {
+ // No record at this number
+ // Odd, but not normally a problem
+ }
+ }
+ }
+
+ /**
+ * For a given SlideAtomsSet, return the core record, based on the refID
+ * from the SlidePersistAtom
+ */
+ private Record getCoreRecordForSAS(SlideAtomsSet sas) {
+ SlidePersistAtom spa = sas.getSlidePersistAtom();
+ int refID = spa.getRefID();
+ return getCoreRecordForRefID(refID);
+ }
+
+ /**
+ * For a given refID (the internal, 0 based numbering scheme), return the
+ * core record
+ *
+ * @param refID
+ * the refID
+ */
+ private Record getCoreRecordForRefID(int refID) {
+ Integer coreRecordId = _sheetIdToCoreRecordsLookup.get(refID);
+ if (coreRecordId != null) {
+ Record r = _mostRecentCoreRecords[coreRecordId];
+ return r;
+ }
+ logger.log(POILogger.ERROR,
+ "We tried to look up a reference to a core record, but there was no core ID for reference ID "
+ + refID);
+ return null;
+ }
+
+ /**
+ * Build up model level Slide and Notes objects, from the underlying
+ * records.
+ */
+ private void buildSlidesAndNotes() {
+ // Ensure we really found a Document record earlier
+ // If we didn't, then the file is probably corrupt
+ if (_documentRecord == null) {
+ throw new CorruptPowerPointFileException(
+ "The PowerPoint file didn't contain a Document Record in its PersistPtr blocks. It is probably corrupt.");
+ }
+
+ // Fetch the SlideListWithTexts in the most up-to-date Document Record
+ //
+ // As far as we understand it:
+ // * The first SlideListWithText will contain a SlideAtomsSet
+ // for each of the master slides
+ // * The second SlideListWithText will contain a SlideAtomsSet
+ // for each of the slides, in their current order
+ // These SlideAtomsSets will normally contain text
+ // * The third SlideListWithText (if present), will contain a
+ // SlideAtomsSet for each Notes
+ // These SlideAtomsSets will not normally contain text
+ //
+ // Having indentified the masters, slides and notes + their orders,
+ // we have to go and find their matching records
+ // We always use the latest versions of these records, and use the
+ // SlideAtom/NotesAtom to match them with the StyleAtomSet
+
+ SlideListWithText masterSLWT = _documentRecord.getMasterSlideListWithText();
+ SlideListWithText slidesSLWT = _documentRecord.getSlideSlideListWithText();
+ SlideListWithText notesSLWT = _documentRecord.getNotesSlideListWithText();
+
+ // Find master slides
+ // These can be MainMaster records, but oddly they can also be
+ // Slides or Notes, and possibly even other odd stuff....
+ // About the only thing you can say is that the master details are in
+ // the first SLWT.
+ SlideAtomsSet[] masterSets = new SlideAtomsSet[0];
+ if (masterSLWT != null) {
+ masterSets = masterSLWT.getSlideAtomsSets();
+
+ for (SlideAtomsSet sas : masterSets) {
+ Record r = getCoreRecordForSAS(sas);
+ int sheetNo = sas.getSlidePersistAtom().getSlideIdentifier();
+ if (r instanceof org.apache.poi.hslf.record.Slide) {
+ HSLFTitleMaster master = new HSLFTitleMaster((org.apache.poi.hslf.record.Slide) r,
+ sheetNo);
+ master.setSlideShow(this);
+ _titleMasters.add(master);
+ } else if (r instanceof org.apache.poi.hslf.record.MainMaster) {
+ HSLFSlideMaster master = new HSLFSlideMaster((org.apache.poi.hslf.record.MainMaster) r,
+ sheetNo);
+ master.setSlideShow(this);
+ _masters.add(master);
+ }
+ }
+ }
+
+ // Having sorted out the masters, that leaves the notes and slides
+
+ // Start by finding the notes records to go with the entries in
+ // notesSLWT
+ org.apache.poi.hslf.record.Notes[] notesRecords;
+ SlideAtomsSet[] notesSets = new SlideAtomsSet[0];
+ Map<Integer,Integer> slideIdToNotes = new HashMap<Integer,Integer>();
+ if (notesSLWT == null) {
+ // None
+ notesRecords = new org.apache.poi.hslf.record.Notes[0];
+ } else {
+ // Match up the records and the SlideAtomSets
+ notesSets = notesSLWT.getSlideAtomsSets();
+ List<org.apache.poi.hslf.record.Notes> notesRecordsL =
+ new ArrayList<org.apache.poi.hslf.record.Notes>();
+ for (int i = 0; i < notesSets.length; i++) {
+ // Get the right core record
+ Record r = getCoreRecordForSAS(notesSets[i]);
+
+ // Ensure it really is a notes record
+ if (r == null || r instanceof org.apache.poi.hslf.record.Notes) {
+ if (r == null) {
+ logger.log(POILogger.WARN, "A Notes SlideAtomSet at " + i
+ + " said its record was at refID "
+ + notesSets[i].getSlidePersistAtom().getRefID()
+ + ", but that record didn't exist - record ignored.");
+ }
+ // we need to add also null-records, otherwise the index references to other existing
+ // don't work anymore
+ org.apache.poi.hslf.record.Notes notesRecord = (org.apache.poi.hslf.record.Notes) r;
+ notesRecordsL.add(notesRecord);
+
+ // Record the match between slide id and these notes
+ SlidePersistAtom spa = notesSets[i].getSlidePersistAtom();
+ int slideId = spa.getSlideIdentifier();
+ slideIdToNotes.put(slideId, i);
+ } else {
+ logger.log(POILogger.ERROR, "A Notes SlideAtomSet at " + i
+ + " said its record was at refID "
+ + notesSets[i].getSlidePersistAtom().getRefID()
+ + ", but that was actually a " + r);
+ }
+ }
+ notesRecords = new org.apache.poi.hslf.record.Notes[notesRecordsL.size()];
+ notesRecords = notesRecordsL.toArray(notesRecords);
+ }
+
+ // Now, do the same thing for our slides
+ org.apache.poi.hslf.record.Slide[] slidesRecords;
+ SlideAtomsSet[] slidesSets = new SlideAtomsSet[0];
+ if (slidesSLWT == null) {
+ // None
+ slidesRecords = new org.apache.poi.hslf.record.Slide[0];
+ } else {
+ // Match up the records and the SlideAtomSets
+ slidesSets = slidesSLWT.getSlideAtomsSets();
+ slidesRecords = new org.apache.poi.hslf.record.Slide[slidesSets.length];
+ for (int i = 0; i < slidesSets.length; i++) {
+ // Get the right core record
+ Record r = getCoreRecordForSAS(slidesSets[i]);
+
+ // Ensure it really is a slide record
+ if (r instanceof org.apache.poi.hslf.record.Slide) {
+ slidesRecords[i] = (org.apache.poi.hslf.record.Slide) r;
+ } else {
+ logger.log(POILogger.ERROR, "A Slide SlideAtomSet at " + i
+ + " said its record was at refID "
+ + slidesSets[i].getSlidePersistAtom().getRefID()
+ + ", but that was actually a " + r);
+ }
+ }
+ }
+
+ // Finally, generate model objects for everything
+ // Notes first
+ for (org.apache.poi.hslf.record.Notes n : notesRecords) {
+ HSLFNotes hn = null;
+ if (n != null) {
+ hn = new HSLFNotes(n);
+ hn.setSlideShow(this);
+ }
+ _notes.add(hn);
+ }
+ // Then slides
+ for (int i = 0; i < slidesRecords.length; i++) {
+ SlideAtomsSet sas = slidesSets[i];
+ int slideIdentifier = sas.getSlidePersistAtom().getSlideIdentifier();
+
+ // Do we have a notes for this?
+ HSLFNotes notes = null;
+ // Slide.SlideAtom.notesId references the corresponding notes slide.
+ // 0 if slide has no notes.
+ int noteId = slidesRecords[i].getSlideAtom().getNotesID();
+ if (noteId != 0) {
+ Integer notesPos = slideIdToNotes.get(noteId);
+ if (notesPos != null) {
+ notes = _notes.get(notesPos);
+ } else {
+ logger.log(POILogger.ERROR, "Notes not found for noteId=" + noteId);
+ }
+ }
+
+ // Now, build our slide
+ HSLFSlide hs = new HSLFSlide(slidesRecords[i], notes, sas, slideIdentifier, (i + 1));
+ hs.setSlideShow(this);
+ _slides.add(hs);
+ }
+ }
+
+ /**
+ * Writes out the slideshow file the is represented by an instance of this
+ * class
+ *
+ * @param out
+ * The OutputStream to write to.
+ * @throws IOException
+ * If there is an unexpected IOException from the passed in
+ * OutputStream
+ */
+ public void write(OutputStream out) throws IOException {
+ // check for text paragraph modifications
+ for (HSLFSlide sl : getSlides()) {
+ for (HSLFShape sh : sl.getShapes()) {
+ if (!(sh instanceof HSLFTextShape)) continue;
+ HSLFTextShape hts = (HSLFTextShape)sh;
+ boolean isDirty = false;
+ for (HSLFTextParagraph p : hts.getTextParagraphs()) {
+ isDirty |= p.isDirty();
+ }
+ if (isDirty) hts.storeText();
+ }
+ }
+
+
+ _hslfSlideShow.write(out);
+ }
+
+ /*
+ * ===============================================================
+ * Accessor Code
+ * ===============================================================
+ */
+
+ /**
+ * Returns an array of the most recent version of all the interesting
+ * records
+ */
+ public Record[] getMostRecentCoreRecords() {
+ return _mostRecentCoreRecords;
+ }
+
+ /**
+ * Returns an array of all the normal Slides found in the slideshow
+ */
+ @Override
+ public List<HSLFSlide> getSlides() {
+ return _slides;
+ }
+
+ /**
+ * Returns an array of all the normal Notes found in the slideshow
+ */
+ public List<HSLFNotes> getNotes() {
+ return _notes;
+ }
+
+ /**
+ * Returns an array of all the normal Slide Masters found in the slideshow
+ */
+ @Override
+ public List<HSLFSlideMaster> getSlideMasters() {
+ return _masters;
+ }
+
+ /**
+ * Returns an array of all the normal Title Masters found in the slideshow
+ */
+ public List<HSLFTitleMaster> getTitleMasters() {
+ return _titleMasters;
+ }
+
+ /**
+ * Returns the data of all the pictures attached to the SlideShow
+ */
+ public HSLFPictureData[] getPictureData() {
+ return _hslfSlideShow.getPictures();
+ }
+
+ /**
+ * Returns the data of all the embedded OLE object in the SlideShow
+ */
+ public HSLFObjectData[] getEmbeddedObjects() {
+ return _hslfSlideShow.getEmbeddedObjects();
+ }
+
+ /**
+ * Returns the data of all the embedded sounds in the SlideShow
+ */
+ public HSLFSoundData[] getSoundData() {
+ return HSLFSoundData.find(_documentRecord);
+ }
+
+ /**
+ * Return the current page size
+ */
+ public Dimension getPageSize() {
+ DocumentAtom docatom = _documentRecord.getDocumentAtom();
- docatom.setSlideSizeX(pgsize.width * HSLFShape.MASTER_DPI / HSLFShape.POINT_DPI);
- docatom.setSlideSizeY(pgsize.height * HSLFShape.MASTER_DPI / HSLFShape.POINT_DPI);
++ int pgx = (int)Units.masterToPoints((int)docatom.getSlideSizeX());
++ int pgy = (int)Units.masterToPoints((int)docatom.getSlideSizeY());
+ return new Dimension(pgx, pgy);
+ }
+
+ /**
+ * Change the current page size
+ *
+ * @param pgsize
+ * page size (in points)
+ */
+ public void setPageSize(Dimension pgsize) {
+ DocumentAtom docatom = _documentRecord.getDocumentAtom();
++ docatom.setSlideSizeX(Units.pointsToMaster(pgsize.width));
++ docatom.setSlideSizeY(Units.pointsToMaster(pgsize.height));
+ }
+
+ /**
+ * Helper method for usermodel: Get the font collection
+ */
+ protected FontCollection getFontCollection() {
+ return _fonts;
+ }
+
+ /**
+ * Helper method for usermodel and model: Get the document record
+ */
+ public Document getDocumentRecord() {
+ return _documentRecord;
+ }
+
+ /*
+ * ===============================================================
+ * Re-ordering Code
+ * ===============================================================
+ */
+
+ /**
+ * Re-orders a slide, to a new position.
+ *
+ * @param oldSlideNumber
+ * The old slide number (1 based)
+ * @param newSlideNumber
+ * The new slide number (1 based)
+ */
+ public void reorderSlide(int oldSlideNumber, int newSlideNumber) {
+ // Ensure these numbers are valid
+ if (oldSlideNumber < 1 || newSlideNumber < 1) {
+ throw new IllegalArgumentException("Old and new slide numbers must be greater than 0");
+ }
+ if (oldSlideNumber > _slides.size() || newSlideNumber > _slides.size()) {
+ throw new IllegalArgumentException(
+ "Old and new slide numbers must not exceed the number of slides ("
+ + _slides.size() + ")");
+ }
+
+ // The order of slides is defined by the order of slide atom sets in the
+ // SlideListWithText container.
+ SlideListWithText slwt = _documentRecord.getSlideSlideListWithText();
+ SlideAtomsSet[] sas = slwt.getSlideAtomsSets();
+
+ SlideAtomsSet tmp = sas[oldSlideNumber - 1];
+ sas[oldSlideNumber - 1] = sas[newSlideNumber - 1];
+ sas[newSlideNumber - 1] = tmp;
+
+ Collections.swap(_slides, oldSlideNumber - 1, newSlideNumber - 1);
+ _slides.get(newSlideNumber - 1).setSlideNumber(newSlideNumber);
+ _slides.get(oldSlideNumber - 1).setSlideNumber(oldSlideNumber);
+
+ ArrayList<Record> lst = new ArrayList<Record>();
+ for (SlideAtomsSet s : sas) {
+ lst.add(s.getSlidePersistAtom());
+ lst.addAll(Arrays.asList(s.getSlideRecords()));
+ }
+
+ Record[] r = lst.toArray(new Record[lst.size()]);
+ slwt.setChildRecord(r);
+ }
+
+ /**
+ * Removes the slide at the given index (0-based).
+ * <p>
+ * Shifts any subsequent slides to the left (subtracts one from their slide
+ * numbers).
+ * </p>
+ *
+ * @param index
+ * the index of the slide to remove (0-based)
+ * @return the slide that was removed from the slide show.
+ */
+ public HSLFSlide removeSlide(int index) {
+ int lastSlideIdx = _slides.size() - 1;
+ if (index < 0 || index > lastSlideIdx) {
+ throw new IllegalArgumentException("Slide index (" + index + ") is out of range (0.."
+ + lastSlideIdx + ")");
+ }
+
+ SlideListWithText slwt = _documentRecord.getSlideSlideListWithText();
+ SlideAtomsSet[] sas = slwt.getSlideAtomsSets();
+
+ List<Record> records = new ArrayList<Record>();
+ List<SlideAtomsSet> sa = new ArrayList<SlideAtomsSet>(Arrays.asList(sas));
+
+ HSLFSlide removedSlide = _slides.remove(index);
+ _notes.remove(removedSlide.getNotes());
+ sa.remove(index);
+
+ int i=0;
+ for (HSLFSlide s : _slides) s.setSlideNumber(i++);
+
+ for (SlideAtomsSet s : sa) {
+ records.add(s.getSlidePersistAtom());
+ records.addAll(Arrays.asList(s.getSlideRecords()));
+ }
+ if (sa.isEmpty()) {
+ _documentRecord.removeSlideListWithText(slwt);
+ } else {
+ slwt.setSlideAtomsSets(sa.toArray(new SlideAtomsSet[sa.size()]));
+ slwt.setChildRecord(records.toArray(new Record[records.size()]));
+ }
+
+ // if the removed slide had notes - remove references to them too
+
+ int notesId = (removedSlide != null) ? removedSlide.getSlideRecord().getSlideAtom().getNotesID() : 0;
+ if (notesId != 0) {
+ SlideListWithText nslwt = _documentRecord.getNotesSlideListWithText();
+ records = new ArrayList<Record>();
+ ArrayList<SlideAtomsSet> na = new ArrayList<SlideAtomsSet>();
+ for (SlideAtomsSet ns : nslwt.getSlideAtomsSets()) {
+ if (ns.getSlidePersistAtom().getSlideIdentifier() == notesId) continue;
+ na.add(ns);
+ records.add(ns.getSlidePersistAtom());
+ if (ns.getSlideRecords() != null) {
+ records.addAll(Arrays.asList(ns.getSlideRecords()));
+ }
+ }
+ if (na.isEmpty()) {
+ _documentRecord.removeSlideListWithText(nslwt);
+ } else {
+ nslwt.setSlideAtomsSets(na.toArray(new SlideAtomsSet[na.size()]));
+ nslwt.setChildRecord(records.toArray(new Record[records.size()]));
+ }
+ }
+
+ return removedSlide;
+ }
+
+ /*
+ * ===============================================================
+ * Addition Code
+ * ===============================================================
+ */
+
+ /**
+ * Create a blank <code>Slide</code>.
+ *
+ * @return the created <code>Slide</code>
+ */
+ public HSLFSlide createSlide() {
+ SlideListWithText slist = null;
+
+ // We need to add the records to the SLWT that deals
+ // with Slides.
+ // Add it, if it doesn't exist
+ slist = _documentRecord.getSlideSlideListWithText();
+ if (slist == null) {
+ // Need to add a new one
+ slist = new SlideListWithText();
+ slist.setInstance(SlideListWithText.SLIDES);
+ _documentRecord.addSlideListWithText(slist);
+ }
+
+ // Grab the SlidePersistAtom with the highest Slide Number.
+ // (Will stay as null if no SlidePersistAtom exists yet in
+ // the slide, or only master slide's ones do)
+ SlidePersistAtom prev = null;
+ for (SlideAtomsSet sas : slist.getSlideAtomsSets()) {
+ SlidePersistAtom spa = sas.getSlidePersistAtom();
+ if (spa.getSlideIdentifier() < 0) {
+ // This is for a master slide
+ // Odd, since we only deal with the Slide SLWT
+ } else {
+ // Must be for a real slide
+ if (prev == null) {
+ prev = spa;
+ }
+ if (prev.getSlideIdentifier() < spa.getSlideIdentifier()) {
+ prev = spa;
+ }
+ }
+ }
+
+ // Set up a new SlidePersistAtom for this slide
+ SlidePersistAtom sp = new SlidePersistAtom();
+
+ // First slideId is always 256
+ sp.setSlideIdentifier(prev == null ? 256 : (prev.getSlideIdentifier() + 1));
+
+ // Add this new SlidePersistAtom to the SlideListWithText
+ slist.addSlidePersistAtom(sp);
+
+ // Create a new Slide
+ HSLFSlide slide = new HSLFSlide(sp.getSlideIdentifier(), sp.getRefID(), _slides.size() + 1);
+ slide.setSlideShow(this);
+ slide.onCreate();
+
+ // Add in to the list of Slides
+ _slides.add(slide);
+ logger.log(POILogger.INFO, "Added slide " + _slides.size() + " with ref " + sp.getRefID()
+ + " and identifier " + sp.getSlideIdentifier());
+
+ // Add the core records for this new Slide to the record tree
+ org.apache.poi.hslf.record.Slide slideRecord = slide.getSlideRecord();
+ int psrId = addPersistentObject(slideRecord);
+ sp.setRefID(psrId);
+ slideRecord.setSheetId(psrId);
+
+ slide.setMasterSheet(_masters.get(0));
+ // All done and added
+ return slide;
+ }
+
+ /**
+ * Adds a picture to this presentation and returns the associated index.
+ *
+ * @param data
+ * picture data
+ * @param format
+ * the format of the picture. One of constans defined in the
+ * <code>Picture</code> class.
+ * @return the index to this picture (1 based).
+ */
+ public int addPicture(byte[] data, int format) throws IOException {
+ byte[] uid = HSLFPictureData.getChecksum(data);
+
+ EscherContainerRecord bstore;
+
+ EscherContainerRecord dggContainer = _documentRecord.getPPDrawingGroup().getDggContainer();
+ bstore = (EscherContainerRecord) HSLFShape.getEscherChild(dggContainer,
+ EscherContainerRecord.BSTORE_CONTAINER);
+ if (bstore == null) {
+ bstore = new EscherContainerRecord();
+ bstore.setRecordId(EscherContainerRecord.BSTORE_CONTAINER);
+
+ dggContainer.addChildBefore(bstore, EscherOptRecord.RECORD_ID);
+ } else {
+ Iterator<EscherRecord> iter = bstore.getChildIterator();
+ for (int i = 0; iter.hasNext(); i++) {
+ EscherBSERecord bse = (EscherBSERecord) iter.next();
+ if (Arrays.equals(bse.getUid(), uid)) {
+ return i + 1;
+ }
+ }
+ }
+
+ HSLFPictureData pict = HSLFPictureData.create(format);
+ pict.setData(data);
+
+ int offset = _hslfSlideShow.addPicture(pict);
+
+ EscherBSERecord bse = new EscherBSERecord();
+ bse.setRecordId(EscherBSERecord.RECORD_ID);
+ bse.setOptions((short) (0x0002 | (format << 4)));
+ bse.setSize(pict.getRawData().length + 8);
+ bse.setUid(uid);
+
+ bse.setBlipTypeMacOS((byte) format);
+ bse.setBlipTypeWin32((byte) format);
+
+ if (format == HSLFPictureShape.EMF)
+ bse.setBlipTypeMacOS((byte) HSLFPictureShape.PICT);
+ else if (format == HSLFPictureShape.WMF)
+ bse.setBlipTypeMacOS((byte) HSLFPictureShape.PICT);
+ else if (format == HSLFPictureShape.PICT)
+ bse.setBlipTypeWin32((byte) HSLFPictureShape.WMF);
+
+ bse.setRef(0);
+ bse.setOffset(offset);
+ bse.setRemainingData(new byte[0]);
+
+ bstore.addChildRecord(bse);
+ int count = bstore.getChildRecords().size();
+ bstore.setOptions((short) ((count << 4) | 0xF));
+
+ return count;
+ }
+
+ /**
+ * Adds a picture to this presentation and returns the associated index.
+ *
+ * @param pict
+ * the file containing the image to add
+ * @param format
+ * the format of the picture. One of constans defined in the
+ * <code>Picture</code> class.
+ * @return the index to this picture (1 based).
+ */
+ public int addPicture(File pict, int format) throws IOException {
+ int length = (int) pict.length();
+ byte[] data = new byte[length];
+ FileInputStream is = null;
+ try {
+ is = new FileInputStream(pict);
+ is.read(data);
+ } finally {
+ if(is != null) is.close();
+ }
+ return addPicture(data, format);
+ }
+
+ /**
+ * Add a font in this presentation
+ *
+ * @param font
+ * the font to add
+ * @return 0-based index of the font
+ */
+ public int addFont(PPFont font) {
+ FontCollection fonts = getDocumentRecord().getEnvironment().getFontCollection();
+ int idx = fonts.getFontIndex(font.getFontName());
+ if (idx == -1) {
+ idx = fonts.addFont(font.getFontName(), font.getCharSet(), font.getFontFlags(), font
+ .getFontType(), font.getPitchAndFamily());
+ }
+ return idx;
+ }
+
+ /**
+ * Get a font by index
+ *
+ * @param idx
+ * 0-based index of the font
+ * @return of an instance of <code>PPFont</code> or <code>null</code> if not
+ * found
+ */
+ public PPFont getFont(int idx) {
+ FontCollection fonts = getDocumentRecord().getEnvironment().getFontCollection();
+ for (Record ch : fonts.getChildRecords()) {
+ if (ch instanceof FontEntityAtom) {
+ FontEntityAtom atom = (FontEntityAtom) ch;
+ if (atom.getFontIndex() == idx) {
+ return new PPFont(atom);
+ }
+ }
+ }
+ return null;
+ }
+
+ /**
+ * get the number of fonts in the presentation
+ *
+ * @return number of fonts
+ */
+ public int getNumberOfFonts() {
+ return getDocumentRecord().getEnvironment().getFontCollection().getNumberOfFonts();
+ }
+
+ /**
+ * Return Header / Footer settings for slides
+ *
+ * @return Header / Footer settings for slides
+ */
+ public HeadersFooters getSlideHeadersFooters() {
+ // detect if this ppt was saved in Office2007
+ String tag = getSlideMasters().get(0).getProgrammableTag();
+ boolean ppt2007 = "___PPT12".equals(tag);
+
+ HeadersFootersContainer hdd = null;
+ for (Record ch : _documentRecord.getChildRecords()) {
+ if (ch instanceof HeadersFootersContainer
+ && ((HeadersFootersContainer) ch).getOptions() == HeadersFootersContainer.SlideHeadersFootersContainer) {
+ hdd = (HeadersFootersContainer) ch;
+ break;
+ }
+ }
+ boolean newRecord = false;
+ if (hdd == null) {
+ hdd = new HeadersFootersContainer(HeadersFootersContainer.SlideHeadersFootersContainer);
+ newRecord = true;
+ }
+ return new HeadersFooters(hdd, this, newRecord, ppt2007);
+ }
+
+ /**
+ * Return Header / Footer settings for notes
+ *
+ * @return Header / Footer settings for notes
+ */
+ public HeadersFooters getNotesHeadersFooters() {
+ // detect if this ppt was saved in Office2007
+ String tag = getSlideMasters().get(0).getProgrammableTag();
+ boolean ppt2007 = "___PPT12".equals(tag);
+
+ HeadersFootersContainer hdd = null;
+ for (Record ch : _documentRecord.getChildRecords()) {
+ if (ch instanceof HeadersFootersContainer
+ && ((HeadersFootersContainer) ch).getOptions() == HeadersFootersContainer.NotesHeadersFootersContainer) {
+ hdd = (HeadersFootersContainer) ch;
+ break;
+ }
+ }
+ boolean newRecord = false;
+ if (hdd == null) {
+ hdd = new HeadersFootersContainer(HeadersFootersContainer.NotesHeadersFootersContainer);
+ newRecord = true;
+ }
+ if (ppt2007 && !_notes.isEmpty()) {
+ return new HeadersFooters(hdd, _notes.get(0), newRecord, ppt2007);
+ }
+ return new HeadersFooters(hdd, this, newRecord, ppt2007);
+ }
+
+ /**
+ * Add a movie in this presentation
+ *
+ * @param path
+ * the path or url to the movie
+ * @return 0-based index of the movie
+ */
+ public int addMovie(String path, int type) {
+ ExMCIMovie mci;
+ switch (type) {
+ case MovieShape.MOVIE_MPEG:
+ mci = new ExMCIMovie();
+ break;
+ case MovieShape.MOVIE_AVI:
+ mci = new ExAviMovie();
+ break;
+ default:
+ throw new IllegalArgumentException("Unsupported Movie: " + type);
+ }
+
+ ExVideoContainer exVideo = mci.getExVideo();
+ exVideo.getExMediaAtom().setMask(0xE80000);
+ exVideo.getPathAtom().setText(path);
+
+ int objectId = addToObjListAtom(mci);
+ exVideo.getExMediaAtom().setObjectId(objectId);
+
+ return objectId;
+ }
+
+ /**
+ * Add a control in this presentation
+ *
+ * @param name
+ * name of the control, e.g. "Shockwave Flash Object"
+ * @param progId
+ * OLE Programmatic Identifier, e.g.
+ * "ShockwaveFlash.ShockwaveFlash.9"
+ * @return 0-based index of the control
+ */
+ public int addControl(String name, String progId) {
+ ExControl ctrl = new ExControl();
+ ctrl.setProgId(progId);
+ ctrl.setMenuName(name);
+ ctrl.setClipboardName(name);
+
+ ExOleObjAtom oleObj = ctrl.getExOleObjAtom();
+ oleObj.setDrawAspect(ExOleObjAtom.DRAW_ASPECT_VISIBLE);
+ oleObj.setType(ExOleObjAtom.TYPE_CONTROL);
+ oleObj.setSubType(ExOleObjAtom.SUBTYPE_DEFAULT);
+
+ int objectId = addToObjListAtom(ctrl);
+ oleObj.setObjID(objectId);
+ return objectId;
+ }
+
+ /**
+ * Add a hyperlink to this presentation
+ *
+ * @return 0-based index of the hyperlink
+ */
+ public int addHyperlink(HSLFHyperlink link) {
+ ExHyperlink ctrl = new ExHyperlink();
+ ExHyperlinkAtom obj = ctrl.getExHyperlinkAtom();
+ if(link.getType() == HSLFHyperlink.LINK_SLIDENUMBER) {
+ ctrl.setLinkURL(link.getAddress(), 0x30);
+ } else {
+ ctrl.setLinkURL(link.getAddress());
+ }
+ ctrl.setLinkTitle(link.getTitle());
+
+ int objectId = addToObjListAtom(ctrl);
+ link.setId(objectId);
+ obj.setNumber(objectId);
+
+ return objectId;
+ }
+
+ /**
+ * Add a embedded object to this presentation
+ *
+ * @return 0-based index of the embedded object
+ */
+ public int addEmbed(POIFSFileSystem poiData) {
+ DirectoryNode root = poiData.getRoot();
+
+ // prepare embedded data
+ if (new ClassID().equals(root.getStorageClsid())) {
+ // need to set class id
+ Map<String,ClassID> olemap = getOleMap();
+ ClassID classID = null;
+ for (Map.Entry<String,ClassID> entry : olemap.entrySet()) {
+ if (root.hasEntry(entry.getKey())) {
+ classID = entry.getValue();
+ break;
+ }
+ }
+ if (classID == null) {
+ throw new IllegalArgumentException("Unsupported embedded document");
+ }
+
+ root.setStorageClsid(classID);
+ }
+
+ ExEmbed exEmbed = new ExEmbed();
+ // remove unneccessary infos, so we don't need to specify the type
+ // of the ole object multiple times
+ Record children[] = exEmbed.getChildRecords();
+ exEmbed.removeChild(children[2]);
+ exEmbed.removeChild(children[3]);
+ exEmbed.removeChild(children[4]);
+
+ ExEmbedAtom eeEmbed = exEmbed.getExEmbedAtom();
+ eeEmbed.setCantLockServerB(true);
+
+ ExOleObjAtom eeAtom = exEmbed.getExOleObjAtom();
+ eeAtom.setDrawAspect(ExOleObjAtom.DRAW_ASPECT_VISIBLE);
+ eeAtom.setType(ExOleObjAtom.TYPE_EMBEDDED);
+ // eeAtom.setSubType(ExOleObjAtom.SUBTYPE_EXCEL);
+ // should be ignored?!?, see MS-PPT ExOleObjAtom, but Libre Office sets it ...
+ eeAtom.setOptions(1226240);
+
+ ExOleObjStg exOleObjStg = new ExOleObjStg();
+ try {
+ final String OLESTREAM_NAME = "\u0001Ole";
+ if (!root.hasEntry(OLESTREAM_NAME)) {
+ // the following data was taken from an example libre office document
+ // beside this "\u0001Ole" record there were several other records, e.g. CompObj,
+ // OlePresXXX, but it seems, that they aren't neccessary
+ byte oleBytes[] = { 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
+ poiData.createDocument(new ByteArrayInputStream(oleBytes), OLESTREAM_NAME);
+ }
+
+ ByteArrayOutputStream bos = new ByteArrayOutputStream();
+ poiData.writeFilesystem(bos);
+ exOleObjStg.setData(bos.toByteArray());
+ } catch (IOException e) {
+ throw new HSLFException(e);
+ }
+
+ int psrId = addPersistentObject(exOleObjStg);
+ exOleObjStg.setPersistId(psrId);
+ eeAtom.setObjStgDataRef(psrId);
+
+ int objectId = addToObjListAtom(exEmbed);
+ eeAtom.setObjID(objectId);
+ return objectId;
+ }
+
+ protected int addToObjListAtom(RecordContainer exObj) {
+ ExObjList lst = (ExObjList) _documentRecord.findFirstOfType(RecordTypes.ExObjList.typeID);
+ if (lst == null) {
+ lst = new ExObjList();
+ _documentRecord.addChildAfter(lst, _documentRecord.getDocumentAtom());
+ }
+ ExObjListAtom objAtom = lst.getExObjListAtom();
+ // increment the object ID seed
+ int objectId = (int) objAtom.getObjectIDSeed() + 1;
+ objAtom.setObjectIDSeed(objectId);
+
+ lst.addChildAfter(exObj, objAtom);
+
+ return objectId;
+ }
+
+ protected static Map<String,ClassID> getOleMap() {
+ Map<String,ClassID> olemap = new HashMap<String,ClassID>();
+ olemap.put("PowerPoint Document", ClassID.PPT_SHOW);
+ olemap.put("Workbook", ClassID.EXCEL97); // as per BIFF8 spec
+ olemap.put("WORKBOOK", ClassID.EXCEL97); // Typically from third party programs
+ olemap.put("BOOK", ClassID.EXCEL97); // Typically odd Crystal Reports exports
+ // ... to be continued
+ return olemap;
+ }
+
+ protected int addPersistentObject(PositionDependentRecord slideRecord) {
+ slideRecord.setLastOnDiskOffset(HSLFSlideShowImpl.UNSET_OFFSET);
+ _hslfSlideShow.appendRootLevelRecord((Record)slideRecord);
+
+ // For position dependent records, hold where they were and now are
+ // As we go along, update, and hand over, to any Position Dependent
+ // records we happen across
+ Map<RecordTypes.Type,PositionDependentRecord> interestingRecords =
+ new HashMap<RecordTypes.Type,PositionDependentRecord>();
+
+ try {
+ _hslfSlideShow.updateAndWriteDependantRecords(null,interestingRecords);
+ } catch (IOException e) {
+ throw new HSLFException(e);
+ }
+
+ PersistPtrHolder ptr = (PersistPtrHolder)interestingRecords.get(RecordTypes.PersistPtrIncrementalBlock);
+ UserEditAtom usr = (UserEditAtom)interestingRecords.get(RecordTypes.UserEditAtom);
+
+ // persist ID is UserEditAtom.maxPersistWritten + 1
+ int psrId = usr.getMaxPersistWritten() + 1;
+
+ // Last view is now of the slide
+ usr.setLastViewType((short) UserEditAtom.LAST_VIEW_SLIDE_VIEW);
+ // increment the number of persistent objects
+ usr.setMaxPersistWritten(psrId);
+
+ // Add the new slide into the last PersistPtr
+ // (Also need to tell it where it is)
+ int slideOffset = slideRecord.getLastOnDiskOffset();
+ slideRecord.setLastOnDiskOffset(slideOffset);
+ ptr.addSlideLookup(psrId, slideOffset);
+ logger.log(POILogger.INFO, "New slide/object ended up at " + slideOffset);
+
+ return psrId;
+ }
+
+ public MasterSheet<? extends Shape, ? extends SlideShow> createMasterSheet()
+ throws IOException {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ public Resources getResources() {
+ // TODO Auto-generated method stub
+ return null;
+ }
+ }
--- /dev/null
-import org.apache.poi.ddf.*;
+ /* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ ==================================================================== */
+
+ package org.apache.poi.hslf.usermodel;
+
-import org.apache.poi.hslf.usermodel.*;
++import java.awt.Rectangle;
++import java.util.ArrayList;
++import java.util.Collections;
++import java.util.Comparator;
++import java.util.Iterator;
++import java.util.List;
++
++import org.apache.poi.ddf.EscherArrayProperty;
++import org.apache.poi.ddf.EscherContainerRecord;
++import org.apache.poi.ddf.EscherOptRecord;
++import org.apache.poi.ddf.EscherProperties;
++import org.apache.poi.ddf.EscherRecord;
++import org.apache.poi.ddf.EscherSimpleProperty;
++import org.apache.poi.ddf.EscherTextboxRecord;
+ import org.apache.poi.hslf.model.Line;
-
-import java.util.*;
-import java.util.List;
-import java.awt.*;
+ import org.apache.poi.sl.usermodel.ShapeContainer;
+ import org.apache.poi.sl.usermodel.TableShape;
+ import org.apache.poi.util.LittleEndian;
- int rowHeight = cell.getAnchor().height*MASTER_DPI/POINT_DPI;
++import org.apache.poi.util.Units;
+
+ /**
+ * Represents a table in a PowerPoint presentation
+ *
+ * @author Yegor Kozlov
+ */
+ public final class HSLFTable extends HSLFGroupShape implements TableShape {
+
+ protected static final int BORDER_TOP = 1;
+ protected static final int BORDER_RIGHT = 2;
+ protected static final int BORDER_BOTTOM = 3;
+ protected static final int BORDER_LEFT = 4;
+
+ protected static final int BORDERS_ALL = 5;
+ protected static final int BORDERS_OUTSIDE = 6;
+ protected static final int BORDERS_INSIDE = 7;
+ protected static final int BORDERS_NONE = 8;
+
+
+ protected HSLFTableCell[][] cells;
+
+ /**
+ * Create a new Table of the given number of rows and columns
+ *
+ * @param numrows the number of rows
+ * @param numcols the number of columns
+ */
+ public HSLFTable(int numrows, int numcols) {
+ super();
+
+ if(numrows < 1) throw new IllegalArgumentException("The number of rows must be greater than 1");
+ if(numcols < 1) throw new IllegalArgumentException("The number of columns must be greater than 1");
+
+ int x=0, y=0, tblWidth=0, tblHeight=0;
+ cells = new HSLFTableCell[numrows][numcols];
+ for (int i = 0; i < cells.length; i++) {
+ x = 0;
+ for (int j = 0; j < cells[i].length; j++) {
+ cells[i][j] = new HSLFTableCell(this);
+ Rectangle anchor = new Rectangle(x, y, HSLFTableCell.DEFAULT_WIDTH, HSLFTableCell.DEFAULT_HEIGHT);
+ cells[i][j].setAnchor(anchor);
+ x += HSLFTableCell.DEFAULT_WIDTH;
+ }
+ y += HSLFTableCell.DEFAULT_HEIGHT;
+ }
+ tblWidth = x;
+ tblHeight = y;
+ setAnchor(new Rectangle(0, 0, tblWidth, tblHeight));
+
+ EscherContainerRecord spCont = (EscherContainerRecord) getSpContainer().getChild(0);
+ EscherOptRecord opt = new EscherOptRecord();
+ opt.setRecordId((short)0xF122);
+ opt.addEscherProperty(new EscherSimpleProperty((short)0x39F, 1));
+ EscherArrayProperty p = new EscherArrayProperty((short)(0x4000 | 0x3A0), false, null);
+ p.setSizeOfElements(0x0004);
+ p.setNumberOfElementsInArray(numrows);
+ p.setNumberOfElementsInMemory(numrows);
+ opt.addEscherProperty(p);
+ List<EscherRecord> lst = spCont.getChildRecords();
+ lst.add(lst.size()-1, opt);
+ spCont.setChildRecords(lst);
+ }
+
+ /**
+ * Create a Table object and initilize it from the supplied Record container.
+ *
+ * @param escherRecord <code>EscherSpContainer</code> container which holds information about this shape
+ * @param parent the parent of the shape
+ */
+ public HSLFTable(EscherContainerRecord escherRecord, ShapeContainer<HSLFShape> parent) {
+ super(escherRecord, parent);
+ }
+
+ /**
+ * Gets a cell
+ *
+ * @param row the row index (0-based)
+ * @param col the column index (0-based)
+ * @return the cell
+ */
+ public HSLFTableCell getCell(int row, int col) {
+ return cells[row][col];
+ }
+
+ public int getNumberOfColumns() {
+ return cells[0].length;
+ }
+ public int getNumberOfRows() {
+ return cells.length;
+ }
+
+ protected void afterInsert(HSLFSheet sh){
+ super.afterInsert(sh);
+
+ EscherContainerRecord spCont = (EscherContainerRecord) getSpContainer().getChild(0);
+ List<EscherRecord> lst = spCont.getChildRecords();
+ EscherOptRecord opt = (EscherOptRecord)lst.get(lst.size()-2);
+ EscherArrayProperty p = opt.lookup(0x3A0);
+ for (int i = 0; i < cells.length; i++) {
+ HSLFTableCell cell = cells[i][0];
++ int rowHeight = Units.pointsToMaster(cell.getAnchor().height);
+ byte[] val = new byte[4];
+ LittleEndian.putInt(val, 0, rowHeight);
+ p.setElement(i, val);
+ for (int j = 0; j < cells[i].length; j++) {
+ HSLFTableCell c = cells[i][j];
+ addShape(c);
+
+ Line bt = c.getBorderTop();
+ if(bt != null) addShape(bt);
+
+ Line br = c.getBorderRight();
+ if(br != null) addShape(br);
+
+ Line bb = c.getBorderBottom();
+ if(bb != null) addShape(bb);
+
+ Line bl = c.getBorderLeft();
+ if(bl != null) addShape(bl);
+
+ }
+ }
+
+ }
+
+ protected void initTable(){
+ List<HSLFShape> shapeList = getShapeList();
+
+ Iterator<HSLFShape> shapeIter = shapeList.iterator();
+ while (shapeIter.hasNext()) {
+ HSLFShape shape = shapeIter.next();
+ if (shape instanceof HSLFAutoShape) {
+ HSLFAutoShape autoShape = (HSLFAutoShape)shape;
+ EscherTextboxRecord etr = autoShape.getEscherChild(EscherTextboxRecord.RECORD_ID);
+ if (etr != null) continue;
+ }
+ shapeIter.remove();
+ }
+
+ Collections.sort(shapeList, new Comparator<HSLFShape>(){
+ public int compare( HSLFShape o1, HSLFShape o2 ) {
+ Rectangle anchor1 = o1.getAnchor();
+ Rectangle anchor2 = o2.getAnchor();
+ int delta = anchor1.y - anchor2.y;
+ if (delta == 0) delta = anchor1.x - anchor2.x;
+ // descending size
+ if (delta == 0) delta = (anchor2.width*anchor2.height)-(anchor1.width*anchor1.height);
+ return delta;
+ }
+ });
+
+ int y0 = (shapeList.isEmpty()) ? -1 : shapeList.get(0).getAnchor().y - 1;
+ int maxrowlen = 0;
+ List<List<HSLFShape>> lst = new ArrayList<List<HSLFShape>>();
+ List<HSLFShape> row = null;
+ for (HSLFShape sh : shapeList) {
+ if(sh instanceof HSLFTextShape){
+ Rectangle anchor = sh.getAnchor();
+ if(anchor.y != y0){
+ y0 = anchor.y;
+ row = new ArrayList<HSLFShape>();
+ lst.add(row);
+ }
+ row.add(sh);
+ maxrowlen = Math.max(maxrowlen, row.size());
+ }
+ }
+ cells = new HSLFTableCell[lst.size()][maxrowlen];
+ for (int i = 0; i < lst.size(); i++) {
+ row = lst.get(i);
+ for (int j = 0; j < row.size(); j++) {
+ HSLFTextShape tx = (HSLFTextShape)row.get(j);
+ cells[i][j] = new HSLFTableCell(tx.getSpContainer(), getParent());
+ cells[i][j].setSheet(tx.getSheet());
+ }
+ }
+ }
+
+ /**
+ * Assign the <code>SlideShow</code> this shape belongs to
+ *
+ * @param sheet owner of this shape
+ */
+ public void setSheet(HSLFSheet sheet){
+ super.setSheet(sheet);
+ if(cells == null) initTable();
+ }
+
+ /**
+ * Sets the row height.
+ *
+ * @param row the row index (0-based)
+ * @param height the height to set (in pixels)
+ */
+ public void setRowHeight(int row, int height){
+ int currentHeight = cells[row][0].getAnchor().height;
+ int dy = height - currentHeight;
+
+ for (int i = row; i < cells.length; i++) {
+ for (int j = 0; j < cells[i].length; j++) {
+ Rectangle anchor = cells[i][j].getAnchor();
+ if(i == row) anchor.height = height;
+ else anchor.y += dy;
+ cells[i][j].setAnchor(anchor);
+ }
+ }
+ Rectangle tblanchor = getAnchor();
+ tblanchor.height += dy;
+ setAnchor(tblanchor);
+
+ }
+
+ /**
+ * Sets the column width.
+ *
+ * @param col the column index (0-based)
+ * @param width the width to set (in pixels)
+ */
+ public void setColumnWidth(int col, int width){
+ int currentWidth = cells[0][col].getAnchor().width;
+ int dx = width - currentWidth;
+ for (int i = 0; i < cells.length; i++) {
+ Rectangle anchor = cells[i][col].getAnchor();
+ anchor.width = width;
+ cells[i][col].setAnchor(anchor);
+
+ if(col < cells[i].length - 1) for (int j = col+1; j < cells[i].length; j++) {
+ anchor = cells[i][j].getAnchor();
+ anchor.x += dx;
+ cells[i][j].setAnchor(anchor);
+ }
+ }
+ Rectangle tblanchor = getAnchor();
+ tblanchor.width += dx;
+ setAnchor(tblanchor);
+ }
+
+ /**
+ * Format the table and apply the specified Line to all cell boundaries,
+ * both outside and inside
+ *
+ * @param line the border line
+ */
+ public void setAllBorders(Line line){
+ for (int i = 0; i < cells.length; i++) {
+ for (int j = 0; j < cells[i].length; j++) {
+ HSLFTableCell cell = cells[i][j];
+ cell.setBorderTop(cloneBorder(line));
+ cell.setBorderLeft(cloneBorder(line));
+ if(j == cells[i].length - 1) cell.setBorderRight(cloneBorder(line));
+ if(i == cells.length - 1) cell.setBorderBottom(cloneBorder(line));
+ }
+ }
+ }
+
+ /**
+ * Format the outside border using the specified Line object
+ *
+ * @param line the border line
+ */
+ public void setOutsideBorders(Line line){
+ for (int i = 0; i < cells.length; i++) {
+ for (int j = 0; j < cells[i].length; j++) {
+ HSLFTableCell cell = cells[i][j];
+
+ if(j == 0) cell.setBorderLeft(cloneBorder(line));
+ if(j == cells[i].length - 1) cell.setBorderRight(cloneBorder(line));
+ else {
+ cell.setBorderLeft(null);
+ cell.setBorderLeft(null);
+ }
+
+ if(i == 0) cell.setBorderTop(cloneBorder(line));
+ else if(i == cells.length - 1) cell.setBorderBottom(cloneBorder(line));
+ else {
+ cell.setBorderTop(null);
+ cell.setBorderBottom(null);
+ }
+ }
+ }
+ }
+
+ /**
+ * Format the inside border using the specified Line object
+ *
+ * @param line the border line
+ */
+ public void setInsideBorders(Line line){
+ for (int i = 0; i < cells.length; i++) {
+ for (int j = 0; j < cells[i].length; j++) {
+ HSLFTableCell cell = cells[i][j];
+
+ if(j != cells[i].length - 1)
+ cell.setBorderRight(cloneBorder(line));
+ else {
+ cell.setBorderLeft(null);
+ cell.setBorderLeft(null);
+ }
+ if(i != cells.length - 1) cell.setBorderBottom(cloneBorder(line));
+ else {
+ cell.setBorderTop(null);
+ cell.setBorderBottom(null);
+ }
+ }
+ }
+ }
+
+ private Line cloneBorder(Line line){
+ Line border = createBorder();
+ border.setLineWidth(line.getLineWidth());
+ border.setLineDashing(line.getLineDashing());
+ border.setLineColor(line.getLineColor());
+ border.setLineCompound(line.getLineCompound());
+ return border;
+ }
+
+ /**
+ * Create a border to format this table
+ *
+ * @return the created border
+ */
+ public Line createBorder(){
+ Line line = new Line(this);
+
+ EscherOptRecord opt = getEscherOptRecord();
+ setEscherProperty(opt, EscherProperties.GEOMETRY__SHAPEPATH, -1);
+ setEscherProperty(opt, EscherProperties.GEOMETRY__FILLOK, -1);
+ setEscherProperty(opt, EscherProperties.SHADOWSTYLE__SHADOWOBSURED, 0x20000);
+ setEscherProperty(opt, EscherProperties.THREED__LIGHTFACE, 0x80000);
+
+ return line;
+ }
+ }
--- /dev/null
- EscherOptRecord opt = getEscherOptRecord();
- EscherSimpleProperty prop = getEscherProperty(opt, EscherProperties.TEXT__TEXTBOTTOM);
- int val = prop == null ? EMU_PER_INCH/20 : prop.getPropertyValue();
- return val/EMU_PER_POINT;
+ /* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ ==================================================================== */
+
+ package org.apache.poi.hslf.usermodel;
+
+ import static org.apache.poi.hslf.record.RecordTypes.*;
+
+ import java.awt.Rectangle;
+ import java.awt.font.FontRenderContext;
+ import java.awt.geom.Rectangle2D;
+ import java.io.IOException;
+ import java.util.*;
+
+ import org.apache.poi.ddf.*;
+ import org.apache.poi.hslf.exceptions.HSLFException;
+ import org.apache.poi.hslf.record.*;
+ import org.apache.poi.sl.draw.DrawFactory;
+ import org.apache.poi.sl.draw.DrawTextShape;
+ import org.apache.poi.sl.usermodel.*;
+ import org.apache.poi.util.POILogger;
++import org.apache.poi.util.Units;
+
+ /**
+ * A common superclass of all shapes that can hold text.
+ *
+ * @author Yegor Kozlov
+ */
+ public abstract class HSLFTextShape extends HSLFSimpleShape implements TextShape<HSLFTextParagraph> {
+
+ /**
+ * How to anchor the text
+ */
+ /* package */ static final int AnchorTop = 0;
+ /* package */ static final int AnchorMiddle = 1;
+ /* package */ static final int AnchorBottom = 2;
+ /* package */ static final int AnchorTopCentered = 3;
+ /* package */ static final int AnchorMiddleCentered = 4;
+ /* package */ static final int AnchorBottomCentered = 5;
+ /* package */ static final int AnchorTopBaseline = 6;
+ /* package */ static final int AnchorBottomBaseline = 7;
+ /* package */ static final int AnchorTopCenteredBaseline = 8;
+ /* package */ static final int AnchorBottomCenteredBaseline = 9;
+
+ /**
+ * How to wrap the text
+ */
+ public static final int WrapSquare = 0;
+ public static final int WrapByPoints = 1;
+ public static final int WrapNone = 2;
+ public static final int WrapTopBottom = 3;
+ public static final int WrapThrough = 4;
+
+ /**
+ * TextRun object which holds actual text and format data
+ */
+ protected List<HSLFTextParagraph> _paragraphs = new ArrayList<HSLFTextParagraph>();
+
+ /**
+ * Escher container which holds text attributes such as
+ * TextHeaderAtom, TextBytesAtom ot TextCharsAtom, StyleTextPropAtom etc.
+ */
+ protected EscherTextboxWrapper _txtbox;
+
+ /**
+ * This setting is used for supporting a deprecated alignment
+ *
+ * @see <a href=""></a>
+ */
+ boolean alignToBaseline = false;
+
+ /**
+ * Used to calculate text bounds
+ */
+ protected static final FontRenderContext _frc = new FontRenderContext(null, true, true);
+
+ /**
+ * Create a TextBox object and initialize it from the supplied Record container.
+ *
+ * @param escherRecord <code>EscherSpContainer</code> container which holds information about this shape
+ * @param parent the parent of the shape
+ */
+ protected HSLFTextShape(EscherContainerRecord escherRecord, ShapeContainer<HSLFShape> parent){
+ super(escherRecord, parent);
+
+ }
+
+ /**
+ * Create a new TextBox. This constructor is used when a new shape is created.
+ *
+ * @param parent the parent of this Shape. For example, if this text box is a cell
+ * in a table then the parent is Table.
+ */
+ public HSLFTextShape(ShapeContainer<HSLFShape> parent){
+ super(null, parent);
+ _escherContainer = createSpContainer(parent instanceof HSLFGroupShape);
+ }
+
+ /**
+ * Create a new TextBox. This constructor is used when a new shape is created.
+ *
+ */
+ public HSLFTextShape(){
+ this(null);
+ }
+
+ /**
+ * Set default properties for the TextRun.
+ * Depending on the text and shape type the defaults are different:
+ * TextBox: align=left, valign=top
+ * AutoShape: align=center, valign=middle
+ *
+ */
+ protected void setDefaultTextProperties(HSLFTextParagraph _txtrun){
+
+ }
+
+ /**
+ * When a textbox is added to a sheet we need to tell upper-level
+ * <code>PPDrawing</code> about it.
+ *
+ * @param sh the sheet we are adding to
+ */
+ protected void afterInsert(HSLFSheet sh){
+ super.afterInsert(sh);
+
+ storeText();
+
+ EscherTextboxWrapper _txtbox = getEscherTextboxWrapper();
+ if(_txtbox != null){
+ _escherContainer.addChildRecord(_txtbox.getEscherRecord());
+
+ PPDrawing ppdrawing = sh.getPPDrawing();
+ ppdrawing.addTextboxWrapper(_txtbox);
+ // Ensure the escher layer knows about the added records
+ try {
+ _txtbox.writeOut(null);
+ } catch (IOException e){
+ throw new HSLFException(e);
+ }
+ if(getAnchor().equals(new Rectangle()) && !"".equals(getText())) resizeToFitText();
+ }
+ for (HSLFTextParagraph htp : _paragraphs) {
+ htp.setShapeId(getShapeId());
+ }
+ sh.onAddTextShape(this);
+ }
+
+ protected EscherTextboxWrapper getEscherTextboxWrapper(){
+ if(_txtbox != null) return _txtbox;
+
+ EscherTextboxRecord textRecord = getEscherChild(EscherTextboxRecord.RECORD_ID);
+ if (textRecord == null) return null;
+
+ HSLFSheet sheet = getSheet();
+ if (sheet != null) {
+ PPDrawing drawing = sheet.getPPDrawing();
+ if (drawing != null) {
+ EscherTextboxWrapper wrappers[] = drawing.getTextboxWrappers();
+ if (wrappers != null) {
+ for (EscherTextboxWrapper w : wrappers) {
+ // check for object identity
+ if (textRecord == w.getEscherRecord()) {
+ _txtbox = w;
+ return _txtbox;
+ }
+ }
+ }
+ }
+ }
+
+ _txtbox = new EscherTextboxWrapper(textRecord);
+ return _txtbox;
+ }
+
+ /**
+ * Adjust the size of the shape so it encompasses the text inside it.
+ *
+ * @return a <code>Rectangle2D</code> that is the bounds of this shape.
+ */
+ public Rectangle2D resizeToFitText(){
+ Rectangle2D anchor = getAnchor();
+ if(anchor.getWidth() == 0.) {
+ logger.log(POILogger.WARN, "Width of shape wasn't set. Defaulting to 200px");
+ anchor = new Rectangle2D.Double(anchor.getX(), anchor.getY(), 200, anchor.getHeight());
+ setAnchor(anchor);
+ }
+ double height = getTextHeight();
+ height += 1; // add a pixel to compensate rounding errors
+
+ anchor.setRect(anchor.getX(), anchor.getY(), anchor.getWidth(), height);
+ setAnchor(anchor);
+
+ return anchor;
+ }
+
+ /**
+ * Returns the type of the text, from the TextHeaderAtom.
+ * Possible values can be seen from TextHeaderAtom
+ * @see org.apache.poi.hslf.record.TextHeaderAtom
+ */
+ public int getRunType() {
+ getEscherTextboxWrapper();
+ if (_txtbox == null) return -1;
+ List<HSLFTextParagraph> paras = HSLFTextParagraph.findTextParagraphs(_txtbox, getSheet());
+ return (paras.isEmpty()) ? -1 : paras.get(0).getRunType();
+ }
+
+ /**
+ * Changes the type of the text. Values should be taken
+ * from TextHeaderAtom. No checking is done to ensure you
+ * set this to a valid value!
+ * @see org.apache.poi.hslf.record.TextHeaderAtom
+ */
+ public void setRunType(int type) {
+ getEscherTextboxWrapper();
+ if (_txtbox == null) return;
+ List<HSLFTextParagraph> paras = HSLFTextParagraph.findTextParagraphs(_txtbox, getSheet());
+ if (!paras.isEmpty()) {
+ paras.get(0).setRunType(type);
+ }
+ }
+
+ /**
+ * Returns the type of vertical alignment for the text.
+ * One of the <code>Anchor*</code> constants defined in this class.
+ *
+ * @return the type of alignment
+ */
+ /* package */ int getAlignment(){
+ EscherOptRecord opt = getEscherOptRecord();
+ EscherSimpleProperty prop = getEscherProperty(opt, EscherProperties.TEXT__ANCHORTEXT);
+ int align = HSLFTextShape.AnchorTop;
+ if (prop == null){
+ /**
+ * If vertical alignment was not found in the shape properties then try to
+ * fetch the master shape and search for the align property there.
+ */
+ int type = getRunType();
+ if(getSheet() != null && getSheet().getMasterSheet() != null){
+ HSLFMasterSheet master = getSheet().getMasterSheet();
+ HSLFTextShape masterShape = master.getPlaceholderByTextType(type);
+ if(masterShape != null) align = masterShape.getAlignment();
+ } else {
+ //not found in the master sheet. Use the hardcoded defaults.
+ switch (type){
+ case org.apache.poi.hslf.record.TextHeaderAtom.TITLE_TYPE:
+ case org.apache.poi.hslf.record.TextHeaderAtom.CENTER_TITLE_TYPE:
+ align = HSLFTextShape.AnchorMiddle;
+ break;
+ default:
+ align = HSLFTextShape.AnchorTop;
+ break;
+ }
+ }
+ } else {
+ align = prop.getPropertyValue();
+ }
+
+ alignToBaseline = (align == AnchorBottomBaseline || align == AnchorBottomCenteredBaseline
+ || align == AnchorTopBaseline || align == AnchorTopCenteredBaseline);
+
+ return align;
+ }
+
+ /**
+ * Sets the type of alignment for the text.
+ * One of the <code>Anchor*</code> constants defined in this class.
+ *
+ * @param align - the type of alignment
+ */
+ /* package */ void setAlignment(Boolean isCentered, VerticalAlignment vAlign) {
+ int align[];
+ switch (vAlign) {
+ case TOP:
+ align = new int[]{AnchorTop, AnchorTopCentered, AnchorTopBaseline, AnchorTopCenteredBaseline};
+ break;
+ default:
+ case MIDDLE:
+ align = new int[]{AnchorMiddle, AnchorMiddleCentered, AnchorMiddle, AnchorMiddleCentered};
+ break;
+ case BOTTOM:
+ align = new int[]{AnchorBottom, AnchorBottomCentered, AnchorBottomBaseline, AnchorBottomCenteredBaseline};
+ break;
+ }
+
+ int align2 = align[(isCentered ? 1 : 0)+(alignToBaseline ? 2 : 0)];
+
+ setEscherProperty(EscherProperties.TEXT__ANCHORTEXT, align2);
+ }
+
+ @Override
+ public VerticalAlignment getVerticalAlignment() {
+ int va = getAlignment();
+ switch (va) {
+ case AnchorTop:
+ case AnchorTopCentered:
+ case AnchorTopBaseline:
+ case AnchorTopCenteredBaseline: return VerticalAlignment.TOP;
+ case AnchorBottom:
+ case AnchorBottomCentered:
+ case AnchorBottomBaseline:
+ case AnchorBottomCenteredBaseline: return VerticalAlignment.BOTTOM;
+ default:
+ case AnchorMiddle:
+ case AnchorMiddleCentered: return VerticalAlignment.MIDDLE;
+ }
+ }
+
+ /**
+ * @return true, if vertical alignment is relative to baseline
+ * this is only used for older versions less equals Office 2003
+ */
+ public boolean isAlignToBaseline() {
+ getAlignment();
+ return alignToBaseline;
+ }
+
+ /**
+ * Sets the vertical alignment relative to the baseline
+ *
+ * @param alignToBaseline if true, vertical alignment is relative to baseline
+ */
+ public void setAlignToBaseline(boolean alignToBaseline) {
+ this.alignToBaseline = alignToBaseline;
+ setAlignment(isHorizontalCentered(), getVerticalAlignment());
+ }
+
+ @Override
+ public boolean isHorizontalCentered() {
+ int va = getAlignment();
+ switch (va) {
+ case AnchorTopCentered:
+ case AnchorTopCenteredBaseline:
+ case AnchorBottomCentered:
+ case AnchorBottomCenteredBaseline:
+ case AnchorMiddleCentered:
+ return true;
+ default:
+ return false;
+ }
+ }
+
+ public void setVerticalAlignment(VerticalAlignment vAlign) {
+ setAlignment(isHorizontalCentered(), vAlign);
+ }
+
+ /**
+ * Sets if the paragraphs are horizontal centered
+ *
+ * @param isCentered true, if the paragraphs are horizontal centered
+ * A {@code null} values unsets this property.
+ *
+ * @see TextShape#isHorizontalCentered()
+ */
+ public void setHorizontalCentered(Boolean isCentered){
+ setAlignment(isCentered, getVerticalAlignment());
+ }
+
+ /**
+ * Returns the distance (in points) between the bottom of the text frame
+ * and the bottom of the inscribed rectangle of the shape that contains the text.
+ * Default value is 1/20 inch.
+ *
+ * @return the botom margin
+ */
+ public double getBottomInset(){
- setEscherProperty(EscherProperties.TEXT__TEXTBOTTOM, (int)(margin*EMU_PER_POINT));
++ return getInset(EscherProperties.TEXT__TEXTBOTTOM, .05);
+ }
+
+ /**
+ * Sets the botom margin.
+ * @see #getBottomInset()
+ *
+ * @param margin the bottom margin
+ */
+ public void setBottomInset(double margin){
- EscherOptRecord opt = getEscherOptRecord();
- EscherSimpleProperty prop = getEscherProperty(opt, EscherProperties.TEXT__TEXTLEFT);
- int val = prop == null ? EMU_PER_INCH/10 : prop.getPropertyValue();
- return val/EMU_PER_POINT;
++ setInset(EscherProperties.TEXT__TEXTBOTTOM, margin);
+ }
+
+ /**
+ * Returns the distance (in points) between the left edge of the text frame
+ * and the left edge of the inscribed rectangle of the shape that contains
+ * the text.
+ * Default value is 1/10 inch.
+ *
+ * @return the left margin
+ */
+ public double getLeftInset(){
- setEscherProperty(EscherProperties.TEXT__TEXTLEFT, (int)(margin*EMU_PER_POINT));
++ return getInset(EscherProperties.TEXT__TEXTLEFT, .1);
+ }
+
+ /**
+ * Sets the left margin.
+ * @see #getLeftInset()
+ *
+ * @param margin the left margin
+ */
+ public void setLeftInset(double margin){
- EscherOptRecord opt = getEscherOptRecord();
- EscherSimpleProperty prop = getEscherProperty(opt, EscherProperties.TEXT__TEXTRIGHT);
- int val = prop == null ? EMU_PER_INCH/10 : prop.getPropertyValue();
- return val/EMU_PER_POINT;
++ setInset(EscherProperties.TEXT__TEXTLEFT, margin);
+ }
+
+ /**
+ * Returns the distance (in points) between the right edge of the
+ * text frame and the right edge of the inscribed rectangle of the shape
+ * that contains the text.
+ * Default value is 1/10 inch.
+ *
+ * @return the right margin
+ */
+ public double getRightInset(){
- setEscherProperty(EscherProperties.TEXT__TEXTRIGHT, (int)(margin*EMU_PER_POINT));
++ return getInset(EscherProperties.TEXT__TEXTRIGHT, .1);
+ }
+
+ /**
+ * Sets the right margin.
+ * @see #getRightInset()
+ *
+ * @param margin the right margin
+ */
+ public void setRightInset(double margin){
- EscherOptRecord opt = getEscherOptRecord();
- EscherSimpleProperty prop = getEscherProperty(opt, EscherProperties.TEXT__TEXTTOP);
- int val = prop == null ? EMU_PER_INCH/20 : prop.getPropertyValue();
- return val/EMU_PER_POINT;
++ setInset(EscherProperties.TEXT__TEXTRIGHT, margin);
+ }
+
+ /**
+ * Returns the distance (in points) between the top of the text frame
+ * and the top of the inscribed rectangle of the shape that contains the text.
+ * Default value is 1/20 inch.
+ *
+ * @return the top margin
+ */
+ public double getTopInset(){
- setEscherProperty(EscherProperties.TEXT__TEXTTOP, (int)(margin*EMU_PER_POINT));
++ return getInset(EscherProperties.TEXT__TEXTTOP, .05);
+ }
+
+ /**
+ * Sets the top margin.
+ * @see #getTopInset()
+ *
+ * @param margin the top margin
+ */
+ public void setTopInset(double margin){
++ setInset(EscherProperties.TEXT__TEXTTOP, margin);
++ }
++
++ /**
++ * Returns the distance (in points) between the edge of the text frame
++ * and the edge of the inscribed rectangle of the shape that contains the text.
++ * Default value is 1/20 inch.
++ *
++ * @param propId the id of the inset edge
++ * @return the inset in points
++ */
++ private double getInset(short propId, double defaultInch) {
++ EscherOptRecord opt = getEscherOptRecord();
++ EscherSimpleProperty prop = getEscherProperty(opt, propId);
++ int val = prop == null ? (int)(Units.toEMU(Units.POINT_DPI)*defaultInch) : prop.getPropertyValue();
++ return Units.toPoints(val);
+ }
+
++ /**
++ * @param propId the id of the inset edge
++ * @param margin the inset in points
++ */
++ private void setInset(short propId, double margin){
++ setEscherProperty(propId, Units.toEMU(margin));
++ }
++
+ @Override
+ public boolean getWordWrap(){
+ int ww = getWordWrapEx();
+ return (ww != WrapNone);
+ }
+
+ /**
+ * Returns the value indicating word wrap.
+ *
+ * @return the value indicating word wrap.
+ * Must be one of the <code>Wrap*</code> constants defined in this class.
+ *
+ * @see <a href="https://msdn.microsoft.com/en-us/library/dd948168(v=office.12).aspx">MSOWRAPMODE</a>
+ */
+ public int getWordWrapEx() {
+ EscherOptRecord opt = getEscherOptRecord();
+ EscherSimpleProperty prop = getEscherProperty(opt, EscherProperties.TEXT__WRAPTEXT);
+ return prop == null ? WrapSquare : prop.getPropertyValue();
+ }
+
+ /**
+ * Specifies how the text should be wrapped
+ *
+ * @param wrap the value indicating how the text should be wrapped.
+ * Must be one of the <code>Wrap*</code> constants defined in this class.
+ */
+ public void setWordWrap(int wrap){
+ setEscherProperty(EscherProperties.TEXT__WRAPTEXT, wrap);
+ }
+
+ /**
+ * @return id for the text.
+ */
+ public int getTextId(){
+ EscherOptRecord opt = getEscherOptRecord();
+ EscherSimpleProperty prop = getEscherProperty(opt, EscherProperties.TEXT__TEXTID);
+ return prop == null ? 0 : prop.getPropertyValue();
+ }
+
+ /**
+ * Sets text ID
+ *
+ * @param id of the text
+ */
+ public void setTextId(int id){
+ setEscherProperty(EscherProperties.TEXT__TEXTID, id);
+ }
+
+ /**
+ * @return the TextParagraphs for this text box
+ */
+ public List<HSLFTextParagraph> getTextParagraphs(){
+ if (!_paragraphs.isEmpty()) return _paragraphs;
+
+ _txtbox = getEscherTextboxWrapper();
+ if (_txtbox == null) {
+ _paragraphs.addAll(HSLFTextParagraph.createEmptyParagraph());
+ _txtbox = _paragraphs.get(0).getTextboxWrapper();
+ } else {
+ _paragraphs = HSLFTextParagraph.findTextParagraphs(_txtbox, getSheet());
+ if (_paragraphs == null) {
+ // there are actually TextBoxRecords without extra data - see #54722
+ _paragraphs = HSLFTextParagraph.createEmptyParagraph(_txtbox);
+ }
+
+ if (_paragraphs.isEmpty()) {
+ logger.log(POILogger.WARN, "TextRecord didn't contained any text lines");
+ }
+ // initParagraphsFromSheetRecords();
+ // if (_paragraphs.isEmpty()) {
+ // List<List<HSLFTextParagraph>> llhtp = HSLFTextParagraph.findTextParagraphs(_txtbox);
+ // if (!llhtp.isEmpty()) {
+ // _paragraphs.addAll(llhtp.get(0));
+ // }
+ // }
+ }
+
+ for (HSLFTextParagraph p : _paragraphs) {
+ p.setParentShape(this);
+ }
+
+ return _paragraphs;
+ }
+
+ public void setSheet(HSLFSheet sheet) {
+ _sheet = sheet;
+
+ // Initialize _txtrun object.
+ // (We can't do it in the constructor because the sheet
+ // is not assigned then, it's only built once we have
+ // all the records)
+ List<HSLFTextParagraph> paras = getTextParagraphs();
+ if (paras != null) {
+ for (HSLFTextParagraph htp : paras) {
+ // Supply the sheet to our child RichTextRuns
+ htp.supplySheet(_sheet);
+ }
+ }
+ }
+
+ // protected void initParagraphsFromSheetRecords(){
+ // EscherTextboxWrapper txtbox = getEscherTextboxWrapper();
+ // HSLFSheet sheet = getSheet();
+ //
+ // if (sheet == null || txtbox == null) return;
+ // List<List<HSLFTextParagraph>> sheetRuns = _sheet.getTextParagraphs();
+ // if (sheetRuns == null) return;
+ //
+ // _paragraphs.clear();
+ // OutlineTextRefAtom ota = (OutlineTextRefAtom)txtbox.findFirstOfType(OutlineTextRefAtom.typeID);
+ //
+ // if (ota != null) {
+ // int idx = ota.getTextIndex();
+ // for (List<HSLFTextParagraph> r : sheetRuns) {
+ // if (r.isEmpty()) continue;
+ // int ridx = r.get(0).getIndex();
+ // if (ridx > idx) break;
+ // if (ridx == idx) _paragraphs.addAll(r);
+ // }
+ // if(_paragraphs.isEmpty()) {
+ // logger.log(POILogger.WARN, "text run not found for OutlineTextRefAtom.TextIndex=" + idx);
+ // }
+ // } else {
+ // int shapeId = getShapeId();
+ // for (List<HSLFTextParagraph> r : sheetRuns) {
+ // if (r.isEmpty()) continue;
+ // if (r.get(0).getShapeId() == shapeId) _paragraphs.addAll(r);
+ // }
+ // }
+ //
+ // // ensure the same references child records of TextRun - see #48916
+ //// if(_txtrun != null) {
+ //// for (int i = 0; i < child.length; i++) {
+ //// for (Record r : _txtrun.getRecords()) {
+ //// if (child[i].getRecordType() == r.getRecordType()) {
+ //// child[i] = r;
+ //// }
+ //// }
+ //// }
+ //// }
+ // }
+
+ /*
+ // 0xB acts like cariage return in page titles and like blank in the others
+ char replChr;
+ switch(tha == null ? -1 : tha.getTextType()) {
+ case -1:
+ case TextHeaderAtom.TITLE_TYPE:
+ case TextHeaderAtom.CENTER_TITLE_TYPE:
+ replChr = '\n';
+ break;
+ default:
+ replChr = ' ';
+ break;
+ }
+
+ // PowerPoint seems to store files with \r as the line break
+ // The messes things up on everything but a Mac, so translate
+ // them to \n
+ String text = rawText.replace('\r','\n').replace('\u000b', replChr);
+ */
+
+ /**
+ * Return <code>OEPlaceholderAtom</code>, the atom that describes a placeholder.
+ *
+ * @return <code>OEPlaceholderAtom</code> or <code>null</code> if not found
+ */
+ public OEPlaceholderAtom getPlaceholderAtom(){
+ return getClientDataRecord(OEPlaceholderAtom.typeID);
+ }
+
+ /**
+ *
+ * Assigns a hyperlink to this text shape
+ *
+ * @param linkId id of the hyperlink, @see org.apache.poi.hslf.usermodel.SlideShow#addHyperlink(Hyperlink)
+ * @param beginIndex the beginning index, inclusive.
+ * @param endIndex the ending index, exclusive.
+ * @see org.apache.poi.hslf.usermodel.HSLFSlideShow#addHyperlink(HSLFHyperlink)
+ */
+ public void setHyperlink(int linkId, int beginIndex, int endIndex){
+ //TODO validate beginIndex and endIndex and throw IllegalArgumentException
+
+ InteractiveInfo info = new InteractiveInfo();
+ InteractiveInfoAtom infoAtom = info.getInteractiveInfoAtom();
+ infoAtom.setAction(org.apache.poi.hslf.record.InteractiveInfoAtom.ACTION_HYPERLINK);
+ infoAtom.setHyperlinkType(org.apache.poi.hslf.record.InteractiveInfoAtom.LINK_Url);
+ infoAtom.setHyperlinkID(linkId);
+
+ _txtbox.appendChildRecord(info);
+
+ TxInteractiveInfoAtom txiatom = new TxInteractiveInfoAtom();
+ txiatom.setStartIndex(beginIndex);
+ txiatom.setEndIndex(endIndex);
+ _txtbox.appendChildRecord(txiatom);
+
+ }
+
+ @Override
+ public boolean isPlaceholder() {
+ OEPlaceholderAtom oep = getPlaceholderAtom();
+ if (oep != null) return true;
+
+ //special case for files saved in Office 2007
+ RoundTripHFPlaceholder12 hldr = getClientDataRecord(RoundTripHFPlaceholder12.typeID);
+ if (hldr != null) return true;
+
+ return false;
+ }
+
+
+ @Override
+ public Iterator<HSLFTextParagraph> iterator() {
+ return _paragraphs.iterator();
+ }
+
+ @Override
+ public Insets2D getInsets() {
+ Insets2D insets = new Insets2D(getTopInset(), getLeftInset(), getBottomInset(), getRightInset());
+ return insets;
+ }
+
+ @Override
+ public double getTextHeight(){
+ DrawFactory drawFact = DrawFactory.getInstance(null);
+ DrawTextShape<HSLFTextShape> dts = drawFact.getDrawable(this);
+ return dts.getTextHeight();
+ }
+
+ @Override
+ public TextDirection getTextDirection() {
+ // TODO: determine vertical text setting
+ return TextDirection.HORIZONTAL;
+ }
+
+ /**
+ * Returns the raw text content of the shape. This hasn't had any
+ * changes applied to it, and so is probably unlikely to print
+ * out nicely.
+ */
+ public String getRawText() {
+ return HSLFTextParagraph.getRawText(getTextParagraphs());
+ }
+
+ /**
+ * Returns the text contained in this text frame, which has been made safe
+ * for printing and other use.
+ *
+ * @return the text string for this textbox.
+ */
+ public String getText() {
+ String rawText = getRawText();
+ return HSLFTextParagraph.toExternalString(rawText, getRunType());
+ }
+
+
+ // Update methods follow
+
+ /**
+ * Adds the supplied text onto the end of the TextParagraphs,
+ * creating a new RichTextRun for it to sit in.
+ *
+ * @param text the text string used by this object.
+ */
+ public HSLFTextRun appendText(String text, boolean newParagraph) {
+ // init paragraphs
+ List<HSLFTextParagraph> paras = getTextParagraphs();
+ return HSLFTextParagraph.appendText(paras, text, newParagraph);
+ }
+
+ /**
+ * Sets (overwrites) the current text.
+ * Uses the properties of the first paragraph / textrun
+ *
+ * @param text the text string used by this object.
+ *
+ * @return the last text run of the splitted text
+ */
+ public HSLFTextRun setText(String text) {
+ // init paragraphs
+ List<HSLFTextParagraph> paras = getTextParagraphs();
+ HSLFTextRun htr = HSLFTextParagraph.setText(paras, text);
+ setTextId(text.hashCode());
+ return htr;
+ }
+
+ /**
+ * Saves the modified paragraphs/textrun to the records.
+ * Also updates the styles to the correct text length.
+ */
+ protected void storeText() {
+ List<HSLFTextParagraph> paras = getTextParagraphs();
+ HSLFTextParagraph.storeText(paras);
+ }
+ // Accesser methods follow
+
+ /**
+ * Returns the array of all hyperlinks in this text run
+ *
+ * @return the array of all hyperlinks in this text run or <code>null</code>
+ * if not found.
+ */
+ public List<HSLFHyperlink> getHyperlinks() {
+ return HSLFHyperlink.find(this);
+ }
+
+
+ }
path1.lineTo(100, 200);
path1.closePath();
- Freeform p = new Freeform();
+ HSLFFreeformShape p = new HSLFFreeformShape();
p.setPath(path1);
-- java.awt.Shape path2 = p.getOutline();
++ java.awt.Shape path2 = p.getPath();
assertTrue(new Area(path1).equals(new Area(path2)));
}
GeneralPath path1 = new GeneralPath(new Line2D.Double(100, 100, 200, 100));
- Freeform p = new Freeform();
+ HSLFFreeformShape p = new HSLFFreeformShape();
p.setPath(path1);
-- java.awt.Shape path2 = p.getOutline();
++ java.awt.Shape path2 = p.getPath();
assertTrue(new Area(path1).equals(new Area(path2)));
}
GeneralPath path1 = new GeneralPath(new Rectangle2D.Double(100, 100, 200, 50));
- Freeform p = new Freeform();
+ HSLFFreeformShape p = new HSLFFreeformShape();
p.setPath(path1);
-- java.awt.Shape path2 = p.getOutline();
++ java.awt.Shape path2 = p.getPath();
assertTrue(new Area(path1).equals(new Area(path2)));
}
* Avoid NPE in Freeform.getOutline() if either GEOMETRY__VERTICES or
* GEOMETRY__SEGMENTINFO is missing, see Bugzilla 54188
*/
+ @Test
public void test54188() {
- Freeform p = new Freeform();
- GeneralPath path = (GeneralPath)p.getOutline();
+ HSLFFreeformShape p = new HSLFFreeformShape();
- GeneralPath path = (GeneralPath)p.getOutline();
++ GeneralPath path = p.getPath();
GeneralPath emptyPath = new GeneralPath();
assertEquals(emptyPath.getBounds2D(), path.getBounds2D());
}
assertNotNull(tbl);
- assertEquals(-1, tbl.getAnchor().y);
- // handling changed in common sl, so it evaluates to 0 now
- assertEquals(0, tbl.getAnchor().getY(), 0);
++ assertEquals(-1, tbl.getAnchor().getY(), 0);
}
}
--- /dev/null
- assertEquals(0.1, tx.getLeftInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.1, tx.getRightInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.39, tx.getTopInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.05, tx.getBottomInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
+ /* ====================================================================
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ ==================================================================== */
+
+ package org.apache.poi.hslf.usermodel;
+
+ import static org.junit.Assert.*;
+
+ import java.io.*;
+ import java.util.*;
+
+ import org.apache.poi.POIDataSamples;
+ import org.apache.poi.hslf.record.TextHeaderAtom;
+ import org.apache.poi.sl.usermodel.ShapeType;
+ import org.junit.Test;
+
+ /**
+ * Verify behavior of <code>TextShape</code> and its sub-classes
+ *
+ * @author Yegor Kozlov
+ */
+ public final class TestTextShape {
+ private static POIDataSamples _slTests = POIDataSamples.getSlideShowInstance();
+
+ @Test
+ public void createAutoShape(){
+ HSLFTextShape shape = new HSLFAutoShape(ShapeType.TRAPEZOID);
+ assertNull(shape.getEscherTextboxWrapper());
+ assertNotNull(shape.getTextParagraphs());
+ assertNotNull(shape.getEscherTextboxWrapper());
+ assertEquals("", shape.getText());
+ assertEquals(-1, shape.getTextParagraphs().get(0).getIndex());
+ }
+
+ @Test
+ public void createTextBox(){
+ HSLFTextShape shape = new HSLFTextBox();
+ List<HSLFTextParagraph> paras = shape.getTextParagraphs();
+ assertNotNull(paras);
+ assertNotNull(shape.getText());
+ assertNotNull(shape.getEscherTextboxWrapper());
+
+ assertNotNull(shape.getTextParagraphs());
+ assertNotNull(shape.getEscherTextboxWrapper());
+ assertEquals("", shape.getText());
+
+ }
+
+ /**
+ * Verify we can get text from TextShape in the following cases:
+ * - placeholders
+ * - normal TextBox object
+ * - text in auto-shapes
+ */
+ @Test
+ public void read() throws IOException {
+ HSLFSlideShow ppt = new HSLFSlideShow(_slTests.openResourceAsStream("text_shapes.ppt"));
+
+ List<String> lst1 = new ArrayList<String>();
+ HSLFSlide slide = ppt.getSlides().get(0);
+ for (HSLFShape shape : slide.getShapes()) {
+ assertTrue("Expected TextShape but found " + shape.getClass().getName(), shape instanceof HSLFTextShape);
+ HSLFTextShape tx = (HSLFTextShape)shape;
+ List<HSLFTextParagraph> paras = tx.getTextParagraphs();
+ assertNotNull(paras);
+ int runType = paras.get(0).getRunType();
+
+ ShapeType type = shape.getShapeType();
+ String rawText = HSLFTextParagraph.getRawText(paras);
+ switch (type){
+ case TEXT_BOX:
+ assertEquals("Text in a TextBox", rawText);
+ break;
+ case RECT:
+ if(runType == TextHeaderAtom.OTHER_TYPE)
+ assertEquals("Rectangle", rawText);
+ else if(runType == TextHeaderAtom.TITLE_TYPE)
+ assertEquals("Title Placeholder", rawText);
+ break;
+ case OCTAGON:
+ assertEquals("Octagon", rawText);
+ break;
+ case ELLIPSE:
+ assertEquals("Ellipse", rawText);
+ break;
+ case ROUND_RECT:
+ assertEquals("RoundRectangle", rawText);
+ break;
+ default:
+ fail("Unexpected shape: " + shape.getShapeName());
+
+ }
+ lst1.add(rawText);
+ }
+
+ List<String> lst2 = new ArrayList<String>();
+ for (List<HSLFTextParagraph> paras : slide.getTextParagraphs()) {
+ lst2.add(HSLFTextParagraph.getRawText(paras));
+ }
+
+ assertTrue(lst1.containsAll(lst2));
+ }
+
+ @Test
+ public void readWrite() throws IOException {
+ HSLFSlideShow ppt = new HSLFSlideShow();
+ HSLFSlide slide = ppt.createSlide();
+
+ HSLFTextShape shape1 = new HSLFTextBox();
+ shape1.setText("Hello, World!");
+ slide.addShape(shape1);
+
+ shape1.moveTo(100, 100);
+
+ HSLFTextShape shape2 = new HSLFAutoShape(ShapeType.RIGHT_ARROW);
+ shape2.setText("Testing TextShape");
+ slide.addShape(shape2);
+ shape2.moveTo(300, 300);
+
+ ByteArrayOutputStream out = new ByteArrayOutputStream();
+ ppt.write(out);
+ out.close();
+
+ ppt = new HSLFSlideShow(new ByteArrayInputStream(out.toByteArray()));
+ slide = ppt.getSlides().get(0);
+ List<HSLFShape> shape = slide.getShapes();
+
+ assertTrue(shape.get(0) instanceof HSLFTextShape);
+ shape1 = (HSLFTextShape)shape.get(0);
+ assertEquals(ShapeType.TEXT_BOX, shape1.getShapeType());
+ assertEquals("Hello, World!", shape1.getText());
+
+ assertTrue(shape.get(1) instanceof HSLFTextShape);
+ shape1 = (HSLFTextShape)shape.get(1);
+ assertEquals(ShapeType.RIGHT_ARROW, shape1.getShapeType());
+ assertEquals("Testing TextShape", shape1.getText());
+ }
+
+ @Test
+ public void margins() throws IOException {
+ HSLFSlideShow ppt = new HSLFSlideShow(_slTests.openResourceAsStream("text-margins.ppt"));
+
+ HSLFSlide slide = ppt.getSlides().get(0);
+
+ Map<String,HSLFTextShape> map = new HashMap<String,HSLFTextShape>();
+ for (HSLFShape shape : slide.getShapes()) {
+ if(shape instanceof HSLFTextShape){
+ HSLFTextShape tx = (HSLFTextShape)shape;
+ map.put(tx.getText(), tx);
+ }
+ }
+
+ HSLFTextShape tx;
+
+ tx = map.get("TEST1");
- assertEquals(0.1, tx.getLeftInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.1, tx.getRightInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.05, tx.getTopInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.39, tx.getBottomInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
++ assertEquals(7.2, tx.getLeftInset(), 0);
++ assertEquals(7.2, tx.getRightInset(), 0);
++ assertEquals(28.34, tx.getTopInset(), 0.01);
++ assertEquals(3.6, tx.getBottomInset(), 0);
+
+ tx = map.get("TEST2");
- assertEquals(0.39, tx.getLeftInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.1, tx.getRightInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.05, tx.getTopInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.05, tx.getBottomInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
++ assertEquals(7.2, tx.getLeftInset(), 0);
++ assertEquals(7.2, tx.getRightInset(), 0);
++ assertEquals(3.6, tx.getTopInset(), 0);
++ assertEquals(28.34, tx.getBottomInset(), 0.01);
+
+ tx = map.get("TEST3");
- assertEquals(0.1, tx.getLeftInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.39, tx.getRightInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.05, tx.getTopInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
- assertEquals(0.05, tx.getBottomInset()*HSLFShape.EMU_PER_POINT/HSLFShape.EMU_PER_INCH, 0.01);
++ assertEquals(28.34, tx.getLeftInset(), 0.01);
++ assertEquals(7.2, tx.getRightInset(), 0);
++ assertEquals(3.6, tx.getTopInset(), 0);
++ assertEquals(3.6, tx.getBottomInset(), 0);
+
+ tx = map.get("TEST4");
++ assertEquals(7.2, tx.getLeftInset(), 0);
++ assertEquals(28.34, tx.getRightInset(), 0.01);
++ assertEquals(3.6, tx.getTopInset(), 0);
++ assertEquals(3.6, tx.getBottomInset(), 0);
+ }
+
+ @Test
+ public void bug52599() throws IOException {
+ HSLFSlideShow ppt = new HSLFSlideShow(_slTests.openResourceAsStream("52599.ppt"));
+
+ HSLFSlide slide = ppt.getSlides().get(0);
+ List<HSLFShape> sh = slide.getShapes();
+ assertEquals(3, sh.size());
+
+ HSLFTextShape sh0 = (HSLFTextShape)sh.get(0);
+ assertNotNull(sh0.getTextParagraphs());
+ assertEquals("", sh0.getText());
+
+ HSLFTextShape sh1 = (HSLFTextShape)sh.get(1);
+ assertNotNull(sh1.getTextParagraphs());
+ assertEquals("", sh1.getText());
+
+ HSLFTextShape sh2 = (HSLFTextShape)sh.get(2);
+ assertEquals("this box should be shown just once", sh2.getText());
+ assertEquals(-1, sh2.getTextParagraphs().get(0).getIndex());
+ }
+ }
--- /dev/null
++<?xml version="1.0" encoding="ISO-8859-1"?>\r
++<!--\r
++ ====================================================================\r
++ Licensed to the Apache Software Foundation (ASF) under one or more\r
++ contributor license agreements. See the NOTICE file distributed with\r
++ this work for additional information regarding copyright ownership.\r
++ The ASF licenses this file to You under the Apache License, Version 2.0\r
++ (the "License"); you may not use this file except in compliance with\r
++ the License. You may obtain a copy of the License at\r
++\r
++ http://www.apache.org/licenses/LICENSE-2.0\r
++\r
++ Unless required by applicable law or agreed to in writing, software\r
++ distributed under the License is distributed on an "AS IS" BASIS,\r
++ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
++ See the License for the specific language governing permissions and\r
++ limitations under the License.\r
++ ====================================================================\r
++-->\r
+ <jxb:bindings version="1.0"\r
+ xmlns:xs="http://www.w3.org/2001/XMLSchema"\r
+ xmlns:jxb="http://java.sun.com/xml/ns/jaxb"\r
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
+ xsi:schemaLocation="http://java.sun.com/xml/ns/jaxb http://java.sun.com/xml/ns/jaxb/bindingschema_2_0.xsd">\r
+ <jxb:globalBindings generateIsSetMethod="true"/>\r
+ </jxb:bindings>\r