<?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: SAS error : Stack over flow in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/778321#M31508</link>
    <description>&lt;P&gt;The XML92 engine is extremely old having been originally released in SAS 9.2. Have you tried the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/engxml/n0w2dg7aw0yvgtn1o5ovjzjl7phc.htm" target="_blank" rel="noopener"&gt;XML or XMLV2 engine&lt;/A&gt;?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Nov 2021 19:24:53 GMT</pubDate>
    <dc:creator>SASKiwi</dc:creator>
    <dc:date>2021-11-03T19:24:53Z</dc:date>
    <item>
      <title>SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515375#M2902</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The goal of my program below&amp;nbsp;is to create a XML file. The datasets on input are SAS datasets (.sas7bdat). I have an error in my SAS log and i don't understand why.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is my code. Please note that the order must be as called (DM in first then SUPPDM, etc.)&amp;nbsp;:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro export_xml(study=);


	libname OUT xml92 "...\FE_ECL_ETUDE_FR_EC_&amp;amp;study..xml" tagset=tagsets.sasxmiss  ;


		%let list_domain= DM SUPPDM DS SV CO IE MH SU TS TV TA SE CM AE SUPPAE EX TI TE SC QS SS;

		%macro read_xml;
			%let i=1;
			%let tab = %scan(&amp;amp;list_domain.,%eval(&amp;amp;i.)," ");

			%do %until (&amp;amp;tab. = );

				%if %sysfunc(exist(SDTM.&amp;amp;tab)) %then %do;

						data OUT.&amp;amp;tab.;
							set SDTM.&amp;amp;tab.;
						run;
				%end;

				%let i=%eval(&amp;amp;i+1) ;
				%let tab = %scan(&amp;amp;list_domain.,%eval(&amp;amp;i.)," ");

			%end;
		%mend read_xml;

		%read_xml;

%mend export_xml;

%export_xml(study=18_02768);&lt;/CODE&gt;&lt;/PRE&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;&lt;FONT face="Courier New" size="3"&gt;Here are the datasets called in the code&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAS stack overflow.PNG" style="width: 592px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/25129i12DBC9B54FA4F1C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAS stack overflow.PNG" alt="SAS stack overflow.PNG" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="3"&gt;And here is the first error in the log &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: There were 67 observations read from the data set SDTM.DM.&lt;/P&gt;
&lt;P&gt;NOTE: The data set OUT.DM has 67 observations and 28 variables.&lt;/P&gt;
&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;
&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;
&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;
&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;
&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;
&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;
&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;
&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;
&lt;P&gt;real time 20.27 seconds&lt;/P&gt;
&lt;P&gt;cpu time 19.75 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If someone could help me on this error, I will be very gratefull.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Bruno&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>Thu, 22 Nov 2018 15:54:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515375#M2902</guid>
      <dc:creator>BrunoM</dc:creator>
      <dc:date>2018-11-22T15:54:55Z</dc:date>
    </item>
    <item>
      <title>Re: SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515378#M2904</link>
      <description>&lt;P&gt;you are reading of datasets work fine to me. not sure there is any issue with export part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let list_domain= cars air car citiday;
		%macro read_xml;
			%let i=1;
			%let tab = %scan(&amp;amp;list_domain.,%eval(&amp;amp;i.)," ");

			%do %until (&amp;amp;tab. = );

				%if %sysfunc(exist(sashelp.&amp;amp;tab)) %then %do;

						data work.&amp;amp;tab.;
							set sashelp.&amp;amp;tab.;
						run;
				%end;

				%let i=%eval(&amp;amp;i+1) ;
				%let tab = %scan(&amp;amp;list_domain.,%eval(&amp;amp;i.)," ");

			%end;
		%mend read_xml;	
		
		%read_xml&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Nov 2018 15:32:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515378#M2904</guid>
      <dc:creator>kiranv_</dc:creator>
      <dc:date>2018-11-22T15:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515389#M2909</link>
      <description>&lt;P&gt;So you are creating dataset.xml from your SDTM model data, correct?&amp;nbsp; Can you try it with just one dataset, then add others.&amp;nbsp; I am torn by between it being that there are multiple datasets (my first choice):&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Stored-Processes/Stream-multiple-data-sets-as-xml-output/td-p/80316" target="_blank"&gt;https://communities.sas.com/t5/SAS-Stored-Processes/Stream-multiple-data-sets-as-xml-output/td-p/80316&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;or the file size of the data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sounds to me like a roll your own dataset xml creation program is the way to go.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 16:00:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515389#M2909</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-11-22T16:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515397#M2914</link>
      <description>&lt;P&gt;Hi again and thank you for your answers !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"So you are creating dataset.xml from your SDTM model data, correct?" &amp;nbsp; Yes&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tired to create my XML with one dataset :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname SDTM "\\Grenade\dev_sem$\_000_Clinical studies\7-Early Clinic\ANTI AGE\OUTPUT\SDTM";

