<?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: How to split a table into several smaller tables in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692251#M210842</link>
    <description>Yes, it is a unique identifier to tie the split tables together when our vendor receive the files</description>
    <pubDate>Fri, 16 Oct 2020 22:09:47 GMT</pubDate>
    <dc:creator>lmtamina</dc:creator>
    <dc:date>2020-10-16T22:09:47Z</dc:date>
    <item>
      <title>How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692220#M210823</link>
      <description>&lt;P&gt;Good afternoon,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to split a table with 800 million records and 48 variables into&amp;nbsp;4 tables so we can reduce the size and send compressed via FTP.&amp;nbsp; I am currently doing the split individually and creating the 4 files by the codes below. Is there an easy way to create the 4 files by just reading from the MASTERFILE once . Or,is there a more efficient code to do this as we need to break up several big tables . I am a basic user of SAS and appreciate any assistance.&lt;/P&gt;
&lt;P&gt;Thank you as always!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;% let header_1 = variable1......variable12&lt;/P&gt;
&lt;P&gt;% let header_2 = variable13.....variable24&lt;/P&gt;
&lt;P&gt;% let header_3=variable25......variable36&lt;/P&gt;
&lt;P&gt;% let header_4 = variable37....variable48&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data step FILE1;&lt;/P&gt;
&lt;P&gt;set MASTERFILE(keep=&amp;amp;header_1);&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;data step FILE2;&lt;/P&gt;
&lt;P&gt;set MASTERFILE(keep=&amp;amp;header_2);&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;data step FILE3;&lt;/P&gt;
&lt;P&gt;set MASTERFILE(keep=&amp;amp;header_3);&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;data step FILE4;&lt;/P&gt;
&lt;P&gt;set MASTERFILE(keep=&amp;amp;header_4);&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 20:03:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692220#M210823</guid>
      <dc:creator>lmtamina</dc:creator>
      <dc:date>2020-10-16T20:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692222#M210824</link>
      <description>It's not as common to split it out by variables, it's usually more common to split it by the records, ie 50 million in each data set type of idea. There's a small chance of things not merging back correctly whereas when split by records, appends are less likely to cause errors. &lt;BR /&gt;&lt;BR /&gt;Is it a requirement to split it by variables instead?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://gist.github.com/statgeek/abc3c6ce1dbeedb84fe7f11da0603cda" target="_blank"&gt;https://gist.github.com/statgeek/abc3c6ce1dbeedb84fe7f11da0603cda&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Blog post with several other methods here - but still row splitting, not column wise.&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/sasdummy/2015/01/26/how-to-split-one-data-set-into-many/" target="_blank"&gt;https://blogs.sas.com/content/sasdummy/2015/01/26/how-to-split-one-data-set-into-many/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Oct 2020 20:09:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692222#M210824</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-16T20:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692225#M210826</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/187028"&gt;@lmtamina&lt;/a&gt;&amp;nbsp; Can you "guarantee"&amp;nbsp;&lt;STRONG&gt; LOTSSSSS&lt;/STRONG&gt; of &lt;STRONG&gt;Memory(RAM)&lt;/STRONG&gt;. Sorry not meaning to shout with UPCASE, but I am &lt;STRONG&gt;really&lt;/STRONG&gt; asking.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, what are the datatypes. Are those a mix of char/num. Is there a pattern in the arrangement?&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 20:18:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692225#M210826</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-10-16T20:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692227#M210828</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/187028"&gt;@lmtamina&lt;/a&gt;&amp;nbsp; Why not keep it simple by-&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*This reads only once*/

