<?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: Arcade Expression in Pop-Up Error:15 in ArcGIS Field Maps Questions</title>
    <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1058834#M1047</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/354905"&gt;@ChrisDunn1&lt;/a&gt;&amp;nbsp;and thank you for reply!&lt;/P&gt;&lt;P&gt;Yes, it looks like IsEmpty() is not meant to be used with arrays.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The behavior of First() is the same as for Count(). It validates for NOT empty Feature Sets, but error in Field Maps appears for Feature Set with no records. The line it fails is the one containing First(utl_f). Tried with the whole expression if(!IsEmpty(First(utl_f))) but also to write just First(utl_f) in a separate line and it is the one causing troubles. So it looks that First() also have some limitations.. I wonder if there are any other functions I could use here?&lt;/P&gt;</description>
    <pubDate>Tue, 18 May 2021 05:45:50 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2021-05-18T05:45:50Z</dc:date>
    <item>
      <title>Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1017409#M233</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;We were very happy to see that Arcade expressions are supported in Field Maps and were hoping to use it to generate unique IDs in the field that can be referenced on reports, project documents. We developed an Arcade expression that does this and it works when loaded into the Beta Map viewer. However when opened in Field Maps we get an error code 15,&amp;nbsp;Evaluation_error_code::unknown_function Line :20. I got the expression to work in Field Maps by removing many of the functions which unfortunately make it no longer meet our needs. Does anyone know if there is only a subset of the Arcade library that will work in Field Maps?&lt;/P&gt;&lt;P&gt;Thanks in advance for any help!&lt;/P&gt;&lt;P&gt;Below is the expression that has been developed:&lt;/P&gt;&lt;PRE&gt;&lt;EM&gt;var choices = {}; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;choices['1'] = 'BLD';&amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;choices['2'] = 'STR';&amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;choices['3'] = 'PAD';&amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;choices['4'] = 'PIT';&amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;choices['99'] = 'OTH';&amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;function formatMulti(inField, d) { &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var values = Split(inField, ','); &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var labels = []; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i in values){ &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; labels[i] = d[values[i]]; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var outText = Concatenate(labels, TextFormatting.NewLine); &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return outText; &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;} &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var park = IIf(IsEmpty($feature.SiteID), "UNK", Right(Left($feature.SiteID, 6), 3));&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var yr = Text($feature.CreationDate, 'YY');&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var tpe = formatMulti($feature.Type, choices);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var unique_val = $feature.Creator + $feature.CreationDate;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var hashed = Round(Sqrt(Hash(unique_val)), 0);&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;var new_id = park + "-" + yr + "-" + tpe+hashed;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;return new_id&lt;/EM&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2021 22:06:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1017409#M233</guid>
      <dc:creator>DanielWalsh</dc:creator>
      <dc:date>2021-01-15T22:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1017480#M234</link>
      <description>&lt;P&gt;Interested to see what the answer is; I hope you get resolution.&amp;nbsp;&lt;/P&gt;&lt;P&gt;ESRI team, things seem to be moving fast toward parity, but is there a chart that gives a matrix of supported arcade calls across products?&lt;/P&gt;&lt;P&gt;Multi support in Field Apps through to feature layer storage could be very interesting...&amp;nbsp; I didn't know that had expanded past the xlsform world.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2021 19:37:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1017480#M234</guid>
      <dc:creator>MikeSlattery</dc:creator>
      <dc:date>2021-01-16T19:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1018539#M259</link>
      <description>&lt;P&gt;Hi Mike,&lt;/P&gt;&lt;P&gt;There is a version matrix you can use as a reference here:&amp;nbsp;&lt;A href="https://developers.arcgis.com/arcade/guide/version-matrix/" target="_blank"&gt;https://developers.arcgis.com/arcade/guide/version-matrix/&lt;/A&gt;. Field Maps is currently built on version 100.9 of the Runtime SDK, so it supports functions up to Arcade version 1.11, with the exception of a few specific functions outlined in footnote 4.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2021 00:59:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1018539#M259</guid>
      <dc:creator>ChrisDunn1</dc:creator>
      <dc:date>2021-01-21T00:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1018540#M260</link>
      <description>&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;It looks like the Hash function is what is tripping it up, it is not currently supported by the Runtime SDK as it was introduced in Arcade 1.12. It is supported by the Runtime version 100.10, The current release of Field Maps is at 100.8 of the Runtime SDK, but the next release&amp;nbsp;&lt;EM&gt;should&lt;/EM&gt; be on 100.10 so your code should work then. I hope that helps&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2021 01:05:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1018540#M260</guid>
      <dc:creator>ChrisDunn1</dc:creator>
      <dc:date>2021-01-21T01:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1019689#M276</link>
      <description>&lt;P&gt;This is fantastic Chris, exactly what I was looking for!&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 16:59:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1019689#M276</guid>
      <dc:creator>DanielWalsh</dc:creator>
      <dc:date>2021-01-25T16:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1054597#M932</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/354905"&gt;@ChrisDunn1&lt;/a&gt;&amp;nbsp; ,&lt;/P&gt;&lt;P&gt;I have a similar question. I have several Arcade expressions which use function "Count". It works fine in Web Map, however when I try to open pop-up in Field Maps I get an error:&lt;/P&gt;&lt;P&gt;Error Code:15&lt;/P&gt;&lt;P&gt;Error Description: Invalid call., Unable to evaluate arcade expression.&lt;/P&gt;&lt;P&gt;Evaluation_error_code::general_evaluation_error Line XX&lt;/P&gt;&lt;P&gt;Line number is always indicating the line with "Count" funcion that's why I suppose it is the one which is problematic. In version-matrix you sent it is stated that "Count" for FeatureSet is supported since version 1.5. If Field Maps supports functions up to Arcade version 1.11, I am not sure why it is not working. Do you have any suggestions?&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 12:41:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1054597#M932</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-05-05T12:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1054645#M935</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous User&amp;nbsp;,&lt;/P&gt;&lt;P&gt;The Count function should work, so it's likely the problem is the object being passed into Count. Count will accept a feature set, an array, or a string, so make sure that is what's being counted and make sure it can't be null as I could see that causing an error, you could always add a check for null before the count statement.&lt;/P&gt;&lt;P&gt;You can get some more info by including a console statement, so if your count statement is something like;&lt;/P&gt;&lt;P&gt;Count(myObject)&lt;/P&gt;&lt;P&gt;Then just before that use;&lt;/P&gt;&lt;P&gt;Console(myObject)&lt;/P&gt;&lt;P&gt;And when you hit test switch to the Messages and you'll see what the object is that's being passed into Count.&lt;/P&gt;&lt;P&gt;If this doesn't help you track down the issue feel free to post the full expression if you can.&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 14:37:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1054645#M935</guid>
      <dc:creator>ChrisDunn1</dc:creator>
      <dc:date>2021-05-05T14:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1054936#M939</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/296115"&gt;@DanielWalsh&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/354905"&gt;@ChrisDunn1&lt;/a&gt;&amp;nbsp;- you say pop-up in the title of your submission but then you describe generating unique ID's - are you actually generating ID's in the attribute table as permanent data types through this method with Field Apps? I can't figure out how to get the pop-up information that is expressed through arcade configured in the pop-ups to pass into the Field Apps form to become actual data in the attribute table. Are you doing this?&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 22:00:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1054936#M939</guid>
      <dc:creator>KaraUtter</dc:creator>
      <dc:date>2021-05-05T22:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1054963#M940</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/318609"&gt;@KaraUtter&lt;/a&gt;,&amp;nbsp;For me we are using the expression to display an ID for field staff to be able to add to their handwritten notes which they use when writing reports. Then once data is synced we have a tool run to write the expression to the dataset. I think field calculation in the app is coming soon though which will be a big help!&lt;/P&gt;</description>
      <pubDate>Wed, 05 May 2021 23:00:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1054963#M940</guid>
      <dc:creator>DanielWalsh</dc:creator>
      <dc:date>2021-05-05T23:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1055075#M944</link>
      <description>&lt;P&gt;Thank you for your answer&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/354905"&gt;@ChrisDunn1&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;&lt;P&gt;Input of count is a feature set but it looks that the issue appears when it has no records. I use FeatureSetByName to get records from related table and for some objects there are no records. How can I add a check for null before the count statement? Tried to use IsEmpty function, but it returns 'False' when there are no records in my feature set.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below you can find my code. As I wrote before - everything is working fine in Web Map i AGOL. When I try to use Field Maps, I get an error:&lt;/P&gt;&lt;P&gt;* for empty feature set the error refers to line with statement "var mycount = Count(utl_f)", so IsEmpty returns "false" for empty feature set&lt;/P&gt;&lt;P&gt;* for feature set with some objects, the Count function seems to be working, but error refers to line with the statement "var dismarray = Distinct(marray)". Are there also any special conditions for Distinct function to make it work in Field Maps?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var parsellnr = $feature.parsellid
