<?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 remove smoothing spline controls from bivariate fit in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753700#M93556</link>
    <description>&lt;P&gt;I would do this using XPath like Jim already suggested. You can send &amp;lt;&amp;lt; Get XML to your report and see the XML, then find what could be used to build your query&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1715520890952.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64123i2904FF9E8662B8C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_0-1715520890952.png" alt="jthi_0-1715520890952.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1715520918959.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64124i06C93D6654CCADAE/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_1-1715520918959.png" alt="jthi_1-1715520918959.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Quickly checking it looks like there isn't anything that would always work (helpKey isn't always the same and it seems to be also dependent on the analysis) so you might have to modify the query depending on your data&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("", 
	vlb = V List Box(
		dt &amp;lt;&amp;lt; Fit Group(
			Bivariate(
				Y(:height),
				X(:weight),
				Fit Line({Line Color({76, 114, 176})}),
				Fit Spline(0.1, {Line Color({221, 132, 82})})
			),
			Bivariate(
				Y(:weight),
				X(:height),
				Fit Line({Line Color({76, 114, 176})}),
				Fit Spline(0.1, {Line Color({221, 132, 82})})
			)
		)
	)
);

obs = vlb &amp;lt;&amp;lt; XPath("//IfBox/OutlineBox"); // might collapse too much, but you could limit it to the specific reports
obs &amp;lt;&amp;lt; Visibility("Collapse");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other option would be to first get the outlinebox names from the ListBox (I would use XPath for this)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_3-1715521136290.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64126i9B8D21B09986DAE0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_3-1715521136290.png" alt="jthi_3-1715521136290.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1715521126075.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64125i5FC62736542EF12E/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_2-1715521126075.png" alt="jthi_2-1715521126075.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And then you can loop over those titles and hide corresponding outlineboxes (this can be built in many different ways)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("", 
	vlb = V List Box(
		dt &amp;lt;&amp;lt; Fit Group(
			Bivariate(
				Y(:height),
				X(:weight),
				Fit Line({Line Color({76, 114, 176})}),
				Fit Spline(0.1, {Line Color({221, 132, 82})})
			),
			Bivariate(
				Y(:weight),
				X(:height),
				Fit Line({Line Color({76, 114, 176})}),
				Fit Spline(0.1, {Line Color({221, 132, 82})})
			)
		)
	)
);

reports = vlb &amp;lt;&amp;lt; XPath("//OutlineBox[@helpKey = 'Bivariate Report']");

