<?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: Find the Max Value and the Associated Product in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805194#M317153</link>
    <description>&lt;P&gt;Since you now have a rule for treating tied maximum limits or tied minimum balances, here is a program to accomodate:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want (keep=cust_id max_lmt prod_max_lmt  min_bal prod_min_bal);
  set have ;
  by cust_id;

  retain prod_max_lmt prod_min_bal '       '; 

  if first.cust_id then do;
    set have (keep=limit balance rename=(limit=max_lmt  balance=min_bal)) point=_n_;
    prod_max_lmt=prod;
    prod_min_bal=prod;
  end;
  else do;
    if limit&amp;gt;=max_lmt then do; 
      if limit&amp;gt;max_lmt then prod_max_lmt=prod;
      else prod_max_lmt=catx('&amp;amp;',prod_max_lmt,prod);
      max_lmt=limit;
    end;
    if balance&amp;lt;=min_bal then do; 
      if balance&amp;lt;min_bal then prod_min_bal=prod;
      else prod_min_bal=catx('&amp;amp;',prod_min_bal,prod);
      min_bal=balance;
    end;
  end;
  if last.cust_id;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note the retain statement initializes prod_max_lmt and prod_min_bal to a string of 7 blanks, thereby giving those variables a length of $7, which would accommodate up to 4 single-char PRODs separated by '&amp;amp;'.&amp;nbsp; Use a longer initial series of blanks if you anticipate there will be more than 4 ties.&lt;/P&gt;</description>
    <pubDate>Thu, 31 Mar 2022 02:56:36 GMT</pubDate>
    <dc:creator>mkeintz</dc:creator>
    <dc:date>2022-03-31T02:56:36Z</dc:date>
    <item>
      <title>Find the Max Value and the Associated Product</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805180#M317142</link>
      <description>&lt;P&gt;I am trying to find the max/min value of certain variables and the associated product of that max/min value account.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have:&lt;/P&gt;