data FILE1 (keep=&amp;amp;header_1)
FILE2(keep=&amp;amp;header_2)
FILE3(keep=&amp;amp;header_3)
FILE4(keep=&amp;amp;header_4);
set MASTERFILE;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Oct 2020 20:29:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692227#M210828</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2020-10-16T20:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692229#M210830</link>
      <description>&lt;P&gt;You are splitting your dataset be columns rather than by rows, possibly because your number of columns is know, but the number of rows is not always known.&amp;nbsp; If so, you can run this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data step FILE1 FILE2 FILE3 FILE4;
  set MASTERFILE nobs=nrecs;
  if _n_&amp;lt;= nrecs/4 then output file1; else
  if _n_ &amp;lt;=nrecs/2 then output file2; else
  if _n_ &amp;lt;= 3*nrecs/4 then output file3;
  else output file4;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Regardless of the dataset size, this outputs the first 25% to file1, the 2nd 25% to file2, etc.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 20:34:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692229#M210830</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2020-10-16T20:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692239#M210834</link>
      <description>We are splitting by column as I understand so we do not have to run the queries to produce the master table as it takes a  long time to run. We are adding a unique variable to all the 4 files so when our vendor receive them they can tie the records together using this variable. Does that make sense?</description>
      <pubDate>Fri, 16 Oct 2020 21:14:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692239#M210834</guid>
      <dc:creator>lmtamina</dc:creator>
      <dc:date>2020-10-16T21:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692240#M210835</link>
      <description>&lt;P&gt;So far we were able to generate 4 files for our 2017 data using the code I described and no issues with my machine. Yes, it's a mix of char , date and numeric but no pattern.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 21:18:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692240#M210835</guid>
      <dc:creator>lmtamina</dc:creator>
      <dc:date>2020-10-16T21:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692244#M210836</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/187028"&gt;@lmtamina&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;We are splitting by column as I understand so we do not have to run the queries to produce the master table as it takes a long time to run. We are adding a unique variable to all the 4 files so when our vendor receive them they can tie the records together using this variable. Does that make sense?&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Sounds scary to me actually. I also am having a hard time understanding how this is supposed to save time.&lt;/P&gt;
&lt;P&gt;Is your "unique variable"&amp;nbsp; a unique row identifier from the source for each?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 21:33:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692244#M210836</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-10-16T21:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692246#M210838</link>
      <description>I tried the solution below but getting the following error. Could you kindly help.&lt;BR /&gt; &lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, /, ;, _DATA_, _LAST_, _NULL_.  &lt;BR /&gt;&lt;BR /&gt;data FILE1 (keep=&amp;amp;header_1)&lt;BR /&gt;FILE2(keep=&amp;amp;header_2)&lt;BR /&gt;FILE3(keep=&amp;amp;header_3)&lt;BR /&gt;FILE4(keep=&amp;amp;header_4);&lt;BR /&gt;set MASTERFILE;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;but I am &lt;BR /&gt;</description>
      <pubDate>Fri, 16 Oct 2020 21:49:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692246#M210838</guid>
      <dc:creator>lmtamina</dc:creator>
      <dc:date>2020-10-16T21:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692247#M210839</link>
      <description>Show the full log please.</description>
      <pubDate>Fri, 16 Oct 2020 21:54:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692247#M210839</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-16T21:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692248#M210840</link>
      <description>&lt;P&gt;Please post the complete log (including the definition of the macro variables) into a box opened with the &amp;lt;/&amp;gt; button.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 21:54:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692248#M210840</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-10-16T21:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692249#M210841</link>
      <description>Below is the log. I am tryin gto run this one against another table we are splitting and for this one we have to split 6 files as the we have more variables. It does not error out if no of dataset is 5, greater than 5 I get this error. It appears there is a maximum number of table is the DATA step: &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR&lt;BR /&gt;24         &lt;BR /&gt;25         GOPTIONS ACCESSIBLE;&lt;BR /&gt;26         data FILE1 (keep=&amp;amp;file_1)&lt;BR /&gt;27         FILE2(keep=&amp;amp;file_2)&lt;BR /&gt;28         FILE3(keep=&amp;amp;file_3)&lt;BR /&gt;29         FILE4(keep=&amp;amp;file_4)&lt;BR /&gt;30         FILE5(keep=&amp;amp;file_5)&lt;BR /&gt;31         FILE6(keep=&amp;amp;file_6)&lt;BR /&gt;                             _&lt;BR /&gt;                             22&lt;BR /&gt;                             200&lt;BR /&gt;ERROR 22-322: Syntax error, expecting one of the following: a name, a quoted string, /, ;, _DATA_, _LAST_, _NULL_.  &lt;BR /&gt;&lt;BR /&gt;ERROR 200-322: The symbol is not recognized and will be ignored.&lt;BR /&gt;&lt;BR /&gt;32         ;&lt;BR /&gt;33         set datacagb.mxa1861_Clarify_med_claims_2018;&lt;BR /&gt;34         run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;BR /&gt;WARNING: The data set WORK.FILE1 may be incomplete.  When this step was stopped there were 0 observations and 13 variables.&lt;BR /&gt;WARNING: Data set WORK.FILE1 was not replaced because this step was stopped.&lt;BR /&gt;WARNING: The data set WORK.FILE2 may be incomplete.  When this step was stopped there were 0 observations and 9 variables.&lt;BR /&gt;WARNING: Data set WORK.FILE2 was not replaced because this step was stopped.&lt;BR /&gt;WARNING: The data set WORK.FILE3 may be incomplete.  When this step was stopped there were 0 observations and 6 variables.&lt;BR /&gt;WARNING: Data set WORK.FILE3 was not replaced because this step was stopped.&lt;BR /&gt;WARNING: The data set WORK.FILE4 may be incomplete.  When this step was stopped there were 0 observations and 6 variables.&lt;BR /&gt;WARNING: Data set WORK.FILE4 was not replaced because this step was stopped.&lt;BR /&gt;WARNING: The data set WORK.FILE5 may be incomplete.  When this step was stopped there were 0 observations and 6 variables.&lt;BR /&gt;WARNING: Data set WORK.FILE5 was not replaced because this step was stopped.&lt;BR /&gt;WARNING: The data set WORK.FILE6 may be incomplete.  When this step was stopped there were 0 observations and 9 variables.&lt;BR /&gt;WARNING: Data set WORK.FILE6 was not replaced because this step was stopped.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;      real time           0.23 seconds&lt;BR /&gt;2                                                          The SAS System                           15:30 Thursday, October 15, 2020&lt;BR /&gt;&lt;BR /&gt;      user cpu time       0.01 seconds&lt;BR /&gt;      system cpu time     0.02 seconds&lt;BR /&gt;      memory              4823.65k&lt;BR /&gt;      OS Memory           33496.00k&lt;BR /&gt;      Timestamp           10/16/2020 06:02:46 PM&lt;BR /&gt;      Step Count                        53  Switch Count  94&lt;BR /&gt;      Page Faults                       0&lt;BR /&gt;      Page Reclaims                     345&lt;BR /&gt;      Page Swaps                        0&lt;BR /&gt;      Voluntary Context Switches        426&lt;BR /&gt;      Involuntary Context Switches      199&lt;BR /&gt;      Block Input Operations            0&lt;BR /&gt;      Block Output Operations           0&lt;BR /&gt;</description>
      <pubDate>Fri, 16 Oct 2020 22:06:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692249#M210841</guid>
      <dc:creator>lmtamina</dc:creator>
      <dc:date>2020-10-16T22:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692251#M210842</link>
      <description>Yes, it is a unique identifier to tie the split tables together when our vendor receive the files</description>
      <pubDate>Fri, 16 Oct 2020 22:09:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692251#M210842</guid>
      <dc:creator>lmtamina</dc:creator>
      <dc:date>2020-10-16T22:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692252#M210843</link>
      <description>&lt;P&gt;It is not an issue of the 6 items. You really need to post the actual code and log. &lt;BR /&gt;&lt;BR /&gt;I would check your macro variables and see if there's something there causing the error/issue or if it works with just the 6th data set. &lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data demo1 (keep = make model origin) 
