<?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: Extracting data for last day of the year in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336773#M272464</link>
    <description>&lt;P&gt;Nobody is asking for the whole dataset.&amp;nbsp; A sample of a couple of gvkey's and a couple years would be fine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, can we nail down this question?&amp;nbsp; Are you trying to do fiscal year, or calendar year?&amp;nbsp; Your sample data show no information on fiscal year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HOWEVER, you mention an annual dataset in addition to your daily dataset.&amp;nbsp; Since you are using compustat data (I recognise gvkey and iid as company and stock issue identifier), your annual file almost certainly has gvkey and datadate as well - where datadate in annual is end-of-fiscal-year.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So let's assume you have two datasets&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;DAILY, sorted by gvkey and datadate, with about 200 obs per year for each gvkey.&amp;nbsp; DATADATE is the calendar date of stock trading.&lt;/LI&gt;
&lt;LI&gt;ANNUAL, also sorted by gvkey and datadate, also sorted by gvkey/datadate, with one record per year, where datadate is the end-of-fiscal year.&lt;/LI&gt;
&lt;LI&gt;You want data for last DAILY record matching or just prior to the annual record, merged with data from the annual dataset.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set daily (in=in_day keep=gvkey datadate)  annual (in=in_annual);
  by gvkey datadate;
  if in_day then set daily (drop=gvkey rename=(datadate=datadate_daily));
  if in_annual;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Notes:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The first SET statement has two data sets in it: daily (but with gvkey and datadate only) and annual (with all its vars).&lt;/LI&gt;
&lt;LI&gt;Ordinarily all the daily would be read first, then all the annual.&amp;nbsp; But the BY statement tells sas to interleave the two data sets, by gvkey and datadate.&amp;nbsp; Now if daily happens to have an identical gvkey/datadate with annual, the daily record will still precede the annual record, because the daily dataset name is to the left of the annual dataset name.&lt;/LI&gt;
&lt;LI&gt;The IN_DAY and IN_ANNUAL vars are just dummies telling you whether the record-in-hand is from daily or annual.&lt;/LI&gt;
&lt;LI&gt;the "if in_day then set daily" rereads the daily record, this time with&amp;nbsp;all the remaining vars of the daily record.&amp;nbsp; This is done separately becuase the first SET statement would convert all the daily vars to missing when an annual record is read.&amp;nbsp; That's why the first SET limits the daily vars exposed to this action.&lt;/LI&gt;
&lt;LI&gt;The "if in_annual" is a subsetting if, so that the data step only output all those vars when the if_annual is true.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Caveat: this assumes only on stock issue per gvkey.&amp;nbsp; If you daily dataset has more than one IID per gvkey, you'll need some adjustment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Editted addition:&amp;nbsp; Caveat Number 2:&amp;nbsp; The above&amp;nbsp;assumes that, for each gvkey, the first datadate will be from DAILY.&amp;nbsp; Otherwise there is a risk of combinining daily data from a prior gvkey&amp;nbsp;with annual data from the current gvkey.&amp;nbsp; If that is a concern then add these two statement after the "IF IN_ANNUAL":&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  output;
  call missing (of _all_);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 28 Feb 2017 23:30:20 GMT</pubDate>
    <dc:creator>mkeintz</dc:creator>
    <dc:date>2017-02-28T23:30:20Z</dc:date>
    <item>
      <title>Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336429#M272455</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a dataset made up of daily stock prices and daily shares outstanding and I would want to extract the stock prices and shares outstanding on the last day of trading for each fiscal year.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your help will be very much appreciated. Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 03:45:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336429#M272455</guid>
      <dc:creator>Theo_Gh</dc:creator>
      <dc:date>2017-02-28T03:45:34Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336431#M272456</link>
      <description>&lt;P&gt;Look up BY Group processing. Associate a BY group with the FiscalYear and Date and then use LAST. to extract the last date.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want code samples, post sample data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lrcon/69852/HTML/default/viewer.htm#n138da4gme3zb7n1nifpfhqv7clq.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lrcon/69852/HTML/default/viewer.htm#n138da4gme3zb7n1nifpfhqv7clq.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 04:26:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336431#M272456</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-28T04:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336439#M272457</link>
      <description>&lt;P&gt;What does your dataset look like?&amp;nbsp; It must have a date variable, per your description.&amp;nbsp; Does it also already have a fiscal year variable?&amp;nbsp; If so, then you can implement by-group processing as documented in the link provided by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If it doesn't already have a fiscal year var, what data does it have to determine fiscal year?&amp;nbsp; (I have dealt with dataset that have a fiscal-year-end-month variable,&amp;nbsp; i.e. 5 means May is the last month of each&amp;nbsp;fiscal year, 12 means december, etc.).&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 04:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336439#M272457</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-02-28T04:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336443#M272458</link>
      <description>&lt;P&gt;The dataset is too large to upload here but it looks like this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;Date &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; close price &amp;nbsp; s/oustanding&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2 Jan 2014 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 8 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;245&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;31 Dec 2014 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 9 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 340&lt;/P&gt;&lt;P&gt;2 Jan 2015 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 10 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;500&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;31 Dec 2015 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;7 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 450&lt;/P&gt;&lt;P&gt;If I use this code:&lt;/P&gt;&lt;P&gt;data wanted; set dataset;&lt;/P&gt;&lt;P&gt;by month non sorted&lt;/P&gt;&lt;P&gt;if last.month;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;That would not give me data on 31 Dec 2014 and 2015, would it ?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 06:24:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336443#M272458</guid>
      <dc:creator>Theo_Gh</dc:creator>
      <dc:date>2017-02-28T06:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336444#M272459</link>
      <description>&lt;P&gt;What if Dec 31 is a Saturday? You don't have values for every day.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The gist of code is correct but don't use the NOTSORTED option if that's what you intended, your code appears garbled.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 06:31:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336444#M272459</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-02-28T06:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336505#M272460</link>
      <description>&lt;P&gt;I think you are thinking in the wrong direction. You probably only need proc means.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;* .. imagine these are your data;