&lt;TABLE width="387"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="64"&gt;cust_id&lt;/TD&gt;
&lt;TD width="64"&gt;account&lt;/TD&gt;
&lt;TD width="93"&gt;prod&lt;/TD&gt;
&lt;TD width="74"&gt;limit&lt;/TD&gt;
&lt;TD width="92"&gt;balance&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;111&lt;/TD&gt;
&lt;TD&gt;1234&lt;/TD&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10,000&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 500&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;111&lt;/TD&gt;
&lt;TD&gt;5678&lt;/TD&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20,000&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,000&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;111&lt;/TD&gt;
&lt;TD&gt;2345&lt;/TD&gt;
&lt;TD&gt;C&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3,000&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,000&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;111&lt;/TD&gt;
&lt;TD&gt;6789&lt;/TD&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,000&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3,000&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;222&lt;/TD&gt;
&lt;TD&gt;4321&lt;/TD&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,000&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,000&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;222&lt;/TD&gt;
&lt;TD&gt;8765&lt;/TD&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4,000&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,000&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;222&lt;/TD&gt;
&lt;TD&gt;7654&lt;/TD&gt;
&lt;TD&gt;C&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6,000&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5,000&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;Want:&lt;/P&gt;
&lt;TABLE width="387"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="61.7px" height="30px"&gt;cust_id&lt;/TD&gt;
&lt;TD width="71.4625px" height="30px"&gt;max_lmt&lt;/TD&gt;
&lt;TD width="112.375px" height="30px"&gt;prod_max_lmt&lt;/TD&gt;
&lt;TD width="67.0375px" height="30px"&gt;min_bal&lt;/TD&gt;
&lt;TD width="112.4px" height="30px"&gt;prod_min_bal&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="61.7px" height="30px"&gt;111&lt;/TD&gt;
&lt;TD width="71.4625px" height="30px"&gt;20,000&lt;/TD&gt;
&lt;TD width="112.375px" height="30px"&gt;B&lt;/TD&gt;
&lt;TD width="67.0375px" height="30px"&gt;500&lt;/TD&gt;
&lt;TD width="112.4px" height="30px"&gt;A&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="61.7px" height="30px"&gt;222&lt;/TD&gt;
&lt;TD width="71.4625px" height="30px"&gt;6,000&lt;/TD&gt;
&lt;TD width="112.375px" height="30px"&gt;C&lt;/TD&gt;
&lt;TD width="67.0375px" height="30px"&gt;1,000&lt;/TD&gt;
&lt;TD width="112.4px" height="30px"&gt;A&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I could use a few data steps to achieve that, but are there any efficient way? Thanks in advance.&lt;/P&gt;
&lt;P&gt;/****get max_lmt prod_max_lmt****/&lt;/P&gt;
&lt;P&gt;proc sort data=have;&lt;/P&gt;
&lt;P&gt;by cust_id limit;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;data have1(keep=cust_id prod limit rename=(limit=max_lmt prod=max_prod_lmt));&lt;/P&gt;
&lt;P&gt;set have;&lt;/P&gt;
&lt;P&gt;by cust_id limit;&lt;/P&gt;
&lt;P&gt;if last.cust_id;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 00:49:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805180#M317142</guid>
      <dc:creator>zhige50</dc:creator>
      <dc:date>2022-03-31T00:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Max Value and the Associated Product</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805186#M317146</link>
      <description>&lt;P&gt;And what do you want to do if there are multiple observations with the max limit, but different products?&amp;nbsp; Or tied minimum balance with different products?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 02:03:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805186#M317146</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2022-03-31T02:03:32Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Max Value and the Associated Product</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805187#M317147</link>
      <description>&lt;P&gt;Good question. For example, if product A &amp;amp; B have same max limit, then the prod_max_lmt should be 'A&amp;amp;B'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 02:08:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805187#M317147</guid>
      <dc:creator>zhige50</dc:creator>
      <dc:date>2022-03-31T02:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Max Value and the Associated Product</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805188#M317148</link>
      <description>&lt;P&gt;Assuming you have no ties for max_lmt or min_bal, then this program will do what you want:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want (keep=cust_id max_lmt prod_max_lmt  min_bal prod_min_bal);
  set have ;
  by cust_id;
  if first.cust_id then do;
    set have (keep=limit prod rename=(limit=max_lmt   prod=prod_max_lmt)) point=_n_;
    set have (keep=balance prod rename=(balance=min_bal prod=prod_min_bal)) point=_n_;
  end;
  if limit&amp;gt;max_lmt then do; 
    max_lmt=limit;
    prod_max_lmt=prod;
  end;
  if balance&amp;lt;min_bal then do; 
    min_bal=balance;
    prod_min_bal=prod;
  end;
  if last.cust_id;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Every time this program encounters a new cust_id, it re-reads that observation with via the&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;IF FIRST.ID THEN DO and&amp;nbsp; twiSET .... POINT= ... ;&lt;/STRONG&gt;&lt;/EM&gt; statements.&amp;nbsp; The variables read by these conditional set statements are renamed, and will therefore not be overwritten by a new SET action until the next cust_id is encountered.&amp;nbsp; These variables are retained over the current cust_id, and updated as a new maximum limit or minimum balance is encountered.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The last statement "&lt;EM&gt;&lt;STRONG&gt;if last.custid;&lt;/STRONG&gt;&lt;/EM&gt;" is a "subsetting if".&amp;nbsp; Only the values reached at the end of the cust_id will be output to the new dataset.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 02:24:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805188#M317148</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2022-03-31T02:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Max Value and the Associated Product</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805193#M317152</link>
      <description>&lt;P&gt;Proc means/summary comes close until you no longer have a unique Max/Min identfier&lt;/P&gt;
&lt;PRE&gt;
proc means data=have nway noprint ;
   class cust_id;
   var limit balance;
   output out=want (drop=_type_ _freq_)
      idgroup ( max(limit) out(limit prod )= max_lmt prod_max_lmt 	  )
      idgroup ( min(balance) out(balance prod )= min_lmt prod_min_bal 	  )
   ;
