当前位置: 首页 > news >正文

使用 Apache POI XDGF 读取 vsdx 文件

引入依赖

<dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-core</artifactId><version>2.22.1</version>
</dependency>
<dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-slf4j-impl</artifactId><version>2.22.1</version>
</dependency>
<dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-1.2-api</artifactId><version>2.22.1</version>
</dependency>
<dependency><groupId>org.apache.logging.log4j</groupId><artifactId>log4j-api</artifactId><version>2.22.1</version>
</dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>5.2.5</version>
</dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>5.2.5</version>
</dependency><dependency><groupId>commons-io</groupId><artifactId>commons-io</artifactId><version>2.15.1</version>
</dependency>

下载示例文件:A flowchart diagram that details the steps for buying a property

Java代码如下:

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;import org.apache.poi.xdgf.extractor.XDGFVisioExtractor;
import org.apache.poi.xdgf.usermodel.XmlVisioDocument;
import org.w3c.dom.Node;public class VsdxReadTest {public static void main(final String[] args) throws FileNotFoundException, IOException {final XmlVisioDocument xvd = new XmlVisioDocument(new FileInputStream("data\\vsdx\\tf16403429.vsdx"));// open VSD filefinal XDGFVisioExtractor extractor = new XDGFVisioExtractor(xvd);System.out.println("------text-----");System.out.println(extractor.getText());System.out.println("------text-----");extractor.getDocument().getPages().forEach(p -> {final StringBuilder bud = new StringBuilder();System.out.println("页名:" + p.getName());p.getContent().getXmlObject().getShapes().getShapeList().forEach(s -> {System.out.println("------xml-----" + s.getID() + "---" + s.getName());System.out.println(s);System.out.println("------xml-----" + s.getID() + "---" + s.getName());for (int i = 0; i < s.getDomNode().getChildNodes().getLength(); i++) {final Node n = s.getDomNode().getChildNodes().item(i);printNode(bud, n, 1);if (n.getChildNodes().getLength() > 0) {Boolean print2 = Boolean.FALSE;for (int j = 0; j < n.getChildNodes().getLength(); j++) {final Node n2 = n.getChildNodes().item(j);if (printNode(bud, n2, 2)) {print2 = Boolean.TRUE;}if (n2.getChildNodes().getLength() > 0) {Boolean print3 = Boolean.FALSE;for (int k = 0; k < n2.getChildNodes().getLength(); k++) {final Node n3 = n2.getChildNodes().item(k);if (printNode(bud, n3, 3)) {print3 = Boolean.TRUE;}}if (print3) {bud.append(System.lineSeparator());}}}if (print2) {bud.append(System.lineSeparator());}}}});System.out.println("------text-----");System.out.println(bud.toString());System.out.println("------text-----");});}private static Boolean printNode(final StringBuilder bud, final Node node, final int level) {if (node.getNodeName().contains("#text")) {bud.append(node.getNodeValue());return Boolean.TRUE;}return Boolean.FALSE;}}

输出结果如下

------text-----
​Property buying Flowchart
Start with an agent 
you trust
Consult with agent to determine your property wants and needs
Review and complete paperwork
Go to preferred lender,
get pre-qualified and
pre-approval for loan amount
With agent, analyze
market to choose properties of interest
View properties
with agent
​A
​A
Select ideal property
and write offer to
purchase
Negotiate
& Counteroffer: Agreement?
Accept the contract
Secure underwriting,
obtain loan approval
Select/Contact closing attorney for title exam
and title insurance
Schedule inspection
and survey
Close on the
property
Yes
No------text-----
页名:Page-1
------xml-----188---null
<xml-fragment ID="188" Type="Shape" LineStyle="3" FillStyle="3" TextStyle="3" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="4.14"/><main:Cell N="PinY" V="11.03"/><main:Cell N="Width" V="7.77"/><main:Cell N="Height" V="0.56"/><main:Cell N="LocPinX" V="3.885" F="Width*0.5"/><main:Cell N="LocPinY" V="0.28" F="Height*0.5"/><main:Cell N="Angle" V="0"/><main:Cell N="FlipX" V="0"/><main:Cell N="FlipY" V="0"/><main:Cell N="ResizeMode" V="0"/><main:Cell N="EventDblClick" V="0" F="OPENTEXTWIN()"/><main:Cell N="LinePattern" V="0" F="THEMEGUARD(0)"/><main:Cell N="FillPattern" V="0" F="THEMEGUARD(0)"/><main:Cell N="ShdwPattern" V="0" F="THEMEGUARD(0)"/><main:Cell N="LineGradientEnabled" V="0" F="THEMEGUARD(FALSE)"/><main:Cell N="FillGradientEnabled" V="0" F="THEMEGUARD(FALSE)"/><main:Cell N="QuickStyleVariation" V="3"/><main:Cell N="ObjType" V="1"/><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="179000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="0"/><main:Cell N="Style" V="17"/><main:Cell N="Size" V="0.25"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Cell N="NoFill" V="0"/><main:Cell N="NoLine" V="0"/><main:Cell N="NoShow" V="0"/><main:Cell N="NoSnap" V="0"/><main:Cell N="NoQuickDrag" V="0"/><main:Row T="RelMoveTo" IX="1"><main:Cell N="X" V="0"/><main:Cell N="Y" V="0"/></main:Row><main:Row T="RelLineTo" IX="2"><main:Cell N="X" V="1"/><main:Cell N="Y" V="0"/></main:Row><main:Row T="RelLineTo" IX="3"><main:Cell N="X" V="1"/><main:Cell N="Y" V="1"/></main:Row><main:Row T="RelLineTo" IX="4"><main:Cell N="X" V="0"/><main:Cell N="Y" V="1"/></main:Row><main:Row T="RelLineTo" IX="5"><main:Cell N="X" V="0"/><main:Cell N="Y" V="0"/></main:Row></main:Section><main:Text><main:cp IX="0"/>​Property buying Flowchart</main:Text>
</xml-fragment>
------xml-----188---null
------xml-----239---Start/End.132
<xml-fragment ID="239" NameU="Start/End.132" IsCustomNameU="1" Name="Start/End.132" IsCustomName="1" Type="Shape" Master="2" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76"/><main:Cell N="PinY" V="10.16405"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.5344031458433889"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.2672015729216944" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.2672015729216944" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.5344031458433889" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.2672015729216944" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="180000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.5344031458433889" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="Y" V="0.2672015729216891" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.2672015729216891" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.2672015729216944" F="Inh"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.068806291686778" F="Inh"/></main:Row><main:Row T="EllipticalArcTo" IX="3"><main:Cell N="X" V="1.068806291686778" F="Inh"/><main:Cell N="Y" V="0.5344031458433889" F="Inh"/><main:Cell N="A" V="1.336007864608472" U="DL" F="Inh"/><main:Cell N="B" V="0.2672015729216891" U="DL" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="0.2672015729216944" F="Inh"/><main:Cell N="Y" V="0.5344031458433889" F="Inh"/></main:Row><main:Row T="EllipticalArcTo" IX="5"><main:Cell N="X" V="0.2672015729216944" F="Inh"/><main:Cell N="B" V="0.2672015729216891" U="DL" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>Start with an agent<main:cp IX="1"/><main:pp IX="1"/>you trust</main:Text>
</xml-fragment>
------xml-----239---Start/End.132
------xml-----256---null
<xml-fragment ID="256" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76" F="Inh"/><main:Cell N="PinY" V="9.644005482076864" U="MM" F="Inh"/><main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-0.5056858900028853" U="MM" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.098425196850395" F="Inh"/><main:Cell N="LocPinY" V="-0.2528429450014427" U="MM" F="Inh"/><main:Cell N="BeginX" V="2.76" F="PAR(PNT(Sheet.239!Connections.X1,Sheet.239!Connections.Y1))"/><main:Cell N="BeginY" V="9.896848427078306" U="MM" F="PAR(PNT(Sheet.239!Connections.X1,Sheet.239!Connections.Y1))"/><main:Cell N="EndX" V="2.76" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="9.39116253707542" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.239!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.257!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConFixedCode" V="5"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/><main:Cell N="TxtPinY" V="-0.2528429329395294" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09842519462108612"/><main:Cell N="Y" V="-0.2528429329395294"/><main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/><main:Cell N="YDyn" V="-0.2528429329395294" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="207000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.09842519685039353"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.09842519685039353"/><main:Cell N="Y" V="-0.5056858900028853"/></main:Row><main:Row T="LineTo" IX="3" Del="1"/></main:Section>
</xml-fragment>
------xml-----256---null
------xml-----257---Process.133
<xml-fragment ID="257" NameU="Process.133" IsCustomNameU="1" Name="Process.133" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76"/><main:Cell N="PinY" V="8.99036017769288"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="208000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/>Consult with agent to determine your property wants and needs</main:Text>
</xml-fragment>
------xml-----257---Process.133
------xml-----258---null
<xml-fragment ID="258" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76005" F="Inh"/><main:Cell N="PinY" V="8.291696764013402" F="Inh"/><main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-0.595722108593872" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.297861054296936" F="Inh"/><main:Cell N="BeginX" V="2.76" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="8.589557818310338" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="2.7601" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="7.993835709716466" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.257!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.259!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09847519685039385" F="Inh"/><main:Cell N="TxtPinY" V="-0.2978110542969357" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09847519685039385"/><main:Cell N="Y" V="-0.2978110542969357"/><main:Cell N="XDyn" V="0.09847519685039385" F="Inh"/><main:Cell N="YDyn" V="-0.2978110542969357" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="209000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.0983751968503932"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.0983751968503932"/><main:Cell N="Y" V="-0.1509999990463253"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="0.09847519685039385"/><main:Cell N="Y" V="-0.1509999990463253"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="0.09847519685039385"/><main:Cell N="Y" V="-0.595722108593872"/></main:Row></main:Section>
</xml-fragment>
------xml-----258---null
------xml-----259---Process.135
<xml-fragment ID="259" NameU="Process.135" IsCustomNameU="1" Name="Process.135" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.7601"/><main:Cell N="PinY" V="7.593033350333924"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="210000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/>Review and complete paperwork</main:Text>
</xml-fragment>
------xml-----259---Process.135
------xml-----260---null
<xml-fragment ID="260" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76005" F="Inh"/><main:Cell N="PinY" V="6.894369936654447" F="Inh"/><main:Cell N="Width" V="-0.1968503937007874" F="GUARD(-0.19685039370079DL)"/><main:Cell N="Height" V="-0.5957221085938702" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="-0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.2978610542969351" F="Inh"/><main:Cell N="BeginX" V="2.7601" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="7.192230990951382" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="2.76" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="6.596508882357512" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.259!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.261!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="-0.09847519685039385" F="Inh"/><main:Cell N="TxtPinY" V="-0.297811054296935" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="-0.09847519685039385"/><main:Cell N="Y" V="-0.297811054296935"/><main:Cell N="XDyn" V="-0.09847519685039385" F="Inh"/><main:Cell N="YDyn" V="-0.297811054296935" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="211000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="-0.09837519685039364"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="-0.09837519685039364"/><main:Cell N="Y" V="-0.1509999990463253"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="-0.09847519685039385"/><main:Cell N="Y" V="-0.1509999990463253"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="-0.09847519685039385"/><main:Cell N="Y" V="-0.5957221085938702"/></main:Row></main:Section>
</xml-fragment>
------xml-----260---null
------xml-----261---Process.137
<xml-fragment ID="261" NameU="Process.137" IsCustomNameU="1" Name="Process.137" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76"/><main:Cell N="PinY" V="6.19570652297497"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="212000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row><main:Row IX="2"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row><main:Row IX="3"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row><main:Row IX="2"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>Go to preferred lender,<main:cp IX="1"/><main:pp IX="1"/>get pre-qualified <main:cp IX="2"/>and<main:cp IX="3"/><main:pp IX="2"/>pre-approval for loan amount</main:Text>
</xml-fragment>
------xml-----261---Process.137
------xml-----262---null
<xml-fragment ID="262" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76" F="Inh"/><main:Cell N="PinY" V="5.497043109295492" F="Inh"/><main:Cell N="Width" V="0.1968503937007874" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-0.595722108593872" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.297861054296936" F="Inh"/><main:Cell N="BeginX" V="2.76" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="5.794904163592428" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="2.76" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="5.199182054998556" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.261!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.263!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConFixedCode" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/><main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09842519462108612"/><main:Cell N="Y" V="-0.2978610396385193"/><main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/><main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="213000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.09842519685039353"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.09842519685039353"/><main:Cell N="Y" V="-0.595722108593872"/></main:Row><main:Row T="LineTo" IX="3" Del="1"/></main:Section>
</xml-fragment>
------xml-----262---null
------xml-----263---Process.157
<xml-fragment ID="263" NameU="Process.157" IsCustomNameU="1" Name="Process.157" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76"/><main:Cell N="PinY" V="4.798379695616015"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="214000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>With agent, analyze<main:cp IX="1"/><main:pp IX="1"/>market to choose properties of interest</main:Text>
</xml-fragment>
------xml-----263---Process.157
------xml-----264---null
<xml-fragment ID="264" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76" F="Inh"/><main:Cell N="PinY" V="4.099716281936537" F="Inh"/><main:Cell N="Width" V="0.1968503937007874" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-0.5957221085938711" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.2978610542969358" F="Inh"/><main:Cell N="BeginX" V="2.76" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="4.397577336233473" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="2.76" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="3.801855227639602" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.263!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.265!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConFixedCode" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/><main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09842519462108612"/><main:Cell N="Y" V="-0.2978610396385193"/><main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/><main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="215000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.09842519685039353"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.09842519685039353"/><main:Cell N="Y" V="-0.5957221085938711"/></main:Row><main:Row T="LineTo" IX="3" Del="1"/></main:Section>
</xml-fragment>
------xml-----264---null
------xml-----265---Process.164
<xml-fragment ID="265" NameU="Process.164" IsCustomNameU="1" Name="Process.164" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76"/><main:Cell N="PinY" V="3.40105286825706"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="216000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>View properties<main:cp IX="1"/><main:pp IX="1"/>with agent</main:Text>
</xml-fragment>
------xml-----265---Process.164
------xml-----266---null
<xml-fragment ID="266" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.76005" F="Inh"/><main:Cell N="PinY" V="2.380807931602613" F="Inh"/><main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-1.23888515454381" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.6194425772719052" F="Inh"/><main:Cell N="BeginX" V="2.76" F="PAR(PNT(Sheet.265!Connections.X3,Sheet.265!Connections.Y3))"/><main:Cell N="BeginY" V="3.000250508874518" F="PAR(PNT(Sheet.265!Connections.X3,Sheet.265!Connections.Y3))"/><main:Cell N="EndX" V="2.7601" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="1.761365354330708" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.265!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.267!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09847519685039385" F="Inh"/><main:Cell N="TxtPinY" V="-0.6193925772719053" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09847519685039385"/><main:Cell N="Y" V="-0.6193925772719053"/><main:Cell N="XDyn" V="0.09847519685039385" F="Inh"/><main:Cell N="YDyn" V="-0.6193925772719053" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="217000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.09837519685039364"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.09837519685039364"/><main:Cell N="Y" V="-0.1509999990463258"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="0.09847519685039385"/><main:Cell N="Y" V="-0.1509999990463258"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="0.09847519685039385"/><main:Cell N="Y" V="-1.238885154543811"/></main:Row></main:Section>
</xml-fragment>
------xml-----266---null
------xml-----267---On-page reference.194
<xml-fragment ID="267" NameU="On-page reference.194" IsCustomNameU="1" Name="On-page reference.194" IsCustomName="1" Type="Shape" Master="12" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="2.7601"/><main:Cell N="PinY" V="1.5842"/><main:Cell N="LayerMember" V="0"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="218000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row></main:Section><main:Text><main:cp IX="0"/>​A</main:Text>
</xml-fragment>
------xml-----267---On-page reference.194
------xml-----268---On-page reference.268
<xml-fragment ID="268" NameU="On-page reference.268" Name="On-page reference.268" Type="Shape" Master="12" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6416"/><main:Cell N="PinY" V="10.16405"/><main:Cell N="LayerMember" V="0"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="219000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row></main:Section><main:Text><main:cp IX="0"/>​A</main:Text>
</xml-fragment>
------xml-----268---On-page reference.268
------xml-----269---null
<xml-fragment ID="269" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6416" F="Inh"/><main:Cell N="PinY" V="9.689023591372354" F="Inh"/><main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-0.5957221085938702" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.2978610542969351" F="Inh"/><main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="9.98688464566929" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="5.6416" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="9.39116253707542" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.268!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.270!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConFixedCode" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/><main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09842519462108612"/><main:Cell N="Y" V="-0.2978610396385193"/><main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/><main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="220000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.09842519685039353"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.09842519685039353"/><main:Cell N="Y" V="-0.5957221085938702"/></main:Row><main:Row T="LineTo" IX="3" Del="1"/></main:Section>
</xml-fragment>
------xml-----269---null
------xml-----270---Process.166
<xml-fragment ID="270" NameU="Process.166" IsCustomNameU="1" Name="Process.166" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6416"/><main:Cell N="PinY" V="8.990360177692878"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="221000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row><main:Row IX="2"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row><main:Row IX="2"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>Select ideal property<main:cp IX="1"/><main:pp IX="1"/>and write offer to<main:cp IX="2"/><main:pp IX="2"/>purchase</main:Text>
</xml-fragment>
------xml-----270---Process.166
------xml-----271---null
<xml-fragment ID="271" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.64165" F="Inh"/><main:Cell N="PinY" V="8.2916967640134" F="Inh"/><main:Cell N="Width" V="0.1968503937007874" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-0.595722108593872" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.2978610542969356" F="Inh"/><main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="8.589557818310336" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="5.6417" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="7.993835709716464" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.270!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.272!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09847519685039341" F="Inh"/><main:Cell N="TxtPinY" V="-0.2978110542969357" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09847519685039341"/><main:Cell N="Y" V="-0.2978110542969361"/><main:Cell N="XDyn" V="0.09847519685039341" F="Inh"/><main:Cell N="YDyn" V="-0.2978110542969357" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="222000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.09837519685039364"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.09837519685039364"/><main:Cell N="Y" V="-0.1509999990463253"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="0.09847519685039341"/><main:Cell N="Y" V="-0.1509999990463253"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="0.09847519685039341"/><main:Cell N="Y" V="-0.595722108593872"/></main:Row></main:Section>
</xml-fragment>
------xml-----271---null
------xml-----272---Decision.170
<xml-fragment ID="272" NameU="Decision.170" IsCustomNameU="1" Name="Decision.170" IsCustomName="1" Type="Shape" Master="5" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6417"/><main:Cell N="PinY" V="7.593033350333924"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.113339887173722" F="Inh"/><main:Cell N="TxtHeight" V="0.6012035390738125" F="Inh"/><main:Cell N="TxtLocPinX" V="0.5566699435868612" F="Inh"/><main:Cell N="TxtLocPinY" V="0.3006017695369063" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="ResizeTxtHeight"><main:Cell N="Value" V="0.6299212598425197" U="MM" F="Inh"/></main:Row><main:Row N="visNavOrder"><main:Cell N="Value" V="223000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="LineTo" IX="5"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>Negotiate<main:cp IX="1"/><main:pp IX="1"/>&amp; Counteroffer: Agreement?</main:Text>
</xml-fragment>
------xml-----272---Decision.170
------xml-----275---Process.177
<xml-fragment ID="275" NameU="Process.177" IsCustomNameU="1" Name="Process.177" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6416"/><main:Cell N="PinY" V="6.19570652297497"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="226000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/>Accept the contract</main:Text>
</xml-fragment>
------xml-----275---Process.177
------xml-----276---null
<xml-fragment ID="276" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6416" F="Inh"/><main:Cell N="PinY" V="5.497043109295492" F="Inh"/><main:Cell N="Width" V="0.1968503937007874" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-0.595722108593872" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.2978610542969356" F="Inh"/><main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="5.794904163592428" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="5.6416" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="5.199182054998556" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.275!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.277!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConFixedCode" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/><main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09842519462108612"/><main:Cell N="Y" V="-0.2978610396385193"/><main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/><main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="227000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.09842519685039353"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.09842519685039353"/><main:Cell N="Y" V="-0.595722108593872"/></main:Row><main:Row T="LineTo" IX="3" Del="1"/></main:Section>
</xml-fragment>
------xml-----276---null
------xml-----277---Process.179
<xml-fragment ID="277" NameU="Process.179" IsCustomNameU="1" Name="Process.179" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6416"/><main:Cell N="PinY" V="4.798379695616015"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="228000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>Secure underwriting,<main:cp IX="1"/><main:pp IX="1"/>obtain loan approval</main:Text>
</xml-fragment>
------xml-----277---Process.179
------xml-----278---null
<xml-fragment ID="278" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6416" F="Inh"/><main:Cell N="PinY" V="4.099716281936538" F="Inh"/><main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-0.5957221085938702" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.2978610542969351" F="Inh"/><main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="4.397577336233473" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="5.6416" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="3.801855227639603" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.277!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.279!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConFixedCode" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/><main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09842519462108612"/><main:Cell N="Y" V="-0.2978610396385193"/><main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/><main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="229000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.09842519685039353"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.09842519685039353"/><main:Cell N="Y" V="-0.5957221085938707"/></main:Row><main:Row T="LineTo" IX="3" Del="1"/></main:Section>
</xml-fragment>
------xml-----278---null
------xml-----279---Process.181
<xml-fragment ID="279" NameU="Process.181" IsCustomNameU="1" Name="Process.181" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6416"/><main:Cell N="PinY" V="3.40105286825706"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="230000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>Select/Contact closing attorney for title exam<main:cp IX="1"/><main:pp IX="1"/>and title insurance</main:Text>
</xml-fragment>
------xml-----279---Process.181
------xml-----280---null
<xml-fragment ID="280" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.6408" F="Inh"/><main:Cell N="PinY" V="2.702389454577584" F="Inh"/><main:Cell N="Width" V="-0.19685039370079" F="GUARD(-0.19685039370079DL)"/><main:Cell N="Height" V="-0.5957221085938707" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="-0.098425196850395" F="Inh"/><main:Cell N="LocPinY" V="-0.2978610542969353" F="Inh"/><main:Cell N="BeginX" V="5.6416" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="3.000250508874519" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="5.64" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="2.404528400280648" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.279!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.281!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="-0.09922519685039344" F="Inh"/><main:Cell N="TxtPinY" V="-0.2970610542969361" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="-0.09922519685039344"/><main:Cell N="Y" V="-0.2970610542969361"/><main:Cell N="XDyn" V="-0.09922519685039344" F="Inh"/><main:Cell N="YDyn" V="-0.2970610542969361" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="231000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="-0.0976251968503945"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="-0.0976251968503945"/><main:Cell N="Y" V="-0.1509999990463258"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="-0.09922519685039344"/><main:Cell N="Y" V="-0.1509999990463258"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="-0.09922519685039344"/><main:Cell N="Y" V="-0.5957221085938711"/></main:Row></main:Section>
</xml-fragment>
------xml-----280---null
------xml-----281---Process.183
<xml-fragment ID="281" NameU="Process.183" IsCustomNameU="1" Name="Process.183" IsCustomName="1" Type="Shape" Master="4" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.64"/><main:Cell N="PinY" V="2.003726040898107"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.8016047187650833"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.8016047187650833" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.4008023593825417" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="232000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.4008023593825417" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.336007864608472" F="Inh"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="Y" V="0.8016047187650833" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>Schedule inspection<main:cp IX="1"/><main:pp IX="1"/>and survey</main:Text>
</xml-fragment>
------xml-----281---Process.183
------xml-----283---null
<xml-fragment ID="283" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.64" F="Inh"/><main:Cell N="PinY" V="1.305062627218629" F="Inh"/><main:Cell N="Width" V="0.19685039370079" F="GUARD(0.19685039370079DL)"/><main:Cell N="Height" V="-0.5957221085938709" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.2978610542969354" F="Inh"/><main:Cell N="BeginX" V="5.64" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="1.602923681515565" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="5.64" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="1.007201572921694" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.281!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.284!EventXFMod)"/><main:Cell N="ShapeRouteStyle" V="6"/><main:Cell N="ConFixedCode" V="6"/><main:Cell N="ConLineRouteExt" V="1"/><main:Cell N="TxtPinX" V="0.09842519462108612" F="Inh"/><main:Cell N="TxtPinY" V="-0.2978610396385193" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="0.09842519462108612"/><main:Cell N="Y" V="-0.2978610396385193"/><main:Cell N="XDyn" V="0.09842519462108612" F="Inh"/><main:Cell N="YDyn" V="-0.2978610396385193" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="233000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.09842519685039353"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="0.09842519685039353"/><main:Cell N="Y" V="-0.5957221085938709"/></main:Row><main:Row T="LineTo" IX="3" Del="1"/></main:Section>
</xml-fragment>
------xml-----283---null
------xml-----284---Start/End.185
<xml-fragment ID="284" NameU="Start/End.185" IsCustomNameU="1" Name="Start/End.185" IsCustomName="1" Type="Shape" Master="2" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.64"/><main:Cell N="PinY" V="0.74"/><main:Cell N="Width" V="1.336007864608472"/><main:Cell N="Height" V="0.5344031458433889"/><main:Cell N="LocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="LocPinY" V="0.2672015729216944" F="Inh"/><main:Cell N="LayerMember" V="0"/><main:Cell N="TxtPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtPinY" V="0.2672015729216944" F="Inh"/><main:Cell N="TxtWidth" V="1.336007864608472" F="Inh"/><main:Cell N="TxtHeight" V="0.5344031458433889" F="Inh"/><main:Cell N="TxtLocPinX" V="0.6680039323042361" F="Inh"/><main:Cell N="TxtLocPinY" V="0.2672015729216944" F="Inh"/><main:Cell N="LineWeight" V="0.006944444444444444" U="PT" F="Inh"/><main:Cell N="LineColor" V="#ffffff" F="Inh"/><main:Cell N="FillBkgnd" V="#4d4d4d" F="Inh"/><main:Cell N="ShapeShdwShow" V="2"/><main:Section N="Actions"><main:Row N="SetDefaultSize"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row><main:Row N="ResizeWithText"><main:Cell N="Invisible" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="234000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/></main:Row><main:Row IX="1"><main:Cell N="Font" V="Calibri"/><main:Cell N="Color" V="#ffffff" F="THEMEVAL(&quot;TextColor&quot;,RGB(0,0,0))"/><main:Cell N="Style" V="0"/><main:Cell N="Case" V="0"/><main:Cell N="Pos" V="0"/><main:Cell N="FontScale" V="1"/><main:Cell N="Size" V="0.1111111111111111" U="PT"/><main:Cell N="DblUnderline" V="0"/><main:Cell N="Overline" V="0"/><main:Cell N="Strikethru" V="0"/><main:Cell N="DoubleStrikethrough" V="0"/><main:Cell N="Letterspace" V="0"/><main:Cell N="ColorTrans" V="0"/><main:Cell N="AsianFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptFont" V="Themed" F="THEMEVAL()"/><main:Cell N="ComplexScriptSize" V="-1"/><main:Cell N="LangID" V="en-US"/></main:Row></main:Section><main:Section N="Connection"><main:Row T="Connection" IX="0"><main:Cell N="X" V="0.6680039323042361" F="Inh"/></main:Row><main:Row T="Connection" IX="1"><main:Cell N="X" V="0.6680039323042361" F="Inh"/><main:Cell N="Y" V="0.5344031458433889" F="Inh"/></main:Row><main:Row T="Connection" IX="2"><main:Cell N="Y" V="0.2672015729216891" F="Inh"/></main:Row><main:Row T="Connection" IX="3"><main:Cell N="X" V="1.336007864608472" F="Inh"/><main:Cell N="Y" V="0.2672015729216891" F="Inh"/></main:Row></main:Section><main:Section N="Paragraph"><main:Row IX="1"><main:Cell N="IndFirst" V="0"/><main:Cell N="IndLeft" V="0"/><main:Cell N="IndRight" V="0"/><main:Cell N="SpLine" V="-1.2"/><main:Cell N="SpBefore" V="0"/><main:Cell N="SpAfter" V="0"/><main:Cell N="HorzAlign" V="1"/><main:Cell N="Bullet" V="0"/><main:Cell N="BulletStr" V=""/><main:Cell N="BulletFont" V="0"/><main:Cell N="BulletFontSize" V="-1"/><main:Cell N="TextPosAfterBullet" V="0"/><main:Cell N="Flags" V="0"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="0.2672015729216944" F="Inh"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="1.068806291686778" F="Inh"/></main:Row><main:Row T="EllipticalArcTo" IX="3"><main:Cell N="X" V="1.068806291686778" F="Inh"/><main:Cell N="Y" V="0.5344031458433889" F="Inh"/><main:Cell N="A" V="1.336007864608472" U="DL" F="Inh"/><main:Cell N="B" V="0.2672015729216891" U="DL" F="Inh"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="0.2672015729216944" F="Inh"/><main:Cell N="Y" V="0.5344031458433889" F="Inh"/></main:Row><main:Row T="EllipticalArcTo" IX="5"><main:Cell N="X" V="0.2672015729216944" F="Inh"/><main:Cell N="B" V="0.2672015729216891" U="DL" F="Inh"/></main:Row></main:Section><main:Text><main:cp IX="0"/><main:pp IX="0"/><main:tp IX="0"/>Close on the<main:cp IX="1"/><main:pp IX="1"/>property</main:Text>
</xml-fragment>
------xml-----284---Start/End.185
------xml-----289---null
<xml-fragment ID="289" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="5.64165" F="Inh"/><main:Cell N="PinY" V="6.894369936654447" F="Inh"/><main:Cell N="Width" V="-0.1968503937007874" F="GUARD(-0.19685039370079DL)"/><main:Cell N="Height" V="-0.5957221085938702" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="-0.09842519685039369" F="Inh"/><main:Cell N="LocPinY" V="-0.2978610542969351" F="Inh"/><main:Cell N="BeginX" V="5.6417" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="7.192230990951382" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="5.6416" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="6.596508882357512" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.272!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.275!EventXFMod)"/><main:Cell N="TxtPinX" V="-0.09847519685039341" F="Inh"/><main:Cell N="TxtPinY" V="-0.2978110542969352" F="Inh"/><main:Cell N="TxtHeight" V="0.2444939358181424" F="Inh"/><main:Cell N="TxtLocPinY" V="0.1222469679090712" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="-0.09847519685039341"/><main:Cell N="Y" V="-0.2978110542969352"/><main:Cell N="XDyn" V="-0.09847519685039341" F="Inh"/><main:Cell N="YDyn" V="-0.2978110542969352" F="Inh"/><main:Cell N="XCon" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="236000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="LangID" V="en-IN"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="MoveTo" IX="1"><main:Cell N="X" V="-0.09837519685039364"/></main:Row><main:Row T="LineTo" IX="2"><main:Cell N="X" V="-0.09837519685039364"/><main:Cell N="Y" V="-0.1509999990463253"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="-0.09847519685039341"/><main:Cell N="Y" V="-0.1509999990463253"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="-0.09847519685039341"/><main:Cell N="Y" V="-0.5957221085938702"/></main:Row></main:Section><main:Text><main:cp IX="0"/>Yes</main:Text>
</xml-fragment>
------xml-----289---null
------xml-----291---Dynamic connector
<xml-fragment ID="291" NameU="Dynamic connector" Name="Dynamic connector" Type="Shape" Master="6" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:main="http://schemas.microsoft.com/office/visio/2012/main"><main:Cell N="PinX" V="4.20085" F="Inh"/><main:Cell N="PinY" V="6.19570652297497" F="Inh"/><main:Cell N="Width" V="-1.545692135391528" F="GUARD(EndX-BeginX)"/><main:Cell N="Height" V="-2.794653654717909" F="GUARD(EndY-BeginY)"/><main:Cell N="LocPinX" V="-0.772846067695764" F="Inh"/><main:Cell N="LocPinY" V="-1.397326827358956" F="Inh"/><main:Cell N="BeginX" V="4.973696067695764" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="BeginY" V="7.593033350333924" F="_WALKGLUE(BegTrigger,EndTrigger,WalkPreference)"/><main:Cell N="EndX" V="3.428003932304236" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="EndY" V="4.798379695616015" F="_WALKGLUE(EndTrigger,BegTrigger,WalkPreference)"/><main:Cell N="LayerMember" V="1"/><main:Cell N="BegTrigger" V="2" F="_XFTRIGGER(Sheet.272!EventXFMod)"/><main:Cell N="EndTrigger" V="2" F="_XFTRIGGER(Sheet.263!EventXFMod)"/><main:Cell N="TxtPinX" V="-0.1509999990463253" F="Inh"/><main:Cell N="TxtPinY" V="-2.019172896008393" F="Inh"/><main:Cell N="TxtHeight" V="0.2444939358181424" F="Inh"/><main:Cell N="TxtLocPinY" V="0.1222469679090712" F="Inh"/><main:Section N="Control"><main:Row N="TextPosition"><main:Cell N="X" V="-0.1509999990463253"/><main:Cell N="Y" V="-2.019172896008393"/><main:Cell N="XDyn" V="-0.1509999990463253" F="Inh"/><main:Cell N="YDyn" V="-2.019172896008393" F="Inh"/><main:Cell N="XCon" V="0" F="Inh"/></main:Row></main:Section><main:Section N="User"><main:Row N="visNavOrder"><main:Cell N="Value" V="237000"/><main:Cell N="Prompt" V="" F="No Formula"/></main:Row></main:Section><main:Section N="Character"><main:Row IX="0"><main:Cell N="LangID" V="en-IN"/></main:Row></main:Section><main:Section N="Geometry" IX="0"><main:Row T="LineTo" IX="2"><main:Cell N="X" V="-0.1509999990463253"/><main:Cell N="Y" V="0"/></main:Row><main:Row T="LineTo" IX="3"><main:Cell N="X" V="-0.1509999990463253"/><main:Cell N="Y" V="-2.794653654717909"/></main:Row><main:Row T="LineTo" IX="4"><main:Cell N="X" V="-1.545692135391528"/><main:Cell N="Y" V="-2.794653654717909"/></main:Row></main:Section><main:Text><main:cp IX="0"/>No</main:Text>
</xml-fragment>
------xml-----291---Dynamic connector
------text-----
​Property buying FlowchartStart with an agent 
you trustConsult with agent to determine your property wants and needsReview and complete paperworkGo to preferred lender,
get pre-qualified and
pre-approval for loan amountWith agent, analyze
market to choose properties of interestView properties
with agent​A​ASelect ideal property
and write offer to
purchaseNegotiate
& Counteroffer: Agreement?Accept the contractSecure underwriting,
obtain loan approvalSelect/Contact closing attorney for title exam
and title insurance Schedule inspection
and surveyClose on the
propertyYesNo------text-----