demo2 (keep = mpg_highway mpg_city) 
demo3 (keep = Cylinders Type Weight Wheelbase Drivetrain EngineSize HorsePower) 
demo4 (keep = Invoice MSRP) 
demo5 (keep = Length Weight) demo6 (keep = Cylinders DriveTrain);
set sashelp.cars;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 16 Oct 2020 22:35:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692252#M210843</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-16T22:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692253#M210844</link>
      <description>And all of this is another reason to split files by rows rather than columns...</description>
      <pubDate>Fri, 16 Oct 2020 22:23:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692253#M210844</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-10-16T22:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692256#M210845</link>
      <description>&lt;P&gt;In case I have not made myself clear:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;USE THE &amp;lt;/&amp;gt; BUTTON FOR POSTING LOGS!&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;PS&amp;nbsp;&lt;SPAN&gt;including the definition of the macro variables&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 22:32:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692256#M210845</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-10-16T22:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to split a table into several smaller tables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692258#M210846</link>
      <description>I apologize. I posted the log before I read your post.I only read Reeza's post  and missed yours.  Anyway, saw your comment too to include the macro definition and that's when I found out there is an error in the last macro i defined, i had an extra ")" . So, now this solution is working! Thank you all for your assistance and expertise!</description>
      <pubDate>Fri, 16 Oct 2020 22:36:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-split-a-table-into-several-smaller-tables/m-p/692258#M210846</guid>
      <dc:creator>lmtamina</dc:creator>
      <dc:date>2020-10-16T22:36:51Z</dc:date>
    </item>
  </channel>
</rss>