run;
&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Mar 2022 02:53:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805193#M317152</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-03-31T02:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Max Value and the Associated Product</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805194#M317153</link>
      <description>&lt;P&gt;Since you now have a rule for treating tied maximum limits or tied minimum balances, here is a program to accomodate:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want (keep=cust_id max_lmt prod_max_lmt  min_bal prod_min_bal);
  set have ;
  by cust_id;

  retain prod_max_lmt prod_min_bal '       '; 

  if first.cust_id then do;
    set have (keep=limit balance rename=(limit=max_lmt  balance=min_bal)) point=_n_;
    prod_max_lmt=prod;
    prod_min_bal=prod;
  end;
  else do;
    if limit&amp;gt;=max_lmt then do; 
      if limit&amp;gt;max_lmt then prod_max_lmt=prod;
      else prod_max_lmt=catx('&amp;amp;',prod_max_lmt,prod);
      max_lmt=limit;
    end;
    if balance&amp;lt;=min_bal then do; 
      if balance&amp;lt;min_bal then prod_min_bal=prod;
      else prod_min_bal=catx('&amp;amp;',prod_min_bal,prod);
      min_bal=balance;
    end;
  end;
  if last.cust_id;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note the retain statement initializes prod_max_lmt and prod_min_bal to a string of 7 blanks, thereby giving those variables a length of $7, which would accommodate up to 4 single-char PRODs separated by '&amp;amp;'.&amp;nbsp; Use a longer initial series of blanks if you anticipate there will be more than 4 ties.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 02:56:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805194#M317153</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2022-03-31T02:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Max Value and the Associated Product</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805208#M317161</link>
      <description>&lt;P&gt;Slightly different solution:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; max_limit = 0;
      min_balance = constant('big');
      call missing(prod_max_limit, prod_min_balance);
   end;

   if limit &amp;gt; max_limit then do;
      max_limit = limit;
      prod_max_limit = prod;
   end;
   else do;
      if limit = max_limit then do;
         prod_max_limit = catx('&amp;amp;', prod_max_limit, prod);
      end;
   end;

   if balance &amp;lt; min_balance then do;
      min_balance = balance;
      prod_min_balance = prod;
   end;
   else do;
      if balance = min_balance then do;
         prod_min_balance = catx('&amp;amp;', prod_min_balance, prod);
      end;
   end;

   if last.cust_id then do;
      output;
   end;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Mar 2022 06:59:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805208#M317161</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2022-03-31T06:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Max Value and the Associated Product</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805236#M317181</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;prov sql;
create table max as
  select *
  from have
  group by cust_id
  having limit = max(limit)
;
quit;

data want;
set max;
by cust_id;
length products $100;
retain products;
if first.cust_id then products = "";
products = catx(",",products,prod);
if last.cust_id;
drop prod;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Add additional code in the DATA step for other variables you want in the output.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2022 10:38:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805236#M317181</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2022-03-31T10:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Max Value and the Associated Product</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805241#M317184</link>
      <description>&lt;PRE&gt;data have;
infile cards expandtabs;
input cust_id account  prod $  limit : comma. balance : comma.;
cards;
111 1234 A         10,000                 500
111 5678 B         20,000                 1,000
111 2345 C           3,000                 2,000
111 6789 B           2,000                 3,000
222 4321 A           1,000                 2,000
222 8765 A           4,000                 1,000
222 7654 C           6,000                    5,000
;

proc sort data=have out=temp1;by cust_id descending limit;run;
data temp11;
 set temp1;
 by cust_id descending limit;
 if first.cust_id then n=0;
 if first.limit then n+1;
 if n=1;
run;
data part1;
do until(last.cust_id);
 set temp11;
 by cust_id;
length prod_max_lmt  $ 200;
prod_max_lmt=catx('&amp;amp;',prod_max_lmt,prod);
end;
keep cust_id prod_max_lmt limit;
rename limit=max_lmt;
run;


proc sort data=have out=temp2;by cust_id  balance;run;
data temp21;
 set temp2;
 by cust_id balance ;
 if first.cust_id then n=0;
 if first.balance then n+1;
 if n=1;
run;
data part2;
do until(last.cust_id);
 set temp21;
 by cust_id;
length prod_min_bal  $ 200;
prod_min_bal=catx('&amp;amp;',prod_min_bal,prod);
end;
keep cust_id prod_min_bal balance;
rename balance=min_bal;
run;



data want;
merge part1 part2;
by cust_id;
run;&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Mar 2022 11:43:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Find-the-Max-Value-and-the-Associated-Product/m-p/805241#M317184</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2022-03-31T11:43:30Z</dc:date>
    </item>
  </channel>
</rss>

