<?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: Removing Duplicated Rows in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609154#M177338</link>
    <description>&lt;P&gt;Hi Again&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/276637"&gt;@lindseyn&lt;/a&gt;&amp;nbsp; The following is the demo of the idea I suggested.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
/*creating duplicate sample*/
data have;
set sashelp.class;
if mod(_n_,2)=0 then do _n_=1 to 5;
output;
end;
else output;
run;


data _null_;
 if _n_=1 then do;
  dcl hash H () ;
  if 0 then set have;
  array c _char_;
  array num _numeric_;
  array ct(2)$32;
  array nt(3);
  do _iorc_=1 to dim(ct);
   h.definekey(vname(ct(_iorc_)));
   h.definedata(vname(c(_iorc_)));
  end;
  do _iorc_=1 to dim(nt);
    h.definekey(vname(nt(_iorc_)));
	h.definedata(vname(num(_iorc_)));
  end;
  h.definedone();
 end;
 set have end=z;
  do _iorc_=1 to dim(ct);
    ct(_iorc_)=upcase(compress(c(_iorc_)));
  end;
  do _iorc_=1 to dim(nt);
   nt(_iorc_)=num(_iorc_);
 end;
  rc=h.add();
 if z;
 h.output(dataset:'want');
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reference idea and code aka Plagiarized from&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/21262"&gt;@hashman&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13569"&gt;@DonH&lt;/a&gt;&amp;nbsp; 's Book&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="text parbase section"&gt;
&lt;DIV class=""&gt;
&lt;H3&gt;Data Management Solutions Using SAS&lt;SUP&gt;®&lt;/SUP&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Hash Table Operations: A Business Intelligence Case Study&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H3&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="text parbase section"&gt;
&lt;DIV class=""&gt;
&lt;P&gt;&lt;SPAN class="xsmall-txt-light"&gt;By&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://support.sas.com/en/books/authors/paul-dorfman.html" target="_blank"&gt;Paul Dorfman&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://support.sas.com/en/books/authors/don-henderson.html" target="_blank"&gt;Don Henderson&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All the Best!!!&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
    <pubDate>Tue, 03 Dec 2019 20:14:49 GMT</pubDate>
    <dc:creator>novinosrin</dc:creator>
    <dc:date>2019-12-03T20:14:49Z</dc:date>
    <item>
      <title>Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609140#M177331</link>
      <description>&lt;P&gt;I have combined a few data sets successfully and now I am trying to removing duplicated rows.&amp;nbsp; I have tried accomplishing this the following two ways:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	create table sales.NODuplicates as 
	select distinct * 
	from sales.combined;
quit;


proc sort data = sales.Combined
	NODUPRECS;
By _all_;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;However, neither appear to be working since my data set is still appearing with the duplicated rows. Any ideas as to why this may be happening?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 18:46:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609140#M177331</guid>
      <dc:creator>lindseyn</dc:creator>
      <dc:date>2019-12-03T18:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609144#M177334</link>
      <description>&lt;P&gt;This means that although you view them as duplicates SAS doesn't for some reason. &lt;BR /&gt;&lt;BR /&gt;Some of the reasons:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;All fields are not identical (e.g. an amount)&lt;/LI&gt;
&lt;LI&gt;Some fields have different cases, e.g Jason does not equal JASON&lt;/LI&gt;
&lt;LI&gt;Some fields have invisible white spaces that make it hard to find. &lt;BR /&gt;&lt;BR /&gt;In cases like this you'll need to provide some sample data and example duplicates otherwise we can't help you identify where the issue may be.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;EDIT: a better fix is to determine why you have duplicates in the first place and remove them in the preceding queries.&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/276637"&gt;@lindseyn&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have combined a few data sets successfully and now I am trying to removing duplicated rows.&amp;nbsp; I have tried accomplishing this the following two ways:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	create table sales.NODuplicates as 
	select distinct * 
	from sales.combined;
quit;


proc sort data = sales.Combined
	NODUPRECS;
