<?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: Reorganizing data within subjects in a datafile in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156251#M2756</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Arthur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code worked!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Dec 2013 16:13:09 GMT</pubDate>
    <dc:creator>pronabesh</dc:creator>
    <dc:date>2013-12-04T16:13:09Z</dc:date>
    <item>
      <title>Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156240#M2745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class="jive-rendered-content"&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to reorganize a data set such that observations within subjects can be reordered by date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data set looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Subject_ID&amp;nbsp; Follow_Up_Time&amp;nbsp; Interview_Date&amp;nbsp; Previous_Interview_Date&amp;nbsp; Adverse_Event_Report_Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 1&amp;nbsp; Feb10&amp;nbsp; Jan10&amp;nbsp; Nov10&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 2&amp;nbsp; Mar10&amp;nbsp; Feb10&amp;nbsp; .&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 3&amp;nbsp; Dec10&amp;nbsp; Nov10&amp;nbsp; .&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 1&amp;nbsp; Jun10&amp;nbsp; May10&amp;nbsp; May10&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 2&amp;nbsp; Jul10&amp;nbsp; Jun10&amp;nbsp; Jan11&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 3&amp;nbsp; Feb11&amp;nbsp; Jan11&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The last variable in the data set is not correctly assigned to its corresponding time period (i.e, Adverse_Event_Report_Date should be within the period between Interview_Date and Previous_Interview_Date). For example, in the first case line, the Adverse_Event_Report_Date variable should be missing and should appear in the third row for Subject_ID = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice on the data steps required to restructure this data file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pronabesh&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2013 21:37:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156240#M2745</guid>
      <dc:creator>pronabesh</dc:creator>
      <dc:date>2013-11-25T21:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156241#M2746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be ideal that you have an sample output for your sample input data, so here is only my guess, if it is not meeting your requirement, then please provide your sample output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt; input Subject_ID&amp;nbsp; Follow_Up_Time&amp;nbsp; (Interview_Date&amp;nbsp; Previous_Interview_Date&amp;nbsp; Adverse_Event_Report_Date) (:monyy5.);&lt;/P&gt;&lt;P&gt; format Interview_Date&amp;nbsp; Previous_Interview_Date&amp;nbsp; Adverse_Event_Report_Date monyy5.;&lt;/P&gt;&lt;P&gt; cards;&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 1&amp;nbsp; Feb10&amp;nbsp; Jan10&amp;nbsp; Nov10&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 2&amp;nbsp; Mar10&amp;nbsp; Feb10&amp;nbsp; .&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 3&amp;nbsp; Dec10&amp;nbsp; Nov10&amp;nbsp; .&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 1&amp;nbsp; Jun10&amp;nbsp; May10&amp;nbsp; May10&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 2&amp;nbsp; Jul10&amp;nbsp; Jun10&amp;nbsp; Jan11&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 3&amp;nbsp; Feb11&amp;nbsp; Jan11&amp;nbsp; .&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select Subject_ID,&amp;nbsp; Follow_Up_Time,&amp;nbsp; Interview_Date,&amp;nbsp; Previous_Interview_Date,&amp;nbsp; &lt;/P&gt;&lt;P&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; case when&amp;nbsp; Previous_Interview_Date &amp;lt;= Adverse_Event_Report_Date &amp;lt;= Interview_Date &lt;/P&gt;&lt;P&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; then Adverse_Event_Report_Date&lt;/P&gt;&lt;P&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; when not (Previous_Interview_Date &amp;lt;= Adverse_Event_Report_Date &amp;lt;= Interview_Date )&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and Follow_Up_Time = max(Follow_Up_Time) then max(Adverse_Event_Report_Date)&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else . end as Adverse_Event_Report_Date format=monyy5.&lt;/P&gt;&lt;P&gt;&amp;nbsp; from have&lt;/P&gt;&lt;P&gt;&amp;nbsp; group by Subject_ID&lt;/P&gt;&lt;P&gt;&amp;nbsp; order by Subject_ID,Follow_Up_Time&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2013 22:28:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156241#M2746</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2013-11-25T22:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156242#M2747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I, too, don't know if I correctly understand what you want, but the following is a data step method for doing something close to what Haikuo suggested.&amp;nbsp; It differs, slightly, as it can assign multiple dates for a subject:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp; informat Interview_Date Previous_Interview_Date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Adverse_Event_Report_Date date9.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; format Interview_Date Previous_Interview_Date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Adverse_Event_Report_Date date9.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; input Subject_ID&amp;nbsp; Follow_Up_Time&amp;nbsp; Interview_Date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Previous_Interview_Date&amp;nbsp; Adverse_Event_Report_Date;&lt;/P&gt;&lt;P&gt;&amp;nbsp; cards;&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 1&amp;nbsp; 10Feb2013 10Jan2013 10Nov2013&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 2&amp;nbsp; 10Mar2013 10Feb2013 .&lt;/P&gt;&lt;P&gt;1&amp;nbsp; 3&amp;nbsp; 10Dec2013 10Nov2013 .&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 1&amp;nbsp; 10Jun2013 10May2013 10May2013&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 2&amp;nbsp; 10Jul2013 10Jun2013 11Jan2013&lt;/P&gt;&lt;P&gt;2&amp;nbsp; 3&amp;nbsp; 11Feb2013 11Jan2013 .&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;data want (drop=_:);&lt;/P&gt;&lt;P&gt;&amp;nbsp; set have (rename=(Adverse_Event_Report_Date=_date));&lt;/P&gt;&lt;P&gt;&amp;nbsp; retain _holddate;&lt;/P&gt;&lt;P&gt;&amp;nbsp; format Adverse_Event_Report_Date date9.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; by Subject_ID;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if first.Subject_ID then call missing(_holddate);&lt;/P&gt;&lt;P&gt;&amp;nbsp; if not missing(_date) then _holddate=_date;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if not missing(_holddate) and&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (Previous_Interview_Date le _holddate le Interview_Date)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; then Adverse_Event_Report_Date=_holddate;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Nov 2013 23:12:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156242#M2747</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-11-25T23:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156243#M2748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Arthur. This is exactly what I was looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Nov 2013 14:34:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156243#M2748</guid>
      <dc:creator>pronabesh</dc:creator>
      <dc:date>2013-11-26T14:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156244#M2749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Haikuo. This is very helpful. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Nov 2013 14:34:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156244#M2749</guid>
      <dc:creator>pronabesh</dc:creator>
      <dc:date>2013-11-26T14:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156245#M2750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought I had the solution to this, but my problem is probably a little more complex. To demonstrate, I have listed one example from a single individual with multiple assessment points and described the variables below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The purpose of this is to test the agreement between self_reported hospitalization (Hospitalization_date) and hospitalization from medical records (Admission_date). The assessment_date is the date of self reported assessment and lag_fu is the date of prior self reported assessment. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now there are a couple of problems:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The admission_date variable is not properly merged to the corresponding period between the lag_fu and assessment_date&lt;/P&gt;&lt;P&gt;2. Each assessment date per person is listed thrice as there can be a max of three hospitalization records in that time period.&lt;/P&gt;&lt;P&gt;3. If there are multiple admission_date(s) at each assessment, all the dates need to be listed as shown in the output data set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is very much appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The input and output data set for one individual is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" class="MsoNormalTable" style="border-collapse: collapse; mso-table-layout-alt: fixed; mso-padding-alt: 0in 0in 0in 0in;"&gt;&lt;THEAD&gt;&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border: solid black 1.0pt; border-right: none; mso-border-top-alt: solid black .75pt; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;Hospitalization_date&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border: solid black 1.0pt; border-right: none; mso-border-top-alt: solid black .75pt; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;Record&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border: solid black 1.0pt; border-right: none; mso-border-top-alt: solid black .75pt; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;Assessment_date&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border: solid black 1.0pt; border-right: none; mso-border-top-alt: solid black .75pt; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;Admission_date&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; mso-border-top-alt: .75pt; mso-border-left-alt: .25pt; mso-border-bottom-alt: .25pt; mso-border-right-alt: .75pt; mso-border-color-alt: black; mso-border-style-alt: solid; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;lag_fu&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR style="mso-yfti-irow: 1; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;08DEC10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04OCT10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 2; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;20JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04OCT10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 3; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;16DEC11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04OCT10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 4; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;15DEC10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;4&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;19DEC11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 5; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 6; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;6&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 7; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;15JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;7&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 8; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;8&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 9; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;9&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 10; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 11; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 12; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 13; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;13&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 14; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;14&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 15; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 16; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;16&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 17; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;17&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 18; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;18&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 19; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;19&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 20; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;20&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 21; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;21&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 22; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;22&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;16MAY12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 23; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;16MAY12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 24; mso-yfti-lastrow: yes; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;24&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;16MAY12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;P class="MsoNormal"&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;Output:&amp;nbsp; &lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;/P&gt;&lt;P class="MsoNormal"&gt;&lt;/P&gt;&lt;DIV align="center"&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" class="MsoNormalTable" style="border-collapse: collapse; mso-table-layout-alt: fixed; mso-padding-alt: 0in 0in 0in 0in;"&gt;&lt;THEAD&gt;&lt;TR style="mso-yfti-irow: 0; mso-yfti-firstrow: yes; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border: solid black 1.0pt; border-right: none; mso-border-top-alt: solid black .75pt; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;Hospitalization_date&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border: solid black 1.0pt; border-right: none; mso-border-top-alt: solid black .75pt; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;Record&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border: solid black 1.0pt; border-right: none; mso-border-top-alt: solid black .75pt; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;Assessment_date&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border: solid black 1.0pt; border-right: none; mso-border-top-alt: solid black .75pt; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;Admission_date&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; mso-border-top-alt: .75pt; mso-border-left-alt: .25pt; mso-border-bottom-alt: .25pt; mso-border-right-alt: .75pt; mso-border-color-alt: black; mso-border-style-alt: solid; background: #BBBBBB; padding: 0in 3.0pt 0in 3.0pt;" valign="bottom" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;STRONG style="color: black; font-size: 11.0pt;"&gt;lag_fu&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR style="mso-yfti-irow: 1; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04OCT10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 2; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04OCT10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 3; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04OCT10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 4; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;08DEC10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;4&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;08DEC10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 5; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 6; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;6&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;04NOV10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 7; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;20JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;7&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;20JAN11.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 8; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;8&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 9; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;9&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;03JAN11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 10; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;10&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 11; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 12; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;01MAR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 13; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;13&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 14; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;14&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 15; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;15&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27APR11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 16; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;16&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 17; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;17&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 18; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;18&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;29JUL11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 19; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;19&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;16DEC11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 20; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;20&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;19DEC11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 21; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;21&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;06OCT11&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 22; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;22&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;16MAY12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 23; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;23&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;16MAY12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .25pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right; page-break-after: avoid;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="mso-yfti-irow: 24; mso-yfti-lastrow: yes; page-break-inside: avoid;"&gt;&lt;TD style="width: 105.25pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="140"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 41.2pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="55"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;24&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 87.4pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="117"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;16MAY12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 82.95pt; border-top: none; border-left: solid black 1.0pt; border-bottom: solid black 1.0pt; border-right: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="111"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="width: 50.6pt; border: solid black 1.0pt; border-top: none; mso-border-left-alt: solid black .25pt; mso-border-bottom-alt: solid black .75pt; mso-border-right-alt: solid black .75pt; background: white; padding: 0in 3.0pt 0in 3.0pt;" valign="top" width="67"&gt;&lt;P align="right" class="MsoNormal" style="margin: 3pt 0in; text-align: right;"&gt;&lt;SPAN style="color: black;"&gt;27MAR12&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 21:32:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156245#M2750</guid>
      <dc:creator>pronabesh</dc:creator>
      <dc:date>2013-12-03T21:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156246#M2751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pronabesh: totally un-cool removing a correct rating because you realized that you had a different problem than the one that you originally posted. In the future, I'd really hope that you simply create a new discussion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That said, while I may have misinterpreted what you are trying to do, the following appears to provide your posted desired output:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want (drop=_:);&lt;/P&gt;&lt;P&gt;&amp;nbsp; array _dates(99) _temporary_;&lt;/P&gt;&lt;P&gt;&amp;nbsp; do until (last.patient);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by patient;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if first.patient then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call missing(of _dates(*));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _counter=0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if not missing(Admission_date) then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _counter+1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _dates(_counter)=Admission_date;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call missing(Admission_date);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp; do until (last.patient);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have (drop=Admission_date);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by patient;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if _counter gt 0 then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; do _i=1 to _counter;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (Assessment_date le _dates(_i) le lag_fu) or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (lag_fu le _dates(_i) le Assessment_date) then do;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Admission_date=_dates(_i);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; call missing (_dates(_i));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; _i=_counter;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if not missing(Hospitalization_date) and not missing(Admission_date)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; then Hospitalization_date=Admission_date; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else call missing(Hospitalization_date);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call missing(Admission_date);&lt;/P&gt;&lt;P&gt;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 01:23:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156246#M2751</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-12-04T01:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156247#M2752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Arthur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for taking the time to help out on this. Sincere apologies for removing the correct rating. I am new to SAS communities and was under the false impression that a correct rating means that the discussion is closed. Will amend my mistake.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once again your help and timely response is much appreciated! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 01:32:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156247#M2752</guid>
      <dc:creator>pronabesh</dc:creator>
      <dc:date>2013-12-04T01:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156248#M2753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not a problem and I was pleased to see that you found my last post so quickly.&amp;nbsp; Yes, a correct classification indicates that a question has been answered, however, if one discovers that the problem is more complex than originally posted, a new question/discussion should be started.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 01:41:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156248#M2753</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-12-04T01:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156249#M2754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This also answers my question posted in the other thread about merging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pronabesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 01:46:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156249#M2754</guid>
      <dc:creator>pronabesh</dc:creator>
      <dc:date>2013-12-04T01:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156250#M2755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad to hear that both of your posted question have been answered.&amp;nbsp; I am all too familiar with the anguish involved in learning the expected protocol of a new site and completely understand.&amp;nbsp; Hope you continue to post here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 02:04:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156250#M2755</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2013-12-04T02:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Reorganizing data within subjects in a datafile</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156251#M2756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Arthur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code worked!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 16:13:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/Reorganizing-data-within-subjects-in-a-datafile/m-p/156251#M2756</guid>
      <dc:creator>pronabesh</dc:creator>
      <dc:date>2013-12-04T16:13:09Z</dc:date>
    </item>
  </channel>
</rss>

