<?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: Implementing a child-parent hierarchical datamodel using double relationships in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372130#M138385</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's my script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$#,##0.00;-$#,##0.00';&lt;/P&gt;&lt;P&gt;SET TimeFormat='hh:mm:ss TT';&lt;/P&gt;&lt;P&gt;SET DateFormat='DD/MM/YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;SET MonthNames='ene;feb;mar;abr;may;jun;jul;ago;sep;oct;nov;dic';&lt;/P&gt;&lt;P&gt;SET DayNames='lun;mar;mié;jue;vie;sáb;dom';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Source Data&lt;/P&gt;&lt;P&gt;Part:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PartNumber_Part, Name_Part&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000, SkateBoard&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2000, Skates&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1100, Board&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200, Shoe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1110, Wheels&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BOMHierarchy:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Child_Part_BOMHierarchy, Parent_Part_BOMHierarchy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000, 1000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2000, 2000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1100, 1000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200, 2000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1110, 1100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1110, 1200&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fact:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PartNumber_Part, Cost&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1100, 5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200, 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1110, .1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Data Model&lt;/P&gt;&lt;P&gt;Hierarchy_Bridge:&lt;/P&gt;&lt;P&gt;HierarchyBelongsTo(PartNumber_Part,Parent_Part_BOMHierarchy,PartNumber_Drop,PartNumber_Ancestor, Ancestor_Drop)&lt;/P&gt;&lt;P&gt;Load Child_Part_BOMHierarchy as PartNumber_Part,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Child_Part_BOMHierarchy as PartNumber_Drop,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Parent_Part_BOMHierarchy &lt;/P&gt;&lt;P&gt;Resident BOMHierarchy;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Part_Catalog:&lt;/P&gt;&lt;P&gt;Load PartNumber_Part as PartNumber_Ancestor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name_Part&lt;/P&gt;&lt;P&gt;Resident Part;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table BOMHierarchy, Part;&lt;/P&gt;&lt;P&gt;Drop fields PartNumber_Drop, Ancestor_Drop from Hierarchy_Bridge;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Mar 2012 14:47:20 GMT</pubDate>
    <dc:creator>pover</dc:creator>
    <dc:date>2012-03-30T14:47:20Z</dc:date>
    <item>
      <title>Implementing a child-parent hierarchical datamodel using double relationships</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372125#M138380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me first explain you the details about my context.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The child-parent hierarchical structure in my database model concerns PARTS (mechanical structures, electrical assemblies, bits and pieces, etc.) identified with part numbers (unique alphanumeric sequence) and each PART can (or not) be made of sub-components which also are PARTS (and therefore parts also have parents). However, the same PART can be used in more than 1 assembly (i.e. can have completely different parents)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(just to give you a better idea visually speaking)&lt;/P&gt;&lt;P&gt;&lt;IMG alt="hierarchy.PNG" class="jive-image" src="https://community.qlik.com/legacyfs/online/12473_hierarchy.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am aware that this might not be the usual hierarchical scenario, and this could make things harder, but I do not really need to have a hierarchical tree-view or anything like that (unless it's possible of course), basically I just want to be able to know which parts are the children and parents of 1 PART (even if it's just using basic highlighted SELECT fields).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using MS Access, I made a model that looks like this (if you have a better idea please let me know) : &lt;BR /&gt;&lt;IMG alt="BOMHierarchy.PNG" class="jive-image-thumbnail jive-image" onclick="" src="https://community.qlik.com/legacyfs/online/12474_BOMHierarchy.PNG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;As you can see in the 2 tables shown here, it's BOMHierarchy that hold which parts are made with which other parts.&lt;BR /&gt;The problem here is that within 1 table there are 2 foreign keys referencing the same primary key.&lt;BR /&gt;I am afraid that such a "double relationship" would force me to duplicate (or "fork") the Part table into Part_Child and Part_Parent, causing all sorts of other tables to be duplicated in the same way (Part is pretty much the central point of my model).&lt;BR /&gt;If you don't understand what I am talking about (it's mostly about avoiding loops), please see my other thread here : &lt;A _jive_internal="true" href="https://community.qlik.com/message/204778"&gt;http://community.qlik.com/message/204778&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you need I can provide you with a full screenshot of my whole Access data model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your time&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2012 19:39:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372125#M138380</guid>
      <dc:creator />
      <dc:date>2012-03-27T19:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing a child-parent hierarchical datamodel using double relationships</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372126#M138381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should be able to use the Hierarchy() and HierarchyBelongsTo() functions without trouble.&amp;nbsp; See the attached example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karl&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Mar 2012 21:46:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372126#M138381</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2012-03-27T21:46:47Z</dc:date>
    </item>
    <item>
      <title>Implementing a child-parent hierarchical datamodel using double relationships</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372127#M138382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Thanks for the document, it helped me understand how these functions work.&lt;BR /&gt;But it seems that it only works with Nodes that have 1 or 0 parent, and that the reference to the parent node is in the same table.&lt;/P&gt;&lt;P&gt;As you can see from the models in my original post, the nodes are stored in PART and the hierarchy (links between PART nodes) are held in BOMHIERARCHY.&lt;BR /&gt;I fail to see how I could use such Hierarchy() functions when there are 2 tables involved (Node table and Hierarchy table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 15:11:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372127#M138382</guid>
      <dc:creator />
      <dc:date>2012-03-28T15:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing a child-parent hierarchical datamodel using double relationships</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372128#M138383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dominique, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView hierarchy functions work with multiple parents.&amp;nbsp; The example has a part called wheels that is found in skates and skateboards.&amp;nbsp; QlikView can sometimes use the same model you have designed for operational systems, but it is usually better to create a dimensional model in QlikView or a Star Schema.&amp;nbsp; In this case, you could have a parts catalog that is linked to a bridge table that is based on you BOMHierarchy table and helps link the parts catalog correctly to a fact table where you might have costs or quantity.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've included a slightly more complex example in the post. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2012 17:39:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372128#M138383</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2012-03-28T17:39:42Z</dc:date>
    </item>
    <item>
      <title>Implementing a child-parent hierarchical datamodel using double relationships</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372129#M138384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hello Karl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have looked at your most recent hierarchy example and I have decided to duplicate my PART table into a PartCatalog, which would only contain the ID and the name, but the orignal PART&amp;nbsp; keeps all the data and facts. The "bridge" table would be my BOMHierarchy table indeed.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;However, since I only have the Personal Desktop edition, I have very limited uses to open your documents, so I would greatly appreciate if you could paste the load script here (or any other piece of code deemed useful).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am struggling to fully comprehend the Hierarchy functions, but I am using the Reference manual to help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 14:14:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372129#M138384</guid>
      <dc:creator />
      <dc:date>2012-03-30T14:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing a child-parent hierarchical datamodel using double relationships</title>
      <link>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372130#M138385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's my script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$#,##0.00;-$#,##0.00';&lt;/P&gt;&lt;P&gt;SET TimeFormat='hh:mm:ss TT';&lt;/P&gt;&lt;P&gt;SET DateFormat='DD/MM/YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;SET MonthNames='ene;feb;mar;abr;may;jun;jul;ago;sep;oct;nov;dic';&lt;/P&gt;&lt;P&gt;SET DayNames='lun;mar;mié;jue;vie;sáb;dom';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Source Data&lt;/P&gt;&lt;P&gt;Part:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PartNumber_Part, Name_Part&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000, SkateBoard&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2000, Skates&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1100, Board&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200, Shoe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1110, Wheels&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BOMHierarchy:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Child_Part_BOMHierarchy, Parent_Part_BOMHierarchy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1000, 1000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2000, 2000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1100, 1000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200, 2000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1110, 1100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1110, 1200&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fact:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PartNumber_Part, Cost&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1100, 5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200, 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1110, .1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Data Model&lt;/P&gt;&lt;P&gt;Hierarchy_Bridge:&lt;/P&gt;&lt;P&gt;HierarchyBelongsTo(PartNumber_Part,Parent_Part_BOMHierarchy,PartNumber_Drop,PartNumber_Ancestor, Ancestor_Drop)&lt;/P&gt;&lt;P&gt;Load Child_Part_BOMHierarchy as PartNumber_Part,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Child_Part_BOMHierarchy as PartNumber_Drop,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Parent_Part_BOMHierarchy &lt;/P&gt;&lt;P&gt;Resident BOMHierarchy;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Part_Catalog:&lt;/P&gt;&lt;P&gt;Load PartNumber_Part as PartNumber_Ancestor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Name_Part&lt;/P&gt;&lt;P&gt;Resident Part;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table BOMHierarchy, Part;&lt;/P&gt;&lt;P&gt;Drop fields PartNumber_Drop, Ancestor_Drop from Hierarchy_Bridge;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2012 14:47:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implementing-a-child-parent-hierarchical-datamodel-using-double/m-p/372130#M138385</guid>
      <dc:creator>pover</dc:creator>
      <dc:date>2012-03-30T14:47:20Z</dc:date>
    </item>
  </channel>
</rss>