libname OUT xml92 /*xmlv2*/ "\\Grenade\dev_sem$\_000_Clinical studies\7-Early Clinic\ANTI AGE\OUTPUT\XML\FE_ECL_ETUDE_FR_EC_18_02768.xml" tagset=tagsets.sasxmiss ;

data OUT.DM;
	set SDTM.DM;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And i have the following log :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Writing TAGSETS.SASREPORT13(EGSR) Body file: EGSR&lt;/P&gt;&lt;P&gt;22&lt;/P&gt;&lt;P&gt;23 GOPTIONS ACCESSIBLE;&lt;/P&gt;&lt;P&gt;24 libname SDTM "\\Grenade\dev_sem$\_000_Clinical studies\7-Early Clinic\ANTI AGE\OUTPUT\SDTM";&lt;/P&gt;&lt;P&gt;NOTE: Libref SDTM was successfully assigned as follows:&lt;/P&gt;&lt;P&gt;Engine: V9&lt;/P&gt;&lt;P&gt;Physical Name: \\Grenade\dev_sem$\_000_Clinical studies\7-Early Clinic\ANTI AGE\OUTPUT\SDTM&lt;/P&gt;&lt;P&gt;25&lt;/P&gt;&lt;P&gt;26 libname OUT xml92 /*xmlv2*/ "\\Grenade\dev_sem$\_000_Clinical studies\7-Early Clinic\ANTI&lt;/P&gt;&lt;P&gt;26 ! AGE\OUTPUT\XML\FE_ECL_ETUDE_FR_EC_18_02768.xml" tagset=tagsets.sasxmiss ;&lt;/P&gt;&lt;P&gt;NOTE: Libref OUT was successfully assigned as follows:&lt;/P&gt;&lt;P&gt;Engine: XML92&lt;/P&gt;&lt;P&gt;Physical Name: \\Grenade\dev_sem$\_000_Clinical studies\7-Early Clinic\ANTI AGE\OUTPUT\XML\FE_ECL_ETUDE_FR_EC_18_02768.xml&lt;/P&gt;&lt;P&gt;27&lt;/P&gt;&lt;P&gt;28 data OUT.DM;&lt;/P&gt;&lt;P&gt;29 set SDTM.DM;&lt;/P&gt;&lt;P&gt;30 run;&lt;/P&gt;&lt;P&gt;NOTE: There were 67 observations read from the data set SDTM.DM.&lt;/P&gt;&lt;P&gt;NOTE: The data set OUT.DM has 67 observations and 28 variables.&lt;/P&gt;&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;&lt;P&gt;ERROR: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls.&lt;/P&gt;&lt;P&gt;NOTE: DATA statement used (Total process time):&lt;/P&gt;&lt;P&gt;real time 19.51 seconds&lt;/P&gt;&lt;P&gt;cpu time 19.20 seconds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just don't get it.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Nov 2018 16:20:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515397#M2914</guid>
      <dc:creator>BrunoM</dc:creator>
      <dc:date>2018-11-22T16:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515463#M2921</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;The does not appear to be a problem with your code.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Please report this to our Technical Support Department, and supply this test code that reproduces the problem:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/ctx/supportform/createForm" target="_blank"&gt;https://support.sas.com/ctx/supportform/createForm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro test;

%local I N;

