<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: .Net c# updating xref path without opening the drawing. in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3573762#M54086</link>
    <description>&lt;P&gt;Try using&amp;nbsp;"System.IO.FileShare.ReadWrite" as the parameter&amp;nbsp;in "ReadDwgFile".&lt;/P&gt;</description>
    <pubDate>Fri, 10 Aug 2012 14:02:26 GMT</pubDate>
    <dc:creator>Balaji_Ram</dc:creator>
    <dc:date>2012-08-10T14:02:26Z</dc:date>
    <item>
      <title>.Net c# updating xref path without opening the drawing.</title>
      <link>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3566486#M54083</link>
      <description>&lt;P&gt;Hello coders,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I am building a plugin which needs to change the xref path within a drawing without opening it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is my. please throw some light on where i went wrong..I am a newbiee..to .Net c#&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=====================================================================&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[CommandMethod("refremap")]&lt;BR /&gt;public void refremap() // This method can have any name&lt;BR /&gt;{&lt;BR /&gt;//Get the document&lt;BR /&gt;Document Doc = Application.DocumentManager.MdiActiveDocument;&lt;BR /&gt;Editor ed = Doc.Editor;&lt;/P&gt;&lt;P&gt;// Ask the user to select a folder&lt;/P&gt;&lt;P&gt;PromptResult res = ed.GetString("\nEnter the path of the folder: ");&lt;/P&gt;&lt;P&gt;if (res.Status == PromptStatus.OK)&lt;BR /&gt;{&lt;BR /&gt;string[] filepaths = Directory.GetFiles(res.StringResult, "*.dwg", SearchOption.AllDirectories);&lt;BR /&gt;int filecount = filepaths.Length;&lt;BR /&gt;ed.WriteMessage("\nScanning " + filecount + " files");&lt;BR /&gt;int finalxrefcount = 0;&lt;BR /&gt;int xrefedfile = 0;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;for (int i = 0; i &amp;lt; filecount; i++)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;ed.WriteMessage("\n File Name : " + filepaths[i]);&lt;BR /&gt;//create a database and try to load the file&lt;BR /&gt;Database db = new Database(false, true);&lt;BR /&gt;using (db)&lt;BR /&gt;{&lt;BR /&gt;try&lt;BR /&gt;{&lt;BR /&gt;db.ReadDwgFile(filepaths[i], System.IO.FileShare.Read, false, "");&lt;BR /&gt;}&lt;BR /&gt;catch (System.Exception)&lt;BR /&gt;{&lt;BR /&gt;ed.WriteMessage("\nUnable to read the drawingfile.");&lt;BR /&gt;return;&lt;BR /&gt;}&lt;BR /&gt;using (Transaction tr = db.TransactionManager.StartTransaction())&lt;BR /&gt;{&lt;BR /&gt;ed.WriteMessage("\n--------Xrefs Details--------");&lt;BR /&gt;db.ResolveXrefs(true, false);&lt;/P&gt;&lt;P&gt;XrefGraph xg = db.GetHostDwgXrefGraph(true);&lt;BR /&gt;GraphNode root = xg.RootNode;&lt;BR /&gt;//XrefObjectId xobj = new XrefObjectId();&lt;BR /&gt;ObjectIdCollection objcoll = new ObjectIdCollection();&lt;BR /&gt;&lt;BR /&gt;int xrefcount = xg.NumNodes - 1;&lt;/P&gt;&lt;P&gt;if (xrefcount == 0)&lt;BR /&gt;{&lt;BR /&gt;ed.WriteMessage("\nNo xrefs found in the drawing");&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;for (int r = 1; r &amp;lt; (xrefcount+1); r++)&lt;BR /&gt;{&lt;BR /&gt;XrefGraphNode child = xg.GetXrefNode(r);&lt;BR /&gt;if (child.XrefStatus == XrefStatus.FileNotFound)&lt;BR /&gt;{&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;BlockTableRecord btr = (BlockTableRecord)tr.GetObject(child.BlockTableRecordId, OpenMode.ForWrite);&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt; db.XrefEditEnabled = true;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt; string originalpath = btr.PathName;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt; string childname = Path.GetFileName(originalpath);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt; string newpath = @"E:\acad_dev_testing22\test\" + childname;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;btr.PathName = newpath;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ed.WriteMessage("\n xref old path: " + originalpath);&lt;BR /&gt;ed.WriteMessage("\n xref new path: " + newpath + " xref fixed !!");&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;tr.Commit();&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;ed.WriteMessage("\nTotal number of files scanned: " + filecount);&lt;BR /&gt;ed.WriteMessage("\nTotal number of files that contains xref : " + xrefedfile);&lt;BR /&gt;ed.WriteMessage("\nTotal number of xrefs : " + finalxrefcount);&lt;BR /&gt;ed.WriteMessage("\nTotal number of xrefs attached and working : " + filecount);&lt;BR /&gt;ed.WriteMessage("\nTotal number of xrefs that are not working : " + filecount);&lt;BR /&gt;ed.WriteMessage("\n----------------------------------------\n");&lt;BR /&gt;ed.WriteMessage("\n----------------------------------------\n");&lt;BR /&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;return;&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2012 12:17:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3566486#M54083</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-06T12:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: .Net c# updating xref path without opening the drawing.</title>
      <link>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3567216#M54084</link>
      <description>&lt;P&gt;We can fix the following code (in red):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;using (db)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;try&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;db.ReadDwgFile(filepaths[i], FileShare.Read, false, "");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;catch (System.Exception)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ed.WriteMessage("\nUnable to read the drawingfile.");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;using (Transaction tr = db.TransactionManager.StartTransaction())&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ed.WriteMessage("\n--------Xrefs Details--------");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;db.ResolveXrefs(true, false);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;XrefGraph xg = db.GetHostDwgXrefGraph(true);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;int xrefcount = xg.NumNodes - 1;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (xrefcount == 0)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ed.WriteMessage("\nNo xrefs found in the drawing");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;else&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;for (int r = 1; r &amp;lt; (xrefcount + 1); r++)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;XrefGraphNode child = xg.GetXrefNode(r);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (&lt;FONT color="#FF0000"&gt;child.XrefStatus == XrefStatus.Resolved&lt;/FONT&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;BlockTableRecord btr = (BlockTableRecord)tr.GetObject(child.BlockTableRecordId, OpenMode.ForWrite);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;db.XrefEditEnabled = true;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;string originalpath = btr.PathName;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;string childname = Path.GetFileName(originalpath);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;string newpath = @"E:\acad_dev_testing22\test\" + childname;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;btr.PathName = newpath;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ed.WriteMessage("\n xref old path: " + originalpath);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;ed.WriteMessage("\n xref new path: " + newpath + " xref fixed !!");&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;tr.Commit();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Overwrite the current drawing file with new updated XRef paths&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;FONT color="#FF0000"&gt;db.SaveAs(filepaths[i], DwgVersion.Current);&lt;/FONT&gt;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should save the database back to its file after making changes. Don't need to commit transaction if this file does not have xrefs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Khoa&lt;/P&gt;</description>
      <pubDate>Mon, 06 Aug 2012 19:39:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3567216#M54084</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-06T19:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: .Net c# updating xref path without opening the drawing.</title>
      <link>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3571240#M54085</link>
      <description>&lt;P&gt;Thanks mate for you advice,&lt;/P&gt;&lt;P&gt;I am getting following error:&lt;/P&gt;&lt;P&gt;Autodesk.AutoCAD.Runtime.Exception: eFileSharingViolation&lt;BR /&gt;at Autodesk.AutoCAD.DatabaseServices.Database.SaveAs(String fileName, DwgVersion version)&lt;BR /&gt;at Xref.MyCommands.refremap() in D:\Dev Zone\Ms.NET\Projects\Xref\Xref\myCommands.cs:line 361&lt;BR /&gt;at Autodesk.AutoCAD.Runtime.CommandClass.InvokeWorker(MethodInfo mi, Object commandObject, Boolean bLispFunction)&lt;/P&gt;&lt;P&gt;========================================================================================&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;XrefGraph xg = db.GetHostDwgXrefGraph(true);&lt;BR /&gt;GraphNode root = xg.RootNode;&lt;BR /&gt;//XrefObjectId xobj = new XrefObjectId();&lt;BR /&gt;ObjectIdCollection objcoll = new ObjectIdCollection();&lt;/P&gt;&lt;P&gt;int xrefcount = xg.NumNodes - 1;&lt;/P&gt;&lt;P&gt;if (xrefcount == 0)&lt;BR /&gt;{&lt;BR /&gt;ed.WriteMessage("\nNo xrefs found in the drawing");&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;else&lt;BR /&gt;{&lt;BR /&gt;for (int r = 1; r &amp;lt; (xrefcount + 1); r++)&lt;BR /&gt;{&lt;BR /&gt;XrefGraphNode child = xg.GetXrefNode(r);&lt;BR /&gt;if (child.XrefStatus == XrefStatus.Resolved)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;BlockTableRecord btr = (BlockTableRecord)tr.GetObject(child.BlockTableRecordId, OpenMode.ForWrite);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;db.XrefEditEnabled = true;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;string originalpath = btr.PathName;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt; string childname = Path.GetFileName(originalpath);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt; string newpath = @"D:\test_area\xref\sub_folder\" + childname;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;btr.PathName = newpath;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;ed.WriteMessage("\n xref old path: " + originalpath);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt; ed.WriteMessage("\n xref new path: " + newpath + " xref fixed !!");&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT color="#888888"&gt;}&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;}&lt;BR /&gt;tr.Commit();&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;db.SaveAs(filepaths[i], DwgVersion.Current);&lt;/FONT&gt;&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Thu, 09 Aug 2012 06:50:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3571240#M54085</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-09T06:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: .Net c# updating xref path without opening the drawing.</title>
      <link>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3573762#M54086</link>
      <description>&lt;P&gt;Try using&amp;nbsp;"System.IO.FileShare.ReadWrite" as the parameter&amp;nbsp;in "ReadDwgFile".&lt;/P&gt;</description>
      <pubDate>Fri, 10 Aug 2012 14:02:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3573762#M54086</guid>
      <dc:creator>Balaji_Ram</dc:creator>
      <dc:date>2012-08-10T14:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: .Net c# updating xref path without opening the drawing.</title>
      <link>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3575610#M54087</link>
      <description>&lt;P&gt;Thanks Balaji, Will try and update&lt;/P&gt;</description>
      <pubDate>Mon, 13 Aug 2012 08:42:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/net-c-updating-xref-path-without-opening-the-drawing/m-p/3575610#M54087</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-08-13T08:42:19Z</dc:date>
    </item>
  </channel>
</rss>

