<?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: This is example code to show all styles basic appearance elements in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/This-is-example-code-to-show-all-styles-basic-appearance/m-p/113904#M4302</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To read a discussion that describes ODS styles, which includes graphics that display markers, line styles, and colors for several major styles, see the SAS/STAT documentation chapter "Statistical Graphics Using ODS," especially the section "Styles." Here is a direct link: &lt;A href="http://support.sas.com/documentation/cdl/en/statug/65328/HTML/default/viewer.htm#statug_odsgraph_sect053.htm" title="http://support.sas.com/documentation/cdl/en/statug/65328/HTML/default/viewer.htm#statug_odsgraph_sect053.htm"&gt;http://support.sas.com/documentation/cdl/en/statug/65328/HTML/default/viewer.htm#statug_odsgraph_sect053.htm&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Nov 2012 12:49:43 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2012-11-01T12:49:43Z</dc:date>
    <item>
      <title>This is example code to show all styles basic appearance elements</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/This-is-example-code-to-show-all-styles-basic-appearance/m-p/113903#M4301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;gsThe code below will generate a PDF document with a PROC PRINT table and two sgraphics plots for all of the styles currently active in your SAS system. I believe it should work on SAS 9 and higher. Change the output path macro variable to send the output to your desired folder.&lt;/P&gt;&lt;P&gt;I find it helpful in choosing which style to use or modify and especially for graphics colors, outline colors (look real close at some of the barcharts), line and marker types and colors. Hopefully this may help some folks delving into graphics and wondering which color is associated with which data value or element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The basis of this code was found in a paper or example but the source didn't survive the last time my IT department upgraded my computer. So if it was your code I'm sorry I can't give you credit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A section at the bottom will also create a text document of the description of the styles if wanted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;/* This program will create output that allows you to see the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;appearance of all of the SAS output styles currently &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;available to you in PDF output. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A table generate by a basic PROC print, a barchart and line chart &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are generated to see a majority of basic defaults in appearance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* folder to direct all of the output files to*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%let OutPath= D:\Data\examples\styletest\junk2; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Create a dataset with the style names*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*ODS output stats(MATCH_ALL=mvar)=Temp1; prior to v9.0 replaced*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS output stats=work.Temp1; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc template; list styles;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods output close; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data work.TemplateListing; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;length type $12 path $155; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set work.temp1; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if type="Style"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* create macro vriables from the style names */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data _null_; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set work.TemplateListing end=eof; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;retain Counter 1; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if eof then call symput("NumStyles",Counter); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StyleName=Path; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StyleNum=trim(left(compress("Style"||Counter))); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call symput (StyleNum, trim(left(StyleName))); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Counter+1; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* make a small dataset to display with the style */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data test; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;input A B C e f g h i j k l m n o p q r s t u v w x y z; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cards; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 2 3 2 5 74 1 6 8 9 75 2 1 4 7 89.5 62 1 1 4 5 5 656.3 25 54 5 5 5 5 1 0 54 74 7 85 8 5 41 23 8 93 12 86 3 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4 5 6 75 2 1 4 7 89 62 1 75 2 1 4 7 89 62 1 75 2 1 4 7 89 62 1 75 2 1 4 7 89 62 1 2 5 74 1 6 8 9 75 2 1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7 8 9 2 5 74 1 6 8 9 75 2 1 2 5 74 1.1 6 8 9 75 2 1 2 5 74 1 6 8 9 75 2 1 2 5 74 1 6 8 9 75 2 1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* and another to graph as vertical bar chart*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data Barchart; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;input where $ when group; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value = 10*ranuni(345) + 1; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;value = round(value,.01); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;datalines; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1990 1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1991 2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1992 3 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1993 4 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1994 5 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1995 6 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1996 7 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1997 8 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1998 9 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 1999 10 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 2000 11 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 2001 12 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 2002 13 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region 2003 14 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1990 1 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1991 2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1992 3 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1993 4 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1994 5 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1995 6 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1996 7 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1997 8 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1998 9 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 1999 10 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 2000 11 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 2001 12 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 2002 13 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;State 2003 14 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* graph as line plot*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data linechart; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do series = 1 to 14; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do Year= 2000 to 2005; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Value=series; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro DisplayStylesPDF; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS LISTING CLOSE; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS PDF File="&amp;amp;OutPath\styletest.PDF" ; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf pdftoc=1 ; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods noproctitle; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%do C= 1 %to 4; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* %do C=1 %to &amp;amp;NumStyles;*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS PDF style=&amp;amp;&amp;amp;Style&amp;amp;C; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf startpage=yes; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title "Main Title for &amp;amp;&amp;amp;Style&amp;amp;C"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Title2 "Secondary Title for &amp;amp;&amp;amp;Style&amp;amp;C"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* ODS PROCLABEL "";*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS PROCLABEL "Table using &amp;amp;&amp;amp;Style&amp;amp;C"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc print data=test &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* contents="Example data using&amp;amp;&amp;amp;Style&amp;amp;C" */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods pdf startpage=no; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ods graphics / noscale height=5in width=7.5in; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS PROCLABEL "Barchart using &amp;amp;&amp;amp;Style&amp;amp;C"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* try removing description as it appears to leave blank link in TOC &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;without description it basically does the PROC title description="" &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 sgpanel data=Barchart ; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title "Barchart chart example using &amp;amp;&amp;amp;Style&amp;amp;C"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;panelby where /columns=1 rows=2 novarname ; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vbar when /response=value group=group stat=sum; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;format value best4.; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rowaxis label='Values'; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;colaxis fitpolicy=rotate display=(nolabel); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS PROCLABEL "Line Chart using &amp;amp;&amp;amp;Style&amp;amp;C label"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sgplot data=linechart description=""; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title "Line chart example using &amp;amp;&amp;amp;Style&amp;amp;C title"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yaxis values=(1 to 14 by 1); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;series x=Year y=Value /group=series markers; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;label series="Graph default line, color and marker for style: &amp;amp;&amp;amp;Style&amp;amp;C"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%end; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS PDF CLOSE; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%Mend DisplayStylesPDF; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*options mprint;*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%DisplayStylesPDF; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*options nomprint;*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;title; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*remove comment below to see PDF output*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*%DisplayStylesPDf; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* write out the source/description of the styles if you want to see them */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%macro StyleSource; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Title "Style source"; &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 printto log="&amp;amp;OutPath\stylesource.txt" ;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%do C=1 %to &amp;amp;NumStyles; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Title2 "This Style is &amp;amp;&amp;amp;Style&amp;amp;C"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODS PROCLABEL "This Style is &amp;amp;&amp;amp;Style&amp;amp;C"; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc template; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* path sashelp.tmplmst;*/ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;source &amp;amp;&amp;amp;Style&amp;amp;C; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%end; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Proc printto ;run; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%mend StyleSource; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* remove comment below to create the source text */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* that describes the styles. */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%StyleSource;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Oct 2012 22:44:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/This-is-example-code-to-show-all-styles-basic-appearance/m-p/113903#M4301</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2012-10-31T22:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: This is example code to show all styles basic appearance elements</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/This-is-example-code-to-show-all-styles-basic-appearance/m-p/113904#M4302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To read a discussion that describes ODS styles, which includes graphics that display markers, line styles, and colors for several major styles, see the SAS/STAT documentation chapter "Statistical Graphics Using ODS," especially the section "Styles." Here is a direct link: &lt;A href="http://support.sas.com/documentation/cdl/en/statug/65328/HTML/default/viewer.htm#statug_odsgraph_sect053.htm" title="http://support.sas.com/documentation/cdl/en/statug/65328/HTML/default/viewer.htm#statug_odsgraph_sect053.htm"&gt;http://support.sas.com/documentation/cdl/en/statug/65328/HTML/default/viewer.htm#statug_odsgraph_sect053.htm&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2012 12:49:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/This-is-example-code-to-show-all-styles-basic-appearance/m-p/113904#M4302</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2012-11-01T12:49:43Z</dc:date>
    </item>
  </channel>
</rss>

