使用 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

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/626880.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

org.openjdk.jmh 的 pom 引用

<dependencies><dependency><groupId>org.openjdk.jmh</groupId><artifactId>jmh-core</artifactId><version>1.29</version></dependency> </dependencies>这将从 Maven 中央存储库下载 org.openjdk.jmh 依赖项的…

Spring AOP 源码分析

【阅读前提】&#xff1a; 需了解AOP注解开发流程&#xff1a;链接 一、注解 EnableAspectJAutoProxy 在配置类中添加注解EnableAspectJAutoProxy&#xff0c;便开启了AOP&#xff08;面向切面编程&#xff09; 功能。此注解也是了解AOP源码的入口。 EnableAspectJAutoProxy…

训练营第四十九天 | ● 121. 买卖股票的最佳时机 ● 122.买卖股票的最佳时机II

121. 买卖股票的最佳时机 持有&#xff1a;第i-1天持有&#xff1b;第i天买入 不持有&#xff1a;第i-1天不持有&#xff1b;第i天卖出 代码随想录 class Solution {public int maxProfit(int[] prices) {//动态规划if(prices null || prices.length 0) return 0;int n pri…

编码技巧:如何在Golang中高效解析和生成XML

编码技巧&#xff1a;如何在Golang中高效解析和生成XML 引言Golang中的XML基础解析XML文件生成XML文件错误处理和调试高级技巧和最佳实践总结 引言 在当今数据驱动的编程世界中&#xff0c;有效地处理各种数据格式是每个开发人员必备的技能之一。其中&#xff0c;XML&#xff…

【人工智能:现代方法】第19章:样例学习

智能体学习&#xff08;learning&#xff09;&#xff1a;一个智能体通过对世界进行观测来提高它的性能机器学习&#xff08;machine learning&#xff09;&#xff1a;智能体是一台计算机 —— 一台计算机观测到一些数据&#xff0c;基于这些数据构建一个模型&#xff08;mode…

并发编程之三大特性及JMM内存模型

目录 原子性 如何保证原子性 可见性 如何保证可见性 有序性 如何保证有序性 Java内存模型(JMM内存模型) Java内存模型的一些关键概念&#xff1a; 主内存与工作内存交互协议 Java内存模型通过以下手段来确保多线程程序的正确性&#xff1a; 锁机制 volatile volat…

说说JavaScript数字精度丢失的问题,如何解决?

在 JavaScript 中&#xff0c;数字精度丢失是一种普遍的问题。这是因为 JavaScript 内部的数字均以 IEEE 754 标准的双精度浮点数格式存储&#xff0c;这种格式只能精确表示有限个小数&#xff0c;而对于一些无限循环小数或无理数&#xff0c;无法精确表示&#xff0c;就会出现…

1-数组-有效的数独

这是数组的第一题&#xff0c;从现在开始开启数组篇章。力扣链接。 请你判断一个 9 x 9 的数独是否有效。只需要 根据以下规则 &#xff0c;验证已经填入的数字是否有效即可。 数字 1-9 在每一行只能出现一次。数字 1-9 在每一列只能出现一次。数字 1-9 在每一个以粗实线分隔的…

Fpga开发笔记(二):高云FPGA发开发软件Gowin和高云fpga基本开发过程

若该文为原创文章&#xff0c;转载请注明原文出处 本文章博客地址&#xff1a;https://hpzwl.blog.csdn.net/article/details/135620590 红胖子网络科技博文大全&#xff1a;开发技术集合&#xff08;包含Qt实用技术、树莓派、三维、OpenCV、OpenGL、ffmpeg、OSG、单片机、软硬…

【Redis配置】Linux下的Redis安装配置

压缩包方式的Redis下载与安装 进入官网 Redis官网&#xff1a;https://redis.io/download/ 往下翻可以找到其他版本的Redis&#xff0c;或者访问https://download.redis.io/releases/查找自己所需Redis版本。 下载自己所需版本 此处我选择下载的是6.2.14版本 上传到Linux…

