<?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: export bom with different order in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3133408#M139489</link>
    <description>&lt;P&gt;I know but it's this way in 2011 and 2012. I don't understand why it was changed to that. Hopefully it will be fixed in a service pack or hotfix but don't count on it. In the meantime, here is what I used to get my code to work. I am only using the Item, Component Type, Part Number, Qty, and Description columns. This will sort it in that order.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public Sub RearrangeColumns(ByVal strExcelFileName As String)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Try&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; oExcelApp = GetObject(, "Excel.Application")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Catch ex As Exception&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; oExcelApp = CreateObject("Excel.Application")&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; oExcelApp.Visible = False&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Try&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oBook As Workbook&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oSheet As Worksheet&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oBook = oExcelApp.Workbooks.Open(strExcelFileName)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet = oBook.WorkSheets(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'cut the item and paste it at the beginning&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("C:C").select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.cut()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("A:A").Select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.Insert(Microsoft.Office.Interop.Excel.XlDirection.xlToRight)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'cut the Part number and paste it as the 3rd column&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("D:D").select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.cut()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("C:C").Select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.Insert(Microsoft.Office.Interop.Excel.XlDirection.xlToRight)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'cut the Qty and paste it as the 4th column﻿&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("E:E").select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.cut()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("D:D").Select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.Insert(Microsoft.Office.Interop.Excel.XlDirection.xlToRight)&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oBook.Save()&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Visible = True&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully that helps.&lt;/P&gt;</description>
    <pubDate>Tue, 23 Aug 2011 17:46:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-08-23T17:46:16Z</dc:date>
    <item>
      <title>export bom with different order</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3123778#M139484</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use vba to export bom to excel. But the orders are different from using "export buttom" in BOM. The "description" is at the front. anyone knows why?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;spec: inventor 2011 &amp;amp; windwo 7&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Sun, 14 Aug 2011 22:25:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3123778#M139484</guid>
      <dc:creator>skyngu</dc:creator>
      <dc:date>2011-08-14T22:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: export bom with different order</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3124290#M139485</link>
      <description>&lt;P&gt;Is this a bug? I tried few times. The order of columns are different. Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Public Sub BOMExport()&lt;/P&gt;&lt;P&gt;&amp;nbsp;Dim oAssy As AssemblyDocument&lt;BR /&gt;&amp;nbsp;Set oAssy = ThisApplication.ActiveDocument&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;' Set a reference to the BOM&lt;BR /&gt;&amp;nbsp;Dim oBOM As BOM&lt;BR /&gt;&amp;nbsp;Set oBOM = oAssy.ComponentDefinition.BOM&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;'Set file save path &amp;amp; temp picture&lt;BR /&gt;&amp;nbsp;Dim sPath As String&lt;BR /&gt;&amp;nbsp;sPath = Left(oAssy.FullFileName, Len(oAssy.FullFileName) - 4) &amp;amp; ".xls"&lt;/P&gt;&lt;P&gt;' switch structured view to all levels or first level only&lt;BR /&gt;&amp;nbsp;oBOM.StructuredViewFirstLevelOnly = True&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;' Make sure that the structured view is enabled.&lt;BR /&gt;&amp;nbsp;oBOM.StructuredViewEnabled = True&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;' Set a reference to the "Structured" BOMView&lt;BR /&gt;&amp;nbsp;Dim oStructuredBOMView As BOMView&lt;BR /&gt;&amp;nbsp;Set oStructuredBOMView = oBOM.BOMViews.Item("Structured")&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;' Export the BOM view to an Excel file&lt;BR /&gt;&amp;nbsp;oStructuredBOMView.Export sPath, kMicrosoftExcelFormat&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2011 14:58:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3124290#M139485</guid>
      <dc:creator>skyngu</dc:creator>
      <dc:date>2011-08-15T14:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: export bom with different order</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3132548#M139486</link>
      <description>&lt;P&gt;anyone has the same problem?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2011 03:26:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3132548#M139486</guid>
      <dc:creator>skyngu</dc:creator>
      <dc:date>2011-08-23T03:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: export bom with different order</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3133098#M139487</link>
      <description>&lt;P&gt;Yeah, I had the same problem. It looks to sort the columns in alphabetical order. So I had to wirte some code to sort it the way i want after the Excel file is generated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2011 15:09:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3133098#M139487</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-23T15:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: export bom with different order</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3133366#M139488</link>
      <description>&lt;P&gt;but it is fine in inventor 2010.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2011 17:12:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3133366#M139488</guid>
      <dc:creator>skyngu</dc:creator>
      <dc:date>2011-08-23T17:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: export bom with different order</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3133408#M139489</link>
      <description>&lt;P&gt;I know but it's this way in 2011 and 2012. I don't understand why it was changed to that. Hopefully it will be fixed in a service pack or hotfix but don't count on it. In the meantime, here is what I used to get my code to work. I am only using the Item, Component Type, Part Number, Qty, and Description columns. This will sort it in that order.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public Sub RearrangeColumns(ByVal strExcelFileName As String)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Try&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; oExcelApp = GetObject(, "Excel.Application")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Catch ex As Exception&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; oExcelApp = CreateObject("Excel.Application")&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; oExcelApp.Visible = False&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Try&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oBook As Workbook&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oSheet As Worksheet&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oBook = oExcelApp.Workbooks.Open(strExcelFileName)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet = oBook.WorkSheets(1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'cut the item and paste it at the beginning&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("C:C").select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.cut()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("A:A").Select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.Insert(Microsoft.Office.Interop.Excel.XlDirection.xlToRight)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'cut the Part number and paste it as the 3rd column&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("D:D").select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.cut()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("C:C").Select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.Insert(Microsoft.Office.Interop.Excel.XlDirection.xlToRight)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'cut the Qty and paste it as the 4th column﻿&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("E:E").select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.cut()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSheet.Columns("D:D").Select()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Selection.Insert(Microsoft.Office.Interop.Excel.XlDirection.xlToRight)&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oBook.Save()&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oExcelApp.Visible = True&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hopefully that helps.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2011 17:46:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3133408#M139489</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-23T17:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: export bom with different order</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3133412#M139490</link>
      <description>&lt;P&gt;stupid formating. The smiley faces are suppose to be a colon and the letter D.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2011 17:47:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3133412#M139490</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-23T17:47:44Z</dc:date>
    </item>
    <item>
      <title>Re: export bom with different order</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3134294#M139491</link>
      <description>&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;I hope there will be a patch from autodesk soon.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2011 11:58:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/3134294#M139491</guid>
      <dc:creator>skyngu</dc:creator>
      <dc:date>2011-08-24T11:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: export bom with different order</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/5554753#M139492</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@jcneal wrote:&lt;BR /&gt;&lt;P&gt;thanks for your reply.&lt;/P&gt;&lt;P&gt;I hope there will be a patch from autodesk soon.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hello, I have found this same problem in Inventor 2015. Exported columns are sorted alphabetically when exporting, even after importing a .styxml style.&lt;/P&gt;&lt;P&gt;Is this patch still planned for release?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2015 12:34:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/export-bom-with-different-order/m-p/5554753#M139492</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-24T12:34:37Z</dc:date>
    </item>
  </channel>
</rss>