By _all_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, neither appear to be working since my data set is still appearing with the duplicated rows. Any ideas as to why this may be happening?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 19:19:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609144#M177334</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-12-03T19:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609145#M177335</link>
      <description>&lt;P&gt;Thank you! This is why. It looks like it has to do with spacing and some spelling errors. How would I account for something like this for a data set with approx 1500 rows?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 19:24:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609145#M177335</guid>
      <dc:creator>lindseyn</dc:creator>
      <dc:date>2019-12-03T19:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609146#M177336</link>
      <description>Fix the spacing and spelling errors manually and then remove duplicates. I would probably recommend fixing them as part of your cleaning process. Order should be 1) Import data,  2) clean data 3)merge data 4) analyze&lt;BR /&gt;&lt;BR /&gt;If you find issues in any step, I would go back and fix it at the appropriate step, in this case I would clean it manually using IF/THEN statements in my cleaning processing, and then re-run from there. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Dec 2019 19:27:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609146#M177336</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-12-03T19:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609150#M177337</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp; Brilliant reasoning!!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/276637"&gt;@lindseyn&lt;/a&gt;&amp;nbsp; &amp;nbsp;is the combined one 1500 records? Or each one is approx 1500 records?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that is so small, you could trick with HASH. You need two temp arrays though.&amp;nbsp; 1 for all chars and 2 for all nums&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. first copy the incoming var values to the 2 arrays&lt;/P&gt;
&lt;P&gt;2. While copying i.e assigning compress and upcase the chars&lt;/P&gt;
&lt;P&gt;3. Num values should be okay unless you have rounding discrepancies with floats.&lt;/P&gt;
&lt;P&gt;4. Load all the temp array values as keys in definekey, the data portion would be your corresponding original variables/its values&lt;/P&gt;
&lt;P&gt;5. Use default Hash options, &lt;EM&gt;meaning&amp;nbsp; DO NOT ALLOW DUPS with MULTIDATA:"Y".&amp;nbsp;&lt;/EM&gt;This will make sure you have&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;6.&amp;nbsp;&lt;/EM&gt;Load the contents into the Hash memory resident table&lt;/P&gt;
&lt;P&gt;7. When END=Last records indicator =1 , write the contents of HASH to a SAS dataset. Done deal!!!!!!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 19:39:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609150#M177337</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-12-03T19:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609154#M177338</link>
      <description>&lt;P&gt;Hi Again&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/276637"&gt;@lindseyn&lt;/a&gt;&amp;nbsp; The following is the demo of the idea I suggested.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
/*creating duplicate sample*/
data have;
set sashelp.class;
if mod(_n_,2)=0 then do _n_=1 to 5;
output;
end;
else output;
run;


data _null_;
 if _n_=1 then do;
  dcl hash H () ;
  if 0 then set have;
  array c _char_;
  array num _numeric_;
  array ct(2)$32;
  array nt(3);
  do _iorc_=1 to dim(ct);
   h.definekey(vname(ct(_iorc_)));
   h.definedata(vname(c(_iorc_)));
  end;
  do _iorc_=1 to dim(nt);
    h.definekey(vname(nt(_iorc_)));
	h.definedata(vname(num(_iorc_)));
  end;
  h.definedone();
 end;
 set have end=z;
  do _iorc_=1 to dim(ct);
    ct(_iorc_)=upcase(compress(c(_iorc_)));
  end;
  do _iorc_=1 to dim(nt);
   nt(_iorc_)=num(_iorc_);
 end;
  rc=h.add();
 if z;
 h.output(dataset:'want');