%let N = 25;

%do I = 1 %to &amp;amp;N;

%put NOTE: &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Iteration &amp;amp;I of &amp;amp;N;

data work.class&amp;amp;I; set sashelp.class; run;

data out.class&amp;amp;I; set work.class&amp;amp;I; run;

%end;

%mend test;

%let FILE = C:\temp\temp.xml;

filename out "&amp;amp;FILE";

*  Delete the file if it exists;

data _null_;
length rc 8;
rc = fdelete('out');
run;

filename out clear;

libname out xml92 'C:\temp\temp.xml' tagset=tagsets.sasxmiss;

%TEST&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 00:47:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515463#M2921</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2018-11-23T00:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515507#M2937</link>
      <description>&lt;P&gt;Thank you for your answer !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For information, i tried your code and i have the same error message from iteration 20 on 25 to the end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I followed the link you gave me. Thank you !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Bruno&lt;/P&gt;</description>
      <pubDate>Fri, 23 Nov 2018 08:43:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/515507#M2937</guid>
      <dc:creator>BrunoM</dc:creator>
      <dc:date>2018-11-23T08:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/778286#M31506</link>
      <description>&lt;P&gt;I know this is an old thread.&amp;nbsp; Was it ever resolved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I saw a related hotfix for SAS 9.4 m7 published in August this year (&lt;A href="https://communities.sas.com/t5/SAS-Hot-Fix-Announcements/Updates-available-for-Base-SAS-9-4-M7-Hot-fix-I9R054/ba-p/763466" target="_blank"&gt;Updates available for Base SAS 9.4_M7 : Hot fix I9... - SAS Support Communities&lt;/A&gt;).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm seeing this same issue in Viya 3.5.&amp;nbsp; I ran the sample code that Vince provided in this thread, and it makes it to the 20th iteration and then fails with the "&lt;SPAN style="font-family: inherit;"&gt;ERROR&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;: Event Stack Overflow. This is probably caused by mis-matched begin and end event calls." messages.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;BR /&gt;David&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 17:38:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/778286#M31506</guid>
      <dc:creator>DavidRice</dc:creator>
      <dc:date>2021-11-03T17:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/778321#M31508</link>
      <description>&lt;P&gt;The XML92 engine is extremely old having been originally released in SAS 9.2. Have you tried the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/engxml/n0w2dg7aw0yvgtn1o5ovjzjl7phc.htm" target="_blank" rel="noopener"&gt;XML or XMLV2 engine&lt;/A&gt;?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 19:24:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/778321#M31508</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-11-03T19:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/778350#M31511</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;&amp;nbsp;for the recommendation.&amp;nbsp; That worked for the example that Vince had provided.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe the error that I'm getting has a a different root cause.&amp;nbsp; This was the only thread that I found in SAS Communities with the "&lt;SPAN style="font-family: inherit;"&gt;Event Stack Overflow. This is probably caused by mis-matched begin and end event calls" error message.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;I'll start a separate thread with more specifics on the context of our issue.&amp;nbsp; I think our issue is more like what's described here:&amp;nbsp;&lt;A href="https://support.sas.com/kb/68/165.html" target="_blank"&gt;68165 - Using the ODS POWERPOINT destination can result in the error "Event stack overflow. This is probably caused by mis-matched begin and end event calls" (sas.com)&lt;/A&gt;, but I need to work with the developer some more to get the details.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Thanks again!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;David&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 22:07:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/778350#M31511</guid>
      <dc:creator>DavidRice</dc:creator>
      <dc:date>2021-11-03T22:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAS error : Stack over flow</title>
      <link>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/778365#M31514</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/30742"&gt;@DavidRice&lt;/a&gt;&amp;nbsp;- I also noticed that there were a number of SAS notes related to the XML92 engine pointing out other problems with it. Also be wary of ODS as it has evolved rapidly over recent SAS maintenance releases so it always pays to be using the most recent releases as far as ODS is concerned.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 23:10:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/SAS-error-Stack-over-flow/m-p/778365#M31514</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-11-03T23:10:10Z</dc:date>
    </item>
  </channel>
</rss>

