<?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: infile delimiter variables shifted in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323402#M71671</link>
    <description>&lt;P&gt;Please run next code to create a sample file for testing:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;filename sample '...sample file path and name ...";&lt;/P&gt;
&lt;P&gt;filename my_file '... your input file....csv';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data _NULL_;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;infile my_file truncover;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;file sample;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; input _infile_ &amp;nbsp;$;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if _N_ le 10 then put _infile_;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; else stop;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;upload and popst the sample file as is;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;use any text browser (like notepad, notepad++ etc.)&lt;/P&gt;
&lt;P&gt;and &lt;STRONG&gt;post a sketch how would you like to see the output dataset,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;what shall have each variable taken from first address in the sample.&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 09 Jan 2017 16:25:00 GMT</pubDate>
    <dc:creator>Shmuel</dc:creator>
    <dc:date>2017-01-09T16:25:00Z</dc:date>
    <item>
      <title>infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323333#M71654</link>
      <description>&lt;P&gt;&lt;BR /&gt;Dear experts,&lt;BR /&gt;&lt;BR /&gt;I need to import some files from a Csv. I am using " infile -&amp;gt; informat -&amp;gt; format"&lt;BR /&gt;But I am struggling with the field address that contains almost everything in term of delimiters, kind of information, number of rows.&lt;BR /&gt;Any good suggestion to cope with it efficently, i.e. getting all the data in a string for the same variable.&lt;BR /&gt;Here two examples of the cells that are generating problems:&lt;BR /&gt;&lt;BR /&gt;1.&lt;BR /&gt;65, Zenedine Zidane&lt;BR /&gt;Brügge 7100&lt;BR /&gt;BELGIUM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2,&lt;BR /&gt;Diego Costa Private Limited | z.H. Cesc Fabregas | Dr. BRUG Wenger, Loftus Road&lt;BR /&gt;Bistocchi 642009&lt;BR /&gt;Bangladesh&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to import the data in order to be sure to get the content as one record each? I am using the following delimiter "¦" to avoid confusion but still due to the several rows in the address the csv is not correctly imported.&lt;/P&gt;&lt;P&gt;Thank in advance, SH.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 12:19:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323333#M71654</guid>
      <dc:creator>Sir_Highbury</dc:creator>
      <dc:date>2017-01-09T12:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323337#M71656</link>
      <description>&lt;P&gt;This comes from the files not being "CSV". &amp;nbsp;CSV means Comma Separated Variable files, and consist of one row with headers, then one row per data item, with each field separated by a comma, possibly enclosed in quotes if the data contains commas.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you have there is some sort of user defined format. &amp;nbsp;It would be best idea to go back to whoever came up with that and get them to fix/or describe. &amp;nbsp;However not always possible. &amp;nbsp;So you will need to do some work on the import yourself if that is the case.&lt;/P&gt;
&lt;P&gt;This article shows reading multiple lines from a file:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a002001051.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a002001051.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Basically you read the first row, then parse it out into the variables you want by using scan(). &amp;nbsp;Then you read the next row and set that to variable, then the next row. &amp;nbsp;Of course if you user defined file does not have all three in each time, then you will also need some logic to check this etc. &amp;nbsp; Far simpler to use standard file formats.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 12:32:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323337#M71656</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-01-09T12:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323348#M71657</link>
      <description>&lt;P&gt;Are there in yout input more lines and other data than adresses ?&lt;/P&gt;
&lt;P&gt;Is this the input file format:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1.
65, Zenedine Zidane
Brügge 7100
BELGIUM
 
2,
Diego Costa Private Limited | z.H. Cesc Fabregas | Dr. BRUG Wenger, Loftus Road
Bistocchi 642009
Bangladesh&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;including: address serial number followed always by 3 lines ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It will be better if you post part of your input as is, using notepad++ and copy/paste of 6-10 lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyhow,&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;&amp;nbsp;is right, that is not a CSV file format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And one more question - what variables do you want to have on output.&lt;/P&gt;
&lt;P&gt;post an example of one or two addresses.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 13:50:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323348#M71657</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-01-09T13:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323353#M71658</link>
      <description>&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand that "probably" the file is not properly structured to be a csv but this is what I have, let's put in this way: the file's extensions is .csv&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/88384"&gt;@Shmuel&lt;/a&gt;I have several variables, e.g. name, surname and addresse is just one of them. In most of the cases the cell where the address is contained is of 3 rows but this is not always he case, sometimes. Would you have a suggestion in case I would have always 3 rows? Maybe it could be already step forward.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if the address as a variable is before the last column which is gender. I would like to get:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as variable address:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;Diego Costa Private Limited &lt;SPAN class="token operator"&gt;|&lt;/SPAN&gt; z&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;H&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt; Cesc Fabregas &lt;SPAN class="token operator"&gt;|&lt;/SPAN&gt; Dr&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt; BRUG Wenger&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; Loftus Road Bistocchi &lt;SPAN class="token number"&gt;642009 &lt;/SPAN&gt;Bangladesh&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Gender: "Male" (an not Fabregas)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;SH&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:04:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323353#M71658</guid>
      <dc:creator>Sir_Highbury</dc:creator>
      <dc:date>2017-01-09T14:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323358#M71661</link>
      <description>&lt;P&gt;Totally agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There must be some kind of layout/rules for that file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without that it's pure guessing which can get very complex.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Provide us with the user defined format for that file and an example of the&amp;nbsp;desired output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Daniel Santos&amp;nbsp;@ &lt;A href="http://www.cgd.pt" target="_blank"&gt;www.cgd.pt&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:19:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323358#M71661</guid>
      <dc:creator>Daniel-Santos</dc:creator>
      <dc:date>2017-01-09T14:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323367#M71662</link>
      <description>&lt;P&gt;A &lt;U&gt;true CSV file&lt;/U&gt; you shall assign FILENMAE like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;filename &amp;nbsp;my_file &lt;STRONG&gt;CSV&lt;/STRONG&gt; '...file path and name ...";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As your file is &lt;U&gt;not a true CSV format&lt;/U&gt; then assign:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; filename my_file "...file path and name ...";&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;when your input data is given in more than one row you need treat each row seperately:&lt;/P&gt;