run;

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reference idea and code aka Plagiarized from&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/21262"&gt;@hashman&lt;/a&gt;&amp;nbsp; and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13569"&gt;@DonH&lt;/a&gt;&amp;nbsp; 's Book&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="text parbase section"&gt;
&lt;DIV class=""&gt;
&lt;H3&gt;Data Management Solutions Using SAS&lt;SUP&gt;®&lt;/SUP&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Hash Table Operations: A Business Intelligence Case Study&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H3&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="text parbase section"&gt;
&lt;DIV class=""&gt;
&lt;P&gt;&lt;SPAN class="xsmall-txt-light"&gt;By&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://support.sas.com/en/books/authors/paul-dorfman.html" target="_blank"&gt;Paul Dorfman&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://support.sas.com/en/books/authors/don-henderson.html" target="_blank"&gt;Don Henderson&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All the Best!!!&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 Dec 2019 20:14:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609154#M177338</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-12-03T20:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609215#M177361</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/276637"&gt;@lindseyn&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you! This is why. It looks like it has to do with spacing and some spelling errors. How would I account for something like this for a data set with approx 1500 rows?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Spelling there isn't much that can be done unless you have patterns of errors.&lt;/P&gt;
&lt;P&gt;If by "spacing" you mean leading spaces then the STRIP function will remove leading spaces. In a data step:&amp;nbsp; var = strip(var);&lt;/P&gt;
&lt;P&gt;If by "spacing" you mean that some values have more than a single space between elements then the COMPBL function which removes multiple blanks from a string&amp;nbsp;may help:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;var = compbl(var);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 00:15:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609215#M177361</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-12-04T00:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609515#M177466</link>
      <description>&lt;P&gt;One common misspelling that occurs is below. I tried this code and it did not remove it, There are no leading spaces yet I am not sure why this is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data bmt.want;
	set BMT.old;
	if Country = "United Kingdo"
	then Country = "United Kingdom";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Dec 2019 20:42:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609515#M177466</guid>
      <dc:creator>lindseyn</dc:creator>
      <dc:date>2019-12-04T20:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609518#M177468</link>
      <description>What is the length set to on your Country variable?</description>
      <pubDate>Wed, 04 Dec 2019 21:01:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609518#M177468</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-12-04T21:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609519#M177469</link>
      <description>&lt;P&gt;Right now it is set to 13. However, I tried changing the length and still saw no changes for that value.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 21:10:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609519#M177469</guid>
      <dc:creator>lindseyn</dc:creator>
      <dc:date>2019-12-04T21:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609521#M177470</link>
      <description>13 is why you're getting the issue. Did you change the length of the variable before the SET statement? Otherwise it won't work for increasing the length.</description>
      <pubDate>Wed, 04 Dec 2019 21:12:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609521#M177470</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-12-04T21:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609522#M177471</link>
      <description>&lt;P&gt;This is what I tried:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data bmt.Approval;
	length country $15;
	set BMT.Approval;
	if Country = "United Kingdo"
	then Country = "United Kingdom";
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Yet the column still appeared as this and when checking proc contents length is 15.&amp;nbsp;&lt;/P&gt;&lt;P&gt;United States&lt;/P&gt;&lt;P&gt;Ireland&lt;/P&gt;&lt;P&gt;France&lt;/P&gt;&lt;P&gt;France&lt;/P&gt;&lt;P&gt;Japan&lt;/P&gt;&lt;P&gt;United Kingdo&lt;/P&gt;&lt;P&gt;United Kingdo&lt;/P&gt;&lt;P&gt;... and so on&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 21:20:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609522#M177471</guid>
      <dc:creator>lindseyn</dc:creator>
      <dc:date>2019-12-04T21:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Duplicated Rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609530#M177472</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data bmt.Approval;
	length country $15;
	set BMT.Approval;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Don't code like that, it makes a massive pain in the ass to determine where the issue and fix is. Makes sure to give each data set a unique name to start with and go from there.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try that and post back. It should work so if it's not something else is the issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can try the following as well, but I suspect the above fix will work. If this doesn't work, please post the log from the following and the proc freq output.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data bmt.Approval2;
	length country $15;
	set BMT.Approval;
	if trim(lowcase(Country)) = "united kingdo"
	then Country = "United Kingdom";
        format Country $15.;
run;

*check results;
proc freq data=bmt.approval2;
table country;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2019 21:23:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-Duplicated-Rows/m-p/609530#M177472</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-12-04T21:23:40Z</dc:date>
    </item>
  </channel>
</rss>

