<?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 do I get an array to show up in a GeoJSONLayer's attributes? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-do-i-get-an-array-to-show-up-in-a-geojsonlayer/m-p/586636#M54807</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved it&amp;nbsp;with a Promise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside the returned promise, I make an ajax call with the element ID.&amp;nbsp;I had to write my own little API to get the properties by providing the ID. This example uses jQuery for the $.ajax call to the api.&lt;BR /&gt;&lt;BR /&gt;The popup shows a little loader while the promise works on retrieving the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;var layer = new GeoJSONLayer({&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;url: "&amp;lt;URL&amp;gt;",&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; popupTemplate: {&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;title: "{name}",&lt;BR /&gt; content: generateContent&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;}&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function generateContent(feature) {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;var graphic = feature.graphic;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;var attributes = graphic.attributes;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;let promise = new Promise((resolve, reject) =&amp;gt; {&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;$.ajax({&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;url: "&amp;lt;PROPERTIES API URL&amp;gt;",&lt;BR /&gt; method: "post",&lt;BR /&gt; data: {&lt;/P&gt;&lt;P style="padding-left: 120px;"&gt;id: attributes["id"]&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;}&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;}).done(function(result) {&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #339966;"&gt;// the data we need&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;let properties = result.data;&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;&lt;BR /&gt; &lt;SPAN style="color: #ff9900;"&gt;// popup content needs to follow these rules:&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #3366ff;"&gt;// &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#content" style="color: #3366ff;"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#content&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt; let content = "";&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;&lt;BR /&gt; resolve(content);&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;}).fail(function(xhr, textStatus, errorThrown) {&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;console.error(textStatus, errorThrown);&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;});&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;});&lt;BR /&gt; return promise;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;map.layers.add(layer);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Sep 2020 13:02:35 GMT</pubDate>
    <dc:creator>KDimitrov</dc:creator>
    <dc:date>2020-09-22T13:02:35Z</dc:date>
    <item>
      <title>How do I get an array to show up in a GeoJSONLayer's attributes?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-do-i-get-an-array-to-show-up-in-a-geojsonlayer/m-p/586633#M54804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;var layer = new GeoJSONLayer({&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;url: "&amp;lt;URL&amp;gt;",&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; popupTemplate: {&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;title: "{name}",&lt;BR /&gt; content: generateContent&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;},&lt;/P&gt;&lt;P&gt;});&lt;BR /&gt; &lt;BR /&gt; function generateContent(feature){&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;var graphic = feature.graphic;&lt;BR /&gt; var attributes = graphic.attributes;&lt;BR /&gt; &lt;BR /&gt; console.log(attributes); &lt;SPAN style="color: #ff0000;"&gt;// every attribute shows up, but the array attribute is missing&lt;/SPAN&gt;&lt;BR /&gt; &lt;BR /&gt; var content = "";&lt;BR /&gt; return content;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; map.layers.add(layer);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly none of my attributes were showing up, until I added this to my layer parameters:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;outFields: ["*"]&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;Sadly setting the &lt;STRONG&gt;outFields&lt;/STRONG&gt; didn't include the array in the attributes. &lt;BR /&gt;I have checked the json and the&amp;nbsp; array attribute is there.&lt;BR /&gt;&lt;BR /&gt;What could be happening here for the array not to show up in the attributes?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Aug 2020 15:07:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-do-i-get-an-array-to-show-up-in-a-geojsonlayer/m-p/586633#M54804</guid>
      <dc:creator>KDimitrov</dc:creator>
      <dc:date>2020-08-06T15:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get an array to show up in a GeoJSONLayer's attributes?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-do-i-get-an-array-to-show-up-in-a-geojsonlayer/m-p/586634#M54805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anybody?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2020 21:40:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-do-i-get-an-array-to-show-up-in-a-geojsonlayer/m-p/586634#M54805</guid>
      <dc:creator>KDimitrov</dc:creator>
      <dc:date>2020-08-10T21:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get an array to show up in a GeoJSONLayer's attributes?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-do-i-get-an-array-to-show-up-in-a-geojsonlayer/m-p/586635#M54806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. I recently encountered the same issue, where any array property values in my geoJSON weren't getting pulled into my Feature Layer, and I was unable to access them in my popups. After revisiting the documentation, I think herein&amp;nbsp;lied our problem:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;[From the &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html"&gt;docs&lt;/A&gt;:] "Each GeoJSONLayer will only accept one schema of the properties. The&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#fields" style="color: #0079c1; text-decoration: none;"&gt;fields&lt;/A&gt;&amp;nbsp;property can be used to specify the desired fields for the layer. &lt;STRONG&gt;If&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-GeoJSONLayer.html#fields" style="color: #0079c1; text-decoration: none;"&gt;fields&lt;/A&gt;&amp;nbsp;is not defined, the schema used by the first feature will be used to deduce the fields schema for the layer.&lt;/STRONG&gt;"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To remedy this, I declared field types for all of my geoJSON properties just to be safe, and for the fields with array values, I specified them as strings in hopes that the API would convert them to strings, and it worked.&lt;EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;// GeoJSON snippet:&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"type": "Feature",&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"geometry": {&lt;BR /&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;"type": "Point",&lt;BR /&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;"coordinates": [ -1.149170, 52.955120 ]&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;},&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;"properties": {&lt;BR /&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;"name": ["array", "of", "values"]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// GeoJSON layer setup:&lt;/P&gt;&lt;DIV style="font-weight: normal;"&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;const geoJSONLayer = new GeoJSONLayer({&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;url: URL.createObjectURL(blob),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;renderer: renderer,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;popupTemplate: template,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;outFields: ["*"],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fields: [&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&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;new Field({&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&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;"name": "arrayField",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&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;"alias": "Array Field",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&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;"type": "string"&amp;nbsp;&amp;lt;==== this will join the offending array into a string&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&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;})&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt; });&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Now, I can't say&amp;nbsp;whether this is the recommended way&amp;nbsp;of doing this since the API&amp;nbsp;will still warn you in the console about invalid field types. However, none of the other available field types seem appropriate for outputting arrays, and while it feels a little messy, it &lt;STRONG&gt;will&lt;/STRONG&gt; get your array property values to populate. Just be sure to require() the&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-support-Field.html"&gt;Fields&lt;/A&gt; module first, or you can use the &lt;A href="https://developers.arcgis.com/javascript/latest/guide/autocasting/index.html"&gt;autocasted&lt;/A&gt; implementation and skip the require().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone else knows of&amp;nbsp;a cleaner way&amp;nbsp;(or why GeoJSONLayers are incapable of outputting array-type geoJSON properties in the first place), please chime in!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2020 23:21:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-do-i-get-an-array-to-show-up-in-a-geojsonlayer/m-p/586635#M54806</guid>
      <dc:creator>AshleyLong</dc:creator>
      <dc:date>2020-09-17T23:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do I get an array to show up in a GeoJSONLayer's attributes?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-do-i-get-an-array-to-show-up-in-a-geojsonlayer/m-p/586636#M54807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved it&amp;nbsp;with a Promise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside the returned promise, I make an ajax call with the element ID.&amp;nbsp;I had to write my own little API to get the properties by providing the ID. This example uses jQuery for the $.ajax call to the api.&lt;BR /&gt;&lt;BR /&gt;The popup shows a little loader while the promise works on retrieving the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;var layer = new GeoJSONLayer({&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;url: "&amp;lt;URL&amp;gt;",&lt;BR /&gt; outFields: ["*"],&lt;BR /&gt; popupTemplate: {&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;title: "{name}",&lt;BR /&gt; content: generateContent&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;}&lt;/P&gt;&lt;P&gt;});&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function generateContent(feature) {&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;var graphic = feature.graphic;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;var attributes = graphic.attributes;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;let promise = new Promise((resolve, reject) =&amp;gt; {&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;$.ajax({&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;url: "&amp;lt;PROPERTIES API URL&amp;gt;",&lt;BR /&gt; method: "post",&lt;BR /&gt; data: {&lt;/P&gt;&lt;P style="padding-left: 120px;"&gt;id: attributes["id"]&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;}&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;}).done(function(result) {&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;SPAN style="color: #339966;"&gt;// the data we need&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;let properties = result.data;&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;&lt;BR /&gt; &lt;SPAN style="color: #ff9900;"&gt;// popup content needs to follow these rules:&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #3366ff;"&gt;// &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#content" style="color: #3366ff;"&gt;https://developers.arcgis.com/javascript/latest/api-reference/esri-PopupTemplate.html#content&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt; let content = "";&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;&lt;BR /&gt; resolve(content);&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;}).fail(function(xhr, textStatus, errorThrown) {&lt;/P&gt;&lt;P style="padding-left: 90px;"&gt;console.error(textStatus, errorThrown);&lt;/P&gt;&lt;P style="padding-left: 60px;"&gt;});&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;});&lt;BR /&gt; return promise;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;map.layers.add(layer);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2020 13:02:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-do-i-get-an-array-to-show-up-in-a-geojsonlayer/m-p/586636#M54807</guid>
      <dc:creator>KDimitrov</dc:creator>
      <dc:date>2020-09-22T13:02:35Z</dc:date>
    </item>
  </channel>
</rss>