Data A (Drop=i);
  i=1;
  Format Date Date9.;
  Do While (i&amp;lt;=1500);
    Date='01JAN2010'd+i;
    Price=Round(Rannor(1)*5+100,0.01);
	Shares=Round(Ranuni(1)*1000,1);
	i=i+Ceil(Ranuni(1)*2+1); * .. want the time series to be intermittent;
	Output;
  End;
Run;

* .. then use a auxiliary variable ;
Data A;
  Set A;
  Year=Year(Date);
Run;

Proc Means Data=A NoPrint;
  By Year;
  Var Date;
  Output Out=A_Result (Drop=_: Year)
    MaxID(Date(Price) Date(Shares))=Price Shares
	Max(Date)=;
Run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Feb 2017 11:26:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336505#M272460</guid>
      <dc:creator>user24feb</dc:creator>
      <dc:date>2017-02-28T11:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336532#M272461</link>
      <description>&lt;P&gt;You originally wrote &lt;EM&gt;&lt;STRONG&gt;fiscal year&lt;/STRONG&gt;&lt;/EM&gt;, but you are not showing any data that allows the determination of fiscal year, only calendar year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your example does not show a variable named month, yet your program uses such a variable.&amp;nbsp; How about a sample of the actual data, with the actual vars?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you really only have a date var and you want calendar year-end&amp;nbsp;and your data is sorted chronologically, then&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data end_of_year;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; merge have&amp;nbsp; have (firstobs=2 keep=date rename=(date=next_date));&lt;/P&gt;
&lt;P&gt;&amp;nbsp; if year(date)^=year(next_date);&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note this will keep the last record of have, no matter what part of the year it is from.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 12:56:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336532#M272461</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-02-28T12:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336591#M272462</link>
      <description>&lt;P&gt;Here is an example using dataset sashelp.stocks, which is a monthly dataset sorted by ascending stock (IBM, Intel, Microsoft) and then descending chronological order of date.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort data=sashelp.stocks out=mystocks;
  by stock date;
run;

