<?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: Extract sequence list from previous_id and next _id variables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539252#M148554</link>
    <description>I am sorry for misleading. As I updated, sorting or grouping by any of the ids is not possible as they are not sequential.</description>
    <pubDate>Thu, 28 Feb 2019 10:52:09 GMT</pubDate>
    <dc:creator>KonstantinVasil</dc:creator>
    <dc:date>2019-02-28T10:52:09Z</dc:date>
    <item>
      <title>Extract id_sequence variable from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539228#M148538</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a data set with two variables previous_id and next_id. The rows are not always ordered so that previous and next of two adjacent rows are the same, there is also no available variable for grouping by list origin.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Clarification:&lt;/STRONG&gt; There is no variable by which to sort or group in the starting data set. The ids of the variables are not sequential numerically or alphabetically, they can be thought of as random (in the example they are sequential for simplicity of illustration).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need an algorithm to track all id's that follow each unique originating id and output it in a new dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data id_lists;
   input prev_id $ next_id $;
   datalines;
a b
w x
b c
x y
c d
;&lt;/PRE&gt;&lt;P&gt;Need:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;data result;
&amp;nbsp; &amp;nbsp; input id_sequence $ sequence_origin$;
&amp;nbsp; &amp;nbsp; datalines;
a a
b a
c a
d a
w w
x w
y w
;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 08:52:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539228#M148538</guid>
      <dc:creator>KonstantinVasil</dc:creator>
      <dc:date>2019-02-28T08:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Extract sequence list from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539230#M148539</link>
      <description>&lt;P&gt;And now please explain how to create the first observation in your result dataset.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 08:14:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539230#M148539</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-02-28T08:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extract sequence list from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539232#M148541</link>
      <description>&lt;P&gt;How to create the results data set is the purpose of the post. What is the particular problem with the first observation?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 08:18:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539232#M148541</guid>
      <dc:creator>KonstantinVasil</dc:creator>
      <dc:date>2019-02-28T08:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Extract sequence list from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539233#M148542</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/189120"&gt;@KonstantinVasil&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;How to create the results data set is the purpose of the post. What is the particular problem with the first observation?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Maybe the word "create" in my post was not well chosen. If you want someone to write code for you, you should explain in full details what you want in way that someone who never had to solve such an issue understands the relationship between what you have and what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would start with sorting id_lists, then use retain or lag to compare prev_id with next_id of the previous observation to set/update sequence origin, retaining that variable seems to be necessary.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 08:31:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539233#M148542</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-02-28T08:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: Extract sequence list from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539236#M148543</link>
      <description>&lt;P&gt;This is one of the main difficulties, there is no variable by which to sort or group! The ids of the variables are not sequential in any way. I will add this clarification to the description.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 08:39:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539236#M148543</guid>
      <dc:creator>KonstantinVasil</dc:creator>
      <dc:date>2019-02-28T08:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Extract sequence list from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539237#M148544</link>
      <description>&lt;P&gt;Try:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data id_lists;
   input prev_id $ next_id $;
   datalines;
a b
w x
b c
x y
c d
;
run;

proc sort data=work.id_lists out=work.sorted;
   by prev_id next_id;
run;


data work.result;
   set work.sorted end=jobDone;

   length id_sequence sequence_origin expected_id $ 1;
   retain sequence_origin expected_id;

   if _n_ = 1 or expected_id ^= prev_id then do;
      sequence_origin = prev_id;
   end;

   id_sequence = prev_id;
   expected_id = next_id;

   output;

   if jobDone then do;
      id_sequence = next_id;
      output;
   end;
run;


proc print;run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Feb 2019 08:40:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539237#M148544</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2019-02-28T08:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Extract sequence list from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539252#M148554</link>
      <description>I am sorry for misleading. As I updated, sorting or grouping by any of the ids is not possible as they are not sequential.</description>
      <pubDate>Thu, 28 Feb 2019 10:52:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539252#M148554</guid>
      <dc:creator>KonstantinVasil</dc:creator>
      <dc:date>2019-02-28T10:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Extract id_sequence variable from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539263#M148560</link>
      <description>&lt;P&gt;No matter what solution you select, you will need to guard against the possibility of an infinite loop.&amp;nbsp; For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data id_lists;
   input prev_id $ next_id $;
   datalines;
