<?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: i have a datastep which i am using to calculate withdrawals but i need to set condition in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400556#M97115</link>
    <description>&lt;P&gt;Yep, standard withdrawal table.&amp;nbsp; In which case I have seen two approaches:&lt;/P&gt;
&lt;P&gt;1) In ADSL programming have a primary reason variable.&lt;/P&gt;
&lt;P&gt;2) Define in the dataset where reasons are kept, which consititutes "primary" and merge that on.&amp;nbsp; Alternatively if they are all to be there, summarise that dataset, then append to your other dataset.&amp;nbsp; I.e. don't do it all in one step.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Oct 2017 11:48:01 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2017-10-03T11:48:01Z</dc:date>
    <item>
      <title>i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400533#M97102</link>
      <description>&lt;P&gt;i have a datastep which i am using to calculate withdrawals but i need to set condition by using another dataset which has multiple reasons for withdrawals. Can i do that in same datastep? any help.&lt;/P&gt;
&lt;P&gt;data attached:&lt;/P&gt;
&lt;P&gt;datastep used is : the one which is bold should be overwritten with the other dataset(_adds) which is attached. How can i take this new dataset by using any condition in the below dataset&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.Disp_Withdraw_w2;
	set work.Disp_Withdraw_w1;
	length desc $50. dsreas_fmt $50. sort1 sort2 8.;

	if compress(actarm) = "BLINDED" then
		do;
			desc = vlabel(SAFFL);
			dsreas_num_BLINDED = 1;
			dsreas_fmt = "Number of Patients";
			sort1 = 1;
			sort2 = 0;
			output;

			if SAFFL='Y' then
				do;
					if EOTSTT = 'Completed' then
						do;
							dsreas_num_BLINDED = 1;
							dsreas_fmt = " Completed";
							sort2 = 1;
							output;
						end;
					else if EOTSTT ='Discontinued' then
						do;
							dsreas_num_BLINDED = 1;
							dsreas_fmt = " Withdrawn";
							sort2 = 2;
							output;
						end;
				end;

			if PDCTREAS ne "" then
				do;
					desc= "ByPrim";
					dsreas_num_BLINDED = 1;
					dsreas_fmt = " "||PDCTREAS;
					sort1 = 88;
					output;
				end;
		end;

	if compress(actarm) = "PENDING" then
		do;
			desc = vlabel(SAFFL);
			dsreas_num_PENDING = 1;
			dsreas_fmt = "Number of Patients";
			sort1 = 1;
			sort2 = 0;
			output;

			if SAFFL='Y' then
				do;
					if EOTSTT = 'Completed' then
						do;
							dsreas_num_PENDING = 1;
							dsreas_fmt = " Completed";
							sort2 = 1;
							output;
						end;
					else if EOTSTT ='Discontinued' then
						do;
							dsreas_num_PENDING = 1;
							dsreas_fmt = " Withdrawn";
							sort2 = 2;
							output;
						end;
				end;

			if PDCTREAS ne "" then
				do;
					desc= "ByPrim";
					dsreas_num_PENDING = 1;
					dsreas_fmt = " "||PDCTREAS;
					sort1 = 88;
					output;
				end;
		end;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 17:01:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400533#M97102</guid>
      <dc:creator>vraj1</dc:creator>
      <dc:date>2017-10-03T17:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400537#M97104</link>
      <description>&lt;P&gt;I believe this has been mentioned on all your other posts:&lt;/P&gt;
&lt;P&gt;PleAsE pOST tEst data IN tHE Form oF a dAtAstep iN the body of YoUR post, usINg the {i} code WinDOW.&lt;/P&gt;
&lt;P&gt;Note the above is done deliberately to show how hard it is to read code which has no formatting issues, has no casing consistency etc.&lt;/P&gt;
&lt;PRE&gt;data work.disp_withdraw_w2;
  set work.disp_withdraw_w1;
  length desc $50. dsreas_fmt $50. sort1 sort2 8.;
  if compress(actarm)="BLINDED" then do;
    desc = vlabel(saffl);
    dsreas_num_blinded=1;
    dsreas_fmt="Number of Patients";
    sort1=1;
    sort2=0;
    output;
    if saffl='Y' then do;
      if eotstt='Completed' then do;
        dsreas_num_blinded=1;
        dsreas_fmt=" Completed";
        sort2=1;
        output;
      end;
      ...
    end;
    ...
  end;
run;&lt;/PRE&gt;
&lt;P&gt;Now to your issue, without seeing the data its hard to say, does the data match in any way, i.e. can you merge the two together based on some condition, if so then do that, and in your if just use the variable merged on from the second dataset, then drop all variables from the second dataset.&amp;nbsp; If you can't merge the two, how does the look up work?&amp;nbsp; You may have to use some sort of code generation from the rules dataset to generate the other.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 09:39:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400537#M97104</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-03T09:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400538#M97105</link>
      <description>&lt;P&gt;Sorry for that. I had indented the code but while pasting it got back to normal. extremely sorry for that.&lt;/P&gt;
