<?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: Pop up with intersecting feature concatonate in ArcGIS Online Questions</title>
    <link>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536952#M61434</link>
    <description>&lt;P&gt;No 100% sure what messages are.&amp;nbsp; I don’t get on these boards much.. Sorry.&amp;nbsp; But happy to take direction. Feel free to message me or reply a quick how to message you. I changed the "Captureaction" to my attribute column, its called FLD_ZONE see code. The pop up looks like the picture below. and it didn’t actual create a list.. as the identified parcel show "XS" and it should be "XS, AE"1&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicahWarnock1_0-1725986589893.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/114705iD6DE002240DBC9E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MicahWarnock1_0-1725986589893.png" alt="MicahWarnock1_0-1725986589893.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;var FLDZN = Contains($feature,FeatureSetByName($map,"Flood Hazard Area"))&lt;/P&gt;&lt;P&gt;var FLDZN_list = []&lt;/P&gt;&lt;P&gt;for (var f in FLDZN){&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (!Includes(FLDZN_list, f.FLD_ZONE)) Push(FLDZN_list, f.FLD_ZONE)&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;return {&lt;/P&gt;&lt;P&gt;&amp;nbsp; type : 'text',&lt;/P&gt;&lt;P&gt;&amp;nbsp; text : Concatenate(FLDZN_list, '&amp;lt;br/&amp;gt;')&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also my plan is to make a popup like below, not table pop up and actual dynamic one.. I’ve made them before with attribute expression then added then added the expression to a text popup.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicahWarnock1_1-1725986589897.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/114704i7272E6193BC85BF3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MicahWarnock1_1-1725986589897.png" alt="MicahWarnock1_1-1725986589897.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Sep 2024 16:45:13 GMT</pubDate>
    <dc:creator>MicahWarnock1</dc:creator>
    <dc:date>2024-09-10T16:45:13Z</dc:date>
    <item>
      <title>Pop up with intersecting feature concatonate</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536781#M61424</link>
      <description>&lt;P&gt;I am creating a Floodplain information application for residents to review their pending floodplain change proposals.&amp;nbsp; Ive created pop up showing the property information and intersecting floodplain information.&amp;nbsp; I can get the first floodzone classification the parcel intersects, but I want to identify all the floodzone classifications the parcel intersects concatonated(ex: A, AE, VE, X ect...) Ive tried to use the below code but it doenst return any infoformation.&amp;nbsp; I also dont want it to return redundant zones(ex: A, VE, A, X,X).&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;FLDZN&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;Contains&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;FeatureSetByName&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$map&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"Flood Hazard Area"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;FLDZN_list&lt;/SPAN&gt;&lt;SPAN&gt; = []&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;for&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;f&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;FLDZN&lt;/SPAN&gt;&lt;SPAN&gt;){&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Push&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FLDZN_list&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;OFFICIAL_N&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt; &lt;SPAN&gt;Concatenate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FLDZN_list&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'\n'&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks in advance for advice!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 10 Sep 2024 12:02:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536781#M61424</guid>
      <dc:creator>MicahWarnock1</dc:creator>
      <dc:date>2024-09-10T12:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up with intersecting feature concatonate</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536799#M61425</link>
      <description>&lt;P&gt;Your code works in testing (using an Arcade element) on my data. I've added the extra check so there aren't any duplicates&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var FLDZN = Contains($feature,FeatureSetByName($map,"Buildings"))
var FLDZN_list = []
for (var f in FLDZN){
	if (!Includes(FLDZN_list, f.Captureaction)) Push(FLDZN_list, f.Captureaction)
}

return { 
	type : 'text', 
	text : Concatenate(FLDZN_list, '&amp;lt;br/&amp;gt;')
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Snag_2ff70d.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/114660i854FEEA763D31EC8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Snag_2ff70d.png" alt="Snag_2ff70d.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 12:48:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536799#M61425</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-09-10T12:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up with intersecting feature concatonate</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536830#M61426</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks Ken,&amp;nbsp; Like last time, in the code box, I see no warningas and it appears to work. However, When I dentifying a parcel, The information shows like there is nothing.&amp;nbsp; As you can see in the picture,&amp;nbsp; The property is intersecint zones AE &amp;amp; XS&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;FLD_ZONE&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;Contains&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;FeatureSetByName&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$map&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"Flood Hazard Area"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;FLD_ZONE_list&lt;/SPAN&gt;&lt;SPAN&gt; = []&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;for&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;f&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;FLD_ZONE&lt;/SPAN&gt;&lt;SPAN&gt;){&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (!&lt;/SPAN&gt;&lt;SPAN&gt;Includes&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FLD_ZONE_list&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Captureaction&lt;/SPAN&gt;&lt;SPAN&gt;)) &lt;/SPAN&gt;&lt;SPAN&gt;Push&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FLD_ZONE&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;f&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Captureaction&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt; { &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;type&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;'text'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;text&lt;/SPAN&gt;&lt;SPAN&gt; : &lt;/SPAN&gt;&lt;SPAN&gt;Concatenate&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;FLD_ZONE_list&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br/&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I also included the flood layer table in the screen shot for collumn verification.&amp;nbsp; Im happy to send you the MapService URL but prefer ofver private email.&amp;nbsp; Thanks again for your help&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicahWarnock1_6-1725975562636.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/114671i32DCF295E038BE2D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MicahWarnock1_6-1725975562636.png" alt="MicahWarnock1_6-1725975562636.png" /&gt;&lt;/span&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;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicahWarnock1_2-1725975198754.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/114667iB612A392E7A71540/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MicahWarnock1_2-1725975198754.png" alt="MicahWarnock1_2-1725975198754.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 10 Sep 2024 13:39:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536830#M61426</guid>
      <dc:creator>MicahWarnock1</dc:creator>
      <dc:date>2024-09-10T13:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up with intersecting feature concatonate</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536839#M61427</link>
      <description>&lt;P&gt;I was using a field name in my data (Captureaction), but you must use your field name (OFFICIAL_N). Can you send it to me through Messages?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 13:54:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536839#M61427</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-09-10T13:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up with intersecting feature concatonate</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536952#M61434</link>
      <description>&lt;P&gt;No 100% sure what messages are.&amp;nbsp; I don’t get on these boards much.. Sorry.&amp;nbsp; But happy to take direction. Feel free to message me or reply a quick how to message you. I changed the "Captureaction" to my attribute column, its called FLD_ZONE see code. The pop up looks like the picture below. and it didn’t actual create a list.. as the identified parcel show "XS" and it should be "XS, AE"1&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicahWarnock1_0-1725986589893.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/114705iD6DE002240DBC9E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MicahWarnock1_0-1725986589893.png" alt="MicahWarnock1_0-1725986589893.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;var FLDZN = Contains($feature,FeatureSetByName($map,"Flood Hazard Area"))&lt;/P&gt;&lt;P&gt;var FLDZN_list = []&lt;/P&gt;&lt;P&gt;for (var f in FLDZN){&lt;/P&gt;&lt;P&gt;&amp;nbsp; if (!Includes(FLDZN_list, f.FLD_ZONE)) Push(FLDZN_list, f.FLD_ZONE)&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;return {&lt;/P&gt;&lt;P&gt;&amp;nbsp; type : 'text',&lt;/P&gt;&lt;P&gt;&amp;nbsp; text : Concatenate(FLDZN_list, '&amp;lt;br/&amp;gt;')&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also my plan is to make a popup like below, not table pop up and actual dynamic one.. I’ve made them before with attribute expression then added then added the expression to a text popup.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MicahWarnock1_1-1725986589897.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/114704i7272E6193BC85BF3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MicahWarnock1_1-1725986589897.png" alt="MicahWarnock1_1-1725986589897.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 16:45:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536952#M61434</guid>
      <dc:creator>MicahWarnock1</dc:creator>
      <dc:date>2024-09-10T16:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up with intersecting feature concatonate</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536967#M61435</link>
      <description>&lt;P&gt;The Contains function will return the list of features that are completely within the feature, which won't happen with most of the flood zones. Instead, you'll want to use the &lt;A href="https://developers.arcgis.com/arcade/function-reference/featureset_functions/#intersects" target="_self"&gt;Intersects&lt;/A&gt; function.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var FLDZN = Intersects(FeatureSetByName($map, "Flood Hazard Area"), $feature);
var FLDZN_list = [];
for (var f in FLDZN) {
  if (!Includes(FLDZN_list, f.FLD_ZONE)) Push(FLDZN_list, f.FLD_ZONE);
}

return {
  type: "text", 
  text: Concatenate(FLDZN_list, "&amp;lt;br/&amp;gt;")
};&lt;/LI-CODE&gt;&lt;P&gt;BTW, if you include code in your messages, you should use the "&lt;A href="https://community.esri.com/t5/community-help-documents/how-to-insert-code-in-your-post/ta-p/914552" target="_self"&gt;Insert/Edit code sample&lt;/A&gt;" button.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 17:22:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1536967#M61435</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-09-10T17:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up with intersecting feature concatonate</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1537041#M61437</link>
      <description>Thanks! This worked!&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Sep 2024 19:23:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1537041#M61437</guid>
      <dc:creator>MicahWarnock1</dc:creator>
      <dc:date>2024-09-10T19:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Pop up with intersecting feature concatonate</title>
      <link>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1537056#M61439</link>
      <description>&lt;P&gt;Glad to help. Don't forget to click the "Accept as Solution" button to the post(s) that answered your question.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 19:41:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-questions/pop-up-with-intersecting-feature-concatonate/m-p/1537056#M61439</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2024-09-10T19:41:16Z</dc:date>
    </item>
  </channel>
</rss>