a b
b c
c a
;&lt;/PRE&gt;
&lt;P&gt;Perhaps this shouldn't happen, but the program has to make sure or it might run for a very long time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suggest building a format that translates the NEXT_ID to PREV_ID.&amp;nbsp; After creating ID_LISTS:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data id_lists2;
   set id_lists;
   retain fmtname '$id';
   rename next_id = label prev_id=start;
run;
proc format cntlin=id_lists2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Given these translations, you can apply them in this fashion.&amp;nbsp; Begin with the list of IDs you would like to trace:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data result;
&amp;nbsp; &amp;nbsp; input id_sequence $;
&amp;nbsp; &amp;nbsp; datalines;
a 
b 
c 
d 
w 
x 
y 
;&lt;/PRE&gt;
&lt;P&gt;.&amp;nbsp; Then trace them back in this way:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
   set result;
   sequence_origin = id_sequence;
   do k=1 to 50 until (sequence_origin = test_next);
      sequence_origin = test_next;
      test_next = put(sequence_origin, $id.);
   end;
run;


      &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The idea is to loop through the translations up to 50 times per observation (stopping if an origin is found).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's untested code, so you may need to tweak it a bit.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 12:26:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539263#M148560</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-02-28T12:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Extract id_sequence variable from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539269#M148561</link>
      <description>Thank you, but this seems to use the result data to trace back the input. What I need is to produce the result data from the input id_lists itself.</description>
      <pubDate>Thu, 28 Feb 2019 12:49:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539269#M148561</guid>
      <dc:creator>KonstantinVasil</dc:creator>
      <dc:date>2019-02-28T12:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Extract id_sequence variable from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539274#M148563</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think there is a proc for this kind of things but i don't remember the name.&lt;/P&gt;
&lt;P&gt;Here is a solution with a recursive macro. An additional stop criterion should be&lt;/P&gt;
&lt;P&gt;added to avoid infinite loops if they are likely to occur.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data id_lists;
   input prev_id $ next_id $;
   datalines;
a b
w x
b c
x y
c d
;
run;

proc sql noprint;
    CREATE TABLE steps AS
    SELECT DISTINCT step0 FROM
    (
    SELECT prev_id AS step0 FROM id_lists
    UNION
    SELECT next_id AS step0 FROM id_lists
    );
quit;


%macro recursive_join(iter=0);

    %local cont iter1;

    %let iter1=%eval(&amp;amp;iter.+1);

    proc sql noprint;
        CREATE TABLE steps AS
        SELECT i.prev_id AS step&amp;amp;iter1., s.*
        FROM steps s	
        LEFT JOIN id_lists i
        ON i.next_id=s.step&amp;amp;iter.;

        SELECT sum(step&amp;amp;iter1. ne " ")&amp;gt;0
        INTO :cont
        FROM steps;
    quit;

    %if &amp;amp;cont. %then %do;
        %recursive_join(iter=%eval(&amp;amp;iter1.));
    %end;

%mend;

%recursive_join;

data want;
    set steps;
    array s step:;
    rename step0=id_sequence;
    length sequence_origin $8.;

    sequence_origin=coalescec(of s(*));

    keep sequence_origin step0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Feb 2019 13:00:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539274#M148563</guid>
      <dc:creator>gamotte</dc:creator>
      <dc:date>2019-02-28T13:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Extract id_sequence variable from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539276#M148564</link>
      <description>&lt;P&gt;1) if there were one to many relationship in data ? like&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;a b