&lt;P&gt;attaching the 2 datasets. i tried to merge but in one dataset there is one record per observation and the other has multiple as it contains multiple reasons for withdrawal. i tried to transpose the second one which has multiple records and merge by subjid but then it creates multiple observations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 09:45:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400538#M97105</guid>
      <dc:creator>vraj1</dc:creator>
      <dc:date>2017-10-03T09:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400540#M97106</link>
      <description>&lt;P&gt;I would say that merging is probably best here.&amp;nbsp; Got a meeting so this is only quick, but setup the one with dups as:&lt;/P&gt;
&lt;PRE&gt;data adds_inter (keep=subjid list);
  set adds;
  length list $2000;
  retain list;
  by subjid;
  if first.subjid then list="";
  list=catx(',',list,avalc);
  if last.subjid then output;
run;
&lt;/PRE&gt;
&lt;P&gt;This should give you one row per subject which you can then merge onto the other dataset and use in your if.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 09:50:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400540#M97106</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-03T09:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400541#M97107</link>
      <description>&lt;P&gt;Thanks, but i need to have summary i.e number of withdrawals reasons.&lt;/P&gt;
&lt;P&gt;I am making a table with one option as primary reason for withdrawal and another option with all reasons&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 10:02:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400541#M97107</guid>
      <dc:creator>vraj1</dc:creator>
      <dc:date>2017-10-03T10:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400542#M97108</link>
      <description>&lt;P&gt;As you probably have been told several&amp;nbsp;times by now, use either the "little running man" or {i} icons to post SAS code, logs or text data that must not be reformatted by the forum software. Posting code in the main window is NOT recommended.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 10:03:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400542#M97108</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-03T10:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400544#M97109</link>
      <description>&lt;PRE&gt;data work.Disp_Withdraw_w2;
        set work.Disp_Withdraw_w1;
        length desc $50. dsreas_fmt $50. sort1 sort2 8.;
     if compress(actarm) = "BLINDED" then do;
        	desc = vlabel(SAFFL);
        	dsreas_num_BLINDED = 1;
        	dsreas_fmt = "Number of Patients";
        	sort1 = 1;
        	sort2 = 0;
        	output;
        if SAFFL='Y' then do;
        	if EOTSTT = 'Completed' then do;
        	dsreas_num_BLINDED = 1;
        	dsreas_fmt = "   Completed";
        	sort2 = 1;
        	output;
        end;
        else if EOTSTT ='Discontinued' then do;
        	dsreas_num_BLINDED = 1;
        	dsreas_fmt = "   Withdrawn";
        	sort2 = 2;
        	output;
        end;
        end;
        if PDCTREAS ne "" then do;
        	desc= "ByPrim";
        	dsreas_num_BLINDED = 1;
        	dsreas_fmt = "    "||PDCTREAS;
        	sort1 = 88;
     	   output;
        end;
     end;
     if compress(actarm) = "PENDING" then do;
        	desc = vlabel(SAFFL);
        	dsreas_num_PENDING = 1;
        	dsreas_fmt = "Number of Patients";
        	sort1 = 1;
        	sort2 = 0;
        	output;
        if SAFFL='Y' then do;
        	if EOTSTT = 'Completed' then do;
        	dsreas_num_PENDING = 1;
        	dsreas_fmt = "   Completed";
       		sort2 = 1;
        	output;
        end;
        else if EOTSTT ='Discontinued' then do;
       		dsreas_num_PENDING = 1;
        	dsreas_fmt = "   Withdrawn";
        	sort2 = 2;
        	output;
        end;
        end;
        if PDCTREAS ne "" then do;
        	desc= "ByPrim";
        	dsreas_num_PENDING = 1;
        	dsreas_fmt = "    "||PDCTREAS;
        	sort1 = 88;
        	output;
        end;
     end;
run;&lt;/PRE&gt;</description>
      <pubDate>Tue, 03 Oct 2017 10:22:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400544#M97109</guid>
      <dc:creator>vraj1</dc:creator>
      <dc:date>2017-10-03T10:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400550#M97112</link>
      <description>&lt;P&gt;Is that a summary including each of the reasons from the other dataset?&amp;nbsp; Not sure how its meant to look, if its just a count of the number in the other dataset:&lt;/P&gt;
&lt;PRE&gt;data adds_inter (keep=subjid cnt);
  set adds;
  retain cnt;
  by subjid;
  cnt=ifn(first.subjid,0cnt+1);
  if last.subjid then output;
run;&lt;/PRE&gt;
&lt;P&gt;Basically the idea is to get your data as you need it for the output, so manipulate it into a 1 row structure.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 11:00:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400550#M97112</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-03T11:00:03Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400553#M97114</link>
      <description>&lt;P&gt;Basically i need is an option which keeps either primar reason or all reasons which was there in other dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached is the sample output for primary reason which i get now but i need to keep an option for all reasons from the other dataset.&lt;/P&gt;
