<?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: How to read BlockReference objects from ActiveDocumets with rich performance in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6812973#M33149</link>
    <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;What do you mean by ActiveDocument? Current drawing with Model and All paper spaces? &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Or current space eg: Model or Layout1 or Layout2 ... etc?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;The codes that I have posted earlier should get you started and the BlockReference object that assigned to the variable ( br ) is the one that you should do your business on as you want.&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Jan 2017 11:01:24 GMT</pubDate>
    <dc:creator>_Tharwat</dc:creator>
    <dc:date>2017-01-18T11:01:24Z</dc:date>
    <item>
      <title>How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6809711#M33141</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have made a function as below for read all BlockReference objects from ActiveDocument, then have to do my required validation. But its showing poor performance while reading objects. Is there any rich performance procedure/function to real all BlockReference objects from ActiveDocument ?.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Document acDoc = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument;&lt;BR /&gt;Editor acDocEd = acDoc.Editor;&lt;BR /&gt;TypedValue[] acTypValAr = new TypedValue[1];&lt;BR /&gt;acTypValAr[0] = new TypedValue(0, "INSERT");&lt;BR /&gt;SelectionFilter acSelFtr = new SelectionFilter(acTypValAr);&lt;BR /&gt;var _selAll = acDocEd.SelectAll(acSelFtr);&lt;BR /&gt;var _SelectionSet = _selAll.Value;&lt;BR /&gt;if (_SelectionSet == null)&lt;BR /&gt;{&lt;BR /&gt;return ;&lt;BR /&gt;}&lt;BR /&gt;if (_SelectionSet.Count &amp;gt; 0)&lt;BR /&gt;{&lt;BR /&gt;using (var tr = acDoc.TransactionManager.StartTransaction())&lt;BR /&gt;{&lt;BR /&gt;foreach (var ObjIdBlock in _SelectionSet.GetObjectIds())&lt;BR /&gt;{&lt;BR /&gt;using (DBObject obj = tr.GetObject(ObjIdBlock, Autodesk.AutoCAD.DatabaseServices.OpenMode.ForRead))&lt;BR /&gt;{&lt;BR /&gt;BlockReference br = (BlockReference)tr.GetObject(obj.Id, OpenMode.ForRead);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help me with sample code to improve performance ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manohar.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2017 07:18:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6809711#M33141</guid>
      <dc:creator>manohar2375</dc:creator>
      <dc:date>2017-01-17T07:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6809790#M33142</link>
      <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Maybe if you iterate through layouts via Block table record or via Layouts collection, so this may help you to get started.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; Document acDoc = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument;
            Editor acDocEd = acDoc.Editor;
            Database db = acDoc.Database;
            var btl = (BlockTable)db.BlockTableId.GetObject(OpenMode.ForRead);

            using (var tr = db.TransactionManager.StartTransaction())
            {
                foreach (var item in btl)
                {
                    var bk = (BlockTableRecord)tr.GetObject(item, OpenMode.ForRead);
                    if (bk.IsLayout)
                    {
                        // ............
                    }
                }
            }&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Jan 2017 08:06:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6809790#M33142</guid>
      <dc:creator>_Tharwat</dc:creator>
      <dc:date>2017-01-17T08:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6809882#M33143</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/660967"&gt;@_Tharwat&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You shouldn't open a database resident object (block table here) outside a transaction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3850955"&gt;@manohar2375&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a way using linq&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;        public int BlockCounter(Database db)
        {
            using (Transaction tr = db.TransactionManager.StartOpenCloseTransaction())
            {
                return ((BlockTable)tr.GetObject(db.BlockTableId, OpenMode.ForRead))
                    .Cast&amp;lt;ObjectId&amp;gt;()
                    .Select(id =&amp;gt; (BlockTableRecord)tr.GetObject(id, OpenMode.ForRead))
                    .Where(btr =&amp;gt; btr.IsLayout)
                    .Select(btr =&amp;gt; btr.Cast&amp;lt;ObjectId&amp;gt;().Count(id =&amp;gt; id.ObjectClass.DxfName == "INSERT"))
                    .Sum();
            }
        }&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Jan 2017 09:08:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6809882#M33143</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2017-01-17T09:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6809987#M33144</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/660967"&gt;@_Tharwat&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your &lt;SPAN&gt;valuable &lt;/SPAN&gt;reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your valuable reply. &amp;nbsp;Could you please help to share sample code for to get list of the block objects instead of count because i am poor in Auto CAD API's. please help me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manohar.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2017 10:06:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6809987#M33144</guid>
      <dc:creator>manohar2375</dc:creator>
      <dc:date>2017-01-17T10:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6810241#M33145</link>
      <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Thank you Gile for your advise.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Here is my attempt and it &amp;nbsp;may not look professional because I am also learning C# but it works.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;All comments are welcome.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt; using (var tr = db.TransactionManager.StartTransaction())
            {
                var btl = (BlockTable)db.BlockTableId.GetObject(OpenMode.ForRead);
                foreach (var item in btl)
                {
                    var bk = (BlockTableRecord)tr.GetObject(item, OpenMode.ForRead);
                    if (bk.IsLayout)
                    {
                        foreach (var obj in bk)
                        {
                            Entity ent = (Entity)tr.GetObject(obj, OpenMode.ForRead);
                            if (ent != null &amp;amp;&amp;amp; ent.GetType() == typeof(BlockReference))
                            {
                                BlockReference br = (BlockReference)tr.GetObject(obj, OpenMode.ForRead);
                                ed.WriteMessage("\nBlock Name: (" + br.Name + ").");
                            }                        
                        }
                    }
                }
                tr.Commit();
            }&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Jan 2017 12:32:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6810241#M33145</guid>
      <dc:creator>_Tharwat</dc:creator>
      <dc:date>2017-01-17T12:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6812246#M33146</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help me to share sample code to get list of the block objects from ActiveDocument because i am poor in Auto CAD API's. please help me with sample code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manohar.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 01:28:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6812246#M33146</guid>
      <dc:creator>manohar2375</dc:creator>
      <dc:date>2017-01-18T01:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6812893#M33147</link>
      <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;If you are after counting blocks in a drawing, you can use the commnad: Bcount for that task otherwise just explain what is the need of getting the block objects as you have mentioned into your last reply.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 10:27:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6812893#M33147</guid>
      <dc:creator>_Tharwat</dc:creator>
      <dc:date>2017-01-18T10:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6812950#M33148</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/660967"&gt;@_Tharwat&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your valuable reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As i specified earlier, my requirement is need to collect all the block objects on the ActiveDocument then iterate all one by one and check whether it has block attributes or not, if has then need to apply&amp;nbsp;some business logic to them. For this requirement i made a function which is already specified above, but its showing poor performance, i am requesting you, Is there any other way to get rich performance for the this requirement?, really i am struggling more.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help me with sample code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manohar.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 10:52:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6812950#M33148</guid>
      <dc:creator>manohar2375</dc:creator>
      <dc:date>2017-01-18T10:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6812973#M33149</link>
      <description>&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Hi,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;What do you mean by ActiveDocument? Current drawing with Model and All paper spaces? &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;Or current space eg: Model or Layout1 or Layout2 ... etc?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="georgia,palatino" size="3"&gt;The codes that I have posted earlier should get you started and the BlockReference object that assigned to the variable ( br ) is the one that you should do your business on as you want.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 11:01:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6812973#M33149</guid>
      <dc:creator>_Tharwat</dc:creator>
      <dc:date>2017-01-18T11:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6815131#M33150</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/660967"&gt;@_Tharwat&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good morning.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your patients and valuable clarity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My understanding as ActiveDocument is the Model Space and I understood your earlier code, it is also showing poor performance.&lt;/P&gt;&lt;P&gt;Is there any other way to get list of block objects with rich performance from Model Space ActiveDocument.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manohar.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2017 01:28:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6815131#M33150</guid>
      <dc:creator>manohar2375</dc:creator>
      <dc:date>2017-01-19T01:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6815324#M33151</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What do you mean with "poor performance" and "high performance"?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AFAIK, this is one of the fatest way to get all block references in model space and get attributes in block references.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;            using (var tr = db.TransactionManager.StartTransaction())
            {
                var modelSpace = (BlockTableRecord)tr.GetObject(
                    SymbolUtilityServices.GetBlockModelSpaceId(db), OpenMode.ForRead);
                var brClass = RXObject.GetClass(typeof(BlockReference));
                foreach (ObjectId id in modelSpace)
                {
                    if (id.ObjectClass == brClass)
                    {
                        var br = (BlockReference)tr.GetObject(id, OpenMode.ForRead);
                        // do what you need with the block reference here.
                         
                        foreach (ObjectId attId in br.AttributeCollection)
                        {
                            var attRef = (AttributeReference)tr.GetObject(attId, OpenMode.ForRead);
                            // do what you need with the attribute here.
                        }
                    }
                }
                tr.Commit();
            }&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could theorically improve it a little using StartOpenCloseTransaction () instead of StartTransaction() and declaring br and attRef outside the loop, but I'm not certain it will be sensible...&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2017 06:24:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6815324#M33151</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2017-01-19T06:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to read BlockReference objects from ActiveDocumets with rich performance</title>
      <link>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6815453#M33152</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I made a function to get list of block objects from Model space but its taking more time then i though it was poor performance. So i am looking for best way(high performance) than me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hence, previous your code is working. Thank you very much.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manohar.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2017 08:16:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/how-to-read-blockreference-objects-from-activedocumets-with-rich/m-p/6815453#M33152</guid>
      <dc:creator>manohar2375</dc:creator>
      <dc:date>2017-01-19T08:16:33Z</dc:date>
    </item>
  </channel>
</rss>