var utl = FeatureSetByName($map, 'utløpsgrøft - tilstand')

var sql1 = "parsellid = '" + parsellnr + "' ";
var sql2 = " AND tilstand = '2' "
var sql = sql1 + sql2
var utl_f = Filter(utl, sql)

if (!IsEmpty(utl_f)){
    var mycount = Count(utl_f)
}

var marrayix = 0
var marray = []
var antunik = 0

if (mycount&amp;gt;0) {
    for (var c in utl_f){
        var glid = c.utlopsgroft_ID
        marray[marrayix]= glid
        var dismarray = Distinct(marray)
        ++marrayix
    }
    var antunik = Count(dismarray)
}
return antunik&lt;/LI-CODE&gt;&lt;P&gt;I really appreciate your help,&lt;/P&gt;&lt;P&gt;Aleksandra&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 08:49:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1055075#M944</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-05-06T08:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1055179#M945</link>
      <description>&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/296115"&gt;@DanielWalsh&lt;/a&gt; thank you for your response. I was afraid of that. I do hope field calculations with arcade expressions happens sooner than later but I bet it will be after our 2021 field season is already complete.&lt;BR /&gt;</description>
      <pubDate>Thu, 06 May 2021 13:12:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1055179#M945</guid>
      <dc:creator>KaraUtter</dc:creator>
      <dc:date>2021-05-06T13:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1056825#M989</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/354905"&gt;@ChrisDunn1&lt;/a&gt;&amp;nbsp;can it be a general problem with Feature Set not validating when being empty?&lt;/P&gt;&lt;P&gt;I have tested couple of different checks for null values. The one presented in previous comment with IsEmpty() function which returns 'false' for empty dataset.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The other one which adds First() function before IsEmpty() function. It works fine, as then the value is 'true' in Web Map, however, it fails on this line in Field Maps apps.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var mycount = 0