&lt;P&gt;and in other dataset it only has reasons for withdrawal.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 11:09:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400553#M97114</guid>
      <dc:creator>vraj1</dc:creator>
      <dc:date>2017-10-03T11:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400556#M97115</link>
      <description>&lt;P&gt;Yep, standard withdrawal table.&amp;nbsp; In which case I have seen two approaches:&lt;/P&gt;
&lt;P&gt;1) In ADSL programming have a primary reason variable.&lt;/P&gt;
&lt;P&gt;2) Define in the dataset where reasons are kept, which consititutes "primary" and merge that on.&amp;nbsp; Alternatively if they are all to be there, summarise that dataset, then append to your other dataset.&amp;nbsp; I.e. don't do it all in one step.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 11:48:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400556#M97115</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-03T11:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400589#M97123</link>
      <description>&lt;P&gt;Thanks a lot, I transposed the other dataset and merged it.&lt;/P&gt;
&lt;P&gt;i did the below after transpose. when i use the below code it gives error as &amp;amp;i resolves to numeric value&lt;/P&gt;
&lt;P&gt;NOTE: Invalid numeric data, SECREAS1='Withdrawal of consent' , at line 1 column 2.&lt;/P&gt;
&lt;P&gt;is there anyother way to do this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;         %if %upcase(&amp;amp;RptReas.) = ALL %then %do;

               	desc = "All";
				dsreas_num_%scan(&amp;amp;ArmList.,&amp;amp;k., #)=%scan(&amp;amp;ReasLst., &amp;amp;i.);
				if dsreas_num_%scan(&amp;amp;ArmList.,&amp;amp;k., #) then do;
					dsreas_fmt = "    "||&amp;amp;i.;
					sort2 = &amp;amp;i.;
					output;
				end;
			%end;

it got resolved to 

data work.Disp_Withdraw_w21;
   set work.Disp_Withdraw_w2;
   if compress(actarm) = "BLINDED" then do;
        desc = "All";
        dsreas_num_BLINDED = SECREAS1;
   if dsreas_num_BLINDED then do;
        dsreas_fmt = "    "||2;
        sort2 = 2;
        output;
    end;
    end;
    if compress(actarm) = "PENDING" then do;
        desc = "All";
        dsreas_num_PENDING = SECREAS1;
    if dsreas_num_PENDING then do;
        dsreas_fmt = "    "||2;
        sort2 = 2;
        output;
     end;
     end;
run;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 13:58:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400589#M97123</guid>
      <dc:creator>vraj1</dc:creator>
      <dc:date>2017-10-03T13:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400590#M97124</link>
      <description>&lt;P&gt;Macro vars are always text, so you can just do:&lt;/P&gt;
&lt;PRE&gt;dsreas_fmt = "    "||&amp;amp;i.;&lt;/PRE&gt;
&lt;P&gt;To&lt;/P&gt;
&lt;PRE&gt;dsreas_fmt = "    &amp;amp;i.";&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 13:53:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400590#M97124</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-03T13:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400593#M97126</link>
      <description>&lt;P&gt;i changed it but still it somehow resoles to numeric&lt;/P&gt;
&lt;PRE&gt;dsreas_num_%scan(&amp;amp;ArmList.,&amp;amp;k., #)=%scan(&amp;amp;ReasLst., &amp;amp;i.);&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;i have attached my test data earlier post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: Invalid numeric data, SECREAS1='Withdrawal of consent' , at line 1 column 2.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 14:00:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/400593#M97126</guid>
      <dc:creator>vraj1</dc:creator>
      <dc:date>2017-10-03T14:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/401296#M97354</link>
      <description>&lt;P&gt;any help on it to fix&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 11:54:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/401296#M97354</guid>
      <dc:creator>vraj1</dc:creator>
      <dc:date>2017-10-05T11:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: i have a datastep which i am using to calculate withdrawals but i need to set condition</title>
      <link>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/401364#M97375</link>
      <description>&lt;P&gt;/Sorry, the code you post:&lt;/P&gt;
&lt;PRE&gt;dsreas_num_%scan(&amp;amp;ArmList.,&amp;amp;k., #)=%scan(&amp;amp;ReasLst., &amp;amp;i.);&lt;/PRE&gt;
&lt;P&gt;Does not match anything else you posted before.&amp;nbsp; What is armlist, reaslist &amp;amp;i etc.&amp;nbsp; Look at what I have posted.&amp;nbsp; Get your data into a usable way, do datasteps to get it as you want then merge the data together, forget macros and other things this is basic data manipulations.&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 14:44:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/i-have-a-datastep-which-i-am-using-to-calculate-withdrawals-but/m-p/401364#M97375</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-05T14:44:46Z</dc:date>
    </item>
  </channel>
</rss>