For Each({rep}, reports,
	tebs = rep &amp;lt;&amp;lt; XPath("//ListBox/ListBox[PopupBox and CustomBox]/TextEditBox");
	ob_titles = tebs &amp;lt;&amp;lt; get text;

	For Each({ob_title}, ob_titles,
		rep[OutlineBox(ob_title)] &amp;lt;&amp;lt; Visibility("Collapse");
	);
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 12 May 2024 13:49:53 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2024-05-12T13:49:53Z</dc:date>
    <item>
      <title>How to remove smoothing spline controls from bivariate fit</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753649#M93549</link>
      <description>&lt;P&gt;&lt;SPAN&gt;How do I delete Smoothing spline controls? I have a report with bunch of splines and this list of controls takes the whole page effectively collapsing the chart. I saw a similar question, but I have another part in my script and the solution doesn't work.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How do I remove it?&lt;/SPAN&gt;&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;LI-CODE lang="markup"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

g=vlistbox(Big Class&amp;lt;&amp;lt; 
Fit Group(
	Bivariate(
	Y(:height),
	X(:weight),
	Fit Line({Line Color({76, 114, 176})}),
	Fit Spline(0.1, {Line Color({221, 132, 82})})
),
),
);

//This is the solution given to the question, but its not work for me, I guess because the vlistbox and fit grop

(Report(biv) &amp;lt;&amp;lt; XPath("//BorderBox"))[2] &amp;lt;&amp;lt; Visibility("Collapse");

//this might collapse too much, so make sure it doesn't
(Report(biv) &amp;lt;&amp;lt; XPath("//IfBox")) &amp;lt;&amp;lt; Visibility("Collapse");&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 May 2024 09:32:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753649#M93549</guid>
      <dc:creator>HenLu</dc:creator>
      <dc:date>2024-05-12T09:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove smoothing spline controls from bivariate fit</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753661#M93550</link>
      <description>&lt;P&gt;Here is a simplified version of your supplied code.&amp;nbsp; It simply opens the data table, runs the Bivariate code, and then removes the spline controls&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1715510819439.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64119i4BB0D6E9C1EC4C07/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1715510819439.png" alt="txnelson_0-1715510819439.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

biv =Bivariate(
	Y( :height ),
	X( :weight ),
	Fit Spline( 100000, {Line Color( {212, 73, 88} )} ),
	Fit Spline( 10000, {Line Color( {61, 174, 70} )} )
);

(Report(biv) &amp;lt;&amp;lt; XPath("//IfBox")) &amp;lt;&amp;lt; Visibility("Collapse");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 12 May 2024 10:47:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753661#M93550</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-05-12T10:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove smoothing spline controls from bivariate fit</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753662#M93551</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I need to keep the code the same way because I have more things to display&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

g=vlistbox(dt&amp;lt;&amp;lt; 
Fit Group(
	Bivariate(
	Y(:height),
	X(:weight),
	Fit Line({Line Color({76, 114, 176})}),
	Fit Spline(0.1, {Line Color({221, 132, 82})})
),

	Bivariate(
	Y(:thickness),
	X(:date),
	Fit Line({Line Color({76, 114, 176})}),
	Fit Spline(0.1, {Line Color({221, 132, 82})})
),
),
);

//This is the solution given to the question, but its not work for me, I guess because the vlistbox and fit grop

(Report(g) &amp;lt;&amp;lt; XPath("//BorderBox"))[2] &amp;lt;&amp;lt; Visibility("Collapse");

//this might collapse too much, so make sure it doesn't
(Report(g) &amp;lt;&amp;lt; XPath("//IfBox")) &amp;lt;&amp;lt; Visibility("Collapse");


//open files
out=Tab Box(
"HELP",H List Box(V List Box(g)),
);
	 
/* Create Tabed Journal for Display */
all=New Window("p_all",&amp;lt;&amp;lt;Journal,
     Tab Box(
     "pla",out,
	  
	 	
	 ) );
	     &lt;/LI-CODE&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>Sun, 12 May 2024 11:02:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753662#M93551</guid>
      <dc:creator>HenLu</dc:creator>
      <dc:date>2024-05-12T11:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove smoothing spline controls from bivariate fit</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753664#M93552</link>
      <description>&lt;P&gt;This video shows how to grab the xpath from the report. xpath returns a list of matched boxes, and the &amp;lt;&amp;lt;visibility command is sent to every box in the list. The subscript [1] or [2] is removed because both items are desired.&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6352788969112w960h540r862" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6352788969112" data-account="6058004218001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6058004218001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6352788969112w960h540r862');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.jmp.com/t5/video/gallerypage/video-id/6352788969112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 May 2024 11:24:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753664#M93552</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2024-05-12T11:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove smoothing spline controls from bivariate fit</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753681#M93554</link>
      <description>&lt;P&gt;Here is your code modified.&amp;nbsp; Your second Bivariate had to be changed since you were referencing columns not in the Big Class data table.&amp;nbsp; I assume they are from your actual data table.&amp;nbsp; I also added in variables that point to the 2 bivariates.&amp;nbsp; Your reference to using your g variable which is pointing to the VListBox does not have a report associated with it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1715516348807.png" style="width: 541px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64122iA0B4EA28E6CB6AB3/image-dimensions/541x832?v=v2" width="541" height="832" role="button" title="txnelson_0-1715516348807.png" alt="txnelson_0-1715516348807.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open("$SAMPLE_DATA/Big Class.jmp");

g=vlistbox(dt&amp;lt;&amp;lt; 
Fit Group(
	biv =Bivariate(
	Y(:height),
	X(:weight),
	Fit Line({Line Color({76, 114, 176})}),
	Fit Spline(0.1, {Line Color({221, 132, 82})})
),

	biv2 = Bivariate(
	Y(:weight),
	X(:height),
	Fit Line({Line Color({76, 114, 176})}),
	Fit Spline(0.1, {Line Color({221, 132, 82})})
),
),
);

//This is the solution given to the question, but its not work for me, I guess because the vlistbox and fit grop

(Report(biv) &amp;lt;&amp;lt; XPath("//IfBox"))[2] &amp;lt;&amp;lt; Visibility("Collapse");
(Report(biv2) &amp;lt;&amp;lt; XPath("//IfBox"))[2] &amp;lt;&amp;lt; Visibility("Collapse");

//this might collapse too much, so make sure it doesn't
//(Report(g) &amp;lt;&amp;lt; XPath("//IfBox")) &amp;lt;&amp;lt; Visibility("Collapse");


//open files
out=Tab Box(
"HELP",H List Box(V List Box(g)),
);
	 
/* Create Tabed Journal for Display */
all=New Window("p_all",&amp;lt;&amp;lt;Journal,
     Tab Box(
     "pla",out,
	  
	 	
	 ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 May 2024 12:19:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753681#M93554</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-05-12T12:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove smoothing spline controls from bivariate fit</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753700#M93556</link>
      <description>&lt;P&gt;I would do this using XPath like Jim already suggested. You can send &amp;lt;&amp;lt; Get XML to your report and see the XML, then find what could be used to build your query&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1715520890952.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64123i2904FF9E8662B8C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_0-1715520890952.png" alt="jthi_0-1715520890952.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1715520918959.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64124i06C93D6654CCADAE/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_1-1715520918959.png" alt="jthi_1-1715520918959.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Quickly checking it looks like there isn't anything that would always work (helpKey isn't always the same and it seems to be also dependent on the analysis) so you might have to modify the query depending on your data&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("", 
	vlb = V List Box(
		dt &amp;lt;&amp;lt; Fit Group(
			Bivariate(
				Y(:height),
				X(:weight),
				Fit Line({Line Color({76, 114, 176})}),
				Fit Spline(0.1, {Line Color({221, 132, 82})})
			),
			Bivariate(
				Y(:weight),
				X(:height),
				Fit Line({Line Color({76, 114, 176})}),
				Fit Spline(0.1, {Line Color({221, 132, 82})})
			)
		)
	)
);

obs = vlb &amp;lt;&amp;lt; XPath("//IfBox/OutlineBox"); // might collapse too much, but you could limit it to the specific reports
obs &amp;lt;&amp;lt; Visibility("Collapse");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other option would be to first get the outlinebox names from the ListBox (I would use XPath for this)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_3-1715521136290.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64126i9B8D21B09986DAE0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_3-1715521136290.png" alt="jthi_3-1715521136290.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1715521126075.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64125i5FC62736542EF12E/image-size/large?v=v2&amp;amp;px=999" role="button" title="jthi_2-1715521126075.png" alt="jthi_2-1715521126075.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;And then you can loop over those titles and hide corresponding outlineboxes (this can be built in many different ways)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("", 
	vlb = V List Box(
		dt &amp;lt;&amp;lt; Fit Group(
			Bivariate(
				Y(:height),
				X(:weight),
				Fit Line({Line Color({76, 114, 176})}),
				Fit Spline(0.1, {Line Color({221, 132, 82})})
			),
			Bivariate(
				Y(:weight),
				X(:height),
				Fit Line({Line Color({76, 114, 176})}),
				Fit Spline(0.1, {Line Color({221, 132, 82})})
			)
		)
	)
);

reports = vlb &amp;lt;&amp;lt; XPath("//OutlineBox[@helpKey = 'Bivariate Report']");

For Each({rep}, reports,
	tebs = rep &amp;lt;&amp;lt; XPath("//ListBox/ListBox[PopupBox and CustomBox]/TextEditBox");
	ob_titles = tebs &amp;lt;&amp;lt; get text;

	For Each({ob_title}, ob_titles,
		rep[OutlineBox(ob_title)] &amp;lt;&amp;lt; Visibility("Collapse");
	);
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 May 2024 13:49:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/753700#M93556</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-05-12T13:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove smoothing spline controls from bivariate fit</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/754926#M93730</link>
      <description>&lt;P&gt;thank you all for the help, c&lt;SPAN&gt;ombined with all the answers&lt;/SPAN&gt; i use this code, and its work for me:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;obs = vlb&amp;lt;&amp;lt; XPath("//IfBox/OutlineBox"); // might collapse too much, but you could limit it to the specific reports&lt;BR /&gt;obs &amp;lt;&amp;lt; Visibility("Collapse");&lt;BR /&gt;obs = vlb &amp;lt;&amp;lt; XPath("//BorderBox/ListBox"); // might collapse too much, but you could limit it to the specific reports&lt;BR /&gt;obs &amp;lt;&amp;lt; Visibility("Collapse");&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2024 10:15:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-remove-smoothing-spline-controls-from-bivariate-fit/m-p/754926#M93730</guid>
      <dc:creator>HenLu</dc:creator>
      <dc:date>2024-05-16T10:15:02Z</dc:date>
    </item>
  </channel>
</rss>