data end_of_year;
  set mystocks;
  by stock;

  merge mystocks (keep=date) 
        mystocks (firstobs=2 keep=date rename=(date=next_date));
  if last.stock or year(next_date)&amp;gt;year(date);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The SET statement followed by a BY statement tells sas to establish dummy vars first.stock and last.stock to indicate the status of the record-in-hand.&amp;nbsp; The MERGE statement (unaccompanied by a BY statement) allows the current date to be compared to the next date (i.e. a 1-period "lead") to determine change of year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2017 15:13:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336591#M272462</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-02-28T15:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336627#M272463</link>
      <description>Sorry, everyone. This is a sample of my dataset; the whole dataset is obviously too large to upload here. As you can see the only date variable I have is the data date. I have another dataset which is annual and has gvkey as an identifier with which I will merge this data after the extraction. I don't know if data date is an appropriate date but that's all I have as you can see.</description>
      <pubDate>Tue, 28 Feb 2017 16:40:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336627#M272463</guid>
      <dc:creator>Theo_Gh</dc:creator>
      <dc:date>2017-02-28T16:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336773#M272464</link>
      <description>&lt;P&gt;Nobody is asking for the whole dataset.&amp;nbsp; A sample of a couple of gvkey's and a couple years would be fine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, can we nail down this question?&amp;nbsp; Are you trying to do fiscal year, or calendar year?&amp;nbsp; Your sample data show no information on fiscal year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HOWEVER, you mention an annual dataset in addition to your daily dataset.&amp;nbsp; Since you are using compustat data (I recognise gvkey and iid as company and stock issue identifier), your annual file almost certainly has gvkey and datadate as well - where datadate in annual is end-of-fiscal-year.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So let's assume you have two datasets&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;DAILY, sorted by gvkey and datadate, with about 200 obs per year for each gvkey.&amp;nbsp; DATADATE is the calendar date of stock trading.&lt;/LI&gt;
&lt;LI&gt;ANNUAL, also sorted by gvkey and datadate, also sorted by gvkey/datadate, with one record per year, where datadate is the end-of-fiscal year.&lt;/LI&gt;
&lt;LI&gt;You want data for last DAILY record matching or just prior to the annual record, merged with data from the annual dataset.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
  set daily (in=in_day keep=gvkey datadate)  annual (in=in_annual);
  by gvkey datadate;
  if in_day then set daily (drop=gvkey rename=(datadate=datadate_daily));
  if in_annual;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Notes:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The first SET statement has two data sets in it: daily (but with gvkey and datadate only) and annual (with all its vars).&lt;/LI&gt;
&lt;LI&gt;Ordinarily all the daily would be read first, then all the annual.&amp;nbsp; But the BY statement tells sas to interleave the two data sets, by gvkey and datadate.&amp;nbsp; Now if daily happens to have an identical gvkey/datadate with annual, the daily record will still precede the annual record, because the daily dataset name is to the left of the annual dataset name.&lt;/LI&gt;
&lt;LI&gt;The IN_DAY and IN_ANNUAL vars are just dummies telling you whether the record-in-hand is from daily or annual.&lt;/LI&gt;
&lt;LI&gt;the "if in_day then set daily" rereads the daily record, this time with&amp;nbsp;all the remaining vars of the daily record.&amp;nbsp; This is done separately becuase the first SET statement would convert all the daily vars to missing when an annual record is read.&amp;nbsp; That's why the first SET limits the daily vars exposed to this action.&lt;/LI&gt;
&lt;LI&gt;The "if in_annual" is a subsetting if, so that the data step only output all those vars when the if_annual is true.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Caveat: this assumes only on stock issue per gvkey.&amp;nbsp; If you daily dataset has more than one IID per gvkey, you'll need some adjustment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Editted addition:&amp;nbsp; Caveat Number 2:&amp;nbsp; The above&amp;nbsp;assumes that, for each gvkey, the first datadate will be from DAILY.&amp;nbsp; Otherwise there is a risk of combinining daily data from a prior gvkey&amp;nbsp;with annual data from the current gvkey.&amp;nbsp; If that is a concern then add these two statement after the "IF IN_ANNUAL":&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  output;
  call missing (of _all_);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Feb 2017 23:30:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336773#M272464</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2017-02-28T23:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting data for last day of the year</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336837#M272465</link>
      <description>Thank you so much for your patience.&lt;BR /&gt;I apologize that I'm not always able to make my questions clear and straightforward.</description>
      <pubDate>Wed, 01 Mar 2017 04:39:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-data-for-last-day-of-the-year/m-p/336837#M272465</guid>
      <dc:creator>Theo_Gh</dc:creator>
      <dc:date>2017-03-01T04:39:41Z</dc:date>
    </item>
  </channel>
</rss>

