<?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: Applying SAS functions on variables based on data types in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228516#M41284</link>
    <description>&lt;P&gt;Hi, from your posting, it looked as if the extra stuff was using an INDEX function. &amp;nbsp;I was trying to point out that you can use any SAS character function with numeric variables if you just use the CAT function with the numeric variables.&lt;/P&gt;</description>
    <pubDate>Mon, 05 Oct 2015 20:22:14 GMT</pubDate>
    <dc:creator>MikeZdeb</dc:creator>
    <dc:date>2015-10-05T20:22:14Z</dc:date>
    <item>
      <title>Applying SAS functions on variables based on data types</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228293#M41224</link>
      <description>&lt;P&gt;Hello Members,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope all is well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need some help on an issue that I am facing on SAS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Problem Statement:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to apply various character functions on multiple columns from multiple tables, where columns are character and numeric. Now, as character functions will not work on numeric variables, I will convert them to character as well. As I will have a loop in which variables will appear one by one inside the functions, I need a way to segregate the variables, i.e. char variable will go to char processing block and numeric variable will go to numeric processing block. I am trying to write a program which will send variables to their respective processing block, but unable to do so based on their type. How can I attach their data type in the code? I have looked at dictionary.columns, but could not do it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example: I would like to see whether the columns have negative (-) sign in them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Table&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Column&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt; &lt;STRONG&gt;Type&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Tab_M &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; H_A&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Char&lt;/P&gt;
&lt;P&gt;Tab_M &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; H_B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tab_N &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; G_A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; Char&lt;/P&gt;
&lt;P&gt;Tab_N&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; G_B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Index(..., '-') works on Character variable, and Index(Put(...), w.), '-') works on Numeric variable. But I need to send variables to the respective blocks dynamically, based on their data type.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Part of code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Case when type='char' then&lt;/P&gt;
&lt;P&gt;&amp;nbsp; case when index(..., '-') then 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp; else 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; end&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Case when type='num' then&lt;/P&gt;
&lt;P&gt;&amp;nbsp;case when index(put(...)) then 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp; else 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp; end&lt;/P&gt;
&lt;P&gt;Else 0&lt;/P&gt;
&lt;P&gt;End as Negative_Check&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2015 22:25:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228293#M41224</guid>
      <dc:creator>zoomzoom</dc:creator>
      <dc:date>2015-10-02T22:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: Applying SAS functions on variables based on data types</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228296#M41225</link>
      <description>&lt;P&gt;I suggest you check out the VTYPE function as documented here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/lefunctionsref/67960/HTML/default/viewer.htm#n161ybp2fgdlotn1m7hs0slma0al.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/lefunctionsref/67960/HTML/default/viewer.htm#n161ybp2fgdlotn1m7hs0slma0al.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VTYPE(varname) returns the value C if varname is character or N if varname is numeric.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2015 23:33:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228296#M41225</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-10-02T23:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Applying SAS functions on variables based on data types</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228298#M41227</link>
      <description>&lt;P&gt;Hi, one idea ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Always use a CAT function (both for character and numeric)&amp;nbsp;and just&amp;nbsp;search for characters.&amp;nbsp; Here's a data step example, should also work in SQL, don't have to check for type ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;data x;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;input x1 x2 :$5.;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;datalines;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;55255 A-AAA&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;66662 BBB-B&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;99999 CCCCC&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;data y;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;set x;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;if index(cat(x1),'2') then found_num = 1; else found_num = 0;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;if index(cat(x2),'-') then found_char = 1; else found_char = 0;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;run;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;No problems in the LOG ...&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;38&amp;nbsp;&amp;nbsp; data y;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;39&amp;nbsp;&amp;nbsp; set x;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;40&amp;nbsp;&amp;nbsp; if index(cat(x1),'2') then found_num = 1; else found_num = 0;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;41&amp;nbsp;&amp;nbsp; if index(cat(x2),'-') then found_char = 1; else found_char = 0;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;42&amp;nbsp;&amp;nbsp; run;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;NOTE: There were 3 observations read from the data set WORK.X.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;NOTE: The data set WORK.Y has 3 observations and 4 variables.&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;and it works ...&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&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;&amp;nbsp;&amp;nbsp; found_&amp;nbsp;&amp;nbsp;&amp;nbsp; found_&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;Obs&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; num&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; char&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 55255&amp;nbsp;&amp;nbsp;&amp;nbsp; A-AAA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 66662&amp;nbsp;&amp;nbsp;&amp;nbsp; BBB-B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 99999&amp;nbsp;&amp;nbsp;&amp;nbsp; CCCCC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Oct 2015 23:43:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228298#M41227</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2015-10-02T23:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Applying SAS functions on variables based on data types</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228310#M41231</link>
      <description>Restriction: VTYPE() only works in the DATA step.</description>
      <pubDate>Sat, 03 Oct 2015 03:17:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228310#M41231</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2015-10-03T03:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Applying SAS functions on variables based on data types</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228334#M41241</link>
      <description>&lt;P&gt;SASKiwi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While I am trying to understand how do I define the dataset for VTYPE, I found another function called VARTYPE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000148443.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000148443.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code that works:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If vartype(open("libref.dataset,"i"), varnum(open("libref.dataset,"i"),"Variable_1"))="C" then do;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if index("Variable_1",'-') &amp;gt; 0&amp;nbsp; Then output temp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Else if vartype(open("libref.dataset,"i"), varnum(open("libref.dataset,"i"),"Variable_1"))="N" then do;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Oct 2015 21:21:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228334#M41241</guid>
      <dc:creator>zoomzoom</dc:creator>
      <dc:date>2015-10-03T21:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Applying SAS functions on variables based on data types</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228352#M41246</link>
      <description>&lt;P&gt;VTYPE applies to any variable defined in a DATA step. There is no need to predefine any dataset it belongs to:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data example;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set sashelp.class;&lt;/P&gt;&lt;P&gt;&amp;nbsp; if vtype('age') = 'N' then .....&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Oct 2015 18:43:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228352#M41246</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2015-10-04T18:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Applying SAS functions on variables based on data types</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228425#M41271</link>
      <description>&lt;P&gt;Hi, just curious as to why you would still want to check for variable type when you can use the INDEX function for either NUMERIC or CHARACTER variables if you use the CAT function within the INDEX function ... INDEX(CAT(var), "search string"). &amp;nbsp;Seems as if checking for variable type with VTYPE is extra effort.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 13:53:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228425#M41271</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2015-10-05T13:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Applying SAS functions on variables based on data types</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228480#M41276</link>
      <description>&lt;P&gt;Hello Mike,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was checking the datatype of the variable,i.e. whether it is Char or Numeric. Based on that, I was doing some extra operation with if-else.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 17:58:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228480#M41276</guid>
      <dc:creator>zoomzoom</dc:creator>
      <dc:date>2015-10-05T17:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Applying SAS functions on variables based on data types</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228516#M41284</link>
      <description>&lt;P&gt;Hi, from your posting, it looked as if the extra stuff was using an INDEX function. &amp;nbsp;I was trying to point out that you can use any SAS character function with numeric variables if you just use the CAT function with the numeric variables.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 20:22:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Applying-SAS-functions-on-variables-based-on-data-types/m-p/228516#M41284</guid>
      <dc:creator>MikeZdeb</dc:creator>
      <dc:date>2015-10-05T20:22:14Z</dc:date>
    </item>
  </channel>
</rss>