&lt;P&gt;you need to identify what kind of data is in the current row and assign it to the appropriate variables.&lt;/P&gt;
&lt;P&gt;you need to gather (by retain) all variables of same identity (person) from it first row to its last row&lt;/P&gt;
&lt;P&gt;and write output only after assigning all its variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I saked for an inpu of full 10 rows and example of output, showing how that data should parse into variables,&lt;/P&gt;
&lt;P&gt;then I can post a code how to do it.&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>Mon, 09 Jan 2017 14:42:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323367#M71662</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-01-09T14:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323370#M71664</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;let's put in this way: the file's extensions is .csv" -&amp;nbsp;&lt;A href="https://en.wikipedia.org/wiki/Filename_extension" target="_blank"&gt;https://en.wikipedia.org/wiki/Filename_extension&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Incorrect use of of an extension can lead to problems opening, and misinterpretation - try renaming a .docx to .gif for instance and opening it (and yes, you can name the extension anything you like).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As your datafile is in a particular user format, this means you wil have to write custom code to handle that particular file format. &amp;nbsp;The way you do that is via reading in a text file (infile), reading in the data elements (input/format/informat), and tehn parsing the data returned if necessary.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;So, if this is the input data:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;Diego Costa Private Limited &lt;SPAN class="token operator"&gt;|&lt;/SPAN&gt; z&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;H&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt; Cesc Fabregas &lt;SPAN class="token operator"&gt;|&lt;/SPAN&gt; Dr&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt; BRUG Wenger&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; Loftus Road
Bistocchi &lt;SPAN class="token number"&gt;642009&lt;/SPAN&gt;
Bangladesh&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then what we need to do is to read each line as a block of text (if there was a particular end character we could of course keep the pointer running, but I do not see this in this case, so I am going this way):&lt;/P&gt;
&lt;PRE&gt;data want (drop=str: i);&lt;BR /&gt; infile "s:\temp\rob\a.txt" dlm="¬";&lt;BR /&gt; length str1 str2 str2 addr1 addr2 addr3 zip city $200;&lt;BR /&gt; input str1 $;&lt;BR /&gt; array addr{3};&lt;BR /&gt; do i=1 to countw(str1,"|");&lt;BR /&gt;   addr{i}=scan(str1,i,"|");&lt;BR /&gt; end;&lt;BR /&gt; input zip $;&lt;BR /&gt; input city $;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;Note, I have put the above text in a text file in a.txt as given in the code, and it parses the data correctly. &amp;nbsp;If your data is different, then you need to code respectively.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 14:49:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323370#M71664</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-01-09T14:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323388#M71667</link>
      <description>&lt;P&gt;Dear &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/121751"&gt;@Daniel-Santos&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;nice to know that you agree but I posted what I can. Of course it is a guess, if you do not have a best guess, the problem is for you too complex and you cannot support, feel free to ignore the topic and avoid redundancies. But thanks for the effort.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 15:52:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323388#M71667</guid>
      <dc:creator>Sir_Highbury</dc:creator>
      <dc:date>2017-01-09T15:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323390#M71668</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/88384"&gt;@Shmuel&lt;/a&gt;thanks for the explanation, I am traing to go in the direction you suggested, if you can posta code... even better. BRs, SH&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 15:53:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323390#M71668</guid>
      <dc:creator>Sir_Highbury</dc:creator>
      <dc:date>2017-01-09T15:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323400#M71670</link>
      <description>&lt;P&gt;Dear Sir_Highbury.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm sorry if I hurted your feelings in someway, but I do think I haven't been rude in anyway.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are all trying to help here, but I'm sorry if guessing or&amp;nbsp;prophetizing are not one of my virtues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Having said that, have a good day Sir, and good luck with your guessing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Daniel Santos&amp;nbsp;@ &lt;A href="http://www.cgd.pt" target="_blank"&gt;www.cgd.pt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 16:17:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323400#M71670</guid>
      <dc:creator>Daniel-Santos</dc:creator>
      <dc:date>2017-01-09T16:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: infile delimiter variables shifted</title>
      <link>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323402#M71671</link>
      <description>&lt;P&gt;Please run next code to create a sample file for testing:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;filename sample '...sample file path and name ...";&lt;/P&gt;
&lt;P&gt;filename my_file '... your input file....csv';&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data _NULL_;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;infile my_file truncover;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;file sample;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; input _infile_ &amp;nbsp;$;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if _N_ le 10 then put _infile_;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; else stop;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;upload and popst the sample file as is;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;use any text browser (like notepad, notepad++ etc.)&lt;/P&gt;
&lt;P&gt;and &lt;STRONG&gt;post a sketch how would you like to see the output dataset,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;what shall have each variable taken from first address in the sample.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 16:25:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/infile-delimiter-variables-shifted/m-p/323402#M71671</guid>
      <dc:creator>Shmuel</dc:creator>
      <dc:date>2017-01-09T16:25:00Z</dc:date>
    </item>
  </channel>
</rss>