w x
a c
w y
w d&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) if there are some common nodes in multiple path ,what you gonna do ? like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;a &lt;STRONG&gt;b&lt;/STRONG&gt;
w x
&lt;STRONG&gt;b&lt;/STRONG&gt; c
x &lt;STRONG&gt;b&lt;/STRONG&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 13:08:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539276#M148564</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2019-02-28T13:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Extract id_sequence variable from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539278#M148565</link>
      <description>&lt;P&gt;You're right about that.&amp;nbsp; But it should be easy enough to adapt the program.&amp;nbsp; It starts out the same way, creating the format.&amp;nbsp; Then apply the format to the ID_LISTS data.&amp;nbsp; However, I need to get some clarification to do this right.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why does the number of observations change?&amp;nbsp; What's the logic behind that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 13:11:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539278#M148565</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-02-28T13:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: Extract id_sequence variable from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539304#M148575</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes I managed to modify it. Thanks for the hint - the solution with custom format is very elegant.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;%macro track_id_sequences(id1,id2,input_data,output_data,max_iterations);
	/* 1. Store id data as a custom format = dictionary*/
	data temp; set &amp;amp;input_data.;
	   retain fmtname '$id';
	   rename &amp;amp;id2. = label &amp;amp;id1.=start;
	run;
	proc format cntlin=temp; run;

	/* 2. Translate the next id of each row multiple times until reaching the sequence end
		+ store number of translation = order of the id within the sequence */
	data &amp;amp;output_data.;   set &amp;amp;input_data.;
	   sequence_end = &amp;amp;id1.;
	   test_next = &amp;amp;id2.;
	   do seq_order=1 to &amp;amp;max_iterations. until (sequence_end = test_next);
	      sequence_end = test_next;
	      test_next = put(sequence_end, $id.);
	   end;
	run;

	/* 3. Group sequences by ending and order rows by order within the sequence
		+ add sequence ending as additional row */
	proc sort data=&amp;amp;output_data. out=&amp;amp;output_data.;
		by sequence_end descending seq_order;
	run;
	data &amp;amp;output_data.(keep= id_sequences sequence_end seq_order); set &amp;amp;output_data.;
		by sequence_end;
		if last.sequence_end then do;
			output; &amp;amp;id1. = sequence_end; seq_order=0; output;
		end; else output;
		rename &amp;amp;id1. = id_sequences ; 
	run;
%mend track_id_sequences;

data id_lists;
   input id_prev $ id_next $;
   datalines;
a b
w x
b c
x y
c d
;

%track_id_sequences(id1=id_prev , id2=id_next , input_data=id_lists, output_data=Result, max_iterations=100);&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 Feb 2019 14:19:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539304#M148575</guid>
      <dc:creator>KonstantinVasil</dc:creator>
      <dc:date>2019-02-28T14:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: Extract id_sequence variable from previous_id and next _id variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539324#M148587</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/189120"&gt;@KonstantinVasil&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried to follow&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;'s idea with a format and came to the following solution. It expects input to be a hierarchy, i.e. any node can have only one parent-node, but several child-notes, and I added an extra line to input, so c-&amp;gt;d and c-&amp;gt;e to make an extra child-node.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data id_lists;
   input prev_id $ next_id $;
   datalines;
a b
w x
b c
x y
c d
c e
;

* Check input - any node can have only one parent-node;
* A hierarchy with more than one child-node to a parent-node is supported;
proc sql;
	create table a as
		select next_id, count(*) as antal from id_lists
		group by next_id
		having antal &amp;gt; 1;
quit;
%if &amp;amp;sqlobs = 0 %then %do;

	* Add originating parent-nodes as their own parents;
	* Done because this is part of the wanted output (a-a, w-w);
	proc sql; 
		create table self_origin as 
			select distinct prev_id, prev_id as next_id
			from id_lists
			where 
				prev_id ne '' and
				prev_id not in (select next_id from id_lists);
	quit;
	data have; set id_lists self_origin;
	run;

	* Build a format to translate node to parent-node;
	data fmt; set have (rename=(next_id=start prev_id=label));
		retain fmtname '$parent';
	run;
	proc format cntlin=fmt;
	run;

	* Translate child-note to parent-node until translation is exhausted;
	data a (drop=prev_id oldorig); set have (rename=(next_id=id_sequence));
		sequence_origin = put(id_sequence,$parent.);
		do until (sequence_origin = '*');
			oldorig = sequence_origin;
			sequence_origin = put(sequence_origin,$parent.);
			if oldorig ne '' and oldorig = sequence_origin then do;
				output;
				leave;
			end;
		end;
	run;

	* sort output in same order as wanted, until now no sorting was done;
	proc sort data=a; by sequence_origin id_sequence;
	run;
%end;
%else %do;
	%put Sorry - input data is not a hierarchy;
%end;



&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The output is:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="origin.gif" style="width: 214px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/27577i739FF61AAE61C7F9/image-size/large?v=v2&amp;amp;px=999" role="button" title="origin.gif" alt="origin.gif" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2019 14:50:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extract-id-sequence-variable-from-previous-id-and-next-id/m-p/539324#M148587</guid>
      <dc:creator>ErikLund_Jensen</dc:creator>
      <dc:date>2019-02-28T14:50:05Z</dc:date>
    </item>
  </channel>
</rss>