if (!IsEmpty(First(utl_f))) {
    for (var i in utl_f){
        mycount =+1
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have also tried with common for loop, but Field Maps returns error for this one too.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var mycount = 0
for (var i in utl_f){
    mycount =+1
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would love to hear about possibilities of adding a check for null as you suggested.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 18:50:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1056825#M989</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-05-11T18:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1058662#M1039</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous User&amp;nbsp;- sorry for the delay. I'm still digging into this but I have learned a few things.&lt;/P&gt;&lt;P&gt;IsEmpty will only return true for null and empty strings, if you use it with an empty array it will still return false which is why IsEmpty(utl_f) returned false but IsEmtpy(First(utl_f)) returns true. This snippet you posted above seems like it should work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var mycount = 0
if (!IsEmpty(First(utl_f))) {
    for (var i in utl_f){
        mycount =+1
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which line exactly is it failing on in Field Maps?&lt;/P&gt;</description>
      <pubDate>Mon, 17 May 2021 18:28:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1058662#M1039</guid>
      <dc:creator>ChrisDunn1</dc:creator>
      <dc:date>2021-05-17T18:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Expression in Pop-Up Error:15</title>
      <link>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1058834#M1047</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/354905"&gt;@ChrisDunn1&lt;/a&gt;&amp;nbsp;and thank you for reply!&lt;/P&gt;&lt;P&gt;Yes, it looks like IsEmpty() is not meant to be used with arrays.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The behavior of First() is the same as for Count(). It validates for NOT empty Feature Sets, but error in Field Maps appears for Feature Set with no records. The line it fails is the one containing First(utl_f). Tried with the whole expression if(!IsEmpty(First(utl_f))) but also to write just First(utl_f) in a separate line and it is the one causing troubles. So it looks that First() also have some limitations.. I wonder if there are any other functions I could use here?&lt;/P&gt;</description>
      <pubDate>Tue, 18 May 2021 05:45:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-field-maps-questions/arcade-expression-in-pop-up-error-15/m-p/1058834#M1047</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2021-05-18T05:45:50Z</dc:date>
    </item>
  </channel>
</rss>