墙地砖外形检测的技术方案-图像分割

基础原理 由于对碗口进行缺口检测&#xff0c;因此只需要碗口的边界信息。得到陶瓷碗区域填充后的图像&#xff0c;对图像进行边缘检测。这是属于图像分割中的内容&#xff0c;在图像的边缘中&#xff0c;可以利用导数算子对数字图像求差分&#xff0c;将边缘提取出来。 案例…

Vue:将以往的JQ页面,重构成Vue组件页面(组件化编码大致流程)

一、实现静态组件 组件要按照功能点拆分&#xff0c;命名不要与HTML元素冲突。 1、根据UI提供的原型图&#xff0c;进行结构设计&#xff0c;结构设计的粒度以是否方便给组件起名字为依据。并梳理好对应组件的层级依赖关系。 2、设计好结构后&#xff0c;开始写对应的组件&am…

pl/sql程序块的使用

-- Created on 2024-01-15 by ADMINISTRATOR declare -- Local variables hererecord_tablename varchar2(100);---test_record表名record_StartNo integer(19);---test_record开始编号temp_No integer(19);maxnbbh integer(19);nCnt integer : 20;fi…

ESP32 带字库显示中文终极方案

在持续的试错和进步之间发布过下面内容&#xff1a; TFT屏幕在arduino &#xff08;esp 32&#xff09;下的驱动&#xff0c;汉字显示和字库比较_arduino gc9a01显示汉字-CSDN博客 在esp32(esp8266) 提供软字库显示中文的解决方案_tft_espi汉字-CSDN博客 单片机上软字库换32进…

jar包热加载原理

第一次加载时&#xff0c;记录jar包的更新时间 lastModified jarLoader.getURLs()[0].openConnection().getLastModified(); 第二次加载时&#xff0c;比较jar的更新时间和第一次jar包更新时间&#xff0c;若不一致&#xff0c;说明jar包更新过了 if (jarLoader.getLastModi…

家用小型洗衣机哪款性价比高?好用的内衣洗衣机推荐

现在大多数的上班族&#xff0c;面临的都是早九晚六的工作&#xff0c;而且工作完下班回家还是面对各种各样的家务&#xff0c;特别是清洗需要换洗的洗衣&#xff0c;属实是有点辛苦了。可能很多人为了方便&#xff0c;每次洗衣服的都是把一堆衣服直接丢进洗衣机&#xff0c;直…

EVE-NG的环境导入IOL组件

IOL或IOS On Linux&#xff0c;也称为IOU或IOS On Unix。IOL是一个模拟器&#xff0c;一般仅思科使用。IOL指为i386架构编译的Linux版本。IOU指为Sparc架构编译的Unix&#xff08;Solaris&#xff09;版本。由于IOL是内部IOS版本&#xff0c;因此IOL只能由Cisco授权客户使用。需…

UniApp+Vue智慧工地信息化管理云平台源码(支持多工地使用)

智慧工地建设的意义 1、提高工程效率 智慧工地可以通过数字化手段&#xff0c;将工地的各个方面进行数字化存储和管理&#xff0c;从而实现的实时监测和共享。这可以大大提高工程的效率&#xff0c;减少工程中的人工干预&#xff0c;并且可以为后续的工程维护和升级提供便利。…

c++中的以及链表的基础使用

c中的& 通俗的立减即为对一个变量起别名。&#xff08;是和指针有区别的&#xff09; 以下为两个示例程序&#xff1a; 通过&代替了以往对地址的传递。从而实现了对a和b的交换。 p为a的别名&#xff0c;对p操作即为对a操作。故最后输出a的值为10. 链表的基础应用 链…

**FutureTask应用源码分析**(一)

1.1 FutureTask介绍 FutureTask是一个可以取消异步任务的类。FutureTask对Future做的一个基本实现。可以调用方法区开始和取消一个任务。 一般是配合Callable去使用。 异步任务启动之后&#xff0c;可以获取一个绑定当前异步任务的FutureTask。 可以基于FutureTask的方法去取消…