参考资料:

1. Apache POI - HDGF and XDGF - Java API To Access Microsoft Visio Format Files

2.Introduction to the Visio file format (.vsdx)

3.java导入visio文件_xdgfvisiorenderer-CSDN博客

4.Featured Visio templates and diagrams - Microsoft Support

相关文章:

  • 指向未来: 量子纠缠的本质是一个指针
  • [足式机器人]Part2 Dr. CAN学习笔记- Kalman Filter卡尔曼滤波器Ch05-3+4
  • 广东金牌电缆:法大大电子合同助力业务风险管控
  • 电脑DIY-显卡
  • c ffmpeg 学习
  • QCustomPlot绘制柱状图,折线图
  • Chrome 开发者工具
  • 设计模式——中介者模式
  • Docker 仓库管理
  • etcd v3用户权限操作
  • 基于FPGA的万兆以太网学习(1)
  • openssl3.2 - 官方demo学习 - mac - siphash.c
  • 垃圾收集器G1ZGC详解
  • x-www-form-urlencoded接收方式代码示例
  • Nodejs 问题排查
  • [js高手之路]搞清楚面向对象,必须要理解对象在创建过程中的内存表示
  • canvas 高仿 Apple Watch 表盘
  • Git 使用集
  • Hexo+码云+git快速搭建免费的静态Blog
  • mac修复ab及siege安装
  • Python 使用 Tornado 框架实现 WebHook 自动部署 Git 项目
  • Python打包系统简单入门
  • vue-cli在webpack的配置文件探究
  • vue和cordova项目整合打包,并实现vue调用android的相机的demo
  • Vue--数据传输
  • webpack项目中使用grunt监听文件变动自动打包编译
  • 半理解系列--Promise的进化史
  • 对象管理器(defineProperty)学习笔记
  • 分类模型——Logistics Regression
  • 服务器之间,相同帐号,实现免密钥登录
  • 机器人定位导航技术 激光SLAM与视觉SLAM谁更胜一筹?
  • 删除表内多余的重复数据
  • 使用agvtool更改app version/build
  • 系统认识JavaScript正则表达式
  • 《TCP IP 详解卷1:协议》阅读笔记 - 第六章
  • 没有任何编程基础可以直接学习python语言吗?学会后能够做什么? ...
  • 如何用纯 CSS 创作一个菱形 loader 动画
  • #define与typedef区别
  • (arch)linux 转换文件编码格式
  • (附源码)ssm学生管理系统 毕业设计 141543
  • (原)本想说脏话,奈何已放下
  • (原創) X61用戶,小心你的上蓋!! (NB) (ThinkPad) (X61)
  • (转)es进行聚合操作时提示Fielddata is disabled on text fields by default
  • (转载)微软数据挖掘算法:Microsoft 时序算法(5)
  • ****** 二十三 ******、软设笔记【数据库】-数据操作-常用关系操作、关系运算
  • ./indexer: error while loading shared libraries: libmysqlclient.so.18: cannot open shared object fil
  • .NET 5.0正式发布,有什么功能特性(翻译)
  • .net core IResultFilter 的 OnResultExecuted和OnResultExecuting的区别
  • .NET DataGridView数据绑定说明
  • .NET delegate 委托 、 Event 事件
  • .NET Remoting学习笔记(三)信道
  • .net 程序 换成 java,NET程序员如何转行为J2EE之java基础上(9)
  • .NET 使用 ILMerge 合并多个程序集,避免引入额外的依赖
  • .NET 使用 JustAssembly 比较两个不同版本程序集的 API 变化
  • .NET/C# 使用反射调用含 ref 或 out 参数的方法